Skip to content

Commit

Permalink
Merge pull request 1N3#4 from khast3x/master
Browse files Browse the repository at this point in the history
Added light ubuntu based Dockerfile
  • Loading branch information
1N3 authored Jan 5, 2018
2 parents 6cc4854 + 3bedfb6 commit 60a73dc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM ubuntu:zesty
WORKDIR /usr/share/
RUN echo "deb http://http.kali.org/kali kali-rolling main contrib non-free" >> /etc/apt/sources.list \
&& echo "deb-src http://http.kali.org/kali kali-rolling main contrib non-free" >> /etc/apt/sources.list \
&& apt-get update && apt-get install -y --allow-unauthenticated git \
nmap \
hydra \
dnsenum\
&& git clone https://github.com/1N3/BruteX.git brutex \
&& chmod +x brutex/brutex \
&& ln -s /usr/share/brutex/brutex /usr/bin/brutex

WORKDIR brutex
ENTRYPOINT ["./brutex"]

6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
```
brutex target <port>
```

## DOCKER:
```
docker build -t brutex .
docker run -it brutex target <port>
```
## LICENSE:
This software is free to distribute, modify and use with the condition that credit is provided to the creator (1N3@CrowdShield) and is not for commercial use.

Expand Down

0 comments on commit 60a73dc

Please sign in to comment.