|
58 | 58 | chromium-browser \
|
59 | 59 | dos2unix \
|
60 | 60 | openjdk-8-jdk \
|
| 61 | + ssh \ |
61 | 62 | # patator dependencies
|
62 | 63 | libmysqlclient-dev \
|
63 | 64 | # evil-winrm dependencies
|
@@ -144,10 +145,7 @@ ENV PATH "$PATH:$GOPATH/bin:$GOROOT/bin"
|
144 | 145 | RUN mkdir -p /tools/portScanning
|
145 | 146 | WORKDIR /tools/portScanning
|
146 | 147 |
|
147 |
| -# Download ScanPorts |
148 | 148 | RUN \
|
149 |
| - wget --quiet https://raw.githubusercontent.com/aaaguirrep/scanPorts/master/scanPorts.sh && \ |
150 |
| - chmod +x * && \ |
151 | 149 | # Download naabu
|
152 | 150 | mkdir -p /tools/portScanning/naabu
|
153 | 151 | WORKDIR /tools/portScanning/naabu
|
@@ -423,6 +421,9 @@ RUN \
|
423 | 421 | FROM builder5 as builder6
|
424 | 422 | COPY --from=bruteForce /temp/ /tools/bruteForce/
|
425 | 423 |
|
| 424 | +WORKDIR /tools/bruteForce/crowbar |
| 425 | +RUN pip3 install -r requirements.txt |
| 426 | + |
426 | 427 | # CRACKING
|
427 | 428 | RUN mkdir -p /tools/cracking
|
428 | 429 | WORKDIR /tools/cracking
|
@@ -467,7 +468,8 @@ WORKDIR /temp/peass
|
467 | 468 | RUN \
|
468 | 469 | wget -q https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/raw/master/winPEAS/winPEASexe/winPEAS/bin/Obfuscated%20Releases/winPEASany.exe && \
|
469 | 470 | 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 |
471 | 473 |
|
472 | 474 | # Install smbmap
|
473 | 475 | WORKDIR /temp
|
@@ -540,7 +542,19 @@ RUN \
|
540 | 542 | # Download Mimikatz
|
541 | 543 | wget --quiet https://github.com/gentilkiwi/mimikatz/releases/download/2.2.0-20200816/mimikatz_trunk.zip -O mimikatz.zip && \
|
542 | 544 | 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 |
544 | 558 |
|
545 | 559 | # WINDOWS
|
546 | 560 | FROM builder8 as builder9
|
|
0 commit comments