MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / _configUnionChar

Function _configUnionChar

lib/techniques/union/use.py:207–214  ·  view source on GitHub ↗
(char)

Source from the content-addressed store, hash-verified

205
206def configUnion(char=None, columns=None):
207 def _configUnionChar(char):
208 if not isinstance(char, six.string_types):
209 return
210
211 kb.uChar = char
212
213 if conf.uChar is not None:
214 kb.uChar = char.replace("[CHAR]", conf.uChar if isDigit(conf.uChar) else "'%s'" % conf.uChar.strip("'"))
215
216 def _configUnionCols(columns):
217 if not isinstance(columns, six.string_types):

Callers 1

configUnionFunction · 0.85

Calls 2

isDigitFunction · 0.90
replaceMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…