mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 17:02:39 +01:00
16 lines
391 B
Python
16 lines
391 B
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
$Id$
|
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://www.sqlmap.org/)
|
|
See the file 'doc/COPYING' for copying permission
|
|
"""
|
|
|
|
def dnsUse(expression, expected=None, dump=False):
|
|
"""
|
|
Retrieve the output of a SQL query taking advantage of the DNS
|
|
resolution mechanism by making request back to attacker's machine.
|
|
"""
|
|
|
|
raise NotImplementedError
|