1
- #! /usr/bin/sh
1
+ #! /usr/bin/bash
2
2
3
3
# Fix problems of directories
4
4
here=" ` dirname " $0 " ` "
@@ -10,6 +10,8 @@ green='\e[92m'
10
10
red=' \e[91m'
11
11
end=' \e[0m'
12
12
bgred=' \e[41m'
13
+ bold=' \e[1m'
14
+ bwhite=' \e[1;97m'
13
15
# Status
14
16
correct=" [\e[1m\e[92;1m ✔ $end ]"
15
17
incorrect=" [\e[1m\e[91;1m ✘ $end ]"
@@ -37,7 +39,7 @@ _install_pip 'pip3' 'cython'
37
39
# Operative-framework
38
40
_run ' go get github.com/graniet/operative-framework'
39
41
# Install D4N155
40
- _install_git ' https://github .com/OWASP/D4N155.git'
42
+ _install_git ' https://githu b .com/OWASP/D4N155.git'
41
43
_install_pip ' pip3' ' -r /workspace/D4N155/requirements.txt'
42
44
# Install Sherlock
43
45
_install_git ' https://github.com/sherlock-project/sherlock.git'
@@ -47,7 +49,6 @@ _install_git 'https://github.com/sundowndev/PhoneInfoga'
47
49
_install_pip ' pip3' ' -r /workspace/PhoneInfoga/requirements.txt'
48
50
_run ' mv /workspace/PhoneInfoga/config.example.py /workspace/PhoneInfoga/config.py'
49
51
# Install Karma
50
-
51
52
_install_pip ' pip3' ' git+https://github.com/decoxviii/karma.git'
52
53
# Install SE Toolkit
53
54
_install_git ' https://github.com/trustedsec/social-engineer-toolkit.git'
@@ -68,13 +69,52 @@ _install_git 'https://github.com/darkoperator/dnsrecon.git'
68
69
_install_pip ' pip2' ' -r /workspace/dnsrecon/requirements.txt'
69
70
# Install Buster
70
71
_install_git ' https://github.com/sham00n/buster.git'
72
+ _install_pip ' pip3' ' numpy'
71
73
_run " cd workspace/buster;python3 setup.py install;cd $here "
72
74
# Install Whois
73
75
_run ' apk add whois nmap'
74
76
# Install osrframework
75
77
_install_pip ' pip2' ' osrframework'
78
+ _run ' wget https://raw.githubusercontent.com/i3visio/osrframework/master/config/general.cfg -O ~/.config/OSRFramework/default/general.cfg'
79
+ _run ' wget https://github.com/i3visio/osrframework/blob/master/config/browser.cfg -O /root/.config/OSRFramework/default/browser.cfg'
76
80
# Install InstagramOsint
77
81
_install_git ' https://github.com/sc1341/InstagramOSINT.git'
78
82
_install_pip ' pip3' ' -r /workspace/InstagramOSINT/requirements.txt'
83
+ # Install Datasploit
84
+ _install_git ' https://github.com/dvopsway/datasploit.git'
85
+ _install_pip ' pip2.7' ' --upgrade -r /workspace/datasploit/requirements.txt'
86
+ # Install Cloudfail
87
+ _install_git ' https://github.com/m0rtem/CloudFail.git'
88
+ _install_pip ' pip3' ' -r /workspace/CloudFail/requirements.txt'
89
+
90
+ # Install editor
91
+ _run ' apk add vim'
92
+
93
+ # Banner
94
+ banner="
95
+
96
+ \t\t ~$bwhite TOOLS $end ~
97
+ \t$bwhite Operative-framework$end : operative framework is a OSINT investigation framework
98
+ \t$bwhite D4N155$end : Intelligent and dynamic wordlist using OSINT
99
+ \t$bwhite Sherlock$end : Find usernames across social networks
100
+ \t$bwhite PhoneInfoga$end : Advanced information gathering & OSINT tool for phone numbers
101
+ \t$bwhite Karma$end : Find leaked emails with your passwords
102
+ \t$bwhite Recon-ng$end : Recon-ng is a full-featured Web Reconnaissance framework written in Python
103
+ \t$bwhite SE Toolkit$end : The Social-Engineer Toolkit
104
+ \t$bwhite OpenVas$end : Open Vulnerability Assessment Scanner
105
+ \t$bwhite The Harvester$end : E-mails, subdomains and names Harvester - OSINT
106
+ \t$bwhite Whois$end : Get whois data
107
+ \t$bwhite osrframework$end : Open Sources Research Framework
108
+ \t$bwhite R3dOv3r$end : Know the dangers of credential reuse attacks
109
+ \t$bwhite Buster$end : Find emails of a person and return info associated with them
110
+ \t$bwhite InstagramOsint$end : An Instagram Open Source Intelligence Tool
111
+ \t$bwhite Datasploit$end : A tool to perform various OSINT techniques
112
+ \t$bwhite Cloufail$end : Utilize misconfigured DNS and old database records to find hidden IP\'s behind the CloudFlare network
113
+
114
+ "
115
+
79
116
80
- cat ascii-art.sh >> ~ /.bashrc
117
+ # bashrc
118
+ _run ' wget https://raw.githubusercontent.com/Scorpion-Cyber-Security/vault-bash/master/.bashrc -O .bashrc'
119
+ cat .bashrc >> ~ /.bashrc
120
+ echo -e " printf \"\"\" $banner \"\"\" " >> ~ /.bashrc
0 commit comments