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 ...
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
1answer
135 views

how to safely receive files from end-users via rsync

I'd like to allow users of my web application to upload the contents of a directory via rsync. These are just users who've signed up online, so I don't want to create permanent unix accounts for them, ...
0
votes
1answer
28 views

How to create reference to /dev in a chroot jail that is deletion-proof?

I need to create a chroot jail for my program. The program needs the contents of /dev to execute properly. I don't want to copy the contents of /dev in the chroot jail, because I want to avoid the ...
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
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 ...