mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-10-31 16:07:55 +03:00 
			
		
		
		
	Patching previous commit
This commit is contained in:
		
							parent
							
								
									94639d11a3
								
							
						
					
					
						commit
						4335ae8330
					
				|  | @ -37,7 +37,6 @@ from lib.core.settings import BOUNDARY_BACKSLASH_MARKER | ||||||
| from lib.core.settings import CUSTOM_INJECTION_MARK_CHAR | from lib.core.settings import CUSTOM_INJECTION_MARK_CHAR | ||||||
| from lib.core.settings import DEFAULT_COOKIE_DELIMITER | from lib.core.settings import DEFAULT_COOKIE_DELIMITER | ||||||
| from lib.core.settings import DEFAULT_GET_POST_DELIMITER | from lib.core.settings import DEFAULT_GET_POST_DELIMITER | ||||||
| from lib.core.settings import DEFAULT_MYSQL_CHARACTER_SET |  | ||||||
| from lib.core.settings import GENERIC_SQL_COMMENT | from lib.core.settings import GENERIC_SQL_COMMENT | ||||||
| from lib.core.settings import PAYLOAD_DELIMITER | from lib.core.settings import PAYLOAD_DELIMITER | ||||||
| from lib.core.settings import REPLACEMENT_MARKER | from lib.core.settings import REPLACEMENT_MARKER | ||||||
|  | @ -401,9 +400,6 @@ class Agent(object): | ||||||
|                 nulledCastedField = field |                 nulledCastedField = field | ||||||
|             else: |             else: | ||||||
|                 if not (Backend.isDbms(DBMS.SQLITE) and not isDBMSVersionAtLeast('3')): |                 if not (Backend.isDbms(DBMS.SQLITE) and not isDBMSVersionAtLeast('3')): | ||||||
|                     if Backend.isDbms(DBMS.MYSQL): |  | ||||||
|                         nulledCastedField = rootQuery.cast.query.replace(")", " CHARACTER SET %s)") % (field, DEFAULT_MYSQL_CHARACTER_SET) |  | ||||||
|                     else: |  | ||||||
|                     nulledCastedField = rootQuery.cast.query % field |                     nulledCastedField = rootQuery.cast.query % field | ||||||
|                 if Backend.getIdentifiedDbms() in (DBMS.ACCESS,): |                 if Backend.getIdentifiedDbms() in (DBMS.ACCESS,): | ||||||
|                     nulledCastedField = rootQuery.isnull.query % (nulledCastedField, nulledCastedField) |                     nulledCastedField = rootQuery.isnull.query % (nulledCastedField, nulledCastedField) | ||||||
|  |  | ||||||
|  | @ -224,10 +224,6 @@ HOST_ALIASES = ("host",) | ||||||
| 
 | 
 | ||||||
| HSQLDB_DEFAULT_SCHEMA = "PUBLIC" | HSQLDB_DEFAULT_SCHEMA = "PUBLIC" | ||||||
| 
 | 
 | ||||||
| # Default character set used in MySQL |  | ||||||
| # Reference: http://pieroxy.net/blog/2013/05/28/mysql_charset_hell.html |  | ||||||
| DEFAULT_MYSQL_CHARACTER_SET = "latin1" |  | ||||||
| 
 |  | ||||||
| # Names that can't be used to name files on Windows OS | # Names that can't be used to name files on Windows OS | ||||||
| WINDOWS_RESERVED_NAMES = ("CON", "PRN", "AUX", "NUL", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6", "COM7", "COM8", "COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9") | WINDOWS_RESERVED_NAMES = ("CON", "PRN", "AUX", "NUL", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6", "COM7", "COM8", "COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9") | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -37,7 +37,6 @@ from lib.core.enums import DBMS | ||||||
| from lib.core.enums import PAYLOAD | from lib.core.enums import PAYLOAD | ||||||
| from lib.core.exception import SqlmapThreadException | from lib.core.exception import SqlmapThreadException | ||||||
| from lib.core.settings import CHAR_INFERENCE_MARK | from lib.core.settings import CHAR_INFERENCE_MARK | ||||||
| from lib.core.settings import DEFAULT_MYSQL_CHARACTER_SET |  | ||||||
| from lib.core.settings import INFERENCE_BLANK_BREAK | from lib.core.settings import INFERENCE_BLANK_BREAK | ||||||
| from lib.core.settings import INFERENCE_UNKNOWN_CHAR | from lib.core.settings import INFERENCE_UNKNOWN_CHAR | ||||||
| from lib.core.settings import INFERENCE_GREATER_CHAR | from lib.core.settings import INFERENCE_GREATER_CHAR | ||||||
|  | @ -593,9 +592,6 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None | ||||||
| 
 | 
 | ||||||
|     _ = finalValue or partialValue |     _ = finalValue or partialValue | ||||||
| 
 | 
 | ||||||
|     if Backend.isDbms(DBMS.MYSQL) and safechardecode(_) != _: |  | ||||||
|         _ = getUnicode(safechardecode(_).encode(DEFAULT_MYSQL_CHARACTER_SET)) |  | ||||||
| 
 |  | ||||||
|     return getCounter(kb.technique), safecharencode(_) if kb.safeCharEncode else _ |     return getCounter(kb.technique), safecharencode(_) if kb.safeCharEncode else _ | ||||||
| 
 | 
 | ||||||
| def queryOutputLength(expression, payload): | def queryOutputLength(expression, payload): | ||||||
|  |  | ||||||
|  | @ -8,7 +8,6 @@ See the file 'doc/COPYING' for copying permission | ||||||
| import binascii | import binascii | ||||||
| 
 | 
 | ||||||
| from lib.core.convert import utf8encode | from lib.core.convert import utf8encode | ||||||
| from lib.core.settings import DEFAULT_MYSQL_CHARACTER_SET |  | ||||||
| from plugins.generic.syntax import Syntax as GenericSyntax | from plugins.generic.syntax import Syntax as GenericSyntax | ||||||
| 
 | 
 | ||||||
| class Syntax(GenericSyntax): | class Syntax(GenericSyntax): | ||||||
|  | @ -27,7 +26,7 @@ class Syntax(GenericSyntax): | ||||||
|             try: |             try: | ||||||
|                 retVal = "0x%s" % binascii.hexlify(value) |                 retVal = "0x%s" % binascii.hexlify(value) | ||||||
|             except UnicodeEncodeError: |             except UnicodeEncodeError: | ||||||
|                 retVal = "CONVERT(0x%s USING %s)" % ("".join("%.2x" % ord(_) for _ in utf8encode(value)), DEFAULT_MYSQL_CHARACTER_SET) |                 retVal = "CONVERT(0x%s USING utf8)" % "".join("%.2x" % ord(_) for _ in utf8encode(value)) | ||||||
|             return retVal |             return retVal | ||||||
| 
 | 
 | ||||||
|         return Syntax._escape(expression, quote, escaper) |         return Syntax._escape(expression, quote, escaper) | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user