Add port scanners, better scanning, geo location

This commit is contained in:
Astatin3
2024-04-17 21:46:53 -06:00
parent 65807d0f38
commit 753f9f7742
9 changed files with 494 additions and 223 deletions
+23 -3
View File
@@ -27,9 +27,29 @@ def init(moduleMaster):
mm.vars['Scanner-Settings'] = {
"range": [[0,0,0,0], [255,255,255,255]],
"numJobs": 50,
"maxPingTimeout": 3,
"output": "./data/scan.txt"
"numJobs": 500,
"maxPingTimeout": 1,
# Port modes:
# -1: Disable
# 1: Specify Ports
# 2: Top N most common ports
# 3: Related to word
"tcpSettings": {
"mode": 1,
"ports": [443]
# "topCount": 100
# "relatedString": "http"
},
"udpSettings": {
"mode": -1,
# "ports": [631, 161, 137, 123, 138]
"topCount": 50
# "relatedString": "telnet"
},
"runTCP": True,
"runUDP": False
}
mm.addPageEventListener('Scanner-LoadSettings', loadSettings)