Hacking Website MyBB With Shell

chmood
Β  Β  Β  Β Today we shall see how to get admins pass in mybb. What you need is to upload a shell i’ve used anΒ r57 shellΒ here (which is the tricky part and you need to do that).
Many people upload shells but little do they know how to use it effectively.
So Lets begin:
Download The shells pack from here:

Step 1:Β The MyBB portal Database config is in theΒ forum/inc/Β .

Step 2:Β Find & See The config.php:

Step 3:Β Now we explore the database a bit. Put the details we gained from the config.php.

Step 4:Β Now we see the tables list. So we explore mybb_users by using the query:
select * from mybb_users
We should see hashes and details of all the users….
Step 5:Β Now we write a query to change the email and maintain complete control over the forum ^^.
The query is:
UPDATE mybb_users SET email=”[email protected]” where uid=”1β€³
The uid can be 1 or 2 depending on the admin generally it is 1.

Step 6:Β Lets see if it worked…
Yep it worked the email was changed.
Step 7:Β Now go to login click forgot Password -> give your new email and you get admin pass.
There you got the admin pass without the need to crack the hash ^^. Thats it for our mybb hacking β€œthrough shell” . I Hope I Helped You In Some Way