2015-03-13 14:27:21 +00:00
|
|
|
#ifndef BASICAUTH_H
|
|
|
|
#define BASICAUTH_H
|
|
|
|
|
2015-03-22 00:43:15 +00:00
|
|
|
#include "Connector.h"
|
|
|
|
#include "BruteUtils.h"
|
|
|
|
#include "Utils.h"
|
|
|
|
#include "externData.h"
|
|
|
|
#include "mainResources.h"
|
2015-03-13 14:27:21 +00:00
|
|
|
|
2015-03-22 00:43:15 +00:00
|
|
|
class BA {
|
2015-03-13 14:27:21 +00:00
|
|
|
private:
|
2015-03-22 00:43:15 +00:00
|
|
|
static bool checkOutput(const string *buffer, const char *ip, const int port);
|
2015-03-23 13:54:40 +00:00
|
|
|
static lopaStr BABrute(const char *ip, const int port);
|
2015-03-13 14:27:21 +00:00
|
|
|
|
2015-03-16 14:29:34 +00:00
|
|
|
public:
|
2015-03-23 13:54:40 +00:00
|
|
|
static lopaStr BALobby(const char *ip, const int port);
|
2015-03-13 14:27:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BASICAUTH_H
|