Tiny PEP8 change and changed reporting of vulnerable URLs in shellshock
This commit is contained in:
parent
30cb88f01d
commit
91427eb346
|
@ -208,6 +208,6 @@ class ShellShockExploiter(HostExploiter):
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def report_vuln_shellshock(host, url):
|
def report_vuln_shellshock(host, url):
|
||||||
from control import ControlClient
|
from control import ControlClient
|
||||||
ControlClient.send_telemetry('exploit', {'result': False, 'machine': host.__dict__,
|
ControlClient.send_telemetry('exploit', {'vulnerable': True, 'machine': host.__dict__,
|
||||||
'exploiter': ShellShockExploiter.__name__,
|
'exploiter': ShellShockExploiter.__name__,
|
||||||
'url': url})
|
'url': url})
|
||||||
|
|
Loading…
Reference in New Issue