We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d03c67 commit f16e07cCopy full SHA for f16e07c
nettacker/core/app.py
@@ -264,7 +264,6 @@ def scan_target(
264
):
265
options = copy.deepcopy(self.arguments)
266
267
- socket.socket, socket.getaddrinfo = set_socks_proxy(options.socks_proxy)
268
module = Module(
269
module_name,
270
options,
@@ -290,6 +289,8 @@ def scan_target(
290
289
def scan_target_group(self, targets, scan_id, process_number):
291
active_threads = []
292
log.verbose_event_info(_("single_process_started").format(process_number))
+ if self.arguments.socks_proxy:
293
+ socket.socket, socket.getaddrinfo = set_socks_proxy(self.arguments.socks_proxy)
294
total_number_of_modules = len(targets) * len(self.arguments.selected_modules)
295
total_number_of_modules_counter = 1
296
0 commit comments