Skip to content

Commit

Permalink
fixed enriched with yara to use the new file struc and also updated a…
Browse files Browse the repository at this point in the history
…ll yamls with new yaras
  • Loading branch information
josehelps committed Jul 27, 2023
1 parent 36078c1 commit dd48867
Show file tree
Hide file tree
Showing 157 changed files with 1,615 additions and 36 deletions.
35 changes: 27 additions & 8 deletions bin/enrich_with_yara.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import argparse
import os
import yaml
import re

# Parse command-line arguments
parser = argparse.ArgumentParser()
Expand All @@ -18,6 +19,15 @@
{"type": "sysmon_hash_block", "value": base_url + "detections/sysmon/sysmon_config_vulnerable_hashes_block.xml"}
]

# Define YARA rules files
yara_rules_files = [
"yara-rules_mal_drivers_strict.yar",
"yara-rules_vuln_drivers_strict_renamed.yar",
"yara-rules_vuln_drivers.yar",
"yara-rules_mal_drivers.yar",
"yara-rules_vuln_drivers_strict.yar"
]

# Loop through each YAML file in the directory
for file_name in os.listdir('yaml'):
if file_name.endswith('.yaml') or file_name.endswith('.yml'):
Expand All @@ -31,13 +41,23 @@
updated = False
for entry in yaml_data['KnownVulnerableSamples']:
sha256 = entry.get('SHA256')
if sha256:
yara_file_path = os.path.join('detections/yara', f'{sha256}.yara')
if os.path.exists(yara_file_path):
updated = True
if args.verbose:
print(f"Updating file: {file_path}")
yaml_data['Detection'].append({"type": "yara_signature", "value": base_url + yara_file_path})
if sha256:
for yara_file_name in yara_rules_files:
yara_file_path = os.path.join('detections/yara', yara_file_name)

# Load YARA rules from the file
with open(yara_file_path, 'r') as f:
yara_rules = f.read()

# Check if a rule exists for the specific sample
if re.search(f'{sha256}', yara_rules):
yara_link = {"type": "yara_signature", "value": base_url + yara_file_path}
if yara_link not in yaml_data['Detection']:
updated = True
if args.verbose:
print(f"Updating file: {file_path}")
yaml_data['Detection'].append(yara_link)
break

# Add specific sigma and sysmon rules to detections
yaml_data['Detection'].extend(sigma_rules)
Expand All @@ -47,4 +67,3 @@
if updated:
with open(file_path, 'w') as f:
yaml.dump(yaml_data, f, sort_keys=False)

10 changes: 10 additions & 0 deletions yaml/0258df5c-c3c1-4ed5-ba8f-846d91526ffe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: AsrDrv10.sys
MD5: 9b91a44a488e4d539f2e55476b216024
Expand Down
12 changes: 11 additions & 1 deletion yaml/043773c5-120a-4c6b-8485-8f1f5c47fd3e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,17 @@ Resources:
Acknowledgement:
Person: []
Handle: ''
Detection: []
Detection:
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: aswArPot.sys
MD5: c61876aaca6ce822be18adb9d9bd4260
Expand Down
10 changes: 10 additions & 0 deletions yaml/04d377f9-36e0-42a4-8d47-62232163dc68.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: iomem64.sys
MD5: 0898af0888d8f7a9544ef56e5e16354e
Expand Down
10 changes: 10 additions & 0 deletions yaml/0567c6c4-282f-406f-9369-7f876b899c25.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: procexp.Sys
MD5: e6cb1728c50bd020e531d19a14904e1c
Expand Down
10 changes: 10 additions & 0 deletions yaml/080ff223-f8e0-49c0-a7b5-e97349cf81a0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: HpPortIox64.sys
MD5: a641e3dccba765a10718c9cb0da7879e
Expand Down
12 changes: 11 additions & 1 deletion yaml/0e8da43d-92e0-43f9-bc34-50a7d15b34bd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,17 @@ Resources:
Acknowledgement:
Person: Michael Alfaro
Handle: '@_mmpte_software'
Detection: []
Detection:
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: etdsupp.sys
MD5: a92bf3c219a5fa82087b6c31bdf36ff3
Expand Down
10 changes: 10 additions & 0 deletions yaml/0f59ce3b-20ac-41ba-8010-2abc74827eb8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: cpuz.sys
MD5: c2eb4539a4f6ab6edd01bdc191619975
Expand Down
10 changes: 10 additions & 0 deletions yaml/10b1fc3d-c444-4885-8ca9-4b5891885507.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: atillk64.sys
MD5: 27d21eeff199ed555a29ca0ea4453cfb
Expand Down
10 changes: 10 additions & 0 deletions yaml/127cde1d-905e-4c67-a2c3-04ea4deaea7d.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_mal_drivers_strict.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: wantd_6.sys
MD5: 4b058945c9f2b8d8ebc485add1101ba5
Expand Down
12 changes: 11 additions & 1 deletion yaml/13637210-2e1c-45a4-9f76-fe38c3c34264.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,17 @@ Resources:
Acknowledgement:
Person: []
Handle: ''
Detection: []
Detection:
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: HpPortIox64.sys
MD5: 7b9e1e5e8ff4f18f84108bb9f7b5d108
Expand Down
10 changes: 10 additions & 0 deletions yaml/137daca4-0d7b-48aa-8574-f7eb6ad02526.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: speedfan.sys
MD5: 5f9785e7535f8f602cb294a54962c9e7
Expand Down
12 changes: 11 additions & 1 deletion yaml/13973a71-412f-4a18-a2a6-476d3853f8de.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,17 @@ Resources:
Acknowledgement:
Person: []
Handle: ''
Detection: []
Detection:
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: AMDRyzenMasterDriver.sys
MD5: f16b44cca74d3c3645e4c0a6bb5c0cb9
Expand Down
12 changes: 11 additions & 1 deletion yaml/16d8962b-cf96-432f-8a43-d41f06828f56.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,17 @@ Resources:
Acknowledgement:
Person: ''
Handle: ''
Detection: []
Detection:
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: cpuz.sys
MD5: a89ca92145fc330adced0dd005421183
Expand Down
10 changes: 10 additions & 0 deletions yaml/17cf4fac-88f1-467d-9f62-481d33accc5b.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: otipcibus.sys
MD5: d5a642329cce4df94b8dc1ba9660ae34
Expand Down
10 changes: 10 additions & 0 deletions yaml/19d16518-4aee-4983-ba89-dbbe0fa8a3e7.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: AsrRapidStartDrv.sys
MD5: 31469f1313871690e8dc2e8ee4799b22
Expand Down
10 changes: 10 additions & 0 deletions yaml/1ae6cfc4-ca70-4148-ba1c-e46cc6bfc548.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: kprocesshacker.sys
MD5: 1b5c3c458e31bede55145d0644e88d75
Expand Down
10 changes: 10 additions & 0 deletions yaml/1c6e1d3b-f825-4065-9e0c-83386883e40f.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@ Detection:
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
- type: yara_signature
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/yara/yara-rules_vuln_drivers_strict_renamed.yar
- type: sigma_hash
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers.yml
- type: sigma_names
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sigma/driver_load_win_vuln_drivers_names.yml
- type: sysmon_hash_detect
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes.xml
- type: sysmon_hash_block
value: https://github.com/magicsword-io/LOLDrivers/blob/main/detections/sysmon/sysmon_config_vulnerable_hashes_block.xml
KnownVulnerableSamples:
- Filename: rzpnk.sys
MD5: 4cc3ddd5ae268d9a154a426af2c23ef9
Expand Down
Loading

0 comments on commit dd48867

Please sign in to comment.