Skip to content

Commit 619971f

Browse files
committed
See changelog
1 parent f8c8fee commit 619971f

File tree

5 files changed

+30
-9
lines changed

5 files changed

+30
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog for Docker image
2-
<!--LATEST=0.3.0-->
2+
<!--LATEST=0.3.1-->
3+
4+
## 0.3.1
5+
6+
* feat: add ssh service.
7+
* feat: add plink and netcat executables.
8+
* fix: change crowbar installation
39

410
## 0.3.0
511

Dockerfile

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ RUN \
5858
chromium-browser \
5959
dos2unix \
6060
openjdk-8-jdk \
61+
ssh \
6162
# patator dependencies
6263
libmysqlclient-dev \
6364
# evil-winrm dependencies
@@ -144,10 +145,7 @@ ENV PATH "$PATH:$GOPATH/bin:$GOROOT/bin"
144145
RUN mkdir -p /tools/portScanning
145146
WORKDIR /tools/portScanning
146147

147-
# Download ScanPorts
148148
RUN \
149-
wget --quiet https://raw.githubusercontent.com/aaaguirrep/scanPorts/master/scanPorts.sh && \
150-
chmod +x * && \
151149
# Download naabu
152150
mkdir -p /tools/portScanning/naabu
153151
WORKDIR /tools/portScanning/naabu
@@ -423,6 +421,9 @@ RUN \
423421
FROM builder5 as builder6
424422
COPY --from=bruteForce /temp/ /tools/bruteForce/
425423

424+
WORKDIR /tools/bruteForce/crowbar
425+
RUN pip3 install -r requirements.txt
426+
426427
# CRACKING
427428
RUN mkdir -p /tools/cracking
428429
WORKDIR /tools/cracking
@@ -467,7 +468,8 @@ WORKDIR /temp/peass
467468
RUN \
468469
wget -q https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/raw/master/winPEAS/winPEASexe/winPEAS/bin/Obfuscated%20Releases/winPEASany.exe && \
469470
wget -q https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/raw/master/winPEAS/winPEASexe/winPEAS/bin/Obfuscated%20Releases/winPEASx64.exe && \
470-
wget -q https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/raw/master/winPEAS/winPEASexe/winPEAS/bin/Obfuscated%20Releases/winPEASx86.exe
471+
wget -q https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/raw/master/winPEAS/winPEASexe/winPEAS/bin/Obfuscated%20Releases/winPEASx86.exe && \
472+
wget -q https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/raw/master/winPEAS/winPEASbat/winPEAS.bat
471473

472474
# Install smbmap
473475
WORKDIR /temp
@@ -540,7 +542,19 @@ RUN \
540542
# Download Mimikatz
541543
wget --quiet https://github.com/gentilkiwi/mimikatz/releases/download/2.2.0-20200816/mimikatz_trunk.zip -O mimikatz.zip && \
542544
unzip mimikatz.zip -d mimikatz && \
543-
rm mimikatz.zip
545+
rm mimikatz.zip && \
546+
mkdir netcat && \
547+
mkdir plink
548+
WORKDIR /temp/netcat
549+
# Download netcat
550+
RUN \
551+
wget --quiet https://github.com/int0x33/nc.exe/raw/master/nc64.exe -O nc64.exe && \
552+
wget --quiet https://github.com/int0x33/nc.exe/raw/master/nc.exe -O nc32.exe
553+
WORKDIR /temp/plink
554+
# Download plink
555+
RUN \
556+
wget --quiet https://the.earth.li/\~sgtatham/putty/latest/w32/plink.exe -O plink32.exe && \
557+
wget --quiet https://the.earth.li/\~sgtatham/putty/latest/w64/plink.exe -O plink64.exe
544558

545559
# WINDOWS
546560
FROM builder8 as builder9

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ Offensive Docker is an image with the more used tools to create an pentest envir
164164

165165
- [nmap](https://github.com/nmap/nmap)
166166
- [masscan](https://github.com/robertdavidgraham/masscan)
167-
- [ScanPorts](https://github.com/aaaguirrep/scanPorts) created by [@s4vitar](https://github.com/s4vitar) with some improvements
168167
- [naabu](https://github.com/projectdiscovery/naabu)
169168

170169
#### :mag: Recon
@@ -320,6 +319,8 @@ Offensive Docker is an image with the more used tools to create an pentest envir
320319
- [pass-the-hash](https://github.com/byt3bl33d3r/pth-toolkit)
321320
- [mimikatz](https://github.com/gentilkiwi/mimikatz)
322321
- gpp-decrypt
322+
- Netcat executables
323+
- Plink executables
323324

324325
#### Reverse shell
325326

@@ -339,6 +340,7 @@ Offensive Docker is an image with the more used tools to create an pentest envir
339340

340341
- apache2
341342
- squid
343+
- ssh
342344

343345
## :memo: Documentation
344346

requirements_pip3.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
pycurl==7.43.0.3
21
wfuzz
32
ldapdomaindump
43
impacket

shell/banner

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export VERSION=v0.3.0
1+
export VERSION=v0.3.1
22
# Colours
33
greenColour="\e[0;32m\033[1m"
44
endColour="\033[0m\e[0m"

0 commit comments

Comments
 (0)