Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- javascript:(function()%7Bvar d %3D document%3Bvar o %3D d.getElementsByTagName("*")%3Bvar i %3D 0%3Bwhile (i<o.length)%7Bif (o%5Bi%5D.hasAttribute("src"))%7Bvar s %3D o%5Bi%5D.getAttribute("src")%3Bif (s.includes(".swf"))%7Bi%3Do.length%3Bopen(s)%3B%7D%7Di%3Di%2B1%3B%7D%7D)()
- ////Do Not Copy Below This Line////
- Here is the javascript broken out for easy reading.
- var d = document;
- var o = d.getElementsByTagName("*");
- var i = 0;
- while (i<o.length){
- if (o[i].hasAttribute("src")){
- var s = o[i].getAttribute("src");
- if (s.includes(".swf")){
- i=o.length;
- open(s);
- }
- }
- i=i+1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement