tech-security archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

enforcing RLIMIT_NPROC in setuid() ?



One of my customers found an interesting way around RLIMIT_NPROC the
other day - he was running a script from another site that ssh'd in,
and due to bad coding in the script it began running an infinite loop
of ssh calls, all of which stayed logged in at the same time.

The result was that the customer was logged in hundreds of times
on the same machine, with well over the default 160 processes set
by "ulimit -n".  He eventually reached MAXNPROC and the system was
unable to do anything useful until we figured out what was going on
and stopped his script from logging in.

I believe the reason this happened was because sshd starts
out as root, and once authentication is complete, demotes itself
to run as the user logging in (presumably by using setuid() and/or
seteuid() ).

Would it make sense to have setuid() check the process limit,
and return an error if the user in question is over the limit?
That way, programs that check the return value of setuid() would
fail and prevent new processes from being created by login loops
like the one described above.

It would probably be a good idea for setuid() to still carry out
the UID change, just in case there's a poorly written program
somewhere that doesn't check the return value.

        -- Ed

Ed Ravin          | "The law, in its majestic equality, forbids the rich as
                  |  well as the poor to sleep under bridges, to beg in the
 eravin@          |  streets, and to steal bread."
 panix.com        |               --Anatole France, Le Lys Rouge [1894]



Home | Main Index | Thread Index | Old Index