-
Notifications
You must be signed in to change notification settings - Fork 3
/
pentesting-tools.sh
65 lines (65 loc) · 1.5 KB
/
pentesting-tools.sh
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
65
#!/bin/ash
# Adds tools from Github
#
# Installs Metasploit
apk update && \
apk add && \
ruby-irb \
ruby-ri \
rubygems \
subversion \
ruby-dev \
libpcap-devel \
postgresql \
postgresql-dev \
ruby-pg && \
wget http://downloads.metasploit.com/data/releases/framework-latest.tar.bz2 && \
tar -jxf framework-latest.tar.bz2 && \
mkdir -p /opt/metasploit4 && \
cp -a msf/ /opt/metasploit4/msf && \
chown root:root -R /opt/metasploit4/msf && \
ln -sf /opt/metasploit4/msf/msf* /usr/local/bin && \
cd && \
#
# Installs CopyCat
git clone https://github.com/entynetproject/copycat && \
cd copycat && \
chmod +x install.sh && \
install.sh && \
cd && \
#
# Installs ShadowSocks and 3Proxy
apk add && \
libshadowsocks-libev \
shadowsocks-libev-dev \
shadowsocks-libev \
3proxy && \
#
# Installs Commix
git clone https://github.com/commixproject/commix.git commix && \
cd commix && \
python2 commix.py --update && \
python2 commix.py --install && \
#
# Installs Dozer
git clone https://github.com/mwrlabs/drozer && \
cd drozer && \
python setup.py bdist_wheel && \
#
# Installs Recon-Ng
git clone https://github.com/lanmaster53/recon-ng && \
cd recon-ng && \
python3 -m pip install -r REQUIREMENTS && \
#
# Installs Eggshell
git clone https://github.com/ProjectZeroDays/eggshell_py3.git && \
cd eggshell && \
python3 eggshell.py && \
#
# Installs Ghost
git clone https://github.com/entynetproject/ghost.git && \
cd ghost && \
chmod +x install.sh && \
sh install.sh && \
cd && \
sh other-tools.sh