Skip to content

Commit 7fc7658

Browse files
Merge pull request #16 from Vault-Cyber-Security/refatoring
Refatoring
2 parents 042a0cf + 584cfc1 commit 7fc7658

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM golang:1.12.7-alpine
22
COPY . /opt/osint
33
WORKDIR /workspace
4-
RUN apk update && apk add python2 python3 git bash gcc g++ libxslt-dev freetds-dev python3-dev python2-dev openssl-dev musl-dev libffi-dev \
4+
RUN apk update && apk add tor python2 python3 git bash gcc g++ libxslt-dev freetds-dev python3-dev python2-dev openssl-dev musl-dev libffi-dev \
55
&& wget https://bootstrap.pypa.io/get-pip.py -O- | python2.7 \
66
&& wget https://bootstrap.pypa.io/get-pip.py -O- | python3.7 \
77
&& wget -O /opt/osint/geckodriver.tar.gz https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux64.tar.gz \

install-osint.sh

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ _run(){
3737

3838
_install_pip 'pip3' 'cython'
3939
# Operative-framework
40-
_run 'go get github.com/graniet/operative-framework'
40+
#_run 'go get github.com/graniet/operative-framework'
4141
# Install D4N155
4242
_install_git 'https://github.com/OWASP/D4N155.git'
4343
_install_pip 'pip3' '-r /workspace/D4N155/requirements.txt'
@@ -48,19 +48,19 @@ _install_pip 'pip3' '-r /workspace/sherlock/requirements.txt'
4848
_install_git 'https://github.com/sundowndev/PhoneInfoga'
4949
_install_pip 'pip3' '-r /workspace/PhoneInfoga/requirements.txt'
5050
_run 'mv /workspace/PhoneInfoga/config.example.py /workspace/PhoneInfoga/config.py'
51-
# Install Karma
52-
_install_pip 'pip3' 'git+https://github.com/decoxviii/karma.git'
51+
# Install Karma'
52+
_install_pip 'pip3' 'git+https://github.com/decoxviii/karma.git --upgrade'
5353
# Install SE Toolkit
5454
_install_git 'https://github.com/trustedsec/social-engineer-toolkit.git'
5555
_install_pip 'pip3' '-r /workspace/social-engineer-toolkit/requirements.txt'
5656
# Install Recon-ng
57-
_install_git 'https://bitbucket.org/LaNMaSteR53/recon-ng.git'
57+
_install_git 'https://github.com/lanmaster53/recon-ng.git'
5858
_install_pip 'pip3' '-r /workspace/recon-ng/REQUIREMENTS'
5959
# Install OpenVas
6060
_install_git 'https://github.com/greenbone/openvas.git'
6161
# Install The Harvester
6262
_install_git 'https://github.com/laramies/theHarvester.git'
63-
_install_pip 'pip3' '-r /workspace/theHarvester/requirements.txt'
63+
_install_pip 'pip3' '-r /workspace/theHarvester/requirements/base.txt'
6464
# Install Cr3dOv3r
6565
_install_git 'https://github.com/D4Vinci/Cr3dOv3r.git'
6666
_install_pip 'pip3' '-r /workspace/Cr3dOv3r/requirements.txt'
@@ -70,25 +70,25 @@ _install_pip 'pip2' '-r /workspace/dnsrecon/requirements.txt'
7070
# Install Buster
7171
_install_git 'https://github.com/sham00n/buster.git'
7272
_install_pip 'pip3' 'numpy'
73-
_run "cd workspace/buster;python3 setup.py install;cd $here"
73+
_run "cd /workspace/buster;python3 setup.py install;cd $here"
7474
# Install Whois
7575
_run 'apk add whois nmap'
7676
# Install osrframework
77-
_install_pip 'pip2' 'osrframework'
77+
_install_pip 'pip3' 'osrframework'
7878
_run 'wget https://raw.githubusercontent.com/i3visio/osrframework/master/config/general.cfg -O ~/.config/OSRFramework/default/general.cfg'
7979
_run 'wget https://github.com/i3visio/osrframework/blob/master/config/browser.cfg -O /root/.config/OSRFramework/default/browser.cfg'
8080
# Install InstagramOsint
8181
_install_git 'https://github.com/sc1341/InstagramOSINT.git'
8282
_install_pip 'pip3' '-r /workspace/InstagramOSINT/requirements.txt'
8383
# Install Datasploit
8484
_install_git 'https://github.com/dvopsway/datasploit.git'
85-
_install_pip 'pip2.7' '--upgrade -r /workspace/datasploit/requirements.txt'
85+
_install_pip 'pip2' '--force-reinstall -r /workspace/datasploit/requirements.txt'
8686
# Install Cloudfail
8787
_install_git 'https://github.com/m0rtem/CloudFail.git'
8888
_install_pip 'pip3' '-r /workspace/CloudFail/requirements.txt'
8989
# Install WAFW00f
9090
_install_git 'https://github.com/EnableSecurity/wafw00f.git'
91-
_run "cd workspace/wafw00f;python3 setup.py install;cd $here"
91+
_run "cd /workspace/wafw00f;python3 setup.py install;cd $here"
9292

9393
# Install editor
9494
_run 'apk add vim'
@@ -97,7 +97,7 @@ _run 'apk add vim'
9797
banner="
9898
9999
\t\t ~$bwhite TOOLS $end~
100-
\t$bwhite Operative-framework$end: operative framework is a OSINT investigation framework
100+
\t$red We can help for install this framework [Update broken] → $bwhite Operative-framework$end: operative framework is a OSINT investigation framework
101101
\t$bwhite D4N155$end: Intelligent and dynamic wordlist using OSINT
102102
\t$bwhite Sherlock$end: Find usernames across social networks
103103
\t$bwhite PhoneInfoga$end: Advanced information gathering & OSINT tool for phone numbers
@@ -114,10 +114,10 @@ banner="
114114
\t$bwhite Datasploit$end: A tool to perform various OSINT techniques
115115
\t$bwhite Cloudfail$end: Utilize misconfigured DNS and old database records to find hidden IP\'s behind the CloudFlare network
116116
117+
\ttype: 'tool' to show this message
117118
"
118119

119-
120120
# bashrc
121-
_run 'wget https://raw.githubusercontent.com/Scorpion-Cyber-Security/vault-bash/master/.bashrc -O .bashrc'
121+
_run 'wget https://raw.githubusercontent.com/vault-cyber-security/vault-bash/master/.bashrc -O .bashrc'
122122
cat .bashrc >> ~/.bashrc
123-
echo -e "printf \"\"\"$banner\"\"\"" >> ~/.bashrc
123+
echo -e "printf \"\"\"$banner\"\"\";alias 'tools'=\"\"\"$banner\"\"\"" >> ~/.bashrc

0 commit comments

Comments
 (0)