Jump to content
YOUR-AD-HERE
HOSTING
TOOLS

Locked FASM Packer


H4ckCoder

Recommended Posts

  • 5 weeks later...

Re: FASM Packer

 

Simple Hello world in FASM = 1024 bytes

Packed Hello world in FASM = 4096 bytes

 

So genius!

 

[LENGUAJE=ASM] format pe gui 4.0

entry start

include 'win32a.inc'

 

start:

invoke MessageBox,NULL,message,message,MB_OK

invoke ExitProcess,0

 

message db 'Hello, World!',0

 

data import

library kernel32,'kernel32.dll',\

user32,'user32.dll'

include 'api/kernel32.inc'

include 'api/user32.inc'

end data[/LENGUAJE]

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.