CrashBandicot

Hotmail Extractor

Sep 26th, 2014
8,089
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 1.78 KB | None | 0 0
  1. #!/usr/bin/perl
  2. #                        ->Coder By CrashBandicot
  3. #                        ->sh00tz<- Magnom , m0sta , hamid , HashCat , Yunus, Ghosty , M-A                      
  4.  
  5. if ($^O =~ /Win/) { system("cls"); system("title hotmail Extractor"); } else { system("clear"); }
  6.  
  7. print "\n\t
  8.  
  9.                            [+++++++++++++++++++++++]
  10.                            [|  Hotmail Extractor  |]
  11.                            [|  by CrashBandicot   |]
  12.                            [+++++++++++++++++++++++]
  13.                          
  14.  
  15. ";
  16.  
  17. open (file, "<$ARGV[0]") || die "[-] Open the Mail list file Nigga !\n\n  Usage : $0 maillist.txt   ";
  18. my @file = <file>;
  19. close file;
  20.  
  21. print "\n [+] ".scalar(@file)." Mail Charged \n\n";
  22. print "  [+] Try Load The Hotmail Mail !\n\n";
  23.  
  24. foreach $hotmail(@file) {  
  25.  
  26.     if($hotmail =~ m/(.*?)hotmail.com/) {
  27.  
  28.         $mail = "$1hotmail.com\n";
  29.         print "     ".$mail;
  30.         open (a, ">>hotmail.txt");
  31.         print a  "$mail";
  32.         close a;
  33. }
  34.     if($hotmail =~ m/(.*?)hotmail.fr/) {
  35.  
  36.         $mail1 = "$1hotmail.fr\n";
  37.         print "     ".$mail1;
  38.         open (a, ">>hotmail.txt");
  39.         print a  "$mail1";
  40.         close a;
  41.  
  42. }   if($hotmail =~ m/(.*?)hotmail.co.uk/) {
  43.  
  44.         $mail2 = "$1hotmail.co.uk\n";
  45.         print "     ".$mail2;
  46.         open (a, ">>hotmail.txt");
  47.         print a  "$mail2";
  48.         close a;
  49. }   if($hotmail =~ m/(.*?)msn.com/) {          
  50.  
  51.         $mail3 = "$1msn.com\n";
  52.         print "     ".$mail3;
  53.         open (a, ">>hotmail.txt");
  54.         print a  "$mail3";
  55.         close a;
  56. }   if($hotmail =~ m/(.*?)outlook.com/) {        
  57.  
  58.         $mail4 = "$1outlook.com\n";
  59.         print "     ".$mail4;
  60.         open (a, ">>hotmail.txt");
  61.         print a  "$mail4";
  62.         close a;
  63. }
  64.  
  65. } if ($^O =~ /Win/) { system("start hotmail.txt"); } else { system("cat hotmail.txt"); }
Advertisement
Add Comment
Please, Sign In to add comment