Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Google Beam expands to new countries(blog.google)
    discuss
  2. Brazil's Lula Campaign Dataset(huggingface.co)
    discuss
  3. Starbucks Korea CEO dismissed, what about startups?(2nd-look.vercel.app)
    discuss
  4. GitCaliber, swap github.com for gitcaliber.com to get a Git repo explained(gitcaliber.com)
    discuss
  5. Show HN: I made an app that transform your daily habits into a medieval(reddit.com)
    discuss
  6. City council can approve license plate cameras without you ever finding out(alprradar.com)
    discuss
  7. My relationship with AI: seductive, frustrating and always demanding vigilance(theguardian.com)
    discuss
  8. Dr Tricks Senior Dev N2 Taking Job W AI
    discuss
  9. If Carpenters Were Hired Like Programmers (2013)(archive.org)
    discuss
  10. My Story(github.com/sovereign-intel-founder)
    discuss
  11. The Unhired Index: Big Tech revenue-headcount trend suggests 185K missing hires(drorpoleg.com)
    2comments
  12. Security Debt: How Legacy Systems Increase Cyber Risk(cybrsecmedia.com)
    discuss
  13. How Apple uses faulty silicon to power fab new devices(cultofmac.com)
    discuss
  14. AOS GLM Language Engine – Beta Test(github.com/thepikey)
    discuss
  15. Ask HN: How do you test Lambda/ECS code before deploying?
    2comments
  16. Work, Wellbeing, and Choice: Empirical Lessons for AI Futures(arxiv.org)
    discuss
  17. Local AI News Feed(local-ai-signal.vercel.app)
    2comments
  18. The Fine-Grained City Needs an Operating System(courtyardurbanist.com)
    discuss
  19. Small Modular Reactors: a short history of a nuclear pipe dream(engelsbergideas.com)
    discuss
  20. LensVLM: Compressing long context as images, expanding only relevant pages(huggingface.co)
    discuss
  21. Ask HN: Do you offload your coding to AI, or keep your skills sharp?
    3comments
  22. Can internal model transparency tame the AI race?(karthiktadepalli.com)
    discuss
  23. The meta-harness for coding agents(soloterm.com)
    discuss
  24. Show HN: Jev-mice – mouse colony simulation using Jev and deterministic engine(carsonsweet.com)
    discuss
  25. Discover Solo: The Ultimate AI-Integrated Control Panel(master.dev)
    discuss
  26. Steam Frame Teardown(ifixit.com)
    discuss
  27. SpaceX Starshield(wikipedia.org)
    discuss
  28. Mexican Navy's tall ship Cuauhtémoc will be at the Embarcadero all week(kqed.org)
    discuss
  29. A Worthwhile Trade(nejm.org)
    discuss
  30. Loopjacking in A2A Implementations: Hijacking Human-in-the-Loop Approvals(adithyanak.com)
    discuss

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

2 pointsby 2h 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!

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

1h agoHN ↗

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