jailkit-users
[Top][All Lists]
Advanced

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

Re: [Jailkit-users] Jailing the Python Interpreter - os.kill still killi


From: Olivier Sessink
Subject: Re: [Jailkit-users] Jailing the Python Interpreter - os.kill still killing
Date: Mon, 05 Nov 2007 08:21:11 +0100
User-agent: Icedove 1.5.0.14pre (X11/20071018)

Gregory Piñero wrote:
> I set up a jailed Python interpreter.  It runs under the user:
> jailed_user. The problem I'm having is that one process can still run
> code like this and kill any process running under jailed_user:
> 
> import os
> os.kill(9132,9)
> 
> Where 9132 is another process from the same user i.e., someone elses
> jailed Python session.
> 
> Is there any way to not allow this?

chrooting processes only helps to reduce file access. kill() is not file
access, so normal unix permissions apply. So you'll need to use
different unix users to do this.

regards,
        Olivier




reply via email to

[Prev in Thread] Current Thread [Next in Thread]