Skip to content

Commit 440bfd7

Browse files
committed
feat: add naabu
1 parent 522457d commit 440bfd7

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog for Docker image
22
<!--LATEST=0.2.4-->
33

4+
## 0.2.5
5+
6+
* feat: add naabu
7+
48
## 0.2.4
59

610
* feat: add httpx

Dockerfile

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,15 @@ WORKDIR /tools/portScanning
146146
# Download ScanPorts
147147
RUN \
148148
wget --quiet https://raw.githubusercontent.com/aaaguirrep/scanPorts/master/scanPorts.sh && \
149-
chmod +x *
149+
chmod +x * && \
150+
# Download naabu
151+
mkdir -p /tools/portScanning/naabu
152+
WORKDIR /tools/portScanning/naabu
153+
RUN \
154+
wget --quiet https://github.com/projectdiscovery/naabu/releases/download/v1.1.4/naabu_1.1.4_linux_amd64.tar.gz -O naabu.tar.gz && \
155+
tar -xzf naabu.tar.gz && \
156+
rm naabu.tar.gz && \
157+
ln -s /tools/portScanning/naabu/naabu /usr/bin/naabu
150158

151159
# BUILDER RECON
152160
FROM baseline as recon
@@ -525,7 +533,7 @@ RUN \
525533
# Download Pass-the-Hash
526534
git clone --depth 1 https://github.com/byt3bl33d3r/pth-toolkit.git && \
527535
# Download Mimikatz
528-
wget --quiet https://github.com/gentilkiwi/mimikatz/releases/download/2.2.0-20200715/mimikatz_trunk.zip -O mimikatz.zip && \
536+
wget --quiet https://github.com/gentilkiwi/mimikatz/releases/download/2.2.0-20200816/mimikatz_trunk.zip -O mimikatz.zip && \
529537
unzip mimikatz.zip -d mimikatz && \
530538
rm mimikatz.zip
531539

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
Docker for pentest is an image with the more used tools to create an pentest environment easily and quickly.
2828

29-
:arrow_right: **Note:** Check out the next repo to know how to launch the docker for pentest in a VPS in Google Cloud Platform or Digital Ocean. [VPS for docker for pentest](https://github.com/aaaguirrep/vps-docker-for-pentest)
29+
:arrow_right: **Note:** Check out the next repo to know how to launch the docker for pentest in a VPS in Google Cloud Platform or Digital Ocean (free credit included) . [VPS for docker for pentest](https://github.com/aaaguirrep/vps-docker-for-pentest)
3030

3131
### Table of Contents
3232

@@ -78,6 +78,7 @@ Docker for pentest is an image with the more used tools to create an pentest env
7878
- [:white_check_mark: Environment tested](#white_check_mark-environment-tested)
7979
- [:warning: Warning](#warning-warning)
8080
- [:coffee: Donations](#coffee-donations)
81+
- [Contributors](#contributors)
8182
- [Contributing](#contributing)
8283
- [:chart_with_upwards_trend: Stargazers over time](#chart_with_upwards_trend-stargazers-over-time)
8384
- [License](#license)
@@ -149,6 +150,7 @@ Docker for pentest is an image with the more used tools to create an pentest env
149150
- [nmap](https://github.com/nmap/nmap)
150151
- [masscan](https://github.com/robertdavidgraham/masscan)
151152
- [ScanPorts](https://github.com/aaaguirrep/scanPorts) created by [@s4vitar](https://github.com/s4vitar) with some improvements
153+
- [naabu](https://github.com/projectdiscovery/naabu)
152154

153155
#### :mag: Recon
154156

@@ -448,6 +450,10 @@ While I drink the coffee I check more tools to add in the docker image.
448450

449451
<a href="https://www.buymeacoffee.com/aaaguirrep" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" style="height: 23px !important; width: 100px !important;" ></a>
450452

453+
## Contributors
454+
455+
Thank you to all our [contributors](https://github.com/aaaguirrep/pentest/graphs/contributors)!
456+
451457
## Contributing
452458

453459
[Contributing Guide](CONTRIBUTING.md)

0 commit comments

Comments
 (0)