SlideShare una empresa de Scribd logo
1 de 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>

Más contenido relacionado

La actualidad más candente

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
 

La actualidad más candente (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 a 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 a 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
 

Último

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 

Último (20)

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).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>