Linux - Security This forum is for all security related questions.
Questions, tips, system compromises, firewalls, etc. are all included here. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
12-27-2007, 09:58 AM
|
#1
|
Member
Registered: Jan 2006
Distribution: Debian Testing
Posts: 675
Rep:
|
How can I allow ssh tunneling but not a shell? Or equivelent...
Hey how can I allow people to forward ports with ssh from my server using ssh -L but not allow them to have an actual shell that they can login to and run commmands?
thanks very much,
nomb
|
|
|
12-27-2007, 11:01 AM
|
#2
|
Senior Member
Registered: Aug 2007
Location: South Carolina, U.S.A.
Distribution: Ubuntu, Fedora Core, Red Hat, SUSE, Gentoo, DSL, coLinux, uClinux
Posts: 1,302
Rep:
|
Quote:
Originally Posted by nomb
Hey how can I allow people to forward ports with ssh from my server using ssh -L but not allow them to have an actual shell that they can login to and run commmands?
|
Can't you just set their shell in "/etc/passwd" to "/bin/false"?
|
|
|
12-28-2007, 09:42 AM
|
#3
|
Member
Registered: Jan 2006
Distribution: Debian Testing
Posts: 675
Original Poster
Rep:
|
That didn't work. And using /bin/nologin doesn't work because ssh needs to login. Someone suggested changing the shell in /etc/passwd to a script that chrooted the user's home directory. I can write the bash script, but how would I edit the passwd file? Changing '/bin/bash' to 'sh /etc/chroot_script' didn't work and infact killed my ability to login since I'm only allowing RSA keys.
Thanks,
nomb
|
|
|
01-02-2008, 10:18 AM
|
#4
|
Member
Registered: May 2007
Location: Chas, SC
Distribution: slackware, gentoo, fedora, LFS, sidewinder G2, solaris, FreeBSD, RHEL, SUSE, Backtrack
Posts: 430
Rep:
|
sorry it took so long to reply.
this solution should work just fine.
name the file what ever you want but for this is will use sshtrap
/bin/sshtrap
Code:
#!/bin/bash
trap "" SIGINT SIGQUIT SIGTERM SIGHUP
trap "" SIGTRAP SIGSTOP SIGKILL SIGTSTP
echo "This is a restricted shell"
echo "Please leave this window open while using port forwarding"
echo -e "type \"EXIT\" to exit\n"; read ANSWER
while [ "$ANSWER" != "EXIT" ]; do
echo -e "type \"EXIT\" to exit\n"; read ANSWER
done
kill -9 `ps | awk '{ print $1 }'`
chmod +x /bin/sshtrap
then add
/bin/sshtrap to the end of the home users .bashrc file.
That will trap ctrl+c, ctrl+d, ctrl+z, etc. and they can still use ssh port forwarding.
let me know if it works
|
|
|
All times are GMT -5. The time now is 02:59 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|