Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering
51–60 of 78 posts
Re: Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering
#52I haven't looked at the MCP server, but generally, reverse engineering with AI is quite underrated. I’ve had success extracting encryption keys from an android app that uses encryption to vendor-lock users by forcing them to use that specific app to open files that should otherwise be in an open format. By the way, this app had embedded the key into the shader, and it was required to actually run this shader on andro…
Re: Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering
#53I haven't looked at the MCP server, but generally, reverse engineering with AI is quite underrated. I’ve had success extracting encryption keys from an android app that uses encryption to vendor-lock users by forcing them to use that specific app to open files that should otherwise be in an open format. By the way, this app had embedded the key into the shader, and it was required to actually run this shader on andro…
Re: Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering
#54I haven't looked at the MCP server, but generally, reverse engineering with AI is quite underrated. I’ve had success extracting encryption keys from an android app that uses encryption to vendor-lock users by forcing them to use that specific app to open files that should otherwise be in an open format. By the way, this app had embedded the key into the shader, and it was required to actually run this shader on andro…
Oh that's clever. I don't suppose you can share more about how this was done?
Re: Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering
#55Re: Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering
#56Specifically the dynamic analysis skills could get a really big boost with this MCP server, I also wonder if this MCP server could be rephrased into a pure skill and not come with all the context baggage.
Re: Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering
#57Re: Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering
#58LLMs are very good at understanding decompiled code. I don't think people have updated on the fact that almost everything is effectively open source now!
Re: Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering
#59I used a different Ghidra MCP server (LaurieWired's) to, umm, liberate some software recently. I can’t express how fun straightforward it was to analyze the binary and generate a keygen. I learnt a ton in the progress. I highly recommend others do the same, it’s a really fun way of spending an evening. I will certainly be giving this MCP server a go.
Re: Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering
#60I'm working on a hobby project - reverse-engineering a 30 year old game. Passing a single function disassembly + Ghidra decompiler output + external symbol definitions RAG-style to an agent with a good system prompt does wonders even with inexpensive models such as Gemini 3 Flash.
Then chain decompilation agent outputs to a coding agent, and produced code can be semi-automatically integrated into the codebase. Rinse and repeat.
Decompiled code is wrong sometimes, but for cleaned up disassembly with external symbols annotated and correct function signatures - decompiled output looks more or less like it was written by a human and not mechanically decompiled.