Skip to content
This repository has been archived by the owner on Apr 19, 2020. It is now read-only.

Commit

Permalink
fixed Error when enabled website clone and IP #469
Browse files Browse the repository at this point in the history
  • Loading branch information
mh4x0f committed Mar 13, 2019
1 parent a4a71e5 commit 355e1e2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------------
Expand Down
1 change: 1 addition & 0 deletions core/config/commits/Lcommits.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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'},

]

Expand Down
7 changes: 2 additions & 5 deletions modules/servers/PhishingManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()))
Expand Down

0 comments on commit 355e1e2

Please sign in to comment.