Merge pull request #2336 from splunk/hijack

HijackThis
This commit is contained in:
Bhavin Patel
2022-08-26 13:42:17 -05:00
committed by GitHub
16 changed files with 826 additions and 28 deletions
@@ -1,18 +1,18 @@
name: Linux Persistence and Privilege Escalation Risk Behavior
id: ad5ac21b-3b1e-492c-8e19-ea5d5e8e5cf1
version: 1
date: '2022-07-20'
version: 2
date: '2022-08-26'
author: Michael Haag, Splunk
type: Correlation
datamodel:
- Risk
description: The following correlation is specific to Linux persistence and privilege escalation tactics and is tied to two analytic stories and any Linux analytic tied to persistence and privilege escalation.
These techniques often overlap with Persistence techniques, as OS features that let an adversary persist can execute in an elevated context.
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime from datamodel=Risk.All_Risk where (All_Risk.analyticstories IN ("Linux Privilege Escalation", "Linux Persistence Techniques") OR source = "*Linux*") All_Risk.annotations.mitre_attack.mitre_tactic IN ("persistence", "privilege-escalation") All_Risk.risk_object_type="system" by All_Risk.risk_object All_Risk.annotations.mitre_attack.mitre_tactic source All_Risk.description
search: '| tstats `security_content_summariesonly` count as risk_event_count, sum(All_Risk.calculated_risk_score) as risk_score, min(_time) as firstTime max(_time) as lastTime, values(All_Risk.annotations.mitre_attack.mitre_tactic_id) as annotations.mitre_attack.mitre_tactic_id, dc(All_Risk.annotations.mitre_attack.mitre_tactic_id) as mitre_tactic_id_count, values(All_Risk.annotations.mitre_attack.mitre_technique_id) as annotations.mitre_attack.mitre_technique_id, dc(All_Risk.annotations.mitre_attack.mitre_technique_id) as mitre_technique_id_count from datamodel=Risk.All_Risk where (All_Risk.analyticstories IN ("Linux Privilege Escalation", "Linux Persistence Techniques") OR source = "*Linux*") All_Risk.annotations.mitre_attack.mitre_tactic IN ("persistence", "privilege-escalation") All_Risk.risk_object_type="system" by All_Risk.risk_object, All_Risk.risk_object_type, source
| `drop_dm_object_name(All_Risk)`
| `security_content_ctime(firstTime)`
| `security_content_ctime(lastTime)`
| stats values(source) as detection_name values(annotations.mitre_attack.mitre_tactic) as tactics values(firstTime) as firstTime values(lastTime) as lastTime dc(annotations.mitre_attack.mitre_tactic) as distinct_tactics dc(source) as distinct_detection_name by risk_object
| stats values(source) as source, sum(risk_score) as risk_score, sum(risk_event_count) as risk_event_count, values(annotations.mitre_attack.mitre_tactic) as annotations.mitre_attack.mitre_tactic min(firstTime) as firstTime max(lastTime) as lastTime, values(annotations.mitre_attack.mitre_technique_id) as annotations.mitre_attack.mitre_technique_id, dc(annotations.mitre_attack.mitre_technique_id) as mitre_technique_id_count dc(source) as source_count by risk_object, risk_object_type
| where distinct_detection_name >= 4
| `linux_persistence_and_privilege_escalation_risk_behavior_filter`'
how_to_implement: Ensure Linux anomaly and TTP analytics are enabled. TTP may be set to Notables for point detections, anomaly should not be notables but risk generators. The correlation relies on more than x amount of distict detection names generated before generating a notable. Modify the value as needed. Default value is set to 4. This value may need to be increased based on activity in your environment.
+6 -6
View File
@@ -1,18 +1,18 @@
name: Living Off The Land
id: 1be30d80-3a39-4df9-9102-64a467b24abc
version: 1
date: '2022-07-08'
version: 2
date: '2022-08-19'
author: Michael Haag, Splunk
type: Correlation
datamodel:
- Risk
description: The following correlation identifies a distinct amount of analytics associated with the Living Off The Land analytic story that identify potentially suspicious behavior.
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime from datamodel=Risk.All_Risk where All_Risk.analyticstories="Living Off The Land" All_Risk.risk_object_type="system" by All_Risk.risk_object All_Risk.annotations.mitre_attack.mitre_tactic source
search: '| tstats `security_content_summariesonly` count as risk_event_count, sum(All_Risk.calculated_risk_score) as risk_score, min(_time) as firstTime max(_time) as lastTime, values(All_Risk.annotations.mitre_attack.mitre_tactic_id) as annotations.mitre_attack.mitre_tactic_id, dc(All_Risk.annotations.mitre_attack.mitre_tactic_id) as mitre_tactic_id_count, values(All_Risk.annotations.mitre_attack.mitre_technique_id) as annotations.mitre_attack.mitre_technique_id, dc(All_Risk.annotations.mitre_attack.mitre_technique_id) as mitre_technique_id_count from datamodel=Risk.All_Risk where All_Risk.analyticstories="Living Off The Land" All_Risk.risk_object_type="system" by All_Risk.risk_object, All_Risk.risk_object_type, source
| `drop_dm_object_name(All_Risk)`
| stats values(source) as source, sum(risk_score) as risk_score, sum(risk_event_count) as risk_event_count, values(annotations.mitre_attack.mitre_tactic) as annotations.mitre_attack.mitre_tactic min(firstTime) as firstTime max(lastTime) as lastTime, values(annotations.mitre_attack.mitre_technique_id) as annotations.mitre_attack.mitre_technique_id, dc(annotations.mitre_attack.mitre_technique_id) as mitre_technique_id_count dc(source) as source_count by risk_object, risk_object_type
| where source_count >= 5
| `security_content_ctime(firstTime)`
| `security_content_ctime(lastTime)`
| stats values(source) as detection_name values(annotations.mitre_attack.mitre_tactic) as tactics values(firstTime) as firstTime values(lastTime) as lastTime dc(annotations.mitre_attack.mitre_tactic) as distinct_tactics dc(source) as distinct_detection_name by risk_object
| where distinct_detection_name >= 2
| `security_content_ctime(lastTime)`
| `living_off_the_land_filter`'
how_to_implement: To implement this correlation search a user needs to enable all
detections in the Living Off The Land Analytic Story and confirm it is generating risk events.
@@ -1,7 +1,7 @@
name: Log4Shell CVE-2021-44228 Exploitation
id: 9be30d80-3a39-4df9-9102-64a467b24eac
version: 1
date: '2022-01-26'
version: 2
date: '2022-08-26'
author: Jose Hernandez, Splunk
type: Correlation
datamodel:
@@ -21,14 +21,10 @@ description: This correlation find exploitation of Log4Shell CVE-2021-44228 agai
search finds exploitation. If we get a notable from this correlation search the
best way to triage it is by investigating the affected systems against Log4Shell
exploitation using Splunk SOAR playbooks.
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time)
as lastTime from datamodel=Risk.All_Risk where All_Risk.analyticstories="Log4Shell
CVE-2021-44228" All_Risk.risk_object_type="system" by All_Risk.risk_object All_Risk.annotations.mitre_attack.mitre_tactic
source | `drop_dm_object_name(All_Risk)` | `security_content_ctime(firstTime)` |
`security_content_ctime(lastTime)` | stats values(risk_object) as affected_systems values(source)
as detection_name values(annotations.mitre_attack.mitre_tactic) as tactics values(firstTime)
as firstTime values(lastTime) as lastTime dc(annotations.mitre_attack.mitre_tactic)
as distinct_tactics | where distinct_tactics >= 2 | `log4shell_cve_2021_44228_exploitation_filter`'
search: '| tstats `security_content_summariesonly` count as risk_event_count, sum(All_Risk.calculated_risk_score) as risk_score, min(_time) as firstTime max(_time) as lastTime, values(All_Risk.annotations.mitre_attack.mitre_tactic_id) as annotations.mitre_attack.mitre_tactic_id, dc(All_Risk.annotations.mitre_attack.mitre_tactic_id) as mitre_tactic_id_count, values(All_Risk.annotations.mitre_attack.mitre_technique_id) as annotations.mitre_attack.mitre_technique_id, dc(All_Risk.annotations.mitre_attack.mitre_technique_id) as mitre_technique_id_count from datamodel=Risk.All_Risk where All_Risk.analyticstories="Log4Shell CVE-2021-44228" All_Risk.risk_object_type="system" by All_Risk.risk_object, All_Risk.risk_object_type, source
| `drop_dm_object_name(All_Risk)` | `security_content_ctime(firstTime)` |
`security_content_ctime(lastTime)` | stats values(source) as source, sum(risk_score) as risk_score, sum(risk_event_count) as risk_event_count, values(annotations.mitre_attack.mitre_tactic) as annotations.mitre_attack.mitre_tactic min(firstTime) as firstTime max(lastTime) as lastTime, values(annotations.mitre_attack.mitre_technique_id) as annotations.mitre_attack.mitre_technique_id, dc(annotations.mitre_attack.mitre_technique_id) as mitre_technique_id_count dc(source) as source_count by risk_object, risk_object_type | where distinct_tactics >= 2
| `log4shell_cve_2021_44228_exploitation_filter`'
how_to_implement: To implement this correlation search a user needs to enable all
detections in the Log4Shell Analytic Story and confirm it is generation risk events.
A simple search `index=risk analyticstories="Log4Shell CVE-2021-44228"` should contain
@@ -0,0 +1,62 @@
name: Windows Autostart Execution LSASS Driver Registry Modification
id: 57fb8656-141e-4d8a-9f51-62cff4ecb82a
version: 1
date: '2022-08-22'
author: Michael Haag, Splunk
type: TTP
datamodel:
- Endpoint
description: The following analytic identifies the abuse of two undocumented registry keys that allow for a DLL to load into lsass.exe to potentially capture credentials. Upon successful modification of \CurrentControlSet\Services\NTDS\DirectoryServiceExtPt or \CurrentControlSet\Services\NTDS\LsaDbExtPt, a DLL either remote or local will be set as the value and load up into lsass.exe. Based on POC code a text file may be written to disk with credentials.
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime FROM datamodel=Endpoint.Registry
where Registry.registry_path IN ("*\\CurrentControlSet\\Services\\NTDS\\DirectoryServiceExtPt","*\\CurrentControlSet\\Services\\NTDS\\LsaDbExtPt")
by Registry.registry_key_name Registry.user Registry.registry_path Registry.registry_value_data Registry.action Registry.dest Registry.process_guid
| `drop_dm_object_name(Registry)`
| `security_content_ctime(firstTime)`
| `security_content_ctime(lastTime)`
| `windows_autostart_execution_lsass_driver_registry_modification_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 `Registry` node. In addition, confirm the latest CIM App 4.20 or higher is installed and the latest TA for the endpoint product.
known_false_positives: False positives may be present on recent Windows Operating Systems. Filtering may be required based on process_name. In addition, look for non-standard, unsigned, module loads into LSASS. If query is too noisy, modify by adding Endpoint.processes process_name to query to identify the process making the modification.
references:
- https://blog.xpnsec.com/exploring-mimikatz-part-1/
- https://github.com/oxfemale/LogonCredentialsSteal/tree/master/lsass_lib
tags:
analytic_story:
- Windows Registry Abuse
asset_type: Endpoint
cis20:
- CIS 3
- CIS 5
- CIS 16
confidence: 70
context:
- Source:Endpoint
- Stage:Defense Evasion
dataset:
- https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1547.008/atomic_red_team/windows-sysmon.log
impact: 70
kill_chain_phases:
- Exploitation
message: the registry values for DirectoryServiceExtPt or LsaDbExtPt were modified on $dest$.
mitre_attack_id:
- T1547.008
nist:
- DE.CM
observable:
- name: dest
type: Endpoint
role:
- Victim
product:
- Splunk Enterprise
- Splunk Enterprise Security
- Splunk Cloud
required_fields:
- _time
- Registry.registry_key_name
- Registry.registry_path
- Registry.user
- Registry.dest
- Registry.registry_value_name
- Registry.action
risk_score: 49
security_domain: endpoint
@@ -0,0 +1,80 @@
name: Windows DLL Search Order Hijacking Hunt
id: 79c7d0fc-60c7-41be-a616-ccda752efe89
version: 1
date: '2022-08-18'
author: Michael Haag, Splunk
type: Hunting
datamodel:
- Endpoint
description: The following hunting analytic is an experimental query built against a accidental feature using the latest Sysmon TA 3.0 (https://splunkbase.splunk.com/app/5709/) which maps the module load (ImageLoaded) to process_name.
This analytic will deprecate once this is fixed.
This hunting analytic identifies known libraries in Windows that may be used in a DLL search order hijack or DLL Sideloading setting. This may require recompiling the DLL, moving the DLL or moving the vulnerable process. The query looks for any running out of system32 or syswow64. Some libraries natively run out of other application paths and will need to be added to the exclusion as needed.
The lookup is comprised of Microsoft native libraries identified within the Hijacklibs.net project.
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time)
as lastTime values(Processes.process_name) as process_name from datamodel=Endpoint.Processes where Processes.dest!=unknown
Processes.user!=unknown NOT (Processes.process_path IN ("*\\system32\\*", "*\\syswow64\\*","*\\winsxs\\*")) by Processes.dest Processes.user Processes.parent_process_name Processes.process_name Processes.process_path
| `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`
| `drop_dm_object_name(Processes)`
| lookup hijacklibs library AS process_name OUTPUT islibrary | search islibrary = True
| rename parent_process_name as "Process Name" process_name AS ImageLoaded process_path AS Module_Path
| `windows_dll_search_order_hijacking_hunt_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 `Processes` node. In addition, confirm the latest CIM App 4.20 or higher is installed and the latest TA for the endpoint product. This may only with with Sysmon data and the Sysmon TA. Your mileage may vary.
known_false_positives: False positives will be present based on paths. Filter or add other paths to the exclusion as needed.
references:
- https://hijacklibs.net
tags:
analytic_story:
- Living Off The Land
- Windows Defense Evasion Tactics
asset_type: Endpoint
cis20:
- CIS 3
- CIS 5
- CIS 16
confidence: 10
context:
- Source:Endpoint
- Stage:Persistence
- Stage:Privilege Escalation
- Stage:Defense Evasion
dataset:
- https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1574.001/atomic_red_team/windows-sysmon.log
impact: 10
kill_chain_phases:
- Exploitation
message: An instance of $parent_process_name$ spawning $process_name$ was identified on endpoint $dest$ by user $user$ attempting to perform DLL search order hijacking.
mitre_attack_id:
- T1574.001
- T1574
nist:
- DE.CM
observable:
- name: user
type: User
role:
- Victim
- name: dest
type: Hostname
role:
- Victim
- name: parent_process_name
type: Process
role:
- Parent Process
- name: process_name
type: Process
role:
- Child Process
product:
- Splunk Enterprise
- Splunk Enterprise Security
- Splunk Cloud
required_fields:
- _time
- Processes.dest
- Processes.user
- Processes.parent_process_name
- Processes.process_name
- Processes.process_path
risk_score: 1
security_domain: endpoint
@@ -0,0 +1,70 @@
name: Windows DLL Search Order Hijacking Hunt with Sysmon
id: 79c7d1fc-64c7-91be-a616-ccda752efe81
version: 1
date: '2022-08-18'
author: Michael Haag, Splunk
type: Hunting
datamodel:
- Endpoint
description: The following hunting analytic is an experimental query built against a accidental feature using the latest Sysmon TA 3.0 (https://splunkbase.splunk.com/app/5709/) which maps the module load (ImageLoaded) to process_name.
This analytic will deprecate once this is fixed.
This hunting analytic identifies known libraries in Windows that may be used in a DLL search order hijack or DLL Sideloading setting. This may require recompiling the DLL, moving the DLL or moving the vulnerable process. The query looks for any running out of system32 or syswow64. Some libraries natively run out of other application paths and will need to be added to the exclusion as needed.
The lookup is comprised of Microsoft native libraries identified within the Hijacklibs.net project.
search: '`sysmon` EventCode=7 NOT (process_path IN ("*\\system32\\*", "*\\syswow64\\*","*\\winsxs\\*"))
| lookup hijacklibs library AS process_name OUTPUT islibrary | search islibrary = True | rename Computer as dest process_name AS ImageLoaded process_path AS Module_Path
| stats values(parent_process_name) count by _time dest ImageLoaded Module_Path
| `windows_dll_search_order_hijacking_hunt_with_sysmon_filter`'
how_to_implement: The latest Sysmon TA 3.0 https://splunkbase.splunk.com/app/5709 will add the ImageLoaded name to the process_name field, allowing this query to work. Use as an example and implement for other products.
known_false_positives: False positives will be present based on paths. Filter or add other paths to the exclusion as needed.
references:
- https://hijacklibs.net
tags:
analytic_story:
- Living Off The Land
- Windows Defense Evasion Tactics
asset_type: Endpoint
cis20:
- CIS 3
- CIS 5
- CIS 16
confidence: 10
context:
- Source:Endpoint
- Stage:Persistence
- Stage:Privilege Escalation
- Stage:Defense Evasion
dataset:
- https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1574.001/atomic_red_team/windows-sysmon.log
impact: 10
kill_chain_phases:
- Exploitation
message: An instance of $parent_process_name$ loading $process_name$ was identified on endpoint $dest$.
mitre_attack_id:
- T1574.001
- T1574
nist:
- DE.CM
observable:
- name: dest
type: Hostname
role:
- Victim
- name: parent_process_name
type: Process
role:
- Parent Process
- name: process_name
type: Process
role:
- Child Process
product:
- Splunk Enterprise
- Splunk Enterprise Security
- Splunk Cloud
required_fields:
- _time
- dest
- ImageLoaded
- Module_Path
risk_score: 1
security_domain: endpoint
@@ -1,7 +1,7 @@
name: Windows Possible Credential Dumping
id: e4723b92-7266-11ec-af45-acde48001122
version: 2
date: '2022-01-27'
version: 3
date: '2022-08-24'
author: Michael Haag, Splunk
type: TTP
datamodel: []
@@ -23,12 +23,8 @@ description: 'The following analytic is an enhanced version of two previous anal
The idea behind using ntdll.dll is to blend in by using native api of ntdll.dll.
For example in sekurlsa module there are many ntdll exported api, like RtlCopyMemory,
used to execute this module which is related to lsass dumping.'
search: '`sysmon` EventCode=10 TargetImage=*lsass.exe GrantedAccess IN ("0x01000",
"0x1010", "0x1038", "0x40", "0x1400", "0x1fffff", "0x1410", "0x143a", "0x1438",
"0x1000") CallTrace IN ("*dbgcore.dll*", "*dbghelp.dll*", "*ntdll.dll*") | stats
count min(_time) as firstTime max(_time) as lastTime by Computer, TargetImage, GrantedAccess,
SourceImage, SourceProcessId, SourceUser, TargetUser | rename Computer as dest |
`security_content_ctime(firstTime)`| `security_content_ctime(lastTime)` | `windows_possible_credential_dumping_filter`'
search: '`sysmon` EventCode=10 TargetImage=*\\lsass.exe GrantedAccess IN ("0x01000", "0x1010", "0x1038", "0x40", "0x1400", "0x1fffff", "0x1410", "0x143a", "0x1438", "0x1000") CallTrace IN ("*dbgcore.dll*", "*dbghelp.dll*", "*ntdll.dll*", "*kernelbase.dll*", "*kernel32.dll*") NOT SourceUser IN ("NT AUTHORITY\\SYSTEM", "NT AUTHORITY\\NETWORK SERVICE")| stats count min(_time) as firstTime max(_time) as lastTime by, Computer, SourceImage, GrantedAccess, TargetImage, SourceProcessId, SourceUser, TargetUser | rename Computer as dest | `security_content_ctime(firstTime)`|`security_content_ctime(lastTime)`
| `windows_possible_credential_dumping_filter`'
how_to_implement: To successfully implement this search, you need to be ingesting
logs with the process name, parent process, and command-line executions from your
endpoints. If you are using Sysmon, you must have at least version 6.0.4 of the
@@ -42,6 +38,7 @@ references:
- https://cyberwardog.blogspot.com/2017/03/chronicles-of-threat-hunter-hunting-for_22.html
- https://raw.githubusercontent.com/PowerShellMafia/PowerSploit/master/Exfiltration/Invoke-Mimikatz.ps1
- https://docs.microsoft.com/en-us/windows/win32/procthread/process-security-and-access-rights?redirectedfrom=MSDN
- https://github.com/redcanaryco/AtomicTestHarnesses/blob/master/TestHarnesses/T1003.001_DumpLSASS/DumpLSASS.ps1
tags:
analytic_story:
- Credential Dumping
@@ -0,0 +1,72 @@
name: Windows Remote Access Software Hunt
id: 8bd22c9f-05a2-4db1-b131-29271f28cb0a
version: 1
date: '2022-08-22'
author: Michael Haag, Splunk
type: Hunting
datamodel:
- Endpoint
description: The following hunting analytic is meant to help organizations understand what remote access software is being used in the environment. When reviewing this hunt, confirm the software identified is authorized to be utilized. Based on fidelity, create a new analytic for specific utilities banned within the organization.
Adversaries use these utilities to retain remote access capabilities to the environment. Utilities in the lookup include AnyDesk, GoToMyPC, LogMeIn, TeamViewer and much more. Review the lookup for the entire list and add any others.
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime values(Processes.process) as process values(Processes.parent_process) as parent_process from datamodel=Endpoint.Processes where Processes.dest!=unknown Processes.user!=unknown by Processes.dest Processes.user Processes.process_name Processes.process
| `security_content_ctime(firstTime)`
| `security_content_ctime(lastTime)`
| `drop_dm_object_name(Processes)`
| lookup remote_access_software remote_utility AS process_name OUTPUT isutility
| search isutility = True
| `windows_remote_access_software_hunt_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 `Processes` node. In addition, confirm the latest CIM App 4.20 or higher is installed and the latest TA for the endpoint product.
known_false_positives: False positives will be found. Filter as needed and create higher fidelity analytics based off banned remote access software.
references:
- https://thedfirreport.com/2022/08/08/bumblebee-roasts-its-way-to-domain-admin/
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1219/T1219.md
tags:
analytic_story:
- Insider Threat
- Command and Control
- Ransomware
asset_type: Endpoint
cis20:
- CIS 3
- CIS 5
- CIS 16
confidence: 10
context:
- Source:Endpoint
dataset:
- https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1219/atomic_red_team/windows-sysmon.log
impact: 10
kill_chain_phases:
- Command & Control
message: The following Remote Access Software $process_name$ was identified on $dest$.
mitre_attack_id:
- T1219
nist:
- DE.CM
observable:
- name: dest
type: Hostname
role:
- Victim
- name: process_name
type: Process
role:
- Child Process
product:
- Splunk Enterprise
- Splunk Enterprise Security
- Splunk Cloud
required_fields:
- _time
- Processes.user
- Processes.parent_process_name #parent process name
- Processes.parent_process #parent cmdline
- Processes.original_file_name
- Processes.process_name #process name
- Processes.process #process cmdline
- Processes.process_id
- Processes.parent_process_path
- Processes.process_path
- Processes.parent_process_id
risk_score: 1
security_domain: endpoint
+403
View File
@@ -0,0 +1,403 @@
library,islibrary
outllib.dll,TRUE
iviewers.dll,TRUE
hha.dll,TRUE
aclui.dll,TRUE
xwtpw32.dll,TRUE
xwizards.dll,TRUE
xpsservices.dll,TRUE
xolehlp.dll,TRUE
xmllite.dll,TRUE
wwapi.dll,TRUE
wwancfg.dll,TRUE
wtsapi32.dll,TRUE
wsmsvc.dll,TRUE
wshelper.dll,TRUE
wshbth.dll,TRUE
wscapi.dll,TRUE
wpdshext.dll,TRUE
wofutil.dll,TRUE
wmsgapi.dll,TRUE
wmpdui.dll,TRUE
wmiutils.dll,TRUE
wmidcom.dll,TRUE
wmiclnt.dll,TRUE
wlidprov.dll,TRUE
wldp.dll,TRUE
wlbsctrl.dll,TRUE
wlancfg.dll,TRUE
wlanapi.dll,TRUE
wkscli.dll,TRUE
winsync.dll,TRUE
winsta.dll,TRUE
winsqlite3.dll,TRUE
winscard.dll,TRUE
winrnr.dll,TRUE
winnsi.dll,TRUE
winmm.dll,TRUE
winmde.dll,TRUE
winipsec.dll,TRUE
wininet.dll,TRUE
winhttp.dll,TRUE
windowsudk.shellcommon.dll,TRUE
windowsperformancerecordercontrol.dll,TRUE
windowscodecsext.dll,TRUE
windowscodecs.dll,TRUE
windows.ui.immersive.dll,TRUE
windows.storage.search.dll,TRUE
windows.storage.dll,TRUE
winbrand.dll,TRUE
winbio.dll,TRUE
wimgapi.dll,TRUE
whhelper.dll,TRUE
wevtapi.dll,TRUE
wer.dll,TRUE
wecapi.dll,TRUE
webservices.dll,TRUE
wdscore.dll,TRUE
wdi.dll,TRUE
wcnnetsh.dll,TRUE
wcmapi.dll,TRUE
wbemsvc.dll,TRUE
wbemprox.dll,TRUE
vsstrace.dll,TRUE
vssapi.dll,TRUE
virtdisk.dll,TRUE
version.dll,TRUE
vdsutil.dll,TRUE
vaultcli.dll,TRUE
uxtheme.dll,TRUE
uxinit.dll,TRUE
utildll.dll,TRUE
userenv.dll,TRUE
urlmon.dll,TRUE
upshared.dll,TRUE
updatepolicy.dll,TRUE
unattend.dll,TRUE
umpdc.dll,TRUE
uiribbon.dll,TRUE
uireng.dll,TRUE
uiautomationcore.dll,TRUE
uianimation.dll,TRUE
twinui.appcore.dll,TRUE
twinapi.dll,TRUE
twext.dll,TRUE
ttdrecord.dll,TRUE
tsworkspace.dll,TRUE
tquery.dll,TRUE
tpmcoreprovisioning.dll,TRUE
timesync.dll,TRUE
tdh.dll,TRUE
tbs.dll,TRUE
tapi32.dll,TRUE
systemsettingsthresholdadminflowui.dll,TRUE
sxshared.dll,TRUE
structuredquery.dll,TRUE
staterepository.core.dll,TRUE
ssshim.dll,TRUE
sspicli.dll,TRUE
ssp_isv.exe_rsaenh.dll,TRUE
ssp.exe_rsaenh.dll,TRUE
srvcli.dll,TRUE
srpapi.dll,TRUE
srmtrace.dll,TRUE
srcore.dll,TRUE
srclient.dll,TRUE
sppcext.dll,TRUE
sppc.dll,TRUE
spp.dll,TRUE
spectrumsyncclient.dll,TRUE
snmpapi.dll,TRUE
slc.dll,TRUE
shell32.dll,TRUE
security.dll,TRUE
secur32.dll,TRUE
schedcli.dll,TRUE
scecli.dll,TRUE
scansetting.dll,TRUE
sas.dll,TRUE
sapi_onecore.dll,TRUE
samlib.dll,TRUE
samcli.dll,TRUE
rtworkq.dll,TRUE
rtutils.dll,TRUE
rsaenh.dll,TRUE
rpcnsh.dll,TRUE
rmclient.dll,TRUE
resutils.dll,TRUE
resetengine.dll,TRUE
reseteng.dll,TRUE
regapi.dll,TRUE
reagent.dll,TRUE
rasmontr.dll,TRUE
rasman.dll,TRUE
rasgcw.dll,TRUE
rasdlg.dll,TRUE
rasapi32.dll,TRUE
radcui.dll,TRUE
puiapi.dll,TRUE
prvdmofcomp.dll,TRUE
proximityservicepal.dll,TRUE
proximitycommon.dll,TRUE
propsys.dll,TRUE
profapi.dll,TRUE
prntvpt.dll,TRUE
printui.dll,TRUE
powrprof.dll,TRUE
polstore.dll,TRUE
policymanager.dll,TRUE
pnrpnsp.dll,TRUE
playsndsrv.dll,TRUE
pla.dll,TRUE
pkeyhelper.dll,TRUE
peerdistsh.dll,TRUE
pdh.dll,TRUE
pcaui.dll,TRUE
p9np.dll,TRUE
p2pnetsh.dll,TRUE
p2p.dll,TRUE
osuninst.dll,TRUE
osksupport.dll,TRUE
osbaseln.dll,TRUE
opcservices.dll,TRUE
onex.dll,TRUE
omadmapi.dll,TRUE
oleacc.dll,TRUE
oci.dll,TRUE
ntshrui.dll,TRUE
ntmarta.dll,TRUE
ntlmshared.dll,TRUE
ntlanman.dll,TRUE
ntdsapi.dll,TRUE
nshwfp.dll,TRUE
nshipsec.dll,TRUE
nshhttp.dll,TRUE
npmproxy.dll,TRUE
nlansp_c.dll,TRUE
nlaapi.dll,TRUE
ninput.dll,TRUE
newdev.dll,TRUE
networkexplorer.dll,TRUE
netutils.dll,TRUE
nettrace.dll,TRUE
netshell.dll,TRUE
netsetupapi.dll,TRUE
netprovfw.dll,TRUE
netprofm.dll,TRUE
netplwiz.dll,TRUE
netjoin.dll,TRUE
netiohlp.dll,TRUE
netid.dll,TRUE
netapi32.dll,TRUE
ndfapi.dll,TRUE
ncrypt.dll,TRUE
napinsp.dll,TRUE
mtxclu.dll,TRUE
msxml3.dll,TRUE
mswsock.dll,TRUE
mswb7.dll,TRUE
msvcp110_win.dll,TRUE
msutb.dll,TRUE
mstracer.dll,TRUE
msiso.dll,TRUE
msi.dll,TRUE
msftedit.dll,TRUE
msdtctm.dll,TRUE
msdrm.dll,TRUE
msctfmonitor.dll,TRUE
msctf.dll,TRUE
mscoree.dll,TRUE
mscms.dll,TRUE
msacm32.dll,TRUE
mrmcorer.dll,TRUE
mpsvc.dll,TRUE
mprapi.dll,TRUE
mpr.dll,TRUE
mpclient.dll,TRUE
mobilenetworking.dll,TRUE
mmdevapi.dll,TRUE
mlang.dll,TRUE
miutils.dll,TRUE
mintdh.dll,TRUE
midimap.dll,TRUE
mi.dll,TRUE
mfplat.dll,TRUE
mfcore.dll,TRUE
mfc42u.dll,TRUE
mdmdiagnostics.dll,TRUE
mbaexmlparser.dll,TRUE
mapistub.dll,TRUE
maintenanceui.dll,TRUE
magnification.dll,TRUE
lrwizdll.dll,TRUE
lpksetupproxyserv.dll,TRUE
logoncontroller.dll,TRUE
logoncli.dll,TRUE
lockhostingframework.dll,TRUE
loadperf.dll,TRUE
linkinfo.dll,TRUE
licensingdiagspp.dll,TRUE
licensemanagerapi.dll,TRUE
ktmw32.dll,TRUE
ksuser.dll,TRUE
kdstub.dll,TRUE
joinutil.dll,TRUE
iumsdk.dll,TRUE
iumbase.dll,TRUE
isv.exe_rsaenh.dll,TRUE
iscsium.dll,TRUE
iscsidsc.dll,TRUE
iri.dll,TRUE
iphlpapi.dll,TRUE
inproclogger.dll,TRUE
ifsutil.dll,TRUE
ifmon.dll,TRUE
iertutil.dll,TRUE
iedkcs32.dll,TRUE
ieadvpack.dll,TRUE
idstore.dll,TRUE
icmp.dll,TRUE
httpapi.dll,TRUE
hnetmon.dll,TRUE
hid.dll,TRUE
gpapi.dll,TRUE
getuname.dll,TRUE
fxstiff.dll,TRUE
fxsst.dll,TRUE
fxsapi.dll,TRUE
fwpuclnt.dll,TRUE
fwpolicyiomgr.dll,TRUE
fwcfg.dll,TRUE
fwbase.dll,TRUE
fvewiz.dll,TRUE
fveskybackup.dll,TRUE
fveapi.dll,TRUE
framedynos.dll,TRUE
fltlib.dll,TRUE
flightsettings.dll,TRUE
firewallapi.dll,TRUE
fhsvcctl.dll,TRUE
fhcfg.dll,TRUE
feclient.dll,TRUE
fddevquery.dll,TRUE
faultrep.dll,TRUE
fastprox.dll,TRUE
explorerframe.dll,TRUE
execmodelproxy.dll,TRUE
esent.dll,TRUE
efsutil.dll,TRUE
efsadu.dll,TRUE
edputil.dll,TRUE
edgeiso.dll,TRUE
eappprxy.dll,TRUE
eappcfg.dll,TRUE
dynamoapi.dll,TRUE
dxva2.dll,TRUE
dxgi.dll,TRUE
dxcore.dll,TRUE
dwrite.dll,TRUE
dwmcore.dll,TRUE
dwmapi.dll,TRUE
dusmapi.dll,TRUE
duser.dll,TRUE
dui70.dll,TRUE
dsrole.dll,TRUE
dsreg.dll,TRUE
dsprop.dll,TRUE
dsparse.dll,TRUE
dsclient.dll,TRUE
drvstore.dll,TRUE
drprov.dll,TRUE
dpx.dll,TRUE
dot3cfg.dll,TRUE
dot3api.dll,TRUE
dnsapi.dll,TRUE
dmxmlhelputils.dll,TRUE
dmpushproxy.dll,TRUE
dmprocessxmlfiltered.dll,TRUE
dmoleaututils.dll,TRUE
dmiso8601utils.dll,TRUE
dmenterprisediagnostics.dll,TRUE
dmenrollengine.dll,TRUE
dmcommandlineutils.dll,TRUE
dmcmnutils.dll,TRUE
dmcfgutils.dll,TRUE
dismcore.dll,TRUE
dismapi.dll,TRUE
directmanipulation.dll,TRUE
dhcpcsvc6.dll,TRUE
dhcpcsvc.dll,TRUE
dhcpcmonitor.dll,TRUE
devrtl.dll,TRUE
devobj.dll,TRUE
devicepairing.dll,TRUE
devicecredential.dll,TRUE
deviceassociation.dll,TRUE
desktopshellext.dll,TRUE
defragproxy.dll,TRUE
dcomp.dll,TRUE
dcntel.dll,TRUE
dbghelp.dll,TRUE
dbgcore.dll,TRUE
davclnt.dll,TRUE
dataexchange.dll,TRUE
d3dcompiler_47.dll,TRUE
d3d9.dll,TRUE
d3d12.dll,TRUE
d3d11.dll,TRUE
d3d10warp.dll,TRUE
d3d10core.dll,TRUE
d3d10_1core.dll,TRUE
d3d10_1.dll,TRUE
d3d10.dll,TRUE
d2d1.dll,TRUE
cscui.dll,TRUE
cscobj.dll,TRUE
cscapi.dll,TRUE
cryptxml.dll,TRUE
cryptui.dll,TRUE
cryptsp.dll,TRUE
cryptdll.dll,TRUE
cryptbase.dll,TRUE
credui.dll,TRUE
coreuicomponents.dll,TRUE
coremessaging.dll,TRUE
coredplus.dll,TRUE
connect.dll,TRUE
configmanager2.dll,TRUE
comdlg32.dll,TRUE
colorui.dll,TRUE
coloradapterclient.dll,TRUE
cmutil.dll,TRUE
cmpbk32.dll,TRUE
clusapi.dll,TRUE
clipc.dll,TRUE
cldapi.dll,TRUE
certenroll.dll,TRUE
certcli.dll,TRUE
cabview.dll,TRUE
cabinet.dll,TRUE
bootux.dll,TRUE
bootmenuux.dll,TRUE
bderepair.dll,TRUE
bcrypt.dll,TRUE
bcp47mrm.dll,TRUE
bcp47langs.dll,TRUE
bcd.dll,TRUE
batmeter.dll,TRUE
avrt.dll,TRUE
authz.dll,TRUE
authfwcfg.dll,TRUE
auditpolcore.dll,TRUE
audioses.dll,TRUE
atl.dll,TRUE
archiveint.dll,TRUE
appxdeploymentclient.dll,TRUE
appxalluserstore.dll,TRUE
appvpolicy.dll,TRUE
applicationframe.dll,TRUE
apphelp.dll,TRUE
aepic.dll,TRUE
adsldpc.dll,TRUE
activeds.dll,TRUE
amsi.dll,TRUE
1 library islibrary
2 outllib.dll TRUE
3 iviewers.dll TRUE
4 hha.dll TRUE
5 aclui.dll TRUE
6 xwtpw32.dll TRUE
7 xwizards.dll TRUE
8 xpsservices.dll TRUE
9 xolehlp.dll TRUE
10 xmllite.dll TRUE
11 wwapi.dll TRUE
12 wwancfg.dll TRUE
13 wtsapi32.dll TRUE
14 wsmsvc.dll TRUE
15 wshelper.dll TRUE
16 wshbth.dll TRUE
17 wscapi.dll TRUE
18 wpdshext.dll TRUE
19 wofutil.dll TRUE
20 wmsgapi.dll TRUE
21 wmpdui.dll TRUE
22 wmiutils.dll TRUE
23 wmidcom.dll TRUE
24 wmiclnt.dll TRUE
25 wlidprov.dll TRUE
26 wldp.dll TRUE
27 wlbsctrl.dll TRUE
28 wlancfg.dll TRUE
29 wlanapi.dll TRUE
30 wkscli.dll TRUE
31 winsync.dll TRUE
32 winsta.dll TRUE
33 winsqlite3.dll TRUE
34 winscard.dll TRUE
35 winrnr.dll TRUE
36 winnsi.dll TRUE
37 winmm.dll TRUE
38 winmde.dll TRUE
39 winipsec.dll TRUE
40 wininet.dll TRUE
41 winhttp.dll TRUE
42 windowsudk.shellcommon.dll TRUE
43 windowsperformancerecordercontrol.dll TRUE
44 windowscodecsext.dll TRUE
45 windowscodecs.dll TRUE
46 windows.ui.immersive.dll TRUE
47 windows.storage.search.dll TRUE
48 windows.storage.dll TRUE
49 winbrand.dll TRUE
50 winbio.dll TRUE
51 wimgapi.dll TRUE
52 whhelper.dll TRUE
53 wevtapi.dll TRUE
54 wer.dll TRUE
55 wecapi.dll TRUE
56 webservices.dll TRUE
57 wdscore.dll TRUE
58 wdi.dll TRUE
59 wcnnetsh.dll TRUE
60 wcmapi.dll TRUE
61 wbemsvc.dll TRUE
62 wbemprox.dll TRUE
63 vsstrace.dll TRUE
64 vssapi.dll TRUE
65 virtdisk.dll TRUE
66 version.dll TRUE
67 vdsutil.dll TRUE
68 vaultcli.dll TRUE
69 uxtheme.dll TRUE
70 uxinit.dll TRUE
71 utildll.dll TRUE
72 userenv.dll TRUE
73 urlmon.dll TRUE
74 upshared.dll TRUE
75 updatepolicy.dll TRUE
76 unattend.dll TRUE
77 umpdc.dll TRUE
78 uiribbon.dll TRUE
79 uireng.dll TRUE
80 uiautomationcore.dll TRUE
81 uianimation.dll TRUE
82 twinui.appcore.dll TRUE
83 twinapi.dll TRUE
84 twext.dll TRUE
85 ttdrecord.dll TRUE
86 tsworkspace.dll TRUE
87 tquery.dll TRUE
88 tpmcoreprovisioning.dll TRUE
89 timesync.dll TRUE
90 tdh.dll TRUE
91 tbs.dll TRUE
92 tapi32.dll TRUE
93 systemsettingsthresholdadminflowui.dll TRUE
94 sxshared.dll TRUE
95 structuredquery.dll TRUE
96 staterepository.core.dll TRUE
97 ssshim.dll TRUE
98 sspicli.dll TRUE
99 ssp_isv.exe_rsaenh.dll TRUE
100 ssp.exe_rsaenh.dll TRUE
101 srvcli.dll TRUE
102 srpapi.dll TRUE
103 srmtrace.dll TRUE
104 srcore.dll TRUE
105 srclient.dll TRUE
106 sppcext.dll TRUE
107 sppc.dll TRUE
108 spp.dll TRUE
109 spectrumsyncclient.dll TRUE
110 snmpapi.dll TRUE
111 slc.dll TRUE
112 shell32.dll TRUE
113 security.dll TRUE
114 secur32.dll TRUE
115 schedcli.dll TRUE
116 scecli.dll TRUE
117 scansetting.dll TRUE
118 sas.dll TRUE
119 sapi_onecore.dll TRUE
120 samlib.dll TRUE
121 samcli.dll TRUE
122 rtworkq.dll TRUE
123 rtutils.dll TRUE
124 rsaenh.dll TRUE
125 rpcnsh.dll TRUE
126 rmclient.dll TRUE
127 resutils.dll TRUE
128 resetengine.dll TRUE
129 reseteng.dll TRUE
130 regapi.dll TRUE
131 reagent.dll TRUE
132 rasmontr.dll TRUE
133 rasman.dll TRUE
134 rasgcw.dll TRUE
135 rasdlg.dll TRUE
136 rasapi32.dll TRUE
137 radcui.dll TRUE
138 puiapi.dll TRUE
139 prvdmofcomp.dll TRUE
140 proximityservicepal.dll TRUE
141 proximitycommon.dll TRUE
142 propsys.dll TRUE
143 profapi.dll TRUE
144 prntvpt.dll TRUE
145 printui.dll TRUE
146 powrprof.dll TRUE
147 polstore.dll TRUE
148 policymanager.dll TRUE
149 pnrpnsp.dll TRUE
150 playsndsrv.dll TRUE
151 pla.dll TRUE
152 pkeyhelper.dll TRUE
153 peerdistsh.dll TRUE
154 pdh.dll TRUE
155 pcaui.dll TRUE
156 p9np.dll TRUE
157 p2pnetsh.dll TRUE
158 p2p.dll TRUE
159 osuninst.dll TRUE
160 osksupport.dll TRUE
161 osbaseln.dll TRUE
162 opcservices.dll TRUE
163 onex.dll TRUE
164 omadmapi.dll TRUE
165 oleacc.dll TRUE
166 oci.dll TRUE
167 ntshrui.dll TRUE
168 ntmarta.dll TRUE
169 ntlmshared.dll TRUE
170 ntlanman.dll TRUE
171 ntdsapi.dll TRUE
172 nshwfp.dll TRUE
173 nshipsec.dll TRUE
174 nshhttp.dll TRUE
175 npmproxy.dll TRUE
176 nlansp_c.dll TRUE
177 nlaapi.dll TRUE
178 ninput.dll TRUE
179 newdev.dll TRUE
180 networkexplorer.dll TRUE
181 netutils.dll TRUE
182 nettrace.dll TRUE
183 netshell.dll TRUE
184 netsetupapi.dll TRUE
185 netprovfw.dll TRUE
186 netprofm.dll TRUE
187 netplwiz.dll TRUE
188 netjoin.dll TRUE
189 netiohlp.dll TRUE
190 netid.dll TRUE
191 netapi32.dll TRUE
192 ndfapi.dll TRUE
193 ncrypt.dll TRUE
194 napinsp.dll TRUE
195 mtxclu.dll TRUE
196 msxml3.dll TRUE
197 mswsock.dll TRUE
198 mswb7.dll TRUE
199 msvcp110_win.dll TRUE
200 msutb.dll TRUE
201 mstracer.dll TRUE
202 msiso.dll TRUE
203 msi.dll TRUE
204 msftedit.dll TRUE
205 msdtctm.dll TRUE
206 msdrm.dll TRUE
207 msctfmonitor.dll TRUE
208 msctf.dll TRUE
209 mscoree.dll TRUE
210 mscms.dll TRUE
211 msacm32.dll TRUE
212 mrmcorer.dll TRUE
213 mpsvc.dll TRUE
214 mprapi.dll TRUE
215 mpr.dll TRUE
216 mpclient.dll TRUE
217 mobilenetworking.dll TRUE
218 mmdevapi.dll TRUE
219 mlang.dll TRUE
220 miutils.dll TRUE
221 mintdh.dll TRUE
222 midimap.dll TRUE
223 mi.dll TRUE
224 mfplat.dll TRUE
225 mfcore.dll TRUE
226 mfc42u.dll TRUE
227 mdmdiagnostics.dll TRUE
228 mbaexmlparser.dll TRUE
229 mapistub.dll TRUE
230 maintenanceui.dll TRUE
231 magnification.dll TRUE
232 lrwizdll.dll TRUE
233 lpksetupproxyserv.dll TRUE
234 logoncontroller.dll TRUE
235 logoncli.dll TRUE
236 lockhostingframework.dll TRUE
237 loadperf.dll TRUE
238 linkinfo.dll TRUE
239 licensingdiagspp.dll TRUE
240 licensemanagerapi.dll TRUE
241 ktmw32.dll TRUE
242 ksuser.dll TRUE
243 kdstub.dll TRUE
244 joinutil.dll TRUE
245 iumsdk.dll TRUE
246 iumbase.dll TRUE
247 isv.exe_rsaenh.dll TRUE
248 iscsium.dll TRUE
249 iscsidsc.dll TRUE
250 iri.dll TRUE
251 iphlpapi.dll TRUE
252 inproclogger.dll TRUE
253 ifsutil.dll TRUE
254 ifmon.dll TRUE
255 iertutil.dll TRUE
256 iedkcs32.dll TRUE
257 ieadvpack.dll TRUE
258 idstore.dll TRUE
259 icmp.dll TRUE
260 httpapi.dll TRUE
261 hnetmon.dll TRUE
262 hid.dll TRUE
263 gpapi.dll TRUE
264 getuname.dll TRUE
265 fxstiff.dll TRUE
266 fxsst.dll TRUE
267 fxsapi.dll TRUE
268 fwpuclnt.dll TRUE
269 fwpolicyiomgr.dll TRUE
270 fwcfg.dll TRUE
271 fwbase.dll TRUE
272 fvewiz.dll TRUE
273 fveskybackup.dll TRUE
274 fveapi.dll TRUE
275 framedynos.dll TRUE
276 fltlib.dll TRUE
277 flightsettings.dll TRUE
278 firewallapi.dll TRUE
279 fhsvcctl.dll TRUE
280 fhcfg.dll TRUE
281 feclient.dll TRUE
282 fddevquery.dll TRUE
283 faultrep.dll TRUE
284 fastprox.dll TRUE
285 explorerframe.dll TRUE
286 execmodelproxy.dll TRUE
287 esent.dll TRUE
288 efsutil.dll TRUE
289 efsadu.dll TRUE
290 edputil.dll TRUE
291 edgeiso.dll TRUE
292 eappprxy.dll TRUE
293 eappcfg.dll TRUE
294 dynamoapi.dll TRUE
295 dxva2.dll TRUE
296 dxgi.dll TRUE
297 dxcore.dll TRUE
298 dwrite.dll TRUE
299 dwmcore.dll TRUE
300 dwmapi.dll TRUE
301 dusmapi.dll TRUE
302 duser.dll TRUE
303 dui70.dll TRUE
304 dsrole.dll TRUE
305 dsreg.dll TRUE
306 dsprop.dll TRUE
307 dsparse.dll TRUE
308 dsclient.dll TRUE
309 drvstore.dll TRUE
310 drprov.dll TRUE
311 dpx.dll TRUE
312 dot3cfg.dll TRUE
313 dot3api.dll TRUE
314 dnsapi.dll TRUE
315 dmxmlhelputils.dll TRUE
316 dmpushproxy.dll TRUE
317 dmprocessxmlfiltered.dll TRUE
318 dmoleaututils.dll TRUE
319 dmiso8601utils.dll TRUE
320 dmenterprisediagnostics.dll TRUE
321 dmenrollengine.dll TRUE
322 dmcommandlineutils.dll TRUE
323 dmcmnutils.dll TRUE
324 dmcfgutils.dll TRUE
325 dismcore.dll TRUE
326 dismapi.dll TRUE
327 directmanipulation.dll TRUE
328 dhcpcsvc6.dll TRUE
329 dhcpcsvc.dll TRUE
330 dhcpcmonitor.dll TRUE
331 devrtl.dll TRUE
332 devobj.dll TRUE
333 devicepairing.dll TRUE
334 devicecredential.dll TRUE
335 deviceassociation.dll TRUE
336 desktopshellext.dll TRUE
337 defragproxy.dll TRUE
338 dcomp.dll TRUE
339 dcntel.dll TRUE
340 dbghelp.dll TRUE
341 dbgcore.dll TRUE
342 davclnt.dll TRUE
343 dataexchange.dll TRUE
344 d3dcompiler_47.dll TRUE
345 d3d9.dll TRUE
346 d3d12.dll TRUE
347 d3d11.dll TRUE
348 d3d10warp.dll TRUE
349 d3d10core.dll TRUE
350 d3d10_1core.dll TRUE
351 d3d10_1.dll TRUE
352 d3d10.dll TRUE
353 d2d1.dll TRUE
354 cscui.dll TRUE
355 cscobj.dll TRUE
356 cscapi.dll TRUE
357 cryptxml.dll TRUE
358 cryptui.dll TRUE
359 cryptsp.dll TRUE
360 cryptdll.dll TRUE
361 cryptbase.dll TRUE
362 credui.dll TRUE
363 coreuicomponents.dll TRUE
364 coremessaging.dll TRUE
365 coredplus.dll TRUE
366 connect.dll TRUE
367 configmanager2.dll TRUE
368 comdlg32.dll TRUE
369 colorui.dll TRUE
370 coloradapterclient.dll TRUE
371 cmutil.dll TRUE
372 cmpbk32.dll TRUE
373 clusapi.dll TRUE
374 clipc.dll TRUE
375 cldapi.dll TRUE
376 certenroll.dll TRUE
377 certcli.dll TRUE
378 cabview.dll TRUE
379 cabinet.dll TRUE
380 bootux.dll TRUE
381 bootmenuux.dll TRUE
382 bderepair.dll TRUE
383 bcrypt.dll TRUE
384 bcp47mrm.dll TRUE
385 bcp47langs.dll TRUE
386 bcd.dll TRUE
387 batmeter.dll TRUE
388 avrt.dll TRUE
389 authz.dll TRUE
390 authfwcfg.dll TRUE
391 auditpolcore.dll TRUE
392 audioses.dll TRUE
393 atl.dll TRUE
394 archiveint.dll TRUE
395 appxdeploymentclient.dll TRUE
396 appxalluserstore.dll TRUE
397 appvpolicy.dll TRUE
398 applicationframe.dll TRUE
399 apphelp.dll TRUE
400 aepic.dll TRUE
401 adsldpc.dll TRUE
402 activeds.dll TRUE
403 amsi.dll TRUE
+7
View File
@@ -0,0 +1,7 @@
description: A list of potentially abused libraries in Windows
filename: hijacklibs.csv
name: hijacklibs
default_match: 'false'
match_type: WILDCARD(library)
min_matches: 1
case_sensitive_match: 'false'
+52
View File
@@ -0,0 +1,52 @@
remote_utility, description, isutility
aweray_remote*.exe,AweRay (AweSun), TRUE
aa_v*.exe, Ammyy Admin, TRUE
AeroAdmin.exe, AeroAdmin, TRUE
anydesk.exe, AnyDesk, TRUE
AnyViewerSetup.exe, AnyViewer, TRUE
RCClient.exe, AnyViewer, TRUE
CService.exe, AnyViewer, TRUE
atera_agent.exe, Atera, TRUE
bomgar-scc.exe, BeyondTrust (Bomgar), TRUE
bomgar-rdp.exe, BeyondTrust (Bomgar), TRUE
screenconnect.clientservice.exe, ConnectWise Control, TRUE
screenconnect.windowsclient.exe, ConnectWise Control, TRUE
dwrcs.exe, Dameware, TRUE
distant-desktop.exe, Distant Desktop, TRUE
dwagsvc.exe, DW Service, TRUE
g2comm.exe, GoToMyPC, TRUE
g2fileh.exe, GoToMyPC, TRUE
g2host.exe, GoToMyPC, TRUE
g2mainh.exe, GoToMyPC, TRUE
g2printh.exe, GoToMyPC, TRUE
g2svc.exe, GoToMyPC, TRUE
g2tray.exe, GoToMyPC, TRUE
gopcsrv.exe, GoToMyPC, TRUE
ROMServer.exe, LiteManager, TRUE
ROMFUSClient.exe, LiteManager, TRUE
lmiignition.exe, LogMeIn, TRUE
lmiguardiansvc.exe, LogMeIn, TRUE
logmein*.exe, LogMeIn, TRUE
awrem32.exe, PCAnywhere Client, TRUE
awhost32.exe, PCAnywhere Server, TRUE
PCMonitorManager.exe, Pulseway, TRUE
pcmonitorsrv.exe, Pulseway, TRUE
radmin3.exe, RAdmin, TRUE
famitrfc.exe, RAdmin, TRUE
rutserv.exe, RemoteUtilities, TRUE
smpcsetup.exe, ShowMyPC, TRUE
showmypc*.exe, ShowMyPC, TRUE
strwinclt.exe, Splashtop, TRUE
supremo.exe, Supremo, TRUE
supremohelper.exe, Supremo, TRUE
supremosystem.exe, Supremo, TRUE
teamviewer_desktop.exe, TeamViewer Desktop, TRUE
teamviewer.exe, TeamViewer Service, TRUE
teamviewer_service.exe, TeamViewer Service, TRUE
winvnc.exe, VNC, TRUE
vncviewer.exe, VNC, TRUE
winvncsc.exe, VNC, TRUE
winwvc.exe, VNC, TRUE
Zaservice.exe, Zoho Assist, TRUE
Zohours.exe, Zoho Assist, TRUE
ZohoMeeting.exe, Zoho Assist, TRUE
1 remote_utility description isutility
2 aweray_remote*.exe AweRay (AweSun) TRUE
3 aa_v*.exe Ammyy Admin TRUE
4 AeroAdmin.exe AeroAdmin TRUE
5 anydesk.exe AnyDesk TRUE
6 AnyViewerSetup.exe AnyViewer TRUE
7 RCClient.exe AnyViewer TRUE
8 CService.exe AnyViewer TRUE
9 atera_agent.exe Atera TRUE
10 bomgar-scc.exe BeyondTrust (Bomgar) TRUE
11 bomgar-rdp.exe BeyondTrust (Bomgar) TRUE
12 screenconnect.clientservice.exe ConnectWise Control TRUE
13 screenconnect.windowsclient.exe ConnectWise Control TRUE
14 dwrcs.exe Dameware TRUE
15 distant-desktop.exe Distant Desktop TRUE
16 dwagsvc.exe DW Service TRUE
17 g2comm.exe GoToMyPC TRUE
18 g2fileh.exe GoToMyPC TRUE
19 g2host.exe GoToMyPC TRUE
20 g2mainh.exe GoToMyPC TRUE
21 g2printh.exe GoToMyPC TRUE
22 g2svc.exe GoToMyPC TRUE
23 g2tray.exe GoToMyPC TRUE
24 gopcsrv.exe GoToMyPC TRUE
25 ROMServer.exe LiteManager TRUE
26 ROMFUSClient.exe LiteManager TRUE
27 lmiignition.exe LogMeIn TRUE
28 lmiguardiansvc.exe LogMeIn TRUE
29 logmein*.exe LogMeIn TRUE
30 awrem32.exe PCAnywhere Client TRUE
31 awhost32.exe PCAnywhere Server TRUE
32 PCMonitorManager.exe Pulseway TRUE
33 pcmonitorsrv.exe Pulseway TRUE
34 radmin3.exe RAdmin TRUE
35 famitrfc.exe RAdmin TRUE
36 rutserv.exe RemoteUtilities TRUE
37 smpcsetup.exe ShowMyPC TRUE
38 showmypc*.exe ShowMyPC TRUE
39 strwinclt.exe Splashtop TRUE
40 supremo.exe Supremo TRUE
41 supremohelper.exe Supremo TRUE
42 supremosystem.exe Supremo TRUE
43 teamviewer_desktop.exe TeamViewer Desktop TRUE
44 teamviewer.exe TeamViewer Service TRUE
45 teamviewer_service.exe TeamViewer Service TRUE
46 winvnc.exe VNC TRUE
47 vncviewer.exe VNC TRUE
48 winvncsc.exe VNC TRUE
49 winwvc.exe VNC TRUE
50 Zaservice.exe Zoho Assist TRUE
51 Zohours.exe Zoho Assist TRUE
52 ZohoMeeting.exe Zoho Assist TRUE
+7
View File
@@ -0,0 +1,7 @@
description: A list of Remote Access Software
filename: remote_access_software.csv
name: remote_access_software
default_match: 'false'
match_type: WILDCARD(remote_software)
min_matches: 1
case_sensitive_match: 'false'
@@ -0,0 +1,13 @@
name: Windows Autostart Execution LSASS Driver Registry Modification Unit Test
tests:
- name: Windows Autostart Execution LSASS Driver Registry Modification
file: endpoint/windows_autostart_execution_lsass_driver_registry_modification.yml
pass_condition: '| stats count | where count > 0'
earliest_time: -24h
latest_time: now
attack_data:
- file_name: windows-sysmon.log
data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1547.008/atomic_red_team/windows-sysmon.log
source: XmlWinEventLog:Microsoft-Windows-Sysmon/Operational
sourcetype: xmlwineventlog
update_timestamp: true
@@ -0,0 +1,13 @@
name: Windows DLL Search Order Hijacking Hunt Unit Test
tests:
- name: Windows DLL Search Order Hijacking Hunt
file: endpoint/windows_dll_search_order_hijacking_hunt.yml
pass_condition: '| stats count | where count > 0'
earliest_time: -24h
latest_time: now
attack_data:
- file_name: windows-sysmon.log
data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1574.001/atomic_red_team/windows-sysmon.log
source: XmlWinEventLog:Microsoft-Windows-Sysmon/Operational
sourcetype: xmlwineventlog
update_timestamp: true
@@ -0,0 +1,13 @@
name: Windows DLL Search Order Hijacking Hunt with Sysmon Unit Test
tests:
- name: Windows DLL Search Order Hijacking Hunt with Sysmon
file: endpoint/windows_dll_search_order_hijacking_hunt_with_sysmon.yml
pass_condition: '| stats count | where count > 0'
earliest_time: -24h
latest_time: now
attack_data:
- file_name: windows-sysmon.log
data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1574.001/atomic_red_team/windows-sysmon.log
source: XmlWinEventLog:Microsoft-Windows-Sysmon/Operational
sourcetype: xmlwineventlog
update_timestamp: true
@@ -0,0 +1,13 @@
name: Windows Remote Access Software Hunt Unit Test
tests:
- name: Windows Remote Access Software Hunt
file: endpoint/windows_remote_access_software_hunt.yml
pass_condition: '| stats count | where count > 0'
earliest_time: -24h
latest_time: now
attack_data:
- file_name: windows-sysmon.log
data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1219/atomic_red_team/windows-sysmon.log
source: XmlWinEventLog:Microsoft-Windows-Sysmon/Operational
sourcetype: xmlwineventlog
update_timestamp: true