Report only url in shellshock

This commit is contained in:
Itay Mizeretz 2017-10-15 18:04:39 +03:00
parent 484ed3c508
commit 02b02e43bb
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class ShellShockExploiter(HostExploiter):
exploitable_urls = [url for url in exploitable_urls if url[0] is True]
# we want to report all vulnerable URLs even if we didn't succeed
self._exploit_info['vulnerable_urls'] = exploitable_urls
self._exploit_info['vulnerable_urls'] = [url[1] for url in exploitable_urls]
# now try URLs until we install something on victim
for _, url, header, exploit in exploitable_urls: