You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@gump.apache.org by Steve Loughran <st...@apache.org> on 2006/03/13 14:34:14 UTC

database passwords

from mysql/data.py:

def configureDB():
     conn = MySQLdb.Connect(
         host='localhost', user='root',
         passwd='', db='gump',compress=1,
         cursorclass=MySQLdb.cursors.DictCursor)

     configureState(conn)
     configureReasonCode(conn)

     # Done
     conn.close()


that's not a hard coded MySQL root password is it?

---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org


Re: database passwords

Posted by Leo Simons <ma...@leosimons.com>.
Steve,

when you start finding security holes its about time you start
fixing them too! Is this guy on the PMC yet?

- LSD

On Mon, Mar 13, 2006 at 01:34:14PM +0000, Steve Loughran wrote:
> 
> from mysql/data.py:
> 
> def configureDB():
>     conn = MySQLdb.Connect(
>         host='localhost', user='root',
>         passwd='', db='gump',compress=1,
>         cursorclass=MySQLdb.cursors.DictCursor)
> 
>     configureState(conn)
>     configureReasonCode(conn)
> 
>     # Done
>     conn.close()
> 
> 
> that's not a hard coded MySQL root password is it?
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
> For additional commands, e-mail: general-help@gump.apache.org

---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org