35 lines
914 B
Python
35 lines
914 B
Python
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
# or more contributor license agreements. Licensed under the Elastic License
|
|
# 2.0; you may not use this file except in compliance with the Elastic License
|
|
# 2.0.
|
|
|
|
from . import common
|
|
from . import RtaMetadata
|
|
|
|
|
|
metadata = RtaMetadata(
|
|
uuid="775ffaa8-7a44-490b-b13d-1bfa2100b1ae",
|
|
platforms=["windows"],
|
|
endpoint=[
|
|
{"rule_name": "CrashDump Disabled via Registry Modification", "rule_id": "77ca3fcc-f607-45e0-837e-e4173e4ffc2a"}
|
|
],
|
|
siem=[],
|
|
techniques=["T1112"],
|
|
)
|
|
|
|
|
|
@common.requires_os(*metadata.platforms)
|
|
def main():
|
|
common.log("Temporarily disabling CrashDump...")
|
|
|
|
key = "System\\CurrentControlSet\\Control\\CrashControl"
|
|
value = "CrashDumpEnabled"
|
|
data = "0"
|
|
|
|
with common.temporary_reg(common.HKLM, key, value, data):
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exit(main())
|