-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync RTA Potential Proxy Execution via Crash (#4175)
Co-authored-by: shashank-elastic <[email protected]> (cherry picked from commit fb4bc72)
- Loading branch information
1 parent
7283509
commit cad1ded
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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="fa40fdc4-23bf-491c-bc55-6a6848c5b6da", | ||
platforms=["linux"], | ||
endpoint=[ | ||
{ | ||
"rule_name": "Potential Proxy Execution via Crash", | ||
"rule_id": "995c8bdb-5ebb-4c5b-9a03-4d39b52c0ff3", | ||
}, | ||
], | ||
techniques=["T1218", "T1059"], | ||
) | ||
|
||
|
||
@common.requires_os(*metadata.platforms) | ||
def main() -> None: | ||
common.log("Creating a fake executable..") | ||
masquerade = "/tmp/crash" | ||
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, '-h', masquerade, '-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()) |