cortado/rtas/attempt_to_establish_vscode.py (19 lines of code) (raw):

# 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 logging from . import OSType, RuleMetadata, _common, register_code_rta log = logging.getLogger(__name__) @register_code_rta( id="a078ecca-e8b8-4ae8-a76c-3238e74ca34d", name="attempt_to_establish_vscode", platforms=[OSType.LINUX], endpoint_rules=[ RuleMetadata(id="13fd98ce-f1c3-423f-9441-45c50eb462c0", name="Attempt to etablish VScode Remote Tunnel"), ], techniques=["T1102", "T1059"], ) def main() -> None: masquerade = "/tmp/code" source = _common.get_resource_path("bin/linux.ditto_and_spawn") _common.copy_file(source, masquerade) # Execute command log.info("Executing Fake commands to test Attempt to etablish VScode Remote Tunnel") _ = _common.execute_command([masquerade, "tunnel"], timeout_secs=10) # cleanup _common.remove_file(masquerade)