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 #118

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

Cryptographic API Misuse Vulnerability #118

lialon opened this issue Aug 7, 2024 · 0 comments

Comments

@lialon
Copy link

lialon commented Aug 7, 2024

Description:

In the "pycose/pycose/algorithms.py", I have identified a security vulnerability about insecure cryptographic algorithm and static or hardcode IV. PKCS1v1.5 is vulnerable to the chosen-ciphertext attack. And CBC with fixed or hardcode IV is vulnerable to the chosen-ciphertext attack.

Location:

https://github.com/TimothyClaeys/pycose/blob/master/pycose/algorithms.py#L168

return padding.PKCS1v15()

https://github.com/TimothyClaeys/pycose/blob/master/pycose/algorithms.py#L209

modes.CBC(unhexlify(b''.join([b'00'] * 16))),

Reference

  • CWE-780: Use of RSA Algorithm without OAEP
  • CWE-330: Use of Insufficiently Random Values

Recommendations:

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

  • Generate IV with cryptographic secure PRNG.

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