The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:Data::Password"

Data::Password - Perl extension for assessing password quality. River stage one • 1 direct dependent • 1 total dependent

This module checks potential passwords for crackability. It checks that the password is in the appropriate length, that it has enough character groups, that it does not contain the same characters repeatedly or ascending or descending characters, or ...

RAZINF/Data-Password-1.12 - 16 Jan 2015 21:23:13 UTC

Data::Password::Check - sanity check passwords River stage zero No dependents

Users can be lazy. If you're a perl programmer this is a good thing. If you're choosing a password this is a bad thing. This module performs some sanity checks on passwords. Details on checks than can be performed are described below....

CHISEL/Data-Password-Check-0.08 - 12 Jul 2007 10:22:26 UTC

Data::Password::Meter - Check the strength of passwords River stage zero No dependents

Check the strength of a password. The scoring is based on Passwordmeter <http://www.geekwisdom.com/js/passwordmeter.js> by Steve Moitozo....

AKRON/Data-Password-Meter-0.10 - 07 Feb 2021 15:49:28 UTC

Data::Password::zxcvbn - Dropbox's password estimation logic River stage one • 2 direct dependents • 2 total dependents

This is a Perl port of Dropbox's password strength estimation library, "zxcvbn" <https://github.com/dropbox/zxcvbn>. The code layout has been reworked to be generally nicer (e.g. we use classes instead of dispatch tables, all data structures are immu...

DAKKAR/Data-Password-zxcvbn-1.1.2 - 04 Apr 2023 14:52:12 UTC

Data::Password::Filter - Interface to the password filter. River stage zero No dependents

The module is a simple attempt to convert an article written by Christopher Frenz on the topic "The Development of a Perl-based Password Complexity Filter".However I took the liberty to add my flavour on top of it. <http://perl.sys-con.com/node/19116...

MANWAR/Data-Password-Filter-0.18 - 24 Oct 2018 04:57:13 UTC

Data::Password::Simple River stage one • 1 direct dependent • 1 total dependent

ABABLABAB/Data-Password-Simple-0.05 - 01 Feb 2013 01:23:41 UTC

Data::Password::Common - Check a password against a list of common passwords River stage zero No dependents

This module installs a list of over 557,000 common passwords and provides a function to check a string against the list. The password list is taken from InfoSecDaily at <http://www.isdpodcast.com/resources/62k-common-passwords/>. (They claim their li...

DAGOLDEN/Data-Password-Common-0.004 - 04 Nov 2013 18:29:30 UTC

Data::Password::Manager - generate, check, manage crypt - des passwords River stage one • 1 direct dependent • 1 total dependent

* $password = pw_gen($cleartext); Generate a 13 character DES password string from clear text input: string <= 128 characters output: password POD ERRORS Hey! The above document had some coding errors, which are explained below: Around line 3: =over ...

MIKER/Data-Password-Manager-0.05 - 27 Jan 2014 21:07:30 UTC

Data::Password::Entropy - Calculate password strength River stage one • 1 direct dependent • 5 total dependents

Information entropy, also known as *password quality* or *password strength* when used in a discussion of the information security, is a measure of a password in resisting brute-force attacks. There are a lot of different ways to determine a password...

ZERO/Data-Password-Entropy-0.08 - 21 Nov 2013 17:01:34 UTC

Data::Password::passwdqc - Check password strength and generate password using passwdqc River stage zero No dependents

Data::Password::passwdqc provides an object oriented Perl interface to Openwall Project's passwdqc. It allows you to check password strength and also lets you generate quality controllable random password....

SHERWIN/Data-Password-passwdqc-0.09 - 05 Aug 2017 02:29:30 UTC

Data::Password::Top10000 - Check if a given string is in the Top 10000 list of common passwords River stage zero No dependents

At <https://github.com/danielmiessler/SecLists> a "security tester's companion" is curated. Part of this companion is a list of the Top 10000 used passwords. It is good practice to disallow users to use those passwords....

PERLSRVDE/Data-Password-Top10000-1.0.1 - 13 Mar 2022 06:46:29 UTC

Data::Password::BasicCheck - Basic password checking River stage zero No dependents

Data::Password::BasicCheck objects will do the following checks on the given passwords: * password length is in a defined range that is estabilished at object creation; * there are at least pL symbols in password, where L is password length and p is ...

BRONTO/Data-Password-BasicCheck-2.03 - 23 Apr 2013 09:24:11 UTC

Data::Password::zxcvbn::Match - role for match objects River stage one • 2 direct dependents • 2 total dependents

zxcvbn estimates the strength of a password by guessing which way a generic password cracker would produce it, and then guessing after how many tries it would produce it. This role provides the basic behaviour and interface for the classes that imple...

DAKKAR/Data-Password-zxcvbn-1.1.2 - 04 Apr 2023 14:52:12 UTC

Data::MuForm::Field::Password - password field River stage one • 3 direct dependents • 3 total dependents

The password field has a default minimum length of 6, which can be easily changed: has_field 'password' => ( type => 'Password', minlength => 7 ); It does not come with additional default checks, since password requirements vary so widely. There are ...

GSHANK/Data-MuForm-0.05 - 02 Jul 2018 20:31:54 UTC

Data::Password::zxcvbn::French - Dropbox's password estimation logic, with French defaults River stage zero No dependents

This is a variant of "Data::Password::zxcvbn" with French data. See that distribution for all the documentation....

DAKKAR/Data-Password-zxcvbn-French-1.0.2 - 04 Apr 2023 14:53:38 UTC

Data::Password::Filter::Params - Placeholder for parameters for Data::Password::Filter. River stage zero No dependents

FOR INTERNAL USE ONLY...

MANWAR/Data-Password-Filter-0.18 - 24 Oct 2018 04:57:13 UTC

Data::Password::zxcvbn::German - Dropbox's password estimation logic, with German defaults River stage zero No dependents

This is a variant of "Data::Password::zxcvbn" with German data. See that distribution for all the documentation....

DAKKAR/Data-Password-zxcvbn-German-1.0.2 - 04 Apr 2023 14:55:44 UTC

Data::Password::Check::JPassword - Check a password's strength River stage zero No dependents

This module implements the jPassword strength algorythim in pure Perl. The algorythim is pretty simple: * Leading and trailing spaces are stripped way; * Each character is placed in one of 5 categories: uppercase (A-Z), lowercase (a-z), numbers (0-9)...

GWYN/Data-Password-Check-JPassword-0.02 - 03 Sep 2013 18:41:41 UTC

Data::Password::zxcvbn::MatchList - a collection of matches for a password River stage one • 2 direct dependents • 2 total dependents

zxcvbn estimates the strength of a password by guessing which way a generic password cracker would produce it, and then guessing after how many tries it would produce it. This class represents a list of guesses ("matches"), covering different substri...

DAKKAR/Data-Password-zxcvbn-1.1.2 - 04 Apr 2023 14:52:12 UTC

Data::Password::zxcvbn::AuthorTools - collection of tools to simplify building zxcvbn distributions River stage zero No dependents

This distribution is only useful if you want to *maintain* "Data::Password::zxcvbn" or a distribution with language-specific (or domain-specific) data files (e.g. "Data::Password::zxcvbn::French"). Tools included: "Dist::Zilla::MintingProfile::zxcvbn...

DAKKAR/Data-Password-zxcvbn-AuthorTools-1.0.2 - 04 Apr 2023 09:41:46 UTC
130 results (0.057 seconds)