From 6c49af090c4ff68a47a65fff91d385639ead7f33 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 28 Dec 2011 14:18:17 +0000 Subject: [PATCH] minor language patch --- plugins/dbms/postgresql/fingerprint.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/dbms/postgresql/fingerprint.py b/plugins/dbms/postgresql/fingerprint.py index 3f007f434..7b8b3ed09 100644 --- a/plugins/dbms/postgresql/fingerprint.py +++ b/plugins/dbms/postgresql/fingerprint.py @@ -183,8 +183,8 @@ class Fingerprint(GenericFingerprint): if conf.db not in PGSQL_SYSTEM_DBS and conf.db != "public": conf.db = "public" - warnMsg = "on %s it is only possible to enumerate " % DBMS.PGSQL - warnMsg += "on the current schema and on system databases, " - warnMsg += "sqlmap is going to use 'public' schema as " + warnMsg = "on %s it is possible to enumerate " % DBMS.PGSQL + warnMsg += "only on the current schema and/or system databases. " + warnMsg += "sqlmap is going to use 'public' schema as a " warnMsg += "database name" logger.warn(warnMsg)