• XSS.stack #1 – первый литературный журнал от юзеров форума

Can anyone know how to modify c/c++ application

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 code
 
how
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 program
 
Yes as DoKitO said you can edit string text.
other method rather than IDA is using xxd utility.
Код:
xxd binary_file.exe > hex_dump
open hex_dump via VScode or other text editor, find the string you want to replace, note that the replacement string should be the same length as the original string so that it does not corrupt the binary.
after that type
xxd -r hex_dump > binary_file_modified.exe
 
Can anyone know how to modify c/c++ application like changing the text
If you mean compiled c++ program if the program not obfuscated and text clear then its easy yes you can by using ghidra
 


Напишите ответ...
  • Вставить:
Прикрепить файлы
Верх