Skip to content
New issue

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

Cryptographic API Misuse Vulnerability #580

Open
lialon opened this issue Aug 7, 2024 · 0 comments
Open

Cryptographic API Misuse Vulnerability #580

lialon opened this issue Aug 7, 2024 · 0 comments

Comments

@lialon
Copy link

lialon commented Aug 7, 2024

Description:

In the "Flashlight/PluginDirectories/1/NightFoxAmbient.bundle/oauthlib/oauth1/rfc5849
/signature.py", I have identified security vulnerabilities about insecure cryptographic algorithm. PKCS1v1.5 is vulnerable to the chosen-ciphertext attack.

Location:

https://github.com/nate-parrott/Flashlight/blob/master/PluginDirectories/1/NightFoxAmbient.bundle/oauthlib/oauth1/rfc5849/signature.py#L591

p = PKCS1_v1_5.new(key)

https://github.com/nate-parrott/Flashlight/blob/master/PluginDirectories/1/NightFoxAmbient.bundle/oauthlib/oauth1/rfc5849/signature.py#L494

p = PKCS1_v1_5.new(key)

Reference

  • CWE-780: Use of RSA Algorithm without OAEP

Recommendations:

Try using other padding(OAEP) instead of PKCS1v1.5.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant