Uncovering Real IP Address Behind CloudFlare

This python code will request to crimeflare to uncovering real ip address behind cloudflare. get the real IP address of a domain which is hiding behind cloudflare.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/usr/bin/python import urllib2,re,sys if len(sys.argv) != 2: print 'Usage : '+sys.argv[0]+' [domain_name]' print 'Example: '+sys.argv[0]+' domain.com' sys.exit(0) req = urllib2.Request('http://www.crimeflare.biz/cgi-bin/cfsearch.cgi', 'cfS='+sys.argv[1]) resp = urllib2.urlopen(req) res = re.findall('<font color=\#c00000>(.*?)<\/font>',resp.read()) res = res[1].split(" ") if len(res) == 3: print 'Domain : '+res[0] print 'IP Address: '+res[1] print 'Country : '+res[2] else: print 'Sorry, I cannot find it. :(' |
Yes!! This Python code is just requesting another source, I am not that 31337 to code something like that. Might be someone who can turn off analog