Re: [PHP] SSH change password!

2003-01-27 Thread David T-G
Mantas -- ...and then Mantas Kriauciunas said... % ... % And what I need this script for, is, not everyone knows how to use ssh % and I don't want to give access to 50 users that can run their % processes, my server will freeze. That's why I need to change it somehow Either your users plan to

[PHP] SSH change password!

2003-01-24 Thread Mantas Kriauciunas
Hey! I was wondering with what command do you execute shell commands? What I need is to change users password on the server, I want to write that script and it needs to be safe. So I don't know what should I use. I think I will need to check username and password, then log in through website

Re: [PHP] SSH change password!

2003-01-24 Thread Tom Woody
The one problem and serious security risk you will be introducing is that if you run passwd as an unprivliged user you can only change the password of the user you are running it as. Therefore, the webserver would be running as apache, so the only password it could change would be for user

RE: [PHP] SSH change password!

2003-01-24 Thread Mantas Kriauciunas
Cc: [EMAIL PROTECTED] Subject: Re: [PHP] SSH change password! The one problem and serious security risk you will be introducing is that if you run passwd as an unprivliged user you can only change the password of the user you are running it as. Therefore, the webserver would be running as apache

RE: [PHP] SSH change password!

2003-01-24 Thread Serge Paquin
12:03 PM To: Mantas Kriauciunas Cc: [EMAIL PROTECTED] Subject: Re: [PHP] SSH change password! The one problem and serious security risk you will be introducing is that if you run passwd as an unprivliged user you can only change the password of the user you are running it as. Therefore

Re: [PHP] SSH change password!

2003-01-24 Thread Michael Sims
On Fri, 24 Jan 2003 11:48:50 -0600, you wrote: What I need is to change users password on the server, I want to write that script and it needs to be safe. So I don't know what should I use. I think I will need to check username and password, then log in through website with it and then use passwd