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