Nicolas IOOSS
Nicolas IOOSS
Hello, > Our ebpf module only has a little-endian variant. Your fix adds a register for endianness, but I'm not sure that's the best path forward. I initially thought that...
Thanks for your quick reply. I added support for loading big endian eBPF files in https://github.com/NationalSecurityAgency/ghidra/pull/7985/commits/232e87f5fed94fe10d0183476c80288ca90aafe3 and tested it with some programs. For information, I also tested instruction `LDDW` (load...
Hello, now that Ghidra 11.4 is released, should I rebase this Pull Request? Or would this interfere with the review?
I have rebased on top of tag [`Ghidra_11.4_build`](https://github.com/NationalSecurityAgency/ghidra/commit/aed1cf1c4e060af395af241f0e6027be783b9591).
Hi, would it be possible to know the status of the review? Thanks
Hello, Wouldn't it be easier to restore `self.stubbed_functions = {}`? ```python def remove_hooks(self): """Remove all hooked functions.""" for hook in self.stubbed_functions.values(): self.emu.hook_del(hook) self.stubbed_functions = {} ``` (or to use [`dict.clear`](https://docs.python.org/3/library/stdtypes.html#dict.clear)?)