forked from 0xInfection/TIDoS-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies
executable file
·111 lines (89 loc) · 2.23 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
#!/bin/sh
#-:-:-:-:-:-:-:-:-:-:-:-:#
# TIDoS Framework #
#-:-:-:-:-:-:-:-:-:-:-:-:#
#This module requires TIDoS Framework
#https://github.com/0xInfection/TIDoS-Framework
# Update ur distro after of the installation.
# USE
# sudo apt-get update
# sudo apt-get upgrade
# environment dependencies
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 tcpdump 2>/dev/null; then sudo apt-get install --yes tcpdump ; fi
if ! hash libexiv2-dev 2>/dev/null; then sudo apt-get install --yes libexiv2-dev ; 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 stuffs (not suitable via source installations)
pip2 install sslyze
pip2 install tldextract
pip2 install lxml
pip2 install pillow
DIR=$(dirname $0)
# install from scratch
cd lib/setuptools/
sudo python2 bootstrap.py
sudo python2 setup.py install
cd ..
cd ..
cd lib/scapy_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/pexpect_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/idna_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/bs4_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/tld_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/shodan_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/requests_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/pymap_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/google_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/emailprotectionslib_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/mysql_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/builtwith_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/mechanize_mod/
sudo python2 setup.py install
cd ..
cd ..
cd lib/pyexiv2_mod/
sudo python2 setup.py install
cd ..
cd ..