Skip to content

Commit

Permalink
Fixed scanning bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
savio-code committed Mar 10, 2022
1 parent 3ffd2f4 commit e0789b2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Fern-Wifi-Cracker/core/fern.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from gui.main_window import *

__version__ = 3.13
__version__ = 3.14


#
Expand Down
2 changes: 1 addition & 1 deletion Fern-Wifi-Cracker/core/variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
# WPS Variables
#
wps_functions = object() # Instance of WPS class
wps_functions = object() # Instance of WPS class


#
Expand Down
2 changes: 1 addition & 1 deletion Fern-Wifi-Cracker/core/wpa.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class wpa_attack_dialog(QtWidgets.QDialog,Ui_attack_panel):
client_is_there_signal = QtCore.pyqtSignal()
client_not_in_list_signal = QtCore.pyqtSignal()
update_word_signal = QtCore.pyqtSignal('QString')
update_progressbar_signal = QtCore.pyqtSignal()
update_progressbar_signal = QtCore.pyqtSignal()
update_speed_signal = QtCore.pyqtSignal('QString')
wpa_key_found_signal = QtCore.pyqtSignal()
deauthenticating_signal = QtCore.pyqtSignal()
Expand Down
2 changes: 1 addition & 1 deletion Fern-Wifi-Cracker/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def install_prerequsites():
modules = {"scapy":"scapy","PyQt5":"pyqt5"}
modules = {"scapy":"scapy","PyQt5":"pyqt5","csv":"csv"}

for name in modules.keys():
try:
Expand Down

0 comments on commit e0789b2

Please sign in to comment.