๐Ÿ” CVE Alert

CVE-2026-71292

HIGH 7.2

Subrion CMS Admin Grid SQL Injection via Unwhitelisted ORDER BY sort Parameter

CVSS Score
7.2
EPSS Score
0.0%
EPSS Percentile
0th

Subrion CMS's admin grid sorting helper, _gridGetSorting() in includes/classes/ia.base.controller.admin.php, whitelists the `dir` (ASC/DESC) request parameter via in_array(), but falls back to the raw, attacker-supplied `sort` GET parameter whenever the requested key is not present in the per-controller $_gridSorting whitelist array: `$column = isset($this->_gridSorting[$params['sort']]) ? ... : $params['sort'];`, which is then placed into `sprintf(' ORDER BY %s`%s` %s', $tableAlias, $column, $direction)` with only backtick-quoting and no escaping. Because a backtick in the payload breaks out of the identifier context, an authenticated admin session can inject arbitrary SQL (error-based via EXTRACTVALUE, or time-based via SLEEP()) to extract database contents including administrator password hashes. Most of Subrion's ~29 admin grid controllers either define no $_gridSorting whitelist at all (e.g. pages.php, transactions.php, languages.php) or an incomplete one covering only some of their sortable columns (e.g. members.php whitelists only 1 of 7 sortable fields), making the vast majority of admin grid endpoints exploitable.

CWE CWE-89
Vendor intelliants
Product subrion
Published Aug 5, 2026
Stay Ahead of the Next One

Get instant alerts for intelliants subrion

Be the first to know when new high vulnerabilities affecting intelliants subrion are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
Attack Vector
Attack Complexity
Privileges Required
User Interaction
Scope
Confidentiality
Integrity
Availability

Affected Versions

intelliants / subrion
0 โ‰ค 4.2.1

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/intelliants/subrion github.com: https://github.com/intelliants/subrion/blob/master/includes/classes/ia.base.controller.admin.php

Credits

Saidakbarxon Maxsudxonov