mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
20 lines
399 B
C++
20 lines
399 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 : BruteUtils{
|
|
private:
|
|
static bool checkOutput(const string *buffer);
|
|
static lopaStr _BABrute(const char *ip, const int port);
|
|
|
|
public:
|
|
static lopaStr _BALobby(const char *ip, const int port);
|
|
};
|
|
|
|
#endif // BASICAUTH_H
|