Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import nmap
  2. import webbrowser
  3. import
  4. nm = nmap.PortScanner()
  5. x = nm.scan('95.233.38.0-255', '80')
  6. svre = nm.all_hosts()
  7. for i in svre:
  8. x = 'http://'
  9. y = x + str(i)
  10. webbrowser.open_new_tab(y)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement