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
0 answers

How can I prevent assemblies being loaded into the default AppDomain when P/Invoke is used?

I noticed that displaying a FolderBrowserDialog resulted in assemblies from any shell extensions loaded on my computer to be loaded into my application's AppDomain. This was causing problems for my application as an old version of a library my…
kjbartel
  • 10,381
  • 7
  • 45
  • 66
1
vote
0 answers

Opening new window in iframe from bing search results

I am heading to the following problem: I've implemented a bing search into a website and when i submit my search query i open a dialog, in this dialog in an iframe my search results appear. How can i manage that when i click on the search results, a…
Navid
  • 485
  • 1
  • 8
  • 25
1
vote
2 answers

Error Detected - Paypal

I can't understand why I get this annoying error message when I test out the paypal button in sandbox test site. Error Detected PayPal cannot process this transaction because of a problem with the seller's website. Please contact the seller…
1
vote
1 answer

How can I test paypal micropayments in the paypal sandbox?

Is there a way to test paypal micropayments in the sandbox? I can see where to upgrade the test account to paypal payments pro. But i don't see one for micropayments. I am trying to verify smaller transactions.
1
vote
1 answer

Is iOS Keychain data sandboxed?

According to documentation, it is. But I've tried the following: App A stores item in keychain. App B tries to retrieve same item from keychain. Fails. Without success. Is there any way to do this?
UnsafePointer
  • 726
  • 6
  • 25
1
vote
1 answer

Testing Paypal Express Integration / Sandbox Credentials / I am not a programmer

I have zero programming skills / knowledge and am trying to integrate paypal express into my shopping cart by following instructions but I don't know what I'm doing and don't understand a lot of it. I would love some help if someone can help me…
1
vote
2 answers

Do android multi processes use the same sandbox?

as far as i understand each android process runs in a "sandbox" environment, what happen if an android application is a multi process application? do all processes use the one single sandbox since all the processes use the same user id?
pulu
  • 79
  • 7
1
vote
1 answer

Restricted Function with fpc using libsandbox?

I'm making an online-judge program base on PHP and the problem is when i try to add pascal language, it's always RF. I using libsandbox and framework Yii to make it, I've read many topics about Restricted function and about Free-pascal but nothing…
koaidien
  • 11
  • 3
1
vote
0 answers

DnD in Java: Is it compatible with Apple's sandbox restrictions?

This post is related to on-boarding Java app in Mac App Store. For accessing external files from a sandboxed Java app, I know there are restrictions like I have to use FileDialog instead of JFileChooser. Is there any restrictions on using Drag and…
Subhash Chandran
  • 1,275
  • 1
  • 13
  • 20
1
vote
1 answer

SharePoint sandbox event receivers throwing Unknown Status Module: 33 Message: 134 error

I have a sandboxed solution with event receivers connected to a document library using the ListUrl attribute. Working with the library from the UI or the Server-side Object Model API running inside the SharePoint IIS worker process produces no…
1
vote
1 answer

Mac App store rejects use of deprecated sandbox entitlement

In my application, I have option for sending mail to support team if crash occured. For that i used sbsendmail code for sending mails. After enabling sandbox mode, i have added this com.apple.security.temporary-exception.apple-events
santhosh
  • 1,191
  • 4
  • 14
  • 28
1
vote
2 answers

Mac OS In App Sandbox Entitlements Directory Read Issue

I am having an issue with my App Sandbox entitlements. My Mac OS app allows a user to open an XML file. When that file is parsed it reads a image file in the same directory as XML file. If App Sandbox is False, the image loads just fine. If App…
user-44651
  • 3,924
  • 6
  • 41
  • 87
1
vote
0 answers

System commands like "mkdir" not working in sandbox enabled mode

In my cocoa application, I have to install 3rd party print drivers in current system as a part of application. For that I created installprinter.sh file and coded system commands for creating folders, copying files and installing printers inside…
santhosh
  • 1,191
  • 4
  • 14
  • 28
1
vote
1 answer

Lite virtualization of processes

I'm trying to figure out (if it is possible) how to run an user process in an insulated context (memory, network and other resources). Let's assume that the program x is stored into a filesystem of an host machine (h). I would like to execute x in…
Filippo Lauria
  • 1,965
  • 14
  • 20
1
vote
1 answer

Re-using Haskell Platform prebuilt libraries within a cabal sandbox?

When I build a Cabal project without a sandbox, Cabal uses existing libraries from my Haskell Platform installation. However, if I try to do the same inside a Cabal sandbox, Cabal forcibly rebuilds all my dependencies into the sandbox. To save on…
Nurpax
  • 319
  • 2
  • 4
  • 15