mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
a3fc1c77b5
capable to perform an extensive database management system back-end fingerprint, retrieve remote DBMS databases, usernames, tables, columns, enumerate entire DBMS, read system files and much more taking advantage of web application programming security flaws that lead to SQL injection vulnerabilities. WWW: http://sqlmap.sourceforge.net/ PR: ports/123851 Submitted by: Tomoyuki Sakurai <cherry at trombik.org>
20 lines
558 B
Plaintext
20 lines
558 B
Plaintext
--- sqlmap.py.orig 2007-11-05 06:01:41.000000000 +0900
|
|
+++ sqlmap.py 2008-05-21 12:01:04.000000000 +0900
|
|
@@ -7,11 +7,11 @@
|
|
from optparse import OptionParser
|
|
from optparse import OptionError
|
|
|
|
-from lib import settings
|
|
-from lib.option import Option
|
|
-from lib.injection import Injection
|
|
-from lib.settings import VERSION
|
|
-from lib.smdict import sqlmapDict
|
|
+from sqlmap import settings
|
|
+from sqlmap.option import Option
|
|
+from sqlmap.injection import Injection
|
|
+from sqlmap.settings import VERSION
|
|
+from sqlmap.smdict import sqlmapDict
|
|
|
|
|
|
def showBanner():
|