Agent: Use http_ports from exploiter options in WebRCE

This commit is contained in:
Ilija Lazoroski 2022-02-23 17:28:06 +01:00 committed by Shreya Malviya
parent b859b8820f
commit 87547c4da1
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class WebRCE(HostExploiter):
"win32": self.options["dropper_target_path_win_32"],
"win64": self.options["dropper_target_path_win_64"],
}
self.HTTP = [str(port) for port in self._config.HTTP_PORTS]
self.HTTP = [str(port) for port in self.options["http_ports"]]
self.vulnerable_urls = []
self.target_url = None