Kashif Majeed Posted June 1, 2015 Share Posted June 1, 2015 Hello everyone, How to get client password in readable format. tried with following code but get password in hash format. $command = "getclientpassword"; $adminuser = "admin"; $values["userid"] = "10"; $results = localAPI($command,$values,$adminuser); 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted June 1, 2015 Share Posted June 1, 2015 you need to one line extra to decrypt password, so it will look like this: <?php $command = "getclientpassword"; $adminuser = "admin"; $values["userid"] = "10"; $results = localAPI($command,$values,$adminuser); $password = decrypt($results['password']); ?> 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.