RE: Pete Finnigan's Oracle database password checker
Date: Wed, 8 Oct 2008 07:59:31 -0500
Message-ID: <785A4E1EF4D9E745BAC909B7941BEC0094FB7A@usplm201.amer.corp.eds.com>
If you read the file you downloaded you'll see that there is a procedure
that loads an array (procedure init_dicts) and you can add lines there.
Also, init_hashes loads the hashes database.
You could certainly modify the procedure to load the array from a table with something like:
Procedure init_dicts is
J number;
Begin
J:=1;
For i in (select * from table) loop
Dicts(J):=i.word;
J:=J+1;
End loop;
End;
Guillermo Alan Bort
EDS - ITO DBA Main Group
-----Original Message-----
From: Mercadante, Thomas F (LABOR)
[mailto:Thomas.Mercadante_at_labor.state.ny.us]
Sent: Wednesday, October 08, 2008 9:15 AM
To: John.Hallas_at_morrisonsplc.co.uk; Bort, Guillermo
Cc: oracle-l_at_freelists.org
Subject: RE: Pete Finnigan's Oracle database password checker
I ran it in two of my development environments. My question is how do I extend the dictionary that Pete included in the routine. His Web page states that it can be extended. Anybody have any ideas about how to get a dictionary loaded into an Oracle database?
-- http://www.freelists.org/webpage/oracle-lReceived on Wed Oct 08 2008 - 07:59:31 CDT