Agent: Change the order of COMMON_PORTS

COMMON_PORTS should be ordered with the the most likely to succeed ports
first.
This commit is contained in:
Mike Salvatore 2022-09-16 08:16:46 -04:00
parent 004a543310
commit 1b4f1dba4e
1 changed files with 4 additions and 4 deletions

View File

@ -1,15 +1,15 @@
from typing import List
COMMON_PORTS: List[int] = [
8080, # http-proxy
3306, # mysql
3389, # Windows Terminal Server (RDP)
8888, # sun-answerbook
1025, # NFS, IIS
1433, # Microsoft SQL Server
1434, # Microsoft SQL Monitor
1720, # h323q931
1723, # Microsoft PPTP VPN
3306, # mysql
3389, # Windows Terminal Server (RDP)
5900, # vnc
6001, # X11:1
8080, # http-proxy
8888, # sun-answerbook
]