SlideShare a Scribd company logo
1 of 3
<html>
<head><title>MD5 - Decrypter by eidelweiss</title>
<link REL="SHORTCUT ICON" href="../images/cyberkids.jpg"></head>
<body bgcolor="#000000" text="red">
<br>
</br>
<div align="center">
<center><img src="../images/cyberkids.jpg" alt="" width="400" height="160"
/></center>
<br>
<br>
<form action="<?php echo $_SERVER["PHP_SELF"]; ?>" method="POST">
MD5 Hash
<input type="text" name="hash">
<input type="submit" value="Start Crack">
</form>
c0d3r : eidelweiss
<br>


<?php




$city = strtolower(trim($_POST["hash"]));

if(ereg("([0-9a-f]{32})", $city)) {
$urls = array(
0 => ("http://md5.rednoize.com/?p&s=md5&q=" . $city),
1 => ("http://gdataonline.com/qkhash.php?mode=txt&hash=" . $city),
2 => ("http://md5decrypter.co.uk"),
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 => ("/</td><td width="35%"><b>(.*)</b></td></tr>/"),
2 => ("/</TD><TD align="middle" nowrap="nowrap" width=90>(.*)</TD><TD
align="middle" nowrap="nowrap" width=90>cracked</TD></TR>/"),
3 => ("/<h2>Results</h2><b>Md5 Hash:</b> " . $city . "<br/><b
class='red'>Normal Text: </b>(.*)<br/>/"),
4 => ("/: <b>(.*)</b><br><form action="">/"),
5 => ("/: <b><br /><br /> - (.*)</b>/"),
6 => ("/</td><td>md5 Database</td><td>" . $city . "</td><td
bgcolor=#FF0000>(.*)</td><td>/"),
7 => ("/Cleartext of " . $city . " is (.*)/"),
8 => ("/<td><li>Your md5 hash is :<br><li>" . $city . " is <b>(.*)</b> used
charl/"),
9 => ("/</td><td>" . $city . "</td><td>(.*)</td>/"),
10 => ("/" . $city . " -> <b>(.*)</b><br><br>/"),
11 => ("/<strong>result:</strong><font color=red>(.*)</font>&nbsp;/"),
12 => ("/The hash <strong>" . $city . "</strong> has been deciphered to:
<strong>(.*)</strong>/"),
13 => ("/</div><div class="result">" . $city . ":(.*)<br/>/"),
14 => ("/<br/><center><div style="background: lightblue;"><b>Result:
(.*)</b><br /></div></center><br />/"),
15 => ("/(.*)</b></h5>/")
);

if((count($urls) !== count($params)) || (count($urls) !== count($patterns)) ||
(count($params) !== count($patterns))) { die("Error"); }

for($i = 0; $i < count($urls); $i++) {
echo "n<br>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)?("[w00t]" .
$message . ": <b>" . htmlentities($final) . "</b>"):("[-]" . $message . ": Not
Found");
}
}
?>
</div>
</body>
</html>

More Related Content

What's hot

Rapid Prototyping
Rapid PrototypingRapid Prototyping
Rapid Prototyping
Even Wu
 
zynga-online.facebook.html
zynga-online.facebook.htmlzynga-online.facebook.html
zynga-online.facebook.html
admin999
 
Css+tutorial+in+bangla
Css+tutorial+in+banglaCss+tutorial+in+bangla
Css+tutorial+in+bangla
jessicaemily
 

What's hot (19)

Rapid Prototyping
Rapid PrototypingRapid Prototyping
Rapid Prototyping
 
Braces to Pixels - CSS Day 2016
Braces to Pixels - CSS Day 2016Braces to Pixels - CSS Day 2016
Braces to Pixels - CSS Day 2016
 
Apache CouchDB Presentation @ Sept. 2104 GTALUG Meeting
Apache CouchDB Presentation @ Sept. 2104 GTALUG MeetingApache CouchDB Presentation @ Sept. 2104 GTALUG Meeting
Apache CouchDB Presentation @ Sept. 2104 GTALUG Meeting
 
NoSQL - An introduction to CouchDB
NoSQL - An introduction to CouchDBNoSQL - An introduction to CouchDB
NoSQL - An introduction to CouchDB
 
Speeding up Red Team engagements with carnivorall
Speeding up Red Team engagements with carnivorallSpeeding up Red Team engagements with carnivorall
Speeding up Red Team engagements with carnivorall
 
The Devil and HTML5
The Devil and HTML5The Devil and HTML5
The Devil and HTML5
 
1cst
1cst1cst
1cst
 
smoke1272528461
smoke1272528461smoke1272528461
smoke1272528461
 
zynga-online.facebook.html
zynga-online.facebook.htmlzynga-online.facebook.html
zynga-online.facebook.html
 
ملخص تقنية تصميم صفحات الويب - الوحدة الثالثة (الجزء الثالث)
ملخص تقنية تصميم صفحات الويب - الوحدة الثالثة (الجزء الثالث) ملخص تقنية تصميم صفحات الويب - الوحدة الثالثة (الجزء الثالث)
ملخص تقنية تصميم صفحات الويب - الوحدة الثالثة (الجزء الثالث)
 
T1
T1T1
T1
 
Tybscrc
TybscrcTybscrc
Tybscrc
 
PHP記帳網頁教材(第一頁是空白的)
PHP記帳網頁教材(第一頁是空白的)PHP記帳網頁教材(第一頁是空白的)
PHP記帳網頁教材(第一頁是空白的)
 
Css+tutorial+in+bangla
Css+tutorial+in+banglaCss+tutorial+in+bangla
Css+tutorial+in+bangla
 
Pets and Pandas.
Pets and Pandas.Pets and Pandas.
Pets and Pandas.
 
dotCSS 2016: Hacking HTML Emails with CSS
dotCSS 2016: Hacking HTML Emails with CSSdotCSS 2016: Hacking HTML Emails with CSS
dotCSS 2016: Hacking HTML Emails with CSS
 
SEO for Developers
SEO for DevelopersSEO for Developers
SEO for Developers
 
JSON-LD: JSON for Linked Data
JSON-LD: JSON for Linked DataJSON-LD: JSON for Linked Data
JSON-LD: JSON for Linked Data
 
Index
IndexIndex
Index
 

Similar to Md5 decrypter

Ex[1].3 php db connectivity
Ex[1].3 php db connectivityEx[1].3 php db connectivity
Ex[1].3 php db connectivity
Mouli Chandira
 
TYBSC prac soln
TYBSC prac solnTYBSC prac soln
TYBSC prac soln
tushar1001
 
Form & frame
Form & frameForm & frame
Form & frame
aminsir
 
SharePoint 2010 Training Session 6
SharePoint 2010 Training Session 6SharePoint 2010 Training Session 6
SharePoint 2010 Training Session 6
Usman Zafar Malik
 

Similar to Md5 decrypter (20)

Web technology lab manual
Web technology lab manualWeb technology lab manual
Web technology lab manual
 
Html Hands On
Html Hands OnHtml Hands On
Html Hands On
 
HTML5
HTML5HTML5
HTML5
 
Ex[1].3 php db connectivity
Ex[1].3 php db connectivityEx[1].3 php db connectivity
Ex[1].3 php db connectivity
 
Capstone Website Code
Capstone Website CodeCapstone Website Code
Capstone Website Code
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and Improved
 
Print this
Print thisPrint this
Print this
 
Fcontratos
FcontratosFcontratos
Fcontratos
 
Emmet cheat-sheet
Emmet cheat-sheetEmmet cheat-sheet
Emmet cheat-sheet
 
shoubox script
shoubox scriptshoubox script
shoubox script
 
TYBSC prac soln
TYBSC prac solnTYBSC prac soln
TYBSC prac soln
 
HTTP For the Good or the Bad - FSEC Edition
HTTP For the Good or the Bad - FSEC EditionHTTP For the Good or the Bad - FSEC Edition
HTTP For the Good or the Bad - FSEC Edition
 
SULTHAN's - PHP MySQL programs
SULTHAN's - PHP MySQL programsSULTHAN's - PHP MySQL programs
SULTHAN's - PHP MySQL programs
 
Practical PHP by example Jan Leth-Kjaer
Practical PHP by example   Jan Leth-KjaerPractical PHP by example   Jan Leth-Kjaer
Practical PHP by example Jan Leth-Kjaer
 
20190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React201920190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React2019
 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
 
Form & frame
Form & frameForm & frame
Form & frame
 
Theme
ThemeTheme
Theme
 
SharePoint 2010 Training Session 6
SharePoint 2010 Training Session 6SharePoint 2010 Training Session 6
SharePoint 2010 Training Session 6
 
Enjoy the vue.js
Enjoy the vue.jsEnjoy the vue.js
Enjoy the vue.js
 

Recently uploaded

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Recently uploaded (20)

Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Tatlong Kwento ni Lola basyang-1.pdf arts
Tatlong Kwento ni Lola basyang-1.pdf artsTatlong Kwento ni Lola basyang-1.pdf arts
Tatlong Kwento ni Lola basyang-1.pdf arts
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Philosophy of china and it's charactistics
Philosophy of china and it's charactisticsPhilosophy of china and it's charactistics
Philosophy of china and it's charactistics
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 

Md5 decrypter

  • 1. <html> <head><title>MD5 - Decrypter by eidelweiss</title> <link REL="SHORTCUT ICON" href="../images/cyberkids.jpg"></head> <body bgcolor="#000000" text="red"> <br> </br> <div align="center"> <center><img src="../images/cyberkids.jpg" alt="" width="400" height="160" /></center> <br> <br> <form action="<?php echo $_SERVER["PHP_SELF"]; ?>" method="POST"> MD5 Hash <input type="text" name="hash"> <input type="submit" value="Start Crack"> </form> c0d3r : eidelweiss <br> <?php $city = strtolower(trim($_POST["hash"])); if(ereg("([0-9a-f]{32})", $city)) { $urls = array( 0 => ("http://md5.rednoize.com/?p&s=md5&q=" . $city), 1 => ("http://gdataonline.com/qkhash.php?mode=txt&hash=" . $city), 2 => ("http://md5decrypter.co.uk"), 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)
  • 2. ); $patterns = array( 0 => (null), 1 => ("/</td><td width="35%"><b>(.*)</b></td></tr>/"), 2 => ("/</TD><TD align="middle" nowrap="nowrap" width=90>(.*)</TD><TD align="middle" nowrap="nowrap" width=90>cracked</TD></TR>/"), 3 => ("/<h2>Results</h2><b>Md5 Hash:</b> " . $city . "<br/><b class='red'>Normal Text: </b>(.*)<br/>/"), 4 => ("/: <b>(.*)</b><br><form action="">/"), 5 => ("/: <b><br /><br /> - (.*)</b>/"), 6 => ("/</td><td>md5 Database</td><td>" . $city . "</td><td bgcolor=#FF0000>(.*)</td><td>/"), 7 => ("/Cleartext of " . $city . " is (.*)/"), 8 => ("/<td><li>Your md5 hash is :<br><li>" . $city . " is <b>(.*)</b> used charl/"), 9 => ("/</td><td>" . $city . "</td><td>(.*)</td>/"), 10 => ("/" . $city . " -> <b>(.*)</b><br><br>/"), 11 => ("/<strong>result:</strong><font color=red>(.*)</font>&nbsp;/"), 12 => ("/The hash <strong>" . $city . "</strong> has been deciphered to: <strong>(.*)</strong>/"), 13 => ("/</div><div class="result">" . $city . ":(.*)<br/>/"), 14 => ("/<br/><center><div style="background: lightblue;"><b>Result: (.*)</b><br /></div></center><br />/"), 15 => ("/(.*)</b></h5>/") ); if((count($urls) !== count($params)) || (count($urls) !== count($patterns)) || (count($params) !== count($patterns))) { die("Error"); } for($i = 0; $i < count($urls); $i++) { echo "n<br>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)?("[w00t]" .
  • 3. $message . ": <b>" . htmlentities($final) . "</b>"):("[-]" . $message . ": Not Found"); } } ?> </div> </body> </html>