We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace === with crypto.subtle.timingSafeEqual in https://github.com/Sh4yy/cloudflare-email/blob/main/src/middlewares/auth.ts#L16 to prevent timing attacks.
===
crypto.subtle.timingSafeEqual
Example: https://developers.cloudflare.com/workers/examples/protect-against-timing-attacks/
The text was updated successfully, but these errors were encountered:
Like this @pethin https://github.com/D3vl0per/cloudflare-email/blob/main/src/middlewares/auth.ts?
Sorry, something went wrong.
Can you create a PR @D3vl0per?
Done #18 @kcoderhtml !
thnks! hopefully @Sh4yy can merge both our PRs soon!
No branches or pull requests
Replace
===
withcrypto.subtle.timingSafeEqual
in https://github.com/Sh4yy/cloudflare-email/blob/main/src/middlewares/auth.ts#L16 to prevent timing attacks.Example: https://developers.cloudflare.com/workers/examples/protect-against-timing-attacks/
The text was updated successfully, but these errors were encountered: