Advertisement
Guest User

Untitled

a guest
Aug 26th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. i=500
  4.  
  5. #for i in 500
  6.  
  7. while [$i > 0]
  8. do
  9.     echo `fcrackzip -u -D -p /usr/share/wordlists/rockyou.txt zipfile_$i.zip` >password.txt
  10.     pass=`cat password.txt |cut -d " " -f5`
  11.     echo $pass
  12.     `unzip -P $pass zipfile_$i.zip > /dev/null 2>&1`
  13.     $i=$i-1
  14. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement