rtexit-method 0.1.20 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rtexit-method",
3
- "version": "0.1.20",
3
+ "version": "0.1.22",
4
4
  "description": "RTExit - AI-assisted Red Team methodology installer",
5
5
  "license": "MIT",
6
6
  "author": "Exit Code",
@@ -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
- RUN pip3 install --no-cache-dir --break-system-packages \
897
- enum4linux-ng 2>/dev/null || true
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
- RUN go install github.com/ropnop/windapsearch@latest 2>/dev/null || \
1219
- git clone https://github.com/ropnop/windapsearch /opt/windapsearch 2>/dev/null || true
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
@@ -1342,16 +1344,27 @@ RUN for bin in httprobe puredns subzy feroxbuster; do \
1342
1344
  # Phase 2 — Web Testing (Verified Fixes)
1343
1345
  # ─────────────────────────────────────────────
1344
1346
 
1345
- # semgrep — via apt (pip conflicts with system packaging)
1346
- RUN apt-get update && apt-get install -y --no-install-recommends python3-semgrep \
1347
- 2>/dev/null && apt-get clean && rm -rf /var/lib/apt/lists/* 2>/dev/null || true
1347
+ # semgrep — pip3 ONLY (apt python3-semgrep does NOT create the 'semgrep' binary)
1348
+ RUN pip3 install --no-cache-dir --break-system-packages semgrep 2>/dev/null || true
1348
1349
 
1349
1350
  # checkov — IaC scanner (requires --ignore-installed due to packaging conflict)
1350
1351
  RUN pip3 install --no-cache-dir --break-system-packages --ignore-installed checkov \
1351
1352
  2>/dev/null || true
1352
1353
 
1353
1354
  # git-dumper — exposed .git directory dumper
1354
- RUN pip3 install --no-cache-dir --break-system-packages git-dumper 2>/dev/null || true
1355
+ RUN pip3 install --no-cache-dir --break-system-packages \
1356
+ git-dumper graphql-cop graphw00f inql 2>/dev/null || true
1357
+
1358
+ # graphql-cop wrapper (pip installs module only, binary needs wrapper)
1359
+ RUN printf '#!/bin/bash\npython3 -m graphql_cop "$@"\n' \
1360
+ > /usr/local/bin/graphql-cop && chmod +x /usr/local/bin/graphql-cop || true
1361
+
1362
+ # graphw00f wrapper
1363
+ RUN printf '#!/bin/bash\npython3 -m graphw00f "$@"\n' \
1364
+ > /usr/local/bin/graphw00f && chmod +x /usr/local/bin/graphw00f || true
1365
+
1366
+ # wpscan via gem (NOT apt — apt version is outdated/broken)
1367
+ RUN gem install wpscan 2>/dev/null || true
1355
1368
 
1356
1369
  # gitleaks — binary (not pip)
1357
1370
  RUN curl -sSL "https://github.com/gitleaks/gitleaks/releases/download/v8.18.2/gitleaks_8.18.2_linux_x64.tar.gz" \
@@ -22,9 +22,8 @@ chk_py "PyJWT" jwt
22
22
 
23
23
  section "GraphQL"
24
24
  chk "graphql-cop" graphql-cop
25
- chk_py "graphw00f" graphw00f
26
- chk_py "InQL" inql
27
- chk_dir "graphql-cop" /opt/graphql-cop
25
+ chk "graphw00f" graphw00f
26
+ chk "InQL" inql
28
27
 
29
28
  section "XXE"
30
29
  chk_dir "XXEinjector" /opt/XXEinjector
@@ -50,7 +49,7 @@ chk_py "jsbeautifier" jsbeautifier
50
49
 
51
50
  section "Web Frameworks"
52
51
  chk "wpscan" wpscan
53
- chk_dir "Caido" /opt/caido
52
+ # Caido — proprietary commercial tool, not open source, skipped
54
53
 
55
54
  section "gRPC / WebSockets"
56
55
  chk "grpcurl" grpcurl
@@ -73,7 +72,7 @@ chk "grype" grype
73
72
 
74
73
  section "Secret Scanning"
75
74
  chk "gitleaks" gitleaks
76
- chk_py "trufflehog" trufflehog
75
+ chk "trufflehog" trufflehog # binary not Python module
77
76
  chk "git-dumper" git-dumper
78
77
 
79
78
  phase_summary
@@ -58,7 +58,7 @@ chk_dir "NoPac" /opt/noPac
58
58
 
59
59
  section "Persistence"
60
60
  chk_dir "ADFSpoof (SAML)" /opt/ADFSpoof
61
- chk_py "bloodyAD" bloodyAD
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"
@@ -191,10 +191,14 @@ section "Phase 2 — Web Application Testing"
191
191
 
192
192
  apt_install sqlmap
193
193
 
194
- # semgrep — MUST use apt (pip conflicts with system python packaging)
195
- apt_install python3-semgrep
194
+ # semgrep — pip3 ONLY (apt python3-semgrep does NOT create the semgrep binary)
195
+ pip_install semgrep
196
196
 
197
- pip_install mitmproxy arjun jsbeautifier graphql-cop inql
197
+ pip_install mitmproxy arjun jsbeautifier graphql-cop graphw00f inql
198
+
199
+ # graphql-cop wrapper (pip installs module only, binary needs wrapper)
200
+ printf '#!/bin/bash\npython3 -m graphql_cop "$@"\n' > /usr/local/bin/graphql-cop && chmod +x /usr/local/bin/graphql-cop
201
+ printf '#!/bin/bash\npython3 -m graphw00f "$@"\n' > /usr/local/bin/graphw00f && chmod +x /usr/local/bin/graphw00f
198
202
  pip_install PyJWT python-jose grpcio grpcio-tools websocket-client
199
203
  pip_install blackboxprotobuf padding-oracle-attacker
200
204
 
@@ -221,6 +225,9 @@ pip_install -r /opt/tplmap/requirements.txt
221
225
  ln -sf /opt/tplmap/tplmap.py /usr/local/bin/tplmap
222
226
  chmod +x /opt/tplmap/tplmap.py
223
227
 
228
+ # wpscan via gem (NOT apt — apt version is outdated/broken on new Kali)
229
+ gem_install wpscan
230
+
224
231
  # XXEinjector
225
232
  clone https://github.com/enjoiz/XXEinjector /opt/XXEinjector
226
233
 
@@ -303,11 +310,15 @@ clone https://github.com/byt3bl33d3r/DeathStar /opt/DeathStar
303
310
  pip_install -r /opt/DeathStar/requirements.txt
304
311
  pip_install roadtools roadrecon
305
312
  go_install github.com/ropnop/kerbrute@latest
306
- go_install github.com/ropnop/windapsearch@latest
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))
307
317
 
308
318
  # LDAP/SMB enum
309
319
  apt_install enum4linux nbtscan smbmap smbclient ldap-utils
310
- pip_install enum4linux-ng
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))
311
322
 
312
323
  # Responder, Coercer, Mitm6
313
324
  apt_install responder