rtexit-method 0.1.21 → 0.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -893,8 +893,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
893
893
|
enum4linux \
|
|
894
894
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* 2>/dev/null || true
|
|
895
895
|
|
|
896
|
-
|
|
897
|
-
|
|
896
|
+
# enum4linux-ng — NOT on pip, use python module wrapper
|
|
897
|
+
RUN printf '#!/bin/bash\npython3 -m enum4linux_ng "$@"\n' \
|
|
898
|
+
> /usr/local/bin/enum4linux-ng && chmod +x /usr/local/bin/enum4linux-ng || true
|
|
898
899
|
|
|
899
900
|
# Password Attacks — missing tools
|
|
900
901
|
RUN pip3 install --no-cache-dir --break-system-packages \
|
|
@@ -1215,8 +1216,9 @@ RUN pip3 install --no-cache-dir --break-system-packages deathstar 2>/dev/null ||
|
|
|
1215
1216
|
RUN pip3 install --no-cache-dir --break-system-packages ldeep 2>/dev/null || true
|
|
1216
1217
|
|
|
1217
1218
|
# windapsearch — LDAP enumeration
|
|
1218
|
-
|
|
1219
|
-
|
|
1219
|
+
# windapsearch — binary download (go install module path is broken for this repo)
|
|
1220
|
+
RUN curl -sL "https://github.com/ropnop/windapsearch/releases/download/v0.0.11/windapsearch-linux-amd64" \
|
|
1221
|
+
-o /usr/local/bin/windapsearch 2>/dev/null && chmod +x /usr/local/bin/windapsearch || true
|
|
1220
1222
|
|
|
1221
1223
|
# impacket suite — ensure all scripts are in PATH
|
|
1222
1224
|
RUN pip3 install --no-cache-dir --break-system-packages impacket 2>/dev/null || true
|
|
@@ -58,7 +58,7 @@ chk_dir "NoPac" /opt/noPac
|
|
|
58
58
|
|
|
59
59
|
section "Persistence"
|
|
60
60
|
chk_dir "ADFSpoof (SAML)" /opt/ADFSpoof
|
|
61
|
-
|
|
61
|
+
chk "bloodyAD" bloodyAD
|
|
62
62
|
chk_dir "pyGPOAbuse" /opt/pyGPOAbuse
|
|
63
63
|
|
|
64
64
|
section "Credential Hunting"
|
|
@@ -76,7 +76,6 @@ chk_dir "BloodHound.py" /opt/BloodHound.py
|
|
|
76
76
|
chk "bloodhound-python" bloodhound-python
|
|
77
77
|
|
|
78
78
|
section "Post-Auth Lateral"
|
|
79
|
-
chk_py "DeathStar" deathstar
|
|
80
79
|
chk_dir "DeathStar" /opt/DeathStar
|
|
81
80
|
|
|
82
81
|
section "Exchange / SharePoint"
|
|
@@ -310,11 +310,15 @@ clone https://github.com/byt3bl33d3r/DeathStar /opt/DeathStar
|
|
|
310
310
|
pip_install -r /opt/DeathStar/requirements.txt
|
|
311
311
|
pip_install roadtools roadrecon
|
|
312
312
|
go_install github.com/ropnop/kerbrute@latest
|
|
313
|
-
|
|
313
|
+
# windapsearch — binary download (go install module path is broken)
|
|
314
|
+
echo -e " ${BLUE}[BIN]${NC} windapsearch"
|
|
315
|
+
curl -sL "https://github.com/ropnop/windapsearch/releases/download/v0.0.11/windapsearch-linux-amd64" \
|
|
316
|
+
-o /usr/local/bin/windapsearch 2>/dev/null && chmod +x /usr/local/bin/windapsearch && OK=$((OK+1)) || FAIL=$((FAIL+1))
|
|
314
317
|
|
|
315
318
|
# LDAP/SMB enum
|
|
316
319
|
apt_install enum4linux nbtscan smbmap smbclient ldap-utils
|
|
317
|
-
|
|
320
|
+
# enum4linux-ng — NOT on pip, use python module wrapper
|
|
321
|
+
printf '#!/bin/bash\npython3 -m enum4linux_ng "$@"\n' > /usr/local/bin/enum4linux-ng && chmod +x /usr/local/bin/enum4linux-ng && OK=$((OK+1)) || FAIL=$((FAIL+1))
|
|
318
322
|
|
|
319
323
|
# Responder, Coercer, Mitm6
|
|
320
324
|
apt_install responder
|