How to execute with /bin/false shell

Posted by Amar on Stack Overflow See other posts from Stack Overflow or by Amar
Published on 2010-04-11T17:49:30Z Indexed on 2010/04/11 18:13 UTC
Read the original article Hit count: 433

Filed under:
|
|
|
|

I am trying to setup per-user fastcgi scripts that will run each on a different port and with a different user. Here is example of my script:

#!/bin/bash
BIND=127.0.0.1:9001
USER=user
PHP_FCGI_CHILDREN=2
PHP_FCGI_MAX_REQUESTS=10000

etc...

However, if I add user with /bin/false (which I want, since this is about to be something like shared hosting and I don't want users to have shell access), the script is run under 1001, 1002 'user' which, as my Google searches showed, might be a security hole. My question is: Is it possible to allow user(s) to execute shell scripts but disable them so they cannot log in via SSH?

© Stack Overflow or respective owner

How to execute with /bin/false shell

Posted by Amar on Server Fault See other posts from Server Fault or by Amar
Published on 2010-04-11T17:49:30Z Indexed on 2010/04/11 23:13 UTC
Read the original article Hit count: 433

Filed under:
|
|
|
|

I am trying to setup per-user fastcgi scripts that will run each on a different port and with a different user. Here is example of my script:

#!/bin/bash
BIND=127.0.0.1:9001
USER=user
PHP_FCGI_CHILDREN=2
PHP_FCGI_MAX_REQUESTS=10000

etc...

However, if I add user with /bin/false (which I want, since this is about to be something like shared hosting and I don't want users to have shell access), the script is run under 1001, 1002 'user' which, as my Google searches showed, might be a security hole. My question is: Is it possible to allow user(s) to execute shell scripts but disable them so they cannot log in via SSH?

© Server Fault or respective owner

Related posts about linux

Related posts about bash