• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

Reverse Engineering gdbgui v0.15 - Browser-based frontend to gnu debugger

Status
Not open for further replies.

itsMe

*KillmeMories*
Staff member
Administrator
Super Moderator
Hacker
Specter
Crawler
Shadow
Joined
Jan 8, 2019
Messages
56,612
Solutions
2
Reputation
32
Reaction score
100,454
Points
2,313
Credits
32,640
‎6 Years of Service‎
 
76%
gdbgui_animation.gif


gdb (gnu debugger) allows you to see what is going on ‘inside’ another program while it executes — or what another program was doing at the moment it crashed. It is widely distributed and used but is terminal-based which does not always let you get a full picture of what the program is doing without looking up lots of commands.

gdbgui (gdb GUI, or Graphical User Interface, pronounced gee-dee-bee goo-ee) utilizes gdb to build a frontend based off of all the amazing things gdb can do. gdbgui is powerful, easy to use, supplement to gdb. It is open source and free.

Changelog v0.15

This release is focused mostly on Python 3.9 compatibility and updating dependencies

    Support only Python 3.9 (though other Python versions may still work)
    Build gdbgui as a pex executable.
        These are executable Python environments that are self-contained with the exception of requiring a specific Python version installed in the environment running the executable. The pex executables should have better compatibility than PyInstaller executables, which sometimes have missing shared libraries depending on the operating system.
    Use only the threading async model for flask-socketio. No longer support gevent or eventlet.
    [bugfix] Catch exception if gdb used in tty window crashes instead of gdbgui crashing along with it
    Disable pagination in gdb tty by default. It can be turned back on with set pagination on.
    Upgrade various dependencies for both the backend and frontend (Python and JavaScript)
    Display gdbgui version in “about” and “session information”


To see this hidden content, you must like this content.
 
Status
Not open for further replies.
Back
Top