2008-10-15 19:38:22 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2008-10-15 19:56:32 +04:00
|
|
|
$Id$
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
This file is part of the sqlmap project, http://sqlmap.sourceforge.net.
|
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
Copyright (c) 2007-2009 Bernardo Damele A. G. <bernardo.damele@gmail.com>
|
|
|
|
Copyright (c) 2006 Daniele Bellucci <daniele.bellucci@gmail.com>
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
sqlmap is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU General Public License as published by the Free
|
|
|
|
Software Foundation version 2 of the License.
|
|
|
|
|
|
|
|
sqlmap is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with sqlmap; if not, write to the Free Software Foundation, Inc., 51
|
|
|
|
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2009-04-28 03:05:11 +04:00
|
|
|
import md5
|
|
|
|
import sha
|
2008-10-15 19:38:22 +04:00
|
|
|
import struct
|
|
|
|
import urllib
|
|
|
|
|
|
|
|
|
|
|
|
def base64decode(string):
|
|
|
|
return string.decode("base64")
|
|
|
|
|
|
|
|
|
|
|
|
def base64encode(string):
|
|
|
|
return string.encode("base64")[:-1]
|
|
|
|
|
|
|
|
|
|
|
|
def hexdecode(string):
|
|
|
|
string = string.lower()
|
|
|
|
|
|
|
|
if string.startswith("0x"):
|
|
|
|
string = string[2:]
|
|
|
|
|
|
|
|
return string.decode("hex")
|
|
|
|
|
|
|
|
|
|
|
|
def hexencode(string):
|
|
|
|
return string.encode("hex")
|
|
|
|
|
|
|
|
|
|
|
|
def md5hash(string):
|
|
|
|
return md5.new(string).hexdigest()
|
|
|
|
|
|
|
|
|
|
|
|
def orddecode(string):
|
|
|
|
packedString = struct.pack("!"+"I" * len(string), *string)
|
|
|
|
return "".join([chr(char) for char in struct.unpack("!"+"I"*(len(packedString)/4), packedString)])
|
|
|
|
|
|
|
|
|
|
|
|
def ordencode(string):
|
|
|
|
return tuple([ord(char) for char in string])
|
|
|
|
|
|
|
|
|
|
|
|
def sha1hash(string):
|
|
|
|
return sha.new(string).hexdigest()
|
|
|
|
|
|
|
|
|
|
|
|
def urldecode(string):
|
|
|
|
if not string:
|
|
|
|
return
|
|
|
|
|
2008-10-16 20:31:20 +04:00
|
|
|
doublePercFreeString = string.replace("%%", "__DPERC__")
|
|
|
|
unquotedString = urllib.unquote_plus(doublePercFreeString)
|
|
|
|
unquotedString = unquotedString.replace("__DPERC__", "%%")
|
|
|
|
|
|
|
|
return unquotedString
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
def urlencode(string, safe=":/?%&=", convall=False):
|
2008-10-15 19:38:22 +04:00
|
|
|
if not string:
|
|
|
|
return
|
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
if convall == True:
|
|
|
|
return urllib.quote(string)
|
|
|
|
else:
|
|
|
|
return urllib.quote(string, safe)
|