Live data from Hacker News

Viewing profile — 0d0a

0d0a

HN member
Joined
Thu, Nov 25, 2021, 8:48 AM UTC
HN karma
100
Public activity
17 items

About 0d0a

No profile information was provided.

Recent public activity

  1. 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…

  2. 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…

  3. story
  4. 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…

  5. 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…

  6. 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.

  7. 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…

  8. 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…

  9. 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…

  10. comment
  11. 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…

  12. comment
    Comment #36607301

    https://nevesnunes.github.io/blog/ Reverse engineering, debugging, and some silly contraptions.

  13. 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…

  14. 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…

  15. 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…

  16. story
  17. 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…