Skip to content

Commit f995d7e

Browse files
authored
Create unzip.sh
1 parent 464e735 commit f995d7e

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

unzip.sh

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#!/bin/bash
2+
clear
3+
4+
echo
5+
echo "c0d3r zip password-cracker v1.0"
6+
echo -n "Zip File Name: "
7+
read fname
8+
9+
# check for no response
10+
if [ -z $fname ];then
11+
echo
12+
echo "You did not enter a zip name."
13+
exit
14+
fi
15+
16+
echo
17+
echo -n "Dictionary File Name(passowords, wordlists)."
18+
read lname
19+
20+
# check for no response
21+
if [ -z $lname ];then
22+
echo
23+
echo "You did not enter a Dictionary File Name(passowords, wordlists)"
24+
exit
25+
fi
26+
27+
echo
28+
echo "You can see the result on Terminal. Starting Cacking Password of $fname. "
29+
echo
30+
read -p "Press <enter> to continue."
31+
python unzip.py -f %fname -d %lname

0 commit comments

Comments
 (0)