KoKaINe
April 18th, 2001, 17:53
Ive read some tuts about unpacking a .exe and have also unpacked a couple by my own. But now I have a packed .dll Ive coded a little asm program(below) that calls LoadLibraryA but I think it doesnt gets me to the entrypoint. The dll is attached to this msg. Any ideas? Can I use the symbol loader?
Thanks,
KoKaINe
---
.data
MsgCaption db "KoKaINe.br",0
MsgBoxText db "DLL Loaded!",0
DllName db "Common.dll"
.code
start:
invoke LoadLibraryA, addr DllName
invoke MessageBox, NULL,addr MsgBoxText, addr MsgCaption, MB_OK
invoke ExitProcess,NULL
end start
Thanks,
KoKaINe
---
.data
MsgCaption db "KoKaINe.br",0
MsgBoxText db "DLL Loaded!",0
DllName db "Common.dll"
.code
start:
invoke LoadLibraryA, addr DllName
invoke MessageBox, NULL,addr MsgBoxText, addr MsgCaption, MB_OK
invoke ExitProcess,NULL
end start