Back to Codebase

Vulnerability Analysis Report

Drupal Core v3.0.0

Scan ID: SCAN-DRUPAL-CORE-OmPp5M • Hash: 186a157b

Severity Score
Medium
Total Findings
3
Engine Version
ECOMGUARD-HYBRID-AST-1.5
Scan Duration
0.413s

Vulnerability Details

L16

Cross-Site Scripting (XSS) in admin.php

CWE-79
File Location: admin.php:16
Security Score:
88 / 100
Confirmed Issue

Rule Engine Warning

Detected insecure pattern matching known vulnerability signatures. High Severity (Confirmed via full AST flow control tracing). Please apply remediation steps matching the recommended patch format below.

Heuristics Diff
- <title><?php echo variable_get(site_name, "drupal"); ?> administration pages</title>
+ echo htmlspecialchars(variable_get(site_name, "drupal"), ENT_QUOTES, "UTF-8");
L288

Weak Cryptographic Hash (MD5) in account.php

CWE-327
File Location: account.php:288
Security Score:
38 / 100
Potential False Positive

Rule Engine Warning

Detected insecure pattern matching known vulnerability signatures. Low Danger / False Positive Risk (Isolated non-interactive input loop). Please apply remediation steps matching the recommended patch format below.

Heuristics Diff
- $hash = substr(md5("$edit[login]. ". time() .""), 0, 12);
+ password_hash($password, PASSWORD_BCRYPT); // Avoid legacy MD5 for secrets hashing
L354

Weak Cryptographic Hash (MD5) in account.php

CWE-327
File Location: account.php:354
Security Score:
26 / 100
Potential False Positive

Rule Engine Warning

Detected insecure pattern matching known vulnerability signatures. Low Danger / False Positive Risk (Isolated non-interactive input loop). Please apply remediation steps matching the recommended patch format below.

Heuristics Diff
- $edit[hash] = substr(md5("$edit[login]. ". time()), 0, 12);
+ password_hash($password, PASSWORD_BCRYPT); // Avoid legacy MD5 for secrets hashing