I am building application in Flash Builder 4.6.
I allow other users to upload and run they own MovieClips inside my app(movie clips loaded by my app). I provide them with an interface to access my app futures.
I am concerned about abusing, so I wish to protect my self from the next scenarios:
- Browser activities such as redirects or opening links. (Pay attention that they can plant java script code using ExternalInterface.)
- Crunching the browser by ruining infinite loops:
while(true){ ;// kill browser }
- Asking the user for unlimited storage permission and feel it with garbage.
Is it possible to protect my app from all that?