From 6c582343fe3a1df724057e7a2691037fa6f637a4 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 9 Feb 2011 17:05:06 +0000 Subject: [PATCH] .. fix --- lib/techniques/brute/use.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/techniques/brute/use.py b/lib/techniques/brute/use.py index f67385a8c..5f58ce6bc 100644 --- a/lib/techniques/brute/use.py +++ b/lib/techniques/brute/use.py @@ -157,7 +157,7 @@ def columnExists(columnFile, regex=None): columns = filterListValue(columns, regex) if conf.db and not conf.db.endswith(METADB_SUFFIX): - table = "%s.%s" % (conf.db, conf.tbl) + table = "%s%s%s" % (conf.db, '..' if Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE) else '.', conf.tbl) else: table = conf.tbl