It doesn't seem to exist anymore. It got taken down I think. All I found is a bad quality copycat with injectable debugging statements:
Table 'wikiscanneres_wiki.org3' doesn't exist
SELECT name, ip_from from org3 where '2433878598' between ip_from and ip_to order by ip_from DESC limit 1
Anyway, this is easy to replicate yourself using the Requests library in Python. Get a sample of the IP of the network you'd like to know more about, and take a walk around the "block":
(where xxx.xx.xx.xxx is the IP)
for i in range (0,256):
r = requests.get('http://en.wikipedia.org/wiki/Special:Contributions/xxx.xx.xx.' + str(i))
Refine the crawler to look for related articles, with key words that are relative to your interest.
No comments:
Post a Comment