feat: 增加IMAP扫描

This commit is contained in:
ZacharyZcR
2024-12-23 01:50:20 +08:00
parent 8f5d0caaf2
commit 7bded7bc31
7 changed files with 123 additions and 6 deletions
+6
View File
@@ -96,6 +96,12 @@ 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("rdp", Common.ScanPlugin{
Name: "RDP",