HTML5 iFrame Sandbox

iShane

Newbie
Joined
Feb 11, 2011
Messages
9
Reaction score
1
Anyone know how to break out of an sandboxed iFrame (Chrome)

Example:
<iframe src="url" frameborder="0" scrolling="auto" sandbox="allow-scripts allow-forms" width="100%" height="100%"></iframe>

Typical methods such as
top.location = self.location
window.location = self.location
top.location.replace(self.location)
(etc...)

don't seem to work
 
you may be able to use a true/false in the url field, but I havent figured it out either. Busting iframes is worth a ton of money :)
 
Back
Top