mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
#ifndef WEBFORMWORKER_H
|
|
#define WEBFORMWORKER_H
|
|
|
|
#include "Utils.h"
|
|
#include "Connector.h"
|
|
#include "mainResources.h"
|
|
#include "externFunctions.h"
|
|
#include "BruteUtils.h"
|
|
#include "STh.h"
|
|
|
|
class WFClass : BruteUtils {
|
|
|
|
private:
|
|
int passCounter = 1;
|
|
lopaStr doGetCheck(const char *ip, int port, char *actionVal, char *userVal, char *passVal, char *formVal);
|
|
lopaStr doPostCheck(const char *ip, int port, char *actionVal, char *userVal, char *passVal, char *formVal);
|
|
lopaStr parseResponse(const char *ip, const int port, const std::string *buffer, const char* formVal,
|
|
const char *login,
|
|
const char *pass);
|
|
|
|
|
|
public:
|
|
WFClass(){
|
|
if(gMaxBrutingThreads > 0) {
|
|
while(BrutingThrds >= gMaxBrutingThreads) Sleep(700);
|
|
|
|
++WF;
|
|
BConInc();
|
|
passCounter = 1;
|
|
}
|
|
}
|
|
|
|
~WFClass(){
|
|
BConDec();
|
|
}
|
|
|
|
lopaStr _WFBrute(const char *ip,
|
|
int port,
|
|
char *methodVal,
|
|
char *actionVal,
|
|
char *userVal,
|
|
char *passVal,
|
|
char *formVal);
|
|
};
|
|
|
|
#endif // WEBFORMWORKER_H
|