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