2
votes
7answers
229 views
fork/chroot equivalent for Windows server application
I have written a small custom web server application in C running on Linux. When the application receives a request it calls fork() and handles the request in a separate process, which is chrooted …
0
votes
2answers
276 views
Best Ubuntu setup for 32-bit *AND* 64-bit Qt app development?
I'm developing a qt-based application and i would like to develop both 32 and 64bit version of the application on the same machine, sharing the same sources, scripts, etc..
The machine is an Ubuntu …
1
vote
2answers
152 views
Access Control Lists in Debian Lenny
So, for my clients to who have sites hosted on my server, I create user accounts, with standard home folders inside /home.
I setup an SSH jail for all the collective users, because I really am …
1
vote
3answers
112 views
What method(s) do you use to test a debian/ubuntu package?
I'm talking about testing a package that you're building, especially one that spawns a daemon and/or fiddles with init.d.
Do you log into some sort of chroot? Do you create a virtualized distribution …
1
vote
3answers
233 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.
0
votes
2answers
327 views
chrooted Apache+MsSQL on openBSD; Could not determine the server’s fully qualified domain name
php generates GIFs on the web server using a databases on a second server.
The the page shows 20 GIFs, so there is some load for a short time (multiple connections)
Some GIFs are loaded but some …
1
vote
2answers
365 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 …
4
votes
5answers
275 views
chroot + execvp + bash
Update
Got it! See my solution (fifth comment)
Here is my problen:
I have created a small binary called "jail" and in /etc/password I have made it the default shell for a test user.
Here is the -- …
2
votes
5answers
521 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 …
