Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-352 (跨站请求伪造(CSRF)) — Vulnerability Class 5131

5131 vulnerabilities classified as CWE-352 (跨站请求伪造(CSRF)). AI Chinese analysis included.

CWE-352, Cross-Site Request Forgery, is a web application weakness where the system fails to verify that an incoming request was intentionally initiated by the authenticated user rather than an unauthorized actor. Attackers typically exploit this vulnerability by tricking a victim into submitting a malicious request, often via a hidden link or form on a third-party site, while the victim is logged into the target application. Because the browser automatically includes valid session cookies, the server processes the forged request as legitimate, potentially allowing unauthorized actions like fund transfers or profile changes. Developers mitigate this risk by implementing anti-CSRF tokens, synchronizer tokens, or validating the Origin and Referer headers to ensure requests originate from trusted sources, thereby preventing unauthorized state changes.

MITRE CWE Description
The web application does not, or cannot, sufficiently verify whether a request was intentionally provided by the user who sent the request, which could have originated from an unauthorized actor.
Common Consequences (1)
Confidentiality, Integrity, Availability, Non-Repudiation, Access Control Gain Privileges or Assume Identity, Bypass Protection Mechanism, Read Application Data, Modify Application Data, DoS: Crash, Exit, or Restart
The consequences will vary depending on the nature of the functionality that is vulnerable to CSRF. An attacker could trick a client into making an unintentional request to the web server via a URL, image load, XMLHttpRequest, etc., which would then be treated as an authentic request from the client…
Mitigations (5)
Architecture and Design Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid [REF-1482]. For example, use anti-CSRF packages such as the OWASP CSRFGuard. [REF-330] Another example is the ESAPI Session Management control, which includes a component for CSRF. [REF-45]
Implementation Ensure that the application is free of cross-site scripting issues (CWE-79), because most CSRF defenses can be bypassed using attacker-controlled script.
Architecture and Design Generate a unique nonce for each form, place the nonce into the form, and verify the nonce upon receipt of the form. Be sure that the nonce is not predictable (CWE-330). [REF-332]
Architecture and Design Identify especially dangerous operations. When the user performs a dangerous operation, send a separate confirmation request to ensure that the user intended to perform that operation.
Architecture and Design Use the "double-submitted cookie" method as described by Felten and Zeller: When a user visits a site, the site should generate a pseudorandom value and set it as a cookie on the user's machine. The site should require every form submission to include this value as a form value and also as a cookie value. When a POST request is sent to the site, the request should only be considered valid if the f…
Examples (1)
This example PHP code attempts to secure the form submission process by validating that the user submitting the form has a valid session. A CSRF attack would not be prevented by this countermeasure because the attacker forges a request through the user's web browser in which a valid session already exists.
<form action="/url/profile.php" method="post"> <input type="text" name="firstname"/> <input type="text" name="lastname"/> <br/> <input type="text" name="email"/> <input type="submit" name="submit" value="Update"/> </form>
Bad · HTML
// initiate the session in order to validate sessions session_start(); //if the session is registered to a valid user then allow update if (! session_is_registered("username")) { echo "invalid session detected!"; // Redirect user to login page [...] exit; } // The user session is valid, so process the request // and update the information update_profile(); function update_profile { // read in the data from $POST and send an update // to the database SendUpdateToDatabase($_SESSION['username'], $_POST['email']); [...] echo "Your profile has been successfully updated."; }
Bad · PHP
CVE ID Title CVSS Severity Published
CVE-2026-82712 Tycon Systems TPDIN-Monitor-WEB3 Cross-Site Request Forgery — TPDIN-Monitor-WEB3 8.8 High 2026-09-04
CVE-2026-53760 Admidio: CSRF on Plugin Install, Uninstall, and Update via Unprotected GET Requests — admidio 5.2 Medium 2026-09-04
CVE-2026-82911 CSRF in Prospero Flow CRM order confirmation allows unauthorized order state changes — Prospero Flow CRM 5.1 Medium 2026-09-04
CVE-2026-85547 Cross-Site Request Forgery via Attacker-Controlled REST Detection in MISP — misp 6.2 Medium 2026-09-04
CVE-2026-85546 MISP Sharing Group Quick-Edit Actions Allow CSRF via State-Changing GET Requests — misp 8.6 High 2026-09-04
CVE-2026-49455 Waku: Cross-Origin CSRF on RSC Server Action Dispatch — waku 6.5 Medium 2026-09-03
CVE-2026-85236 MISP cullEmptyEvents CSRF Allows Irreversible Deletion of Events via GET Request — misp 8.8 High 2026-09-03
CVE-2026-85162 AVideo through c91b5975d CSRF via saveLive.php — AVideo 6.5 Medium 2026-09-03
CVE-2026-85161 AVideo removePoster.php Cross-Site Request Forgery File Deletion — AVideo 4.3 Medium 2026-09-03
CVE-2026-66652 WordPress Grand Tour theme <= 5.5.1 - Cross Site Request Forgery (CSRF) vulnerability — Grand Tour 5.4 Medium 2026-09-02
CVE-2026-84764 WordPress Simply Schedule Appointments plugin <= 1.6.12.23 - Cross Site Request Forgery (CSRF) vulnerability — Simply Schedule Appointments 8.8 High 2026-09-02
CVE-2026-84770 WordPress Mang Board WP plugin <= 2.3.8 - Cross Site Request Forgery (CSRF) vulnerability — Mang Board WP 8.8 High 2026-09-02
CVE-2026-84759 WordPress Activity Log plugin <= 2.13.1 - Cross Site Request Forgery (CSRF) vulnerability — Activity Log 7.1 High 2026-09-02
CVE-2026-18780 CSRF in TMT Machine's Talassoft Industrial Management Software — Talassoft Industrial Management Software 7.1 High 2026-09-01
CVE-2026-83595 AVideo Cross-Site Request Forgery via plugin/API/set.json.php — AVideo 8.1 High 2026-09-01
CVE-2026-54599 Wallos: OIDC state parameter never validated — login CSRF / account takeover — Wallos 7.5 High 2026-08-31
CVE-2026-81890 elFinder: CSRF in netmount allows forced FTP mounts and server-side FTP connections — elFinder 5.4 Medium 2026-08-31
CVE-2026-81888 @hono/oauth-providers: OAuth state check fails open on omitted state, enabling login CSRF and forced account linking — @hono/oauth-providers 5.4 Medium 2026-08-31
CVE-2026-71378 Apache Wicket: Cross-Site Request Forgery (CSRF) protection bypass in ResourceIsolationRequestCycleListener — Apache Wicket - - 2026-08-31
CVE-2026-82647 WWBN AVideo Cross-Site Request Forgery via sendEmail.json.php — AVideo 6.1 Medium 2026-08-30
CVE-2026-82544 wger-project wger Password Reset gym.py reset_user_password cross-site request forgery — wger 4.3 Medium 2026-08-30
CVE-2026-82468 Rodauth before 2.47.0 CSRF Protection Bypass via Content-Type — rodauth 4.7 Medium 2026-08-29
CVE-2026-81733 WWBN AVideo through 30.0 CSRF via myLiveControls.save.json.php — AVideo 5.1 Medium 2026-08-28
CVE-2026-78610 Dimension CSRF Vulnerability in Administrator Passphrase Change Endpoint — Dimension 8.4 High 2026-08-27
CVE-2026-75814 Ebyte NA111-M Cross-Site Request Forgery — Ebyte NA111-M Firmware 8.8 High 2026-08-27
CVE-2026-80210 FrontAccounting through 2.4.20 Cross-Site Request Forgery on Financial Transaction Forms — FrontAccounting 6.5 Medium 2026-08-27
CVE-2026-81273 WordPress FluentBooking Pro plugin <= 2.2.4 - Cross Site Request Forgery (CSRF) vulnerability — FluentBooking Pro 8.1 High 2026-08-27
CVE-2026-81271 WordPress GeoDirectory plugin <= 2.8.176 - Cross Site Request Forgery (CSRF) vulnerability — GeoDirectory 8.8 High 2026-08-27
CVE-2026-48549 Nagios Core / XI CSRF via cmd.cgi Double-Submit Cookie — Nagios Core 6.5 Medium 2026-08-26
CVE-2026-48548 Nagios Core CSRF via cmd.cgi — Nagios Core 6.5 Medium 2026-08-26

Vulnerabilities classified as CWE-352 (跨站请求伪造(CSRF)) represent 5131 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.