feat: 增加SNMP扫描 增加UDP端口扫描

This commit is contained in:
ZacharyZcR
2024-12-23 02:59:59 +08:00
parent 9e8726e1f8
commit 3529efcb24
9 changed files with 158 additions and 7 deletions
+6
View File
@@ -109,6 +109,12 @@ func init() {
ScanFunc: Plugins.POP3Scan,
})
Common.RegisterPlugin("snmp", Common.ScanPlugin{
Name: "SNMP",
Ports: []int{161, 162}, // SNMP默认端口
ScanFunc: Plugins.SNMPScan,
})
Common.RegisterPlugin("rdp", Common.ScanPlugin{
Name: "RDP",
Ports: []int{3389},