Live data from Hacker News

Viewing profile — enoent

enoent

HN member
Joined
Thu, Mar 24, 2022, 9:13 PM UTC
HN karma
36
Public activity
21 items

About enoent

No profile information was provided.

Recent public activity

  1. comment
    Comment #48396006

    You read your chips' datasheets that go in detail on pinouts and protocols. You use logic analyzers that capture signals and programmatically decode a multitude of protocols from t…

  2. comment
    Comment #48254868

    Nice to see another static analysis tool. It looks like the compilation database is only used for discovering source files, without any additional cross translation unit analysis […

  3. comment
    Comment #48157775

    > Fraud detection in transaction data is mostly SQL. Not machine learning, not graph databases, not whatever Gartner is hyping this year. SQL, run against the right tables, with th…

  4. comment
    Comment #46730027

    The author is referring to limitations in analysing banking: > Ghidra supports the 8051 architecture but not code banking. Usually in these ISAs an I/O port or a register sets the …

  5. comment
    Comment #46447944

    Which drives and parameters for the READ BUF SCSI command yielded the expected 2366 bytes per sector? I imagine that it was combined with seeks to each sector before reading from t…

  6. comment
    Comment #46172295

    Nice work Dmitry, looking forward to read your next article. The later model Pixter Multimedia had the full memory space accessible via JTAG, which is how some carts and even boot …

  7. comment
    Comment #45653328

    For ARM (32-bit): https://alexaltea.github.io/unicorn.js/ or https://cpulator.01xz.net/ For other architectures, it feels like a missed opportunity to not have an independent WASM …

  8. comment
    Comment #45470496

    I found their ELF format specification to have a decent coverage, even if not completely exhaustive (e.g. some debug info isn't breakdown after a certain point, but it just might b…

  9. comment
    Comment #45411061

    https://bytecodeviewer.com/

  10. comment
    Comment #45112285

    Besides the implementation effort in building from scratch, it also opens you up to unknown unknowns, while the limitations of mature software are better defined. Just because Jeps…

  11. comment
    Comment #45099916

    Nice, also check these projects that target earlier versions: * Rust9x: Compile Rust code for Windows 95, NT and above: https://news.ycombinator.com/item?id=31112273 * Rust on MIPS…

  12. comment
    Comment #44374248

    Without discrediting the author, as it's always cool to share these findings, was anyone actively looking for this over 27 years? A lot of the times, it just happens that someone w…

  13. comment
    Comment #42844969

    Can you elaborate on that "little more work", given that resizing on demand isn't sufficient for this use-case, and predictive scaling is also out of the question?

  14. comment
    Comment #42838698

    AWS autoscaling does not take your application logic into account, which means that aggresive downscaling will, at worst, lead your applications to fail. I'll give a specific examp…

  15. comment
    Comment #40756915

    Sleep obfuscation seems to be viable because scanners only execute periodically. I'm not very familiar with Windows internals, but why don't these scanners hook the VirtualProtect …

  16. comment
    Comment #37151648

    x/w is a gdb command to dereference and print (x) 1 word-sized data (w) at the address given by the expression. So 0x08001ea1 was the unaligned address stored at $rsp + 8, passed a…

  17. comment
    Comment #36758524

    I wonder if MAME would work as an open-source alternative for these simulations. The built-in debugger and memory views cover most of that, and it doesn't take much to write a mini…

  18. story
  19. comment
    Comment #32739266

    Unfortunately, there's little curation of interesting debugging case studies or "debugmes". You can try to scavenge bug trackers, but they aren't optimized for this, just a bag of …

  20. comment
    Comment #31516867

    The implementation was not saving any of the ymm registers, you can see this in the bug report's attached patch. It also took me a while to get, because the last snippet in the wri…

  21. comment
    Comment #30795494

    Supposedly there's an easter egg in Windows CE's Solitaire [1] that has never managed to surface, beyond someone posting part of the credits text in a comment. No screenshots, vide…