mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
20 lines
431 B
C
20 lines
431 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, const PathStr *ps);
|
||
|
|
||
|
public:
|
||
|
static lopaStr _FTPLobby(const char *ip, const int port, const PathStr *ps);
|
||
|
};
|
||
|
|
||
|
#endif // FTPAUTH_H
|