By th3.g4m3_0v3r ("http://md5.rednoize.com/?p&s=md5&q=" . $city),
1 => ("http://gdataonline.com/qkhash.php?mode=txt&hash=" . $city),
2 => ("http://milw0rm.com/cracker/search.php"),
3 => ("http://md5decryption.com/"),
4 => ("http://alimamed.pp*****md5/?md5e=&md5d=" . $city),
5 => ("http://ice.breaker.free.fr/md5.php?hachage=" . $city),
6 => ("http://passcracking.com/"),
7 => ("http://md5.hashcracking.com/search.php?md5=" . $city),
8 => ("http://www.hashchecker.com/index.php?_sls=search_hash"),
9 => ("http://md5crack.it-helpnet.de/index.php?op=search"),
10 => ("http://blacklight.gotdns.org/cracker/crack.php"),
11 => ("http://md5.ip-domain.com*****"),
12 => ("http://www.bigtrapeze.com/md5/"),
13 => ("http://opencrack.hashkiller.com/"),
14 => ("http://www.md5oogle.com/decrypt.php?input=" . $city),
15 => ("http://www.tydal.nu/php/sakerhet/md5.php?q=" . $city)
);
$params = array(
0 => (null),
1 => (null),
2 => ("hash=" . $city . "&submit=Submit"),
3 => ("hash=" . $city . "&submit=Decrypt It!"),
4 => (null),
5 => (null),
6 => ("datafromuser=" . $city . "&submit=DoIT"),
7 => (null),
8 => ("search_field=" . $city . "&Submit=search"),
9 => ("md5=" . $city . "&submit=Search now"),
10 => ("hash=" . $city . "&algos=MD5&crack=Crack"),
11 => ("text=" . $city . "&submit=submit"),
12 => ("query=" . $city . "&submit= Crack "),
13 => ("oc_check_md5=" . $city ."&oc_submit=Search MD5"),
14 => (null),
15 => (null)
);
$patterns = array(
0 => (null),
1 => ("/
(.*) | /"),
2 => ("/(.*) | cracked | /"),
3 => ("/Results
Md5 Hash: " . $city . "
Normal Text: (.*)
/"),
4 => ("/: (.*)
" . $city . ":(.*)
/"),
14 => ("/
Result: (.*)
/"),
15 => ("/(.*)/")
);
if((count($urls) !== count($params)) || (count($urls) !== count($patterns)) || (count($params) !== count($patterns))) { die("Error"); }
for($i = 0; $i < count($urls); $i++) {
echo "n
n";
$url = $urls[$i];
$param = $params[$i];
$pattern = $patterns[$i];
$message = ereg_replace("(http|https)://", null, $url);
$message = ereg_replace("/(.*)", null, $message);
$ch = curl_init();
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, "4");
if(!empty($param)) {
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $param);
}
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_TIMEOUT, "4");
$result = @curl_exec($ch);
curl_close($ch);
if(!empty($result)) {
if(empty($pattern)) {
$final = $result;
} else {
preg_match($pattern, $result, $final);
$final = $final[1];
}
}
echo (md5($final) === $city || md5(htmlentities($final)) === $city)?("[+]" . $message . ":
" . htmlentities($final) . ""):("[-]" . $message . ": Not Found");
}
}
?>