Skip to content

Instantly share code, notes, and snippets.

@mamorunl
Created December 4, 2015 09:22
Show Gist options
  • Save mamorunl/3ab70dd3848123e0d90a to your computer and use it in GitHub Desktop.
Save mamorunl/3ab70dd3848123e0d90a to your computer and use it in GitHub Desktop.
AOC_4.php
$input = "yzbqklnj";
$result = "00000";
for($i = 0; $i < 999999999999; $i++) {
$md5 = md5($input . "" . $i);
if(!strcmp(substr($md5, 0, strlen($result)), $result)) {
echo substr($md5, 0, strlen($result)), "<br>";
echo $i . "=" . $md5;
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment