We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 464e735 commit f995d7eCopy full SHA for f995d7e
unzip.sh
@@ -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
17
+echo -n "Dictionary File Name(passowords, wordlists)."
18
+read lname
19
20
21
+if [ -z $lname ];then
22
23
+ echo "You did not enter a Dictionary File Name(passowords, wordlists)"
24
25
26
27
28
+echo "You can see the result on Terminal. Starting Cacking Password of $fname. "
29
30
+read -p "Press <enter> to continue."
31
+python unzip.py -f %fname -d %lname
0 commit comments