-
Notifications
You must be signed in to change notification settings - Fork 492
CVE-2026-47301 #4236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
CVE-2026-47301 #4236
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
9501d7b
CVE-2026-47301
RavenTait 0cb8e14
incorporate feedbacks
onurmerdogan 2988d95
minor changes
onurmerdogan ace30aa
Merge branch 'develop' into sccm_cve_2026_47301
onurmerdogan 7180483
fixing errors
onurmerdogan 2fb5a3a
fixing errors
onurmerdogan 88dfda8
Merge branch 'develop' into sccm_cve_2026_47301
onurmerdogan b5bb249
Merge branch 'develop' into sccm_cve_2026_47301
onurmerdogan 15511d1
Merge branch 'develop' into sccm_cve_2026_47301
nasbench 6938d36
Merge branch 'develop' into sccm_cve_2026_47301
nasbench a39bd08
slight metadata and logic tweaks
nasbench 33fec02
Update windows_builtin_account_name_was_changed.yml
nasbench File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
detections/endpoint/windows_builtin_account_name_was_changed.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| name: Windows Builtin Account Name Was Changed | ||
| id: 65e6e8b9-c68c-460f-beb8-48cfe91b4d21 | ||
| version: 1 | ||
| creation_date: '2026-08-24' | ||
| modification_date: '2026-08-24' | ||
| author: Raven Tait, Splunk | ||
| status: production | ||
| type: TTP | ||
| description: |- | ||
| The following analytic detects renaming of Windows built-in accounts via Event ID 4781. | ||
| It identifies renames targeting accounts with well-known reserved RIDs (500-504): Administrator, Guest, krbtgt, DefaultAccount, and WDAGUtilityAccount, by matching the TargetSid field against the S-1-5-21-*-50[0-4] pattern. | ||
| Attackers commonly rename the built-in Administrator account to evade detections that alert on the literal account name, while retaining the full privileges of the RID-500 account. | ||
| Renaming Guest, krbtgt, or other reserved accounts is highly unusual in any legitimate environment. | ||
| data_source: | ||
| - Windows Event Log Security 4781 | ||
| search: |- | ||
| `wineventlog_security` | ||
| EventCode=4781 | ||
| TargetSid="S-1-5-21-*" | ||
|
|
||
| | where match(TargetSid, "S-1-5-21-.*-50[0-4]$") | ||
|
|
||
| | stats count min(_time) as firstTime | ||
| max(_time) as lastTime | ||
| by dest OldTargetUserName NewTargetUserName | ||
| TargetSid SubjectLogonId | ||
|
|
||
| | `security_content_ctime(firstTime)` | ||
| | `security_content_ctime(lastTime)` | ||
| | `windows_builtin_account_name_was_changed_filter` | ||
| how_to_implement: |- | ||
| To successfully implement this search, you need to be ingesting Windows event logs from your hosts. In addition, the Splunk Windows TA is needed. | ||
| known_false_positives: |- | ||
| Renaming built-in accounts is uncommon in most environments but may occur during initial system hardening or CIS benchmark compliance efforts. | ||
| Validate the source user, logon ID, and timing against expected change control windows before tuning. | ||
| references: | ||
| - https://attack.mitre.org/techniques/T1078/003/ | ||
| - https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4781 | ||
| - https://nvd.nist.gov/vuln/detail/cve-2026-47301 | ||
| - https://medium.com/@omribaso/from-domain-user-to-enterprise-control-microsoft-configuration-manager-rce-0-day-exploit-chain-393c63c680ca | ||
| - https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-dtyp/81d92bba-d22b-4a8c-908a-554ab29148ab?source=recommendations | ||
| drilldown_searches: | ||
| - name: View the detection results for - "$dest$" and "$OldTargetUserName$" | ||
| search: '%original_detection_search% | search dest = "$dest$" OldTargetUserName = "$OldTargetUserName$"' | ||
| earliest_offset: $info_min_time$ | ||
| latest_offset: $info_max_time$ | ||
| - name: View risk events for the last 7 days for - "$dest$" | ||
| search: '| from datamodel Risk.All_Risk | search normalized_risk_object IN ("$dest$") | stats count min(_time) as firstTime max(_time) as lastTime values(search_name) as "Search Name" values(risk_message) as "Risk Message" values(analyticstories) as "Analytic Stories" values(annotations._all) as "Annotations" values(annotations.mitre_attack.mitre_tactic) as "ATT&CK Tactics" by normalized_risk_object | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`' | ||
| earliest_offset: 7d | ||
| latest_offset: "0" | ||
| finding: | ||
| title: Built-in account [$OldTargetUserName$] (SID [$TargetSid$]) was renamed to [$NewTargetUserName$] on [$dest$] | ||
| entity: | ||
| field: dest | ||
| type: system | ||
| score: 50 | ||
| threat_objects: | ||
| - field: NewTargetUserName | ||
| type: user | ||
| analytic_story: | ||
|
onurmerdogan marked this conversation as resolved.
|
||
| - Windows Defense Evasion Tactics | ||
| - Compromised Windows Host | ||
| asset_type: Endpoint | ||
|
onurmerdogan marked this conversation as resolved.
|
||
| mitre_attack_id: | ||
|
onurmerdogan marked this conversation as resolved.
|
||
| - T1078.003 | ||
| - T1036.010 | ||
| product: | ||
| - Splunk Enterprise | ||
| - Splunk Enterprise Security | ||
| - Splunk Cloud | ||
| category: endpoint | ||
| security_domain: endpoint | ||
| tests: | ||
| - name: True Positive Test | ||
| attack_data: | ||
| - data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1078.003/builtin_account_rename/windows_security.log | ||
| source: XmlWinEventLog:Security | ||
| sourcetype: XmlWinEventLog | ||
| test_type: unit | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 88 additions & 0 deletions
88
detections/endpoint/windows_sccm_adsource_dll_was_planted_in_sms_provider_directory.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,88 @@ | ||
| name: Windows SCCM Adsource DLL Was Planted In SMS Provider Directory | ||
| id: 4f55b07b-7aeb-47f4-a234-b222a902276b | ||
| version: 1 | ||
| creation_date: '2026-08-20' | ||
| modification_date: '2026-08-20' | ||
| author: Raven Tait, Splunk | ||
| status: production | ||
| type: TTP | ||
| description: |- | ||
| The following analytic detects the creation or modification of adsource.dll or other staging files with the name adsource_*.dll within the SCCM SMS Provider bin directory, consistent with exploitation of CVE-2026-47301. | ||
| This abuses a DLL side-loading vulnerability in the Microsoft Configuration Manager SMS Provider component. | ||
| An attacker can plant a malicious adsource.dll in the SCCMProvider bin\X64 path, causing the SMS Provider service to load the attacker-controlled library in a privileged context. | ||
| The presence of renamed dlls alongside adsource.dll is a strong indicator of the classic DLL hijacking pattern where the legitimate library has been renamed so the malicious replacement can proxy calls to it. | ||
| If confirmed malicious, this activity represents a privilege escalation vector that can result in SYSTEM-level code execution on any host running the SCCM SMS Provider role. | ||
| data_source: | ||
| - Sysmon EventID 11 | ||
| search: |- | ||
| | tstats `security_content_summariesonly` | ||
| count min(_time) as firstTime | ||
| max(_time) as lastTime | ||
|
|
||
| from datamodel=Endpoint.Filesystem where | ||
|
|
||
| Filesystem.action IN ("created", "modified") | ||
| Filesystem.file_name IN ( | ||
| "adsource.dll", | ||
| "adsource_*.dll" | ||
| ) | ||
| Filesystem.file_path="*Microsoft Configuration Manager\\bin\\X64\\*" | ||
|
|
||
| BY Filesystem.action Filesystem.dest Filesystem.file_access_time | ||
| Filesystem.file_create_time Filesystem.file_hash Filesystem.file_modify_time | ||
| Filesystem.file_name Filesystem.file_path Filesystem.file_acl | ||
| Filesystem.file_size Filesystem.process_guid Filesystem.process_id | ||
| Filesystem.user Filesystem.vendor_product | ||
|
|
||
| | `drop_dm_object_name(Filesystem)` | ||
| | `security_content_ctime(firstTime)` | ||
| | `security_content_ctime(lastTime)` | ||
| | `windows_sccm_adsource_dll_was_planted_in_sms_provider_directory_filter` | ||
| how_to_implement: To successfully implement this search you need to be ingesting information on process that include the name of the process responsible for the changes from your endpoints into the `Endpoint` datamodel in the `Filesystem` node. In addition, confirm the latest CIM App 4.20 or higher is installed and the latest TA for the endpoint product. If you are using Sysmon, you must have EventID 11 (FileCreate) enabled, and the FileCreate section of the configuration must include TargetFilename paths ending in .dll or "Microsoft Configuration Manager\bin\X64\" folder. | ||
| known_false_positives: |- | ||
| Legitimate SCCM upgrades or hotfix installations may create or replace adsource.dll in the bin\X64 directory. | ||
| Validate the file hash and digital signature of any detected adsource.dll against the expected version for the installed SCCM build before tuning. | ||
| references: | ||
|
onurmerdogan marked this conversation as resolved.
|
||
| - https://medium.com/@omribaso/from-domain-user-to-enterprise-control-microsoft-configuration-manager-rce-0-day-exploit-chain-393c63c680ca | ||
| - https://nvd.nist.gov/vuln/detail/cve-2026-47301 | ||
| - https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-dtyp/81d92bba-d22b-4a8c-908a-554ab29148ab?source=recommendations | ||
| drilldown_searches: | ||
| - name: View the detection results for - "$dest$" | ||
| search: '%original_detection_search% | search dest = "$dest$"' | ||
| earliest_offset: $info_min_time$ | ||
| latest_offset: $info_max_time$ | ||
| - name: View risk events for the last 7 days for - "$dest$" | ||
| search: '| from datamodel Risk.All_Risk | search normalized_risk_object IN ("$dest$") | stats count min(_time) as firstTime max(_time) as lastTime values(search_name) as "Search Name" values(risk_message) as "Risk Message" values(analyticstories) as "Analytic Stories" values(annotations._all) as "Annotations" values(annotations.mitre_attack.mitre_tactic) as "ATT&CK Tactics" by normalized_risk_object | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`' | ||
| earliest_offset: 7d | ||
| latest_offset: "0" | ||
| finding: | ||
| title: Suspicious SCCM adsource DLL [$file_name$] detected at [$file_path$] on [$dest$] | ||
| entity: | ||
| field: dest | ||
| type: system | ||
| score: 50 | ||
| threat_objects: | ||
|
onurmerdogan marked this conversation as resolved.
|
||
| - field: file_name | ||
| type: file_name | ||
| - field: file_path | ||
| type: file_path | ||
| analytic_story: | ||
| - Windows Privilege Escalation | ||
| asset_type: Endpoint | ||
| cve: | ||
| - CVE-2026-47301 | ||
| mitre_attack_id: | ||
| - T1574.002 | ||
| product: | ||
| - Splunk Enterprise | ||
| - Splunk Enterprise Security | ||
| - Splunk Cloud | ||
| category: endpoint | ||
| security_domain: endpoint | ||
| tests: | ||
| - name: True Positive Test | ||
| attack_data: | ||
| - data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1574.002/sccm_adsource_dll/sysmon.log | ||
| source: XmlWinEventLog:Microsoft-Windows-Sysmon/Operational | ||
| sourcetype: XmlWinEventLog | ||
| test_type: unit | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.