CVE-2024-32537

Cross-Site request forgery (CSRF) vulnerability in joshuae1974 Flash Video Player allows Cross Site Request Forgery.

Verified by Precogs Threat Research
Last Updated: Mar 20, 2026
Base Score
7.1HIGH

Executive Summary

CVE-2024-32537 is a high severity vulnerability affecting appsec. It is classified as CSRF. Ensure your systems and dependencies are patched immediately to mitigate exposure risks.

Precogs AI Insight

"The fundamental weakness here is traced back to within Site request forgery (CSRF) vulnerability in joshuae1974 Flash Video, allowing the insecure processing of malicious payloads. Adversaries commonly weaponize this defect by inject malicious logic that alters the execution flow of the application engine. By intercepting insecure data flows from user input directly to rendering sinks, Precogs is designed to safeguard the application against payload injection."

Exploit Probability (EPSS)
Low (0.0%)
Public POC
Undisclosed
Exploit Probability
Elevated (52%)
Public POC
Available
Affected Assets
appsecCWE-352

What is this vulnerability?

CVE-2024-32537 is categorized as a critical Cross-Site Scripting (XSS) flaw. Based on our vulnerability intelligence, this issue occurs when the application fails to securely handle untrusted data boundaries.

Cross-Site request forgery (CSRF) vulnerability in joshuae1974 Flash Video Player allows Cross Site Request Forgery.This issue affects Flash Video Player: ...

This architectural defect enables adversaries to bypass intended security controls, directly manipulating the application's execution state or data layer. Immediate strategic intervention is required.

Risk Assessment

MetricValue
CVSS Base Score7.1 (HIGH)
Vector StringCVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L
PublishedMarch 20, 2026
Last ModifiedMarch 20, 2026
Related CWEsCWE-352

Impact on Systems

Session Hijacking: Attackers can steal active user session tokens (cookies) to impersonate the victim.

Phishing Execution: Malicious scripts can dynamically alter DOM content to present fraudulent login forms.

Worm Propagation: Stored XSS can spread autonomously as users visit the infected page.

How to fix this issue?

Implement the following strategic mitigations immediately to eliminate the attack surface.

1. Output Encoding Implement strict context-aware output encoding (HTML, JavaScript, Attribute, CSS) before rendering user data.

2. Content Security Policy (CSP) Deploy a rigorous CSP header to restrict script execution exclusively to trusted domains.

3. Framework Defenses Utilize native UI framework protections (e.g., React DOM escaping) and avoid dangerouslySetInnerHTML.

Vulnerability Signature

// Example DOM-based XSS vulnerability
const user_input = new URLSearchParams(window.location.search).get('q');
// VULNERABLE: Direct insertion into innerHTML
document.getElementById('results').innerHTML = "Results for: " + user_input; 

// EXPLOIT PAYLOAD: ?q=\<img src=x onerror=alert(document.cookie)\>

References and Sources

Vulnerability Code Signature

Attack Data Flow

StageDetail
SourceMalicious third-party website
VectorCross-site request leveraging authenticated session cookies
SinkState-changing server endpoint without CSRF protection
ImpactUnauthorized actions performed on behalf of the victim (e.g., password change, fund transfer)

Vulnerable Code Pattern

// ❌ VULNERABLE: Missing CSRF token validation
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
    // Taint sink: state change without anti-forgery check
    update_user_email($_POST['email']);
    echo "Email updated successfully.";
}

Secure Code Pattern

// ✅ SECURE: Anti-forgery token validation
session_start();
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
    if (!hash_equals($_SESSION['csrf_token'], $_POST['csrf_token'])) {
        die("CSRF token validation failed.");
    }
    // Sanitized state change
    update_user_email($_POST['email']);
    echo "Email updated successfully.";
}

How Precogs Detects This

Precogs API Security Engine comprehensively audits all state-changing web endpoints to ensure strict anti-forgery token validation.\n

Related Vulnerabilitiesvia CWE-352

CVE-2026-41434.3 MEDIUM

The Neos Connector for Fakturama plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to and including 0.

CWE-352
CVE-2026-33324.3 MEDIUM

The Xhanch - My Advanced Settings plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 1.

CWE-352
CVE-2026-33314.3 MEDIUM

The Lobot Slider Administrator plugin for WordPress is vulnerable to Cross-Site Request Forgery in versions up to, and including, 0.

CWE-352
CVE-2026-27236.1 MEDIUM

The Post Snippits plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 1.

CWE-352
CVE-2026-15034.3 MEDIUM

The login_register plugin for WordPress is vulnerable to Cross-Site Request Forgery to Stored Cross-Site Scripting in all versions up to, and including, 1.

CWE-352
CVE-2026-13934.3 MEDIUM

The Add Google Social Profiles to Knowledge Graph Box plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 1.

CWE-352

Is your system affected?

Precogs AI detects CVE-2024-32537 in compiled binaries, LLMs, and application layers — even without source code access.