fixed process init hostapd duplicated

This commit is contained in:
mh4x0f 2020-11-15 21:34:09 -03:00
parent eda88243a6
commit ec283e93b8
2 changed files with 3 additions and 3 deletions

View File

@ -25,6 +25,7 @@ All notable changes to this project will be documented in this file.
- fixed settings dhcp for allow to change dhcp configuration
- fixed error when execute from github actions
- fixed set restport by default 1337
- fixed process init hostapd duplicated
## [Released]

View File

@ -215,9 +215,8 @@ class PumpkinShell(Qt.QObject, ConsoleUI):
if ctr_name != "wireless_controller":
ctr_instance.Start()
self.threads["RogueAP"].insert(0, self.wireless_controller.ActiveReactor)
self.threads["RogueAP"].insert(1, self.dhcp_controller.ActiveReactor)
self.threads["RogueAP"].insert(2, self.dns_controller.ActiveReactor)
self.threads["RogueAP"].insert(0, self.dhcp_controller.ActiveReactor)
self.threads["RogueAP"].insert(1, self.dns_controller.ActiveReactor)
self.threads["RogueAP"].extend(self.proxy_controller.ActiveReactor)
self.threads["RogueAP"].extend(self.mitm_controller.ActiveReactor)