You've already forked hackingtool
mirror of
https://github.com/Z4nzu/hackingtool.git
synced 2025-06-20 06:15:54 +02:00
24
Dockerfile
Normal file
24
Dockerfile
Normal 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"]
|
16
README.md
16
README.md
@ -9,7 +9,7 @@
|
|||||||
[](http://hits.dwyl.com/Z4nzu/hackingtool)
|
[](http://hits.dwyl.com/Z4nzu/hackingtool)
|
||||||

|

|
||||||
|
|
||||||
#### 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
10
docker-compose.yml
Normal 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
|
Reference in New Issue
Block a user