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

Encryption of password using MD5 and fixed salt #41

Open
LennonCMJ opened this issue Feb 17, 2019 · 1 comment
Open

Encryption of password using MD5 and fixed salt #41

LennonCMJ opened this issue Feb 17, 2019 · 1 comment

Comments

@LennonCMJ
Copy link

LennonCMJ commented Feb 17, 2019

global.encryptPassword = function(password, md5encoded) {
md5encoded = md5encoded || false;
password = md5encoded ? password : think.md5(password);
return think.md5(think.md5('www.cmswing.com') + password + think.md5('Arterli'));
};

https://github.com/arterli/CmsWing/blob/ba8dbac6bd42ca844b6903151eaf029906681de0/src/bootstrap/global.js

@NicoleG25
Copy link

@arterli Hi, is there any plans to fix this vulnerability?

Note that it appears that CVE-2019-7649 was assigned to this issue.

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

2 participants