RE: Pete Finnigan's Oracle database password checker

From: Mercadante, Thomas F (LABOR) <Thomas.Mercadante_at_labor.state.ny.us>
Date: Wed, 8 Oct 2008 09:33:43 -0400
Message-ID: <ABB9D76E187C5146AB5683F5A07336FFE09352@EXCNYSM0A1AJ.nysemail.nyenet>


Guillermo,

I know. But anybody have a clue of where to get a list of dictionary words to load into a database?

Tom

-----Original Message-----

From: Bort, Guillermo [mailto:guillermo.bort_at_eds.com] Sent: Wednesday, October 08, 2008 9:00 AM To: Mercadante, Thomas F (LABOR); John.Hallas_at_morrisonsplc.co.uk Cc: oracle-l_at_freelists.org
Subject: RE: Pete Finnigan's Oracle database password checker

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-l
Received on Wed Oct 08 2008 - 08:33:43 CDT

Original text of this message