Update check_url_redirect.cgi (#60990)

This commit is contained in:
CoreCode
2019-03-28 02:13:14 +00:00
committed by Vítor Galvão
parent ec60985e17
commit 90329ef7b7
+4 -1
View File
@@ -5,8 +5,11 @@ import urllib2
form = cgi.FieldStorage()
url = form.getvalue("url", "")
ua = form.getvalue("user_agent", "Mozilla")
try:
response = urllib2.urlopen(url)
headers = { 'User-Agent' : ua }
req = urllib2.Request(url, None, headers)
response = urllib2.urlopen(req)
redir = response.geturl()
except Exception:
import traceback