Skype Message Explo...
 
Notifications
Clear all

Skype Message Exploiter Website SOURCE

Page 2 / 9

Rage
Posts: 164
 Rage
(@Rage)
Estimable RivalGamer
Joined: 9 years ago

Its all good, and you would remove the lines in the PHP that check if the key is valid, and in the query for registering where it says "WHERE key=$Key", take that out and make a variable for isRegistered, and just make it update a line where isRegistered=0

So instead of WHERE `key`='$Key', you would make a var called $isRegistered and make it 0, and then you would do WHERE `Registered`='$isRegistered'

Hopefully this helps a bit!

So before...

$result = $conn->query("SELECT * FROM users WHERE `key`='$Key'");

And after...

$result = $conn->query("SELECT * FROM users WHERE `0`='$isRegistered'");

or

$result = $conn->query("SELECT * FROM users WHERE `$isRegistered`='0'");
Reply
Cyb3r
Posts: 1598
(@cyb3r)
Noble RivalGamer
Joined: 9 years ago

So before...

$result = $conn->query("SELECT * FROM users WHERE `key`='$Key'");

And after...

$result = $conn->query("SELECT * FROM users WHERE `0`='$isRegistered'");

or

$result = $conn->query("SELECT * FROM users WHERE `$isRegistered`='0'");

The second is correct.

Edit: it's almost correct you forgot to escape php var with '' so it should like this:

$result = $conn->query("SELECT * FROM users WHERE '$isRegistered'=0");
Reply
Rage
Posts: 164
 Rage
(@Rage)
Estimable RivalGamer
Joined: 9 years ago

The second is correct.

Yeah its not working, see on Login registering doesn't work

Reply
Cyb3r
Posts: 1598
(@cyb3r)
Noble RivalGamer
Joined: 9 years ago

Yeah its not working, see on Login registering doesn't work

I edited the post check it out.

Reply
Cyb3r
Posts: 1598
(@cyb3r)
Noble RivalGamer
Joined: 9 years ago

Yeah its not working, see on Login registering doesn't work

I see you have some wrong configuration about the mysqli connection:

	Warning: mysqli::mysqli() [mysqli.mysqli]: (28000/1045): Access denied for user 'a3865158'@'localhost' (using password: NO) in /home/a3860058/public_html/index.php on line 67
	
	Free Web Hosting
	Connection failed: Access denied for user 'a3860058'@'localhost' (using password: NO)
	
Reply
Page 2 / 9