Giter Site home page Giter Site logo

Comments (2)

sventek-s avatar sventek-s commented on May 9, 2024 1

Figured it out, so you need to place a clause where someone should first figure out the version glibc they are using: ldd --version, then proceed to code at line 90 and rename the member name of size of struct malloc_chunk according to the glibc version.

GlibC code repo of different versions

# before
gdb.parse_and_eval("((struct malloc_chunk)*{}).size".format(hex(current_chunk_address)))

# after my case glibc version 2.27
gdb.parse_and_eval("((struct malloc_chunk)*{}).mchunk_size".format(hex(current_chunk_address)))

from exim-rce-cve-2018-6789.

martinclauss avatar martinclauss commented on May 9, 2024

Hey! :) Sorry for the late reply ;) I haven't touched the repo in 3 years but it's on my TODO list to update everything that it works again. Thanks for your solution! I will integrate it ;) Cheers, Martin

from exim-rce-cve-2018-6789.

Related Issues (2)

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.