Skip to content

Commit

Permalink
Sync RTA Potential Proxy Execution via Split (#4178)
Browse files Browse the repository at this point in the history
Co-authored-by: shashank-elastic <[email protected]>
  • Loading branch information
protectionsmachine and shashank-elastic authored Oct 23, 2024
1 parent fff957c commit 519a368
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions rta/linux_defense_evasion_proxy_execution_via_split.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# 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="529c5cfd-4ceb-43a1-a006-40e072e4906c",
platforms=["linux"],
endpoint=[
{
"rule_name": "Potential Proxy Execution via Split",
"rule_id": "0c63849b-2e23-4720-9608-0a402d093d3c",
},
],
techniques=["T1218", "T1059"],
)


@common.requires_os(*metadata.platforms)
def main() -> None:
common.log("Creating a fake executable..")
masquerade = "/tmp/split"
masquerade2 = "/tmp/sh"

source = common.get_path("bin", "linux.ditto_and_spawn")
common.copy_file(source, masquerade)
common.log("Granting execute permissions...")
common.execute(["chmod", "+x", masquerade])

source = common.get_path("bin", "linux.ditto_and_spawn")
common.copy_file(source, masquerade2)
common.log("Granting execute permissions...")
common.execute(["chmod", "+x", masquerade2])

commands = [masquerade, masquerade, '--filter=foo', '-c', 'whoami']
common.execute([*commands], timeout=5, kill=True)
common.log("Cleaning...")
common.remove_file(masquerade)
common.remove_file(masquerade2)
common.log("Simulation successfull!")


if __name__ == "__main__":
sys.exit(main())

0 comments on commit 519a368

Please sign in to comment.