Agent: Add more well-known ports

This commit is contained in:
Mike Salvatore 2022-09-16 08:27:42 -04:00
parent 1b4f1dba4e
commit 54f1bd2197
1 changed files with 9 additions and 3 deletions

View File

@ -2,14 +2,20 @@ from typing import List
COMMON_PORTS: List[int] = [ COMMON_PORTS: List[int] = [
8080, # http-proxy 8080, # http-proxy
3306, # mysql 8008, # Alternative port for HTTP
3389, # Windows Terminal Server (RDP) 3389, # Windows Terminal Server (RDP)
8888, # sun-answerbook
1025, # NFS, IIS 1025, # NFS, IIS
3306, # mysql
5985, # Windows PowerShell Default psSession port
5986, # Windows PowerShell Default psSession port
5000, # A bunch of different stuff (unofficial)
5432, # PostgreSQL
1723, # Microsoft PPTP VPN
6600, # Microsoft Hyper-V Live
8888, # sun-answerbook
1433, # Microsoft SQL Server 1433, # Microsoft SQL Server
1434, # Microsoft SQL Monitor 1434, # Microsoft SQL Monitor
1720, # h323q931 1720, # h323q931
1723, # Microsoft PPTP VPN
5900, # vnc 5900, # vnc
6001, # X11:1 6001, # X11:1
] ]