Skip to content

Commit e0789b2

Browse files
committed
Fixed scanning bugs
1 parent 3ffd2f4 commit e0789b2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Fern-Wifi-Cracker/core/fern.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
from gui.main_window import *
2424

25-
__version__ = 3.13
25+
__version__ = 3.14
2626

2727

2828
#

Fern-Wifi-Cracker/core/variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# WPS Variables
1313
#
14-
wps_functions = object() # Instance of WPS class
14+
wps_functions = object() # Instance of WPS class
1515

1616

1717
#

Fern-Wifi-Cracker/core/wpa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class wpa_attack_dialog(QtWidgets.QDialog,Ui_attack_panel):
2222
client_is_there_signal = QtCore.pyqtSignal()
2323
client_not_in_list_signal = QtCore.pyqtSignal()
2424
update_word_signal = QtCore.pyqtSignal('QString')
25-
update_progressbar_signal = QtCore.pyqtSignal()
25+
update_progressbar_signal = QtCore.pyqtSignal()
2626
update_speed_signal = QtCore.pyqtSignal('QString')
2727
wpa_key_found_signal = QtCore.pyqtSignal()
2828
deauthenticating_signal = QtCore.pyqtSignal()

Fern-Wifi-Cracker/execute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def install_prerequsites():
12-
modules = {"scapy":"scapy","PyQt5":"pyqt5"}
12+
modules = {"scapy":"scapy","PyQt5":"pyqt5","csv":"csv"}
1313

1414
for name in modules.keys():
1515
try:

0 commit comments

Comments
 (0)