SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-81031

HIGH · CVSS 7.2 EPSS 0.31% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-26 · Last synced 2026-09-18

CyberRota Analysis

AI-Generated

The IDURAR ERP CRM is vulnerable due to improper authentication in its password update functionality, allowing an authenticated administrator to change the password of any other administrator account without verification. This flaw could lead to unauthorized access and control over multiple administrator accounts, posing a significant security risk. Organizations using this ERP CRM should prioritize remediation to protect against potential account takeovers and unauthorized access.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-81031
Severity
HIGH
CVSS
7.2
EPSS
0.31%

Original NVD Description

IDURAR ERP CRM changes the password of whichever account a request names rather than the account making the request. The update handler in backend/src/controllers/middlewaresControllers/createUserController/updatePassword.js resolves the authenticated user from the request that the token middleware populated, then issues its update against a filter built from the identifier in the URL path, and never compares the two. The route is mounted behind the administrator token check only, so any valid administrator session is sufficient, and the sole ownership-like guard in the handler rejects a single hardcoded demo address. A caller can therefore set an arbitrary password on any other administrator account and sign in as it. The read handler in the same controller directory accepts an identifier the same way, which supplies the identifiers needed to pick a target.