Advertisement
Guest User

title fuzzer

a guest
Dec 11th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. import urllib2
  2. from BeautifulSoup import BeautifulSoup
  3. for n in range (1, 100):
  4.     soup = BeautifulSoup(urllib2.urlopen("http://192.168.1.126?id="+str(n)))
  5.     print ('probando el id '+str(n)+'');print soup.title
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement