Disconnect3d
Disconnect3d
Is this a bug? If I understand correctly, we have: 1. `mov rax, qword ptr [rip + 0x2ecc]` instruction 2. The `rip + 0x2ecc` is `0x7ffff7f8c5c0` and it is the...
Ah yes, since we had: `[rip + 0x2ecc]` and `[stdout@GLIBC_2.2.5]` then `rip+0x2ecc` must be the `stdout@GLIBC_2.2.5` which is indeed a pointer to stdout object in libc. So if 0x7ffff7f8c5c0 is...
We can add: $stack, $heap, $ldso, $vdso, $vvar. Not sure if any other are relevant (also not sure if vdso/vvar are :P)? They should probably be cached up until start...
Perhaps we should have separate functions file for syscall arguments data (vs glibc function arguments data)? Currently we blindly do this in `pwndbg/arguments.py`: ```py elif CS_GRP_INT in instruction.groups: # Get...
Fixed in https://github.com/pwndbg/pwndbg/pull/2926
Hi, can you provide more information? 1) Which manual do you use? I can see [this](https://www.doc.ic.ac.uk/lab/secondyear/spim/node10.html) saying `s8 or fp` and [this](https://wiki.osdev.org/MIPS_Overview) saying "The register name $s8 is a synonym...
EDIT: Eh, obviously "limit flags" are not there, but some limits are passed via `heap-dereference-limit`. Sorry for my confusion below. I believe such limit flags are already there: ``` dc@dc:~/pwndbg$...
Now, yeah, the `bins` (and maybe some other?) command does not have a `--limit` flag. Alternatively to adding such flag, we could extend the help string to inform about `heap-dereference-limit`...
@k4lizen is this still valid and needed? maybe we implemented it somehow? shall we close it?
I guess it should do the lookup earlier and bail out with an error message if it doesnt exist (?)