Questions tagged [sandbox]

Sandbox is a security mechanism for containing untrusted programs. Such programs could contain malicious code, which would harm the user's system.

In computer security, a sandbox is a security mechanism for separating running programs. It is often used to execute untested code, or untrusted programs from unverified third parties, suppliers, untrusted users and untrusted websites.

Web Browsers such as and using varying sandboxing techniques, to protect the users from malicious code infecting the system.

Other common types of software which use sandboxing techniques are Virtualization software. Which allow a user to run programs within a confined environment, known as the Guest OS. The Guest OS is hosted on the Host OS, which is the main Operating System running on the system. Any harm or damages caused by any malicious programs hosted on the Guest OS, will be contained within thus not spreading to the Host OS. Thus allowing the user to resume his work without experiencing any setbacks.

Chat Room

Chat about sandbox with other Stack Overflow users

2481 questions
1
vote
1 answer

CRM 2013 Online Sandbox Instance Field Permissions Error

There is an issue with my Sandbox after it was refreshed from Production. All solutions are successfully copied over. However, fields that had Field Level Security do not show up under Field Permissions even though they have Field Level Security…
zabby
  • 217
  • 2
  • 5
  • 12
1
vote
1 answer

OS X app testing for sandbox violations

I have just attempted to convert an OSX app to a sandboxed app. The app supports 10.5 onwards and has manual memory management. After converting, I have tested it by running it in Xcode 4.3. The console shows no violations now. Is it sufficient to…
Ahmed
  • 14,503
  • 22
  • 92
  • 150
1
vote
2 answers

sandboxing an existing OSX app

I have an existing OSX app that supports OSX 10.5 onwards. I want to publish it to the AppStore and therefore I need to sandbox the app. I guess sandbox app should be supporing 10.7 onwards. The app uses a folder in the username directory to create…
Ahmed
  • 14,503
  • 22
  • 92
  • 150
1
vote
0 answers

Why is NSFileWrapper setting the quarantine bit in Sandbox

I can't figure out why my calls to NSFileWrapper's addRegularFileWithContents:preferredFileName: is setting the files quarantine bit (as seen when using xattr -l on the file) when in the sandbox only. My app saves files in the document bundle so…
GenericPtr
  • 677
  • 1
  • 8
  • 18
1
vote
2 answers

How do I rename my SVN sandbox?

I've checked out a local sandbox and to c:\Sandbox\old Can I rename that exact sandbox to c:\Sandbox\new without any consequences? I've researched and it looks like maybe an SVN switch or relocate might do it?
user1224478
  • 345
  • 2
  • 5
  • 15
1
vote
1 answer

Mac App Sandboxing- Updating files outside the sandbox

I have an Application for the Mac that I want to publish on in the app store. I order to get it published I need to put in a sandbox. The app access Sqlite files outside the sandbox which the user selects from a openpanel. The App works fine when is…
canderse
  • 299
  • 1
  • 15
1
vote
1 answer

How to "insert into values" using Hive,Pig or MapReduce?

I am new for hadoop and big data concepts. I am using Hortonworks sandbox and trying to manipulate values of a csv file. So I imported the file using file browser and created a table in hive to do some query. Actually I want to have an "insert into…
1
vote
2 answers

Accessing and using the files in the app sandbox

I have an iOS application in which I download some files from a remote server and store them in the app sandbox directory, Documents. I am sure the files are saved in the sandbox properly because when I run the following piece of…
halileohalilei
  • 2,220
  • 2
  • 25
  • 52
1
vote
0 answers

Is that possible to break Sandboxing on non jailbreaked iPhone?

My app is not target for App Store, and it should get info of Phone Call Records while can't made it (by accessing phone record data base files) because of Sandboxing limitation. Is that possible to break Sandboxing on non jailbreaked iPhone? Namely…
Cyan
  • 11
  • 2
1
vote
0 answers

How to ensure that only one particular Cocoa App will invoke another Cocoa app using App Sandboxing

My One Cocoa app, say X, will launch another Cocoa app say Y and will talk together through socket connection. I am using Asynch Socket (https://github.com/robbiehanson/CocoaAsyncSocket) library to communicate between the two app. Here app X,…
BKN
  • 85
  • 5
1
vote
1 answer

APNS strange feedback

Hi I'm getting strange feedback from the feedback sandbox server. Actually there should be only my device registered so I expect always the same device token (which I already know). Anyway... I'm getting every time a different device token and…
user287689
1
vote
2 answers

Recommendations for sandboxing inside PHP5 or alternatives?

I've been slowly working on a personnel project to run a webmud like game using extjs as my frontend. One of the design choices I made was to allow user-generated evaluated code for game logic. So when the player enters a new "room" a number of…
David
  • 17,673
  • 10
  • 68
  • 97
1
vote
2 answers

Mac Sandbox entitlement for Asus Xtion : Failed to open the file

I am developing a Mac application that uses an Asus Xtion Pro Live camera. I activate Sandboxing and set the com.apple.security.device.usb entitlement to YES. After doing so, the app is not able to detect the camera anymore. Could not open…
1
vote
2 answers

download the files saved in the ios app

I am designing an ios app which collects the user data and saves the data into a .txt file. I am currently using the sandbox in organizer in xcode to download these files. However, I want the users who do not have xcode to access these files as…
1
vote
1 answer

SecureASTCustomizer: how to restrict loops?

I'm trying to restrict using loops(FOR and WHILE operators) in Groovy script. I tried http://groovy-sandbox.kohsuke.org/ but it seems to be not possible to restrict loops with this lib. Code: final String script = "while(true){}"; …
Lugaru
  • 1,430
  • 3
  • 25
  • 38