forked from p34709852/monkey
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:
parent
004a543310
commit
1b4f1dba4e
|
@ -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
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue