Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Save checked-for-existance commands inside a list to avoid rechecking them more than once #141

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f7faf28
* Make cracked.txt a configurable variable
Sep 2, 2018
2ebfb13
* Fixed any_pmkid -> all_pmkid (to decide that we are strictly using …
Sep 3, 2018
4ece1d4
* Fixed any_pmkid -> all_pmkid (to decide that we are strictly using …
Sep 3, 2018
3292d3d
Merge remote-tracking branch 'origin/master'
Sep 3, 2018
2fb0966
Making an FR from the TODO
Sep 3, 2018
5f3713d
Allow the user to specify how much time to wait for the PMKID capture
Sep 3, 2018
1f6371b
Merge https://github.com/derv82/wifite2
Sep 3, 2018
e6735ad
Allow the user to specify how much time to wait for the PMKID capture
Sep 3, 2018
17b7094
Allow the user to specify how much time to wait for the PMKID capture
Sep 3, 2018
63cb293
Merge remote-tracking branch 'origin/master'
Sep 3, 2018
09a38b2
Merge remote-tracking branch 'origin/master'
Sep 3, 2018
9633867
Merge remote-tracking branch 'origin/master'
Sep 4, 2018
900ee1b
Merge remote-tracking branch 'origin/master'
Sep 4, 2018
84adebe
Merge remote-tracking branch 'origin/master'
Sep 4, 2018
d5bc6cd
Removed unnecessary imports
Sep 4, 2018
d157084
Save checked-for-existance commands inside a list to not check them o…
Sep 4, 2018
5b96659
Closes the color after the user input
Sep 4, 2018
6d52a2f
Simplified boolean var checks
Sep 4, 2018
8140563
The pythonic way to perform a bounds check
Sep 5, 2018
cf193ba
Few minor corrections
Sep 5, 2018
d739d67
Added hcxtools installation to dockerfile
Sep 5, 2018
a26e41f
Avoid unresolved reference error when 4way not cracked
Sep 6, 2018
64d3ac0
Don't attempt to access the existing_cammands if the config not initi…
Sep 6, 2018
0645d4d
Merged WPS commit
Sep 10, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merged WPS commit
WhiteOnBlackCode committed Sep 10, 2018
commit 0645d4db909dddaf9d02636041bc4696a7fde6b3
5 changes: 2 additions & 3 deletions wifite/model/target.py
Original file line number Diff line number Diff line change
@@ -137,10 +137,9 @@ def to_str(self, show_bssid=False):
color = 'R'
power = Color.s('{%s}%s' % (color, power))

wps = Color.s('{O} n/a')
if self.wps:
if self.wps == WPSState.UNLOCKED:
wps = Color.s('{G} yes')
elif not self.wps:
elif self.wps == WPSState.NONE:
wps = Color.s('{O} no')
elif self.wps == WPSState.LOCKED:
wps = Color.s('{R}lock')
5 changes: 3 additions & 2 deletions wifite/tools/airodump.py
Original file line number Diff line number Diff line change
@@ -17,8 +17,9 @@ class Airodump(Dependency):
dependency_name = 'airodump-ng'
dependency_url = 'https://www.aircrack-ng.org/install.html'

def __init__(self, interface=None, channel=None, encryption=None,
wps=False, target_bssid=None, output_file_prefix='airodump',
def __init__(self, interface=None, channel=None, encryption=None,\
wps=WPSState.UNKNOWN, target_bssid=None,
output_file_prefix='airodump',\
ivs_only=False, skip_wps=False, delete_existing_files=True):
'''Sets up airodump arguments, doesn't start process yet.'''

You are viewing a condensed version of this merge commit. You can view the full changes here.