Files
sigma-rules/rta/reg_mod_base64_executable.py
T
2023-10-03 10:47:58 -04:00

34 lines
855 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="ada7805f-e0e1-4633-952e-41f5bb392fdb",
platforms=["windows"],
endpoint=[],
siem=[{
'rule_id': '93c1ce76-494c-4f01-8167-35edfb52f7b1',
'rule_name': 'Encoded Executable Stored in the Registry'
}],
techniques=['T1112', 'T1140'],
)
@common.requires_os(*metadata.platforms)
def main():
key = "SOFTWARE\\Policies\\Test"
value = "Base64"
data = "TVqQAAMAAAAEAAAA"
with common.temporary_reg(common.HKLM, key, value, data):
pass
if __name__ == "__main__":
exit(main())