Back to Codebase

Vulnerability Analysis Report

Drupal Core v3.0.2

Scan ID: SCAN-DRUPAL-CORE-hqKaqy • Hash: d9731321

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

Vulnerability Details

L16

Cross-Site Scripting (XSS) in admin.php

CWE-79
File Location: admin.php:16
Security Score:
80 / 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");
L354

Weak Cryptographic Hash (MD5) in account.php

CWE-327
File Location: account.php:354
Security Score:
31 / 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
L288

Weak Cryptographic Hash (MD5) in account.php

CWE-327
File Location: account.php:288
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
- $hash = substr(md5("$edit[login]. ". time() .""), 0, 12);
+ password_hash($password, PASSWORD_BCRYPT); // Avoid legacy MD5 for secrets hashing