Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. ChatGPT turns 4 soon. We moved on from GPT but never let go of Chat(thinkingaloud.bearblog.dev)
    discuss
  2. A brief history of Windows scroll bar shortcuts(devblogs.microsoft.com/oldnewthing)
    discuss
  3. Squeezer – Use your idle Claude plan window to work through TODOs overnight(github.com/valk)
    discuss
  4. How to Use Self-Hosted AI Agent Sandboxes on Kubernetes(edera.dev)
    discuss
  5. What Makes Slop, Slop?(ampblog.substack.com)
    discuss
  6. Show HN: TTM – A chat app where AI agents are the users(ttmchat.com)
    discuss
  7. Apple = Sony (2012)(forrester.com)
    discuss
  8. Happy Oligarch Day as Trump-Aligned Billionaires Take over Hollywood(thebignewsletter.com)
    discuss
  9. Show HN: Voyager 1 could've lasted MUCH longer
    discuss
  10. Germany pledges to phase out fossil fuels for first time with target of 2045(theguardian.com)
    1comments
  11. There Is No Now(artemandreenko.com)
    1comments
  12. Re: Skillsync(news.ycombinator.com)
    discuss
  13. US preparing to ban exports of diesel fuel for 90 days(politico.com)
    1comments
  14. Repligraphs: A Primitive for AI Provenance(lukechampine.com)
    discuss
  15. UK to fight Russian disinformation and push new global AI standards Burnham says(bbc.com)
    discuss
  16. I Launched a Product by Accident(rightbadcode.com)
    discuss
  17. Show HN: Reflex – a GGUF/CUDA inference engine tuned for cold-start latency(github.com/lateos-ai)
    discuss
  18. Hacker News Site Layout
    2comments
  19. Ext-Turbovec: A Vector Index Inside Your PHP Process(mann.blog)
    discuss
  20. Muxly – Native Tmux for iPhone and iPad(muxly.sh)
    discuss
  21. Making Tailscale Faster(tailscale.com)
    discuss
  22. Not reading the code cannot become the new norm
    1comments
  23. Show HN: Crest – Answer Claude Code approvals from your MacBook's notch(crestnotch.app)
    discuss
  24. ApprenticeBench: Can AI agents learn a real job end to end?(neocognition.io)
    discuss
  25. Recursive self-improvement of AI research agents(arxiv.org)
    1comments
  26. Xbox Cuts Jobs, Moves Game Studios Under Activision (1)(bloomberglaw.com)
    discuss
  27. Show HN: Slop Mop, a Chrome extension that mops your LinkedIn feed(slopmop.lol)
    discuss
  28. UK military jamming other nations' satellites to defend itself, BBC told(bbc.com)
    discuss
  29. What I learned from building 50 side projects(smartsoft.lv)
    discuss
  30. Video Commander: The IDE for Video Engineers(video-commander.com)
    discuss

Show HN: Droid ASC – An On-Demand Android Decompiler, 41–269x Faster Than JADX

2 pointsby 1h agogithub.com
2 comments
A few days ago, I was using JADX MCP to analyze my phone, but JADX MCP was just too laggy. I had a large number of APKs to analyze, and nearly every one of them required spinning up a new JADX process. With just two or three of them, my computer ran out of memory. The efficiency was terribly low, so I came up with an idea and wrote a script.

I built a on-demand Android decompiler called Droid ASC. Literally dozens to hundreds of times faster than JADX, no exaggeration.

Here are the benchmark charts. I tested APKs across 4 orders of magnitude. For a ~50MB APK, a global cross reference index search takes 400ms, which is 41 times faster than JADX. For a 300MB APK, it takes only 1.79s, which is 269 times faster than JADX.

I have stopped using jadx mcp entirely. ASC can analyze dozens of APKs in parallel with no problem. Here is an experiment I ran: using GPT5.6 + ASC, with almost no human intervention, an automated pipeline ran for two days straight. It analyzed every APK with uid=1000 on my device, pulling in nearly 100 APK/JAR/APEX files. In the end it found one RCE vuln, one system uid arbitrary file write vuln, two vulnerabilities that can execute ROOT commands, and one SELinux restricted vulnerability that can execute ROOT commands. Pretty wild!

1h agoHN ↗

JADX's memory management has long been a serious problem, and many people in the mobile reverse engineering community have suffered from it. Hope this helps optimize everyone's reverse engineering pipeline.

2m agoHN ↗

This looks like exactly what I need. Have you considered adding MCP?