snow icon indicating copy to clipboard operation
snow copied to clipboard

Snow can be bypassed with iframes and srcdoc

Open hackvertor opened this issue 1 year ago • 1 comments

Reproduce by running

let i = document.createElement('iframe');
i.srcdoc="<iframe>";
document.body.append(i)
setTimeout(x=>i.contentWindow[0].alert(1337),500)

hackvertor avatar Sep 29 '23 19:09 hackvertor