How does an online code interpreter/compiler (jsfiddle.net, jsbin.com, ideone.com, codepad.org, etc) deal with malicious code, such as an infinite loop?
closed as not constructive by Will♦ Apr 9 at 21:50
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
That particular site looks like it is running its code on the client side. So you can't hurt their servers. Other sites take the approach of running code in virtual machines. You can just throttle the resources that the virtual machine can take, and they have limited the potential damage that can be done. |
|||
|
|
|
jsFiddle only runs client side code (JavaScript) - the only machine it can harm is yours (or someone viewing your fiddle). Most browsers have something in place to detect an unresponsive script (like an infinite loop), and give you the option to halt the script. Then there are sites like codepad.org and ideone.com, which do run code on the local machine. Codepad.org
|
||||
|
Since sites like jsfiddle are only client side code (you can't write server side code), any bad code will affect the browser that runs it. It shouldn't affect their servers at all. |
|||
|
|