File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed
docker/linux/ubuntu/Hacking_Tools Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ tools:
2+ sudo docker build -f tools.Dockerfile -t hacking1 .
3+ sudo docker run -it hacking1
Original file line number Diff line number Diff line change 1+ FROM ubuntu:latest
2+ LABEL maintainer "suchsoak"
3+ ENV DEBIAN_FRONTEND=noninteractive
4+ RUN apt-get update && apt-get upgrade -y && apt-get install -y \
5+ ruby \
6+ python3 \
7+ lsb-release \
8+ netcat \
9+ nmap \
10+ nginx \
11+ ssh \
12+ telnet \
13+ sqlmap \
14+ dnsrecon \
15+ hydra \
16+ proxychains \
17+ john \
18+ tor \
19+ nikto \
20+ mcrypt \
21+ aircrack-ng \
22+ wifite \
23+ hashcat \
24+ host
25+
26+
27+ RUN apt-get install -y build-essential libcurl4-openssl-dev libxml2 libxml2-dev libxslt1-dev ruby-dev libgmp-dev zlib1g-dev
28+ RUN apt-get install -y wireshark
29+ CMD [ "nmap" ]
You can’t perform that action at this time.
0 commit comments