- May 20, 2016
- 264
- 107
- 136
Hello guys! Anyone know how to get and show server password with php ?
Which metods are using for encryption?
Which metods are using for encryption?
//Connection
$config = array(
"address" => "localhost",
"queryport" => "10011",
"serveradmin" => "serveradmin",
"password" => "qwerty",
"port" => "9987",
"nickname" => "CodexBOT"
);
$ts3_VirtualServer = TeamSpeak3::factory("serverquery://{$config['serveradmin']}:{$config['password']}@{$config['address']}:{$config['queryport']}/?server_port={$config['port']}&nickname={$config['nickname']}");
$serverpassword= $ts3_VirtualServer->virtualserver_password
echo $serverpassword;
Yes, i know about that. I want decrypt him and show on control panelYou are aware that the ServerQuery Password you get there is encrypted?
okits a hash
hashes are used for a one-way encryption - its designed so you are NOT able to decrypt it easily
This is very simple and easyWhat about making a script that will change password on server and also it will change it on a web (SQL?).
And if for example the administrator decided to change the password, being directly on the server, and not from the web panelWhat about making a script that will change password on server and also it will change it on a web (SQL?).
ExactlyThis is very simple and easy
Make a server query bot, if you are too lazy, use NimdaTS3 (the simpliest way to do it by far)And if for example the administrator decided to change the password, being directly on the server, and not from the web panel