Skip to content

Commit

Permalink
Merge pull request #5 from Vault-Cyber-Security/dev
Browse files Browse the repository at this point in the history
1.0 -- Full Scan
  • Loading branch information
matholiveira91 authored Sep 24, 2019
2 parents 2684436 + 20d31cc commit bced17b
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 63 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ RUN apk update && apk add python2 python3 git bash gcc g++ libxslt-dev freetds-d
&& rm -rf *tar.gz
ENV PATH /usr/local/bin:/usr/local/sbin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/bin:/packages/src:/usr/local/go/bin
RUN bash /packages/src/install-osint.sh
ENTRYPOINT /bin/bash
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
<p align="center">
<img src="img/vcb.gif" height=200 alt="Scorpion-Osint">
</p>

# OSINT
Docker image for osint tools, in progress
Docker image for osint tools with Vault Cyber Security

# Run
```docker
docker pull scorpionsec/osint:unstable
docker run -it scorpionsec/osint:unstable bash
docker pull vaultsecurity/osint
docker run -it vaultsecurity/osint bash
```

# About
Expand All @@ -23,4 +27,6 @@ The image was wrote for Security Osint with tools:
- R3dOv3r: __Know the dangers of credential reuse attacks__
- Buster: __Find emails of a person and return info associated with them__
- InstagramOsint: __An Instagram Open Source Intelligence Tool__
- Datasploit: __A tool to perform various OSINT techniques__
- Cloudfail: __Utilize misconfigured DNS and old database records to find hidden IP's behind the CloudFlare network__

57 changes: 0 additions & 57 deletions ascii-art.sh

This file was deleted.

Binary file added img/vcb.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 36 additions & 3 deletions install-osint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/sh
#!/usr/bin/bash

# Fix problems of directories
here="`dirname "$0"`"
Expand All @@ -10,6 +10,7 @@ green='\e[92m'
red='\e[91m'
end='\e[0m'
bgred='\e[41m'
bold='\e[1m'
# Status
correct="[\e[1m\e[92;1m ✔ $end]"
incorrect="[\e[1m\e[91;1m ✘ $end]"
Expand Down Expand Up @@ -37,7 +38,7 @@ _install_pip 'pip3' 'cython'
# Operative-framework
_run 'go get github.com/graniet/operative-framework'
# Install D4N155
_install_git 'https://github.com/OWASP/D4N155.git'
_install_git 'https://githu b.com/OWASP/D4N155.git'
_install_pip 'pip3' '-r /workspace/D4N155/requirements.txt'
# Install Sherlock
_install_git 'https://github.com/sherlock-project/sherlock.git'
Expand Down Expand Up @@ -76,5 +77,37 @@ _install_pip 'pip2' 'osrframework'
# Install InstagramOsint
_install_git 'https://github.com/sc1341/InstagramOSINT.git'
_install_pip 'pip3' '-r /workspace/InstagramOSINT/requirements.txt'
# Install Datasploit
_install_git 'https://github.com/dvopsway/datasploit.git'
_install_pip 'pip2.7' '--upgrade -r /workspace/datasploit/requirements.txt'
# Install Cloudfail
_install_git 'https://github.com/m0rtem/CloudFail.git'
_install_pip 'pip3' '-r /workspace/CloudFail/requirements.txt'

cat ascii-art.sh >> ~/.bashrc
# Install editor
_run 'apk add vim'

# Banner
banner="\
$bold Operative-framework$end: operative framework is a OSINT investigation framework
$bold D4N155$end: Intelligent and dynamic wordlist using OSINT
$bold Sherlock$end: Find usernames across social networks
$bold PhoneInfoga$end: Advanced information gathering & OSINT tool for phone numbers
$bold Karma$end: Find leaked emails with your passwords
$bold Recon-ng$end: Recon-ng is a full-featured Web Reconnaissance framework written in Python
$bold SE Toolkit$end: The Social-Engineer Toolkit
$bold OpenVas$end: Open Vulnerability Assessment Scanner
$bold The Harvester$end: E-mails, subdomains and names Harvester - OSINT
$bold Whois$end: Get whois data
$bold osrframework$end: Open Sources Research Framework
$bold R3dOv3r$end: Know the dangers of credential reuse attacks
$bold Buster$end: Find emails of a person and return info associated with them
$bold InstagramOsint$end: An Instagram Open Source Intelligence Tool
$bold Datasploit$end: A tool to perform various OSINT techniques
$bold Cloufail$end: Utilize misconfigured DNS and old database records to find hidden IP\'s behind the CloudFlare network"


# bashrc
_run 'wget https://github.com/Scorpion-Cyber-Security/vault-bash/master/.bashrc -O .bashrc'
cat .bashrc >> ~/.bashrc
echo -e "echo '''$banner'''" >> ~/.bashrc

0 comments on commit bced17b

Please sign in to comment.