mirror of
https://github.com/Astatin3/Auto-Shodanner.git
synced 2026-06-08 16:18:09 -06:00
Add port scanners, better scanning, geo location
This commit is contained in:
+23
-3
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user