Sandbox is a security mechanism for containing untrusted programs. Such programs could contain malicious code, which would harm the user's system.
4
votes
1answer
32 views
Java: Monitor the acquisition of Locks
I am currently experimenting a lot with java's security mechanisms in order to understand how to best execute untrusted code in a sandbox. One of the things you want to protect against are infinite ...
0
votes
2answers
27 views
How to isolate my program [closed]
I'm working on a program that could actually delete all your system files.
so how can I sandbox it so it can only find its own files
or better can I put it in a kind of virtual machine environment, so ...
0
votes
2answers
21 views
PayPal Sandbox links go to live PayPal site
I can log into the developer.paypal.com site with my PayPal credentials. When I then enter the sandbox as my seller account, all of the links in the menu system takes me to the live PayPal site, ...
0
votes
1answer
21 views
Twilio SMS sandbox using C#
How do you use the Twilio sandbox mode with C#? I have a ashx.cs file that I am using to write my code. Would I put it there? If so, what does that look like?
There is no real great examples on ...
2
votes
1answer
20 views
Node.JS Adding access Node Modules using Require() to a CreateContext()
In my application I CreateContext and then RunInContext. I need to add access to only certain Node modules within the Context. I know how to add my own Javascript methods, but get errors when I add ...
-1
votes
0answers
14 views
PayPal sandbox features in Pakistan [closed]
Today, after few months I tried to login with my paypal sandbox account, at first attempt I realized that I have forgot my password so I requested to reset my password by providing email...but when I ...
0
votes
0answers
27 views
Sandboxing Application With Command-Line Tool
I'm a bit confused about sandboxing an application that uses a command-line tool (ffmpeg). I won't mention his name, but I read at least two topics at Apple's Developer Forums where an Apple person ...
1
vote
1answer
32 views
Access to the same file after restart in the sandbox
My app reads iTunes' XML Library file under
/Users/username/Music/iTunes/iTunes Music Library.xml
However, if the iTunes Library is stored on a different hard disk, so will this file.
The sandbox ...
0
votes
1answer
33 views
tmp directory path inside 'C' library
My cocoa application uses one library written in 'C' which is tryings write file at '/tmp' path. This creates sandbox violations. In Cocoa we can use 'NSTemporaryDirectory' API. To fix sandbox ...
0
votes
0answers
25 views
Node.JS How to Add Require() inside CreateContext or RunInContext
I am trying to figure out how to add access to certain node modules from inside CreateContext() or RunInContext().
Every time I try, I get an undefined variable error
var s = new Sandbox();
...
0
votes
0answers
16 views
OS X Application Sandboxing permissions
I have an application that searches the disk in the "/Users/" path, folders and sub-folders, for a type of file and stores info of the file in a SQLITE database file using Core Data located in ...
0
votes
1answer
16 views
Node.JS allow access to run certain modules within Sandbox Module
I am running Node.JS Sandbox module to create a Child Process and I need to be able to have my String Based Javascript access certain functions and Modules of Node. Right now, the Sandbox module is ...
0
votes
1answer
41 views
Disable sandbox mode for facebook app via api?
Does anyone know if there is an (undocumented?) field/property in graph api I can use to disable sandbox mode for an app?
I have checked ...
0
votes
1answer
21 views
Java 2D-Tile based game - Creating tile objects from an id
I have been making a tile (block) based 2D side-view game.
So far I have the basic rendering and world generation going. Each tile (block) has its own class for different actions or properties that ...
0
votes
1answer
28 views
Implement a javascript sandbox using new Harmony direct proxies
I found this gist to implement a sandbox for 3rd-party code using with and the Harmony direct proxies. How useful is it? Would it be possible to implement a proper javascript sandbox using proxies? ...