Retrieve the output of a SQL query taking advantage of an union SQL injection vulnerability on the affected parameter.
(expression, unpack=True, dump=False)
| 344 | return output |
| 345 | |
| 346 | def _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 |
no test coverage detected
searching dependent graphs…