active questions tagged sandbox - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T13:37:11Zhttp://stackoverflow.com/feeds/tag/sandboxhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1925375/strange-failure-of-iphone-in-app-purchase-in-sandbox-no-nserror0Strange failure of iPhone in-app purchase in sandbox - no NSError!Patrick Barry2009-12-17T23:43:00Z2009-12-17T23:43:00Z
<p>After searching through this forum and online for hours, I can't find an answer to the problem I'm having. Here's the basic scenario:</p>
<p>Trying to make an in-app purchase in my app in the sandbox environment always fails. Getting the list of available products through SKProductsRequest works fine .. I get an array of valid SKProduct objects back. But after I queue an SKPayment in the SKPaymentQueue, the transactionState of the SKPaymentTransaction object that the observe gets is SKPaymentTransactionStateFailed. HOWEVER, when I try to see WHY it failed, I find that the error property of the SKPaymentTransaction object is nil. There is no NSError object there to query!!</p>
<p>Also, in the app, no pop up ever appears to ask for the account credentials to verify the purchase! And yes, I did first log out of my real Apple ID in the Settings app, and I did <em>not</em> try to sign back in there with my test account ID. That way, there <em>should</em> be a popup when I try to make a purchase asking me for my Apple ID info, where I would enter the test account info. But that popup never appears. The transaction just silently fails.</p>
<p>If I query the payment property of the failed SKPaymentTransaction object, I find the correct SKPayment object with the correct productIdentifier, so the failed transaction is at least asking for the right product. So why is it failing?</p>
<p>Has anybody else seen this?</p>
<p>I've gone through all of the proper setup steps listed in the documentation and elsewhere in this forum ... I created a non-wildcare app ID, activated in-app payments for that ID, created a new, dummy app in iTunes Connect (checking "upload binary later"), created some in-app purchase products, made them available for sale, created a new developer provisioning profile for the new app ID, downloaded that profile and installed it in Xcode and on my test phone, changed the bundle identifier in the info.plist of the app, changed the code signing to use the new provisioning profile, set up a test user in iTunes Connect with a novel email address, etc etc etc etc etc. Like I say, I <em>do</em> get an array of valid SKProduct objects from the app store servers, so things must be set up somewhat correctly. But even after redoing everything from scratch a few times and tweaking everything I can think of, I can't get a sandbox purchase to go through .. or even to get the confirm purchase popup!</p>
<p>Any ideas?</p>
<p>Some details, if they help:</p>
<p>•• I'm running 3.0.1 on my phone
•• this is for a new app, so it's not already for sale in the app store. I'm using a dummy app in iTunes Connect for testing IAP.
•• I'm on Snow Leopard with the 3.1.2 version of the iPhone SDK</p>
<p>Please help!</p>
http://stackoverflow.com/questions/1802805/building-a-simple-security-sandbox-on-windows-2008-by-automatically-creating-re0Building a simple security sandbox on Windows 2008 by automatically creating & restricting user accounts?Adam Frisby2009-11-26T10:16:31Z2009-12-08T15:52:02Z
<p>I want to build a fairly simple security sandbox for an application hosting service - the main goals are thus:</p>
<ol>
<li>Applications running "in" the sandbox cannot install anything onto the system outside of the directory the executable is running in.</li>
<li>Access to the system in general is denied (registry access, et al.).</li>
<li>Access to the file system (even read-only) outside the directories specified is explicitly denied. It will be a .NET application running inside the sandbox, so I am uncertain as to whether this will incidentally deny the runtime & or core dependencies?</li>
</ol>
<p>The plan I have presently is to build the sandbox in .NET using the System.DirectoryServices namespace by:</p>
<ul>
<li>creating a new semi-permanent user account for each launched instance</li>
<li>deriving it from the guest class of users to deny wide access to the system</li>
<li>then specifically granting read & write access to a finite number of directories where the application should be running.</li>
</ul>
<p>Can anyone see any particular flaws in this plan? And is user account security sufficient to satisfy the above requirements securely? We're using a piece of commercial software right now to handle this (which is more comprehensive in it's sandboxing); but it is insufficiently automatable for our business - hence the desire to build it into our core automation software.</p>
http://stackoverflow.com/questions/1709467/why-does-the-flash-player-throw-a-sandbox-error-in-this-case8Why does the Flash Player throw a sandbox error in this case?Simon2009-11-10T16:55:09Z2009-12-07T16:54:20Z
<p>I get a Flex 3 sandbox error #2048 after connecting to a Socket on a Java (1.5) server. The server code is all mine, i.e. not running under Apache. Flash Player 10.0 r32.</p>
<p>The sequence is as follows...</p>
<p>1 Java server starts, listens on port 843 for policy file request and on port 45455 for my other requests.</p>
<p>2 Flex client served by Apache (although I get the same result if I run it from the file system), socket connection made on host:45455.</p>
<p>3 Flash Player requests policy file from port 843. This is the standard behaviour with the new security settings looking for a master file. It happens regardless of whether a different policy file has been specified.</p>
<p>4 I serve the following XML from Java through port 843:</p>
<pre><code><?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="*" to-ports="*" secure="false"/>
</cross-domain-policy>
</code></pre>
<p>5 The player writes the following into the debug policy log...</p>
<pre><code>OK: Root-level SWF loaded: http://localhost/bst/BasicSocketTest.swf
OK: Searching for <allow-access-from> in policy files to authorize data loading from resource at xmlsocket://192.168.2.3:45455 by requestor from http://localhost/bst/BasicSocketTest.swf
OK: Policy file accepted: xmlsocket://192.168.2.3:843
OK: Request for resource at xmlsocket://192.168.2.3:45455 by requestor from http://localhost/bst/BasicSocketTest.swf is permitted due to policy file at xmlsocket://192.168.2.3:843
</code></pre>
<p>6 I send a text message from the client to the server on port 45455 using <code>writeUTFBytes()</code> and <code>flush()</code> (this is my own home-baked message protocol, and is correctly processed at each end)</p>
<pre><code>REG/REGISTER;simon;Si
</code></pre>
<p>7 Java server thread listening on port 45455 responds with</p>
<pre><code>REG:0/REGISTER:SUCCESS;simon;Si
</code></pre>
<p>8 The Flex client receives a ProgressEvent and the event listener I bound to the socket gets called. I process the message (write it to a text box on the screen)</p>
<p>9 The Flash player throws a 2048 sandbox error and the socket is disconnected! This is <em>after</em> the message is received and processed successfully. In fact it is about 12 seconds after. Nothing else works through the socket.</p>
<p>I have tried explicitly loading a policy file with a call to <code>Security.loadPolicyFile()</code> in the Flex client, but the reality of the new player security is that it is basically ignored. The steps are that the policy request will not get sent until a socket i/o operation occurs. At that point the player <em>always</em> goes to port 843 first looking for a master policy file. If it finds one, and it is permissive, it goes no further.</p>
<p>I have tried a variety of alternative ways of terminating the policy file and policy file contents, including deliberate errors just to see if the Flash Player is awake.</p>
<p>I can see no reason why I would have a 2048 being thrown. I accurately serve a socket policy file on the designated master security port, which the player itself logs as correct. The socket then successfully sends and receives a message from the server the contents of which are available to my code.</p>
<p>Does anyone have any clue why this may be happening? Flash Player bug?</p>
<p><strong>P.S.</strong> <em>Please</em> don't tell me to use BlazeDS or LCDS or Granite, or something else as a server, I'm looking for a solution to this problem, not a redesign. And please don't ask me to use an XMLSocket instead - I tried that and get exactly the same result. I have chosen my architecture carefully and deliberately and I want a binary socket.</p>
<p><strong>EDIT</strong>
In response to James Ward's request in his comment, here is the entire error message:</p>
<pre><code>Error #2048: Security sandbox violation: http://localhost/bst/BasicSocketTest.swf cannot load data from 192.168.2.3:45455.
</code></pre>
<p>I have a stripped down test client which has a handler for each socket event and outputs a message to the screen. This is what it shows:</p>
<pre><code>RequestPolicy: 192.168.2.3:843
Create Socket: 192.168.2.3:45455
Connect: [Event type="connect" bubbles=false cancelable=false eventPhase=2]
Sending: REG/REGISTER;simon.palmer@gmail.com;Si
Receiving: REG:0/REGISTER:SUCCESS;simon.palmer@gmail.com;Si/
Close: [Event type="close" bubbles=false cancelable=false eventPhase=2]
Error #2048: Security sandbox violation: http://localhost/bst/BasicSocketTest.swf cannot load data from 192.168.2.3:45455.
</code></pre>
<p>The close event is fired immediately after successfully receiving a response from the server, however the Error #2048 does not appear until about 20 seconds later. If I try and send a further message after close, but before the error, the Flash Player throws an invalid socket exception.</p>
<p>I have <a href="http://bugs.adobe.com/jira/browse/FP-3302" rel="nofollow">logged a bug at Adobe</a> about this.</p>
<p>I can provide full source code of both client and server if anyone is interested.</p>
http://stackoverflow.com/questions/825434/php-sandbox-sanitize-code-passed-to-createfunction0PHP sandbox/sanitize code passed to create_functionkpowerinfinity2009-05-05T15:27:37Z2009-11-30T18:43:43Z
<p>Hello, </p>
<p>I am using create_function to run some user-code at server end. I am looking for any of these two:</p>
<ol>
<li>Is there a way to sanitize the code passed to it to prevent something harmful from executing?</li>
<li>Alternately, is there a way to specify this code to be run in a sandboxed environment so that the user can't play around with anything else.</li>
</ol>
<p>Thanks!</p>
http://stackoverflow.com/questions/1783594/advice-on-using-sandbox-vs-caching-for-uitableview-async-image-download3Advice on using sandbox vs. caching for UITableView async image downloadCanada Dev2009-11-23T14:51:32Z2009-11-26T09:06:10Z
<p>Apple just released some sample code on lazy loading images in a UITableView a week ago. I checked it out and implemented it into my own UITableView (which is a drawRect one for fast scrolling), to see if there was a difference from what I was already doing.</p>
<p>After implementing I am not sure what is best; the new code or what I already had. I am not seeing much of a speed improvement on my 3GS.</p>
<p>"Sandbox" method: Load images lazily, then save to local tmp folder in the sandbox. <em>Each time</em> the cell is displayed it looks for whether an image with that filename is already located in the sandbox folder. If it is, it retrieves the image and displays it, if not it continues with the download, saves it locally and then displays it. The benefit with this is that the images won't be blank the second time you open the app. They will already be downloaded and ready for displaying.</p>
<p>Caching method: This also loads the images lazily, however, now I include a UIImage on each object in the array that's displayed in the tableview. Instead of saving the image locally, I now download the image and put it into the array for the object. Now, instead of checking for the filename every single time, it jut check whether the UIImage != nil and uses the cached image (or downloads if nil).</p>
<p>A small difference is also that the caching code resizes the image before caching it to the exact size of what is displayed in the cell, whereas the image used in the sandbox code example is actually a bit larger than what it needs to display, which means it has to resize on the fly when scrolling as well. I read months ago that this could be a bit expensive to do, and I am also not sure whether it makes much of a difference in terms of then using a cached image instead of the sandbox-stored image and therefore more CPU intensive anyway (compared to what you save from caching with the caching code above).</p>
<p>I guess my question would be whether I should even bother with the caching code? Again, the new code won't immediately load images on a new launch, whereas the old code actually does because it's already in the sandbox. Since I am not reusing images, I have a lot of images to load (from the sandbox or cache) so I am not noticing a huge difference in speed. In fact, on my 3GS it's almost impossible to tell, in my opinion. The scrolling is not silky smooth, and I assume this is due to the large amount of images that I cannot reuse (different image for each cell). I am also wondering whether the sandbox method would get slower once there's 1000+ images in the folder, for example, eventually having it look through many more images than just 100 or so.</p>
<p>I hope I am making sense. I wanted to be pretty thorough with the details, and I am happy to give more details if needed.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1757381/possible-to-sandbox-python-configuration-file1Possible to sandbox Python configuration file?yukondude2009-11-18T16:47:15Z2009-11-18T18:07:53Z
<p>I'm thinking of implementing a configuration file written in Python syntax, not unlike what Django does.</p>
<p>While I've seen <a href="http://stackoverflow.com/questions/1642413/why-do-so-many-apps-frameworks-keep-their-configuration-files-in-an-un-executed-f">one</a> or <a href="http://stackoverflow.com/questions/690221/is-it-ever-polite-to-put-code-in-a-python-configuration-file">two</a> SO questions about the merits of using executable code in configuration files, I'm curious whether there is a way to execute the config file code in a "sandbox" to prevent mistakes in the code from locking up the host application.</p>
<p>Because the host application is a programmer's tool, I'm not concerned about teaching Python syntax or introducing security holes as mentioned in at least <a href="http://stackoverflow.com/questions/861864/is-there-a-safe-subset-of-python-for-use-as-an-embedded-scripting-language">one other SO question</a>. But I am worried about the configuration code <a href="http://www.elook.org/computing/branch-to-fishkill.htm" rel="nofollow">branching to Fishkill</a> and wedging the host app. I'd much rather that the host app trap those problems and display diagnostic error information.</p>
<p>Has anyone tried this sort of sandboxing for a Python configuration file? And, if so, what techniques proved useful, and what pitfalls cropped up that I should be aware of?</p>
http://stackoverflow.com/questions/1673295/sandbox-violation-on-second-socket-send2Sandbox violation on second socket sendSimon2009-11-04T11:44:30Z2009-11-18T03:08:46Z
<p>Hi, </p>
<p>I have a Flex client using a Flash binary (TCP) socket for communication with a Java server. I have a localhost (Apache) server providing a crossdomain.xml file which is wide open just while I am testing.</p>
<p>My code successfully loads the policy file on startup.</p>
<p>I then connect the socket to the server without any difficulty and send a message and get a response. All good so far. </p>
<p>However, when I send a second message through the same socket I get a pause of about 12 seconds then a sandbox violation error:</p>
<pre><code>Security Error: Error #2048: Security sandbox violation: file:///C:/apache_root/ttt1/ttt1.swf cannot load data from localhost:45455.
</code></pre>
<p>This is the same port and socket through which the first message succeeded. </p>
<p>I tried re-loading the policy file before every send, but I get the same result. </p>
<p>Any idea why this might be happening? I clearly have an open socket at one point. I am flushing the socket after each send and I tried doing that after each read as well, but the same result.</p>
<p>Thanks in advance</p>
<p><strong>EDIT:</strong><br>
If I recreate the socket prior to every call my code works. I am struggling to believe that this is correct, but maybe there is a Socket setting I am missing.</p>
http://stackoverflow.com/questions/1705054/as3-sandbox-security-violation-with-http-schemas-xmlsoap-org-soap-encoding0as3 sandbox security violation with http://schemas.xmlsoap.org/soap/encoding/ Roman Pfneudl2009-11-10T01:07:59Z2009-11-11T15:19:33Z
<p>Hi guys !</p>
<p>I implemented a gSoap c++ webservice-server to be accessed by Flash (as3) Everything runs smooth as long as i test the .swf locally, the .wsdl is loaded fine, and the communication works, even with the server running on an external ip already. </p>
<p>But the moment i put that .swf online - its coming up with sandbox security violations crying about the standard - schemas like that:</p>
<pre><code>Error: [strict] Ignoring policy file at http://schemas.xmlsoap.org/crossdomain.xml
due to incorrect syntax. See http://www.adobe.com/go/strict_policy_files to fix this
problem.
*** Security Sandbox Violation ***
Connection to http://schemas.xmlsoap.org/soap/encoding/ halted - not permitted from
http://mydomain.com/main.swf
Error: Request for resource at http://schemas.xmlsoap.org/soap/encoding/ by requestor
from http://mydomain.com/main.swf is denied due to lack of policy file
permissions.
</code></pre>
<p>Can somebody help me with that problem ?</p>
<p>Or is there maybe a good way to define one simple webservice-method (like stringResult =
command (stringSessionId, stringCommand, stringParams, stringResult)) without loading the
.wsdl - file ? If i had that possibility i wouldnt have to stumble about that sandbox -
stuff.</p>
<p>Any help appreciated.</p>
http://stackoverflow.com/questions/1715036/how-do-i-create-a-java-sandbox2How do i create a java sandbox?corgrath2009-11-11T12:57:42Z2009-11-11T13:31:29Z
<p>I want to make my application to run other people's code, aka plugins. However, what options do I have to make this secure so they don't write malicous code. How do I control what they can or can not do?</p>
<p>I have stumbled around that JVM has a "built in sandbox" feature - what is it and is this the only way? Are there third-party Java libraries for making a sandbox?</p>
<p>What options do I have? Links to guides and examples is appreciated!</p>
http://stackoverflow.com/questions/1313286/iphone-sandbox-rules-file0iPhone Sandbox rules fileFarcaller2009-08-21T17:38:43Z2009-11-08T23:00:02Z
<p>Where can I find the application sandbox rules file for 3.0 firmware? I remember seeing it somewhere around in 2.x, but now can't find it.</p>
http://stackoverflow.com/questions/1590337/using-the-google-chrome-sandbox14Using the Google Chrome SandboxToji2009-10-19T18:35:16Z2009-10-30T03:28:39Z
<p>There are several resources out there that explain how the sandbox in Chrome works and what it does to protect users from malicious code.</p>
<p><a href="http://blog.chromium.org/2008/10/new-approach-to-browser-security-google.html" rel="nofollow">Chromium Blog</a><br />
<a href="http://dev.chromium.org/developers/design-documents/sandbox" rel="nofollow">Chromium Developer Documentation</a><br />
<a href="http://dev.chromium.org/developers/design-documents/sandbox/Sandbox-FAQ" rel="nofollow">Sandbox FAQ</a> </p>
<p>That's great, and I like the OS-centric design that they have in place (somewhat of a "The OS probably knows how to secure itself better than we do, so we let it" approach.) They also mention in several places that the sandbox itself was designed to not be dependent on Chrome but instead more-or-less standalone so that theoretically any process could be sandboxed as long as the architecture of the program is compatible (sandboxed code must run as it's own process as a child of a non-sandboxed parent.)</p>
<p>I just happen to have an application who's design makes it ripe for sandboxing, and was able to get a parent/child process working with it. I've got the Chromium code and... have no idea what to do next. </p>
<p>Has anyone out there actually sandboxed anything with this yet? Are there any resources that document it's usage or APIs? I would imagine it should be pretty simple, but I'm at a loss for where to start.</p>
<p>EDIT: My finding below in the answers!</p>
http://stackoverflow.com/questions/1632430/how-does-tomcat-sandbox-web-apps0How does Tomcat sandbox web apps?tilish2009-10-27T17:33:21Z2009-10-28T14:01:42Z
<p>I have a web app that is being served through Tomcat. My app lets users submit their own workflow which will then be executed on the server. My problem is how to control how much memory each user is taking up on the server. I think Tomcat itself runs apps in a sandbox of its own. I say this because when my app runs out of memory and crashes, Tomcat still keeps running. How does Tomcat sandbox the app (or does it)? Does it run the app on a separate JVM?</p>
<p>On a related note, a similar question about controlling thread CPU and memory usage has been asked before. The solutions suggested were not acceptable for me and I'd like to believe that Tomcat has a different mechanism. But for those who are interested,
<a href="http://stackoverflow.com/questions/1202184/throttling-cpu-memory-usage-of-a-thread-in-java">http://stackoverflow.com/questions/1202184/throttling-cpu-memory-usage-of-a-thread-in-java</a></p>
<p>Thanks!</p>
http://stackoverflow.com/questions/795888/how-do-you-monitor-manage-and-run-untrusted-third-party-code-in-a-hosted-servic2How do you monitor, manage, and run untrusted third-party code in a hosted service?Brian Hammond2009-04-28T01:24:22Z2009-10-28T10:19:12Z
<p>Let's say I'm running a hosted service that wishes to allow plugins written by third-party clients. </p>
<p>Perhaps a gaming service provider that provides infrastructure but allows clients to develop their own game referees. Or, a coding competition site that allows coders to submit code to be run as their solution to some coding problem.</p>
<p>How would you harden/lock-down/sandbox this user code from doing potential harm to the server that intends to run it? </p>
<p>How would you monitor and restrict resource usage (CPU, memory mostly)?</p>
<p><a href="http://wiki.python.org/moin/How%20can%20I%20run%20an%20untrusted%20Python%20script%20safely%20%28i.e.%20Sandbox%29" rel="nofollow">This is a good start</a> for Python but I'm wondering if anyone here has more specific experiences they can share <em>regardless of language</em> (Python, Lua, Ruby, etc.).</p>
<p>chroot, jails, rexec, mangling __import__, etc. Let me know what you've done.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1556065/fine-grained-sandboxing1Fine-grained sandboxingrwallace2009-10-12T18:12:51Z2009-10-12T18:18:50Z
<p>Scenario: a program running in a byte code virtual machine like Java or Python, wants to evaluate (by compiling on the fly to byte code and then running) a function whose code was automatically generated or supplied from outside.</p>
<p>The tricky bit is that the function's code is not trusted -- it may have been generated by a stochastic method like genetic programming, or even supplied by an adversary. Therefore it is desired to enforce that it behaves as a pure function -- it can return a value, but it may not have any side effects, i.e. it may not alter any of the program's existing data in any way.</p>
<p>Another tricky bit is that the function may have a legitimate need to call some of the program's existing functions; some of these functions may have side effects, but these should be prevented from actually having any lasting effect as long as they are being called by the suspect function.</p>
<p>Also, it is preferable that no constraint be placed on the coding style of the suspect function, e.g. it is free to perform destructive updates on any data structures that it creates itself, only its overall effect is required to be purely functional.</p>
<p>Furthermore, it is preferable that the solution have reasonably low overhead, because this may need to be done billions of times; it would be better, for example, to avoid having to fork a whole new virtual machine for each such function.</p>
<p>This doesn't necessarily have to be doable in an existing virtual machine like Java or Python; if it is necessary to design a virtual machine around this use case, then so be it.</p>
<p>Are there any already known solutions (or non-solutions, i.e. things that are known not to work) for this problem?</p>
http://stackoverflow.com/questions/1507718/how-do-i-detect-the-environment-in-salesforce2How do I detect the environment in Salesforce?Craig Harris2009-10-02T04:20:53Z2009-10-11T16:18:26Z
<p>I am integrating our back end systems with Salesforce using the web services. I have production and stage environments running on different URLs. I need to be able to have the endpoint of the web service call be different depending on whether the code is running in the production or sandbox Salesforce instance.</p>
<p>How do I detect the environment.</p>
<p>Currently I am considering looking up a user to see if there user name ends in 'devsandbox' as I have been unable to identify a system object that I can query to get the environment.</p>
<p>Further clarification:</p>
<p>The location I need to determine this is within the Apex code that is invoked when I select a button in Salesforce. My custom controller needs to know if it running in the production or sandbox Salesforce environment.</p>
http://stackoverflow.com/questions/1548029/copy-a-file-from-iphone-sandbox-to-desktop1Copy a file from iPhone sandbox to Desktop?Brock Woolf2009-10-10T14:01:40Z2009-10-10T15:12:28Z
<p>Hi all,</p>
<p>I am developing an iPhone app for uni and we create an sqlite database file within the iPhone's sandbox directory.</p>
<p>Our application writes internally to this file, I am wondering how it would be possible to get this file back to my desktop. I don't really mind how it can be done, any way is fine. Maybe it is possible to even do something like emailing it from the app (if that is possible). Just a suggestion if anyone knows a way.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1035519/whats-the-best-way-to-test-against-my-mvc-repostiory0What's the best way to test against my MVC repostiory?Matt2009-06-23T22:09:34Z2009-10-04T03:37:47Z
<p>Hi,</p>
<p>I've built a repository and I want to run a bunch of tests on it to see what the functions return. </p>
<p>I'm using Visual Studio 2008 and I was wondering if there's any sandbox I can play around in (Whether in visual studio 2008 or not) or if I actually have to build a mock controller and view to test the repository?</p>
<p>Thanks,<br/>
Matt</p>
http://stackoverflow.com/questions/1492009/security-sandbox-violation-for-socket-connection-using-flex0Security Sandbox violation for socket connection using flexunknown (google)2009-09-29T11:37:47Z2009-10-03T01:32:02Z
<p>Hello `package {</p>
<pre><code>import flash.events.*;
import flash.net.XMLSocket;
import flash.system.Security;
public class DotNetSocketExample {
private var hostName:String = "170.21.8.0";
private var port:uint =4000;
private var socket:XMLSocket;
public function DotNetSocketExample()
{
socket = new XMLSocket();
configureListeners(socket);
// Security.allowDomain("*");
// Security.allowInsecureDomain("*");
Security.loadPolicyFile("http://localhost/crossdomain.xml");
socket.connect(hostName, port);
}
public function send(data:Object):void {
socket.send(data);
}
public function disconnect():void {
socket.close();
}
private function configureListeners(dispatcher:IEventDispatcher):void {
dispatcher.addEventListener(Event.CLOSE, closeHandler);
dispatcher.addEventListener(Event.CONNECT, connectHandler);
dispatcher.addEventListener(DataEvent.DATA, dataHandler);
dispatcher.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
dispatcher.addEventListener(ProgressEvent.PROGRESS, progressHandler);
dispatcher.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
}
private function closeHandler(event:Event):void {
trace("closeHandler: " + event);
}
private function connectHandler(event:Event):void {
trace("connectHandler: " + event);
}
private function dataHandler(event:DataEvent):void {
trace("dataHandler: " + event);
}
private function ioErrorHandler(event:IOErrorEvent):void {
trace("ioErrorHandler: " + event);
}
private function progressHandler(event:ProgressEvent):void {
trace("progressHandler loaded:" + event.bytesLoaded + " total: " + event.bytesTotal);
}
private function securityErrorHandler(event:SecurityErrorEvent):void {
trace("securityErrorHandler: " + event);
}
}
</code></pre>
<p>} `</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
</code></pre>
<p>
<pre><code> private var sockExample:DotNetSocketExample = new DotNetSocketExample()
private function send():void
{
sockExample.send(send_txt.text);
}
private function disconnect():void
{
sockExample.disconnect();
}
]]>
</mx:Script>
<mx:Panel width="468" height="116" layout="absolute" horizontalCenter="0" verticalCenter="0" backgroundColor="#EEEEEE" id="DotNetSocketConnectPanel" title="Dotnet Socket Connect Example">
<mx:Button x="327" y="40" label="Disconnect" width="95" id="disconnect_btn" click="disconnect()"/>
<mx:Button x="327" y="10" label="Send" width="95" id="send_btn" click="send()"/>
<mx:TextInput x="21" y="10" width="298" id="send_txt" maxChars="100"/>
</mx:Panel>
</code></pre>
<p> </p>
<pre><code>**Daemon application*/
</code></pre>
<p>using System;
using System.Collections;
using System.Net;
using System.Net.Sockets;
using System.Text;</p>
<p>namespace TcpSock
{
class TcpSock
{
int tcpIndx = 0;
int tcpByte = 0;
byte[] tcpRecv = new byte[1024];</p>
<pre><code> ////////////////////////////////////////
public Socket tcpSock;
////////////////////////////////////////
public int Recv(ref string tcpRead)
{
try
{
tcpByte = tcpSock.Available;
if (tcpByte > tcpRecv.Length - tcpIndx)
tcpByte = tcpRecv.Length - tcpIndx;
tcpByte = tcpSock.Receive(tcpRecv, tcpIndx, tcpByte,
SocketFlags.Partial);
tcpRead = Encoding.ASCII.GetString
(tcpRecv, tcpIndx, tcpByte);
tcpIndx += tcpByte;
}
catch (Exception ex)
{
//Error
}
return tcpRead.Length;
}
public int RecvLn(ref string tcpRead)
{
tcpRead = Encoding.ASCII.GetString
(tcpRecv, 0, tcpIndx);
tcpIndx = 0;
return tcpRead.Length;
}
public int Send(string tcpWrite)
{
String POLICY_FILE = String.Empty;
byte[] write = new byte[1024];
write = Encoding.ASCII.GetBytes(tcpWrite);
//if (tcpWrite.StartsWith("<policy-file-request/>"))
//{
// POLICY_FILE = "<?xml version=\"1.0\" ?> \n" +
// "<!DOCTYPE cross-domain-policy> \n " +
// "<cross-domain-policy> \n" +
// "<site-control permitted-cross-domain-policies=\"all\" /> \n" +
// "<allow-access-from domain=\"*\" to-ports=\"*\" secure=\"true\" /> \n " +
// "<allow-http-request-headers-from domain=\"*\" headers=\"*\" secure=\"false\" /> \n" +
// "</cross-domain-policy>\n";
//}
return tcpSock.Send(write);
}
public int SendLn(string tcpWrite)
{
return tcpSock.Send(Encoding.ASCII.GetBytes(tcpWrite + "\r\n"));
}
}
class Tcp
{
[STAThread]
static void Main()
{
////////////////////////////////////////////////////////////////////////////////////////////
///class IPHostEntry : Stores information about the Host and is required
///for IPEndPoint.
///class IPEndPoint : Stores information about the Host IP Address and
///the Port number.
///class TcpSock : Invokes the constructor and creates an instance.
///class ArrayList : Stores a dynamic array of Client TcpSock objects.
IPHostEntry Iphe = Dns.Resolve(Dns.GetHostName());
IPEndPoint Ipep = new IPEndPoint(Iphe.AddressList[0], 4000);
Socket Server = new Socket(Ipep.Address.AddressFamily,
SocketType.Stream, ProtocolType.Tcp);
////////////////////////////////////////////////////////////////////////////////////////////
///Initialize
///Capacity : Maximux number of clients able to connect.
///Blocking : Determines if the Server TcpSock will stop code execution
///to receive data from the Client TcpSock.
///Bind : Binds the Server TcpSock to the Host IP Address and the Port Number.
///Listen : Begin listening to the Port; it is now ready to accept connections.
ArrayList Client = new ArrayList();
string rln = null;
Client.Capacity = 256;
Server.Blocking = false;
Server.Bind(Ipep);
Server.Listen(32);
Console.WriteLine("{0}: listening to port {1}", Dns.GetHostName(),
Ipep.Port);
////////////////////////////////////////////////////////////////////////////////////////////
///Main loop
///1. Poll the Server TcpSock; if true then accept the new connection.
///2. Poll the Client TcpSock; if true then receive data from Clients.
while (true)
{
//Accept
if (Server.Poll(0, SelectMode.SelectRead))
{
int i = Client.Add(new TcpSock());
((TcpSock)Client[i]).tcpSock = Server.Accept();
((TcpSock)Client[i]).SendLn("Welcome.");
Console.WriteLine("Client {0} connected.", i);
}
for (int i = 0; i < Client.Count; i++)
{
//check for incoming data
if (((TcpSock)Client[i]).tcpSock.Poll(0, SelectMode.SelectRead))
{
//receive incoming data
if (((TcpSock)Client[i]).Recv(ref rln) > 0)
{
//echo incoming data
((TcpSock)Client[i]).Send(rln);
//check for new line
if (rln == "\r\n")
{
///receive line
((TcpSock)Client[i]).RecvLn(ref rln);
//send the line to all clients
for (int y = 0; y < Client.Count; y++)
if (y != i)
((TcpSock)Client[y]).Send(i.ToString() + ": " + rln);
Console.Write("{0}: {1}", i, rln);
}
}
//recv returned <= 0; close the socket
else
{
((TcpSock)Client[i]).tcpSock.Shutdown(SocketShutdown.Both);
((TcpSock)Client[i]).tcpSock.Close();
Client.RemoveAt(i);
Console.WriteLine("Client {0} disconnected.", i);
}
}
}
}
}
}
</code></pre>
<p>}
I want to implement flex web application using Socket connection. But I am getting sand box violation error for remote sites in sample application . It is working fine in local. </p>
<p>Error:</p>
<p><strong>* Security Sandbox Violation *</strong>
Error: Request for resource at xmlsocket://170.21.8.0:4000 by requestor from <a href="http://localhost/Sample/DotNetSocketConnect.swf" rel="nofollow">http://localhost/Sample/DotNetSocketConnect.swf</a> is denied due to lack of policy file permissions.</p>
<p>Please..Can anybody help me to trace out this problem.. </p>
<p>Help!</p>
<p>thanks</p>
<p>James</p>
http://stackoverflow.com/questions/1494705/silverlight-equivalent-to-signed-java-applet1Silverlight equivalent to signed Java Applet?Kevin Montrose2009-09-29T20:19:13Z2009-09-29T21:12:44Z
<p>Is there a Silverlight equivalent to signed applets in Java?</p>
<p>I'm basically trying to host what would traditionally be a desktop application in a browser*, and I'd rather do it all in a single package (the Silverlight end) rather than delegate privileged actions to an outside (locally running) process. This would require some way of breaking out of Silverlight's sandbox though; the only equivalent I'm aware of are Java's signed applets, and I can't find anything similar.</p>
<p><sub>*There are good usability reasons for this, technically it does complicate things</sub></p>
http://stackoverflow.com/questions/1485832/paypal-sandbox-ipn-return-invalid1Paypal sandbox IPN return INVALIDunknown (google)2009-09-28T07:27:04Z2009-09-29T05:24:34Z
<p>Hi,
I am trying IPN callback, using servlet. The code I am using is provided by paypal for verifying the ipn data. But every time i getting a <strong>INVALID</strong> response.</p>
<p>Here is the code:</p>
<pre><code>Enumeration en = req.getParameterNames();
String str = "cmd=_notify-validate";
while (en.hasMoreElements()) {
String paramName = (String) en.nextElement();
String paramValue = req.getParameter(paramName);
//str = str + "&" + paramName + "=" + URLEncoder.encode(paramValue,"UTF-8"); // for UTF-8 i set the encode format in my account as UTF-8
//str = str + "&" + paramName + "=" + URLEncoder.encode(paramValue,"ISO-8859-1");// for ISO-8859-1 i set the encode format in my account as ISO-8859-1
str = str + "&" + paramName + "=" + URLEncoder.encode(paramValue); //default as provided by paypal
}
URL u = new URL("http://www.sandbox.paypal.com/cgi-bin/webscr");
URLConnection uc = u.openConnection();
uc.setDoOutput(true);
uc.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
PrintWriter pw = new PrintWriter(uc.getOutputStream());
pw.println(str);
pw.close();
BufferedReader in = new BufferedReader(new InputStreamReader(uc.getInputStream()));
String res = in.readLine();
in.close();
if (res.equals("VERIFIED") || !res.equals("VERIFIED")) {
//Update database...
} else if (res.equals("INVALID")) {
//INVALID
}
</code></pre>
<p>I have checked all three possibilities provided by paypal in case paypal return INVALID as follow:</p>
<p>1) Missing Parameters - As I am send all the parameters no issue of missing parameters</p>
<p>2) Invalid URL. - I am using sandbox so URL is : <a href="http://www.sandbox.paypal.com/cgi-bin/webscr" rel="nofollow">http://www.sandbox.paypal.com/cgi-bin/webscr</a></p>
<p>3) Character encoding. - Tried with character encoding same as paypal account setting parameter encoding.</p>
<p>the request I am sending back to paypal using following parameters:</p>
<p>cmd=_notify-validate&last_name=User&test_ipn=1&address_name=Test+User&txn_type=web_accept&receiver_email=sellr1_1252495907_biz%40gmail.com&residence_country=US&address_city=San+Jose&payment_gross=&payment_date=01%3A55%3A04+Sep+26%2C+2009+PDT&address_zip=95131&payment_status=Completed&address_street=1+Main+St&first_name=Test&payer_email=buyer1_1252495751_per%40gmail.com&protection_eligibility=Eligible&payer_id=BXBKS22JQCUWL&verify_sign=AOMkeg7ofCL7FJfioyWA19uCxD4XAgZirsjiGh8cUy1fd2YAqBwOkkst&payment_type=instant&business=sellr1_1252495907_biz%40gmail.com&address_country_code=US&mc_fee=0.64&address_status=confirmed&transaction_subject=True+Up&quantity=1&notify_version=2.8&mc_currency=EUR&custom=&address_state=CA&payment_fee=&handling_amount=0.00&payer_status=verified&shipping=0.00&item_name=True+Up&tax=0.00&username=hannonj&charset=windows-1252&item_number=567&mc_gross=10.00&txn_id=7F456350BS7942738&receiver_id=MASSU6BSR9SC2&address_country=United+States</p>
<p>Please , can any one direct me to proper direction? I am not getting what is wrong the code or the URL or anything else. I tried all the possibilities. Please help me.</p>
http://stackoverflow.com/questions/1479958/is-there-a-service-that-allows-testing-code-against-multiple-database-products1Is there a service that allows testing code against multiple database products?Todd R2009-09-25T23:26:00Z2009-09-25T23:47:18Z
<p>We're writing an open source tool that is designed to work against multiple database products (really, it's designed to work with any database that has a JDBC driver available). However, because it does DDL (not DML), we need to test against different products.</p>
<p>While MySQL, PostgreSQL and other open source db's are easy for us to test on (since we - the developers - all use these daily), testing those products is easy. But, finding different installations of other, commercial database products is a different story.</p>
<p>Does anyone know of a "database sandbox", or similar service that would allow us to test code against multiple database products without having to buy and install them?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1469314/packaging-some-files-with-a-flex-flash-app0Packaging some files with a Flex/Flash App?brian2009-09-24T00:57:04Z2009-09-24T01:04:06Z
<p>Is it possible to package a XML file with a Flex app inside the .swf?</p>
<p>With a Silverlight application, you can do this quite easily but you have to do a http request in flash to grab it if you're using flash?? </p>
<p>I've been wondering this ever since I did a pretty serious silverlight application and utilized local txt and xml files for settings\data all over the place in it.</p>
<p>And yes I know it can be done with AIR--Don't mention any adobe AIR specific packages PLEASE</p>
http://stackoverflow.com/questions/525056/is-there-an-alternative-to-rexec-for-python-sandboxing3Is there an alternative to rexec for Python sandboxing?DNS2009-02-08T02:51:32Z2009-09-13T01:55:40Z
<p>Implementing a 'sandbox' environment in Python used to be done with the rexec module (<a href="http://docs.python.org/library/rexec.html" rel="nofollow">http://docs.python.org/library/rexec.html</a>). Unfortunately, it has been deprecated/removed due to some security vulnerabilities. Is there an alternative?</p>
<p>My goal is to have Python code execute semi-trusted Python scripts. In a perfect world, calls to any functions outside of a pre-defined set would raise exceptions. From what I've read about rexec's deprecation, this may not be possible. So I'll settle for as much as I can get. I can spawn a separate process to run the scripts, which helps a lot. But they could still abuse I/O or processor/memory resources.</p>
http://stackoverflow.com/questions/1380144/server-side-javascript-cleanup-or-sandbox1Server-side JavaScript cleanup or sandbox?alex_c2009-09-04T16:02:31Z2009-09-04T16:22:48Z
<p>I am looking at allowing users to enter JavaScript to specify some logic in my app. The JavaScript would be entered and displayed in a browser, but it would be saved and validated server-side first.</p>
<p>This opens up obvious security implications.</p>
<p>Ideally, I would want to only allow a subset of the JavaScript language. Intuitively, an opt-in approach - specifying what is allowed, and disallowing everything else - seems more secure than an opt-out approach - specifying what is disallowed.</p>
<p>A lot of the solutions I've seen are client-side - I think a server-side solution makes more sense for my needs, since I can give feedback to the user if the JavaScript is invalid, and only save it on the server once it's "clean".</p>
<p>It would also be useful to put in place something to parse the JavaScript and perform some checks - for example, I would provide some variables to the user, I would want to check that they're not using any uninitialized variables, or that the code returns something in an expected format. A sandbox solution should at the very least not hinder this, but it could potentially actively help - if it works by parsing the code and not just regexps, and I can put my own hooks in to check some syntax.</p>
<p>Google Caja looks like it might do what I want, but I haven't dived into it very much.</p>
<p>What approach would you recommend?</p>
<p>Open-source solutions are great. I don't mind writing my own code, but this seems like a non-trivial problem to solve properly from scratch.</p>
http://stackoverflow.com/questions/1350466/preventing-python-code-from-importing-certain-modules2Preventing Python code from importing certain modules?Nir2009-08-29T04:39:33Z2009-08-29T19:05:42Z
<p>I'm writing an application where users can enter a python script and execute it in a sandbox. I need a way to prevent the exec'ed code from importing certain modules, so malicious code won't be as much of a problem. Is there a way to do this in Python?</p>
http://stackoverflow.com/questions/1074542/can-i-access-crossdomain-files-outside-the-originally-requested-domain0Can I access crossdomain files outside the originally requested domain?Sris2009-07-02T14:02:26Z2009-08-25T15:39:01Z
<blockquote>
<p><strong>Flash Player 10 specifies:</strong> </p>
<p><em>"Redirects to policy files outside the originally requested domain will
continue to cause policy files to be
ignored by Flash Player."</em></p>
</blockquote>
<p>Is there a way to access policy files outside the domain?</p>
http://stackoverflow.com/questions/463792/is-there-a-good-browser-based-sandbox-to-practice-javascript5Is there a good browser based sandbox to practice Javascript?Noah2009-01-21T01:14:57Z2009-08-24T19:40:53Z
<p>I am looking for recommendations for a browser based javascript sandbox to practice some proof of concept code.</p>
http://stackoverflow.com/questions/204831/how-can-i-try-a-new-language-or-framework-without-installing-it11How can I try a new language or framework without installing it?flamingLogos2008-10-15T14:06:12Z2009-08-21T21:32:00Z
<p>With so many languages and frameworks that exist, and with new ones appearing all the time, I don't have the time to download, install, and configure each one to evaluate it. In the past I've run across webapps that allow one to write or paste code into a window, and see the results in realtime in the browser, usually in a tutorial setting. </p>
<p>What are your favorite sandbox sites for a given technology?</p>
http://stackoverflow.com/questions/1224708/how-can-i-create-a-secure-lua-sandbox3How can I create a secure Lua sandbox?Scott Persinger2009-08-03T21:23:44Z2009-08-09T13:07:36Z
<p>So Lua seems ideal for implementing secure "user scripts" inside my application.</p>
<p>However, most examples of embedding lua seem to include loading all the standard libraries, including "io" and "package".</p>
<p>So I can exclude those libs from my interpreter, but even the base library includes the functions "dofile" and "loadfile" which access the filesystem.</p>
<p>How can I remove/block any unsafe functions like these, without just ending up with an interpreter that doesn't even have basic stuff like the "ipairs" function?</p>
http://stackoverflow.com/questions/1225633/how-does-google-app-engine-sandbox-work3How does google app engine sandbox work?Shahbaz2009-08-04T03:39:12Z2009-08-04T03:56:39Z
<p>How does google app engine's sandbox work? What would I have to do to create my own such sandbox (to safely allow my clients to run their apps on my engine without giving them the ability to format my disk drive)? Is it just class loader magic, byte manipulation or something?</p>