Tagged Questions
9
votes
5answers
2k views
Detecting a chroot jail from within
How can one detect being in a chroot jail without root privileges? Assume a standard BSD or Linux system. The best I came up with was to look at the inode value for "/" and to consider whether it is ...
5
votes
4answers
469 views
On Linux do people chroot a Java Web Application or use IPTables and run as non-root?
When you run a Java Servlet Container that you would like to serve both static and dynamic content on port 80 you have the classic question of whether to run the server as:
As root in hopefully a ...
4
votes
4answers
231 views
How to (legitimately) access files after putting self into chrooted sandbox?
Changing a Linux C++ program which gives the user limited file access. Thus the program chroots itself to a sandbox with the files the user can get at. All worked well.
Now, however, the program ...
3
votes
4answers
151 views
How to exit a chroot inside a perl script?
While writing a perl script intended to fully automate the setup of virtual machines (Xen pv) I hit a small maybe very simple problem.
Using perl's chroot function I do my things on the guest file ...
3
votes
3answers
549 views
How to run a command in a chroot jail not as root and without sudo?
I'm setting up a minimal chroot and want to avoid having sudo or su in it but still run my processes as non-root. This is a bit of a trick as running chroot requiers root. I could write a program that ...
2
votes
2answers
50 views
Is it possible let chroot jails share directories(read-only) outside the jail?
I have muliple chroot jails, I want them to share
some directories, currently I have to copy these directories into
jails which I think is not elegant. The directories are read-only, like '/usr/bin'.
...
2
votes
2answers
248 views
Can I restrict access to certain files for a certain process?
Is it possible to start a process in Linux, and restrict its access to certain files/directories? For example:
$ start-process --enable-dir=./sandbox --exec="some-script.sh"
some-script.sh won't be ...
2
votes
3answers
248 views
Call external script within chroot environment
I use a chroot development environment for developing software for devices. The chroot dev environment isolates the rest of my system from my build-system hacking. The chroot environment is ...
2
votes
4answers
2k views
How to jail linux user
Is there something similar to chroot, but for users?
We are about to grant access to our servers for a client and would like them to see only the directories we allow.
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
206 views
How can I detect I am running in a chroot() environment without being UID 0? [closed]
Possible Duplicate:
Detecting a chroot jail from within
Detecting whether your process is executed in a chroot() environment on Linux is relatively easy: by comparing the device/inode of ...
1
vote
2answers
163 views
User-dependent file content
For some unfortunate reasons, I have to convert a proprietary and binary library from a one-user per workstation to a multi-user per workstation setup.
Current setup. A user uses a program linked ...
1
vote
0answers
489 views
executing service (openoffice headless) in chroot is slow
I created an ubuntu chroot environment (using debootstrap) and started openoffice as a service to convert files using unoconv. It works but it spends about 20s to do conversions which are below 1s ...
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
77 views
Bash: executing commands from within a chroot and switch user
Im writing a script that should do this...
chroot /chroot_dir/ su -
./startup.sh (This should run within the su environment)
I have tried this approach:
chroot /chroot_dir /bin/bash -c " su -; ...
0
votes
1answer
60 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
130 views
Call chroot in PHP
For security reasons, some applications are isolated in a chroot environment. I need to call this applications through a PHP script. Something like that :
exec('chroot /path/to/chroot command')
I ...
0
votes
1answer
79 views
Running jailkit from non-root process
I have a webserver which will frequently spawn a latex interpreter (written in python). This interpreter lives inside a chroot jail made using jailkit so it has to be started as root.
I don't want ...
0
votes
2answers
85 views
Is there any way to chroot a linux filemanager?
Just wondering for an idea if it would be possible for a filemanager like xfe, rox, nautilus to be able to run (at launch) with chroot aka not being able to go down the tree.
I would be interested ...
0
votes
1answer
124 views
Normal permissions for running mysqld
I'm trying to run mysqld inside chroot environment. Herez the situation.
When I run mysqld as root, I can connect to my databases. But when I run mysql using init.d scripts(normal permissions), mysql ...
0
votes
2answers
757 views
Running mysql in chroot
I've got a chroot environment working on my 10.04 ubuntu box. I'm trying to run mysql inside this chroot environment, but I get this error.
ERROR 2002 (HY000): Can't connect to local MySQL server ...
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
1answer
519 views
Running server from inside Chroot in ubuntu
Due to the peculiar nature of the application, I'm thinking of running servers such as Apache, Tomcat from within a chroot environment.
Using schroot and debootstrap, I'm able to create a clone of my ...
0
votes
1answer
370 views
Why isn't chroot working?
As an alternately to my real question: does anyone know of a simple command line tool to make a chroot jail? I'm thinking something that will run a command and copy everything it needs to run into a ...
0
votes
3answers
222 views
schroot: pass a command to be executed as if it’s in a shell
i want to do something like:
schroot -c name -u root "export A=3 && export B=4"
but I get the error:
Failed to execute “export”: No such file or directory
In other words, I want to be ...
0
votes
1answer
652 views
How to restrict a user to access only specific folders [closed]
I have an Ubuntu server installed and I need to give access to my client's sites hosted on my server. There are currently 2 sites, which means 2 folders.
I was able to create a user with the command:
...