Skip to content

Commit a14fd24

Browse files
author
jul10l14
committed
🎉 Hacking docker
1 parent 9985937 commit a14fd24

3 files changed

Lines changed: 27 additions & 60 deletions

File tree

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 /usr/bin/bash

ascii-art.sh

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

install-osint.sh

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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'
@@ -86,5 +87,27 @@ _install_pip 'pip3' '-r /workspace/Cloudfail/requirements.txt'
8687
# Install editor
8788
_run 'apk add vim'
8889

89-
# Add Ascii art to bashrc
90-
cat ascii-art.sh >> ~/.bashrc
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/SCORP1ON-TEAM/scorpion-bash/master/.bashrc -O .bashrc'
112+
cat .bashrc >> ~/.bashrc
113+
echo -e "$banner" >> ~/.bashrc

0 commit comments

Comments
 (0)