mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
57 lines
1.4 KiB
C++
57 lines
1.4 KiB
C++
#include <BasicAuth.h>
|
|
|
|
bool BA::checkOutput(const string *buffer) {
|
|
if(Utils::ci_find_substr(*buffer, "200 ok") != -1 ||
|
|
Utils::ci_find_substr(*buffer, "http/1.0 200") != -1 ||
|
|
Utils::ci_find_substr(*buffer, "http/1.1 200") != -1
|
|
) {
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
lopaStr BA::_BABrute(const char *ip, const int port) {
|
|
string buffer;
|
|
string lpString;
|
|
lopaStr lps;
|
|
ZeroMemory(lps.login, sizeof(lps.login));
|
|
ZeroMemory(lps.pass, sizeof(lps.pass));
|
|
ZeroMemory(lps.other, sizeof(lps.other));
|
|
|
|
strcpy(lps.login, "UNKNOWN");
|
|
|
|
for(int i = 0; i < MaxLogin; ++i) {
|
|
if(!globalScanFlag) return lps;
|
|
for (int j = 0; j < MaxPass; ++j) {
|
|
if (!globalScanFlag) return lps;
|
|
|
|
lpString = string(loginLst[i]) + ":" + string(passLst[j]);
|
|
|
|
Connector::nConnect(ip, port, &buffer, NULL, NULL, &lpString);
|
|
|
|
if(checkOutput(&buffer) != 0) {
|
|
strcpy(lps.login, loginLst[i]);
|
|
strcpy(lps.pass, passLst[j]);
|
|
return lps;
|
|
};
|
|
|
|
Sleep(70);
|
|
}
|
|
}
|
|
|
|
return lps;
|
|
}
|
|
|
|
lopaStr BA::_BALobby(const char *ip, const int port)
|
|
{
|
|
while(BrutingThrds >= gMaxBrutingThreads) Sleep(700);
|
|
|
|
BruteUtils::BConInc();
|
|
const lopaStr &res = _BABrute(ip, port);
|
|
BruteUtils::BConDec();
|
|
|
|
return res;
|
|
}
|