PHP: Crack functions - Manual
PHP  
downloads | documentation | faq | getting help | | php.net sites | links 
search for in the  
previouscpdf_translatecrack_checknext
Last updated: Tue, 16 Jul 2002
view this page in Printer friendly version | English | Brazilian Portuguese | Chinese | Czech | Dutch | Finnish | French | German | Hungarian | Italian | Japanese | Korean | Romanian | Russian | Spanish | Turkish

XI. Crack functions

Wprowadzenie

These functions allow you to use the CrackLib library to test the 'strength' of a password. The 'strength' of a password is tested by that checks length, use of upper and lower case and checked against the specified CrackLib dictionary. CrackLib will also give helpful diagnostic messages that will help 'strengthen' the password.

Wymagania

More information regarding CrackLib along with the library can be found at .

Instalacja

In order to use these functions, you must compile PHP with Crack support by using the --with-crack[=DIR] option.

Konfiguracja startowa

To rozszerzenie nie definiuje �adnych dyrektyw konfiguracyjnych.

Typy zasob�w

To rozszerzenie nie definiuje �adnych rodzaj�w zasob�w.

Predefiniowane sta�e

To rozszerzenie nie definiuje �adnych sta�ych.

Przyk�ady

This example shows how to open a CrackLib dictionary, test a given password, retrieve any diagnostic messages, and close the dictionary.

Przyk�ad 1. CrackLib example

<?php
// Open CrackLib Dictionary
$dictionary = crack_opendict('/usr/local/lib/pw_dict')
     or die('Unable to open CrackLib dictionary');

// Perform password check
$check = crack_check($dictionary, 'gx9A2s0x');

// Retrieve messages
$diag = crack_getlastmessage();
echo $diag; // 'strong password'

// Close dictionary
crack_closedict($dictionary);
?>

Notatka: If crack_check() returns TRUE, crack_getlastmessage() will return 'strong password'.

Spis tre�ci
crack_check -- Performs an obscure check with the given password
crack_closedict -- Closes an open CrackLib dictionary
crack_getlastmessage -- Returns the message from the last obscure check
crack_opendict -- Opens a new CrackLib dictionary
User Contributed Notes
Crack functions
add a note about notes

05-Apr-2002 05:01

If you set a "crack.default_dictionary" value in your php.ini
file, you don't need to call the "crack_opendict" and
"crack_closedict" functions.

Example php.ini entry:

[Crack]
crack.default_dictionary = "/usr/local/lib/pw_dict"

Enables this:

<?php
// Perform password check
$check = crack_check('Twawt-Alv2');

// Retrieve messages
$diag = crack_getlastmessage();
echo $diag; // 'strong password'
?>

----------------------
Check out validateEmail.php 2.0

slayoo(at)staszic(dot)waw(dot)pl
14-May-2002 10:36

Following the source of Cracklib 2.7 possible return strings are:
- it is based on a dictionary word
- it is based on a (reversed) dictionary word
- it's WAY too short
- it is too short
- it does not contain enough DIFFERENT characters
- it is all whitespace
- it is too simplistic/systematic
- it looks like a National Insurance number
It may be useful for example in localization of your scripts...

add a note about notes
previouscpdf_translatecrack_checknext
Last updated: Tue, 16 Jul 2002
show source | credits | stats | mirror sites:  
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by:
Last updated: Fri Jul 26 12:06:26 2002 CEST