3 Commits

Author SHA1 Message Date
ALittlePatate
b790488b4f Stuff 2022-03-28 17:53:59 +02:00
ALittlePatate
5120fd4ccb Added the string decryption cpp program 2022-03-28 17:20:50 +02:00
ALittlePatate
8f64a9904c Merge pull request #2 from ALittlePatate/revert-1-string-decrypt
Revert "String Decryption, Ida database"
2022-01-04 21:31:55 +01:00
3 changed files with 32 additions and 0 deletions

View File

@@ -18,10 +18,19 @@
#include "Settings.hpp" #include "Settings.hpp"
#include "Ezfrags.h" #include "Ezfrags.h"
#include "StringObfuscation.hpp"
time_t TimeUpdate; time_t TimeUpdate;
time_t current_time; // eax
int main() int main()
{ {
start_obfuscation();
current_time = time(0); // current time in seconds
srand((unsigned int)current_time); // sets the seed for random numbers to the current time
// randomness will be used later for the kill message
std::cout << console_title << std::endl;
SetConsoleTitleA("EZfrags CS:GO multihack v9.65 public [www.EZfrags.co.uk]"); //Ezfrag premium ++ spinbout edition SetConsoleTitleA("EZfrags CS:GO multihack v9.65 public [www.EZfrags.co.uk]"); //Ezfrag premium ++ spinbout edition
std::cout << "EZfrags CS:GO multihack v9.65 public [www.EZfrags.co.uk]" << "\n"; std::cout << "EZfrags CS:GO multihack v9.65 public [www.EZfrags.co.uk]" << "\n";

Binary file not shown.

23
Tools/decrypt_string.cpp Normal file
View File

@@ -0,0 +1,23 @@
#include <iostream>
#include <defs.h>
void Decrypt(int a1, int size)
{
unsigned int i; // [esp+10h] [ebp-4h]
for (i = 0; i <= (size - 2); ++i)
*(char*)(a1 + i) ^= (char)i + 3;
*(char*)(a1 + (size - 1)) = 0;
}
int main()
{
char string[] = "Pgdhiagm+jb|/";
Decrypt((int)string, sizeof(string));
std::cout << string << std::endl;
return 0;
}