Can anyone know how to modify c/c++ application like changing the text
You can patch the application to change stuff like the text, but if you mean source recovery, its impossible since the code gets compiled to machine codeCan anyone know how to modify c/c++ application like changing the text
howYou can patch
IDA can do byte patches, but I don't recommend IDA for byte patches because, in my opinion, it's implemented really badly, but it's fine if you want to patch like 1 instruction in a programhow
xxd binary_file.exe > hex_dump
xxd -r hex_dump > binary_file_modified.exeIf you mean compiled c++ program if the program not obfuscated and text clear then its easy yes you can by using ghidraCan anyone know how to modify c/c++ application like changing the text