1- #! /usr/bin/sh
1+ #! /usr/bin/bash
22
33# Fix problems of directories
44here=" ` dirname " $0 " ` "
@@ -10,6 +10,8 @@ green='\e[92m'
1010red=' \e[91m'
1111end=' \e[0m'
1212bgred=' \e[41m'
13+ bold=' \e[1m'
14+ bwhite=' \e[1;97m'
1315# Status
1416correct=" [\e[1m\e[92;1m ✔ $end ]"
1517incorrect=" [\e[1m\e[91;1m ✘ $end ]"
@@ -37,7 +39,7 @@ _install_pip 'pip3' 'cython'
3739# Operative-framework
3840_run ' go get github.com/graniet/operative-framework'
3941# Install D4N155
40- _install_git ' https://github .com/OWASP/D4N155.git'
42+ _install_git ' https://githu b .com/OWASP/D4N155.git'
4143_install_pip ' pip3' ' -r /workspace/D4N155/requirements.txt'
4244# Install Sherlock
4345_install_git ' https://github.com/sherlock-project/sherlock.git'
@@ -47,7 +49,6 @@ _install_git 'https://github.com/sundowndev/PhoneInfoga'
4749_install_pip ' pip3' ' -r /workspace/PhoneInfoga/requirements.txt'
4850_run ' mv /workspace/PhoneInfoga/config.example.py /workspace/PhoneInfoga/config.py'
4951# Install Karma
50-
5152_install_pip ' pip3' ' git+https://github.com/decoxviii/karma.git'
5253# Install SE Toolkit
5354_install_git ' https://github.com/trustedsec/social-engineer-toolkit.git'
@@ -68,13 +69,52 @@ _install_git 'https://github.com/darkoperator/dnsrecon.git'
6869_install_pip ' pip2' ' -r /workspace/dnsrecon/requirements.txt'
6970# Install Buster
7071_install_git ' https://github.com/sham00n/buster.git'
72+ _install_pip ' pip3' ' numpy'
7173_run " cd workspace/buster;python3 setup.py install;cd $here "
7274# Install Whois
7375_run ' apk add whois nmap'
7476# Install osrframework
7577_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'
7680# Install InstagramOsint
7781_install_git ' https://github.com/sc1341/InstagramOSINT.git'
7882_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+
79116
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