-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathosintBOX.sh
130 lines (117 loc) · 3.85 KB
/
osintBOX.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
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
119
120
121
122
123
124
125
126
127
128
129
130
#!/bin/bash
clear
# Let's update the system before we begin with the installation
sudo apt update
sudo apt update --fix-missing
sudo apt safe-upgrade -y
# Let's create a folder for the tools that need to be installed manually
mkdir /home/$USER/Tools
cd /home/$USER/Tools
clear
echo " "
echo " _ _ ____ _____ __ "
echo " ___ ___(_)_ __ | |_| __ ) / _ \ \/ / "
echo " / _ \/ __| | '_ \| __| _ \| | | \ / "
echo " | (_) \__ \ | | | | |_| |_) | |_| / \ "
echo " \___/|___/_|_| |_|\__|____/ \___/_/\_\ "
echo " "
# Requirements
sudo apt install python3 -y
sudo apt install python3-pip -y
# Tools installation
# dmitry exiftool eyewitness fierce maltego mat2 metagoofil osrframework photon recon-ng sublist3r sherlock
echo "# Installing APPs"
echo "# The Following APPs are going to be Installed"
echo "# dmitry exiftool eyewitness fierce maltego mat2 metagoofil osrframework photon recon-ng sublist3r sherlock"
sudo apt install dmitry exiftool eyewitness fierce maltego mat2 mediainfo metagoofil photon recon-ng sublist3r sherlock -y
sudo pip3 install osrframework
clear
echo "#"
echo "#"
echo "# Automated installation of APPs completed"
echo "#"
echo "#"
echo "# Installing APPs from Github"
echo "# The Following APPs are going to be Installed"
echo "# OSINTgram Twint TheHarvester Spiderfoot PhoneInfoga"
# OSINTgram
git clone https://github.com/Datalux/Osintgram.git
cd Osintgram/
sudo apt install libncurses5-dev -y
sudo pip install gnureadline==6.3.3
sudo pip3 install -r requirements.txt
sudo make install
cd ..
clear
# TheHarvester
git clone https://github.com/laramies/theHarvester
cd theHarvester/
sudo python3 -m pip install -r requirements/base.txt
sudo apt install theharvester -y
cd ..
sudo rm -r theHarvester/
clear
# Spiderfoot
wget https://github.com/smicallef/spiderfoot/archive/v4.0.tar.gz
tar zxvf v4.0.tar.gz
sudo rm v4.0.tar.gz
cd spiderfoot-4.0
sudo pip3 install -r requirements.txt
cd ..
clear
# Twint
git clone --depth=1 https://github.com/twintproject/twint.git
cd twint
sudo pip install aiohttp==3.7.0
sudo pip3 install . -r requirements.txt
sudo pip3 install twint
cd ..
sudo rm -r twint/
clear
# PhoneInfoga
curl -sSL https://raw.githubusercontent.com/sundowndev/phoneinfoga/master/support/scripts/install | bash
sudo mv ./phoneinfoga /usr/bin/phoneinfoga
clear
echo "# Installing APPs from Other Sources"
echo "# The Following APPs are going to be Installed"
echo "# Google Earth Pro"
wget -O google-earth64.deb http://dl.google.com/dl/earth/client/current/google-earth-stable_current_amd64.deb
sudo dpkg -i google-earth64.deb
sudo apt-get -f install
sudo rm google-earth64.deb
clear
echo " "
echo " _ _ ____ _____ __ "
echo " ___ ___(_)_ __ | |_| __ ) / _ \ \/ / "
echo " / _ \/ __| | '_ \| __| _ \| | | \ / "
echo " | (_) \__ \ | | | | |_| |_) | |_| / \ "
echo " \___/|___/_|_| |_|\__|____/ \___/_/\_\ "
echo " "
echo "# All the APPs has been installed. "
echo "#"
echo "# Excute the following commands to get info on each tool:"
echo "# dmitry -h"
echo "# exiftool -h"
echo "# eyewitness -h"
echo "# fierce -h"
echo "# mat2 -h"
echo "# metagoofil -h"
echo "# sudo osrf -h"
echo "# phoneinfoga -h"
echo "# photon -h"
echo "# recon-ng -h"
echo "# sherlock -h"
echo "# sublist3r -h"
echo "# theHarvester -h"
echo "# sudo twint -h"
echo "# "
echo "# "
echo "# python3 /home/$USER/Tools/Osintgram/main.py -h"
echo "# python3 /home/$USER/Tools/spiderfoot-4.0/sf.py -h"
echo "# "
echo "# "
echo "# You can access Malteo from the APPs menu or typing the command "maltego""
echo "# "
echo "# You can access Google Earth Pro from the APPs menu or typing the command "google-earth-pro""
echo "# "
echo "# "