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

Fix/pwntools #232

Merged
merged 3 commits into from
Sep 7, 2023
Merged
Changes from all commits
Commits
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
4 changes: 3 additions & 1 deletion sources/install/package_reverse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ function install_pwntools() {
# CODE-CHECK-WHITELIST=add-aliases,add-history
colorecho "Installing pwntools"
python -m pip install pwntools
python -m pip install pathlib2
# Downgrade pyelftools version because : https://github.com/Gallopsled/pwntools/issues/2260
python -m pip install pathlib2 pyelftools==0.29
python3 -m pip install pwntools
python3 -m pip install pyelftools==0.29
add-test-command "python -c 'import pwn'"
add-test-command "python3 -c 'import pwn'"
add-to-list "pwntools,https://github.com/Gallopsled/pwntools,a CTF framework and exploit development library"
Expand Down
Loading