Disconnect3d

Results 494 comments of Disconnect3d

FWIW the `gdb.set_convenience_variable` API function was added in GDB 8.2. This can be seen in 8.2 release notes: * https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=blob_plain;f=gdb/NEWS;hb=gdb-8.2-release * or by checking up the versions the exact commit...

@arcz any chance you can provide a minimal PoC, e.g. one written in C so we can make this A) easier to develop, B) actually a test case in our...

There are two options: 1) use GDBs pagination 2) use GDB command's repeat feature, when you hit to repeat the command and get its output for e.g. further addresses. We...

@gsingh93 > what do you think about my comments above about option 1 and 2 Regarding option 1 - which is using GDB pagination - I think we should drop...

Hi, mind sharing an example binary for this?

Btw what does `show arch` in GDB show for u? Is `mips:isa64` it? Or is it different one? ``` pwndbg> set architecture mips mips mips:4100 mips:5900 mips:isa32r2 mips:loongson_2f mips:10000 mips:4111...

Fwiw i had to compile my own binary, via `mips64-linux-gnuabi64-gcc a.c` and ran it via `qemu-mips64 -L /usr/mips64-linux-gnuabi64/ -g 1234 ./a.out` but I am getting a totally different error (which...

If we are on this, what kind of information are we gathering here? Is it only whether we hit a particular line or is it the number of hits? Or:...

We spoke about this on Discord, but I will document this here as well. This fails because `gdb-pt-dump` that Pwndbg rely on looks for the `qemu-system` process PID in here:...

Yes, this works now with `set resolve-heap-via-heuristic on`. There are still some improvements we can make to this, but it should generally work in more cases than in GEF afaik.