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.

Featured Replies

Posted

http://crackmes.de/users/the_binary_auditor/the_binary_auditor_splish_1/

There are solutions but none of them really explained how they mathematically did it.

It is suppose to satisfy the following condition:

serial=username+10*7 But why? Can someone explain it in more detail using the hashes formulas? Sorry for being nub Also, why is 7 used?

I am doing a level 1 or 2 keygen on crackmes.de that has already been solved. However, I do not want to look at the solution because I will be cheating myself and I would not have learned anything.

Here is what the keygen basically does:


Create hash of username:
int v = 0;
do
{
v = ( i ^ username[i] % 10 ) + 2;
if( (_BYTE)v >= 10 ) LOBYTE(v) = v - 10;
userhash[i++] = v;} while( v != userLen );Create hash of password:
v = 0;
do
{
serialHash[v] = serialkey[v] % 10;
++v;
} while( v != serialLen );Compare the hashes loop
for( int i = 0; ; ++i )
{
if( i == userLen ) Correct serial
if( userhash[i] != serialhash[i] ) break;
}Bad serial;

I am not entirely sure how to solve this, could someone mathematically explain to me how to do it? The userhash and serialhash have to be the same up. How do I do this mathematically? I am not sure.

Thanks.

Never mind, I figured it out. :

Since the modulus has to be equal to the input:

Assuming we input A then we will get 7 so we calculate it using the formula and add 7, then we times that by 10 so its a readable character.

Edited by ScriptKiddy

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.