Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- EXTERN LoadLibraryA@4:NEAR
- EXTERN GetProcAddress@8:NEAR
- dllName DB 'user32.dll',0
- FunctionName DB 'MessageBoxA',0
- push offset dllName
- call LoadLibraryA@4 ; load the dll
- push offset FunctionName
- push eax
- call GetProcAddress@8
- PUSH 0
- PUSH OFFSET msg_title
- PUSH OFFSET msg_message
- PUSH HW
- CALL EAX;MessageBoxA@16
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement