BleepingComputer and CISA recently highlighted an actively exploited vulnerability, CVE-2026-48172, affecting a LiteSpeed cPanel plugin. This flaw presents a critical initial access vector (T1190) for attackers, prompting urgent patching directives for federal agencies. We observed that successful exploitation attempts leave a distinct artifact in web server logs, making it highly detectable.
Our analysis focused on this specific indicator to develop a robust KQL detection rule. The query targets the unique string `cpanel_jsonapi_func=redisAble`, which signifies an attempt to exploit the vulnerability. We designed the rule to union data from two common log sources: `Syslog` and `CommonSecurityLog`.
Within the `Syslog` table, we look for the exploit string within the `SyslogMessage` field and extract the `AttackerIp` from the message itself. For `CommonSecurityLog`, we search the `RequestURL` field for the same string, leveraging existing `SourceIP` and `DestinationHostName` fields. This combined approach ensures broad coverage across environments that might log web traffic differently, allowing defenders to identify attempted exploitation of the LiteSpeed cPanel plugin.
Defenders should deploy this KQL query in their SIEM to monitor for any attempts against their cPanel installations. We recommend reviewing any alerts generated by this rule immediately, investigating the `AttackerIp` and `TargetHost` for further malicious activity, and ensuring all cPanel instances are patched against CVE-2026-48172.