List Open Egress Ports via .NET TcpClient Class#

Metadata#

platform

Windows

contributors

Roberto Rodriguez @Cyb3rWard0g,MSTIC R&D

creation date

2022-04-26

modification date

2022-04-26

Tactics

TA0007

Techniques

T1016

Description#

A threat actor might want to know what ports are open outbound on a system via .NET TcpClient class.

Run Simulation#

Get OAuth Access Token#

from msal import PublicClientApplication
import requests
import time

function_app_url = "https://FUNCTION_APP_NAME.azurewebsites.net"

tenant_id = "TENANT_ID"
public_client_app_id = "KATANA_CLIENT_APP_ID"
server_app_id_uri = "api://" + tenant_id + "/cloudkatana"
scope = server_app_id_uri + "/user_impersonation"

app = PublicClientApplication(
    public_client_app_id,
    authority="https://login.microsoftonline.com/" + tenant_id
)
result = app.acquire_token_interactive(scopes=[scope])
bearer_token = result['access_token']

Set Azure Function Orchestrator#

endpoint = function_app_url + "/api/orchestrators/Orchestrator"

Prepare HTTP Body#

data = [{'RequestId': '15013cfc-0b89-444c-9350-498135e29f36', 'name': 'List Open Egress Ports via .NET TcpClient Class', 'metadata': {'creationDate': '2022-04-26', 'modificationDate': '2022-04-26', 'description': 'A threat actor might want to know what ports are open outbound on a system via .NET TcpClient class.\n', 'contributors': ['Roberto Rodriguez @Cyb3rWard0g', 'MSTIC R&D'], 'mitreAttack': [{'technique': 'T1016', 'tactics': ['TA0007']}]}, 'steps': [{'schema': 'atomic', 'id': '5e67981f-3f9b-4ea8-8b22-81d6edcf594b', 'name': 'List Open Egress Ports via .NET TcpClient Class', 'metadata': {'creationDate': '2022-04-26', 'modificationDate': '2022-04-26', 'description': 'A threat actor might want to know what ports are open outbound on a system via .NET TcpClient class.\n', 'contributors': ['Roberto Rodriguez @Cyb3rWard0g', 'MSTIC R&D'], 'mitreAttack': [{'technique': 'T1016', 'tactics': ['TA0007']}]}, 'execution': {'type': 'ScriptModule', 'platform': 'WindowsHybridWorker', 'executor': 'PowerShell', 'module': {'name': 'invoke-atomicredteam', 'function': 'Invoke-AtomicTest'}, 'parameters': {'AtomicTechnique': ['T1016']}}, 'file_name': 'list_open_egress_ports_via_.net_tcpclient_class', 'number': 1}]}]

Send HTTP Request#

http_headers = {'Authorization': 'Bearer ' + bearer_token, 'Accept': 'application/json','Content-Type': 'application/json'}
results = requests.get(endpoint, json=data, headers=http_headers, stream=False).json()

time.sleep(30)

Explore Output#

query_status = requests.get(results['statusQueryGetUri'], headers=http_headers, stream=False).json()
query_results = query_status['output']
query_results