-
-
Notifications
You must be signed in to change notification settings - Fork 385
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
feat: Challenge 41 based on Password shucking #1037
Conversation
Signed-off-by: Adarsh A <[email protected]>
…n adoc Signed-off-by: Adarsh A <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Your third challenge already within a month! @adarsh-a-tw : you rock sir!
Here are some minor changes . @bendehaan do you have time for a textual review please?
src/main/java/org/owasp/wrongsecrets/challenges/docker/Challenge41.java
Outdated
Show resolved
Hide resolved
src/main/java/org/owasp/wrongsecrets/challenges/docker/Challenge41.java
Outdated
Show resolved
Hide resolved
value = "WEAK_MESSAGE_DIGEST_MD5", | ||
justification = "This is to allow md5 hashing") | ||
private String hashWithMd5(String plainText) throws NoSuchAlgorithmException { | ||
MessageDigest md = MessageDigest.getInstance("MD5"); |
Check failure
Code scanning / CodeQL
Use of a broken or risky cryptographic algorithm
Signed-off-by: Adarsh A <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's number 3 already! Wow! that's amazing @adarsh-a-tw !
What kind of changes does this PR include?
Description
Adds challenge 41 which leaks passwords based on password shucking.
Relations
Closes #859
Checklist: