-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from SCORP1ON-TEAM/dev
Dev
- Loading branch information
Showing
3 changed files
with
64 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
FROM python:3 | ||
FROM golang:1.12.7-alpine | ||
COPY . /packages/src | ||
WORKDIR /workspace | ||
RUN wget https://dl.google.com/go/go1.12.6.linux-amd64.tar.gz \ | ||
&& tar -xvf go1.12.6.linux-amd64.tar.gz && mv go /usr/local \ | ||
&& apt-get update -y && apt-get install python2.7 -y \ | ||
&& wget -O- -q https://bootstrap.pypa.io/get-pip.py | python2.7 \ | ||
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 \ | ||
&& wget https://bootstrap.pypa.io/get-pip.py -O- | python2.7 \ | ||
&& wget https://bootstrap.pypa.io/get-pip.py -O- | python3.7 \ | ||
&& wget -O /packages/src/geckodriver.tar.gz https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux64.tar.gz \ | ||
&& tar -C /packages/src/ -xvf /packages/src/geckodriver.tar.gz | ||
ENV GOROOT /usr/local/go | ||
ENV GOPATH $HOME/Projects/Proj1 | ||
ENV PATH /Projects/Proj1/bin:/usr/local/go/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/bin:/packages/src/ | ||
&& tar -C /packages/src/ -xvf /packages/src/geckodriver.tar.gz \ | ||
&& 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
# OSINT | ||
Docker image for osint tools, in progress | ||
|
||
# Run | ||
```docker | ||
docker pull scorpionsec/osint:unstable | ||
docker run -it scorpionsec/osint:unstable bash | ||
``` | ||
|
||
# About | ||
The image was wrote for Security Osint with tools: | ||
- Operative-framework: __operative framework is a OSINT investigation framework__ | ||
- D4N155: __Intelligent and dynamic wordlist using OSINT__ | ||
- Sherlock: __Find usernames across social networks__ | ||
- PhoneInfoga: __Advanced information gathering & OSINT tool for phone numbers__ | ||
- Karma: __Find leaked emails with your passwords__ | ||
- Recon-ng: __Recon-ng is a full-featured Web Reconnaissance framework written in Python__ | ||
- SE Toolkit: __The Social-Engineer Toolkit__ | ||
- OpenVas: __Open Vulnerability Assessment Scanner__ | ||
- The Harvester: __E-mails, subdomains and names Harvester - OSINT__ | ||
- Whois: __Get whois data__ | ||
- osrframework: __Open Sources Research Framework__ | ||
- 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__ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters