Giter Club home page Giter Club logo

Comments (3)

skysider avatar skysider commented on July 1, 2024 1

@qrzbing , I plan to set PWNTOOLS_VERSION environment in build action as pwntools is not stable

from pwndocker.

itewqq avatar itewqq commented on July 1, 2024

Maybe it's better to checkout to beta branch? The default branch is dev and had caused some problems to me lol

git clone https://github.com.cnpmjs.org/Gallopsled/pwntools.git
cd ./pwntools
git checkout beta
cd ..
pip install --upgrade --editable ./pwntools
pip list | grep pwntools
# pwntools 4.8.0b0

from pwndocker.

qrzbing avatar qrzbing commented on July 1, 2024

Hi, I think we can do a easy check and upgarde pwntools. I wrote a personal Dockerfile based on this repo, and update pwntools by instruction below:

RUN pwntools_update=$(pip show pwntools | grep Version | awk -F, '{print substr($1, 10, 3)}' | awk -v num1=$1 -v num2=4.8 'BEGIN{print(num1<num2)?"1":"0"}') && \
    if [ $pwntools_update -eq 1 ]; then python3 -m pip install -U --no-cache-dir pwntools==4.8.0b0; fi && \
    unset pwntools_update && \

and I hope a easier way to update it, or this repo author can update his script.

from pwndocker.

Related Issues (15)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.