forked from dvopsway/datasploit
-
Notifications
You must be signed in to change notification settings - Fork 433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed bug related to UTF-8 in certain requests #93
Open
P3GLEG
wants to merge
5
commits into
DataSploit:master
Choose a base branch
from
P3GLEG:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
3febf12
Fixed bug related to UTF-8 in certain requests
5c0fe58
Merge https://github.com/DataSploit/datasploit
sf-pg 4be715a
Added check for empty list before attempting to access it
08e95ee
Added check for empty list before attempting to access it
bf5ce28
Added Dockerimages for faster deployment cycles and general use
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
FROM debian:jessie-slim | ||
MAINTAINER Paul Ganea <[email protected]> | ||
ENV C_FORCE_ROOT=root | ||
RUN apt-get update -y && apt-get install -y build-essential \ | ||
curl \ | ||
git \ | ||
gnupg \ | ||
libxml2-dev \ | ||
libxmlsec1-dev \ | ||
python \ | ||
python-dev \ | ||
runit \ | ||
unzip \ | ||
vim \ | ||
wget \ | ||
zip \ | ||
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 \ | ||
&& echo "deb http://repo.mongodb.org/apt/debian jessie/mongodb-org/3.4 main" | tee /etc/apt/sources.list.d/mongodb-org-3.4.list \ | ||
&& wget -O- https://www.rabbitmq.com/rabbitmq-release-signing-key.asc | apt-key add - \ | ||
&& echo 'deb http://www.rabbitmq.com/debian/ testing main' || tee /etc/apt/sources.list.d/rabbitmq.list && apt-get update -y \ | ||
&& apt-get install -y mongodb-org rabbitmq-server \ | ||
&& curl https://bootstrap.pypa.io/get-pip.py | python \ | ||
&& apt-get install -y libxml2-dev python-dev libxmlsec1-dev\ | ||
&& git clone https://github.com/DataSploit/datasploit \ | ||
&& cd datasploit \ | ||
&& mkdir /datasploit/datasploitDb \ | ||
&& pip install -r requirements.txt \ | ||
&& useradd -ms /bin/bash k4ch0w \ | ||
&& apt-get remove -y libxml2-dev python-dev libxmlsec1-dev curl wget build-essential \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
USER k4ch0w | ||
WORKDIR /datasploit | ||
COPY service /etc/service/ | ||
COPY config.py /datasploit/config.py | ||
ENTRYPOINT ["runsvdir", "/etc/service"] |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
FROM debian:jessie-slim | ||
MAINTAINER Paul Ganea <[email protected]> | ||
ENV C_FORCE_ROOT=root | ||
RUN apt-get update -y && apt-get install -y build-essential \ | ||
curl \ | ||
git \ | ||
gnupg \ | ||
libxml2-dev \ | ||
libxmlsec1-dev \ | ||
python \ | ||
python-dev \ | ||
runit \ | ||
unzip \ | ||
vim \ | ||
wget \ | ||
zip \ | ||
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 \ | ||
&& echo "deb http://repo.mongodb.org/apt/debian jessie/mongodb-org/3.4 main" | tee /etc/apt/sources.list.d/mongodb-org-3.4.list \ | ||
&& wget -O- https://www.rabbitmq.com/rabbitmq-release-signing-key.asc | apt-key add - \ | ||
&& echo 'deb http://www.rabbitmq.com/debian/ testing main' || tee /etc/apt/sources.list.d/rabbitmq.list && apt-get update -y \ | ||
&& apt-get install -y mongodb-org rabbitmq-server \ | ||
&& curl https://bootstrap.pypa.io/get-pip.py | python | ||
COPY src/ /datasploit/ | ||
WORKDIR /datasploit | ||
RUN cd /datasploit && mkdir /datasploit/datasploitDb \ | ||
&& pip install -r requirements.txt | ||
COPY service /etc/service/ | ||
#Provide your own config.py! Do not commit it to your forked repo! | ||
COPY config.py /datasploit/config.py | ||
ENTRYPOINT ["runsvdir", "/etc/service"] |
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Datasploit dockerimages | ||
|
||
### You will need to provide config.py file for both these images! | ||
|
||
### Grab Coffee :coffee: on build it takes about ~5 minutes | ||
|
||
## Development image: | ||
### This image allows you test source code changes | ||
```bash | ||
|
||
$ cp $EDITED_SOURCE_CODE_DIR src/ | ||
$ docker build -t="dasploit/datasploit" -f Dockerfile.dev . | ||
$ docker run -d --name="datasploit" datasploit/datasploit | ||
$ docker exec -it datasploit bash | ||
root@61e05f5b7776:/datasploit# | ||
|
||
``` | ||
|
||
|
||
## Working docker image | ||
### This image clones from the master branch | ||
|
||
```bash | ||
$ docker build -t="datasploit/datasploit" -f Dockerfile . | ||
$ docker run -d --name="datasploit" datsploit/datasploit | ||
$ docker exec -it datasploit bash | ||
k4ch0w@5722c53edc24:/datasploit$ python domainOsint.py | ||
|
||
____/ /____ _ / /_ ____ _ _____ ____ / /____ (_)/ /_ | ||
/ __ // __ `// __// __ `// ___// __ \ / // __ \ / // __/ | ||
/ /_/ // /_/ // /_ / /_/ /(__ )/ /_/ // // /_/ // // /_ | ||
\__,_/ \__,_/ \__/ \__,_//____// .___//_/ \____//_/ \__/ | ||
/_/ | ||
|
||
Open Source Assistant for #OSINT | ||
website: www.datasploit.info | ||
|
||
[-] Invalid argument passed. | ||
Usage: domainOsint.py [options] | ||
|
||
Options: | ||
-h, --help show this help message and exit | ||
-d DOMAIN, --domain=DOMAIN Domain name against which automated Osint is to be performed. | ||
k4ch0w@5722c53edc24:/datasploit$ | ||
``` | ||
|
||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
|
||
C_FORCE_ROOT=root | ||
cd /datasploit/core | ||
celery -A core worker -l info --concurrency 20 | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
mongod --dbpath /datasploit/datasploitDb |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/sh | ||
rabbitmq-server |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/sh | ||
python /datasploit/core/manage.py runserver 0.0.0.0:8000 |
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
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
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the user
k4ch0w
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The user was left over from deving. My bad, I didn't see the dockerimage was already made. :( I will remove my image then and add his link to the documentation for new users of the project.