How the heck do I find a specific call (like a value comparison) in a reversed engineered app's assembly with x64dbg?It's getting too similar to look at assembly ¬_¬
>>108803249>It's getting too similar to look at assembly ¬_¬that's because it IS assembly dumb cunt>alsoif you don't like staring at ASM. Then download ghidra and get to it
>>108803249>call?Depends, comparisons are done with cmp, or test, but you are probably looking for a memory comparison. IDK. Also a comparison can be any registers against any other register or memory operand, or immediate value.
>>10880324just use ghidra
>>108803249I feed all this crap into claude and it finds what I'm looking for then I change it
>>108803249use ghidra/ida.you can scan for instruction patterns and it shows xrefs by defaultunless you pay for ida's cloud there's not much reason to use it over ghidra.