mirror of
https://github.com/shadow1ng/fscan.git
synced 2026-09-24 20:21:52 +08:00
feat: 增加POP3扫描
This commit is contained in:
+7
-1
@@ -96,13 +96,19 @@ func init() {
|
||||
Ports: []int{25, 465, 587},
|
||||
ScanFunc: Plugins.SmtpScan,
|
||||
})
|
||||
|
||||
|
||||
Common.RegisterPlugin("imap", Common.ScanPlugin{
|
||||
Name: "IMAP",
|
||||
Ports: []int{143, 993}, // 143是标准端口,993是SSL端口
|
||||
ScanFunc: Plugins.IMAPScan,
|
||||
})
|
||||
|
||||
Common.RegisterPlugin("pop3", Common.ScanPlugin{
|
||||
Name: "POP3",
|
||||
Ports: []int{110, 995}, // POP3和POP3S端口
|
||||
ScanFunc: Plugins.POP3Scan,
|
||||
})
|
||||
|
||||
Common.RegisterPlugin("rdp", Common.ScanPlugin{
|
||||
Name: "RDP",
|
||||
Ports: []int{3389},
|
||||
|
||||
Reference in New Issue
Block a user