Tagged Questions
5
votes
2answers
108 views
Running plugins in a sandbox
I am designing a system in C/C++ which is extendible with all sort of plugins. There is a well defined C public API which mostly works with (const) char* and other pointer types. The plugins are ...
0
votes
0answers
40 views
Securely execute scripts [closed]
i want to design a codepad like site where users can upload code can compile and execute.
To securely execute the scripts codepad use ptrace.
Is there anything like ptrace for windows.
Also what can ...
2
votes
2answers
143 views
Can I prohibit certain functions from crashing a program?
I wish to make interactive code learning system, it allows users, (young programmers normally) to write contents of one function in c++ language, send it to server and there it will be compiled into ...
2
votes
2answers
158 views
Sandboxing an executable in C
I am working on an application written in C that needs to run executable files internally, because of the nature of the application I need to restrict the exe's from reading or writing anything to the ...
5
votes
1answer
281 views
Mac app sandboxing and forkpty()
I'm looking to sandbox an app to comply with the March 1st sandboxing requirement of the Mac App Store. My app includes a built-in terminal emulator which utilizes a forkpty() call to launch processes ...
-2
votes
3answers
122 views
Java Sandboxed Enviroment In Contrast to C [closed]
Java is designed to run in a “Sandboxed” environment in contrast to C which is not constrained. Discuss the implications of this from a security point of view.
I have done a bit of research in ...
4
votes
3answers
164 views
How do I block all network access for a script?
Suppose I have a script written in Python or Ruby, or a program written in C. How do I ensure that the script has no access to network capabilities?
0
votes
1answer
115 views
Using a file which is located within the iPhone sandbox
I'm creating an iPhone app that needs the location of .wav which is located in the sandbox. I do this with the following:
recordFilePath = (CFStringRef)[NSTemporaryDirectory() ...
0
votes
5answers
245 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 ...
7
votes
4answers
351 views
Restrict native code functionality from Java
I have a java application which uses JNI in some parts to do some work. It follows the usual loading of DLL and then calling native methods of DLL. Is there any way we can restrict what native methods ...
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 ...
25
votes
12answers
5k views
How to create a lightweight C code sandbox?
I'd like to build a C pre-processor / compiler that allows functions to be collected from local and online sources. ie:
#fetch MP3FileBuilder http://scripts.com/MP3Builder.gz
#fetch IpodDeviceReader ...
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 ...
5
votes
9answers
2k views
Translate algorithmic C to Python
I would like to translate some C code to Python code or bytecode. The C code in question is what i'd call purely algorithmic: platform independent, no I/O, just algorithms and in-memory data ...
