frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering

https://github.com/bethington/ghidra-mcp
56•xerzes•3h ago•18 comments

Show HN: Craftplan – I built my wife a production management tool for her bakery

https://github.com/puemos/craftplan
340•deofoo•2d ago•78 comments

Show HN: BPU – An embedded scheduler for stable UART pipelines

5•DenisDolya•2d ago•0 comments

Show HN: Octosphere, a tool to decentralise scientific publishing

https://octosphere.social/
55•crimsoneer•17h ago•26 comments

Show HN: Sandboxing untrusted code using WebAssembly

https://github.com/mavdol/capsule
74•mavdol04•20h ago•21 comments

Show HN: C discrete event SIM w stackful coroutines runs 45x faster than SimPy

https://github.com/ambonvik/cimba
59•ambonvik•18h ago•16 comments

Show HN: Safe-now.live – Ultra-light emergency info site (<10KB)

https://safe-now.live
181•tinuviel•1d ago•90 comments

Show HN: Yutovo – visual online and desktop calculator inside a text editor

https://yutovo.com
3•denprog•3h ago•0 comments

Show HN: Latex-wc – Word count and word frequency for LaTeX projects

https://www.piwheels.org/project/latex-wc/
8•sethbarrettAU•1d ago•3 comments

Show HN: PII-Shield – Log Sanitization Sidecar with JSON Integrity (Go, Entropy)

https://github.com/aragossa/pii-shield
16•aragoss•18h ago•9 comments

Show HN: Ec – a terminal Git conflict resolver inspired by IntelliJ

https://github.com/chojs23/ec
7•neozz•10h ago•0 comments

Show HN: I built "AI Wattpad" to eval LLMs on fiction

https://narrator.sh/llm-leaderboard
28•jauws•17h ago•30 comments

Show HN: Adboost – A browser extension that adds ads to every webpage

https://github.com/surprisetalk/AdBoost
121•surprisetalk•1d ago•127 comments

Show HN: OpenClaw Assistant – Replace Google Assistant with Any AI

https://github.com/yuga-hashimoto/OpenClawAssistant
2•YugaHashimoto•7h ago•0 comments

Show HN: Librediffusion: C++ / CUDA Reimplementation of StreamDiffusion

https://github.com/jcelerier/librediffusion
3•jcelerier•8h ago•0 comments

Show HN: difi – A Git diff TUI with Neovim integration (written in Go)

https://github.com/oug-t/difi
44•oug-t•21h ago•47 comments

Show HN: Reimplementing PyTorch from scratch (MLP, CNN) to learn the internals

https://github.com/geyuxu/nn-from-scratch
3•geyuxu•13h ago•1 comments

Show HN: Real-world speedrun timer that auto-ticks via vision on smart glasses

https://github.com/RealComputer/GlassKit/tree/main/examples/rokid-rfdetr
3•tash_2s•14h ago•1 comments

Show HN: Randomly discovered websites from the open internet every 60 minutes

https://randcrawl.com/
2•whothatcodeguy•9h ago•0 comments

Show HN: Minikv – Distributed key-value and object store in Rust (Raft, S3 API)

https://github.com/whispem/minikv
67•whispem•1d ago•36 comments

Show HN: Mementomori.club – We All Die. Don't Lose Track

https://mementomori.club
5•titusblair•10h ago•2 comments

Show HN: AnsiColor, resilient ANSI color codes for your TUI

https://ansicolor.com
3•gurgeous•11h ago•0 comments

Show HN: Wikipedia as a doomscrollable social media feed

https://xikipedia.org
434•rebane2001•2d ago•141 comments

Show HN: Emmtrix ONNX-to-C Code Generator for Edge AI Deployment

https://github.com/emmtrix/emx-onnx-cgen
6•emx-can•16h ago•0 comments

Show HN: I built an AI twin recruiters can interview

https://chengai.me/
2•Charlie112•11h ago•3 comments

Show HN: NanoClaw – “Clawdbot” in 500 lines of TS with Apple container isolation

https://github.com/gavrielc/nanoclaw
518•jimminyx•2d ago•222 comments

Show HN: ÆTHRA – Writing Music as Code

103•CzaxTanmay•5d ago•33 comments

Show HN: A skill for agents to work with the JJ VCS

https://github.com/danverbraganza/jujutsu-skill
2•nvader•13h ago•0 comments

Show HN: Apate API mocking/prototyping server and Rust unit test library

https://github.com/rustrum/apate
32•rumatoest•3d ago•21 comments

Show HN: Open-source semantic search over your local notes via CLI

https://github.com/chenxin-yan/nia-vault
9•jellyotsiro•1d ago•3 comments
Open in hackernews

Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering

https://github.com/bethington/ghidra-mcp
54•xerzes•3h ago

Comments

xerzes•3h ago
Hi HN,

I built this because reverse engineering software across multiple versions is painful. You spend hours annotating functions in version 1.07, then version 1.08 drops and every address has shifted — all your work invisible.

The core idea is a normalized function hashing system. It hashes functions by their logical structure — mnemonics, operand categories, control flow — not raw bytes or absolute addresses. When a binary is recompiled or rebased, the same function produces the same hash. All your documentation (names, types, comments) transfers automatically.

Beyond that, it's a full MCP bridge with 110 tools for Ghidra: decompilation, disassembly, cross-referencing, annotation, batch analysis, and headless/Docker deployment. It integrates with Claude, Claude Code, or any MCP-compliant client.

For context, the most popular Ghidra MCP server (LaurieWired's, 7K+ stars) has about 15 tools. This started as a fork of that project but grew into 28,600 lines of substantially different code.

Architecture:

  Java Ghidra Plugin (22K LOC) → embeds HTTP server inside Ghidra
  Python MCP Bridge (6.5K LOC) → 110 tools with batch optimization
  Any MCP client → Claude, scripts, CI pipelines
I validated the hashing against Diablo II — dozens of patch versions, each rebuilding DLLs at different base addresses. The hash registry holds 154K+ entries, and I can propagate 1,300+ function annotations from one version to the next automatically.

The headless mode runs in Docker (docker compose up) for batch processing and CI integration — no GUI required.

v2.0.0 adds localhost-only binding (security), configurable timeouts, label deletion tools, and .env-based configuration.

Happy to discuss the hashing approach, MCP protocol design decisions, or how this fits into modern RE workflows.

nunobrito•1h ago
Thank you for sharing, will soon try out. Does it support decompilation of android binaries?
babas•46m ago
How does this compare to ReVa? https://github.com/cyberkaida/reverse-engineering-assistant

I think your installation instructions are incomplete. I followed the instructions and installed via file -> install in the project view. Restarted. But GhidraMCP is not visible in Tools after opening a binary.

xnorswap•2h ago
Have you had any issues with models "refusing" to do reverse engineering work?
MadnessASAP•47m ago
From my experience, OpenAI Codex loves reverse engineering work. In one case it did a very thorough job of disassembling a 8051 MCUs firmware and how it spoke to its attached LCD controller.

Another (semi-related) project, given the manufacturers of above MCUs proprietary flashing SDK, it found the programmers firmware, extracted the decryption key from the updating utility, decrypted the firmware and accompanying flashing software and is currently tracing the necessary signals to use an Arduino as a programmer.

So not only is it willing, it's actually quite good at it. My thinking is that reverse engineering is a lot of pattern recognition and not a lot of "original thinking". I.e. the agent doesn't need to come up with anything new, just recognise what already exists.

jakozaur•1h ago
Funny coincidence, I'm working on a benchmark showcasing AI capabilities in binary analysis.

Actually, AI has huge potential for superhuman capabilities in reverse engineering. This is an extremely tedious job with low productivity. Currently reserved, primarily when there is no other option (e.g., malware analysis). AI can make binary analysis go mainstream for proactive audits to secure against supply-chain attacks.

rustyhancock•1h ago
Thank you for sharing this, it's a a huge amount of work and I now know how I'll be spending this weekend!
wombat23•1h ago
Super interesting.

Last week-end I was exploring the current possibilities of automated Ghidra analysis with Codex. My first attempt derailed quickly, but after giving it the pyghidra documentation, it reliably wrote Python scripts that would alter data types etc. exactly how I wanted, but based on fixed rules.

My next goal would be to incorporate LLM decisions into the process, e.g. let the LLM come up with a guess at a meaningful function name to make it easier to read, stuff like that. I made a skill for this functionality and let Codex plough through in agentic mode. I stopped it after a while as I was not sure what it was doing, and I didn't have more time to work on it since. I would need to do some sanity checks on the ones it has already renamed.

Would be curious what workflows others have already devised? Is MCP the way to go?

Is there a place where people discuss these things?

longtermop•1h ago
Very cool project! The MCP surface area here (110 tools) is a great example of why tool-output validation is becoming critical.

When an AI agent interacts with binary analysis tools, there are two injection vectors worth considering:

1. *Tool output injection* — Malicious binaries could embed prompt injection in strings/comments that get passed back to the LLM via MCP responses

2. *Indirect prompt injection via analyzed code* — Attackers could craft binaries where the decompiled output contains payloads designed to manipulate the agent

For anyone building MCP servers that process untrusted content (like binaries, web pages, or user-generated data), filtering the tool output before it reaches the model is a real gap in most setups.

(Working on this problem at Aeris PromptShield — happy to share attack patterns we've seen if useful)

JasonADrury•1h ago
I thought MCP interfaces with high amounts of tools perform much worse than MCP interfaces with fewer tools, this doesn't seem like a great design.

This also seems to just be vibecoded garbage.

stared•1h ago
Interesting to see Ghidra here!

A friend from work just used it (with Claude) to hack River Ride game (https://quesma.com/blog/ghidra-mcp-unlimited-lives/).

Inspired by the, I have it a try as well. While I have no prior experience with reverse engineering, I ported an old game from PowerPC to Apple Silicon.

First, including a few MCPs with Claude Code (including LaurieWired/GhidraMCP you forked from, and https://github.com/jtang613/GhidrAssistMCP). Yet, the agent fabricated as lot of code, instead for translating it from source.

I ended up using headless mode directly in Cursor + GPT 5.2 Codex. The results were the best.

Once I get some time, will share a write-up.

s-macke•7m ago
I’ve also been playing around with reverse engineering, and I’m very impressed. It turns out that Codex with GPT-5.2 is better at reverse engineering than Claude.

For example, Codex can completely reverse-engineer this 1,300-line example [0] of a so-called C64-SID file within 30 minutes, without any human interaction.

I am working on a multi-agent system that can completely reverse-engineer C64 games.

[0] https://gist.github.com/s-macke/595982d46d6699b69e1f0e051e7b...

summarity•1h ago
Ive been using it (the original 15 tool version) for months now. It’s amazing. Any app is suddenly “open source”. I can track down bugs. Get a deeper understanding of any tool, and even write plug-ins or preload shims that mod any app. It’s like I finally actually _own_ the software I bought years ago.

For objective C heavy code, I also use Hopper Disassembler (which now has a built in MCP server).

Some related academic work (full recompilation with LLMs and Ghidra): https://dl.acm.org/doi/10.1145/3728958

junon•56m ago
Talking about RE'ing applications and equating that to OSS is not a good look when you work at GitHub...
randomtoast•56m ago
Now we just need to choose a game and run Claude Code with Ghidra MCP in a loop until the game is completely decompiled.
tarasyarema•26m ago
Simple question: why not a cli instead? As seems that lately LLM and agentic tools seems to be better at using clis rather than bloated MCPs?
NicuCalcea•18m ago
I think they're only better for CLI tools that are in the training data. If it's a new tool, you'd need to dump the full documentation in the context either way.