mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-18 04:20:35 +03:00
some more fine tunning
This commit is contained in:
parent
73dba249e8
commit
76a4aa19ac
|
@ -54,7 +54,7 @@ class DNSQuery:
|
||||||
retVal += "\xc0\x0c" # Pointer to domain name
|
retVal += "\xc0\x0c" # Pointer to domain name
|
||||||
retVal += "\x00\x01" # Type A
|
retVal += "\x00\x01" # Type A
|
||||||
retVal += "\x00\x01" # Class IN
|
retVal += "\x00\x01" # Class IN
|
||||||
retVal += "\x00\x00\x00\x00" # TTL (don't cache)
|
retVal += "\x00\x00\x00\x20" # TTL (32 seconds)
|
||||||
retVal += "\x00\x04" # Data length
|
retVal += "\x00\x04" # Data length
|
||||||
retVal += "".join(chr(int(_)) for _ in resolution.split('.')) # 4 bytes of IP
|
retVal += "".join(chr(int(_)) for _ in resolution.split('.')) # 4 bytes of IP
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ def dnsUse(payload, expression):
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
count += 1
|
count += 1
|
||||||
prefix, suffix = (("%s" % randomStr(3)).lower() for _ in xrange(2))
|
prefix, suffix = ("%s" % randomStr(3) for _ in xrange(2))
|
||||||
chunk_length = MAX_DNS_LABEL / 2 if Backend.getIdentifiedDbms() in (DBMS.ORACLE, DBMS.MYSQL, DBMS.PGSQL) else MAX_DNS_LABEL / 4 - 2
|
chunk_length = MAX_DNS_LABEL / 2 if Backend.getIdentifiedDbms() in (DBMS.ORACLE, DBMS.MYSQL, DBMS.PGSQL) else MAX_DNS_LABEL / 4 - 2
|
||||||
_, _, _, _, _, _, fieldToCastStr, _ = agent.getFields(expression)
|
_, _, _, _, _, _, fieldToCastStr, _ = agent.getFields(expression)
|
||||||
nulledCastedField = agent.nullAndCastField(fieldToCastStr)
|
nulledCastedField = agent.nullAndCastField(fieldToCastStr)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user