Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

I Need An Easy Crackme Source Code

Featured Replies

Posted

Hi all,

Could you please post source code for a very easy CrackMe.

I'm not VC++ programmer, but i need this source code *urgent*.

Thanks.

If your not a programmer, what is the source code going to do for you?

What perxactly you trying to do?

I can write small programs using C# and VB. so when i read C++ i can understand most of it.

I need it for educational purpose combines between cracking and programming.

Edited by salam2002

even keygenme^^

#include <iostream>
#include <windows.h>
#include <conio.h>
#pragma comment(linker, "/OPT:NOWIN98")
#pragma comment(lib, "user32.lib")int main()
{
char name[200];
char serial[200];
char validSerial[200];
char fixedSerialString[200] = "Sample KeyGenMe"; int encoder = 0; do
{
std::cout << "Registration Name: ";
std::cin >> name;
std::cout << "Registration Serial: ";
std::cin >> serial;
int len = strlen(name);
if (len < 35 && len > 2)
{
for (int i = 0; i < len; i++)
{
encoder = encoder + name[i];
encoder = encoder + 0xABCDEF;
} wsprintf(validSerial, "%s-%X", fixedSerialString, encoder); int equal = strcmp(validSerial, serial);
if (equal == 0)
{
std::cout << "Registration Succeeded";
}
else
{
std::cout <<"Registration Failed";
}
}
else
{
std::cout <<"Registration Failed";
}
getch();
system("cls");
}
while (1 != 0);
}

O Oldschool Hardtrancer, Thanks !!!

helpful code.

np

Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.