Difference between revisions of "Sandbox"

From SkullSecurity
Jump to navigation Jump to search
(New page: This page is for playing or testing!)
 
Line 1: Line 1:
This page is for playing or testing!
This page is for playing or testing!
<pre>53                push    ebx
8B 54 24 08      mov    edx, [esp+arg_0] ; edx gets the reg code
31 DB            xor    ebx, ebx        ; Clear ebx
89 D3            mov    ebx, edx        ; Move the reg code into ebx
8D 42 07          lea    eax, [edx+7]    ; Add 7 to the code and put it in eax
</pre>

Revision as of 17:07, 14 March 2007

This page is for playing or testing!


53                push    ebx
8B 54 24 08       mov     edx, [esp+arg_0] ; edx gets the reg code
31 DB             xor     ebx, ebx        ; Clear ebx
89 D3             mov     ebx, edx        ; Move the reg code into ebx
8D 42 07          lea     eax, [edx+7]    ; Add 7 to the code and put it in eax