MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / _goUnion

Function _goUnion

lib/request/inject.py:346–357  ·  view source on GitHub ↗

Retrieve the output of a SQL query taking advantage of an union SQL injection vulnerability on the affected parameter.

(expression, unpack=True, dump=False)

Source from the content-addressed store, hash-verified

344 return output
345
346def _goUnion(expression, unpack=True, dump=False):
347 """
348 Retrieve the output of a SQL query taking advantage of an union SQL
349 injection vulnerability on the affected parameter.
350 """
351
352 output = unionUse(expression, unpack=unpack, dump=dump)
353
354 if isinstance(output, six.string_types):
355 output = parseUnionPage(output)
356
357 return output
358
359@lockedmethod
360@stackedmethod

Callers 1

getValueFunction · 0.85

Calls 2

unionUseFunction · 0.90
parseUnionPageFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…