Comment 3 for bug 682493

Revision history for this message
Steven Sproat (sproaty) wrote :

and looking at this function, isn't it a security vulnerability in itself

def ReadHashes():
    try:
        file = open( 'hashes.db' )
        text = file.read()
        exec( text )
        return hash_dict #@UndefinedVariable
    except IOError:
        return False