-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathdependencies
executable file
·119 lines (94 loc) · 2.04 KB
/
dependencies
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/bin/sh
#-:-:-:-:-:-:-:-:-:-:-:-:#
# TIDoS Framework #
#-:-:-:-:-:-:-:-:-:-:-:-:#
#This module requires TIDoS Framework
#https://github.com/theInfectedDrake/TIDoS-Framework
# Update ur distro after of the installation.
# USE
# sudo apt-get update
# sudo apt-get upgrade
if ! hash libncurses5 2>/dev/null; then apt-get install --yes libncurses5 ; fi
if ! hash libxml2 2>/dev/null; then apt-get install --yes libxml2 ; fi
if ! hash nmap 2>/dev/null; then sudo apt-get install --yes nmap ; fi
if ! hash git 2>/dev/null; then sudo apt-get install --yes git ; fi
if ! hash build-essential 2>/dev/null; then sudo apt-get install --yes build-essential ; fi
if ! hash python-pip 2>/dev/null; then sudo apt-get install --yes python-pip ; fi
if ! hash python-xmpp 2>/dev/null; then sudo apt-get install --yes python-xmpp ; fi
if ! hash default-libmysqlclient-dev 2>/dev/null; then sudo apt-get install --yes default-libmysqlclient-dev ; fi
pip install sslscan
pip install tldextract
DIR=$(dirname $0)
cd lib/setuptools/
sudo python bootstrap.py
sudo python setup.py install
cd ..
cd ..
cd lib/scapy/
sudo python setup.py install
cd ..
cd ..
cd lib/clearbit/
sudo python setup.py install
cd ..
cd ..
cd lib/fullcontact/
sudo python setup.py install
cd ..
cd ..
cd lib/pexpect/
sudo python setup.py install
cd ..
cd ..
cd lib/idna/
sudo python setup.py install
cd ..
cd ..
cd lib/bs4/
sudo python setup.py install
cd ..
cd ..
cd lib/tld/
sudo python setup.py install
cd ..
cd ..
cd lib/shodan/
sudo python setup.py install
cd ..
cd ..
cd lib/requests/
sudo python setup.py install
cd ..
cd ..
cd lib/wafw00f/
sudo python setup.py install
cd ..
cd ..
cd lib/pymap/
sudo python setup.py install
cd ..
cd ..
cd lib/google/
sudo python setup.py install
cd ..
cd ..
cd lib/emailprotectionslib/
sudo python setup.py install
cd ..
cd ..
cd lib/mysql/
sudo python setup.py install
cd ..
cd ..
cd lib/builtwith/
sudo python setup.py install
cd ..
cd ..
cd lib/lxml/
sudo python setup.py install
cd ..
cd ..
cd lib/mechanize/
sudo python setup.py install
cd ..
cd ..