Skip to content

Commit

Permalink
move thread handlers on the bottom of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kimocoder committed Aug 19, 2023
1 parent d65a684 commit cbeba54
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions wifite/attack/pmkid.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,19 @@
# -*- coding: utf-8 -*-


from threading import Thread
import os
import time
import re
from shutil import copy
from ..model.attack import Attack
from ..config import Configuration
from ..tools.hashcat import HcxDumpTool, HcxPcapngTool, Hashcat
from ..util.color import Color
from ..util.timer import Timer
from ..model.pmkid_result import CrackResultPMKID
from ..tools.airodump import Airodump
from threading import Thread
from shutil import copy




Expand Down
2 changes: 1 addition & 1 deletion wifite/tools/aireplay.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
import os
import time
import re
from threading import Thread
from .dependency import Dependency
from ..config import Configuration
from ..util.process import Process
from ..util.timer import Timer
from threading import Thread



Expand Down
2 changes: 1 addition & 1 deletion wifite/tools/airodump.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import time
from .dependency import Dependency
from .tshark import Tshark
from .wash import Wash
#from .wash import Wash
from ..util.process import Process
from ..config import Configuration
from ..model.target import Target, WPSState
Expand Down
3 changes: 2 additions & 1 deletion wifite/tools/bully.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import time
import re
from threading import Thread
from .dependency import Dependency
from .airodump import Airodump
from ..model.attack import Attack
Expand All @@ -13,6 +12,8 @@
from ..util.timer import Timer
from ..util.process import Process
from ..config import Configuration
from threading import Thread



class Bully(Attack, Dependency):
Expand Down

0 comments on commit cbeba54

Please sign in to comment.