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

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

Cryptographic API Misuse Vulnerability #27

lialon opened this issue Aug 7, 2024 · 0 comments

Comments

@lialon
Copy link

lialon commented Aug 7, 2024

Description:

In the "django-mirage-field/mirage/crypto.py", I have identified security vulnerabilities about insecure cryptographic algorithm. ECB mode encryption is not semantically secure, which means it might cause information leakage.

Location:

https://github.com/luojilab/django-mirage-field/blob/master/mirage/crypto.py#L31

 encryptor = Cipher(algorithms.AES(self.key),
                           modes.ECB(), default_backend()).encryptor()

https://github.com/luojilab/django-mirage-field/blob/master/mirage/crypto.py#L39

 decryptor = Cipher(algorithms.AES(self.key),
                           modes.ECB(), default_backend()).decryptor()

Reference

  • CWE-327: Use of a Broken or Risky Cryptographic Algorithm

Recommendate

Use other cipher mode such as CFB or CTR with random IV.

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