mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
26 lines
539 B
C++
26 lines
539 B
C++
|
#include <BasicAuth.h>
|
||
|
|
||
|
lopaStr BA::_BABrute(char *cookie,
|
||
|
char *ip,
|
||
|
int port,
|
||
|
char *pathT,
|
||
|
char *method)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
lopaStr BA::_BALobby(char *cookie,
|
||
|
char *ip,
|
||
|
int port,
|
||
|
char *path,
|
||
|
char *method)
|
||
|
{
|
||
|
while(BrutingThrds >= gMaxBrutingThreads) Sleep(700);
|
||
|
|
||
|
BruteUtils::BConInc();
|
||
|
lopaStr res = _BABrute(cookie, ip, port, path, method);
|
||
|
BruteUtils::BConDec();
|
||
|
|
||
|
return res;
|
||
|
}
|