diff --git a/CHANGELOG b/CHANGELOG index 9ed64a1..6ce86aa 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -31,6 +31,7 @@ Version 0.8.7 - fixed DHCP settings unchangeable after first starting #471 - fixed DHCP configuration file for pyDHCPServer and IscDHCPServer #475 - fixed Insert html code into js and css files PumpkiProxy #463 +- fixed Error when enabled website clone and IP #469 Version 0.8.5 ------------- diff --git a/core/config/commits/Lcommits.cfg b/core/config/commits/Lcommits.cfg index 10742c4..7a39f68 100644 --- a/core/config/commits/Lcommits.cfg +++ b/core/config/commits/Lcommits.cfg @@ -22,6 +22,7 @@ master: { changelog : 'fixed DHCP settings unchangeable after first starting #471'}, { changelog : 'fixed DHCP configuration file for pyDHCPServer and IscDHCPServer #475'}, { changelog : 'fixed Insert html code into js and css files PumpkiProxy #463'}, + { changelog : 'fixed Error when enabled website clone and IP #469'}, ] diff --git a/modules/servers/PhishingManager.py b/modules/servers/PhishingManager.py index c8d1826..20e03b6 100644 --- a/modules/servers/PhishingManager.py +++ b/modules/servers/PhishingManager.py @@ -230,11 +230,8 @@ def start_server(self): self.btn_stop_template.setEnabled(True) self.ServerHTTPLoad.setObjectName('THread::: HTTP Clone') self.ServerHTTPLoad.start() - self.ServerHTTPLoad.sleep(5) - a = urlopen('http://{}:{}'.format(str(self.txt_redirect.text()),self.BoxPort.value())) - if a.getcode() == 200: - self.StatusServer(True) - self.emit(QtCore.SIGNAL('Activated( QString )'),'started') + self.StatusServer(True) + self.emit(QtCore.SIGNAL('Activated( QString )'),'started') elif self.check_server.isChecked(): self.DirectoryPhishing(Path=str(self.EditDirectory.text()))