Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make an application on php,so that if anyone needs to change the password(either of his linux pc or internal office's server's account) ,that will be done by him/her by opening a page on browser.. how can i implement this ???

I had a code to change the Linus's pc's password through php,but how can i change my server's account's password through this ?

I am using the below command to change the Linux pc's password :-

shell_exec("echo $newpass | sudo -u root passwd --stdin $user"); 

Pls help me !!

share|improve this question
1  
Sounds like a serious security vulnerability. – rosipov Feb 23 at 10:55
I think the same code should work, just set $user to the server's account. – Barmar Feb 23 at 10:56
@Barmar This actually depends on the sudo setup I'd say... – arkascha Feb 23 at 11:09
But to change the server's account's password,dont i need to login to that server ?? – sakshi Feb 23 at 11:10
I do hope that at least you use https, not http. – arkascha Feb 23 at 11:10
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.