v2.0.0: Rename bruteforce to dictionary attack to avoid confusion (#71)

This commit is contained in:
Brendan LE GLAUNEC
2017-05-12 10:51:49 +02:00
committed by GitHub
parent b61fe52161
commit 0e7577ed7c
11 changed files with 61 additions and 61 deletions
+4 -4
View File
@@ -26,8 +26,8 @@
// All the tasks managed by the dispatcher
#include <tasks/mapping.h>
#include <tasks/parsing.h>
#include <tasks/brutelogs.h>
#include <tasks/brutepath.h>
#include <tasks/creds_attack.h>
#include <tasks/path_attack.h>
#include <tasks/thumbnail.h>
#include <tasks/stream_check.h>
#include <tasks/print.h>
@@ -40,8 +40,8 @@ enum class task {
preparation,
mapping,
parsing,
brutepath,
bruteforce,
path_attack,
creds_attack,
thumb_generation,
print,
finished
@@ -24,25 +24,25 @@
namespace etix {
namespace cameradar {
class brutelogs : public etix::cameradar::cameradar_task {
class creds_attack : public etix::cameradar::cameradar_task {
const configuration& conf;
std::shared_ptr<cache_manager> cache;
std::string nmap_output;
public:
brutelogs() = delete;
brutelogs(std::shared_ptr<cache_manager> cache,
creds_attack() = delete;
creds_attack(std::shared_ptr<cache_manager> cache,
const configuration& conf,
std::string nmap_output)
: conf(conf), cache(cache), nmap_output(nmap_output) {}
brutelogs(const brutelogs& ref) = delete;
creds_attack(const creds_attack& ref) = delete;
virtual bool run() const;
bool test_ids(const etix::cameradar::stream_model& cit,
const std::string& pit,
const std::string& uit) const;
bool bruteforce_camera(const stream_model& stream) const;
bool attack_camera_creds(const stream_model& stream) const;
};
}
}
@@ -27,23 +27,23 @@
namespace etix {
namespace cameradar {
class brutepath : public etix::cameradar::cameradar_task {
class path_attack : public etix::cameradar::cameradar_task {
const configuration& conf;
std::shared_ptr<cache_manager> cache;
std::string nmap_output;
public:
brutepath() = delete;
brutepath(std::shared_ptr<cache_manager> cache,
path_attack() = delete;
path_attack(std::shared_ptr<cache_manager> cache,
const configuration& conf,
std::string nmap_output)
: conf(conf), cache(cache), nmap_output(nmap_output) {}
brutepath(const brutepath& ref) = delete;
path_attack(const path_attack& ref) = delete;
virtual bool run() const;
bool test_path(const etix::cameradar::stream_model& cit, const std::string& it) const;
bool bruteforce_camera(const stream_model& stream) const;
bool attack_camera_path(const stream_model& stream) const;
};
}
}