Skip to content

Instantly share code, notes, and snippets.

@Ttech
Last active September 9, 2018 03:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ttech/413b04e2584efb5767dc0a385556ff91 to your computer and use it in GitHub Desktop.
Save Ttech/413b04e2584efb5767dc0a385556ff91 to your computer and use it in GitHub Desktop.
//GeoSn0w's Reverse Engineering Tutorial
//Use the code as you want, WTFPL
#include <string.h>
#include <stdio.h>
#include <time.h>
int main(int argc, char *argv[]) {
if(argc==2) {
printf("Preparing to check access key: %s\n", argv[1]);
int hex = 0;
for(int access=0; access<strlen(argv[1]); access++){
hex += (int)argv[1][access];
}
if(hex==1568) {
printf("Welcome! F.C.E. 365 Tool v35.1\n");
printf("What are you doing today?\n");
time_t timer;
char buffer[26];
struct tm* tm_info;
time(&timer);
tm_info = localtime(&timer);
strftime(buffer, 26, "%Y-%m-%d %H:%M:%S", tm_info);
puts(buffer);
return 0;
}
else {
printf("The access key is not correct!\n");
printf("You are not allowed to use this software.\n");
}
}
else {
printf("To access the program you need the access key. Pass it with: <key>\n");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment