• 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 Anti Sandboxie[MASM]

Status
Not open for further replies.

top10

Moderator
User
Joined
Mar 18, 2015
Messages
487
Reputation
0
Reaction score
5,047
Points
243
Credits
0
‎10 Years of Service‎
70%
[LENGUAJE=asm].386

.model flat,stdcall

option casemap:none

include \masm32\include\windows.inc

include \masm32\include\kernel32.inc

include \masm32\include\user32.inc

includelib \masm32\lib\user32.lib

includelib \masm32\lib\kernel32.lib

.data

SbieDll db "SbieDll.dll",0

MsgDetected db "Detected",0

MsgNotDetected db "Not Detected",0

.code

start:

invoke GetModuleHandle, addr SbieDll

jz NotDetected ; if is 0 jump to NotDetected

jnz Detected ; if is not 0 jump to Detected

NotDetected:

invoke MessageBox,NULL,addr MsgNotDetected,addr MsgNotDetected,MB_OK

jmp Exit

Detected:

invoke MessageBox,NULL,addr MsgDetected,addr MsgDetected,MB_OK

jmp Exit

Exit:

invoke ExitProcess,0

ret

end start[/LENGUAJE]

 
Re: Anti Sandboxie[MASM]

what's the importance to code that in MASM when you're using shit things like Macro ?

 
Re: Anti Sandboxie[MASM]

what's the importance to code that in MASM when you're using shit things like Macro ?
Is only a example or snippet how to do this in asm dont worry about the rest.

 
Status
Not open for further replies.
Back
Top