Remove unsafe exploits from default config

This commit is contained in:
Itay Mizeretz 2017-10-04 15:25:34 +03:00
parent 8ecb895244
commit f9206ff817
3 changed files with 3 additions and 7 deletions

View File

@ -144,7 +144,7 @@ class Configuration(object):
scanner_class = TcpScanner
finger_classes = [SMBFinger, SSHFinger, PingScanner, HTTPFinger, MySQLFinger, ElasticFinger]
exploiter_classes = [SmbExploiter, WmiExploiter, RdpExploiter, Ms08_067_Exploiter, # Windows exploits
exploiter_classes = [SmbExploiter, WmiExploiter, # Windows exploits
SSHExploiter, ShellShockExploiter, SambaCryExploiter, # Linux
ElasticGroovyExploiter, # multi
]

View File

@ -32,8 +32,6 @@
"SSHExploiter",
"SmbExploiter",
"WmiExploiter",
"RdpExploiter",
"Ms08_067_Exploiter",
"ShellShockExploiter",
"ElasticGroovyExploiter",
"SambaCryExploiter",

View File

@ -33,14 +33,14 @@ SCHEMA = {
"enum": [
"RdpExploiter"
],
"title": "RdpExploiter"
"title": "RdpExploiter (UNSAFE)"
},
{
"type": "string",
"enum": [
"Ms08_067_Exploiter"
],
"title": "Ms08_067_Exploiter"
"title": "Ms08-067 Exploiter (UNSAFE)"
},
{
"type": "string",
@ -380,8 +380,6 @@ SCHEMA = {
"default": [
"SmbExploiter",
"WmiExploiter",
"RdpExploiter",
"Ms08_067_Exploiter",
"SSHExploiter",
"ShellShockExploiter",
"SambaCryExploiter",