This commit is contained in:
tieshagr 2025-03-09 20:30:52 +03:00
parent b7fc57513d
commit c788653f45
2 changed files with 20 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.vscode

19
src/DosAtk.cpp Normal file
View File

@ -0,0 +1,19 @@
#include <stdlib.h>
#include <string>
// DCL
int attack_type;
std::string domain;
std::string ip;
std::string port;
std::string log_file = "/var/logs/DosAtk";
std::string telegram_id;
std::string telegram_token;
int main(int argc, char **argv)
{
return 0;
}