mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-08-01 19:00:10 +03:00
Merge 0f5fba6873
into d7cd55fb28
This commit is contained in:
commit
fd199c92af
|
@ -126,6 +126,11 @@ from lib.core.settings import UNION_UNIQUE_FIFO_LENGTH
|
||||||
from lib.core.settings import URI_QUESTION_MARKER
|
from lib.core.settings import URI_QUESTION_MARKER
|
||||||
from lib.core.threads import getCurrentThreadData
|
from lib.core.threads import getCurrentThreadData
|
||||||
|
|
||||||
|
from lib.core.settings import DUMP_NEWLINE_MARKER
|
||||||
|
from lib.core.settings import DUMP_CR_MARKER
|
||||||
|
from lib.core.settings import DUMP_TAB_MARKER
|
||||||
|
from lib.core.settings import DUMP_DEL_MARKER
|
||||||
|
|
||||||
class UnicodeRawConfigParser(RawConfigParser):
|
class UnicodeRawConfigParser(RawConfigParser):
|
||||||
"""
|
"""
|
||||||
RawConfigParser with unicode writing support
|
RawConfigParser with unicode writing support
|
||||||
|
|
|
@ -485,3 +485,10 @@ GENERIC_SQL_COMMENT = "-- "
|
||||||
|
|
||||||
# Threshold value for turning back on time auto-adjustment mechanism
|
# Threshold value for turning back on time auto-adjustment mechanism
|
||||||
VALID_TIME_CHARS_RUN_THRESHOLD = 100
|
VALID_TIME_CHARS_RUN_THRESHOLD = 100
|
||||||
|
|
||||||
|
# dump markers
|
||||||
|
DUMP_NEWLINE_MARKER = "__NEWLINE__"
|
||||||
|
DUMP_CR_MARKER = "__CARRIAGE_RETURN__"
|
||||||
|
DUMP_TAB_MARKER = "__TAB__"
|
||||||
|
DUMP_DEL_MARKER = "__DEL__"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user