diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2008-05-22 10:24:56 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2008-05-22 10:24:56 +0000 |
commit | a3fc1c77b5af1b2a8b712f01d04888ac8bdb7224 (patch) | |
tree | 0956d911f5f797d899d983ac4d5e91465855f385 /security/sqlmap/files | |
parent | - Fix build (diff) |
sqlmap is an automatic SQL injection tool entirely developed in Python. It is
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>
Diffstat (limited to 'security/sqlmap/files')
-rw-r--r-- | security/sqlmap/files/patch-sqlmap | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/security/sqlmap/files/patch-sqlmap b/security/sqlmap/files/patch-sqlmap new file mode 100644 index 000000000000..084c7eec0b18 --- /dev/null +++ b/security/sqlmap/files/patch-sqlmap @@ -0,0 +1,19 @@ +--- 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(): |