Advertisement
Guest User

Untitled

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