Guest User

Untitled

a guest
Aug 12th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.25 KB | None | 0 0
  1. #!/usr/bin/perl
  2.  
  3.  
  4.  
  5. open(LISTE,"list.txt");
  6.  
  7. while ($line=<LISTE>) {
  8.     @val = (split(' ',$line),@val);
  9.     push(@res,$val[1]);
  10. }
  11. close(LISTE);
  12. print $res[3];
  13. for ($i=40; $i<160; $i++) {
  14.     $pass = $res[$i+2];
  15.     print `unrar e -p$pass $i.rar`;
  16.  
  17.  
  18. }
Add Comment
Please, Sign In to add comment