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
Next Next commit
Added hcxtools installation to dockerfile
WhiteOnBlackCode committed Sep 5, 2018
commit d739d6734a8d76d2cd35de340babebcba469a0f8
10 changes: 9 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ RUN make install
# Workdir /
WORKDIR /

#Install and configure hashcat
# Install and configure hashcat
RUN mkdir hashcat && \
cd hashcat && \
wget https://hashcat.net/files_legacy/${HASHCAT_VERSION}.7z && \
@@ -54,6 +54,14 @@ RUN mkdir hashcat && \
#Add link for binary
RUN ln -s /hashcat/hashcat-cli64.bin /usr/bin/hashcat

# Install hcxtools
RUN git clone https://github.com/ZerBea/hcxtools.git
WORKDIR /hcxtools/
RUN make
RUN make install

# Workdir /
WORKDIR /

# Install reaver
RUN git clone https://github.com/gabrielrcouto/reaver-wps.git