Disconnect3d

Results 562 comments of Disconnect3d
trafficstars

Hi, thanks for reporting this. I guess we could just cache the donloaded file either until the debugging session ends or until the next stop (I guess the former is......

Ugh, does this still happen? Any chance u can test it out again on latest dev branch @pdamian ?

Hi, I am not sure what does these two do, I think they may cause the issue: ``` -ex 'set record full stop-at-limit off' -ex 'target record-full' ``` Does the...

Can we just do something like: `with asm_demangle_on(): info symbol ...` in `symbol.get` and make the demangling always work? (we can also make this configurable like pwndbg-demangle-symbols or sth)

I'm not sure why doesn't colors get added to logger; would be nice if someone investigated that. Adding 'help wanted' flag.

`info program` outputs: 1. After `si`: ``` pwndbg> info program Using the running image of child Thread 0x7ffff7fd1040 (LWP 14009). Program stopped at 0x555555559852. It stopped after being stepped. Type...

Maybe there is some way to determine the stop reason via QEMU special packets that can be invoked via `maintenance packet ...`? * https://sourceware.org/gdb/onlinedocs/gdb/General-Query-Packets.html * https://sourceware.org/gdb/onlinedocs/gdb/Remote-Protocol.html#Remote-Protocol * https://sourceware.org/gdb/onlinedocs/gdb/Stop-Reply-Packets.html#Stop-Reply-Packets It seems...

Hm... if we do it, then any `vmmap` command or context display may call to `pthread_self()` via the `pwndbg.gdblib.tls.address`. Of course we can cache/memoize this but the question is if...

Sure, but the `tls` command or tls base address is needed less often than getting vmmaps itself. Btw I usually fetched the TLS address by using the `canary` command and...

Btw what else is stored in that page? Is all of that TLS?