Skip to main content

Questions tagged [binary-editing]

Filter by
Sorted by
Tagged with
1 vote
1 answer
88 views

I am trying to attach the OllyDBGv2 debugger to an external program that is created by CreateProcessA found in a win32 based binary but I strongly suspect that the process is created/ran and ...
Sevren's user avatar
  • 113
1 vote
0 answers
69 views

based on what i found Oppo removed the fastboot binaries from my phone (Oppo A5s) and since the lk partition is the one that have it by default i would like to know how can i sort of inject the ...
Khalyl's user avatar
  • 11
0 votes
1 answer
272 views

If I edit out and replace four bytes of a binary file with 00 00 00 00 and the binary crashes when it runs does it mean that there is some sort of security protection? How likely is it that the crash ...
user avatar
2 votes
0 answers
263 views

I know this title sounds a little dumb but if you would please bear with me for an explanation. I have a Valoin-made mp3 player I bought close to 3 years ago now. Via a series of interesting ...
PixelBlurb's user avatar
0 votes
2 answers
740 views

so i want to protect my software against reverse-engineering and i want to add checksum verification to prevent patching the binary but the problem that if i added a checksum verification the binary ...
Ahmed minegames's user avatar
3 votes
0 answers
557 views

I am trying to remove/disable some system apps ( Messages, Games, Radio or Calendar ) and remove/replace the boot screen from samsung E1200y. So i start searching for the way to do that... I used HxH ...
M J's user avatar
  • 53
0 votes
0 answers
683 views

Without having access to the original source code, is there a way to combine two ELF binaries with the main() in the first binary pointing to the main() in the second binary ? In other words, I mean ...
kevin's user avatar
  • 156
0 votes
2 answers
2k views

I am currently trying to rip the sprites from an Nintendo DS game called Cookie Shop - Create Your Dream Shop but they are all in _LZ.bin files. When I've unpacked its compression, I could see lots ...
COR3Z's user avatar
  • 11
0 votes
0 answers
45 views

I'm a total beginner, so I don't know the vocabulary yet to search effectively. What I want to do is add some data (let's say level data), to an old game ROM, but that would probably shift all the ...
Minix's user avatar
  • 101
4 votes
2 answers
4k views

I have here an .so file that contains a language pack and I want to edit them. My problem is that I don't always have enough space for a clean translation. I know that I can change the texts if they ...
Alonia's user avatar
  • 83
1 vote
1 answer
382 views

I've been messing around a little with Radare2 trying to master binary exploitation and patching. I added a couple of assembly instructions to an x86 elf binary in a non-executable section of the file,...
programmersn's user avatar
1 vote
1 answer
3k views

Is there anyone who can guide me how do i do snarfing of firmware on a chip of a VIN Tuner. Is there anyone who can do it ?
vrickson's user avatar
2 votes
2 answers
3k views

I looking for simple tool(not site) to translate arm instruction to hex like http://armconverter.com/. Without linker , I want put 1 instruction , and want get the hex . Do you know one please?
ivn23744sawoe.com's user avatar
1 vote
1 answer
1k views

I compile this code 1. #include <stdio.h> 2. void F(int a, int b) 3. { 4. int c= a+b; 5. int d= a*b; 6. } 7. void printAll() 8. { 9. printf("test1"); 10. printf("test2"); 11. ...
arm's user avatar
  • 29
1 vote
1 answer
571 views

How can I change (add/edit/remove) assembly instruction from binary file without damage? I know that at binary function save on specific offset/address, so if I change something I will damage all ...
Yfsygd's user avatar
  • 39
4 votes
1 answer
3k views

I've been hacking and modding software for years, and have learned a lot, but there are still a few things that vex me - this is one such case. I have noticed that some PEs contain an RCData section ...
Mr. Mendelli's user avatar
3 votes
1 answer
154 views

I am working on a project where I need to use LD_PRELOAD to load some libraries into the memory space. It's like: LD_PRELOAD="./libapp.so" ./my_app Due to certain reasons (I am actually working on ...
lllllllllllll's user avatar
1 vote
1 answer
193 views

I have a small exe program that runs in a system32/cmd window, and when it is finished running its small script it prompts the user to press enter to close. I want to simply have the application ...
Kalamalka Kid's user avatar