Login Register


http response checker filter_list
Author
Message
http response checker #1
I made this for a project @Eclipse gave me, and I think some people here may benefit from it.

Run in terminal or command line, it takes a site for a parameter, then acts as a browser and checks the site's http response.
Acting as a browser using a User-agent may fool some anti-bot systems, but not ones like cloudflare. Any solution to this issue would be hugely appreciated.

Source:
Code:
import requests import sys url = sys.argv[1] headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36'} r = requests.get(url, headers=headers) print r.status_code

Usage:
Code:
$ python resp.py https://github.com

If you don't already have Requests installed, install it using pip
Code:
$ pip install requests
It's often the outcasts, the iconoclasts ... those who have the least to lose because they
don't have much in the first place, who feel the new currents and ride them the farthest.






Messages In This Thread
http response checker - by Inori - 08-30-2015, 12:19 AM
RE: http response checker - by Eclipse - 08-30-2015, 12:27 AM
RE: http response checker - by Satan - 08-30-2015, 12:28 AM
RE: http response checker - by Inori - 08-30-2015, 12:31 AM
RE: http response checker - by Dyme - 08-30-2015, 12:31 AM
RE: http response checker - by Yung Gud - 08-30-2015, 12:46 AM
RE: http response checker - by Dyme - 08-30-2015, 12:56 AM
RE: http response checker - by Eclipse - 08-30-2015, 12:52 AM
RE: http response checker - by Eclipse - 08-30-2015, 01:00 AM
RE: http response checker - by Dyme - 08-30-2015, 01:09 AM
RE: http response checker - by Eclipse - 08-30-2015, 01:17 AM
RE: http response checker - by Dyme - 08-30-2015, 01:31 AM
RE: http response checker - by Inori - 08-30-2015, 01:39 AM
RE: http response checker - by Eclipse - 08-30-2015, 01:43 AM
RE: http response checker - by Dyme - 08-30-2015, 02:10 AM
RE: http response checker - by Eclipse - 08-30-2015, 02:12 AM
RE: http response checker - by Dyme - 08-30-2015, 02:14 AM
RE: http response checker - by Inori - 08-30-2015, 02:25 AM



Users browsing this thread: