From 181c5a62348b438d8cc500160d4e8c6226420393 Mon Sep 17 00:00:00 2001 From: protectionsmachine <72879786+protectionsmachine@users.noreply.github.com> Date: Mon, 21 Oct 2024 11:58:53 +0000 Subject: [PATCH] Sync RTA --- ...l_ip_address_arg_from_hidden_executable.py | 3 ++ ...nse_evasion_proxy_execution_via_tcpdump.py | 40 +++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 rta/linux_defense_evasion_proxy_execution_via_tcpdump.py diff --git a/rta/linux_command_and_control_ip_address_arg_from_hidden_executable.py b/rta/linux_command_and_control_ip_address_arg_from_hidden_executable.py index d00086710d5..1c3973f7903 100644 --- a/rta/linux_command_and_control_ip_address_arg_from_hidden_executable.py +++ b/rta/linux_command_and_control_ip_address_arg_from_hidden_executable.py @@ -31,8 +31,11 @@ def main() -> None: commands = [masquerade, "netcon", "-h", "8.8.8.8", "-p", "53"] common.execute([*commands], timeout=5, kill=True) + common.log("Cleaning...") + common.remove_file(masquerade) + common.log("Simulation successfull!") diff --git a/rta/linux_defense_evasion_proxy_execution_via_tcpdump.py b/rta/linux_defense_evasion_proxy_execution_via_tcpdump.py new file mode 100644 index 00000000000..5e38099bc9f --- /dev/null +++ b/rta/linux_defense_evasion_proxy_execution_via_tcpdump.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="04c7ac98-3d40-4472-b9bf-996d2a31d227", + platforms=["linux"], + endpoint=[ + { + "rule_name": "Potential Proxy Execution via Tcpdump", + "rule_id": "b1d81dfe-93d7-4d7d-827d-5def574e8cda", + }, + ], + techniques=["T1218", "T1059"], +) + + +@common.requires_os(*metadata.platforms) +def main() -> None: + common.log("Creating a fake executable..") + masquerade = "/tmp/tcpdump" + + 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, '-W', '-w', '-z'] + common.execute([*commands], timeout=5, kill=True) + common.log("Cleaning...") + common.remove_file(masquerade) + common.log("Simulation successfull!") + + +if __name__ == "__main__": + sys.exit(main())