From 6b7359bb129128e9e707b47c7ce6ef8468342cad Mon Sep 17 00:00:00 2001 From: protectionsmachine <72879786+protectionsmachine@users.noreply.github.com> Date: Fri, 27 Sep 2024 15:56:07 +0000 Subject: [PATCH] Sync RTA --- ...efense_evasion_process_injection_via_dd.py | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 rta/linux_defense_evasion_process_injection_via_dd.py diff --git a/rta/linux_defense_evasion_process_injection_via_dd.py b/rta/linux_defense_evasion_process_injection_via_dd.py new file mode 100644 index 00000000000..92744079204 --- /dev/null +++ b/rta/linux_defense_evasion_process_injection_via_dd.py @@ -0,0 +1,40 @@ +# 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. + +import sys + +from . import RtaMetadata, common + +metadata = RtaMetadata( + uuid="05170b5b-8030-4acd-b7c1-d6d1fe8bbd2d", + platforms=["linux"], + endpoint=[ + { + "rule_name": "Potential Process Injection via dd", + "rule_id": "38108046-32a6-407f-b5fd-6943ffdcdab0", + }, + ], + techniques=["T1620", "T1574", "T1106"], +) + + +@common.requires_os(*metadata.platforms) +def main() -> None: + common.log("Creating a fake executable..") + masquerade = "/tmp/dd" + source = common.get_path("bin", "linux.ditto_and_spawn") + common.copy_file(source, masquerade) + common.log("Granting execute permissions...") + common.execute(["chmod", "+x", masquerade]) + + commands = [masquerade, "if=foo", "of=/proc/pid/mem"] + common.execute([*commands], timeout=5, kill=True) + common.log("Cleaning...") + common.remove_file(masquerade) + common.log("Simulation successfull!") + + +if __name__ == "__main__": + sys.exit(main())