We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a58476d commit 7d5de7bCopy full SHA for 7d5de7b
2 files changed
docker/linux/ubuntu/Hacking_Tools/Makefile.txt
@@ -0,0 +1,3 @@
1
+tools:
2
+ sudo docker build -f tools.Dockerfile -t hacking1 .
3
+ sudo docker run -it hacking1
docker/linux/ubuntu/Hacking_Tools/tools.Dockerfile
@@ -0,0 +1,29 @@
+FROM ubuntu:latest
+LABEL maintainer "suchsoak"
+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" ]
0 commit comments