eclone()
Posted Nov 20, 2009 12:43 UTC (Fri) by
anselm (subscriber, #2796)
In reply to:
eclone() by quotemstr
Parent article:
eclone()
Maybe. Off the top of my head, the problems with that might be that
- other processes will fork, too, so especially on a busy system
the signal-to-noise ratio will probably be much worse, and
- you may not be allowed to create as many simultaneous processes
as you need to make yourself noticeable.
The main difference is that with sequentially numbered PIDs, the receiver
of the covert channel only needs to fork(2) periodically and look at the
returned child PID to find out how many processes have been created in the
meantime; it does not need to be able to find out how many processes are
running on the system, let alone be able to find out how many child
processes another process has (when a suitably hardened system may
prevent it from finding out any details about that process at all, which
is why the covert channel is necessary to begin with).
(
Log in to post comments)