CVE-2026-49433
Awaiting Analysis Awaiting Analysis - Queue
CSRF Vulnerability in DeepAI Email Change Endpoint

Publication date: 2026-06-01

Last updated on: 2026-06-01

Assigner: Cybersecurity and Infrastructure Security Agency (CISA) U.S. Civilian Government

Description
The DeepAI endpoint 'https://api.deepai.org/change_user_email' accepts POST requests without any CSRF protection. If an attacker can trick a logged-in user into clicking a malicious link, the attacker can change the user's email address and take over their account. Fixed on 2026-05-20.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-01
Last Modified
2026-06-01
Generated
2026-06-22
AI Q&A
2026-06-02
EPSS Evaluated
2026-06-20
NVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
deepai change_user_email to 2026-05-20 (inc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-352 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.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Mitigation Strategies

To mitigate this vulnerability, ensure that the DeepAI endpoint 'https://api.deepai.org/change_user_email' is protected against CSRF attacks. This can be done by applying the fix released on 2026-05-20 or by implementing CSRF protection mechanisms such as requiring anti-CSRF tokens for POST requests.

Additionally, educate users to avoid clicking on suspicious links while logged in, as the attack requires user interaction.

Executive Summary

The vulnerability exists in the DeepAI endpoint 'https://api.deepai.org/change_user_email', which accepts POST requests without any Cross-Site Request Forgery (CSRF) protection.

This means that if an attacker tricks a logged-in user into clicking a malicious link, the attacker can change the user's email address and potentially take over their account.

The issue was fixed on 2026-05-20.

Impact Analysis

This vulnerability can allow an attacker to take over a user's account by changing the user's email address without their consent.

Account takeover can lead to unauthorized access to personal data, misuse of the account, and potential further exploitation depending on the account's privileges.

Compliance Impact

The vulnerability allows an attacker to change a logged-in user's email address without CSRF protection, potentially leading to account takeover. This could result in unauthorized access to personal data, which may impact compliance with data protection regulations such as GDPR and HIPAA that require safeguarding user data and preventing unauthorized access.

However, the provided context and resources do not explicitly discuss the impact of this vulnerability on compliance with common standards and regulations.

Detection Guidance

This vulnerability involves the DeepAI API endpoint 'https://api.deepai.org/change_user_email' accepting POST requests without CSRF protection, which can be exploited if a logged-in user is tricked into clicking a malicious link.

To detect attempts to exploit this vulnerability on your network or system, you can monitor HTTP POST requests to the endpoint 'https://api.deepai.org/change_user_email'. Look for unusual or unexpected POST requests originating from user sessions.

Example commands to detect such activity might include using network traffic analysis tools or web server logs filtering for POST requests to the vulnerable endpoint.

  • Using tcpdump to capture POST requests to the endpoint: tcpdump -i any -A 'tcp port 443 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | grep 'POST /change_user_email'
  • Using grep on web server logs to find POST requests to the endpoint: grep 'POST /change_user_email' /var/log/nginx/access.log
  • Using a web application firewall (WAF) or intrusion detection system (IDS) to alert on POST requests to the vulnerable endpoint without proper CSRF tokens.
Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-49433. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart