Please note that the manual is a little bit misleading when providing references. The sourceforge URL cited
(i.e. http://sourceforge.net/projects/cracklib) is the homepage of cracklib the enabler (upon which other things build), NOT the crack PECL extension. If you are a PHP user looking for the crack PECL extension, you should NOT download from sourceforge. Instead, you should download from the PECL homepage (http://pecl.php.net). When you are there, search for "crack" not "cracklib".
Crack
Introductie
Deze functies maken het mogelijk om met de CrackLib bibliotheek de 'sterkte' van een wachtwoord te testen. De 'sterkte' van een wachtwoord wordt bepaald door de lengte ervan, het gebruik van hoofd- en kleine letters, en het wordt vergeleken met een CrackLib woordenboek. CrackLib geeft ook handige tips om je wachtwoord 'sterker' te maken.
Afhankelijkheden
Meer informatie over CrackLib samen met de bibliotheek kan gevonden worden op » http://sourceforge.net/projects/cracklib.
Installatie
Om deze functies te kunnen gebruiken, moet je PHP eerst compilen met Crack ondersteuning door de --with-crack[=DIR] optie te gebruiken.
Configuratie tijdens scriptuitvoer
Het gedrag van deze functies wordt beïnvloed vanuit php.ini.
| Naam | Standaard waarde | Veranderbaar |
|---|---|---|
| crack.default_dictionary | NULL | PHP_INI_SYSTEM |
Resource types
Deze extensie maakt geen gebruik van resources.
Voorgedefinieerde constanten
Deze extensie definieert geen constanten.
Voorbeelden
Dit voorbeeld laat zien hoe je een CrackLib woordenboek moet openen, hoe je een wachtwoord test, hoe je de diagnostische berichten afvangt, en hoe je het woordenboek sluit.
Example#1 CrackLib voorbeeld
<?php
// Opent een CrackLib woordenboek
$dictionary = crack_opendict('/usr/local/lib/pw_dict')
or die('Kan het CrackLib woordenboek niet openen');
// Voert een wachtwoord test uit
$check = crack_check($dictionary, 'gx9A2s0x');
// Vang de berichten af
$diag = crack_getlastmessage();
echo $diag; // 'sterk' wachtwoord
// Sluit het woordenboek
crack_closedict($dictionary);
?>
Note: Als crack_check() TRUE terug geeft, geeft crack_getlastmessage() 'strong password' terug.
Table of Contents
- crack_check — Voert een controle op de 'sterkte' van het gegeven wachtwoord uit
- crack_closedict — Sluit een open CrackLib woordenboek
- crack_getlastmessage — Geeft het bericht terug van de laatste controle op sterkte
- crack_opendict — Opent een nieuwe CrackLib woordenboek
Crack functies
22-Nov-2007 02:24
05-Jun-2007 09:08
For those of you not familiar with the CrackLib Library:
CrackLib (or PHP Crack) can not cope with plaintext wordlists.
You have to generate a binary version of any plaintext list first.
After you have done this you get 3 files with different extensions:
my_list.txt
---->
my_list.pwd
my_list.hwm
my_list.pwi
crack_opendict() must be called with the first argument describing the path and base filename of the binary wordlist, e.g. C:\....\my_list or /usr/local/... (see below)
Now the bad news - how to generate the 3 files:
The only way i managed to do it:
o Download the CrackLib package from sourceforge (see link in php.net txt)
o USE UNIX/LINUX:
o run configure
o run make all
o run make install
o run make dict (having the wordlists in the /dict directory)
o look for the files in /usr/local/share/cracklib/
o copy the files in a convenient directory
That's it.
