You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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
https://github.com/luojilab/django-mirage-field/blob/master/mirage/crypto.py#L39
Reference
Recommendate
Use other cipher mode such as CFB or CTR with random IV.
The text was updated successfully, but these errors were encountered: