29 lines
790 B
Python
29 lines
790 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="76050b81-a8da-43d2-8a83-f18b31162b94",
|
|
platforms=["windows"],
|
|
endpoint=[
|
|
{"rule_name": "Suspicious Windows Explorer Execution", "rule_id": "f8ec5b76-53cf-4989-b451-7d16abec7298"}
|
|
],
|
|
siem=[],
|
|
techniques=["T1055", "T1036"],
|
|
)
|
|
|
|
|
|
@common.requires_os(metadata.platforms)
|
|
def main():
|
|
explorer = "C:\\Windows\\explorer.exe"
|
|
common.execute([explorer, "easyminerRTA"], timeout=1, kill=True)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exit(main())
|