From 7aa2e2bc134b76bdb17b236afc457fd9f76c97e1 Mon Sep 17 00:00:00 2001 From: tomaioo Date: Thu, 23 Jul 2026 19:21:43 -0700 Subject: [PATCH] fix(security): 2 improvements across 1 files - Security: Information Disclosure in Error Handling - Security: Potential Sensitive Header Logging Signed-off-by: tomaioo <203048277+tomaioo@users.noreply.github.com> --- packages/graph-explorer-proxy-server/src/error-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/graph-explorer-proxy-server/src/error-handler.ts b/packages/graph-explorer-proxy-server/src/error-handler.ts index 9c779959e..825c3c161 100644 --- a/packages/graph-explorer-proxy-server/src/error-handler.ts +++ b/packages/graph-explorer-proxy-server/src/error-handler.ts @@ -68,7 +68,7 @@ function extractErrorInfo(error: unknown) { if (error instanceof Error) { return { status: 500, - message: error.message || defaultErrorMessage, + message: defaultErrorMessage, }; }