mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 10:42:21 +00:00
-
This commit is contained in:
parent
d0d97cfda0
commit
536342b6f4
@ -90,6 +90,10 @@ lopaStr BA::BABrute(const char *ipOrig, const int port, bool performDoubleCheck)
|
|||||||
|
|
||||||
int sz = con.nConnect(ipOrig, port, &buff);
|
int sz = con.nConnect(ipOrig, port, &buff);
|
||||||
|
|
||||||
|
if (Utils::ustrstr(&buff, "404 not found") != -1 || Utils::ustrstr(&buff, "404 site") != -1) {
|
||||||
|
return lps;
|
||||||
|
}
|
||||||
|
|
||||||
char ip[256] = { 0 };
|
char ip[256] = { 0 };
|
||||||
|
|
||||||
if (sz == 0) {
|
if (sz == 0) {
|
||||||
@ -124,6 +128,11 @@ lopaStr BA::BABrute(const char *ipOrig, const int port, bool performDoubleCheck)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int isDig = Utils::isDigest(&buff);
|
int isDig = Utils::isDigest(&buff);
|
||||||
|
if (-2 == isDig) {
|
||||||
|
QString ipString = QString(ip);
|
||||||
|
stt->doEmitionFoundData("<span style=\"color:orange;\">404 not found - <a style=\"color:orange;\" href=\"" + ipString + "/\">" + ipString + "</a></span>");
|
||||||
|
return lps;
|
||||||
|
}
|
||||||
if (isDig == -1) {
|
if (isDig == -1) {
|
||||||
if (performDoubleCheck) {
|
if (performDoubleCheck) {
|
||||||
Sleep(gTimeOut);
|
Sleep(gTimeOut);
|
||||||
@ -157,26 +166,31 @@ lopaStr BA::BABrute(const char *ipOrig, const int port, bool performDoubleCheck)
|
|||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char login[32] = { 0 };
|
||||||
|
char pass[32] = { 0 };
|
||||||
for(int i = 0; i < MaxLogin; ++i) {
|
for(int i = 0; i < MaxLogin; ++i) {
|
||||||
|
FileUpdater::cv.wait(FileUpdater::lk, [] {return FileUpdater::ready; });
|
||||||
|
strcpy(login, loginLst[i]);
|
||||||
for (int j = 0; j < MaxPass; ++j) {
|
for (int j = 0; j < MaxPass; ++j) {
|
||||||
FileUpdater::cv.wait(FileUpdater::lk, []{return FileUpdater::ready;});
|
FileUpdater::cv.wait(FileUpdater::lk, []{return FileUpdater::ready;});
|
||||||
if (!globalScanFlag) return lps;
|
if (!globalScanFlag) return lps;
|
||||||
|
|
||||||
lpString = string(loginLst[i]) + ":" + string(passLst[j]);
|
strcpy(pass, passLst[j]);
|
||||||
|
|
||||||
|
lpString = string(login) + ":" + string(pass);
|
||||||
|
|
||||||
Connector con;
|
Connector con;
|
||||||
res = con.nConnect(ip, port, &buffer, NULL, NULL, &lpString, digestMode);
|
res = con.nConnect(ip, port, &buffer, NULL, NULL, &lpString, digestMode);
|
||||||
if (res == -2) return lps;
|
if (res == -2) {
|
||||||
|
rowIndex = Utils::addBARow(QString(ip), QString(login) + ":" + QString(pass), "TIMEOUT", rowIndex);
|
||||||
|
|
||||||
|
return lps;
|
||||||
|
}
|
||||||
else if (res != -1) {
|
else if (res != -1) {
|
||||||
res = checkOutput(&buffer, ip, port);
|
res = checkOutput(&buffer, ip, port);
|
||||||
if (res == -2) {
|
if (res == -2) {
|
||||||
|
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip), "--", "404", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip), "--", "404");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, "--", "404");
|
|
||||||
}
|
|
||||||
strcpy(lps.other, "404");
|
strcpy(lps.other, "404");
|
||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
@ -185,42 +199,21 @@ lopaStr BA::BABrute(const char *ipOrig, const int port, bool performDoubleCheck)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (res == 1) {
|
if (res == 1) {
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip), QString(login) + ":" + QString(pass), "OK", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip), QString(loginLst[i]) + ":" + QString(passLst[j]), "OK");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(loginLst[i]) + ":" + QString(passLst[j]), "OK");
|
|
||||||
}
|
|
||||||
|
|
||||||
strcpy(lps.login, loginLst[i]);
|
strcpy(lps.login, login);
|
||||||
strcpy(lps.pass, passLst[j]);
|
strcpy(lps.pass, pass);
|
||||||
return lps;
|
return lps;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (BALogSwitched) {
|
rowIndex = Utils::addBARow(QString(ip), QString(login) + ":" + QString(pass), QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%", rowIndex);
|
||||||
if (rowIndex == -1) {
|
|
||||||
rowIndex = nesca_3::addBARow(QString(ip),
|
|
||||||
QString(loginLst[i]) + ":" + QString(passLst[j]),
|
|
||||||
QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(loginLst[i]) + ":" + QString(passLst[j]),
|
|
||||||
QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else { rowIndex = -1; }
|
|
||||||
++passCounter;
|
++passCounter;
|
||||||
Sleep(50);
|
Sleep(50);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip), "--", "FAIL", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip), "--", "FAIL");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, "--", "FAIL");
|
|
||||||
}
|
|
||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
221
Connector.cpp
221
Connector.cpp
@ -99,10 +99,10 @@ int my_trace(CURL *handle, curl_infotype type,
|
|||||||
if (type == CURLINFO_HEADER_OUT) {
|
if (type == CURLINFO_HEADER_OUT) {
|
||||||
//data[size] = '\0';
|
//data[size] = '\0';
|
||||||
//Activity += strlen(data);
|
//Activity += strlen(data);
|
||||||
|
data[size] = '\0';
|
||||||
QString qData = QString(data);
|
QString qData = QString(data);
|
||||||
Activity += qData.length();
|
Activity += qData.length();
|
||||||
stt->doEmitionAddOutData(qData);
|
stt->doEmitionAddOutData(qData);
|
||||||
data[0] = '\0';
|
|
||||||
}
|
}
|
||||||
//else if (type == CURLINFO_HEADER_IN) {
|
//else if (type == CURLINFO_HEADER_IN) {
|
||||||
// QString qData = QString(data);
|
// QString qData = QString(data);
|
||||||
@ -164,6 +164,7 @@ int pConnect(const char* ip, const int port, std::string *buffer,
|
|||||||
"Mozilla/5.0 (X11; Linux x86_64; rv:35.0) Gecko/20100101 Firefox/35.0");
|
"Mozilla/5.0 (X11; Linux x86_64; rv:35.0) Gecko/20100101 Firefox/35.0");
|
||||||
curl_easy_setopt(curl, CURLOPT_HEADER, 1L);
|
curl_easy_setopt(curl, CURLOPT_HEADER, 1L);
|
||||||
curl_easy_setopt(curl, CURLOPT_AUTOREFERER, 1L);
|
curl_easy_setopt(curl, CURLOPT_AUTOREFERER, 1L);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYSTATUS, 0L);
|
||||||
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
|
||||||
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
|
||||||
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, nWriteCallback);
|
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, nWriteCallback);
|
||||||
@ -208,7 +209,10 @@ int pConnect(const char* ip, const int port, std::string *buffer,
|
|||||||
int sz = buffer->size();
|
int sz = buffer->size();
|
||||||
|
|
||||||
curl_easy_cleanup(curl);
|
curl_easy_cleanup(curl);
|
||||||
if (res == CURLE_OK || (port == 21 && sz > 0)) {
|
|
||||||
|
if (res == 35) {
|
||||||
|
return -1;
|
||||||
|
} else if (res == CURLE_OK || sz > 0) {
|
||||||
return sz;
|
return sz;
|
||||||
}
|
}
|
||||||
else if (res == CURLE_LOGIN_DENIED && port == 21) {
|
else if (res == CURLE_LOGIN_DENIED && port == 21) {
|
||||||
@ -270,7 +274,7 @@ int pConnect(const char* ip, const int port, std::string *buffer,
|
|||||||
return -1;
|
return -1;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
int pConnectRTSP(const char* ip, const int port, std::string *buffer, const std::string *lpString)
|
int pConnectRTSP(const char* ip, const int port, std::string *buffer, const std::string *lpString, bool isDigest)
|
||||||
{
|
{
|
||||||
buffer->clear();
|
buffer->clear();
|
||||||
int res = 0;
|
int res = 0;
|
||||||
@ -278,7 +282,7 @@ int pConnectRTSP(const char* ip, const int port, std::string *buffer, const std:
|
|||||||
|
|
||||||
if (curl != NULL)
|
if (curl != NULL)
|
||||||
{
|
{
|
||||||
//curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1L);
|
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1L);
|
||||||
if (MapWidgetOpened) {
|
if (MapWidgetOpened) {
|
||||||
struct data config;
|
struct data config;
|
||||||
config.trace_ascii = 1; /* enable ascii tracing */
|
config.trace_ascii = 1; /* enable ascii tracing */
|
||||||
@ -287,124 +291,41 @@ int pConnectRTSP(const char* ip, const int port, std::string *buffer, const std:
|
|||||||
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
|
||||||
}
|
}
|
||||||
|
|
||||||
char newIP[128] = {0};
|
curl_easy_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_DESCRIBE);
|
||||||
strcpy(newIP, "rtsp://");
|
curl_easy_setopt(curl, CURLOPT_USERAGENT,
|
||||||
strncat(newIP, ip, 96);
|
"LibVLC/2.1.5 (LIVE555 Streaming Media v2014.05.27)");
|
||||||
strcat(newIP, "/ch1/main");
|
curl_easy_setopt(curl, CURLOPT_URL, ip);
|
||||||
/*int y = curl_easy_setopt(curl, CURLOPT_VERBOSE, 0L);
|
curl_easy_setopt(curl, CURLOPT_RTSP_STREAM_URI, ip);
|
||||||
y = curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1L);
|
curl_easy_setopt(curl, CURLOPT_HEADER, 1L);
|
||||||
y = curl_easy_setopt(curl, CURLOPT_HEADERDATA, stdout);*/
|
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, nWriteCallback);
|
||||||
//curl_easy_setopt(curl, CURLOPT_URL, newIP);
|
curl_easy_setopt(curl, CURLOPT_WRITEDATA, buffer);
|
||||||
//curl_easy_setopt(curl, CURLOPT_PORT, port);
|
int proxyPort = std::atoi(gProxyPort);
|
||||||
curl_easy_setopt(curl, CURLOPT_RTSP_STREAM_URI, newIP);
|
if (proxyPort > 0 && proxyPort < 65535) curl_easy_setopt(curl, CURLOPT_PROXYPORT, proxyPort);
|
||||||
//y = curl_easy_setopt(curl, CURLOPT_RTSP_REQUEST, (long)CURL_RTSPREQ_OPTIONS);
|
curl_easy_setopt(curl, CURLOPT_PROXY, gProxyIP);
|
||||||
//int y = curl_easy_setopt(curl, CURLOPT_URL, ip);
|
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, gTimeOut);
|
||||||
//y = curl_easy_setopt(curl, CURLOPT_RTSP_STREAM_URI, ip);
|
curl_easy_setopt(curl, CURLOPT_TIMEOUT, gTimeOut + 3);
|
||||||
//curl_easy_setopt(curl, CURLOPT_PORT, port);
|
if (isDigest) {
|
||||||
/*y = curl_easy_setopt(curl, CURLOPT_RTSP_REQUEST, (long)CURL_RTSPREQ_OPTIONS);
|
curl_easy_setopt(curl, CURLOPT_HTTPAUTH, (long)CURLAUTH_DIGEST);
|
||||||
res = curl_easy_perform(curl);
|
|
||||||
y = curl_easy_setopt(curl, CURLOPT_RTSP_REQUEST, (long)CURL_RTSPREQ_DESCRIBE);*/
|
|
||||||
res = curl_easy_perform(curl);
|
|
||||||
|
|
||||||
//curl_easy_setopt(curl, CURLOPT_RTSP_REQUEST, (long)CURL_RTSPREQ_DESCRIBE);
|
|
||||||
//curl_easy_setopt(curl, CURLOPT_USERAGENT,
|
|
||||||
// "Mozilla/5.0 (X11; Linux x86_64; rv:35.0) Gecko/20100101 Firefox/35.0");
|
|
||||||
//curl_easy_setopt(curl, CURLOPT_HEADER, 1L);
|
|
||||||
//curl_easy_setopt(curl, CURLOPT_AUTOREFERER, 1L);
|
|
||||||
//curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
|
|
||||||
//curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
|
|
||||||
//curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, nWriteCallback);
|
|
||||||
//curl_easy_setopt(curl, CURLOPT_WRITEDATA, buffer);
|
|
||||||
//int proxyPort = std::atoi(gProxyPort);
|
|
||||||
//if (proxyPort > 0 && proxyPort < 65535) curl_easy_setopt(curl, CURLOPT_PROXYPORT, proxyPort);
|
|
||||||
//curl_easy_setopt(curl, CURLOPT_PROXY, gProxyIP);
|
|
||||||
////curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
|
|
||||||
//curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, gTimeOut);
|
|
||||||
//curl_easy_setopt(curl, CURLOPT_TIMEOUT, gTimeOut + 3);
|
|
||||||
|
|
||||||
//if (lpString != NULL) {
|
|
||||||
// curl_easy_setopt(curl, CURLOPT_UNRESTRICTED_AUTH, 1L);
|
|
||||||
// //curl_easy_setopt(curl, CURLOPT_FTPLISTONLY, 1L);
|
|
||||||
// curl_easy_setopt(curl, CURLOPT_USERPWD, lpString->c_str());
|
|
||||||
// //curl_easy_setopt(curl, CURLOPT_HTTPAUTH, (long)CURLAUTH_DIGEST);
|
|
||||||
// res = curl_easy_perform(curl);
|
|
||||||
// /*if (digestMode)
|
|
||||||
// {
|
|
||||||
// curl_easy_setopt(curl, CURLOPT_HTTPAUTH, (long)CURLAUTH_DIGEST);
|
|
||||||
// res = curl_easy_perform(curl);
|
|
||||||
|
|
||||||
// if (port != 21 && lpString != NULL) {
|
|
||||||
// int pos = Utils::ustrstr(*buffer, "\r\n\r\n");
|
|
||||||
// if (pos != -1) {
|
|
||||||
// *buffer = buffer->substr(pos + 4);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// else res = curl_easy_perform(curl);*/
|
|
||||||
//}
|
|
||||||
//else res = curl_easy_perform(curl);
|
|
||||||
|
|
||||||
int sz = buffer->size();
|
|
||||||
|
|
||||||
curl_easy_cleanup(curl);
|
|
||||||
if (res == CURLE_OK || (port == 21 && sz > 0)) {
|
|
||||||
if (MapWidgetOpened) stt->doEmitionAddIncData(QString(ip), QString(buffer->c_str()));
|
|
||||||
Activity += sz;
|
|
||||||
return sz;
|
|
||||||
}
|
|
||||||
else if (res == CURLE_LOGIN_DENIED && port == 21) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
else if (res == CURLE_OPERATION_TIMEDOUT
|
|
||||||
|| res == CURLE_COULDNT_CONNECT
|
|
||||||
|| res == CURLE_SEND_ERROR
|
|
||||||
|| res == CURLE_RECV_ERROR
|
|
||||||
) {
|
|
||||||
SOCKET eNobuffSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
|
||||||
shutdown(eNobuffSocket, SD_BOTH);
|
|
||||||
closesocket(eNobuffSocket);
|
|
||||||
if (ENOBUFS == eNobuffSocket || ENOMEM == eNobuffSocket) {
|
|
||||||
stt->doEmitionRedFoundData("Insufficient buffer/memory space. Sleeping for 10 sec...");
|
|
||||||
Sleep(10000);
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (res == 6) return -2;
|
curl_easy_setopt(curl, CURLOPT_HTTPAUTH, (long)CURLAUTH_BASIC);
|
||||||
else if (res != 13 &&
|
}
|
||||||
res != 67 &&
|
curl_easy_setopt(curl, CURLOPT_USERPWD, lpString->c_str());
|
||||||
res != 52 &&
|
|
||||||
res != 56 &&
|
|
||||||
res != 35 &&
|
|
||||||
res != 19 &&
|
|
||||||
res != 23)
|
|
||||||
{
|
|
||||||
if (res == 5) {
|
|
||||||
stt->doEmitionRedFoundData("The given proxy host could not be resolved.");
|
|
||||||
return -2;
|
|
||||||
}
|
|
||||||
else if (res == 8) {
|
|
||||||
stt->doEmitionFoundData("Strange ftp reply. (" +
|
|
||||||
QString::number(res) + ") " + QString(ip));
|
|
||||||
return -2;
|
|
||||||
}
|
|
||||||
else if (res == 18) {
|
|
||||||
return -2;
|
|
||||||
}
|
|
||||||
else stt->doEmitionRedFoundData("CURL error: (" + QString::number(res) + ") " + QString(ip));
|
|
||||||
};
|
|
||||||
|
|
||||||
|
res = curl_easy_perform(curl);
|
||||||
|
|
||||||
|
int sz = buffer->size();
|
||||||
|
curl_easy_cleanup(curl);
|
||||||
|
|
||||||
|
if (res == CURLE_OK || sz > 0) {
|
||||||
return sz;
|
return sz;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (MapWidgetOpened) stt->doEmitionAddIncData(QString(ip), QString(buffer->c_str()));
|
|
||||||
|
|
||||||
return sz;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionRedFoundData("Curl error.");
|
|
||||||
return -1;
|
return -1;
|
||||||
};
|
}
|
||||||
|
|
||||||
|
stt->doEmitionRedFoundData("Curl error.");
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void eraser(std::string *buffer, const std::string delim1, const std::string delim2) {
|
void eraser(std::string *buffer, const std::string delim1, const std::string delim2) {
|
||||||
@ -430,14 +351,14 @@ int Connector::nConnect(const char* ip, const int port, std::string *buffer,
|
|||||||
const std::vector<std::string> *customHeaders,
|
const std::vector<std::string> *customHeaders,
|
||||||
const std::string *lpString,
|
const std::string *lpString,
|
||||||
bool digestMode,
|
bool digestMode,
|
||||||
bool isRTSP){
|
bool isRTSP, bool isDigest){
|
||||||
int res = 0;
|
int res = 0;
|
||||||
|
|
||||||
if (!isRTSP) {
|
if (!isRTSP) {
|
||||||
res = pConnect(ip, port, buffer, postData, customHeaders, lpString, digestMode);
|
res = pConnect(ip, port, buffer, postData, customHeaders, lpString, digestMode);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
res = pConnectRTSP(ip, port, buffer, lpString);
|
res = pConnectRTSP(ip, port, buffer, lpString, isDigest);
|
||||||
}
|
}
|
||||||
cutoutComments(buffer);
|
cutoutComments(buffer);
|
||||||
|
|
||||||
@ -447,6 +368,67 @@ int Connector::nConnect(const char* ip, const int port, std::string *buffer,
|
|||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int Connector::checkIsDigestRTSP(const char *ip, std::string *buffer) {
|
||||||
|
|
||||||
|
buffer->clear();
|
||||||
|
int res = 0;
|
||||||
|
CURL *curl = curl_easy_init();
|
||||||
|
|
||||||
|
if (curl != NULL)
|
||||||
|
{
|
||||||
|
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1L);
|
||||||
|
if (MapWidgetOpened) {
|
||||||
|
struct data config;
|
||||||
|
config.trace_ascii = 1; /* enable ascii tracing */
|
||||||
|
curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, my_trace);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_DEBUGDATA, &config);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
|
||||||
|
}
|
||||||
|
|
||||||
|
curl_easy_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_DESCRIBE);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_USERAGENT,
|
||||||
|
"LibVLC/2.1.5 (LIVE555 Streaming Media v2014.05.27)");
|
||||||
|
curl_easy_setopt(curl, CURLOPT_URL, ip);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_RTSP_STREAM_URI, ip);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_HEADER, 1L);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, nWriteCallback);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_WRITEDATA, buffer);
|
||||||
|
int proxyPort = std::atoi(gProxyPort);
|
||||||
|
if (proxyPort > 0 && proxyPort < 65535) curl_easy_setopt(curl, CURLOPT_PROXYPORT, proxyPort);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_PROXY, gProxyIP);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, gTimeOut);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_TIMEOUT, gTimeOut + 3);
|
||||||
|
|
||||||
|
res = curl_easy_perform(curl);
|
||||||
|
|
||||||
|
int sz = buffer->size();
|
||||||
|
|
||||||
|
curl_easy_cleanup(curl);
|
||||||
|
if (res == CURLE_OK || sz > 0) {
|
||||||
|
if (MapWidgetOpened) stt->doEmitionAddIncData(QString(ip), QString(buffer->c_str()));
|
||||||
|
Activity += sz;
|
||||||
|
|
||||||
|
if (Utils::ustrstr(buffer, "200 ok") != -1) {
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
else if (Utils::ustrstr(buffer, "not found") != -1) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
else if (Utils::ustrstr(buffer, "digest") != -1) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
stt->doEmitionRedFoundData("Curl error.");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
bool portCheck(const char * sDVRIP, int wDVRPort) {
|
bool portCheck(const char * sDVRIP, int wDVRPort) {
|
||||||
// sockaddr_in sa;
|
// sockaddr_in sa;
|
||||||
// sa.sin_family = AF_INET;
|
// sa.sin_family = AF_INET;
|
||||||
@ -581,6 +563,9 @@ int Connector::connectToPort(char* ip, int port)
|
|||||||
//strcpy(tempIp, "ftp://");
|
//strcpy(tempIp, "ftp://");
|
||||||
sprintf(tempIp, "ftp://%s:%d", ip, port);
|
sprintf(tempIp, "ftp://%s:%d", ip, port);
|
||||||
}
|
}
|
||||||
|
/*else if (554 == port) {
|
||||||
|
sprintf(tempIp, "rtsp://%s:%d", ip, port);
|
||||||
|
}*/
|
||||||
else {
|
else {
|
||||||
//strcpy(tempIp, "http://");
|
//strcpy(tempIp, "http://");
|
||||||
sprintf(tempIp, "http://%s:%d", ip, port);
|
sprintf(tempIp, "http://%s:%d", ip, port);
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#include <iphlpapi.h>
|
#include <iphlpapi.h>
|
||||||
#include <icmpapi.h>
|
#include <icmpapi.h>
|
||||||
#pragma comment(lib, "iphlpapi.lib")
|
#pragma comment(lib, "iphlpapi.lib")
|
||||||
#pragma comment(lib,"curllib.lib")
|
//#pragma comment(lib,"libcurldll.a")
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
@ -39,7 +39,8 @@ public:
|
|||||||
const std::vector<std::string> *customHeaders = NULL,
|
const std::vector<std::string> *customHeaders = NULL,
|
||||||
const std::string *lpString = NULL,
|
const std::string *lpString = NULL,
|
||||||
bool digestMode = false,
|
bool digestMode = false,
|
||||||
bool isRTSP = false);
|
bool isRTSP = false, bool isDigest = true);
|
||||||
int connectToPort(char *ip, int port);
|
int connectToPort(char *ip, int port);
|
||||||
|
int checkIsDigestRTSP(const char *ip, std::string *buffer);
|
||||||
};
|
};
|
||||||
#endif // CONNECTOR_H
|
#endif // CONNECTOR_H
|
||||||
|
40
FTPAuth.cpp
40
FTPAuth.cpp
@ -19,9 +19,8 @@ lopaStr FTPA::FTPBrute(const char *ip, const int port, PathStr *ps) {
|
|||||||
int passCounter = 0;
|
int passCounter = 0;
|
||||||
int rowIndex = -1;
|
int rowIndex = -1;
|
||||||
|
|
||||||
char login[128] = {0};
|
char login[32] = {0};
|
||||||
char pass[32] = {0};
|
char pass[32] = {0};
|
||||||
//char nip[128] = { 0 };
|
|
||||||
|
|
||||||
for (int i = 0; i < MaxFTPLogin; ++i)
|
for (int i = 0; i < MaxFTPLogin; ++i)
|
||||||
{
|
{
|
||||||
@ -37,18 +36,12 @@ lopaStr FTPA::FTPBrute(const char *ip, const int port, PathStr *ps) {
|
|||||||
strcpy(pass, ftpPassLst[j]);
|
strcpy(pass, ftpPassLst[j]);
|
||||||
if (strlen(pass) <= 1) continue;
|
if (strlen(pass) <= 1) continue;
|
||||||
|
|
||||||
lpString = string(login)
|
lpString = string(login) + string(pass);
|
||||||
+ string(pass);
|
|
||||||
|
|
||||||
Connector con;
|
Connector con;
|
||||||
res = con.nConnect(ip, port, &buffer, NULL, NULL, &lpString);
|
res = con.nConnect(ip, port, &buffer, NULL, NULL, &lpString);
|
||||||
if (res == -2) {
|
if (res == -2) {
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip), "--", "FAIL", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip), "--", "FAIL");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, "--", "FAIL");
|
|
||||||
}
|
|
||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
else if (res != -1) {
|
else if (res != -1) {
|
||||||
@ -57,39 +50,18 @@ lopaStr FTPA::FTPBrute(const char *ip, const int port, PathStr *ps) {
|
|||||||
strcpy(lps.pass, pass);
|
strcpy(lps.pass, pass);
|
||||||
ps->directoryCount = std::count(buffer.begin(), buffer.end(), '\n');
|
ps->directoryCount = std::count(buffer.begin(), buffer.end(), '\n');
|
||||||
|
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip), QString(login) + ":" + QString(pass), "OK", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip), QString(login) + ":" + QString(pass), "OK");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(login) + ":" + QString(pass), "OK");
|
|
||||||
}
|
|
||||||
|
|
||||||
return lps;
|
return lps;
|
||||||
};
|
};
|
||||||
|
|
||||||
if (BALogSwitched) {
|
rowIndex = Utils::addBARow(QString(ip), QString(login) + ":" + QString(pass), QString::number((passCounter / (double)(MaxFTPPass*MaxFTPLogin)) * 100).mid(0, 4) + "%", rowIndex);
|
||||||
if (rowIndex == -1) {
|
|
||||||
rowIndex = nesca_3::addBARow(QString(ip),
|
|
||||||
QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((passCounter / (double)(MaxFTPPass*MaxFTPLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((passCounter / (double)(MaxFTPPass*MaxFTPLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else { rowIndex = -1; }
|
|
||||||
++passCounter;
|
++passCounter;
|
||||||
Sleep(50);
|
Sleep(50);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip), "--", "FAIL", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip), "--", "FAIL");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, "--", "FAIL");
|
|
||||||
}
|
|
||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,8 +55,7 @@ void updateLogin() {
|
|||||||
while(fgets(buffFG, 32, loginList) != NULL)
|
while(fgets(buffFG, 32, loginList) != NULL)
|
||||||
{
|
{
|
||||||
MaxLogin++;
|
MaxLogin++;
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
rewind(loginList);
|
rewind(loginList);
|
||||||
@ -75,8 +74,7 @@ void updateLogin() {
|
|||||||
|
|
||||||
if(strstr(buffFG, "\n") != NULL) strncat(loginLst[i++], buffFG, strlen(buffFG) - 1);
|
if(strstr(buffFG, "\n") != NULL) strncat(loginLst[i++], buffFG, strlen(buffFG) - 1);
|
||||||
else strncat(loginLst[i++], buffFG, strlen(buffFG));
|
else strncat(loginLst[i++], buffFG, strlen(buffFG));
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if(FileUpdater::oldLoginLstSize == 0) stt->doEmitionGreenFoundData("Login list loaded (" + QString::number(MaxLogin) + " entries)");
|
if(FileUpdater::oldLoginLstSize == 0) stt->doEmitionGreenFoundData("Login list loaded (" + QString::number(MaxLogin) + " entries)");
|
||||||
@ -110,8 +108,7 @@ void updatePass() {
|
|||||||
while(fgets(buffFG, 32, passList) != NULL)
|
while(fgets(buffFG, 32, passList) != NULL)
|
||||||
{
|
{
|
||||||
MaxPass++;
|
MaxPass++;
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
rewind(passList);
|
rewind(passList);
|
||||||
@ -130,8 +127,7 @@ void updatePass() {
|
|||||||
|
|
||||||
if(strstr(buffFG, "\n") != NULL) strncat(passLst[i++], buffFG, strlen(buffFG) - 1);
|
if(strstr(buffFG, "\n") != NULL) strncat(passLst[i++], buffFG, strlen(buffFG) - 1);
|
||||||
else strncat(passLst[i++], buffFG, strlen(buffFG));
|
else strncat(passLst[i++], buffFG, strlen(buffFG));
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if(FileUpdater::oldPassLstSize == 0) stt->doEmitionGreenFoundData("Password list loaded (" + QString::number(MaxPass) + " entries)");
|
if(FileUpdater::oldPassLstSize == 0) stt->doEmitionGreenFoundData("Password list loaded (" + QString::number(MaxPass) + " entries)");
|
||||||
@ -157,7 +153,6 @@ void updateSSH() {
|
|||||||
MaxSSHPass = 0;
|
MaxSSHPass = 0;
|
||||||
|
|
||||||
char buffFG[32] = {0};
|
char buffFG[32] = {0};
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
|
||||||
|
|
||||||
FILE *sshlpList = fopen(SSH_PASS_FN, "r");
|
FILE *sshlpList = fopen(SSH_PASS_FN, "r");
|
||||||
|
|
||||||
@ -166,7 +161,7 @@ void updateSSH() {
|
|||||||
while(fgets(buffFG, 32, sshlpList) != NULL)
|
while(fgets(buffFG, 32, sshlpList) != NULL)
|
||||||
{
|
{
|
||||||
++MaxSSHPass;
|
++MaxSSHPass;
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
buffFG[0] = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -186,8 +181,7 @@ void updateSSH() {
|
|||||||
|
|
||||||
if(strstr(buffFG, "\n") != NULL) strncat(sshlpLst[i++], buffFG, strlen(buffFG) - 1);
|
if(strstr(buffFG, "\n") != NULL) strncat(sshlpLst[i++], buffFG, strlen(buffFG) - 1);
|
||||||
else strncat(sshlpLst[i++], buffFG, strlen(buffFG));
|
else strncat(sshlpLst[i++], buffFG, strlen(buffFG));
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if(FileUpdater::oldSSHLstSize == 0) stt->doEmitionGreenFoundData("SSH Password list loaded (" + QString::number(MaxSSHPass) + " entries)");
|
if(FileUpdater::oldSSHLstSize == 0) stt->doEmitionGreenFoundData("SSH Password list loaded (" + QString::number(MaxSSHPass) + " entries)");
|
||||||
@ -221,8 +215,7 @@ void updateWFLogin() {
|
|||||||
while(fgets(buffFG, 32, wfLoginList) != NULL)
|
while(fgets(buffFG, 32, wfLoginList) != NULL)
|
||||||
{
|
{
|
||||||
MaxWFLogin++;
|
MaxWFLogin++;
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
rewind(wfLoginList);
|
rewind(wfLoginList);
|
||||||
@ -241,8 +234,7 @@ void updateWFLogin() {
|
|||||||
|
|
||||||
if(strstr(buffFG, "\n") != NULL) strncat(wfLoginLst[i++], buffFG, strlen(buffFG) - 1);
|
if(strstr(buffFG, "\n") != NULL) strncat(wfLoginLst[i++], buffFG, strlen(buffFG) - 1);
|
||||||
else strncat(wfLoginLst[i++], buffFG, strlen(buffFG));
|
else strncat(wfLoginLst[i++], buffFG, strlen(buffFG));
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if(FileUpdater::oldWFLoginLstSize == 0) stt->doEmitionGreenFoundData("WFLogin list loaded (" + QString::number(MaxWFLogin) + " entries)");
|
if(FileUpdater::oldWFLoginLstSize == 0) stt->doEmitionGreenFoundData("WFLogin list loaded (" + QString::number(MaxWFLogin) + " entries)");
|
||||||
@ -271,8 +263,7 @@ void updateWFPass() {
|
|||||||
while(fgets(buffFG, 32, wfPassList) != NULL)
|
while(fgets(buffFG, 32, wfPassList) != NULL)
|
||||||
{
|
{
|
||||||
MaxWFPass++;
|
MaxWFPass++;
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
rewind(wfPassList);
|
rewind(wfPassList);
|
||||||
@ -291,8 +282,7 @@ void updateWFPass() {
|
|||||||
|
|
||||||
if(strstr(buffFG, "\n") != NULL) strncat(wfPassLst[i++], buffFG, strlen(buffFG) - 1);
|
if(strstr(buffFG, "\n") != NULL) strncat(wfPassLst[i++], buffFG, strlen(buffFG) - 1);
|
||||||
else strncat(wfPassLst[i++], buffFG, strlen(buffFG));
|
else strncat(wfPassLst[i++], buffFG, strlen(buffFG));
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if(FileUpdater::oldWFPassLstSize == 0) stt->doEmitionGreenFoundData("WFPassword list loaded (" + QString::number(MaxWFPass) + " entries)");
|
if(FileUpdater::oldWFPassLstSize == 0) stt->doEmitionGreenFoundData("WFPassword list loaded (" + QString::number(MaxWFPass) + " entries)");
|
||||||
@ -321,8 +311,7 @@ void updateFTPLogin() {
|
|||||||
while (fgets(buffFG, 32, ftpLoginList) != NULL)
|
while (fgets(buffFG, 32, ftpLoginList) != NULL)
|
||||||
{
|
{
|
||||||
MaxFTPLogin++;
|
MaxFTPLogin++;
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
rewind(ftpLoginList);
|
rewind(ftpLoginList);
|
||||||
@ -341,8 +330,7 @@ void updateFTPLogin() {
|
|||||||
|
|
||||||
if (strstr(buffFG, "\n") != NULL) strncat(ftpLoginLst[i++], buffFG, strlen(buffFG) - 1);
|
if (strstr(buffFG, "\n") != NULL) strncat(ftpLoginLst[i++], buffFG, strlen(buffFG) - 1);
|
||||||
else strncat(ftpLoginLst[i++], buffFG, strlen(buffFG));
|
else strncat(ftpLoginLst[i++], buffFG, strlen(buffFG));
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if (FileUpdater::oldFTPLoginLstSize == 0) stt->doEmitionGreenFoundData("FTP login list loaded (" + QString::number(MaxFTPLogin) + " entries)");
|
if (FileUpdater::oldFTPLoginLstSize == 0) stt->doEmitionGreenFoundData("FTP login list loaded (" + QString::number(MaxFTPLogin) + " entries)");
|
||||||
@ -371,8 +359,7 @@ void updateFTPPass() {
|
|||||||
while (fgets(buffFG, 32, ftpPassList) != NULL)
|
while (fgets(buffFG, 32, ftpPassList) != NULL)
|
||||||
{
|
{
|
||||||
++MaxFTPPass;
|
++MaxFTPPass;
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
rewind(ftpPassList);
|
rewind(ftpPassList);
|
||||||
@ -391,8 +378,7 @@ void updateFTPPass() {
|
|||||||
|
|
||||||
if (strstr(buffFG, "\n") != NULL) strncat(ftpPassLst[i++], buffFG, strlen(buffFG) - 1);
|
if (strstr(buffFG, "\n") != NULL) strncat(ftpPassLst[i++], buffFG, strlen(buffFG) - 1);
|
||||||
else strncat(ftpPassLst[i++], buffFG, strlen(buffFG));
|
else strncat(ftpPassLst[i++], buffFG, strlen(buffFG));
|
||||||
//ZeroMemory(buffFG, sizeof(buffFG));
|
ZeroMemory(buffFG, sizeof(buffFG));
|
||||||
buffFG[0] = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if (FileUpdater::oldFTPPassLstSize == 0) stt->doEmitionGreenFoundData("FTP password list loaded (" + QString::number(MaxFTPPass) + " entries)");
|
if (FileUpdater::oldFTPPassLstSize == 0) stt->doEmitionGreenFoundData("FTP password list loaded (" + QString::number(MaxFTPPass) + " entries)");
|
||||||
@ -422,7 +408,7 @@ void updateList(const char *fileName, long *szPtr, void *funcPtr(void)) {
|
|||||||
void FileUpdater::updateLists() {
|
void FileUpdater::updateLists() {
|
||||||
running = true;
|
running = true;
|
||||||
while(globalScanFlag) {
|
while(globalScanFlag) {
|
||||||
Sleep(600000);
|
Sleep(1000);
|
||||||
if(!globalScanFlag) break;
|
if(!globalScanFlag) break;
|
||||||
loadOnce();
|
loadOnce();
|
||||||
}
|
}
|
||||||
|
@ -349,7 +349,7 @@ bool HikVis::checkSAFARI(const char * sDVRIP, int port) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#include "Utils.h"
|
||||||
lopaStr HikVis::hikLogin(const char * sDVRIP, int wDVRPort)
|
lopaStr HikVis::hikLogin(const char * sDVRIP, int wDVRPort)
|
||||||
{
|
{
|
||||||
lopaStr lps = { "UNKNOWN", "", "" };
|
lopaStr lps = { "UNKNOWN", "", "" };
|
||||||
@ -358,18 +358,15 @@ lopaStr HikVis::hikLogin(const char * sDVRIP, int wDVRPort)
|
|||||||
strcpy(ip, sDVRIP);
|
strcpy(ip, sDVRIP);
|
||||||
int rowIndex = -1;
|
int rowIndex = -1;
|
||||||
|
|
||||||
char login[64] = { 0 };
|
char login[32] = { 0 };
|
||||||
char pass[64] = { 0 };
|
char pass[32] = { 0 };
|
||||||
|
|
||||||
for (int i = 0; i < MaxLogin; ++i) {
|
for (int i = 0; i < MaxLogin; ++i) {
|
||||||
|
FileUpdater::cv.wait(FileUpdater::lk, [] {return FileUpdater::ready; });
|
||||||
|
strcpy(login, loginLst[i]);
|
||||||
for (int j = 0; j < MaxPass; ++j) {
|
for (int j = 0; j < MaxPass; ++j) {
|
||||||
FileUpdater::cv.wait(FileUpdater::lk, []{return FileUpdater::ready; });
|
FileUpdater::cv.wait(FileUpdater::lk, []{return FileUpdater::ready; });
|
||||||
if (!globalScanFlag) return lps;
|
if (!globalScanFlag) return lps;
|
||||||
/*ZeroMemory(login, 64);
|
|
||||||
ZeroMemory(pass, 64);*/
|
|
||||||
login[0] = 0;
|
|
||||||
pass[0] = 0;
|
|
||||||
strcpy(login, loginLst[i]);
|
|
||||||
strcpy(pass, passLst[j]);
|
strcpy(pass, passLst[j]);
|
||||||
|
|
||||||
NET_DVR_DEVICEINFO_V30 *info = 0;
|
NET_DVR_DEVICEINFO_V30 *info = 0;
|
||||||
@ -380,39 +377,20 @@ lopaStr HikVis::hikLogin(const char * sDVRIP, int wDVRPort)
|
|||||||
strcpy(lps.login, login);
|
strcpy(lps.login, login);
|
||||||
strcpy(lps.pass, pass);
|
strcpy(lps.pass, pass);
|
||||||
|
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip) + ":" + QString::number(wDVRPort), QString(login) + ":" + QString(pass), "OK", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip) + ":" + QString::number(wDVRPort), QString(login) + ":" + QString(pass), "OK");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(login) + ":" + QString(pass), "OK");
|
|
||||||
}
|
|
||||||
|
|
||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (BALogSwitched) {
|
rowIndex = Utils::addBARow(QString(ip) + ":" + QString::number(wDVRPort), QString(login) + ":" + QString(pass), QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%", rowIndex);
|
||||||
if (rowIndex == -1) {
|
|
||||||
rowIndex = nesca_3::addBARow(QString(ip) + ":" + QString::number(wDVRPort),
|
|
||||||
QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else{ rowIndex = -1; }
|
|
||||||
++passCounter;
|
++passCounter;
|
||||||
Sleep(200);
|
Sleep(200);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip) + ":" + QString::number(wDVRPort), "--", "FAIL", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip) + ":" + QString::number(wDVRPort), "--", "FAIL");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, "--", "FAIL");
|
|
||||||
}
|
|
||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -467,6 +445,7 @@ int rvi_login_ptr(const char *sDVRIP, int wDVRPort, const char *login, const cha
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#include "Utils.h"
|
||||||
lopaStr HikVis::rviLogin(const char * sDVRIP, int wDVRPort)
|
lopaStr HikVis::rviLogin(const char * sDVRIP, int wDVRPort)
|
||||||
{
|
{
|
||||||
lopaStr lps = { "UNKNOWN", "", "" };
|
lopaStr lps = { "UNKNOWN", "", "" };
|
||||||
@ -475,18 +454,15 @@ lopaStr HikVis::rviLogin(const char * sDVRIP, int wDVRPort)
|
|||||||
strcpy(ip, sDVRIP);
|
strcpy(ip, sDVRIP);
|
||||||
int rowIndex = -1;
|
int rowIndex = -1;
|
||||||
|
|
||||||
char login[64] = { 0 };
|
char login[32] = { 0 };
|
||||||
char pass[64] = { 0 };
|
char pass[32] = { 0 };
|
||||||
|
|
||||||
for (int i = 0; i < MaxLogin; ++i) {
|
for (int i = 0; i < MaxLogin; ++i) {
|
||||||
|
FileUpdater::cv.wait(FileUpdater::lk, [] {return FileUpdater::ready; });
|
||||||
|
strcpy(login, loginLst[i]);
|
||||||
for (int j = 0; j < MaxPass; ++j) {
|
for (int j = 0; j < MaxPass; ++j) {
|
||||||
FileUpdater::cv.wait(FileUpdater::lk, []{return FileUpdater::ready; });
|
FileUpdater::cv.wait(FileUpdater::lk, []{return FileUpdater::ready; });
|
||||||
if (!globalScanFlag) return lps;
|
if (!globalScanFlag) return lps;
|
||||||
/*ZeroMemory(login, 64);
|
|
||||||
ZeroMemory(pass, 64);*/
|
|
||||||
login[0] = 0;
|
|
||||||
pass[0] = 0;
|
|
||||||
strcpy(login, loginLst[i]);
|
|
||||||
strcpy(pass, passLst[j]);
|
strcpy(pass, passLst[j]);
|
||||||
|
|
||||||
if (strlen(login) > 8) break;
|
if (strlen(login) > 8) break;
|
||||||
@ -496,39 +472,20 @@ lopaStr HikVis::rviLogin(const char * sDVRIP, int wDVRPort)
|
|||||||
strcpy(lps.login, login);
|
strcpy(lps.login, login);
|
||||||
strcpy(lps.pass, pass);
|
strcpy(lps.pass, pass);
|
||||||
|
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip) + ":" + QString::number(wDVRPort), QString(login) + ":" + QString(pass), "OK", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip) + ":" + QString::number(wDVRPort), QString(login) + ":" + QString(pass), "OK");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(login) + ":" + QString(pass), "OK");
|
|
||||||
}
|
|
||||||
|
|
||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (BALogSwitched) {
|
rowIndex = Utils::addBARow(QString(ip) + ":" + QString::number(wDVRPort), QString(login) + ":" + QString(pass), QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%", rowIndex);
|
||||||
if (rowIndex == -1) {
|
|
||||||
rowIndex = nesca_3::addBARow(QString(ip) + ":" + QString::number(wDVRPort),
|
|
||||||
QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else { rowIndex = -1; }
|
|
||||||
++passCounter;
|
++passCounter;
|
||||||
Sleep(200);
|
Sleep(200);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip) + ":" + QString::number(wDVRPort), "--", "FAIL", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip) + ":" + QString::number(wDVRPort), "--", "FAIL");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, "--", "FAIL");
|
|
||||||
}
|
|
||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
89
IPCAuth.cpp
89
IPCAuth.cpp
@ -6,14 +6,15 @@
|
|||||||
lopaStr IPC::IPCBrute(const char *ip, int port, char *SPEC, const std::string *cookie)
|
lopaStr IPC::IPCBrute(const char *ip, int port, char *SPEC, const std::string *cookie)
|
||||||
{
|
{
|
||||||
lopaStr lps = {"UNKNOWN", "", ""};
|
lopaStr lps = {"UNKNOWN", "", ""};
|
||||||
bool result = true;
|
int result = 0;
|
||||||
char login[128] = {0};
|
char login[128] = {0};
|
||||||
char pass[128] = {0};
|
char pass[128] = {0};
|
||||||
char request[1024] = {0};
|
char request[1024] = {0};
|
||||||
int passCounter = 1;
|
int passCounter = 1;
|
||||||
int rowIndex = -1;
|
int rowIndex = -1;
|
||||||
|
|
||||||
std::vector<char*> negVector;
|
std::vector<char*> negVector;
|
||||||
|
std::vector<char*> slideVector;
|
||||||
if(strcmp(SPEC, "IPC") == 0)
|
if(strcmp(SPEC, "IPC") == 0)
|
||||||
{
|
{
|
||||||
negVector.push_back("<UserGroup>Invalid</UserGroup>");
|
negVector.push_back("<UserGroup>Invalid</UserGroup>");
|
||||||
@ -91,6 +92,11 @@ lopaStr IPC::IPCBrute(const char *ip, int port, char *SPEC, const std::string *c
|
|||||||
{
|
{
|
||||||
negVector.push_back("Invalid credentials");
|
negVector.push_back("Invalid credentials");
|
||||||
}
|
}
|
||||||
|
else if (strcmp(SPEC, "XMSECU") == 0)
|
||||||
|
{
|
||||||
|
slideVector.push_back("errornumber=-1");
|
||||||
|
negVector.push_back("Log in failed");
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
stt->doEmitionRedFoundData("[_IPCameraBrute] No \"SPEC\" specified!");
|
stt->doEmitionRedFoundData("[_IPCameraBrute] No \"SPEC\" specified!");
|
||||||
@ -101,22 +107,20 @@ lopaStr IPC::IPCBrute(const char *ip, int port, char *SPEC, const std::string *c
|
|||||||
for(int i = 0; i < MaxLogin; ++i)
|
for(int i = 0; i < MaxLogin; ++i)
|
||||||
{
|
{
|
||||||
if(!globalScanFlag) break;
|
if(!globalScanFlag) break;
|
||||||
if(strcmp(loginLst[i], " ") == 0) continue;
|
FileUpdater::cv.wait(FileUpdater::lk, [] {return FileUpdater::ready; });
|
||||||
//ZeroMemory(login, sizeof(login));
|
strcpy(login, loginLst[i]);
|
||||||
login[0] = 0;
|
if(strcmp(login, " ") == 0) continue;
|
||||||
strcpy(login, loginLst[i]);
|
|
||||||
|
|
||||||
for(int j = 0; j < MaxPass; ++j)
|
for(int j = 0; j < MaxPass; ++j)
|
||||||
{
|
{
|
||||||
FileUpdater::cv.wait(FileUpdater::lk, []{return FileUpdater::ready;});
|
FileUpdater::cv.wait(FileUpdater::lk, []{return FileUpdater::ready;});
|
||||||
if(!globalScanFlag) break;
|
if(!globalScanFlag) break;
|
||||||
if(strcmp(passLst[j], " ") == 0) continue;
|
if(strcmp(passLst[j], " ") == 0) continue;
|
||||||
|
result = 0;
|
||||||
|
|
||||||
//ZeroMemory(pass, sizeof(pass));
|
|
||||||
pass[0] = 0;
|
|
||||||
strcpy(pass, passLst[j]);
|
strcpy(pass, passLst[j]);
|
||||||
|
|
||||||
//ZeroMemory(request, sizeof(request));
|
ZeroMemory(request, sizeof(request));
|
||||||
request[0] = 0;
|
request[0] = 0;
|
||||||
if(strcmp(SPEC, "IPC") == 0)
|
if(strcmp(SPEC, "IPC") == 0)
|
||||||
{
|
{
|
||||||
@ -191,7 +195,6 @@ lopaStr IPC::IPCBrute(const char *ip, int port, char *SPEC, const std::string *c
|
|||||||
}
|
}
|
||||||
else if (strcmp(SPEC, "JUAN") == 0)
|
else if (strcmp(SPEC, "JUAN") == 0)
|
||||||
{
|
{
|
||||||
//sprintf(request, "%s:%d/cgi-bin/gw.cgi?xml=<juan ver=\"\" squ=\"\" dir=\"\"><envload type=\"0\" usr=\"%s\" pwd=\"%s\"/></juan>&_=1450923182693",
|
|
||||||
sprintf(request, "%s/cgi-bin/gw.cgi?xml=%%3Cjuan%%20ver=%%22%%22%%20squ=%%22%%22%%20dir=%%22%%22%%3E%%3Cenvload%%20type=%%220%%22%%20usr=%%22%s%%22%%20pwd=%%22%s%%22/%%3E%%3C/juan%%3E&_=1450923182693",
|
sprintf(request, "%s/cgi-bin/gw.cgi?xml=%%3Cjuan%%20ver=%%22%%22%%20squ=%%22%%22%%20dir=%%22%%22%%3E%%3Cenvload%%20type=%%220%%22%%20usr=%%22%s%%22%%20pwd=%%22%s%%22/%%3E%%3C/juan%%3E&_=1450923182693",
|
||||||
ip, login, pass);
|
ip, login, pass);
|
||||||
}
|
}
|
||||||
@ -226,6 +229,12 @@ Content-Disposition: form-data; name=\"password\"\r\n\
|
|||||||
Content-Length: %d\r\n\r\n\
|
Content-Length: %d\r\n\r\n\
|
||||||
%s", cl, tempPostData);
|
%s", cl, tempPostData);
|
||||||
}
|
}
|
||||||
|
else if (strcmp(SPEC, "XMSECU") == 0)
|
||||||
|
{
|
||||||
|
doPost = true;
|
||||||
|
sprintf(request, "%s/Login.htm", ip);
|
||||||
|
sprintf(postData, "command=login&username=%s&password=%s", login, pass);
|
||||||
|
}
|
||||||
|
|
||||||
std::string buffer;
|
std::string buffer;
|
||||||
if (cookie->size() > 0) {
|
if (cookie->size() > 0) {
|
||||||
@ -241,65 +250,53 @@ Content-Length: %d\r\n\r\n\
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (res == -2) {
|
if (res == -2) {
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip), "--", "FAIL", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip), "--", "FAIL");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, "--", "FAIL");
|
|
||||||
}
|
|
||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
else if (res != -1) {
|
else if (res != -1) {
|
||||||
|
for (int i = 0; i < slideVector.size(); ++i)
|
||||||
|
{
|
||||||
|
if (Utils::ustrstr(buffer, slideVector[i]) != -1)
|
||||||
|
{
|
||||||
|
result = -1;
|
||||||
|
break;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
if (-1 == result) {
|
||||||
|
passCounter += MaxPass - 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
for (int i = 0; i < negVector.size(); ++i)
|
for (int i = 0; i < negVector.size(); ++i)
|
||||||
{
|
{
|
||||||
if (Utils::ustrstr(buffer, negVector[i]) != -1)
|
if (Utils::ustrstr(buffer, negVector[i]) != -1)
|
||||||
{
|
{
|
||||||
result = false;
|
result = 1;
|
||||||
break;
|
break;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
if (result)
|
if (0 == result)
|
||||||
{
|
{
|
||||||
strcpy(lps.login, loginLst[i]);
|
strcpy(lps.login, login);
|
||||||
strcpy(lps.pass, passLst[j]);
|
strcpy(lps.pass, pass);
|
||||||
|
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(ip), QString(login) + ":" + QString(pass), "OK", rowIndex);
|
||||||
nesca_3::addBARow(QString(ip), QString(login) + ":" + QString(pass), "OK");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(login) + ":" + QString(pass), "OK");
|
|
||||||
}
|
|
||||||
|
|
||||||
return lps;
|
return lps;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (BALogSwitched) {
|
rowIndex = Utils::addBARow(QString(ip), QString(login) + ":" + QString(pass), QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%", rowIndex);
|
||||||
if (rowIndex == -1) {
|
|
||||||
rowIndex = nesca_3::addBARow(QString(ip),
|
|
||||||
QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else { rowIndex = -1; }
|
|
||||||
++passCounter;
|
++passCounter;
|
||||||
Sleep(100);
|
Sleep(100);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
if (rowIndex == -1) {
|
|
||||||
nesca_3::addBARow(QString(ip), "--", "FAIL");
|
rowIndex = Utils::addBARow(QString(ip), "--", "FAIL", rowIndex);
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, "--", "FAIL");
|
|
||||||
}
|
|
||||||
return lps;
|
return lps;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1399,7 +1399,7 @@ void MainStarter::runAuxiliaryThreads() {
|
|||||||
|
|
||||||
void MainStarter::createResultFiles() {
|
void MainStarter::createResultFiles() {
|
||||||
char fileName[256] = { 0 };
|
char fileName[256] = { 0 };
|
||||||
sprintf(fileName, "./result_files-%s", Utils::getStartDate().c_str());
|
sprintf(fileName, "./" DIR_NAME "%s_%s", Utils::getStartDate().c_str(), Utils::getCurrentTarget().c_str());
|
||||||
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
|
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
|
||||||
bool res = CreateDirectoryA(fileName, NULL);
|
bool res = CreateDirectoryA(fileName, NULL);
|
||||||
if (!res) {
|
if (!res) {
|
||||||
@ -1484,6 +1484,10 @@ void MainStarter::start(const char* targets, const char* ports) {
|
|||||||
|
|
||||||
thread_setup();
|
thread_setup();
|
||||||
|
|
||||||
|
|
||||||
|
QString fileSuffix = QString(targets);
|
||||||
|
fileSuffix = fileSuffix.mid(fileSuffix.lastIndexOf("/") + 1);
|
||||||
|
Utils::setCurrentTarget(fileSuffix.toUtf8().constData());
|
||||||
createResultFiles();
|
createResultFiles();
|
||||||
|
|
||||||
if (loadTargets(targets) == -1 ||
|
if (loadTargets(targets) == -1 ||
|
||||||
|
50
SSHAuth.cpp
50
SSHAuth.cpp
@ -83,19 +83,15 @@ int _sshConnect(const char *user, const char *pass, const char *host, int port)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int check_ssh_pass(const int rowIndex, const char *user, const char *pass,
|
int check_ssh_pass(int rowIndex, const char *user, const char *pass,
|
||||||
const char *userPass, const char *host, int port,
|
const char *userPass, const char *host, int port,
|
||||||
std::string *buffer, const char *banner) {
|
std::string *buffer, const char *banner) {
|
||||||
int res = _sshConnect(user, pass, host, port);
|
int res = _sshConnect(user, pass, host, port);
|
||||||
|
|
||||||
if(res == 0)
|
if(res == 0)
|
||||||
{
|
{
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(host), QString(userPass) + "@" + QString(host), "OK", rowIndex);
|
||||||
nesca_3::addBARow(QString(host), QString(userPass) + "@" + QString(host), "OK");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(userPass) + "@" + QString(host), "OK");
|
|
||||||
}
|
|
||||||
buffer->append(userPass);
|
buffer->append(userPass);
|
||||||
buffer->append("@");
|
buffer->append("@");
|
||||||
buffer->append(host);
|
buffer->append(host);
|
||||||
@ -132,61 +128,29 @@ int SSHBrute(const char* host, int port, std::string *buffer, const char *banner
|
|||||||
strncpy(login, temp, ptr1 - temp);
|
strncpy(login, temp, ptr1 - temp);
|
||||||
strcpy(pass, ptr1 + 1);
|
strcpy(pass, ptr1 + 1);
|
||||||
|
|
||||||
if (BALogSwitched) {
|
rowIndex = Utils::addBARow(QString(host) + ":" + QString::number(port), QString(login) + ":" + QString(pass), QString::number((passCounter / (double)(MaxSSHPass)) * 100).mid(0, 4) + "%", rowIndex);
|
||||||
if (rowIndex == -1) {
|
|
||||||
rowIndex = nesca_3::addBARow(QString(host) + ":" + QString::number(port),
|
|
||||||
QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((passCounter / (double)(MaxSSHPass)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((passCounter / (double)(MaxSSHPass)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else { rowIndex = -1; }
|
|
||||||
++passCounter;
|
++passCounter;
|
||||||
|
|
||||||
res = check_ssh_pass(rowIndex, login, pass, temp, host, port, buffer, banner);
|
res = check_ssh_pass(rowIndex, login, pass, temp, host, port, buffer, banner);
|
||||||
//ZeroMemory(login, sizeof(login));
|
|
||||||
//ZeroMemory(pass, sizeof(pass));
|
|
||||||
//ZeroMemory(temp, sizeof(temp));
|
|
||||||
login[0] = 0;
|
|
||||||
pass[0] = 0;
|
|
||||||
temp[0] = 0;
|
|
||||||
|
|
||||||
if(res == 0)
|
if(res == 0)
|
||||||
{
|
{
|
||||||
if (i == 0) {
|
if (i == 0) {
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(host) + ":" + QString::number(port), "--", "FAILHIT", rowIndex);
|
||||||
nesca_3::addBARow(QString(host) + ":" + QString::number(port), "--", "FAILHIT");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, "--", "FAILHIT");
|
|
||||||
}
|
|
||||||
return -2; //Failhit
|
return -2; //Failhit
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else if(res == -2)
|
else if(res == -2)
|
||||||
{
|
{
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(host) + ":" + QString::number(port), "--", "FAIL", rowIndex);
|
||||||
nesca_3::addBARow(QString(host) + ":" + QString::number(port), "--", "FAIL");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, "--", "FAIL");
|
|
||||||
}
|
|
||||||
return -2;
|
return -2;
|
||||||
};
|
};
|
||||||
|
|
||||||
Sleep(500);
|
Sleep(500);
|
||||||
};
|
};
|
||||||
|
|
||||||
if (rowIndex == -1) {
|
rowIndex = Utils::addBARow(QString(host) + ":" + QString::number(port), "--", "FAIL", rowIndex);
|
||||||
nesca_3::addBARow(QString(host) + ":" + QString::number(port), "--", "FAIL");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, "--", "FAIL");
|
|
||||||
}
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
36
Utils.cpp
36
Utils.cpp
@ -1,8 +1,10 @@
|
|||||||
#include "Utils.h"
|
#include "Utils.h"
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
#include "STh.h"
|
||||||
|
|
||||||
std::string Utils::startDate;
|
std::string Utils::startDate;
|
||||||
std::string Utils::startTime;
|
std::string Utils::startTime;
|
||||||
|
std::string Utils::currentTarget;
|
||||||
|
|
||||||
//void Utils::emitScaryError() {
|
//void Utils::emitScaryError() {
|
||||||
// __asm{
|
// __asm{
|
||||||
@ -45,26 +47,44 @@ std::string Utils::getHeaderValue(std::string *buff, const std::string headerVal
|
|||||||
}
|
}
|
||||||
void Utils::saveStartDate() {
|
void Utils::saveStartDate() {
|
||||||
QDate date = QDate::currentDate();
|
QDate date = QDate::currentDate();
|
||||||
startDate = std::to_string(date.day())
|
startDate = date.toString("dd.MM.yyyy").toUtf8().constData();
|
||||||
+ "_"
|
|
||||||
+ std::to_string(date.month())
|
|
||||||
+ "_"
|
|
||||||
+ std::to_string(date.year());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Utils::saveStartTime() {
|
void Utils::saveStartTime() {
|
||||||
QTime time = QTime::currentTime();
|
QTime time = QTime::currentTime();
|
||||||
startTime = std::to_string(time.hour())
|
startTime = time.toString("HH_mm").toUtf8().constData();
|
||||||
+ "_"
|
|
||||||
+ std::to_string(time.minute());
|
|
||||||
}
|
}
|
||||||
std::string Utils::getStartDate() {
|
std::string Utils::getStartDate() {
|
||||||
return startDate;
|
return startDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int Utils::addBARow(QString str1, QString str2, QString str3, int rowIndex) {
|
||||||
|
if (BALogSwitched) {
|
||||||
|
if (rowIndex == -1) {
|
||||||
|
rowIndex = nesca_3::addBARow(str1, str2, str3);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
stt->doEmitionChangeBARow(rowIndex, str2, str3);
|
||||||
|
}
|
||||||
|
|
||||||
|
return rowIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
std::string Utils::getStartTime() {
|
std::string Utils::getStartTime() {
|
||||||
return startTime;
|
return startTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Utils::setCurrentTarget(const std::string target) {
|
||||||
|
currentTarget = target;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string Utils::getCurrentTarget() {
|
||||||
|
return currentTarget;
|
||||||
|
}
|
||||||
|
|
||||||
int Utils::isDigest(const std::string *buffer) {
|
int Utils::isDigest(const std::string *buffer) {
|
||||||
if (Utils::ustrstr(buffer, "401 authorization") != -1
|
if (Utils::ustrstr(buffer, "401 authorization") != -1
|
||||||
|| Utils::ustrstr(buffer, "401 unauthorized") != -1
|
|| Utils::ustrstr(buffer, "401 unauthorized") != -1
|
||||||
|
6
Utils.h
6
Utils.h
@ -28,6 +28,7 @@ private:
|
|||||||
class Utils {
|
class Utils {
|
||||||
private: static std::string startDate;
|
private: static std::string startDate;
|
||||||
private: static std::string startTime;
|
private: static std::string startTime;
|
||||||
|
private: static std::string currentTarget;
|
||||||
public:
|
public:
|
||||||
static int isDigest(const std::string *buffer);
|
static int isDigest(const std::string *buffer);
|
||||||
|
|
||||||
@ -53,7 +54,7 @@ public:
|
|||||||
else return -1;
|
else return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T> static int ustrstr(const T *str1,
|
template<typename T> static int ustrstr(T *str1,
|
||||||
const char* str2c,
|
const char* str2c,
|
||||||
const locale& loc = locale()) {
|
const locale& loc = locale()) {
|
||||||
|
|
||||||
@ -91,7 +92,10 @@ public:
|
|||||||
static void saveStartTime();
|
static void saveStartTime();
|
||||||
static std::string getStartDate();
|
static std::string getStartDate();
|
||||||
static std::string getStartTime();
|
static std::string getStartTime();
|
||||||
|
static void setCurrentTarget(const std::string target);
|
||||||
|
static std::string getCurrentTarget();
|
||||||
static void emitScaryError();
|
static void emitScaryError();
|
||||||
|
static int addBARow(QString str1, QString str2, QString str3, int rowIndex);
|
||||||
static std::string getHeaderValue(std::string *buff, const std::string headerValue, const std::string outputName);
|
static std::string getHeaderValue(std::string *buff, const std::string headerValue, const std::string outputName);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -83,17 +83,7 @@ lopaStr WFClass::doGetCheck(const char *ip,
|
|||||||
Connector con;
|
Connector con;
|
||||||
if(con.nConnect(nip, port, &buffer) <= 0) return result;
|
if(con.nConnect(nip, port, &buffer) <= 0) return result;
|
||||||
|
|
||||||
if (BALogSwitched) {
|
rowIndex = Utils::addBARow(QString(ip), QString(login) + ":" + QString(pass), QString::number((++passCounter / (double)(MaxWFPass*MaxWFLogin)) * 100).mid(0, 4) + "%", rowIndex);
|
||||||
if (rowIndex == -1) {
|
|
||||||
//stt->doEmitionAddBARow(rowIndex, QString(ip) + ":" + QString::number(port),
|
|
||||||
// QString(login) + ":" + QString(pass),
|
|
||||||
// QString::number((++passCounter / (double)(MaxWFPass*MaxWFLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((++passCounter / (double)(MaxWFPass*MaxWFLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
result = parseResponse(ip, port, &buffer, formVal, login, pass);
|
result = parseResponse(ip, port, &buffer, formVal, login, pass);
|
||||||
if(i == 0) ++i;
|
if(i == 0) ++i;
|
||||||
@ -144,18 +134,8 @@ lopaStr WFClass::doPostCheck(const char *ip,
|
|||||||
std::string buffer;
|
std::string buffer;
|
||||||
Connector con;
|
Connector con;
|
||||||
if (con.nConnect(nip, port, &buffer, postData) <= 0) return result;
|
if (con.nConnect(nip, port, &buffer, postData) <= 0) return result;
|
||||||
|
|
||||||
if (BALogSwitched) {
|
rowIndex = Utils::addBARow(QString(ip), QString(login) + ":" + QString(pass), QString::number((++passCounter / (double)(MaxWFPass*MaxWFLogin)) * 100).mid(0, 4) + "%", rowIndex);
|
||||||
if (rowIndex == -1) {
|
|
||||||
//stt->doEmitionAddBARow(rowIndex, QString(ip) + ":" + QString::number(port),
|
|
||||||
// QString(login) + ":" + QString(pass),
|
|
||||||
// QString::number((++passCounter / (double)(MaxWFPass*MaxWFLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
stt->doEmitionChangeBARow(rowIndex, QString(login) + ":" + QString(pass),
|
|
||||||
QString::number((++passCounter / (double)(MaxWFPass*MaxWFLogin)) * 100).mid(0, 4) + "%");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
++passCounter;
|
++passCounter;
|
||||||
|
|
||||||
return parseResponse(ip, port, &buffer, formVal, login, pass);
|
return parseResponse(ip, port, &buffer, formVal, login, pass);
|
||||||
|
183
finder.cpp
183
finder.cpp
@ -248,21 +248,28 @@ bool isNegative(const std::string *buff, const char *ip, int port, const char *c
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::size_t ptr1 = buff->find("\r\n\r\n");
|
//if (buff->size() < 200) {
|
||||||
if (ptr1 != -1) {
|
// if (buff->find("rtsp") == -1) {
|
||||||
int sz = buff->size();
|
// std::size_t ptr1 = buff->find("\r\n\r\n");
|
||||||
int nSz = buff->substr(ptr1, sz).size() - 4;
|
// if (ptr1 != -1) {
|
||||||
if (nSz < 100) {
|
// int sz = buff->size();
|
||||||
if (gNegDebugMode)
|
// int nSz = buff->substr(ptr1, sz).size() - 4;
|
||||||
{
|
// if (nSz < 100) {
|
||||||
QTextCodec *nCodec = QTextCodec::codecForName("Windows-1251");
|
// if (gNegDebugMode)
|
||||||
stt->doEmitionDebugFoundData("[<a href=\"" + QString(ip) +
|
// {
|
||||||
"/\"><font color=\"#0084ff\">" + QString(ip) +
|
// QTextCodec *nCodec = QTextCodec::codecForName("Windows-1251");
|
||||||
"</font></a>]\tNegative hit: Size:" + QString::number(nSz));
|
// stt->doEmitionDebugFoundData("[<a href=\"" + QString(ip) +
|
||||||
}
|
// "/\"><font color=\"#0084ff\">" + QString(ip) +
|
||||||
return true;
|
// "</font></a>]\tNegative hit: Size:" + QString::number(nSz));
|
||||||
}
|
// }
|
||||||
}
|
|
||||||
|
// ++filtered;
|
||||||
|
// return true;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
int globalSearchPrnt(const std::string *buff)
|
int globalSearchPrnt(const std::string *buff)
|
||||||
@ -391,7 +398,7 @@ int sharedDetector(const char * ip, int port, const std::string *buffcpy, const
|
|||||||
if(Utils::ustrstr(buffcpy, "hikvision-webs") != -1
|
if(Utils::ustrstr(buffcpy, "hikvision-webs") != -1
|
||||||
|| (
|
|| (
|
||||||
(Utils::ustrstr(buffcpy, "hikvision digital") != -1 || Utils::ustrstr(buffcpy, "doc/page/login.asp") != -1)
|
(Utils::ustrstr(buffcpy, "hikvision digital") != -1 || Utils::ustrstr(buffcpy, "doc/page/login.asp") != -1)
|
||||||
&& Utils::ustrstr(buffcpy, "dvrdvs-webs") != -1 || Utils::ustrstr(buffcpy, "app-webs") != -1)
|
&& Utils::ustrstr(buffcpy, "dvrdvs-webs") != -1 || Utils::ustrstr(buffcpy, "app-webs") != -1 || Utils::ustrstr(buffcpy, "DNVRS-Webs") != -1)
|
||||||
||
|
||
|
||||||
(Utils::ustrstr(buffcpy, "lapassword") != -1
|
(Utils::ustrstr(buffcpy, "lapassword") != -1
|
||||||
&& Utils::ustrstr(buffcpy, "lausername") != -1
|
&& Utils::ustrstr(buffcpy, "lausername") != -1
|
||||||
@ -463,10 +470,12 @@ int sharedDetector(const char * ip, int port, const std::string *buffcpy, const
|
|||||||
&& Utils::ustrstr(buffcpy, "login_chk_usr_pwd") != -1
|
&& Utils::ustrstr(buffcpy, "login_chk_usr_pwd") != -1
|
||||||
) return 57; //Network video client (http://203.190.113.54:60001/)
|
) return 57; //Network video client (http://203.190.113.54:60001/)
|
||||||
if (Utils::ustrstr(buffcpy, "QlikView") != -1) return 58; //QLikView (http://203.96.113.183/qlikview/login.htm)
|
if (Utils::ustrstr(buffcpy, "QlikView") != -1) return 58; //QLikView (http://203.96.113.183/qlikview/login.htm)
|
||||||
if (Utils::ustrstr(buffcpy, "RTSP/1.0") != -1) return 59; //RTSP (http://121.72.55.19:554/ Hisilicon Ipcam)
|
if (Utils::ustrstr(buffcpy, "RTSP/1.") != -1) return 59; //RTSP (http://121.72.55.19:554/ Hisilicon Ipcam)
|
||||||
if (Utils::ustrstr(buffcpy, "ACTi Corporation") != -1) return 60; //ACTi (http://87.197.30.20/cgi-bin/videoconfiguration.cgi)
|
if (Utils::ustrstr(buffcpy, "ACTi Corporation") != -1) return 60; //ACTi (http://87.197.30.20/cgi-bin/videoconfiguration.cgi)
|
||||||
if (Utils::ustrstr(buffcpy, "airos_logo") != -1) return 61; //AirOS (http://103.5.73.114/login.cgi?uri=/)
|
if (Utils::ustrstr(buffcpy, "airos_logo") != -1) return 61; //AirOS (http://103.5.73.114/login.cgi?uri=/)
|
||||||
|
if (Utils::ustrstr(buffcpy, "NetSuveillanceWebCookie") != -1 &&
|
||||||
|
Utils::ustrstr(buffcpy, "resizeL") != -1) return 62; //XMSECU (http://121.72.179.76/Login.htm)
|
||||||
|
|
||||||
//if (Utils::ustrstr(buffcpy, "ShareCenter") != -1) return 58; //ShareCenter (http://49.50.207.6/)
|
//if (Utils::ustrstr(buffcpy, "ShareCenter") != -1) return 58; //ShareCenter (http://49.50.207.6/)
|
||||||
|
|
||||||
if (Utils::ustrstr(buffcpy, "nas - ") != -1
|
if (Utils::ustrstr(buffcpy, "nas - ") != -1
|
||||||
@ -597,12 +606,12 @@ int __checkFileExistence(int flag)
|
|||||||
{
|
{
|
||||||
char fileName[64] = {0};
|
char fileName[64] = {0};
|
||||||
|
|
||||||
if (flag == -22) sprintf(fileName, "./result_files-%s/" TYPE5 ".html", Utils::getStartDate().c_str());
|
if (flag == -22) sprintf(fileName, "./" DIR_NAME "%s_%s/" TYPE5 ".html", Utils::getStartDate().c_str(), Utils::getCurrentTarget().c_str());
|
||||||
else if (flag == 0 || flag == 15 || flag == -10) sprintf(fileName, "./result_files-%s/" TYPE1 ".html", Utils::getStartDate().c_str());
|
else if (flag == 0 || flag == 15 || flag == -10) sprintf(fileName, "./" DIR_NAME "%s_%s/" TYPE1 ".html", Utils::getStartDate().c_str(), Utils::getCurrentTarget().c_str());
|
||||||
else if (flag == 3) sprintf(fileName, "./result_files-%s/" TYPE2 ".html", Utils::getStartDate().c_str());
|
else if (flag == 3) sprintf(fileName, "./" DIR_NAME "%s_%s/" TYPE2 ".html", Utils::getStartDate().c_str(), Utils::getCurrentTarget().c_str());
|
||||||
else if (flag == 16) sprintf(fileName, "./result_files-%s/" TYPE4 ".html", Utils::getStartDate().c_str());
|
else if (flag == 16) sprintf(fileName, "./" DIR_NAME "%s_%s/" TYPE4 ".html", Utils::getStartDate().c_str(), Utils::getCurrentTarget().c_str());
|
||||||
else if(flag >= 17 || flag == 11 || flag == 12
|
else if(flag >= 17 || flag == 11 || flag == 12
|
||||||
|| flag == 13 || flag == 14 || flag == 1) sprintf(fileName, "./result_files-%s/" TYPE3 ".html", Utils::getStartDate().c_str());
|
|| flag == 13 || flag == 14 || flag == 1) sprintf(fileName, "./" DIR_NAME "%s_%s/" TYPE3 ".html", Utils::getStartDate().c_str(), Utils::getCurrentTarget().c_str());
|
||||||
|
|
||||||
FILE *f = fopen(fileName, "r");
|
FILE *f = fopen(fileName, "r");
|
||||||
if(f == NULL) return true;
|
if(f == NULL) return true;
|
||||||
@ -620,44 +629,39 @@ bool ftsBA = true;
|
|||||||
std::atomic<bool> fOpened(false);
|
std::atomic<bool> fOpened(false);
|
||||||
void fputsf(char *text, int flag)
|
void fputsf(char *text, int flag)
|
||||||
{
|
{
|
||||||
FILE *file = NULL;
|
|
||||||
|
|
||||||
char fileName[256] = { 0 };
|
char fileName[256] = { 0 };
|
||||||
|
|
||||||
if(flag == 0 || flag == 15 || flag == -10)
|
if(flag == 0 || flag == 15 || flag == -10)
|
||||||
{
|
{
|
||||||
if (ftsCameras) ftsCameras = __checkFileExistence(flag);
|
if (ftsCameras) ftsCameras = __checkFileExistence(flag);
|
||||||
sprintf(fileName, "./result_files-%s/" TYPE1 ".html", Utils::getStartDate().c_str());
|
sprintf(fileName, "./" DIR_NAME "%s_%s/" TYPE1 ".html", Utils::getStartDate().c_str(), Utils::getCurrentTarget().c_str());
|
||||||
file = fopen(fileName, "a");
|
|
||||||
}
|
}
|
||||||
else if(flag == 1)
|
else if(flag == 1)
|
||||||
{
|
{
|
||||||
if(ftsOther) ftsOther = __checkFileExistence(flag);
|
if(ftsOther) ftsOther = __checkFileExistence(flag);
|
||||||
sprintf(fileName, "./result_files-%s/" TYPE2 ".html", Utils::getStartDate().c_str());
|
sprintf(fileName, "./" DIR_NAME "%s_%s/" TYPE2 ".html", Utils::getStartDate().c_str(), Utils::getCurrentTarget().c_str());
|
||||||
file = fopen(fileName, "a");
|
|
||||||
}
|
}
|
||||||
else if(flag == -22)
|
else if(flag == -22)
|
||||||
{
|
{
|
||||||
if(ftsSSH) ftsSSH = __checkFileExistence(flag);
|
if(ftsSSH) ftsSSH = __checkFileExistence(flag);
|
||||||
sprintf(fileName, "./result_files-%s/" TYPE5 ".html", Utils::getStartDate().c_str());
|
sprintf(fileName, "./" DIR_NAME "%s_%s/" TYPE5 ".html", Utils::getStartDate().c_str(), Utils::getCurrentTarget().c_str());
|
||||||
file = fopen(fileName, "a");
|
|
||||||
}
|
}
|
||||||
else if(flag == 3)
|
else if(flag == 3)
|
||||||
{
|
{
|
||||||
if(ftsFTP) ftsFTP = __checkFileExistence(flag);
|
if(ftsFTP) ftsFTP = __checkFileExistence(flag);
|
||||||
sprintf(fileName, "./result_files-%s/" TYPE4 ".html", Utils::getStartDate().c_str());
|
sprintf(fileName, "./" DIR_NAME "%s_%s/" TYPE4 ".html", Utils::getStartDate().c_str(), Utils::getCurrentTarget().c_str());
|
||||||
file = fopen(fileName, "a");
|
|
||||||
}
|
}
|
||||||
else if(flag >= 17 || flag == 11 || flag == 12
|
else if(flag >= 17 || flag == 11 || flag == 12
|
||||||
|| flag == 13 || flag == 14 || flag == 2
|
|| flag == 13 || flag == 14 || flag == 2
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
if(ftsBA) ftsBA = __checkFileExistence(flag);
|
if(ftsBA) ftsBA = __checkFileExistence(flag);
|
||||||
sprintf(fileName, "./result_files-%s/" TYPE3 ".html", Utils::getStartDate().c_str());
|
sprintf(fileName, "./" DIR_NAME "%s_%s/" TYPE3 ".html", Utils::getStartDate().c_str(), Utils::getCurrentTarget().c_str());
|
||||||
file = fopen(fileName, "a");
|
|
||||||
}
|
}
|
||||||
else stt->doEmitionRedFoundData("Unknown flag [FLAG: " + QString::number(flag) + "]");
|
else stt->doEmitionRedFoundData("Unknown flag [FLAG: " + QString::number(flag) + "]");
|
||||||
|
|
||||||
|
FILE *file = fopen(fileName, "a");
|
||||||
|
|
||||||
if(file != NULL)
|
if(file != NULL)
|
||||||
{
|
{
|
||||||
time_t rtime;
|
time_t rtime;
|
||||||
@ -874,7 +878,7 @@ void _specFillerCustom(const char *ip, int port, const char *finalstr, const cha
|
|||||||
|
|
||||||
if (strlen(login) > 0 || strlen(pass) > 0)
|
if (strlen(login) > 0 || strlen(pass) > 0)
|
||||||
{
|
{
|
||||||
sprintf(log, "<font color=orangered>%s</font>:<span id=\"hostSpan\"><a href=\"%s\"><font color=darkcyan>%s (%s:%s)</font></a></span> T: <font color=GoldenRod>%s</font>\n",
|
sprintf(log, "<font color=orangered>%s</font>: <span id=\"hostSpan\"><a href=\"%s\"><font color=darkcyan>%s (%s:%s)</font></a></span> T: <font color=GoldenRod>%s</font>\n",
|
||||||
classString, ip, ip, login, pass, finalstr);
|
classString, ip, ip, login, pass, finalstr);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -911,20 +915,20 @@ void _specFillerBA(const char *ip, int port, const char *finalstr, const char *l
|
|||||||
if (strlen(login) > 0 || strlen(pass) > 0)
|
if (strlen(login) > 0 || strlen(pass) > 0)
|
||||||
{
|
{
|
||||||
if (8 == offset) {
|
if (8 == offset) {
|
||||||
sprintf(log, "[BA]:<span id=\"hostSpan\"><a href=\"https://%s:%s@%s\"><font color=floralwhite>%s:%s@%s</font></a></span> T: <font color=GoldenRod>%s</font>\n",
|
sprintf(log, "[BA]: <span id=\"hostSpan\"><a href=\"https://%s:%s@%s\"><font color=floralwhite>%s:%s@%s</font></a></span> T: <font color=GoldenRod>%s</font>\n",
|
||||||
login, pass, ip + offset, login, pass, ip + offset, finalstr);
|
login, pass, ip + offset, login, pass, ip + offset, finalstr);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
sprintf(log, "[BA]:<span id=\"hostSpan\"><a href=\"http://%s:%s@%s\"><font color=floralwhite>%s:%s@%s</font></a></span> T: <font color=GoldenRod>%s</font>\n",
|
sprintf(log, "[BA]: <span id=\"hostSpan\"><a href=\"http://%s:%s@%s\"><font color=floralwhite>%s:%s@%s</font></a></span> T: <font color=GoldenRod>%s</font>\n",
|
||||||
login, pass, ip + offset, login, pass, ip + offset, finalstr);
|
login, pass, ip + offset, login, pass, ip + offset, finalstr);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (8 == offset) {
|
if (8 == offset) {
|
||||||
sprintf(log, "[BA]:<span id=\"hostSpan\"><a href=\"https://%s\"><font color=floralwhite>%s</font></a></span> T: <font color=GoldenRod>%s</font>\n",
|
sprintf(log, "[BA]: <span id=\"hostSpan\"><a href=\"https://%s\"><font color=floralwhite>%s</font></a></span> T: <font color=GoldenRod>%s</font>\n",
|
||||||
ip + offset, ip + offset, finalstr);
|
ip + offset, ip + offset, finalstr);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
sprintf(log, "[BA]:<span id=\"hostSpan\"><a href=\"http://%s\"><font color=floralwhite>%s</font></a></span> T: <font color=GoldenRod>%s</font>\n",
|
sprintf(log, "[BA]: <span id=\"hostSpan\"><a href=\"http://%s\"><font color=floralwhite>%s</font></a></span> T: <font color=GoldenRod>%s</font>\n",
|
||||||
ip + offset, ip + offset, finalstr);
|
ip + offset, ip + offset, finalstr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -942,15 +946,15 @@ void _specFillerRSTP(const char *ip, int port, const char *finalstr, const char
|
|||||||
|
|
||||||
if (strlen(login) > 0 || strlen(pass) > 0)
|
if (strlen(login) > 0 || strlen(pass) > 0)
|
||||||
{
|
{
|
||||||
sprintf(log, "[RSTP]:<span id=\"hostSpan\"><font color=\"#FF69B4\">%s:%d (%s:%s)</font></span> T: <font color=#F0E68C>%s</font>\n",
|
sprintf(log, "[RSTP]: <span id=\"hostSpan\"><a href=\"%s11\"><font color=\"#736AFF\">%s11 (%s:%s)</font></a></span> T: <font color=#F0E68C>%s</font>\n",
|
||||||
ip, port, login, pass, finalstr);
|
ip, ip, login, pass, finalstr);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
sprintf(log, "[RSTP]:<span id=\"hostSpan\"><font color=\"#FF69B4\">%s:%d</font></span> T: <font color=#F0E68C>%s</font>\n",
|
sprintf(log, "[RSTP]: <span id=\"hostSpan\"><a href=\"%s11\"><font color=\"#736AFF\">%s11</font></a></span> T: <font color=#F0E68C>%s</font>\n",
|
||||||
ip, port, finalstr);
|
ip, ip, finalstr);
|
||||||
}
|
}
|
||||||
|
|
||||||
stt->doEmitionFoundDataCustom(QString::fromLocal8Bit(log), "FF69B4");
|
stt->doEmitionFoundDataCustom(QString::fromLocal8Bit(log), "3090C7");
|
||||||
|
|
||||||
fputsf(log, flag);
|
fputsf(log, flag);
|
||||||
}
|
}
|
||||||
@ -1384,10 +1388,12 @@ int _specRTSPBrute(const char *ip, int port,
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strstr(lps.login, "UNKNOWN") == NULL && strlen(lps.other) == 0)
|
if (strstr(lps.login, "UNKNOWN") == NULL)
|
||||||
{
|
{
|
||||||
_specFillerRSTP(ip, port, finalstr, lps.login, lps.pass, flag);
|
char title[512] = { 0 };
|
||||||
fillGlobalLogData(ip, port, std::to_string(size).c_str(), finalstr, lps.login, lps.pass, "", cp, "RTSP");
|
sprintf(title, "%s %s", lps.other, finalstr);
|
||||||
|
_specFillerRSTP(ip, port, title, lps.login, lps.pass, flag);
|
||||||
|
//fillGlobalLogData(ip, port, std::to_string(size).c_str(), finalstr, lps.login, lps.pass, "", cp, "RTSP");
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2677,7 +2683,7 @@ std::string equivRedirectHandler(std::string *buff, char* ip, int port, Lexems *
|
|||||||
|
|
||||||
int portPos = location.find(":", 7);
|
int portPos = location.find(":", 7);
|
||||||
if (-1 != portPos) {
|
if (-1 != portPos) {
|
||||||
int portPosEnd = location.find("/ \n>\"'", portPos);
|
int portPosEnd = location.find_first_of("/ \n>\"'", portPos);
|
||||||
if (-1 != portPosEnd) {
|
if (-1 != portPosEnd) {
|
||||||
newPort = std::stoi(location.substr(portPos + 1, portPosEnd));
|
newPort = std::stoi(location.substr(portPos + 1, portPosEnd));
|
||||||
if (gDebugMode) {
|
if (gDebugMode) {
|
||||||
@ -2898,6 +2904,9 @@ std::string getHeader(const std::string *buffcpy, const int flag) {
|
|||||||
return "[IOmega NAS]";
|
return "[IOmega NAS]";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (STRSTR(buffcpy, "x-rtsp-tunnelled") != -1 || STRSTR(buffcpy, "rtsp://") != -1) {
|
||||||
|
return "[RTSP]";
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
std::string tempBuff = buffcpy->c_str();
|
std::string tempBuff = buffcpy->c_str();
|
||||||
const std::string &result_ref = getTitle(tempBuff.c_str(), flag);
|
const std::string &result_ref = getTitle(tempBuff.c_str(), flag);
|
||||||
@ -3013,7 +3022,7 @@ void parseFlag(int flag, char* ip, char *ipRaw, int port, std::string *buff, con
|
|||||||
HikVis::hikCounter = 0;
|
HikVis::hikCounter = 0;
|
||||||
HikVis::hikPart++;
|
HikVis::hikPart++;
|
||||||
}
|
}
|
||||||
sprintf(fileName, "./result_files-%s/hikkafile_%s_part_%d.csv", date, date, HikVis::hikPart);
|
sprintf(fileName, "./" DIR_NAME "%s_%s/hikkafile_%s_part_%d.csv", date, Utils::getCurrentTarget().c_str(), date, HikVis::hikPart);
|
||||||
FILE *f = fopen(fileName, "a");
|
FILE *f = fopen(fileName, "a");
|
||||||
if (f != NULL) {
|
if (f != NULL) {
|
||||||
char string[1024] = { 0 };
|
char string[1024] = { 0 };
|
||||||
@ -3047,8 +3056,8 @@ void parseFlag(int flag, char* ip, char *ipRaw, int port, std::string *buff, con
|
|||||||
HikVis::rviCounter = 0;
|
HikVis::rviCounter = 0;
|
||||||
HikVis::rviPart++;
|
HikVis::rviPart++;
|
||||||
}
|
}
|
||||||
sprintf(fileName, "./result_files-%s/rvifile_%s(%s)_part_%d.xml",
|
sprintf(fileName, "./" DIR_NAME "%s_%s/rvifile_%s(%s)_part_%d.xml",
|
||||||
date, date, Utils::getStartTime().c_str(), HikVis::rviPart);
|
date, Utils::getCurrentTarget().c_str(), date, Utils::getStartTime().c_str(), HikVis::rviPart);
|
||||||
|
|
||||||
char string[1024] = { 0 };
|
char string[1024] = { 0 };
|
||||||
FILE *fc = fopen(fileName, "r");
|
FILE *fc = fopen(fileName, "r");
|
||||||
@ -3132,8 +3141,15 @@ void parseFlag(int flag, char* ip, char *ipRaw, int port, std::string *buff, con
|
|||||||
}
|
}
|
||||||
else if (flag == 34) //Hikvision ip cam
|
else if (flag == 34) //Hikvision ip cam
|
||||||
{
|
{
|
||||||
if (_specBrute(ip, port, "[Hikvision] IP Camera", flag, "/PSIA/Custom/SelfExt/userCheck", "[DIGEST]", cp, size) == -1){
|
char ipNew[256] = { 0 };
|
||||||
_specBrute(ip, port, "[Hikvision] IP Camera", flag, "/PSIA/Custom/HIK/userCheck", "[DIGEST]", cp, size);
|
if (strstri(ip, "https://") != NULL) {
|
||||||
|
sprintf(ipNew, "https://%s", ipRaw);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
sprintf(ipNew, "http://%s", ipRaw);
|
||||||
|
}
|
||||||
|
if (_specBrute(ipNew, port, "[Hikvision] IP Camera", flag, "/PSIA/Custom/SelfExt/userCheck", "[DIGEST]", cp, size) == -1){
|
||||||
|
_specBrute(ipNew, port, "[Hikvision] IP Camera", flag, "/PSIA/Custom/HIK/userCheck", "[DIGEST]", cp, size);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (flag == 35) //EasyCam
|
else if (flag == 35) //EasyCam
|
||||||
@ -3269,11 +3285,9 @@ void parseFlag(int flag, char* ip, char *ipRaw, int port, std::string *buff, con
|
|||||||
}
|
}
|
||||||
else if (flag == 59) //RTSP
|
else if (flag == 59) //RTSP
|
||||||
{
|
{
|
||||||
//char newIP[128] = {0};
|
char newIP[128] = {0};
|
||||||
//strcpy(newIP, "rtsp://");
|
sprintf(newIP, "rtsp://%s:%d/", ipRaw, port);
|
||||||
//strncat(newIP, ipRaw, 96);
|
_specRTSPBrute(newIP, port, header.c_str(), flag, "RTSP", cp, size);
|
||||||
//strcat(newIP, "/");
|
|
||||||
_specRTSPBrute(ipRaw, port, header.c_str(), flag, "RTSP", cp, size);
|
|
||||||
}
|
}
|
||||||
else if (flag == 60) //ACTi
|
else if (flag == 60) //ACTi
|
||||||
{
|
{
|
||||||
@ -3283,7 +3297,11 @@ void parseFlag(int flag, char* ip, char *ipRaw, int port, std::string *buff, con
|
|||||||
{
|
{
|
||||||
_specWEBIPCAMBrute(ip, port, "[AirOS] WEB IP Camera", flag, "WEB Authorization", cp, size, "AirOS", &cookie);
|
_specWEBIPCAMBrute(ip, port, "[AirOS] WEB IP Camera", flag, "WEB Authorization", cp, size, "AirOS", &cookie);
|
||||||
}
|
}
|
||||||
|
else if (flag == 62) //XMSECU
|
||||||
|
{
|
||||||
|
_specWEBIPCAMBrute(ip, port, "[XMSECU] WEB IP Camera", flag, "WEB Authorization", cp, size, "XMSECU", &cookie);
|
||||||
|
}
|
||||||
|
|
||||||
else if (flag == 20) //AXIS Camera
|
else if (flag == 20) //AXIS Camera
|
||||||
{
|
{
|
||||||
if (_specBrute(ip, port, "AXIS Camera", flag, "/mjpg/video.mjpg", "Basic Authorization", cp, size) == -1) {
|
if (_specBrute(ip, port, "AXIS Camera", flag, "/mjpg/video.mjpg", "Basic Authorization", cp, size) == -1) {
|
||||||
@ -3359,19 +3377,26 @@ std::string handleRedirects(std::string *buffcpy, char* ip, int port) {
|
|||||||
counter.iterationCount = 0;
|
counter.iterationCount = 0;
|
||||||
std::string location = std::string(ip);
|
std::string location = std::string(ip);
|
||||||
const std::string &locationEquiv = equivRedirectHandler(buffcpy, ip, port, &counter);
|
const std::string &locationEquiv = equivRedirectHandler(buffcpy, ip, port, &counter);
|
||||||
location += locationEquiv;
|
if (locationEquiv.find("http") == 0) {
|
||||||
|
location = locationEquiv;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
location += locationEquiv;
|
||||||
|
}
|
||||||
|
|
||||||
counter.iterationCount = 0;
|
counter.iterationCount = 0;
|
||||||
if (Utils::ustrstr((const std::string *) buffcpy, "<frameset ") == -1) {
|
if (Utils::ustrstr((const std::string *) buffcpy, "<frameset ") == -1) {
|
||||||
const std::string &locationJS = jsRedirectHandler(buffcpy, ip, port, &counter);
|
const std::string &locationJS = jsRedirectHandler(buffcpy, ip, port, &counter);
|
||||||
if (Utils::ustrstr(location, "http") != -1) {
|
if (locationJS.size() > 0) {
|
||||||
location = locationJS;
|
if (Utils::ustrstr(location, "http") != -1) {
|
||||||
}
|
location = locationJS;
|
||||||
else {
|
}
|
||||||
location += locationJS;
|
else {
|
||||||
|
location += locationJS;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return location;
|
return location;
|
||||||
}
|
}
|
||||||
int handleFramesets(std::string *buffcpyOrig, char* ip, char* ipRaw, int port, int flag, char *cp) {
|
int handleFramesets(std::string *buffcpyOrig, char* ip, char* ipRaw, int port, int flag, char *cp) {
|
||||||
@ -3452,7 +3477,15 @@ int handleFramesets(std::string *buffcpyOrig, char* ip, char* ipRaw, int port, i
|
|||||||
newPort = port;
|
newPort = port;
|
||||||
int portPos = location.find(":", 8);
|
int portPos = location.find(":", 8);
|
||||||
if (-1 != portPos) {
|
if (-1 != portPos) {
|
||||||
newPort = std::stoi(location.substr(portPos + 1));
|
int secPos = location.find("/", 8);
|
||||||
|
if (-1 != secPos) {
|
||||||
|
if (portPos < secPos) {
|
||||||
|
newPort = std::stoi(location.substr(portPos + 1, secPos - portPos - 1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
newPort = std::stoi(location.substr(portPos + 1));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
newIP = location;
|
newIP = location;
|
||||||
}
|
}
|
||||||
@ -3463,7 +3496,15 @@ int handleFramesets(std::string *buffcpyOrig, char* ip, char* ipRaw, int port, i
|
|||||||
newPort = 443;
|
newPort = 443;
|
||||||
int portPos = location.find(":", 8);
|
int portPos = location.find(":", 8);
|
||||||
if (-1 != portPos) {
|
if (-1 != portPos) {
|
||||||
newPort = std::stoi(location.substr(portPos + 1));
|
int secPos = location.find("/", 8);
|
||||||
|
if (-1 != secPos) {
|
||||||
|
if (portPos < secPos) {
|
||||||
|
newPort = std::stoi(location.substr(portPos + 1, secPos - portPos - 1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
newPort = std::stoi(location.substr(portPos + 1));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
newIP = location;
|
newIP = location;
|
||||||
}
|
}
|
||||||
@ -3471,7 +3512,7 @@ int handleFramesets(std::string *buffcpyOrig, char* ip, char* ipRaw, int port, i
|
|||||||
newIP += location;
|
newIP += location;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stt->doEmitionYellowFoundData("Location: " + QString(newIP.c_str()) + "; Port: " + QString::number(newPort));
|
//stt->doEmitionYellowFoundData("Location: " + QString(newIP.c_str()) + "; Port: " + QString::number(newPort));
|
||||||
parseFlag(flag, (char*)newIP.c_str(), ipRaw, newPort, buffcpyOrig, header, cp);
|
parseFlag(flag, (char*)newIP.c_str(), ipRaw, newPort, buffcpyOrig, header, cp);
|
||||||
return flag;
|
return flag;
|
||||||
}
|
}
|
||||||
|
@ -88,21 +88,22 @@ typedef int BOOL;
|
|||||||
|
|
||||||
#define TITLE_MAX_SIZE 512
|
#define TITLE_MAX_SIZE 512
|
||||||
#define COOKIE_MAX_SIZE 1024
|
#define COOKIE_MAX_SIZE 1024
|
||||||
#define TYPE1 "camera"
|
#define TYPE1 "camera"
|
||||||
#define TYPE2 "other"
|
#define TYPE2 "other"
|
||||||
#define TYPE3 "auth"
|
#define TYPE3 "auth"
|
||||||
#define TYPE4 "ftp"
|
#define TYPE4 "ftp"
|
||||||
#define TYPE5 "ssh"
|
#define TYPE5 "ssh"
|
||||||
|
#define DIR_NAME "results_"
|
||||||
|
|
||||||
#define PWD_LIST_FOLDER "./pwd_lists/"
|
#define PWD_LIST_FOLDER "./pwd_lists/"
|
||||||
#define LOGIN_FN PWD_LIST_FOLDER"login.txt"
|
#define LOGIN_FN PWD_LIST_FOLDER "login.txt"
|
||||||
#define PASS_FN PWD_LIST_FOLDER"pass.txt"
|
#define PASS_FN PWD_LIST_FOLDER "pass.txt"
|
||||||
#define FTP_LOGIN_FN PWD_LIST_FOLDER"ftplogin.txt"
|
#define FTP_LOGIN_FN PWD_LIST_FOLDER "ftplogin.txt"
|
||||||
#define FTP_PASS_FN PWD_LIST_FOLDER"ftppass.txt"
|
#define FTP_PASS_FN PWD_LIST_FOLDER "ftppass.txt"
|
||||||
#define WF_LOGIN_FN PWD_LIST_FOLDER"wflogin.txt"
|
#define WF_LOGIN_FN PWD_LIST_FOLDER "wflogin.txt"
|
||||||
#define WF_PASS_FN PWD_LIST_FOLDER"wfpass.txt"
|
#define WF_PASS_FN PWD_LIST_FOLDER "wfpass.txt"
|
||||||
#define SSH_PASS_FN PWD_LIST_FOLDER"sshpass.txt"
|
#define SSH_PASS_FN PWD_LIST_FOLDER "sshpass.txt"
|
||||||
#define NEGATIVE_FN PWD_LIST_FOLDER"negatives.txt"
|
#define NEGATIVE_FN PWD_LIST_FOLDER "negatives.txt"
|
||||||
|
|
||||||
#define HTTP_FILE_STYLE "<style> #recvSpan{display: inline-block;width: 150px;} \
|
#define HTTP_FILE_STYLE "<style> #recvSpan{display: inline-block;width: 150px;} \
|
||||||
#hostSpan{display: inline-block;width: 200px;} \
|
#hostSpan{display: inline-block;width: 200px;} \
|
||||||
|
131
nesca_3.cpp
131
nesca_3.cpp
@ -35,6 +35,7 @@
|
|||||||
#include <QLabel.h>
|
#include <QLabel.h>
|
||||||
#include <QtWidgets/qlineedit.h>
|
#include <QtWidgets/qlineedit.h>
|
||||||
#include <QtWidgets/qheaderview.h>
|
#include <QtWidgets/qheaderview.h>
|
||||||
|
#include <qclipboard.h>
|
||||||
|
|
||||||
|
|
||||||
NET_DVR_Init hik_init_ptr = NULL;
|
NET_DVR_Init hik_init_ptr = NULL;
|
||||||
@ -63,7 +64,7 @@ int globalPinger = 0;
|
|||||||
int nesca_3::savedTabIndex = 0;
|
int nesca_3::savedTabIndex = 0;
|
||||||
|
|
||||||
bool startFlag = false;
|
bool startFlag = false;
|
||||||
bool trackerOK = true;
|
bool trackerOK = false;
|
||||||
char trcPort[32] = {0};
|
char trcPort[32] = {0};
|
||||||
char trcSrvPortLine[32] = {0};
|
char trcSrvPortLine[32] = {0};
|
||||||
char trcProxy[128] = {0};
|
char trcProxy[128] = {0};
|
||||||
@ -84,7 +85,6 @@ CheckKey_Th *chKTh = new CheckKey_Th();
|
|||||||
ActivityDrawerTh_HorNet *adtHN = new ActivityDrawerTh_HorNet();
|
ActivityDrawerTh_HorNet *adtHN = new ActivityDrawerTh_HorNet();
|
||||||
DrawerTh_VoiceScanner *vsTh = new DrawerTh_VoiceScanner();
|
DrawerTh_VoiceScanner *vsTh = new DrawerTh_VoiceScanner();
|
||||||
PieStat *psTh = new PieStat();
|
PieStat *psTh = new PieStat();
|
||||||
ProgressbarDrawer *pbTh = new ProgressbarDrawer();
|
|
||||||
|
|
||||||
bool MapWidgetOpened = false;
|
bool MapWidgetOpened = false;
|
||||||
bool globalScanFlag;
|
bool globalScanFlag;
|
||||||
@ -97,7 +97,6 @@ QGraphicsScene *sceneActivity;
|
|||||||
QGraphicsScene *sceneActivityGrid;
|
QGraphicsScene *sceneActivityGrid;
|
||||||
QGraphicsScene *sceneTextPlacer;
|
QGraphicsScene *sceneTextPlacer;
|
||||||
QGraphicsScene *sceneVoice;
|
QGraphicsScene *sceneVoice;
|
||||||
QGraphicsScene *pbScene;
|
|
||||||
QGraphicsScene *jobRangeVisualScene;
|
QGraphicsScene *jobRangeVisualScene;
|
||||||
|
|
||||||
QString importFileName = "";
|
QString importFileName = "";
|
||||||
@ -407,7 +406,6 @@ void setSceneArea()
|
|||||||
sceneActivityGrid = new QGraphicsScene();
|
sceneActivityGrid = new QGraphicsScene();
|
||||||
sceneTextPlacer = new QGraphicsScene();
|
sceneTextPlacer = new QGraphicsScene();
|
||||||
sceneVoice = new QGraphicsScene();
|
sceneVoice = new QGraphicsScene();
|
||||||
pbScene = new QGraphicsScene();
|
|
||||||
jobRangeVisualScene = new QGraphicsScene();
|
jobRangeVisualScene = new QGraphicsScene();
|
||||||
|
|
||||||
ui->graphicLog->setScene(sceneGrid);
|
ui->graphicLog->setScene(sceneGrid);
|
||||||
@ -418,7 +416,6 @@ void setSceneArea()
|
|||||||
ui->graphicActivityGrid->setScene(sceneActivityGrid);
|
ui->graphicActivityGrid->setScene(sceneActivityGrid);
|
||||||
ui->graphicTextPlacer->setScene(sceneTextPlacer);
|
ui->graphicTextPlacer->setScene(sceneTextPlacer);
|
||||||
ui->graphicsVoice->setScene(sceneVoice);
|
ui->graphicsVoice->setScene(sceneVoice);
|
||||||
ui->pbgv->setScene(pbScene);
|
|
||||||
ui->jobRangeVisual->setScene(jobRangeVisualScene);
|
ui->jobRangeVisual->setScene(jobRangeVisualScene);
|
||||||
|
|
||||||
ui->graphicLog->setSceneRect(0, 0, ui->graphicLog->width(), ui->graphicLog->height());
|
ui->graphicLog->setSceneRect(0, 0, ui->graphicLog->width(), ui->graphicLog->height());
|
||||||
@ -429,7 +426,6 @@ void setSceneArea()
|
|||||||
ui->graphicActivityGrid->setSceneRect(0, 0, ui->graphicActivityGrid->width(), ui->graphicActivityGrid->height());
|
ui->graphicActivityGrid->setSceneRect(0, 0, ui->graphicActivityGrid->width(), ui->graphicActivityGrid->height());
|
||||||
ui->graphicTextPlacer->setSceneRect(0, 0, ui->graphicTextPlacer->width(), ui->graphicTextPlacer->height());
|
ui->graphicTextPlacer->setSceneRect(0, 0, ui->graphicTextPlacer->width(), ui->graphicTextPlacer->height());
|
||||||
ui->graphicsVoice->setSceneRect(0, 0, ui->graphicsVoice->width(), ui->graphicsVoice->height());
|
ui->graphicsVoice->setSceneRect(0, 0, ui->graphicsVoice->width(), ui->graphicsVoice->height());
|
||||||
ui->pbgv->setSceneRect(0, 0, ui->pbgv->width(), ui->pbgv->height());
|
|
||||||
ui->jobRangeVisual->setSceneRect(0, 0, ui->jobRangeVisual->width(), ui->jobRangeVisual->height());
|
ui->jobRangeVisual->setSceneRect(0, 0, ui->jobRangeVisual->width(), ui->jobRangeVisual->height());
|
||||||
|
|
||||||
|
|
||||||
@ -1407,11 +1403,13 @@ void nesca_3::switchToJobMode()
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <qclipboard.h>
|
|
||||||
void copyToClipboardLocation() {
|
void copyToClipboardLocation() {
|
||||||
ui->currentDirectoryLine->selectAll();
|
ui->currentDirectoryLine->selectAll();
|
||||||
QClipboard *c = QApplication::clipboard();
|
QClipboard *c = QApplication::clipboard();
|
||||||
c->setText(ui->currentDirectoryLine->text());
|
QString dir = ui->currentDirectoryLine->text();
|
||||||
|
c->setText(dir);
|
||||||
|
|
||||||
|
QDesktopServices::openUrl(QUrl::fromLocalFile(dir));
|
||||||
}
|
}
|
||||||
bool nesca_3::eventFilter(QObject* obj, QEvent *event)
|
bool nesca_3::eventFilter(QObject* obj, QEvent *event)
|
||||||
{
|
{
|
||||||
@ -2061,60 +2059,6 @@ void nesca_3::slotRestoreDefPorts()
|
|||||||
else if (ci == 2) ui->importPortLine->setText(PORTSET);
|
else if (ci == 2) ui->importPortLine->setText(PORTSET);
|
||||||
}
|
}
|
||||||
|
|
||||||
QGraphicsTextItem *textItem = NULL;
|
|
||||||
QGraphicsRectItem* pbItem = NULL;
|
|
||||||
QGraphicsRectItem* pbBlackRectItem = NULL;
|
|
||||||
QPen pbPen(QColor(227, 227, 227, 150));
|
|
||||||
QFont pbPointerFont;
|
|
||||||
void nesca_3::slotPBUpdate()
|
|
||||||
{
|
|
||||||
int val = this->perc;
|
|
||||||
if(textItem != NULL)
|
|
||||||
{
|
|
||||||
delete textItem;
|
|
||||||
textItem = NULL;
|
|
||||||
};
|
|
||||||
if(pbItem != NULL)
|
|
||||||
{
|
|
||||||
delete pbItem;
|
|
||||||
pbItem = NULL;
|
|
||||||
};
|
|
||||||
if(pbBlackRectItem != NULL)
|
|
||||||
{
|
|
||||||
delete pbBlackRectItem;
|
|
||||||
pbBlackRectItem = NULL;
|
|
||||||
};
|
|
||||||
pbScene->clear();
|
|
||||||
QLinearGradient grad1(0, 0, 0, 110);
|
|
||||||
|
|
||||||
if(val < 33) grad1.setColorAt(0.1, QColor(207, 0, 0));
|
|
||||||
else if( val < 66 ) grad1.setColorAt(0.1, QColor(247, 244, 0));
|
|
||||||
else if( val < 99 ) grad1.setColorAt(0.1, QColor(0, 207, 0));
|
|
||||||
|
|
||||||
QLinearGradient gradBlack(0, 0, 0, 110);
|
|
||||||
gradBlack.setColorAt(0.1, QColor(0, 0, 0));
|
|
||||||
pbBlackRectItem = new QGraphicsRectItem(0,0,5,99);
|
|
||||||
pbBlackRectItem->setBrush(gradBlack);
|
|
||||||
pbScene->addItem(pbBlackRectItem);
|
|
||||||
|
|
||||||
pbItem = new QGraphicsRectItem(0,0,5,val);
|
|
||||||
pbItem->setBrush(grad1);
|
|
||||||
pbScene->addItem(pbItem);
|
|
||||||
|
|
||||||
textItem = pbScene->addText("- " + QString::number(val) + "%", pbPointerFont);
|
|
||||||
textItem->setX(2);
|
|
||||||
textItem->setY(val - 10);
|
|
||||||
textItem->setDefaultTextColor(QColor(255, 255, 255, 180));
|
|
||||||
|
|
||||||
pbScene->addLine(4, 11, 6, 11, pbPen);
|
|
||||||
pbScene->addLine(4, 22, 6, 22, pbPen);
|
|
||||||
pbScene->addLine(0, 33, 8, 33, pbPen);
|
|
||||||
pbScene->addLine(4, 44, 6, 44, pbPen);
|
|
||||||
pbScene->addLine(4, 55, 6, 55, pbPen);
|
|
||||||
pbScene->addLine(0, 66, 8, 66, pbPen);
|
|
||||||
pbScene->addLine(4, 77, 6, 77, pbPen);
|
|
||||||
pbScene->addLine(4, 88, 6, 88, pbPen);
|
|
||||||
}
|
|
||||||
void nesca_3::changeNSTrackLabel(bool status)
|
void nesca_3::changeNSTrackLabel(bool status)
|
||||||
{
|
{
|
||||||
if(status) ui->NSTrackStatusLabel->setStyleSheet("background-color: green; border: 1px solid white;");
|
if(status) ui->NSTrackStatusLabel->setStyleSheet("background-color: green; border: 1px solid white;");
|
||||||
@ -2150,6 +2094,8 @@ void nesca_3::onLinkClicked(QUrl link)
|
|||||||
pekoWidget->show();
|
pekoWidget->show();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
QClipboard *c = QApplication::clipboard();
|
||||||
|
c->setText(lnk);
|
||||||
QDesktopServices::openUrl(link);
|
QDesktopServices::openUrl(link);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2217,11 +2163,11 @@ int nesca_3::addBARow(QString ip, QString loginPass, QString percentage) {
|
|||||||
BAModel->item(index, 1)->setData(QBrush(QColor(Qt::black).darker(160)), Qt::ForegroundRole);
|
BAModel->item(index, 1)->setData(QBrush(QColor(Qt::black).darker(160)), Qt::ForegroundRole);
|
||||||
BAModel->item(index, 2)->setData(QBrush(QColor(Qt::black).darker(160)), Qt::ForegroundRole);
|
BAModel->item(index, 2)->setData(QBrush(QColor(Qt::black).darker(160)), Qt::ForegroundRole);
|
||||||
}
|
}
|
||||||
|
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
void nesca_3::slotChangeBARow(int rowIndex, QString loginPass, QString percentage) {
|
void nesca_3::slotChangeBARow(int rowIndex, QString loginPass, QString percentage) {
|
||||||
QModelIndex index = BAModel->index(rowIndex, 1, QModelIndex());
|
QModelIndex index = BAModel->index(rowIndex, 1, QModelIndex());
|
||||||
@ -2230,29 +2176,51 @@ void nesca_3::slotChangeBARow(int rowIndex, QString loginPass, QString percentag
|
|||||||
BAModel->setData(index, percentage);
|
BAModel->setData(index, percentage);
|
||||||
|
|
||||||
if (percentage.compare("OK") == 0) {
|
if (percentage.compare("OK") == 0) {
|
||||||
BAModel->setData(BAModel->index(rowIndex, 0), QBrush(QColor(Qt::green).darker(160)), Qt::BackgroundRole);
|
QBrush qbRow = QBrush(QColor(Qt::green).darker(160));
|
||||||
BAModel->setData(BAModel->index(rowIndex, 1), QBrush(QColor(Qt::green).darker(160)), Qt::BackgroundRole);
|
QBrush qbText = QBrush(QColor(Qt::black).darker(160));
|
||||||
BAModel->setData(BAModel->index(rowIndex, 2), QBrush(QColor(Qt::green).darker(160)), Qt::BackgroundRole);
|
|
||||||
|
|
||||||
BAModel->item(rowIndex, 0)->setData(QBrush(QColor(Qt::black).darker(160)), Qt::ForegroundRole);
|
BAModel->setData(BAModel->index(rowIndex, 0), qbRow, Qt::BackgroundRole);
|
||||||
BAModel->item(rowIndex, 1)->setData(QBrush(QColor(Qt::black).darker(160)), Qt::ForegroundRole);
|
BAModel->setData(BAModel->index(rowIndex, 1), qbRow, Qt::BackgroundRole);
|
||||||
BAModel->item(rowIndex, 2)->setData(QBrush(QColor(Qt::black).darker(160)), Qt::ForegroundRole);
|
BAModel->setData(BAModel->index(rowIndex, 2), qbRow, Qt::BackgroundRole);
|
||||||
|
|
||||||
|
BAModel->item(rowIndex, 0)->setData(qbText, Qt::ForegroundRole);
|
||||||
|
BAModel->item(rowIndex, 1)->setData(qbText, Qt::ForegroundRole);
|
||||||
|
BAModel->item(rowIndex, 2)->setData(qbText, Qt::ForegroundRole);
|
||||||
}
|
}
|
||||||
else if (percentage.contains("FAIL") || percentage.contains("404")) {
|
else if (percentage.contains("FAIL") || percentage.contains("404")) {
|
||||||
BAModel->setData(BAModel->index(rowIndex, 0), QBrush(QColor(Qt::red).darker(160)), Qt::BackgroundRole);
|
QBrush qbRow = QBrush(QColor(Qt::red).darker(160));
|
||||||
BAModel->setData(BAModel->index(rowIndex, 1), QBrush(QColor(Qt::red).darker(160)), Qt::BackgroundRole);
|
QBrush qbText = QBrush(QColor(Qt::black).darker(160));
|
||||||
BAModel->setData(BAModel->index(rowIndex, 2), QBrush(QColor(Qt::red).darker(160)), Qt::BackgroundRole);
|
|
||||||
|
|
||||||
BAModel->item(rowIndex, 0)->setData(QBrush(QColor(Qt::black).darker(160)), Qt::ForegroundRole);
|
BAModel->setData(BAModel->index(rowIndex, 0), qbRow, Qt::BackgroundRole);
|
||||||
BAModel->item(rowIndex, 1)->setData(QBrush(QColor(Qt::black).darker(160)), Qt::ForegroundRole);
|
BAModel->setData(BAModel->index(rowIndex, 1), qbRow, Qt::BackgroundRole);
|
||||||
BAModel->item(rowIndex, 2)->setData(QBrush(QColor(Qt::black).darker(160)), Qt::ForegroundRole);
|
BAModel->setData(BAModel->index(rowIndex, 2), qbRow, Qt::BackgroundRole);
|
||||||
|
|
||||||
|
BAModel->item(rowIndex, 0)->setData(qbText, Qt::ForegroundRole);
|
||||||
|
BAModel->item(rowIndex, 1)->setData(qbText, Qt::ForegroundRole);
|
||||||
|
BAModel->item(rowIndex, 2)->setData(qbText, Qt::ForegroundRole);
|
||||||
}
|
}
|
||||||
|
else if (percentage.contains("TIMEOUT") || percentage.contains("404")) {
|
||||||
|
QBrush qbRow = QBrush(QColor(Qt::black).darker(160));
|
||||||
|
QBrush qbText = QBrush(QColor(Qt::white).darker(160));
|
||||||
|
|
||||||
|
BAModel->setData(BAModel->index(rowIndex, 0), qbRow, Qt::BackgroundRole);
|
||||||
|
BAModel->setData(BAModel->index(rowIndex, 1), qbRow, Qt::BackgroundRole);
|
||||||
|
BAModel->setData(BAModel->index(rowIndex, 2), qbRow, Qt::BackgroundRole);
|
||||||
|
|
||||||
|
BAModel->item(rowIndex, 0)->setData(qbText, Qt::ForegroundRole);
|
||||||
|
BAModel->item(rowIndex, 1)->setData(qbText, Qt::ForegroundRole);
|
||||||
|
BAModel->item(rowIndex, 2)->setData(qbText, Qt::ForegroundRole);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void nesca_3::slotEditFilter() {
|
||||||
|
QDesktopServices::openUrl(QUrl::fromLocalFile("file:///" + ui->currentDirectoryLine->text() + "\\pwd_lists\\negatives.txt"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void nesca_3::ConnectEvrthng()
|
void nesca_3::ConnectEvrthng()
|
||||||
{
|
{
|
||||||
|
connect(ui->edit_filter_button, SIGNAL(clicked()), this, SLOT(slotEditFilter()));
|
||||||
|
|
||||||
connect(stt, SIGNAL(signalBlockButton(bool)), this, SLOT(slotBlockButtons(bool)));
|
connect(stt, SIGNAL(signalBlockButton(bool)), this, SLOT(slotBlockButtons(bool)));
|
||||||
connect(pbTh, SIGNAL(upd()), this, SLOT(slotPBUpdate()));
|
|
||||||
connect ( ui->secretMessageBut_1, SIGNAL( clicked() ), this, SLOT( smReaction() ) );
|
connect ( ui->secretMessageBut_1, SIGNAL( clicked() ), this, SLOT( smReaction() ) );
|
||||||
connect ( ui->secretMessageBut_2, SIGNAL( clicked() ), this, SLOT( smReaction() ) );
|
connect ( ui->secretMessageBut_2, SIGNAL( clicked() ), this, SLOT( smReaction() ) );
|
||||||
connect ( ui->secretMessageBut_3, SIGNAL( clicked() ), this, SLOT( smReaction() ) );
|
connect ( ui->secretMessageBut_3, SIGNAL( clicked() ), this, SLOT( smReaction() ) );
|
||||||
@ -3011,7 +2979,6 @@ void nesca_3::ImportScanSeq()
|
|||||||
stt->start();
|
stt->start();
|
||||||
|
|
||||||
startFlag = true;
|
startFlag = true;
|
||||||
pbTh->start();
|
|
||||||
ui->importButton->setText("Stop");
|
ui->importButton->setText("Stop");
|
||||||
ui->importButton->setStyleSheet(
|
ui->importButton->setStyleSheet(
|
||||||
" #importButton {"
|
" #importButton {"
|
||||||
@ -3366,9 +3333,11 @@ nesca_3::nesca_3(bool isWM, QWidget *parent = 0) : QMainWindow(parent)
|
|||||||
Utils::saveStartDate();
|
Utils::saveStartDate();
|
||||||
Utils::saveStartTime();
|
Utils::saveStartTime();
|
||||||
|
|
||||||
char buffer[MAX_PATH] = { 0 };
|
/*char buffer[MAX_PATH] = { 0 };
|
||||||
GetCurrentDir(buffer, MAX_PATH);
|
GetCurrentDir(buffer, MAX_PATH);
|
||||||
ui->currentDirectoryLine->setText(QString::fromLocal8Bit(string(buffer).c_str()));
|
ui->currentDirectoryLine->setText(QString::fromLocal8Bit(string(buffer).c_str()));*/
|
||||||
|
QString path = QDir::toNativeSeparators(QApplication::applicationDirPath());
|
||||||
|
ui->currentDirectoryLine->setText(path);
|
||||||
|
|
||||||
BAModel = new QStandardItemModel();
|
BAModel = new QStandardItemModel();
|
||||||
ui->BATableView->setModel(BAModel);
|
ui->BATableView->setModel(BAModel);
|
||||||
|
@ -64,7 +64,6 @@ protected:
|
|||||||
void ThreadDelay_ChangeValue(QString val);
|
void ThreadDelay_ChangeValue(QString val);
|
||||||
void ChangePingerOK(bool val);
|
void ChangePingerOK(bool val);
|
||||||
void changeNSTrackLabel(bool status);
|
void changeNSTrackLabel(bool status);
|
||||||
void slotPBUpdate();
|
|
||||||
void DNSLine_ValueChanged();
|
void DNSLine_ValueChanged();
|
||||||
void slotShowRedVersion();
|
void slotShowRedVersion();
|
||||||
void slotTabChanged(int index);
|
void slotTabChanged(int index);
|
||||||
@ -126,6 +125,7 @@ protected:
|
|||||||
void slotBlockButtons(bool value);
|
void slotBlockButtons(bool value);
|
||||||
//BA TablelistView
|
//BA TablelistView
|
||||||
void slotChangeBARow(const int index, const QString loginPass, const QString percentage);
|
void slotChangeBARow(const int index, const QString loginPass, const QString percentage);
|
||||||
|
void slotEditFilter();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QPoint dragPosition;
|
QPoint dragPosition;
|
||||||
|
56
nesca_3.ui
56
nesca_3.ui
@ -960,31 +960,10 @@ color: rgb(214, 214, 0);</string>
|
|||||||
<string>:Default ports</string>
|
<string>:Default ports</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QGraphicsView" name="pbgv">
|
|
||||||
<property name="geometry">
|
|
||||||
<rect>
|
|
||||||
<x>440</x>
|
|
||||||
<y>20</y>
|
|
||||||
<width>26</width>
|
|
||||||
<height>102</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<property name="styleSheet">
|
|
||||||
<string notr="true">background-color:rgb(38, 38, 38);
|
|
||||||
border: 1px solid rgb(227, 227, 227);
|
|
||||||
border-radius: 3px;</string>
|
|
||||||
</property>
|
|
||||||
<property name="verticalScrollBarPolicy">
|
|
||||||
<enum>Qt::ScrollBarAlwaysOff</enum>
|
|
||||||
</property>
|
|
||||||
<property name="horizontalScrollBarPolicy">
|
|
||||||
<enum>Qt::ScrollBarAlwaysOff</enum>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="tab">
|
<widget class="QWidget" name="tab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
<string>NS-Track</string>
|
<string>Options</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
<widget class="QCheckBox" name="trackerOnOff">
|
<widget class="QCheckBox" name="trackerOnOff">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
@ -1011,7 +990,7 @@ border-radius: 3px;</string>
|
|||||||
<string>Send results to public NescaDatabase</string>
|
<string>Send results to public NescaDatabase</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="checked">
|
<property name="checked">
|
||||||
<bool>true</bool>
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QLineEdit" name="lineTrackerScr">
|
<widget class="QLineEdit" name="lineTrackerScr">
|
||||||
@ -1213,7 +1192,7 @@ border-radius: 3px;</string>
|
|||||||
<string notr="true">color: rgb(116, 116, 116);background-color: rgb(56, 56, 56);border:none;</string>
|
<string notr="true">color: rgb(116, 116, 116);background-color: rgb(56, 56, 56);border:none;</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>2000</string>
|
<string>2</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="maxLength">
|
<property name="maxLength">
|
||||||
<number>5</number>
|
<number>5</number>
|
||||||
@ -3250,10 +3229,39 @@ p, li { white-space: pre-wrap; }
|
|||||||
<string>:Jobs</string>
|
<string>:Jobs</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
|
<widget class="QPushButton" name="edit_filter_button">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>340</x>
|
||||||
|
<y>50</y>
|
||||||
|
<width>48</width>
|
||||||
|
<height>16</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<family>Small Fonts</family>
|
||||||
|
<pointsize>7</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Edit negatives.txt</string>
|
||||||
|
</property>
|
||||||
|
<property name="whatsThis">
|
||||||
|
<string>IP range distribution</string>
|
||||||
|
</property>
|
||||||
|
<property name="styleSheet">
|
||||||
|
<string notr="true">color: rgb(216, 216, 216);background-color: rgba(2, 2, 2, 0);border: 1px solid rgba(255, 255, 255, 40);</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>:Edit filter</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
<zorder>widgetJOB</zorder>
|
<zorder>widgetJOB</zorder>
|
||||||
<zorder>widget</zorder>
|
<zorder>widget</zorder>
|
||||||
<zorder>DataflowModeBut</zorder>
|
<zorder>DataflowModeBut</zorder>
|
||||||
<zorder>JobModeBut</zorder>
|
<zorder>JobModeBut</zorder>
|
||||||
|
<zorder>edit_filter_button</zorder>
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
<layoutdefault spacing="6" margin="11"/>
|
<layoutdefault spacing="6" margin="11"/>
|
||||||
|
@ -14,6 +14,6 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
void run();
|
void run();
|
||||||
};
|
};
|
||||||
extern ProgressbarDrawer *pbTh;
|
//extern ProgressbarDrawer *pbTh;
|
||||||
|
|
||||||
#endif // PROGRESSBARDRAWER_H
|
#endif // PROGRESSBARDRAWER_H
|
||||||
|
Loading…
Reference in New Issue
Block a user