Skip to content

Commit

Permalink
See changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
aaaguirrep committed Oct 30, 2020
1 parent f8c8fee commit 619971f
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 9 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog for Docker image
<!--LATEST=0.3.0-->
<!--LATEST=0.3.1-->

## 0.3.1

* feat: add ssh service.
* feat: add plink and netcat executables.
* fix: change crowbar installation

## 0.3.0

Expand Down
24 changes: 19 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ RUN \
chromium-browser \
dos2unix \
openjdk-8-jdk \
ssh \
# patator dependencies
libmysqlclient-dev \
# evil-winrm dependencies
Expand Down Expand Up @@ -144,10 +145,7 @@ ENV PATH "$PATH:$GOPATH/bin:$GOROOT/bin"
RUN mkdir -p /tools/portScanning
WORKDIR /tools/portScanning

# Download ScanPorts
RUN \
wget --quiet https://raw.githubusercontent.com/aaaguirrep/scanPorts/master/scanPorts.sh && \
chmod +x * && \
# Download naabu
mkdir -p /tools/portScanning/naabu
WORKDIR /tools/portScanning/naabu
Expand Down Expand Up @@ -423,6 +421,9 @@ RUN \
FROM builder5 as builder6
COPY --from=bruteForce /temp/ /tools/bruteForce/

WORKDIR /tools/bruteForce/crowbar
RUN pip3 install -r requirements.txt

# CRACKING
RUN mkdir -p /tools/cracking
WORKDIR /tools/cracking
Expand Down Expand Up @@ -467,7 +468,8 @@ WORKDIR /temp/peass
RUN \
wget -q https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/raw/master/winPEAS/winPEASexe/winPEAS/bin/Obfuscated%20Releases/winPEASany.exe && \
wget -q https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/raw/master/winPEAS/winPEASexe/winPEAS/bin/Obfuscated%20Releases/winPEASx64.exe && \
wget -q https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/raw/master/winPEAS/winPEASexe/winPEAS/bin/Obfuscated%20Releases/winPEASx86.exe
wget -q https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/raw/master/winPEAS/winPEASexe/winPEAS/bin/Obfuscated%20Releases/winPEASx86.exe && \
wget -q https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/raw/master/winPEAS/winPEASbat/winPEAS.bat

# Install smbmap
WORKDIR /temp
Expand Down Expand Up @@ -540,7 +542,19 @@ RUN \
# Download Mimikatz
wget --quiet https://github.com/gentilkiwi/mimikatz/releases/download/2.2.0-20200816/mimikatz_trunk.zip -O mimikatz.zip && \
unzip mimikatz.zip -d mimikatz && \
rm mimikatz.zip
rm mimikatz.zip && \
mkdir netcat && \
mkdir plink
WORKDIR /temp/netcat
# Download netcat
RUN \
wget --quiet https://github.com/int0x33/nc.exe/raw/master/nc64.exe -O nc64.exe && \
wget --quiet https://github.com/int0x33/nc.exe/raw/master/nc.exe -O nc32.exe
WORKDIR /temp/plink
# Download plink
RUN \
wget --quiet https://the.earth.li/\~sgtatham/putty/latest/w32/plink.exe -O plink32.exe && \
wget --quiet https://the.earth.li/\~sgtatham/putty/latest/w64/plink.exe -O plink64.exe

# WINDOWS
FROM builder8 as builder9
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ Offensive Docker is an image with the more used tools to create an pentest envir

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

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

#### Reverse shell

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

- apache2
- squid
- ssh

## :memo: Documentation

Expand Down
1 change: 0 additions & 1 deletion requirements_pip3.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pycurl==7.43.0.3
wfuzz
ldapdomaindump
impacket
Expand Down
2 changes: 1 addition & 1 deletion shell/banner
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export VERSION=v0.3.0
export VERSION=v0.3.1
# Colours
greenColour="\e[0;32m\033[1m"
endColour="\033[0m\e[0m"
Expand Down

0 comments on commit 619971f

Please sign in to comment.