Skip to content

Commit bced17b

Browse files
Merge pull request #5 from Vault-Cyber-Security/dev
1.0 -- Full Scan
2 parents 2684436 + 20d31cc commit bced17b

File tree

5 files changed

+46
-63
lines changed

5 files changed

+46
-63
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
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
6-
docker pull scorpionsec/osint:unstable
7-
docker run -it scorpionsec/osint:unstable bash
10+
docker pull vaultsecurity/osint
11+
docker run -it vaultsecurity/osint bash
812
```
913

1014
# About
@@ -23,4 +27,6 @@ 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__
2632

ascii-art.sh

Lines changed: 0 additions & 57 deletions
This file was deleted.

img/vcb.gif

2.91 MB
Loading

install-osint.sh

Lines changed: 36 additions & 3 deletions
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,7 @@ green='\e[92m'
1010
red='\e[91m'
1111
end='\e[0m'
1212
bgred='\e[41m'
13+
bold='\e[1m'
1314
# Status
1415
correct="[\e[1m\e[92;1m ✔ $end]"
1516
incorrect="[\e[1m\e[91;1m ✘ $end]"
@@ -37,7 +38,7 @@ _install_pip 'pip3' 'cython'
3738
# Operative-framework
3839
_run 'go get github.com/graniet/operative-framework'
3940
# Install D4N155
40-
_install_git 'https://github.com/OWASP/D4N155.git'
41+
_install_git 'https://githu b.com/OWASP/D4N155.git'
4142
_install_pip 'pip3' '-r /workspace/D4N155/requirements.txt'
4243
# Install Sherlock
4344
_install_git 'https://github.com/sherlock-project/sherlock.git'
@@ -76,5 +77,37 @@ _install_pip 'pip2' 'osrframework'
7677
# Install InstagramOsint
7778
_install_git 'https://github.com/sc1341/InstagramOSINT.git'
7879
_install_pip 'pip3' '-r /workspace/InstagramOSINT/requirements.txt'
80+
# Install Datasploit
81+
_install_git 'https://github.com/dvopsway/datasploit.git'
82+
_install_pip 'pip2.7' '--upgrade -r /workspace/datasploit/requirements.txt'
83+
# Install Cloudfail
84+
_install_git 'https://github.com/m0rtem/CloudFail.git'
85+
_install_pip 'pip3' '-r /workspace/CloudFail/requirements.txt'
7986

80-
cat ascii-art.sh >> ~/.bashrc
87+
# Install editor
88+
_run 'apk add vim'
89+
90+
# Banner
91+
banner="\
92+
$bold Operative-framework$end: operative framework is a OSINT investigation framework
93+
$bold D4N155$end: Intelligent and dynamic wordlist using OSINT
94+
$bold Sherlock$end: Find usernames across social networks
95+
$bold PhoneInfoga$end: Advanced information gathering & OSINT tool for phone numbers
96+
$bold Karma$end: Find leaked emails with your passwords
97+
$bold Recon-ng$end: Recon-ng is a full-featured Web Reconnaissance framework written in Python
98+
$bold SE Toolkit$end: The Social-Engineer Toolkit
99+
$bold OpenVas$end: Open Vulnerability Assessment Scanner
100+
$bold The Harvester$end: E-mails, subdomains and names Harvester - OSINT
101+
$bold Whois$end: Get whois data
102+
$bold osrframework$end: Open Sources Research Framework
103+
$bold R3dOv3r$end: Know the dangers of credential reuse attacks
104+
$bold Buster$end: Find emails of a person and return info associated with them
105+
$bold InstagramOsint$end: An Instagram Open Source Intelligence Tool
106+
$bold Datasploit$end: A tool to perform various OSINT techniques
107+
$bold Cloufail$end: Utilize misconfigured DNS and old database records to find hidden IP\'s behind the CloudFlare network"
108+
109+
110+
# bashrc
111+
_run 'wget https://raw.githubusercontent.com/Scorpion-Cyber-Security/vault-bash/master/.bashrc -O .bashrc'
112+
cat .bashrc >> ~/.bashrc
113+
echo -e "echo '''$banner'''" >> ~/.bashrc

0 commit comments

Comments
 (0)