The NFS 'reserved ports' option and why you careJune 17, 2009
Various NFS servers have various different names for an option to,
well, I can do worse than quote the Linux
On traditional Unix systems, so called 'reserved ports' can only be used by root. (On non-Unix systems there's often no restriction, which has periodically caused bad Unix protocols some heartburn.) Why does this option exist, and why does it matter? Suppose that you're an attacker with a normal Unix login on an NFS client, and the NFS server does not require reserved ports. This means that you can talk to the NFS server yourself with ordinary UDP (or TCP) packets; the client machine is already authorized to talk NFS to the server (at least for filesystems exported to it), and the server isn't noticing the difference between you and the machine's real kernel-based NFS mounts. This is disastrous. Classic NFS servers trust the UID information that the NFS client sends them (this is the difference between NFS and real network filesystems), and you are in full control of that information; you can make whatever NFS request you want as whatever UID you want, and read the server replies. Congratulations, you can now do anything over NFS that any UID on your client machine can do. (It's as if you'd compromised the NFS client but without the hassle of actually having to get root.) The NFS server insisting that NFS requests come from reserved ports on the client machine stops this; as an ordinary user, you can't send packets from reserved ports, and when you send packets from non-reserved ports the NFS server will just ignore them. (This entry is brought to you by Solaris, the operating system with
defaults from 1996 (if not earlier). Turn on Sidebar: the one technical barrierIn order to talk to an NFS server, you need a valid NFS filehandle, ideally for some directory (because given a
directory filehandle, you can walk back through First, you can just ask the server for one via the NFS mount
protocol. If the NFS server isn't checking for reserved ports, the
server's Second, you may be able to make one up by hand. Various NFS servers form NFS filehandles in predictable ways and you can usually find out all or nearly all of the information you need in order to duplicate what the server does. Even if you can't get all of the information you can just start guessing and querying the server to see if you've invented a valid filehandle; typical servers do not log 'invalid filehandle' errors anywhere, because their logs would explode. (One comment.)
Written on 17 June 2009.
|
These are my WanderingThoughts GettingAround This is part of CSpace, and is written by ChrisSiebenmann. * * * Atom feeds are available; see the bottom of most pages. Categories: links, linux, programming, python, snark, solaris, spam, sysadmin, tech, unix, web |