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

Fix hash for stage 38 #13

Merged
merged 1 commit into from
Jun 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions data/levels/hackit38.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public function render()
</code></pre><br/>

<strong>Example:</strong><br/>
nonce = "132f4c5f0f"<br/>
sha1("string1"+"string2"+nonce) -> Results in sha1 hash 000000593a640078a309840d69b4e2064d09ae20 so 132f4c5f0f would be the solution if we were looking for 6 leading zeroes
nonce = "dnt28wclnx"<br/>
sha1("string1"+"string2"+nonce) -> Results in sha1 hash 000000140e9731bbf369d8cbc4f7919961020793 so dnt28wclnx would be a solution if we were looking for 6 leading zeroes
<br/><br/>
Solution:<br/><input id="pw" type="password" />
<br/><input type="button" value="OK" onClick="checkPW()"/>
Expand All @@ -65,4 +65,4 @@ function checkPW()
}
</script>';
}
}
}