mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
#ifndef WEBFORMWORKER_H
|
|
#define WEBFORMWORKER_H
|
|
|
|
#include <Utils.h>
|
|
#include "STh.h"
|
|
#include "Connector.h"
|
|
#include <mainResources.h>
|
|
#include <externData.h>
|
|
#include <externFunctions.h>
|
|
|
|
class WFClass {
|
|
|
|
private: static bool active;
|
|
int passCounter = 1;
|
|
lopaStr doGetCheck(char *ip, int port, char *actionVal, char *userVal, char *passVal, char *formVal);
|
|
lopaStr doPostCheck(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 int *iIndex,
|
|
const int *jIndex);
|
|
|
|
|
|
public:
|
|
WFClass(){
|
|
|
|
while(BrutingThrds >= gMaxBrutingThreads) Sleep(700);
|
|
|
|
++WF;
|
|
BConInc();
|
|
this->active = true;
|
|
passCounter = 1;
|
|
}
|
|
|
|
~WFClass(){
|
|
this->active = false;
|
|
BConDec();
|
|
}
|
|
|
|
lopaStr _WFBrute(char *ip,
|
|
int port,
|
|
char *methodVal,
|
|
char *actionVal,
|
|
char *userVal,
|
|
char *passVal,
|
|
char *formVal);
|
|
};
|
|
|
|
#endif // WEBFORMWORKER_H
|