Last active
December 21, 2015 02:28
-
-
Save idiom/6234932 to your computer and use it in GitHub Desktop.
Windows Syscall Conventions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The ntdll exported function for 32 bit syscalls looks like the following: | |
mov eax,<syscall_index> | |
mov edx,0x7ffe0300 | |
call dword [edx] | |
ret <arg_byte_count> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment