This is basically a hypothetical program- there are 2^128 combinations (Or is it 2^128-1? Not sure. Or should the 128 be replaced with a 127?) but it doesn't work.
<?php
$end = (int)base_convert("zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz",36,10);
$count = 0;
for($count = 0; $count < $end; $count++) {
$startHash = base_convert((string)$count,10,36);
//Add zeros to the beginning if the length is less than 32
while(strlen($starthash) < 32) {
$starthash = "0" + $startHash;
}
$endHash = md5($startHash);
if($startHash == $endHash) {
file_put_contents("MD5.txt", file_get_contents("MD5.txt") + $startHash + "\n");
}
}
?>
I'm not even sure why; it doesn't even throw any errors. What I'm expecting is that it uses 100% of the CPU, but it doesn't use more than 0.1%.
Do you have any idea what's going on?