Jump to content

Recommended Posts

Posted

there is.

 

Brute:

Tool:

/* This program is public domain. Share and enjoy.

*

* Example:

* $ gcc -O2 -fomit-frame-pointer mysqlfast.c -o mysqlfast

* $ mysqlfast 6294b50f67eda209

* Hash: 6294b50f67eda209

* Trying length 3

* Trying length 4

* Found pass: barf

*

* The MySQL password hash function could be strengthened considerably

* by:

* - making two passes over the password

* - using a bitwise rotate instead of a left shift

* - causing more arithmetic overflows

*/

 

#include <stdio.h>

 

typedef unsigned long u32;

 

/* Allowable characters in password; 33-126 is printable ascii */

#define MIN_CHAR 33

#define MAX_CHAR 126

 

/* Maximum length of password */

#define MAX_LEN 12

 

#define MASK 0x7fffffffL

 

int crack0(int stop, u32 targ1, u32 targ2, int *pass_ary)

{

 int i, c;

 u32 d, e, sum, step, diff, div, xor1, xor2, state1, state2;

 u32 newstate1, newstate2, newstate3;

 u32 state1_ary[MAX_LEN-2], state2_ary[MAX_LEN-2];

 u32 xor_ary[MAX_LEN-3], step_ary[MAX_LEN-3];

 i = -1;

 sum = 7;

 state1_ary[0] = 1345345333L;

 state2_ary[0] = 0x12345671L;

 

 while (1) {

   while (i < stop) {

     i++;

     pass_ary = MIN_CHAR;

     step_ary = (state1_ary & 0x3f) + sum;

     xor_ary = step_ary*MIN_CHAR + (state1_ary << Cool;

     sum += MIN_CHAR;

     state1_ary[i+1] = state1_ary ^ xor_ary;

     state2_ary[i+1] = state2_ary

       + ((state2_ary << Cool ^ state1_ary[i+1]);

   }

 

   state1 = state1_ary[i+1];

   state2 = state2_ary[i+1];

   step = (state1 & 0x3f) + sum;

   xor1 = step*MIN_CHAR + (state1 << Cool;

   xor2 = (state2 << Cool ^ state1;

 

   for (c = MIN_CHAR; c <= MAX_CHAR; c++, xor1 += step) {

     newstate2 = state2 + (xor1 ^ xor2);

     newstate1 = state1 ^ xor1;

 

     newstate3 = (targ2 - newstate2) ^ (newstate2 << Cool;

     div = (newstate1 & 0x3f) + sum + c;

     diff = ((newstate3 ^ newstate1) - (newstate1 << Cool) & MASK;

     if (diff % div != 0) continue;

     d = diff / div;

     if (d < MIN_CHAR || d > MAX_CHAR) continue;

 

     div = (newstate3 & 0x3f) + sum + c + d;

     diff = ((targ1 ^ newstate3) - (newstate3 << Cool) & MASK;

     if (diff % div != 0) continue;

     e = diff / div;

     if (e < MIN_CHAR || e > MAX_CHAR) continue;

 

     pass_ary[i+1] = c;

     pass_ary[i+2] = d;

     pass_ary[i+3] = e;

     return 1;

   }

 

   while (i >= 0 && pass_ary >= MAX_CHAR) {

     sum -= MAX_CHAR;

     i--;

   }

   if (i < 0) break;

   pass_ary++;

   xor_ary += step_ary;

   sum++;

   state1_ary[i+1] = state1_ary ^ xor_ary;

   state2_ary[i+1] = state2_ary

     + ((state2_ary << Cool ^ state1_ary[i+1]);

 }

 

 return 0;

}

 

void crack(char *hash)

{

 int i, len;

 u32 targ1, targ2, targ3;

 int pass[MAX_LEN];

 

 if ( sscanf(hash, "%8lx%lx", &targ1, &targ2) != 2 ) {

   printf("Invalid password hash: %s\n", hash);

   return;

 }

 printf("Hash: %08lx%08lx\n", targ1, targ2);

 targ3 = targ2 - targ1;

 targ3 = targ2 - ((targ3 << Cool ^ targ1);

 targ3 = targ2 - ((targ3 << Cool ^ targ1);

 targ3 = targ2 - ((targ3 << Cool ^ targ1);

 

 for (len = 3; len <= MAX_LEN; len++) {

   printf("Trying length %d\n", len);

   if ( crack0(len-4, targ1, targ3, pass) ) {

     printf("Found pass: ");

     for (i = 0; i < len; i++)

       putchar(pass);

     putchar('\n');

     break;

   }

 }

 if (len > MAX_LEN)

   printf("Pass not found\n");

}

 

int main(int argc, char *argv[])

{

 int i;

 if (argc <= 1)

   printf("usage: %s hash\n", argv[0]);

 for (i = 1; i < argc; i++)

   crack(argv);

 return 0;

}

 

But how to compile it?

 

its look like C/C++, try download pelles and compile it

Posted

Omg guys ... i have asked lot of ppls that know how to do it to explain me a little or help me through PM ... w/e im trying 12 hours now without stop and i didnt made it . .. . nones want to help me .. . :'( :'( :'(

Posted

Lol darkslayer you ask if i can advertive your server in overdose server, and i m doing bullsh1ts? kkthxbb..

 

Vote For Ban ExTrEmEDwarf

YES -> 1029 PPL

NO -> 2 PPL

ok i go ask ban I NEVER ASKED TO ADVERTISE MY SERVER IDIOT
Posted

really? Devc++ is a program to compile... you just say the type of test kkthxbb

 

its logic if code is in C u will use PASCAL to compile it ?

just think sometimes,

Posted

Yes i can see because TheEnd show me by msn... that is why i post it! NOOB go translater before you post your english sux!

I never show it to you .....

 

Posted

I never show it to you .....

 

dont worry he tells same shits for everybody he tell that i told him to advertise my srv in overdose topic wtf he suck balls i asked from nitrous to ban him .. i wait for an answer
Posted

[hide][/hide]

So, if we find an open port, and we know the pass and the username of the connection, will we be able to connect to the Database?

Or we can only connect via Port 3306?

Posted

[hide] 

So, if we find an open port, and we know the pass and the username of the connection, will we be able to connect to the Database?

Or we can only connect via Port 3306?

nO YUO HAVE TO FIND mYSQL port.. Deafaut is 3306

Posted

So, would anyone bother to change the MySQL port?

Most admins keep the default port, right?

yeah.

Guest
This topic is now closed to further replies.



  • Posts

    • Hello Everyone   Wts adena  L2 REBORN C5 FRANZ x1 50kk stock 😉   Contact Discord :  topseller4081  
    • tratando de crear un GvE tengo problemas con el scripts como no se mucho de esto me estoy ayudando con IA pero no puedo salir de este bache      [06:19:43]  WARN Quest GvE_AI not found! [06:19:45]  WARN Quest GvE_AI not found! [06:19:50]  WARN Quest GvE_AI not found! [06:25:51]  WARN Quest GvE_AI not found!
    • ## [1.5.5] - 2026-02-02   ### ✨ New Features - **Discord Login**: You can now sign in with your Discord account. Admins enable and configure Discord login in **cpadmin → Users** (Discord auth settings: Client ID, Client Secret, Redirect URI). If you already have an account with the same email (e.g. forum, Google, or legacy), signing in with Discord links to that account so you keep one profile. Discord login is available on Add Server, My Servers, Vote page, and Premium Ads booking. - **Setup Links**: In **cpadmin → Users**, both Google and Discord login settings now include direct links to their official developer portals (Google Cloud Console and Discord Developer Portal) for easier OAuth app setup.   ### 🔒 Security - **Email Required for Registration**: New user registration via OAuth (Forum, Google, Discord) now requires a valid email address. If the OAuth provider doesn't provide an email (e.g. unverified Discord email), registration is rejected with a clear message. This prevents anonymous accounts and ensures all users can receive important notifications.   ### 🔄 Improvements - **User Auth Badges**: In **cpadmin → Users**, the Registered Members table now shows auth method badges: **Forum**, **Google**, **Discord**, or **Legacy**. Users can have multiple badges if they've linked multiple login methods. - **Server Info Labels**: Translated server info labels (Owner Name, Language, Server Location) are now properly localized in all 5 languages (English, Spanish, Portuguese, Greek, Russian).   ---   ## [1.5.4] - 2026-02-01   ### ✨ New Features - **Google Login**: You can now sign in with your Google account. Admins enable and configure Google login in **cpadmin → Users** (Google auth settings: Client ID, Client Secret, Redirect URI). If you already have an account with the same email (e.g. forum or legacy), signing in with Google links to that account so you keep one profile. The login menu (navbar and login prompts) offers **Login with Forum Account**, **Login with Google** (when enabled), and **Create Forum Account**. Google login is available on Add Server, My Servers, Profile Settings, Vote page, and Premium Ads booking. - **Ban/Unban Members**: In **cpadmin → Users**, admins can ban or unban registered members. Banned users see a full-page message: "Sorry, you are banned from using this site." When a user is banned, all their servers are set to inactive. - **Moderator Activity Log**: **cpadmin → Moderators** now records when a moderator or admin enters the CPAdmin panel (e.g. "Moderator X entered CPAdmin panel at &lt;time&gt;") and when they change any cpadmin settings (only write actions are logged; read-only use is not). - **Clear Moderator Logs**: Admins can clear all moderator activity log entries via a **Clear logs** button with confirmation. Logs are shown at 100 per page with pagination. - **Filter by Moderator**: In the Moderator Activity Log, a **Filter by moderator** dropdown lets you view activity for a specific moderator or "All moderators." - **cpadmin → Users Tab**: New **Users** tab in the admin panel with Registered Members list (paginated), Google auth settings card, and per-user Ban/Unban and server links.   ### 🔄 Improvements - **cpadmin → Servers**: Each server name in the servers table is now clickable and opens that server’s info page. - **cpadmin → Users – Servers column**: The servers count/list is clickable and opens a small modal listing that user’s servers; each server name in the modal links to the server info page. - **cpadmin → Users – Search**: A search bar above the Registered Members table lets you search by **username**, **email**, or **server name**. Results are filtered on the server (paginated); clearing the search resets the list. - **Moderator Activity Log**: Pagination shows "Showing X–Y of Z" and "Page N of M" with Previous/Next when there are more than 100 entries. - **Login UI**: Login options (Forum, Google, Create account) are shown in a consistent dropdown and in modals (Add Server, My Servers, Vote, Premium Ads) for a clearer sign-in experience. - **Vote Page – Unauthenticated**: When you must log in to vote, the page now shows "Vote for [Server Name]" as the main heading and presents login options in a compact section.   ---   ## [1.5.3] - 2026-01-30   ### ✨ New Features - **File Logs in Admin Panel**: Admins can now view CodeIgniter PHP logs (api/writable/logs) directly in **cpadmin → Logs**. Select a date to view the log file, refresh to reload, or delete all log files to free up space.   ### 🔄 Improvements - **Cache System**: Full cache audit and improvements — when you clear cache in cpadmin, both backend and frontend caches are cleared. Server listings, My Servers, pricing, ad config, and chronicles all refresh with fresh data. New paid servers now appear in listings and My Servers immediately. - **Admin Panel – Server Rates**: Server rates in the admin servers table now display in compact format (e.g. x10000 → x10k, x100000 → x100k, x1000000 → x1m) for easier scanning. Hover to see the full value.
    • WTB High Five source running on Salvation/Fafurion client
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..