Commvault QLogin with PublicSharingUser and GUID Password (CVE-2025-57788)

Detects a qlogin.exe command attempting to authenticate as the internal _+_PublicSharingUser_ using a GUID as the password. This could be an indicator of an attacker exploiting CVE-2025-57788 to gain initial access using leaked credentials.

Sigma rule (View on GitHub)

 1title: Commvault QLogin with PublicSharingUser and GUID Password (CVE-2025-57788)
 2id: 917789e1-2c1f-4bf5-8c91-6f71a017f469
 3status: experimental
 4description: |
 5    Detects a qlogin.exe command attempting to authenticate as the internal `_+_PublicSharingUser_` using a GUID as the password.
 6    This could be an indicator of an attacker exploiting CVE-2025-57788 to gain initial access using leaked credentials.    
 7references:
 8    - https://labs.watchtowr.com/guess-who-would-be-stupid-enough-to-rob-the-same-vault-twice-pre-auth-rce-chains-in-commvault/
 9author: Swachchhanda Shrawan Poudel (Nextron Systems)
10date: 2025-10-20
11tags:
12    - attack.privilege-escalation
13    - attack.persistence
14    - attack.defense-evasion
15    - attack.initial-access
16    - attack.t1078.001
17    - detection.emerging-threats
18    - cve.2025-57788
19logsource:
20    category: process_creation
21    product: windows
22detection:
23    selection:
24        CommandLine|contains|all:
25            - 'qlogin'
26            - '_+_PublicSharingUser_'
27        # Detects the use of a GUID as the password, which is indicative of an exploit attempt
28        CommandLine|re: '[A-F0-9]{8}-[A-F0-9]{4}-[A-F0-9]{4}-[A-F0-9]{4}-[A-F0-9]{12}'
29    condition: selection
30falsepositives:
31    - Legitimate administrative scripts that use the `_+_PublicSharingUser_` account for valid purposes.
32level: medium

References

Related rules

to-top