Created
August 24, 2015 07:51
-
-
Save SafeEval/fd24bec9b21eaa2105df to your computer and use it in GitHub Desktop.
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
| // exit_x86-linux-att.c - inline exit() shellcode | |
| static void exit() | |
| { | |
| __asm__(".att_syntax prefix"); | |
| __asm__ volatile( | |
| "xor %eax,%eax \n" //zero out eax, no null | |
| "xor %ebx,%ebx \n" //zero out ebx, no null" | |
| "mov $42,%bl \n" //return code is 42" | |
| "mov $1,%al \n" //exit is syscall 1" | |
| "int $0x80 \n" //syscall interrupt" | |
| ); | |
| } | |
| int main() | |
| { | |
| exit(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment