diff --git a/CHANGELOG.md b/CHANGELOG.md index c58a25b..0e89f1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog for Docker image - + + +## 0.3.1 + +* feat: add ssh service. +* feat: add plink and netcat executables. +* fix: change crowbar installation ## 0.3.0 diff --git a/Dockerfile b/Dockerfile index 7f22921..8c97ab0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,6 +58,7 @@ RUN \ chromium-browser \ dos2unix \ openjdk-8-jdk \ + ssh \ # patator dependencies libmysqlclient-dev \ # evil-winrm dependencies @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/README.md b/README.md index a8ddbe7..37a9d12 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -339,6 +340,7 @@ Offensive Docker is an image with the more used tools to create an pentest envir - apache2 - squid +- ssh ## :memo: Documentation diff --git a/requirements_pip3.txt b/requirements_pip3.txt index ced4875..8aa2a50 100644 --- a/requirements_pip3.txt +++ b/requirements_pip3.txt @@ -1,4 +1,3 @@ -pycurl==7.43.0.3 wfuzz ldapdomaindump impacket diff --git a/shell/banner b/shell/banner index 41d691e..f3e05ce 100644 --- a/shell/banner +++ b/shell/banner @@ -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"