Skip to content

Commit

Permalink
Sync RTA
Browse files Browse the repository at this point in the history
  • Loading branch information
protectionsmachine committed Oct 21, 2024
1 parent d0225c3 commit 181c5a6
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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!")


Expand Down
40 changes: 40 additions & 0 deletions rta/linux_defense_evasion_proxy_execution_via_tcpdump.py
Original file line number Diff line number Diff line change
@@ -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())

0 comments on commit 181c5a6

Please sign in to comment.