From 5216fb6e0296673172748d8cd91b7d10303b3f46 Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Sun, 26 Oct 2008 16:45:14 +0000 Subject: [PATCH] Major bug fix so that the users' privileges enumeration now works properly also on MySQL < 5.0 (fix a traceback) --- plugins/generic/enumeration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/generic/enumeration.py b/plugins/generic/enumeration.py index 964ed5854..92861ac08 100644 --- a/plugins/generic/enumeration.py +++ b/plugins/generic/enumeration.py @@ -55,7 +55,7 @@ class Enumeration: """ def __init__(self, dbms): - self.has_information_schema = None + self.has_information_schema = False self.banner = "" self.currentUser = ""