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

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-698 (重定向后执行(EAR)) — Vulnerability Class 15

15 vulnerabilities classified as CWE-698 (重定向后执行(EAR)). AI Chinese analysis included.

CWE-698, Execution After Redirect, is a logic flaw where a web application issues an HTTP redirect response but fails to terminate subsequent code execution. This weakness typically arises when developers incorrectly assume that sending a redirect header immediately halts the request processing pipeline. Attackers exploit this by manipulating the application’s control flow to execute sensitive operations, such as database modifications or privilege escalation, after the redirect has been initiated but before the client actually navigates away. Because the server continues processing, these unintended actions occur despite the user’s apparent redirection. To prevent this vulnerability, developers must explicitly enforce termination of the request handling process immediately following the redirect command. Utilizing language-specific exit statements, return keywords, or framework-provided methods that guarantee immediate flow control cessation ensures that no further code executes after the redirect header is sent, thereby neutralizing the risk of unintended side effects.

MITRE CWE Description
The web application sends a redirect to another location, but instead of exiting, it executes additional code.
Common Consequences (1)
Other, Confidentiality, Integrity, AvailabilityAlter Execution Logic, Execute Unauthorized Code or Commands
This weakness could affect the control flow of the application and allow execution of untrusted code.
Examples (1)
This code queries a server and displays its status when a request comes from an authorized IP address.
$requestingIP = $_SERVER['REMOTE_ADDR']; if(!in_array($requestingIP,$ipAllowList)){ echo "You are not authorized to view this page"; http_redirect($errorPageURL); } $status = getServerStatus(); echo $status; ...
Bad · PHP
CVE IDTitleCVSSSeverityPublished
CVE-2026-2699 EAR vulnerability in Progress ShareFile Storage Zones Controller (SZC) — ShareFile Storage Zones Controller 9.8 Critical2026-04-02
CVE-2026-3264 go2ismail Free-CRM Administrative redirect — Free-CRM 6.3 Medium2026-02-26
CVE-2026-3262 go2ismail Asp.Net-Core-Inventory-Order-Management-System Administrative redirect — Asp.Net-Core-Inventory-Order-Management-System 6.3 Medium2026-02-26
CVE-2025-8350 Authentication Bypass with Redirect in BiEticaret Software's BiEticaret CMS — BiEticaret CMS 9.8 Critical2026-02-19
CVE-2025-6967 Authentication Bypass in Sarman Soft's CMS — CMS 8.7 High2026-02-10
CVE-2025-9848 ScriptAndTools Real Estate Management System userlist.php redirect — Real Estate Management System 7.3 High2025-09-03
CVE-2025-53077 SAMSUNG DMS 安全漏洞 — DMS(Data Management Server) 6.5 Medium2025-07-29
CVE-2024-48766 NetAlertX 安全漏洞 — NetAlertX 8.6 High2025-05-13
CVE-2024-3376 SourceCodester Computer Laboratory Management System config.php redirect — Computer Laboratory Management System 7.3 High2024-04-06
CVE-2024-2635 Multiple vulnerabilities on Meta4 HR from Cegid — Meta4 HR 7.3 High2024-03-19
CVE-2024-2573 SourceCodester Employee Task Management System task-info.php redirect — Employee Task Management System 7.3 High2024-03-18
CVE-2024-2572 SourceCodester Employee Task Management System task-details.php redirect — Employee Task Management System 7.3 High2024-03-18
CVE-2024-2571 SourceCodester Employee Task Management System manage-admin.php redirect — Employee Task Management System 7.3 High2024-03-18
CVE-2024-2570 SourceCodester Employee Task Management System edit-task.php redirect — Employee Task Management System 7.3 High2024-03-18
CVE-2024-2569 SourceCodester Employee Task Management System admin-manage-user.php redirect — Employee Task Management System 7.3 High2024-03-17

Vulnerabilities classified as CWE-698 (重定向后执行(EAR)) represent 15 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.