Skip to content

Latest commit

 

History

History
72 lines (35 loc) · 1.88 KB

T1571.md

File metadata and controls

72 lines (35 loc) · 1.88 KB

T1571 - Non-Standard Port

Adversaries may communicate using a protocol and port paring that are typically not associated. For example, HTTPS over port 8088(Citation: Symantec Elfin Mar 2019) or port 587(Citation: Fortinet Agent Tesla April 2018) as opposed to the traditional port 443. Adversaries may make changes to the standard port used by a protocol to bypass filtering or muddle analysis/parsing of network data.

Atomic Tests


Atomic Test #1 - Testing usage of uncommonly used port with PowerShell

Testing uncommonly used port utilizing PowerShell. APT33 has been known to attempt telnet over port 8081. Upon execution, details about the successful port check will be displayed.

Supported Platforms: Windows

Inputs:

Name Description Type Default Value
port Specify uncommon port number String 8081
domain Specify target hostname String google.com

Attack Commands: Run with powershell!

Test-NetConnection -ComputerName #{domain} -port #{port}


Atomic Test #2 - Testing usage of uncommonly used port

Testing uncommonly used port utilizing telnet.

Supported Platforms: Linux, macOS

Inputs:

Name Description Type Default Value
port Specify uncommon port number String 8081
domain Specify target hostname String google.com

Attack Commands: Run with sh!

telnet #{domain} #{port}