zlacker

[parent] [thread] 14 comments
1. ACCoun+(OP)[view] [source] 2025-12-06 13:55:23
If you aren't using LLMs for your reverse engineering tasks, you're missing out, big time. Claude kicks ass.

It's good at cleaning up decompiled code, at figuring out what functions do, at uncovering weird assembly tricks and more.

replies(3): >>ameliu+e5 >>keepam+Jd >>skerit+Qe
2. ameliu+e5[view] [source] 2025-12-06 14:43:29
>>ACCoun+(OP)
Makes sense because LLMs are quite good at translating between natural languages.

Anyway, we're reaching the point where documentation can be generated by LLMs and this is great news for developers.

replies(3): >>monsie+l8 >>james_+Da >>saagar+Oe
◧◩
3. monsie+l8[view] [source] [discussion] 2025-12-06 15:11:49
>>ameliu+e5
Maybe documentation meant for other llms to ingest. Their documentation is like their code, it might work, but I don't want to have to be the one to read it.

Although of course if you don't vibe document but instead just use them as a tool, with significant human input, then yes go ahead.

replies(1): >>dunham+5j
◧◩
4. james_+Da[view] [source] [discussion] 2025-12-06 15:28:10
>>ameliu+e5
I stumbled across a fun trick this week. After making some API changes, I had CC “write a note to the FE team with the changes”.

I then pasted this to another CC instance running the FE app, and it made the counter part.

Yes, I could have CC running against both repos and sometimes do, but I often run separate instances when tasks are complex.

5. keepam+Jd[view] [source] 2025-12-06 15:51:43
>>ACCoun+(OP)
The article is a useful resource for setting up automated flows, and Claude is great at assembly. Codex less so, Gemini is also good at assembly. Gemini will happily hand roll x86_64 bytecode. Codex appears optimized for more "mainstream" dev tasks, and excels at that. If only Gemini had a great agent...
replies(1): >>xnx+VP
◧◩
6. saagar+Oe[view] [source] [discussion] 2025-12-06 15:59:44
>>ameliu+e5
Documentation is one place where humans should have input. If an LLM can generate documentation, why would I want you to generate it when I can do so myself (probably with a better, newer model)?
replies(3): >>simonw+Zo >>ACCoun+ep >>ameliu+Et
7. skerit+Qe[view] [source] 2025-12-06 15:59:50
>>ACCoun+(OP)
I've been using Claude for months with Ghidra. It is simply amazing.
replies(1): >>djmips+B91
◧◩◪
8. dunham+5j[view] [source] [discussion] 2025-12-06 16:32:39
>>monsie+l8
Although with code it's implementing functions that don't exist yet and with documentation, it's describing functions that don't exist yet.
◧◩◪
9. simonw+Zo[view] [source] [discussion] 2025-12-06 17:19:29
>>saagar+Oe
I definitely want documentation that a project expert has reviewed. I've found LLMs are fantastic at writing documentation about how something works, but they have a nasty tendency to take guesses at WHY - you'll get occasional sentences like "This improves the efficiency of the system".

I don't want invented rationales for changes, I want to know the actual reason a developer decided that the code should work that way.

◧◩◪
10. ACCoun+ep[view] [source] [discussion] 2025-12-06 17:22:14
>>saagar+Oe
That's great if those humans are around to have that input.

Not so much when you have a lot of code from 6 years ago, built around an obscure SDK, and you have to figure out how it works, and the documentation is both incredibly sparse and in Chinese.

◧◩◪
11. ameliu+Et[view] [source] [discussion] 2025-12-06 17:58:28
>>saagar+Oe
Because it takes time and effort to write documentation.

If people __can__ actually read undocumented code with the help of LLMs, why do you need human-written documentation really?

replies(2): >>baq+eR >>gr4vit+221
◧◩
12. xnx+VP[view] [source] [discussion] 2025-12-06 21:09:01
>>keepam+Jd
Is Gemini CLI not a good agent?
◧◩◪◨
13. baq+eR[view] [source] [discussion] 2025-12-06 21:20:59
>>ameliu+Et
Docs are a form of error correcting coding for code. Docs+code allows you to spot discrepancies and ask which one is the intended behavior.
◧◩◪◨
14. gr4vit+221[view] [source] [discussion] 2025-12-06 22:58:14
>>ameliu+Et
It doesn't need to be written by a human only, but I think generating it once and distributing it with source code is more efficient. Developers can correct errors in the generated documentation, which then can be used by humans and LLMs.
◧◩
15. djmips+B91[view] [source] [discussion] 2025-12-07 00:01:07
>>skerit+Qe
What's your workflow? Are you mainly going after x86 targets? Are you using a plugin?
[go to top]