-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Sorry, something went wrong. |
||
|
||
RUN true && \ | ||
pip3 install lolcat boxes flask requests; | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
RUN true && \ | ||
echo "/root/hackingtool/" > /home/hackingtoolpath.txt; | ||
|
||
EXPOSE 1-65535 | ||
|
||
ENTRYPOINT ["python3", "/root/hackingtool/hackingtool.py"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
9735089#