Skip to content

Commit

Permalink
Merge pull request trustedsec#588 from jeffmcjunkin/patch-14
Browse files Browse the repository at this point in the history
crackmapexec: Stop hardcoding exact Python3 version
  • Loading branch information
HackingDave authored Apr 25, 2022
2 parents f9e3033 + bfa5571 commit a70d1ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/post-exploitation/crackmapexec.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
FEDORA="git"

# COMMANDS TO RUN AFTER
AFTER_COMMANDS="cd {INSTALL_LOCATION},rm -rf crackmapexec,git clone --recursive https://github.com/byt3bl33d3r/CrackMapExec crackmapexec,cd {INSTALL_LOCATION}crackmapexec,python3.7 -m pip install -r requirements.txt,python3.7 setup.py install"
AFTER_COMMANDS="cd {INSTALL_LOCATION},rm -rf crackmapexec,git clone --recursive https://github.com/byt3bl33d3r/CrackMapExec crackmapexec,cd {INSTALL_LOCATION}crackmapexec,python3 -m pip install -r requirements.txt,python3 setup.py install"

# AUTOMATIC LAUNCH
LAUNCHER="crackmapexec"
Expand Down

0 comments on commit a70d1ba

Please sign in to comment.