Merge pull request #343 from VakarisZ/web_rce_bugfix

bug in web_rce fixed
This commit is contained in:
VakarisZ 2019-06-11 14:56:39 +03:00 committed by GitHub
commit 7068a77a61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -210,6 +210,7 @@ class WebRCE(HostExploiter):
for url in urls: for url in urls:
if self.check_if_exploitable(url): if self.check_if_exploitable(url):
self.add_vuln_url(url) self.add_vuln_url(url)
self.vulnerable_urls.append(url)
if stop_checking: if stop_checking:
break break
if not self.vulnerable_urls: if not self.vulnerable_urls: