Advertisement
BrU32

JS Pastebin.com Paste URL Gen Rev 1 SRC!!!!!

Jul 24th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <script>
  2. function GenIframe()
  3. {
  4. var amm1=0;
  5. var amm=prompt("Enter # Of Images To Generate:");
  6. var text = "";
  7. var possible="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz012345678";
  8. while(amm1!=amm){
  9. amm1++;
  10. for( var i=0; i < 8; i++ )
  11. text += possible.charAt(Math.floor(Math.random() * possible.length));
  12. document.writeln("<a href="+"http://pastebin.com/'"+text+">"+"http://pastebin.com/"+text+"</a><p>");
  13. window.open('http://pastebin.com/'+text);
  14. text="";
  15. }
  16. }
  17. GenIframe()
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement