From ba20dd9007280235e871632ba86d9cd66eaae129 Mon Sep 17 00:00:00 2001 From: imnyang Date: Sun, 25 May 2025 22:28:56 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A0=9C=EA=B0=80=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=ED=86=B5=EC=9D=BC=EC=84=B1=EC=9D=B4=20=EC=97=86=EC=97=88?= =?UTF-8?q?=EB=84=A4=EC=9A=94...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/backend/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/backend/src/index.ts b/packages/backend/src/index.ts index 7633932..2eccd6d 100644 --- a/packages/backend/src/index.ts +++ b/packages/backend/src/index.ts @@ -8,7 +8,7 @@ export type API = DefineAPI<{}>; const implicitGrantController = new ImplicitGrantController(); const authZCodeGrantController = new AuthZCodeGrantController(); -const pkceCheck = new PKCECheck(); +const pkceCheckController = new PKCECheck(); // function matchSSORequest(req: Request): boolean { // const raw = req.getRaw().toString(); @@ -35,7 +35,7 @@ export function init(sdk: SDK) { implicitGrantController.testReq(req); if (result) { - await pkceCheck.test(sdk, req); + await pkceCheckController.test(sdk, req); await sdk.findings.create({ title: "Possible SSO Request Detected",