mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Trivial refactoring
This commit is contained in:
parent
05fa7eb7c6
commit
1b5a4651a9
|
@ -20,7 +20,7 @@ from lib.core.enums import OS
|
||||||
from lib.core.revision import getRevisionNumber
|
from lib.core.revision import getRevisionNumber
|
||||||
|
|
||||||
# sqlmap version and site
|
# sqlmap version and site
|
||||||
VERSION = "1.0.0.9"
|
VERSION = "1.0.0.10"
|
||||||
REVISION = getRevisionNumber()
|
REVISION = getRevisionNumber()
|
||||||
STABLE = VERSION.count('.') <= 2
|
STABLE = VERSION.count('.') <= 2
|
||||||
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
||||||
|
|
6
thirdparty/pagerank/pagerank.py
vendored
6
thirdparty/pagerank/pagerank.py
vendored
|
@ -16,14 +16,12 @@ import sys
|
||||||
import urllib
|
import urllib
|
||||||
import urllib2
|
import urllib2
|
||||||
|
|
||||||
TIMEOUT = 10
|
def get_pagerank(url, timeout=10):
|
||||||
|
|
||||||
def get_pagerank(url):
|
|
||||||
url = url.encode('utf8') if isinstance(url, unicode) else url
|
url = url.encode('utf8') if isinstance(url, unicode) else url
|
||||||
_ = 'http://toolbarqueries.google.com/tbr?client=navclient-auto&features=Rank&ch=%s&q=info:%s' % (check_hash(hash_url(url)), urllib.quote(url))
|
_ = 'http://toolbarqueries.google.com/tbr?client=navclient-auto&features=Rank&ch=%s&q=info:%s' % (check_hash(hash_url(url)), urllib.quote(url))
|
||||||
try:
|
try:
|
||||||
req = urllib2.Request(_)
|
req = urllib2.Request(_)
|
||||||
rank = urllib2.urlopen(req, timeout=TIMEOUT).read().strip()[9:]
|
rank = urllib2.urlopen(req, timeout=timeout).read().strip()[9:]
|
||||||
except:
|
except:
|
||||||
rank = 'N/A'
|
rank = 'N/A'
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user