• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

ASM FASM Packer

Status
Not open for further replies.

H4ckCoder

Made in DZ
User
Joined
Feb 20, 2014
Messages
119
Reputation
0
Reaction score
2,356
Points
243
Credits
0
‎11 Years of Service‎
40%
1405442781-2014-07-15184547.png


[HIDE-THANKS]
This link is hidden for visitors. Please Log in or register now.
[/HIDE-THANKS]

_GUI_ : DElphi

Stub : FASM

Coder : Xash



 
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]

 
Status
Not open for further replies.
Back
Top