0
votes
0answers
15 views

sandboxing libreoffice on Linux

I want to build multiple versions of libreoffice on a machine (Debian 6) and want to test these versions against a set of test cases automatically. I also want to test the given libreoffice version by ...
0
votes
0answers
24 views

Securing a fiddle-like webapp for a compiler?

I'm planning to build a web application that will let the user write his own code, compile and test it in-browser, like phpFiddle, or Golang's tour I am aware that securing a server like this will ...
-1
votes
1answer
63 views

How do I install libsandbox? I have some problems during installation [closed]

I have some problems installing libsandbox and pysandbox. I've tried with binary and source packages but no. It seems to do OK but, when I run: from sandbox import * it displays Traceback (most ...
0
votes
0answers
102 views

Authentication over IPC mechanisms in Linux

This question is related to an earlier question I had posted - Running Untrusted Applications on Linux in a Sandbox. Here is the scenario - We have multiple untrusted applications running on our ...
3
votes
1answer
44 views

Fair, secure, efficient, and multi-lingual sandboxing

I'm working on developing a online-judge type system where maybe 100 or so untrusted executables will all be running simultaneously and evaluating the same input data. I'd like each executable to be ...
2
votes
1answer
200 views

How do I get started with libsandbox

I'm trying to write a simple judge that will compile and execute user submitted c files. I found libsandbox and a question here on stackoverflow. I have installed the python module and as per the ...
0
votes
1answer
100 views

Hide sandbox filesystem hierarchy

I want to hide sandbox application's file system hierarchy from others accessing it. I have linux kernel 2.6.36. I sandboxed applications by identifying the resources, kept under the folder [ex ...
0
votes
0answers
240 views

Setting up Linux file system namespace that receives most mounts from host, but not all

I am working on some code that sets up a private /tmp and /var/tmp for a process and its children, using Linux file system namespaces and bind mounts. It's supposed to work something like this: ... ...
2
votes
1answer
100 views

Compiling and Executing external code in C# [closed]

I am writing an application in C#, that will be Compiling and Executing external code written in either C, C++ or Java. In this regard, I have a few questions to ask and following is the research that ...
2
votes
4answers
547 views

How can I sandbox filesystem activity, particularly writes?

Gentoo has a feature in portage, that prevents and logs writes outside of the build and packaging directories. Checkinstall is able to monitor writes, and package up all the generated files after ...
2
votes
1answer
244 views

Architecture to Sandbox the Compilation and Execution Of Untrusted Source Code

The SPOJ is a website that lists programming puzzles, then allows users to write code to solve those puzzles and upload their source code to the server. The server then compiles that source code (or ...
1
vote
2answers
150 views

Prevent application from introducing harmful changes on the server side

This is just my small little hobby project in PHP. I use 0sites.org Server (Linux OS). I am basically try to imitate functionalities of http://www.codepad.org, http://www.ideone.com. I am trying to ...
3
votes
2answers
818 views

How can Linux ptrace be unsafe or contain a race condition?

I'd like to implement a sandbox by ptrace()ing a process I start and all its children would create (including grandchildren etc.). The ptrace() parent process, i.e. the supervisor. would be a simple C ...
36
votes
9answers
9k views

How can I run an untrusted C program in a sandbox in Linux?

I was wondering if there exists a way to run an untrusted C program under a sandbox in linux. Something that would prevent the program from opening files, or network connections, or forking, exec, ...
2
votes
2answers
1k views

How to link shared libraries in local directory, OSX vs Linux

I have some shared/dynamic libraries installed in a sandbox directory. I'm building some applications which link agains the libraries. I'm running into what appears to be a difference between OSX and ...
2
votes
4answers
277 views

Giving a unix process exclusive RW access to a directory [closed]

Is there a way to sandbox a linux process into a certain directory, and give this process exclusive rw access to this dir? For example, create a temporary working directory, and start e.g. python or ...
6
votes
9answers
837 views

What is the safest way to run an executable on Linux?

I am trying to run a program compiled from C code from an unknown source. I want to make sure that the program does not harm my system in anyway. Like for instance, the program might have soemthing ...
0
votes
5answers
248 views

c / c++ disable access to files

Is it possible to disable access of some program to files completely? Because I don't want it to have any kind of access to files on system, is it possible to compile it so it doesn't have access to ...
0
votes
0answers
291 views

Create multiple sandbox

I'm running several PHP applications on a server, and I'd like to create a sandbox for each of them, so that for example one can't access the files of another one. Which could be the best solution? ...
2
votes
2answers
880 views

Scripts like ideone.com and codepad.org

Are there any auto compiling scripts like the ones used at ideone.com and codepad.org available? (preferably open source, and which execute the code in a safe environment.)
11
votes
11answers
3k views

Sandboxing in Linux

I want to create a Web app which would allow the user to upload some C code, and see the results of its execution (the code would be compiled on the server). The users are untrusted, which obviously ...
2
votes
5answers
622 views

Safe Python Environment in Linux

Is it possible to create an environment to safely run arbitrary Python scripts under Linux? Those scripts are supposed to be received from untrusted people and may be too large to check them manually. ...
8
votes
9answers
3k views

Secure way to run other people code (sandbox) on my server?

I want to make a web service that run other people code locally... Naturally, I want to limit their code access to certain "sandbox" directory, and that they wont be able to connect to other parts of ...
5
votes
2answers
2k views

Memory usage of a child process?

I'm running a sort of "sandbox" in C on Ubuntu: it takes a program, and runs it safely under the user nobody (and intercepts signals, etc). Also, it assigns memory and time limits, and measures time ...