-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameHack.cpp
58 lines (42 loc) · 1.01 KB
/
GameHack.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//H4xton Was Here
#include <iostream>
#include "scangame.hpp"
#include <regex>
#include <Windows.h>
#include <string>
#include <iostream>
#include <fstream>
#include <direct.h>
#include <random>
namespace onoff {
static bool DevTool = true;
};
std::string empty = " (VULN)";
void callme() { int i = 0; };
int AuthSucceded()
{
if (onoff::DevTool)
{
std::cout << "Revslider:" + ShowExploit::Revslider + empty << std::endl;
}
std::cout << "Welcome to DragonSploit" << std::endl;
std::cout << ShowExploit::options << std::endl;
while (true) {
std::string command;
std::getline(std::cin, command);
if (command == "1") {
std::cout << "You Choose Exploit 1" << std::endl;
};
if (command == "2") {
std::cout << "You Choose Exploit 2" << std::endl;
};
if (command == "3") {
std::cout << "You Choose Exploit 3" << std::endl;
};
}
}
int main()
{
AuthSucceded();
}
//H4xton Was Here