Advertisement
SoUiLaHxXx_Dz

Mail'z ExtractOr

Feb 21st, 2014
409
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.96 KB | None | 0 0
  1. <html>
  2. <head><title>Email'z [Extractor]</title>
  3. <style>
  4. textarea {
  5.   border: 2px solid #765942;
  6.   border-radius: 10px;
  7.   border-color: green;
  8.   border-style: solid;
  9.   width:99%;
  10.   height:250px;
  11. }
  12. input#gobutton{
  13. cursor:pointer;
  14. padding:5px 25px;
  15. background:#35b128;
  16. border:1px solid #33842a;
  17. -moz-border-radius: 10px;
  18. -webkit-border-radius: 10px;
  19. border-radius: 10px;
  20. -webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
  21. -moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
  22. box-shadow: 0 0 4px rgba(0,0,0, .75);
  23. color:#f3f3f3;
  24. font-size:0.6em;
  25. }
  26. </style>
  27.  
  28. </head>
  29. <body>
  30. <center>
  31. <font face="BankGothic Md BT" size="5">
  32. <p>Email'z [Extractor]</p>
  33. <form method="post">
  34. <textarea name="mails"></textarea></br>
  35. <input type="submit" id="gobutton" name="staa" value="Go..!"></form>
  36. <?
  37.  
  38. /*
  39.   CoDeD By SoUiLaHxXx_Dz
  40.   Greets To All My Friends :)
  41. */
  42. $types = array("gmail","hotmail","yahoo","aol","mail","rocketmail","orange","live","outlook");
  43. // 536F55694C61487858785F447A
  44. if($_POST["staa"] && !empty($_POST["mails"])){
  45.   // Q29EZUQgQnkgU29VaUxhSHhYeF9Eeg==
  46.  
  47.   foreach(explode("\n", $_POST["mails"]) as $mail){
  48.     foreach($types as $type){
  49.       if(eregi("@".$type, $mail)){
  50.         $file = fopen($type.".txt", "a");
  51.         fwrite($file, $mail."\n");
  52.       }
  53.     }
  54.   }
  55.   echo '<font size="4">';
  56.   if(file_exists("hotmail.txt")){ rd("hotmail.txt"); echo '</br><a href="hotmail.txt">Hotmail</a> : '.count(file("hotmail.txt")).'</br>'; }
  57.   if(file_exists("gmail.txt")){ rd("gmail.txt"); echo '</br><a href="gmail.txt">Gmail</a> : '.count(file("gmail.txt")).'</br>'; }
  58.   if(file_exists("yahoo.txt")){ rd("yahoo.txt"); echo '</br><a href="yahoo.txt">Yahoo</a> : '.count(file("yahoo.txt")).'</br>'; }
  59.   if(file_exists("aol.txt")){ rd("aol.txt"); echo '</br><a href="aol.txt">Aol</a> : '.count(file("aol.txt")).'</br>'; }
  60.   if(file_exists("mail.txt")){ rd("mail.txt"); echo '</br><a href="mail.txt">Mail</a> : '.count(file("mail.txt")).'</br>'; }
  61.   if(file_exists("rocketmail.txt")){ rd("rocketmail.txt"); echo '</br><a href="rocketmail.txt">Rocketmail</a> : '.count(file("rocketmail.txt")).'</br>'; }
  62.   if(file_exists("orange.txt")){ rd("orange.txt"); echo '</br><a href="orange.txt">Orange</a> : '.count(file("orange.txt")).'</br>'; }
  63.   if(file_exists("live.txt")){ rd("live.txt"); echo '</br><a href="live.txt">Live</a> : '.count(file("live.txt")).'</br>'; }
  64.   if(file_exists("outlook.txt")){ rd("outlook.txt"); echo '</br><a href="outlook.txt">Outlook</a> : '.count(file("outlook.txt")).'</br>'; }
  65.   echo '</font>';
  66.   echo '</br><font color="red"><p>Done..!</p></font>';
  67. }
  68.  
  69. function rd($file)
  70. {
  71.   $text = array_unique(file($file));
  72.   if($text)
  73.     $f = @fopen($file,'w');
  74.     if($f){
  75.       fputs($f, join('',$text));
  76.     }
  77. }
  78.  
  79. // Q29EZUQgQnkgU29VaUxhSHhYeF9Eeg==
  80.  
  81. echo '
  82. </br>
  83. <font face="Brush Script MT" color="red" size="5">
  84. .::CoDeD By SoUiLaHxXx_Dz::.</br>
  85. .::MaDe in AlGeria 2014::.
  86. </font>
  87. ';
  88. // 536F55694C61487858785F447A
  89.  
  90. ?>
  91. </font>
  92. </center>
  93. </body>
  94. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement