Skip to content

Instantly share code, notes, and snippets.

@idiom
Last active December 21, 2015 02:28
Show Gist options
  • Save idiom/6234932 to your computer and use it in GitHub Desktop.
Save idiom/6234932 to your computer and use it in GitHub Desktop.
Windows Syscall Conventions
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