For example, consider the following code:
call far ptr 90b6h:79c35c2eh
shl dword ptr [ebp+0fh],1
db 67h
daa
push eax
push cs
How this code block generated in C programming? How can I deobfuscate that code?
|
For example, consider the following code:
How this code block generated in C programming? How can I deobfuscate that code? |
|||||||||||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
It's not obfuscated C code. It this comes from a C program it is a few lines of assembler from a line or so of C code. Once broken down to assembler it is very difficult to go the other way, especially on an automated basis. While you can get some tools that will do something along those lines the results will not be the original C code but something different that does the same thing. The results will still look obfuscated.
What you have is the assembler outout of either 1 or 2. You seem to be asking for 3. |
|||
|
|