Skip to content

Commit

Permalink
Sync RTA Bind Shell via Netcat Traditional (#4182)
Browse files Browse the repository at this point in the history
Co-authored-by: shashank-elastic <[email protected]>

(cherry picked from commit 6d430be)
  • Loading branch information
protectionsmachine authored and github-actions[bot] committed Oct 23, 2024
1 parent a61b933 commit 2a183ad
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions rta/linux_execution_bind_shell_via_nc_traditional.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="bf3591fe-ea36-49e0-af0e-21e927ecfc88",
platforms=["linux"],
endpoint=[
{
"rule_name": "Bind Shell via Netcat Traditional",
"rule_id": "0fb019ab-98a0-487e-aa37-fabe5b69ec8a",
},
],
techniques=["T1059", "T1071"],
)


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

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, '-e', '-l', '-p', '/bin/sh']
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 2a183ad

Please sign in to comment.