1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

Merge pull request #310 from vgpastor/master

Add Docker
This commit is contained in:
Hardik Zinzuvadiya
2022-12-03 22:10:36 +05:30
committed by GitHub
3 changed files with 49 additions and 1 deletions

24
Dockerfile Normal file
View File

@ -0,0 +1,24 @@
FROM kalilinux/kali-rolling
RUN apt-get update && \
apt-get install -y git python3-pip figlet sudo;
#Install packages dependencies
RUN true && \
apt-get install -y boxes php curl xdotool wget;
WORKDIR /root/hackingtool
COPY . .
RUN true && \
pip3 install -r requirement.txt;
RUN true && \
pip3 install lolcat boxes flask requests;
RUN true && \
echo "/root/hackingtool/" > /home/hackingtoolpath.txt;
EXPOSE 1-65535
ENTRYPOINT ["python3", "/root/hackingtool/hackingtool.py"]

View File

@ -9,7 +9,7 @@
[![HitCount](http://hits.dwyl.com/Z4nzu/hackingtool.svg)](http://hits.dwyl.com/Z4nzu/hackingtool) [![HitCount](http://hits.dwyl.com/Z4nzu/hackingtool.svg)](http://hits.dwyl.com/Z4nzu/hackingtool)
![](https://img.shields.io/badge/platform-Linux%20%7C%20KaliLinux%20%7C%20ParrotOs-blue) ![](https://img.shields.io/badge/platform-Linux%20%7C%20KaliLinux%20%7C%20ParrotOs-blue)
#### Install Kali Linux in WIndows10 Without VirtualBox [YOUTUBE](https://youtu.be/BsFhpIDcd9I) #### Install Kali Linux in WIndows10 Without VirtualBox [YOUTUBE](https://youtu.be/BsFhpIDcd9I) or use Docker
## Update Available V1.1.0 🚀 ## Update Available V1.1.0 🚀
- [x] Added New Tools - [x] Added New Tools
@ -224,6 +224,20 @@
After Following All Steps Just Type In Terminal **root@kaliLinux:~** **hackingtool** After Following All Steps Just Type In Terminal **root@kaliLinux:~** **hackingtool**
## Use image with Docker
### Run in one click
`docker run -it vgpastor/hackingtool`
### Build locally
`docker-compose build`
`docker-compose run hackingtool`
- If need open other ports you can edit the docker-compose.yml file
- Volumes are mounted in the container to persist data and can share files between the host and the container
#### Thanks to original Author of the tools used in hackingtool #### Thanks to original Author of the tools used in hackingtool
<img src ="https://img.shields.io/badge/Important-notice-red" /> <img src ="https://img.shields.io/badge/Important-notice-red" />

10
docker-compose.yml Normal file
View File

@ -0,0 +1,10 @@
version: "3.9"
services:
hackingtool:
build: .
stdin_open: true # docker run -i
tty: true # docker run -t
volumes:
- .:/root/hackingtool
ports:
- 22:22