sqlmap/lib/core/convert.py

109 lines
2.8 KiB
Python
Raw Normal View History

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.
2010-03-03 18:26:27 +03:00
Copyright (c) 2007-2010 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
"""
try:
import hashlib
except:
import md5
import sha
import pickle
import sys
2008-10-15 19:38:22 +04:00
import struct
import urllib
from lib.core.data import conf
2008-10-15 19:38:22 +04:00
def base64decode(string):
return string.decode("base64")
def base64encode(string):
return string.encode("base64")[:-1].replace("\n", "")
def base64pickle(string):
return base64encode(pickle.dumps(string))
def base64unpickle(string):
return pickle.loads(base64decode(string))
2008-10-15 19:38:22 +04:00
def hexdecode(string):
string = string.lower()
if string.startswith("0x"):
string = string[2:]
return string.decode("hex")
2008-10-15 19:38:22 +04:00
def hexencode(string):
return string.encode("hex")
def md5hash(string):
if sys.modules.has_key('hashlib'):
return hashlib.md5(string).hexdigest()
else:
return md5.new(string).hexdigest()
2008-10-15 19:38:22 +04:00
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):
if sys.modules.has_key('hashlib'):
return hashlib.sha1(string).hexdigest()
else:
return sha.new(string).hexdigest()
2008-10-15 19:38:22 +04:00
def urldecode(string):
result = None
if string:
result = urllib.unquote_plus(string)
2008-10-15 19:38:22 +04:00
return result
2008-10-15 19:38:22 +04:00
def urlencode(string, safe=":/?%&=", convall=False):
if conf.direct or "POSTxml" in conf.paramDict:
return string
result = None
if string is None:
return result
2008-10-15 19:38:22 +04:00
if convall:
result = urllib.quote(utf8encode(string)) # Reference: http://old.nabble.com/Re:-Problem:-neither-urllib2.quote-nor-urllib.quote-encode-the--unicode-strings-arguments-p19823144.html
else:
2010-05-28 18:07:48 +04:00
result = urllib.quote(utf8encode(string), safe)
return result
def utf8encode(string):
return string.encode("utf-8")
def utf8decode(string):
return string.decode("utf-8")