Results 123 issues of k4lizen

![image](https://github.com/VerySleepy/verysleepy/assets/124312252/59240c15-bbac-4811-b17c-920ec866937c) ![image](https://github.com/VerySleepy/verysleepy/assets/124312252/03fdcda3-8a12-4192-aee9-f9d92c3c5206) ![image](https://github.com/VerySleepy/verysleepy/assets/124312252/b267cc65-a849-4757-83e3-79f2b799a8c8) ![image](https://github.com/VerySleepy/verysleepy/assets/124312252/9b7d1ee6-dbd1-4ea4-bd5a-1330c4fcbb57) The highlighted line, and the line specified, is not actually the line in which the function is defined. I also suspect that the execution times may...

Decompile the binary attached with ghidra. [thewilderness.zip](https://github.com/NationalSecurityAgency/ghidra/files/15083527/thewilderness.zip) See ghidra output for function `run_code`: ![image](https://github.com/NationalSecurityAgency/ghidra/assets/124312252/0e12365a-75ce-4f34-98d9-42d09610b498) See dogbolt comparison: ![image](https://github.com/NationalSecurityAgency/ghidra/assets/124312252/4b01db79-9d68-495f-9374-61cc3cbc23f6) See gdb disassembly: ![image](https://github.com/NationalSecurityAgency/ghidra/assets/124312252/f2142633-d5d1-49d3-af1c-775cfcd13c2d) **Conclusion:** ghidra is cutting of because of the...

Feature: Processor/x86
Status: Internal

**Describe the bug** When the program is decompiled, an empty loop is shown, while the assembly shows that it is not empty. **To Reproduce** Steps to reproduce the behavior: 1....

Feature: Decompiler
Status: Triage

Closes #2369 + implement `process.maps` which is a wrapper around `util.proc.memory_maps` + calls on self.pid, parses string address field and permissions field + `get_mapping` function which finds mappings given a...

For the `process.libc` property/function, the logic is [currently](https://github.com/Gallopsled/pwntools/blob/dev/pwnlib/tubes/process.py#L940): ```python def libc(): # for lib, address in self.libs().items(): if 'libc.so' in lib or 'libc-' in lib: e = ELF(lib) e.address =...

bug
backport-required

The same way there is a way to get the address of shared libraries: [process.libs()](https://docs.pwntools.com/en/stable/tubes/processes.html#pwnlib.tubes.process.process.libs), which is currently implemented by inspecting `/proc//maps` [as linked in the docs](https://github.com/Gallopsled/pwntools/blob/f046fdd93e/pwnlib/tubes/process.py#L826-L861), it should be...

feature

### Description pwndbg hitting recursion limit while gdb works fine. CTF challenge zip: [the_wilderness.zip](https://github.com/pwndbg/pwndbg/files/15133514/the_wilderness.zip) Im using an older version of the sde than the challenge intended: https://www.intel.com/content/www/us/en/download/684897/784319/intel-software-development-emulator.html ### Steps to...

bug

### Description Why is `__dso_handle` shown here? ![image](https://github.com/pwndbg/pwndbg/assets/124312252/89d8ca37-1374-40d7-ad5f-5bb52f243624) ### Steps to reproduce [terminal.zip](https://github.com/pwndbg/pwndbg/files/14968910/terminal.zip) It's a binary from a ctf, so I don't have the source. It doesn't do anything elf-crafty...

bug

Some examples: https://docs.pwntools.com/en/dev/elf/elf.html#pwnlib.elf.elf.ELF.library https://docs.pwntools.com/en/dev/elf/elf.html#pwnlib.elf.elf.ELF.linker https://docs.pwntools.com/en/dev/elf/elf.html#pwnlib.elf.elf.ELF.maps Click/hover the `[source]` button and see that they all link to: https://github.com/Gallopsled/pwntools/blob/fe560c9835/pwnlib/elf/elf.py This is true for both dev as well as stable. ### Expected For...

bug
docs
backport-required

https://docs.pwntools.com/en/dev/elf/elf.html#pwnlib.elf.elf.ELF.maps https://docs.pwntools.com/en/dev/elf/elf.html#pwnlib.elf.elf.ELF.libs There might be more examples? This is true for both dev and stable. ### libs example In the docs: > address} for every library loaded for this ELF....

bug
docs
backport-required
good first issue