-
Notifications
You must be signed in to change notification settings - Fork 0
/
pkgs_git_repos.sh
68 lines (51 loc) · 1.6 KB
/
pkgs_git_repos.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
66
67
68
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive
echo ">>> cloning AutoRecon and dependencies ..."
if [[ -e /opt/AutoRecon ]]; then
echo ">>> SKIP: already cloned."
else
apt-get -qq -y install seclists > /dev/null
git clone https://github.com/Tib3rius/AutoRecon.git /opt/AutoRecon
fi
echo ">>> cloning AutoBlue..."
if [[ -e /opt/AutoBlue ]]; then
echo ">>> SKIP: already cloned."
else
git clone https://github.com/3ndG4me/AutoBlue-MS17-010.git /opt/AutoBlue
fi
echo ">>> cloning LinEnum..."
if [[ -e /opt/LinEnum ]]; then
echo ">>> SKIP: already cloned."
else
git clone https://github.com/rebootuser/LinEnum.git /opt/LinEnum
fi
echo ">>> cloning Windows Enum NG..."
if [[ -e /opt/wesng ]]; then
echo ">>> SKIP: already cloned."
else
git clone https://github.com/bitsadmin/wesng.git /opt/wesng
fi
echo ">>> cloning JAWS..."
if [[ -e /opt/JAWS ]]; then
echo ">>> SKIP: already cloned."
else
git clone https://github.com/411Hall/JAWS.git /opt/JAWS
fi
echo ">>> cloning Linux Exploit Suggester 2..."
if [[ -e /opt/linux-exploit-suggester-2 ]]; then
echo ">>> SKIP: already cloned."
else
git clone https://github.com/jondonas/linux-exploit-suggester-2.git /opt/linux-exploit-suggester-2
fi
echo ">>> cloning NMap Bootstrap XSL..."
if [[ -e /opt/nmap-bootstrap-xsl ]]; then
echo ">>> SKIP: already cloned."
else
git clone https://github.com/honze-net/nmap-bootstrap-xsl.git /opt/nmap-bootstrap-xsl
fi
echo ">>> cloning AutoNSE..."
if [[ -e /opt/AutoNSE ]]; then
echo ">>> SKIP: already cloned."
else
git clone https://github.com/m4ll0k/AutoNSE /opt/AutoNSE
fi