forked from h3llk4t3/autoScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
64 lines (54 loc) · 1.13 KB
/
install.sh
File metadata and controls
64 lines (54 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/bin/bash
sed -i '$ d' ~/.bashrc
echo "export PERM_DIR=$(pwd)" >> ~/.bashrc
echo "fi" >> ~/.bashrc
PERM_DIR=$(pwd)
chmod +x autoScript.sh
chmod +x update
chmod +x uninstall.sh
chmod +x depnd
chmod +x uninstall.sh
./depnd
mkdir Programs
cd Programs
git clone https://github.com/ZerBea/hcxdumptool.git
cd hcxdumptool
make
make install
cd ..
git clone https://github.com/ZerBea/hcxtools.git
cd hcxtools
make
make install
cd $PERM_DIR
chmod +x autoScript
sudo mv autoScript /bin/
mkdir Handshake
mkdir PMKID
mkdir Captured-Packets
sudo apt-get update
sudo dpkg --configure -a
sudo apt-get update --fix-missing
sudo apt-get install -f
sudo apt-get update
apt-get install figlet -y
apt-get install libpcap -y
sudo apt-get install libssl-dev -y
sudo apt install zlib1g-dev -y
apt-get install libcurl4-openssl-dev -y
apt install hashcat -y
apt-get install aircrack-ng -y
rm install.sh
bash --login
clear
figlet Install Complete
echo ""
echo "The autoScript commands are:"
echo "autoScript"
echo "autoScript run"
echo "autoScript update"
echo "autoScript uninstall"
echo "autoScript help"
echo ""
read -n 1 -r -s -p "Press any key to continue"
clear