Tagged Questions

3
votes
2answers
173 views

Python script opening a bash prompt terminating the script

I want to write a chroot wrapper in python. The script will be copying some files, setting up some other stuff and then executing chroot and should land me in a chroot shell. The tricky part is that ...
2
votes
2answers
2k views

Python and os.chroot

I'm writing a web-server in Python as a hobby project. The code is targeted at *NIX machines. I'm new to developing on Linux and even newer to Python itself. I am worried about people breaking out of ...
1
vote
1answer
101 views

Using distutils to install INTO a chroot'ed environment

I maintain a chrooted Linux image and I have a package that I'd like to install into that chrooted image. Both packages end up getting installed into both locations; I can't figure out what is going ...
0
votes
1answer
44 views

openssl inside a chroot

I'm getting the following error when I try to make an ssl connection from inside a chroot jail: twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion. ...
0
votes
1answer
39 views

Web service call in Python (Twisted + ZSI) not working in chroot jail

I have a Python script that calls a web service using ZSI with Twisted. On Linux, I'm running this script and it works fine. Now, I want this script to run in a chroot jail which is somewhere in my ...
0
votes
1answer
61 views

Debugging python script executed in chroot environment

Is there a way to debug python script which is executed inside chroot by eclipse which is installed on my machine and chroot doesn't see it? I am not allowed to install eclipse inside chroot.
0
votes
2answers
216 views

Writing files into chroot environment

I'm trying to write data to files in a chroot environment. Since I'm non-root user, they only way I can communicate with chroot is using schroot command. Currently I'm using the following trick to ...
0
votes
2answers
401 views

How to chroot Django

Can one run Django in a chroot? Notably, what's necessary in order to set up (for example) /var/www as a chroot'd directory and then have Django run in that chroot'd directory? Thank you - I'm ...