mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
20 lines
414 B
C++
20 lines
414 B
C++
#ifndef BASICAUTH_H
|
|
#define BASICAUTH_H
|
|
|
|
#include "Connector.h"
|
|
#include "BruteUtils.h"
|
|
#include "Utils.h"
|
|
#include "externData.h"
|
|
#include "mainResources.h"
|
|
|
|
class BA {
|
|
private:
|
|
static bool checkOutput(const string *buffer, const char *ip, const int port);
|
|
static lopaStr BABrute(const char *ip, const int port);
|
|
|
|
public:
|
|
static lopaStr BALobby(const char *ip, const int port);
|
|
};
|
|
|
|
#endif // BASICAUTH_H
|