bsdphx writes "OpenSSH developers Damien Miller and Markus Friedl have recently added a nifty feature to make life easier for admins. Now you can easily lock an SSH session into a chroot directory, restrict them to a built-in sftp server and apply these settings per user. And it's dead simple to do. If you need to allow semi-trusted people on your computers, then you want this bad!"
Understanding the issues is better than parroting what you've heard from random sources. Given the OpenBSD and OpenSSH track record for security it's obvious they have some serious clues about security.
I think English speakers are slowly dropping use of "ly" on the ends of adjectives. If so, it's one of those things that will slowly happen more and more, until that's just the way it's done.
Ironically, the word 'good' should really have been 'well' in the previous sentence
Did it change the meaning to something other than what was intended? Because that's what ironic means.
Making the same mistake yourself while correcting someone else is not ironic. It's just humorously coincidental. Please watch this episode [wikipedia.org] of Futurama for further education.
I don't really know anything about chroot security either, but the first thing that occurs to me is that there's way too much code running/setuid'd as root or in kernel/driver space to just change the filesystem interface and expect that to be secure. You can't possibly lock down every interface in all of this code without a more pervasive solution.. especially since we can barely (read: we can't) keep code listening on internet-accessable ports secure from buffer/integer overflows and other tricky busine
Giving someone a shell and putting them in a chroot crafted to look and function like a full system is one thing.
Giving someone an SFTP session and chrooting them into a subdirectory is another thing.
The feature added in this commit was arguably intended for the latter purpose given the additional changes to the SFTP subsystem that were included. There are countless tutorials and patches and scripts that are available to achieve chrooted SFTP-only access, but now it's been implemented in the core of OpenSSH. In my eyes, this solution is not only a "cleaner" solution to the problem, but it's probably more secure too.
Yeah, good question. I dunno - maybe everyone was standing around asking "when is someone going to do this?" and using FTP(S) in the mean time. I might have been.;)
They are probably better than giving semi-trusted users full filesystem access, even if they aren't perfect security. It's not even that chroot is inherently broken, it's just that people were using it incorrectly (setting it suid or letting the user become root inside of their jail). Most of the complaints seem to be "the user managed to get root and broke out of the jail", which is a problem with whatever allowed your user to become root in the first place, not the jail itself.
Basically, to break out of a chroot you need to be root. If you're root, then you've already defeated the security on the box anyway. Don't let untrusted users become root.
Once you are root, there are dozens of ways to break out of a jail (all the way from modifying kernel memory structures directly to rewriting inodes to installing a kernel module that grants you access to whatever you need, etc...
In the right circumstances, 2 non-root users can conspire to break out of jail if one is chrooted below the other.
Let's say A is chrooted to/home/sorta-trusted and B to/home/sorta-trusted/not-so-much.
A diropens his / and creates a unix socket in/not-so-much. B opens the socket in his/. Now, A passes his fd to his / to B. B then does fdchdir on the fd and he's out of jail. Now B can break A out.
A diropens his / and creates a unix socket in/not-so-much. B opens the socket in his/. Now, A passes his fd to his / to B. B then does fdchdir on the fd and he's out of jail. Now B can break A out.
That's pretty interesting! In practice, though, what would that get them? B would now have access to A's chroot (possibly - file permissions might be too restrictive anyway). If A trusts B that much, they could just share A's login.
Not saying this isn't serious, but I'm too tired to think of a useful attack vector at this moment. Am I missing something?
It's far worse, at least in the Linux kernel (and quite probably other Unix as well but I haven't studied them). The linux kernel assumes that the PWD is at or below the chroot. When a system call parses a pathname, it substitutes the chroot for a leading/, and when walking through a.. in a pathname, it checks that the current directory in the walk isn't already the chroot before following.. up.
So, once B gets to A's chroot (/home/sorta-trusted), it can access the real / as../.. because now, the..'s
You know, I've had two "oh crap!" moments involving computer security. The first happened when I learned about SQL injection. The second occurred just now when I read your letter. Thanks for the followup!
They're not secure for root users. That was the issue identified in the recent "read" you mention--someone was pointing out that root can break out in a particular way, and the kernel devs responded that 1) that was by design, and 2) locking that down left an infinite number of other ways to break out if you're root.
For regular user accounts, a properly configured chroot jail is still a very useful security tool.
Didn't we just read that chroot "jails" are not secure?
Only when you have full shell access. This patch is just about confining sftp file transfers via chroot(2) for some users without the burden of setting up a full chrooted environment. Sounds really sweet.
The purpose of this feature doesn't seem to be to restrict what a shell user can do. Rather, if I read this correctly, it restricts what files a user can access via sftp. Without this feature, a user can sftp in, and then cd to / or any other folder that he has rights too. This chroot feature lets the admin limit the root to, say, his home directory, or some other folder such as a virtual web root or something.
It's only natural that this same chroot feature would be added to sftp.
You misunderstood that the whole debate was about what a root user could do from within a chroot jail. A properly limited user account can be secured in a chroot jail (i.e., not simply chrooting but configuring a jailed environment).
The devs were correct that chroot alone was not designed for the purpose of security and can't be used alone to provide any.
Anyway, would something like Kerberos fill the bill for you? I use it to navigate around our network, and it's not that hard to do once you get over the initial learning curve. If you're stucking working with Windows, you can even auth against an Active Directory domain.
This is a "Very Secure FTP Daemon" I would love for it to be configured exactly the same, but the transport protocol would be Sech-file-xfer draft protocol (SFTP)
vssftpd ?
how about just a protocol option in the config of vsftpd...
This is news because the chroot and sftp server are now built in to the openssh binaries, so you don't have to manually set up the chroot. While there's no GUI, it is in fact now easier to set up such a thing.
Ubuntu GUI? Where do you get Ubuntu from? This is from the folks who make OpenSSH. And OpenSSH is made by the OpenBSD folks, not Ubuntu.
This simply makes it much easier to do what many folks have been setting up manually for a long time. I'm hoping they'll follow it up with SCP support as well. Time to buy another CD set to support the project:)
This isn't really anything new. This functionality has existed as a patch for a while. It's still nice to see that it's finally being integrated into the main tree, though.
Does this mean that I can give users shell access, by placing (hard links to) a stripped-down busybox and ash in $HOME/bin, and they won't be able to access anything outside the chroot environment? That could be sweet.
It is cool tech but not the way I would do things. WebDav with ApacheSSL properly installed is lots safer. IMHO there should never be user accounts on a machine, other than root and the person administrating the box.
WebDav with ApacheSSL properly installed is lots safer.
Why? No privilege separation. A MUCH bigger code base.
Not to mention fewer standalone programs.
IMHO there should never be user accounts on a machine,
Why not? The user security model is reliable and time tested. It does not require reinventing the "user". It does not depend on one program handling it's own system of virtual permissions correctly. It does not depend on the security of a large program that users directly interact with.
You're welcome to break into any of my systems using a user account that has been disabled, and has no permission to access anything. eg. user "nobody". That's precisely how I would set up a sftp group.
Why bother? (Score:3, Insightful)
Re:Why bother? (Score:5, Insightful)
Parent
Re: (Score:1)
Re: (Score:2)
Did that sound good to you ? (Ironically, the word 'good' should really have been 'well' in the previous sentence)
Re: (Score:2)
Did it change the meaning to something other than what was intended? Because that's what ironic means.
Making the same mistake yourself while correcting someone else is not ironic. It's just humorously coincidental. Please watch this episode [wikipedia.org] of Futurama for further education.
Re:Why bother? (Score:4, Interesting)
Parent
Re: (Score:2)
The idea (Score:2)
Re:Why bother? (Score:5, Informative)
Giving someone an SFTP session and chrooting them into a subdirectory is another thing.
The feature added in this commit was arguably intended for the latter purpose given the additional changes to the SFTP subsystem that were included. There are countless tutorials and patches and scripts that are available to achieve chrooted SFTP-only access, but now it's been implemented in the core of OpenSSH. In my eyes, this solution is not only a "cleaner" solution to the problem, but it's probably more secure too.
Parent
Re: (Score:2)
Yep, that's precisely why my ears perked up upon hearing this, for hosting providers that want to provide secure remote file access, this is awesome!
/Mike
Re: (Score:2, Informative)
The (now defunct) commercial SSH has had this feature for almost 10 years.
Re: (Score:2)
/mike
Re:Why bother? (Score:5, Informative)
Basically, to break out of a chroot you need to be root. If you're root, then you've already defeated the security on the box anyway. Don't let untrusted users become root.
Parent
Tell us more. (Score:2)
Re: (Score:3, Informative)
Step 1: Become root
Once you are root, there are dozens of ways to break out of a jail (all the way from modifying kernel memory structures directly to rewriting inodes to installing a kernel module that grants you access to whatever you need, etc...
Re:Tell us more. (Score:5, Informative)
In the right circumstances, 2 non-root users can conspire to break out of jail if one is chrooted below the other.
Let's say A is chrooted to /home/sorta-trusted and B to /home/sorta-trusted/not-so-much.
A diropens his / and creates a unix socket in /not-so-much. B opens the socket in his /. Now, A passes his fd to his / to B. B then does fdchdir on the fd and he's out of jail. Now B can break A out.
The moral is, never use nested chroot jails!
Parent
Re: (Score:2)
A diropens his / and creates a unix socket in /not-so-much. B opens the socket in his /. Now, A passes his fd to his / to B. B then does fdchdir on the fd and he's out of jail. Now B can break A out.
That's pretty interesting! In practice, though, what would that get them? B would now have access to A's chroot (possibly - file permissions might be too restrictive anyway). If A trusts B that much, they could just share A's login.
Not saying this isn't serious, but I'm too tired to think of a useful attack vector at this moment. Am I missing something?
Re: (Score:3, Informative)
It's far worse, at least in the Linux kernel (and quite probably other Unix as well but I haven't studied them). The linux kernel assumes that the PWD is at or below the chroot. When a system call parses a pathname, it substitutes the chroot for a leading /, and when walking through a .. in a pathname, it checks that the current directory in the walk isn't already the chroot before following .. up.
So, once B gets to A's chroot (/home/sorta-trusted), it can access the real / as ../.. because now, the ..'s
Re: (Score:2)
You know, I've had two "oh crap!" moments involving computer security. The first happened when I learned about SQL injection. The second occurred just now when I read your letter. Thanks for the followup!
Re:Why bother? (Score:5, Informative)
I imagine something similar would be forthcoming regarding OpenSSH specifically.
Parent
Re:Why bother? (Score:4, Informative)
For regular user accounts, a properly configured chroot jail is still a very useful security tool.
Parent
Re: (Score:2)
Only when you have full shell access. This patch is just about confining sftp file transfers via chroot(2) for some users without the burden of setting up a full chrooted environment. Sounds really sweet.
FTP servers have been doing this for years (Score:4, Informative)
It's only natural that this same chroot feature would be added to sftp.
Parent
Re: (Score:2)
The devs were correct that chroot alone was not designed for the purpose of security and can't be used alone to provide any.
Bad to the bone (Score:1, Funny)
(However, in this case you're correct in your usage.)
Re: (Score:2)
Oh thank god (Score:3, Interesting)
Now I can finally switch some customers from FTP to SFTP. Thanks for making this hugely useful change!
Anyone know if SFTP logging will be added any time soon? That's the last missing feature i always have to manually patch in.
Re: (Score:3, Insightful)
Re: (Score:2)
For real? My sarcasm meter is out of whack today so I can't tell.
Re: (Score:2)
Re: (Score:2)
OK, just checking. It's been a long day. :-)
Anyway, would something like Kerberos fill the bill for you? I use it to navigate around our network, and it's not that hard to do once you get over the initial learning curve. If you're stucking working with Windows, you can even auth against an Active Directory domain.
Re:Oh thank god - vsftpd v sftpd vs. vs ftpd. (Score:2)
This is a "Very Secure FTP Daemon" I would love for it to be configured exactly the same, but
the transport protocol would be Sech-file-xfer draft protocol (SFTP)
vssftpd ?
how about just a protocol option in the config of vsftpd...
Re: (Score:2)
I'm still hankering for tab completion in SFTP myself... maybe someday.
Re: (Score:3, Informative)
It will let you connect to sftp servers, and have a sane command line experience. It also has many nifty mirroring commands.
Why is this news? (Score:1)
Re: (Score:3, Informative)
Re: (Score:2)
This simply makes it much easier to do what many folks have been setting up manually for a long time. I'm hoping they'll follow it up with SCP support as well. Time to buy another CD set to support the project
Nothing New (Score:2, Informative)
Does This Mean (Score:3, Interesting)
all that for sftp? (Score:4, Interesting)
Re:all that for sftp? (Score:4, Insightful)
Why? No privilege separation. A MUCH bigger code base.
Not to mention fewer standalone programs.
Why not? The user security model is reliable and time tested. It does not require reinventing the "user". It does not depend on one program handling it's own system of virtual permissions correctly. It does not depend on the security of a large program that users directly interact with.
I can see ample reasons sftp is safer.
Parent
Re: (Score:2)
Re: (Score:1, Redundant)
So you are running Apache as root? Scary.
RSSH ? (Score:1)
Re: (Score:2)
Since SFTP stands for Secure File Transfer Protocol, it's not really designed to allow you to execute commands.