Skip to content

Commit

Permalink
Add Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
vgpastor committed Dec 2, 2022
1 parent 6bc9d34 commit 108bf23
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
24 changes: 24 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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;

This comment has been minimized.

Copy link
@BLOOKETHACKER1239

BLOOKETHACKER1239 Dec 22, 2022

9735089#


RUN true && \
pip3 install lolcat boxes flask requests;

This comment has been minimized.

Copy link
@BLOOKETHACKER1239

BLOOKETHACKER1239 Dec 22, 2022

Hac*****


RUN true && \
echo "/root/hackingtool/" > /home/hackingtoolpath.txt;

EXPOSE 1-65535

ENTRYPOINT ["python3", "/root/hackingtool/hackingtool.py"]
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[![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)

#### 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 🚀
- [x] Added New Tools
Expand Down Expand Up @@ -224,6 +224,20 @@

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`

This comment has been minimized.

Copy link
@BLOOKETHACKER1239

BLOOKETHACKER1239 Dec 22, 2022

***(&#%)(


- 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

<img src ="https://img.shields.io/badge/Important-notice-red" />
Expand Down
10 changes: 10 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 108bf23

Please sign in to comment.