Viewing profile — 0d0a
0d0a
HN member- Joined
- Thu, Nov 25, 2021, 8:48 AM UTC
- HN karma
- 100
- Public activity
- 17 items
- HN profile
- View on Hacker News ↗
About 0d0a
No profile information was provided.
Recent public activity
-
comment
Comment #45410978
Exactly, it misses out on explaining how the fixed Huffman table is interpreted to apply symbol and distance codes, or how dynamic tables are derived from the input itself. Sure it…
-
comment
Comment #41576034
Even if it doesn't use block-based compression, if there isn't a huge range of corrupted bytes, corruption offsets are usually identifiable, as you will quickly end up with invalid…
- story
-
comment
Comment #37788171
Can you give some examples? When batching data, you benefit from picking something like io_uring. But for two-way communication, you still need to notify either side when data is r…
-
comment
Comment #37537565
Nice, I'll give it a closer look. My only concern so far is memory hooking (still needed for hardware registers), which on Java side was called by FilteredMemoryState [1]. In memst…
-
comment
Comment #37473334
I think it's closer to the 2A03. Unless I missed something, there isn't any support implemented for binary-coded decimal mode.
-
comment
Comment #37473291
Thanks, but I think I'm going to disappoint you: the demo is using pre-recorded manual inputs, which are then replayed when emulating in Ghidra. The only logic involved is checking…
-
comment
Comment #37473203
From what I've seen, it's usually read at the vblank interrupt. The input recording has entries in format " ". If I press a button and it's read from the hardware register after le…
-
comment
Comment #37472871
Nice to see another CTF enjoyer :) I've always thought about using Ghidra for vm challenges, but I'm still not sure if it fits the typical timeframe. Although I never used it, some…
- comment
-
story
Show HN: Ghidra Plays Mario
I've been exploring new ways of testing Ghidra processor modules. In this repo, I was able to emulate NES ROMs in Ghidra to test its 6502 specification, which resulted in finding a…
-
comment
Comment #36607301
https://nevesnunes.github.io/blog/ Reverse engineering, debugging, and some silly contraptions.
-
comment
Comment #35369557
Oh nice, it wasn't clear from the test suite if that was the case, I'll give it a closer look. Judging from the python scripts, it seems to expect a whole binutils toolchain (so no…
-
comment
Comment #35354206
I'm also writing a processor module, and reading this is a bit encouraging to eventually write about it once it's finished. Getting off the ground wasn't the hardest part so far. Y…
-
comment
Comment #35354132
> There's a discouragment the comes in the RE community that to be useful at all you need to be able to write your own exotic packer decoders Unless you are talking about obfuscate…
- story
-
comment
Comment #29339654
This tool served as a base for a fun project of mine [0], which consisted on injecting arbitrary bytes to a deflate stream without affecting the decompression output. The main idea…