forked from p15670423/monkey
Update config on island
This commit is contained in:
parent
243a255833
commit
48b5785ef8
|
@ -96,6 +96,20 @@ SCHEMA = {
|
||||||
"HTTPFinger"
|
"HTTPFinger"
|
||||||
],
|
],
|
||||||
"title": "HTTPFinger"
|
"title": "HTTPFinger"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"MySQLFinger"
|
||||||
|
],
|
||||||
|
"title": "MySQLFinger"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"ElasticFinger"
|
||||||
|
],
|
||||||
|
"title": "ElasticFinger"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -286,7 +300,9 @@ SCHEMA = {
|
||||||
"SMBFinger",
|
"SMBFinger",
|
||||||
"SSHFinger",
|
"SSHFinger",
|
||||||
"PingScanner",
|
"PingScanner",
|
||||||
"HTTPFinger"
|
"HTTPFinger",
|
||||||
|
"MySQLFinger",
|
||||||
|
"ElasticFinger"
|
||||||
],
|
],
|
||||||
"description": "Determines which classes to use for fingerprinting"
|
"description": "Determines which classes to use for fingerprinting"
|
||||||
},
|
},
|
||||||
|
@ -714,7 +730,9 @@ SCHEMA = {
|
||||||
80,
|
80,
|
||||||
8080,
|
8080,
|
||||||
443,
|
443,
|
||||||
8008
|
8008,
|
||||||
|
3306,
|
||||||
|
9200
|
||||||
],
|
],
|
||||||
"description": "List of TCP ports the monkey will check whether they're open"
|
"description": "List of TCP ports the monkey will check whether they're open"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue