mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-11-04 18:07:46 +03:00 
			
		
		
		
	Cleaning some mess with limitQuery
This commit is contained in:
		
							parent
							
								
									bde7637633
								
							
						
					
					
						commit
						c096f870e7
					
				| 
						 | 
					@ -749,8 +749,8 @@
 | 
				
			||||||
        <delimiter query="||"/>
 | 
					        <delimiter query="||"/>
 | 
				
			||||||
        <limit query="LIMIT %d OFFSET %d"/>
 | 
					        <limit query="LIMIT %d OFFSET %d"/>
 | 
				
			||||||
        <limitregexp query="\s+LIMIT\s+([\d]+)\s+OFFSET\s+([\d]+)" query2="\s+LIMIT\s+([\d]+)"/>
 | 
					        <limitregexp query="\s+LIMIT\s+([\d]+)\s+OFFSET\s+([\d]+)" query2="\s+LIMIT\s+([\d]+)"/>
 | 
				
			||||||
        <limitgroupstart query="1"/>
 | 
					        <limitgroupstart query="2"/>
 | 
				
			||||||
        <limitgroupstop query="2"/>
 | 
					        <limitgroupstop query="1"/>
 | 
				
			||||||
        <limitstring query=" OFFSET "/>
 | 
					        <limitstring query=" OFFSET "/>
 | 
				
			||||||
        <order query="ORDER BY %s ASC"/>
 | 
					        <order query="ORDER BY %s ASC"/>
 | 
				
			||||||
        <count query="COUNT(%s)"/>
 | 
					        <count query="COUNT(%s)"/>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1031,11 +1031,11 @@ class Agent(object):
 | 
				
			||||||
        fromFrom = limitedQuery[fromIndex + 1:]
 | 
					        fromFrom = limitedQuery[fromIndex + 1:]
 | 
				
			||||||
        orderBy = None
 | 
					        orderBy = None
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.PGSQL, DBMS.SQLITE, DBMS.H2, DBMS.VERTICA, DBMS.PRESTO, DBMS.MIMERSQL, DBMS.CUBRID, DBMS.EXTREMEDB, DBMS.RAIMA):
 | 
					        if Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.PGSQL, DBMS.SQLITE, DBMS.VERTICA, DBMS.PRESTO, DBMS.MIMERSQL, DBMS.CUBRID, DBMS.EXTREMEDB, DBMS.DERBY):
 | 
				
			||||||
            limitStr = queries[Backend.getIdentifiedDbms()].limit.query % (num, 1)
 | 
					            limitStr = queries[Backend.getIdentifiedDbms()].limit.query % (num, 1)
 | 
				
			||||||
            limitedQuery += " %s" % limitStr
 | 
					            limitedQuery += " %s" % limitStr
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        elif Backend.getIdentifiedDbms() in (DBMS.H2,):
 | 
					        elif Backend.getIdentifiedDbms() in (DBMS.H2, DBMS.CRATEDB, DBMS.CLICKHOUSE):
 | 
				
			||||||
            limitStr = queries[Backend.getIdentifiedDbms()].limit.query % (1, num)
 | 
					            limitStr = queries[Backend.getIdentifiedDbms()].limit.query % (1, num)
 | 
				
			||||||
            limitedQuery += " %s" % limitStr
 | 
					            limitedQuery += " %s" % limitStr
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1043,10 +1043,6 @@ class Agent(object):
 | 
				
			||||||
            limitStr = queries[Backend.getIdentifiedDbms()].limit.query % (num + 1, 1)
 | 
					            limitStr = queries[Backend.getIdentifiedDbms()].limit.query % (num + 1, 1)
 | 
				
			||||||
            limitedQuery += " %s" % limitStr
 | 
					            limitedQuery += " %s" % limitStr
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        elif Backend.getIdentifiedDbms() in (DBMS.DERBY, DBMS.CRATEDB, DBMS.CLICKHOUSE):
 | 
					 | 
				
			||||||
            limitStr = queries[Backend.getIdentifiedDbms()].limit.query % (num, 1)
 | 
					 | 
				
			||||||
            limitedQuery += " %s" % limitStr
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        elif Backend.getIdentifiedDbms() in (DBMS.FRONTBASE, DBMS.VIRTUOSO):
 | 
					        elif Backend.getIdentifiedDbms() in (DBMS.FRONTBASE, DBMS.VIRTUOSO):
 | 
				
			||||||
            limitStr = queries[Backend.getIdentifiedDbms()].limit.query % (num, 1)
 | 
					            limitStr = queries[Backend.getIdentifiedDbms()].limit.query % (num, 1)
 | 
				
			||||||
            if query.startswith("SELECT "):
 | 
					            if query.startswith("SELECT "):
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -20,7 +20,7 @@ from thirdparty import six
 | 
				
			||||||
from thirdparty.six import unichr as _unichr
 | 
					from thirdparty.six import unichr as _unichr
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
 | 
					# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
 | 
				
			||||||
VERSION = "1.7.12.2"
 | 
					VERSION = "1.7.12.3"
 | 
				
			||||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
 | 
					TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
 | 
				
			||||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
 | 
					TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
 | 
				
			||||||
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
 | 
					VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user