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

password in clear text #13

Open
vladimircicovic opened this issue Oct 15, 2017 · 1 comment
Open

password in clear text #13

vladimircicovic opened this issue Oct 15, 2017 · 1 comment

Comments

@vladimircicovic
Copy link

This is wrong:

"gmail": {
"username": "[email protected]",
"password": "ReallyStrongPassword",
"server": "smtp.gmail.com",
"port": 587

it must be like:

"gmail": {
"username": "[email protected]",
"password": "51727212cfae625b763d7e053d55e3a8a36d0b4465b95428b46340d66cae8f97",
"somerndstring": "somerandomstring"
"server": "smtp.gmail.com",
"port": 587

where password: sha256(somerandomstringReallyStrongPassword)

leaving in clear text password is wrong way to do.

@vladimircicovic
Copy link
Author

Also there is better way - encrypt password with password so decrypt when it runs (user need to put passwords)

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