Skip to content

Commit

Permalink
added missing password check for sign up
Browse files Browse the repository at this point in the history
  • Loading branch information
niftyvictor committed Oct 15, 2024
1 parent d58c94f commit 770c798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v2/attackprotectionsuite/backend-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ SuperTokens.init({
const bruteForceConfig = getBruteForceConfig(email, ip, actionType);

// we check the anomaly detection service before calling the original implementation of signUp
let securityCheckResponse = await handleSecurityChecks({ requestId, email, bruteForceConfig, actionType });
let securityCheckResponse = await handleSecurityChecks({ requestId, email, password, bruteForceConfig, actionType });
if(securityCheckResponse !== undefined) {
return securityCheckResponse;
}
Expand Down

0 comments on commit 770c798

Please sign in to comment.