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 scanner_class = TcpScanner
finger_classes = [SMBFinger, SSHFinger, PingScanner, HTTPFinger, MySQLFinger, ElasticFinger] 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 SSHExploiter, ShellShockExploiter, SambaCryExploiter, # Linux
ElasticGroovyExploiter, # multi ElasticGroovyExploiter, # multi
] ]

View File

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

View File

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