Advertisement
BrU32

JS Mass IP/Port Gen Final Release SRC By BrU

Mar 16th, 2017
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <center>
  2. <body bgcolor="black">
  3. <button id="video" onkeydown="drawe();" onclick="drawe();"><b><body bgcolor=red><font color=green>Gen Random IP Address And Port
  4. </button>
  5. <script>
  6.  
  7. function drawe(){
  8. var inn=prompt("Enter # To Gen:");
  9. for(var i=0;i<inn;i++){
  10. var rand=Math.floor(Math.random()*256);
  11. var rand2=Math.floor(Math.random()*256);
  12. var rand3=Math.floor(Math.random()*256);
  13. var rand4=Math.floor(Math.random()*256);
  14. var port=Math.floor(Math.random()*9999);
  15. document.body.innerHTML=document.body.innerHTML+'<p><center><b><font color=white>'+(rand+'.'+rand2+'.'+rand3+'.'+rand4+':'+port+'<br>');
  16. }
  17. }
  18. </script>
  19. </body>
  20. </center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement