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

Commit

Permalink
fixed responder is not starting #162
Browse files Browse the repository at this point in the history
  • Loading branch information
mh4x0f committed Jan 3, 2017
1 parent 5774392 commit 7161770
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Expand Up @@ -8,7 +8,7 @@ Version 0.8.4
- added tables for logging plugins HTTP-request, PumpkinProxy, HTTP-auth
- fixed set the application GUI style QStyleFactory #151
- added enable/disable Wireless Security WPA Shared Key on Settings Tab

- fixed responder is not starting #162
Version 0.8.3
-------------
- added new design main tool
Expand Down
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -34,7 +34,6 @@ refer to the wiki for [Installation](https://github.com/P0cL4bs/WiFi-Pumpkin/wik
* Phishing Manager
* Partial Bypass HSTS protocol
* Support beef hook
* Mac Changer
* ARP Poison
* DNS Spoof
* Patch Binaries via MITM
Expand Down
1 change: 1 addition & 0 deletions core/config/commits/Lcommits.cfg
Expand Up @@ -9,6 +9,7 @@ master:
{ changelog : 'added tables for logging plugins HTTP-request, PumpkinProxy, HTTP-auth' },
{ changelog : 'fixed set the application GUI style QStyleFactory #151' },
{ changelog : 'added enable/disable Wireless Security WPA Shared Key on Settings Tab' },
{ changelog : 'fixed responder is not starting #162' },
]

WiFiPumpkin083:
Expand Down
8 changes: 2 additions & 6 deletions core/main.py
Expand Up @@ -993,9 +993,7 @@ def Stop_PumpAP(self):
self.EditGateway.setEnabled(True)
self.selectCard.setEnabled(True)
self.EditChannel.setEnabled(True)
self.editPasswordAP.setEnabled(True)
self.WPAtype_spinbox.setEnabled(True)
self.wpa_pairwiseCB.setEnabled(True)
self.GroupApPassphrase.setEnabled(True)
self.PumpSettingsTAB.GroupDHCP.setEnabled(True)
self.PopUpPlugins.tableplugins.setEnabled(True)
self.PopUpPlugins.tableplugincheckbox.setEnabled(True)
Expand Down Expand Up @@ -1246,9 +1244,7 @@ def Start_PumpAP(self):
self.EditGateway.setEnabled(False)
self.selectCard.setEnabled(False)
self.EditChannel.setEnabled(False)
self.editPasswordAP.setEnabled(False)
self.WPAtype_spinbox.setEnabled(False)
self.wpa_pairwiseCB.setEnabled(False)
self.GroupApPassphrase.setEnabled(False)
self.PumpSettingsTAB.GroupDHCP.setEnabled(False)
self.PopUpPlugins.tableplugins.setEnabled(False)
self.PopUpPlugins.tableplugincheckbox.setEnabled(False)
Expand Down
1 change: 1 addition & 0 deletions plugins/external/Responder/Responder.py
Expand Up @@ -22,6 +22,7 @@
from utils import *
import struct
import sys
import time

banner()

Expand Down

2 comments on commit 7161770

@mh4x0f
Copy link
Member Author

@mh4x0f mh4x0f commented on 7161770 Jan 4, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this error is not this commit, I'll fix now.

@mh4x0f
Copy link
Member Author

@mh4x0f mh4x0f commented on 7161770 Jan 4, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cbogithub I fixed , try now

Please sign in to comment.