python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Is instruction encoded differently from .so file to runtime memory?
I have an Android .so file that uses ARM-V7A instruction set.
I drag it into IDA, and there is one line that shows :
0x1000: b #0x102c
And the hex window shows that the binary code of b #0x102c is 14...
user16387400
Votes: 0
Answers: 1
C++ odd assembly output query
Using Windows 10 Pro with Visual Studio 2022, Debug mode, X64 platform, I have the following code...
int main()
{
int var = 1;
int* varPtr = &var;
*varPtr = 10;
return 0;
}
In t...
Jim
Votes: 0
Answers: 1
Increase size of the BSS section in the elf and other file formats
I want to add a 4KB space to the bss section of an executable elf file. How can this be done?
If not bss section, can I increase the size of the data section or define a new data section
and initializ...
codeman48
Votes: 0
Answers: 1
Is there a way to adjust the text size (trying to change text from language to other inside exe PE file) using hex editors
What I'm trying to do is to translate an application interface language from Korean to English
I've added a new section using CFF Explorer because the application doesn't have a size to extend the tra...
Nagy Nabieh
Votes: 0
Answers: 0