Skip to content

Commit 8496ec4

Browse files
author
Julio Lira
authored
Merge pull request #11 from Vault-Cyber-Security/dev
New version Owasp-Day Natal
2 parents b1beffa + a4fd09c commit 8496ec4

File tree

5 files changed

+53
-62
lines changed

5 files changed

+53
-62
lines changed

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ RUN apk update && apk add python2 python3 git bash gcc g++ libxslt-dev freetds-d
99
&& rm -rf *tar.gz
1010
ENV PATH /usr/local/bin:/usr/local/sbin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/bin:/packages/src:/usr/local/go/bin
1111
RUN bash /packages/src/install-osint.sh
12+
ENTRYPOINT /bin/bash

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
<p align="center">
2+
<img src="img/vcb.gif" height=200 alt="Scorpion-Osint">
3+
</p>
4+
15
# OSINT
2-
Docker image for osint tools, in progress
6+
Docker image for osint tools with Vault Cyber Security
37

48
# Run
59
```docker
@@ -23,4 +27,7 @@ The image was wrote for Security Osint with tools:
2327
- R3dOv3r: __Know the dangers of credential reuse attacks__
2428
- Buster: __Find emails of a person and return info associated with them__
2529
- InstagramOsint: __An Instagram Open Source Intelligence Tool__
30+
- Datasploit: __A tool to perform various OSINT techniques__
31+
- Cloudfail: __Utilize misconfigured DNS and old database records to find hidden IP's behind the CloudFlare network__
32+
- WAFW00F: __WAFW00F identifies and fingerprints Web Application Firewall (WAF) products__
2633

ascii-art.sh

-57
This file was deleted.

img/vcb.gif

2.91 MB
Loading

install-osint.sh

+44-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/sh
1+
#!/usr/bin/bash
22

33
# Fix problems of directories
44
here="`dirname "$0"`"
@@ -10,6 +10,8 @@ green='\e[92m'
1010
red='\e[91m'
1111
end='\e[0m'
1212
bgred='\e[41m'
13+
bold='\e[1m'
14+
bwhite='\e[1;97m'
1315
# Status
1416
correct="[\e[1m\e[92;1m ✔ $end]"
1517
incorrect="[\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

Comments
 (0)