Update check_url_redirect.cgi (#60990)

This commit is contained in:
CoreCode 2019-03-28 03:13:14 +01:00 committed by Vítor Galvão
parent ec60985e17
commit 90329ef7b7
1 changed files with 4 additions and 1 deletions

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