diff options
author | garga <garga@FreeBSD.org> | 2006-07-11 23:41:19 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2006-07-11 23:41:19 +0800 |
commit | 13383b4cc750e42913e568b820fb22e05f4f7dcd (patch) | |
tree | 24c883fa05f6c2cadb9370a7aed4866c633a55ec /security/pecl-crack | |
parent | eda13dab87f72746069616dd694984dbc61c21fd (diff) | |
download | freebsd-ports-graphics-13383b4cc750e42913e568b820fb22e05f4f7dcd.tar.gz freebsd-ports-graphics-13383b4cc750e42913e568b820fb22e05f4f7dcd.tar.zst freebsd-ports-graphics-13383b4cc750e42913e568b820fb22e05f4f7dcd.zip |
This package provides an interface to the cracklib (libcrack) libraries that
come standard on most unix-like distributions. This allows you to check
passwords against dictionaries of words to ensure some minimal level of
password security.
From the cracklib README
CrackLib makes literally hundreds of tests to determine whether you've
chosen a bad password.
* It tries to generate words from your username and gecos entry to tries
to match them against what you've chosen.
* It checks for simplistic patterns.
* It then tries to reverse-engineer your password into a dictionary
word, and searches for it in your dictionary.
- after all that, it's PROBABLY a safe(-ish) password. 8-)
WWW: http://pecl.php.net/package/crack
PR: ports/94244
Submitted by: Bill Moran <wmoran at collaborativefusion.com>
Diffstat (limited to 'security/pecl-crack')
-rw-r--r-- | security/pecl-crack/Makefile | 27 | ||||
-rw-r--r-- | security/pecl-crack/distinfo | 3 | ||||
-rw-r--r-- | security/pecl-crack/pkg-descr | 20 | ||||
-rw-r--r-- | security/pecl-crack/pkg-plist | 4 |
4 files changed, 54 insertions, 0 deletions
diff --git a/security/pecl-crack/Makefile b/security/pecl-crack/Makefile new file mode 100644 index 00000000000..497389ff73b --- /dev/null +++ b/security/pecl-crack/Makefile @@ -0,0 +1,27 @@ +# Ports collection makefile for: pecl-crack +# Date created: 07 March 2006 +# Whom: Bill Moran <wmoran@collaborativefusion.com> +# +# $FreeBSD$ +# + +PORTNAME= crack +PORTVERSION= 0.4.1 +CATEGORIES= security www +MASTER_SITES= http://www.osuweb.net/~ahaning/ +PKGNAMEPREFIX= pecl- +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PECL + +MAINTAINER= wmoran@collaborativefusion.com +COMMENT= PECL extension to cracklib + +USE_PHP= yes +USE_PHPIZE= yes +USE_PHP_BUILD= yes +USE_PHPEXT= yes +PHP_MODNAME= crack + +WRKSRC= ${WRKDIR}/crack-0.4 + +.include <bsd.port.mk> diff --git a/security/pecl-crack/distinfo b/security/pecl-crack/distinfo new file mode 100644 index 00000000000..89112894334 --- /dev/null +++ b/security/pecl-crack/distinfo @@ -0,0 +1,3 @@ +MD5 (PECL/crack-0.4.1.tgz) = e64224cef6c8181f90cc669dae5dfe17 +SHA256 (PECL/crack-0.4.1.tgz) = d9ba43b3678fb46db0eee659d9e000e9bad682bc7702d33f6d7e293d7f6f08ad +SIZE (PECL/crack-0.4.1.tgz) = 25143 diff --git a/security/pecl-crack/pkg-descr b/security/pecl-crack/pkg-descr new file mode 100644 index 00000000000..0bafd3d442e --- /dev/null +++ b/security/pecl-crack/pkg-descr @@ -0,0 +1,20 @@ +This package provides an interface to the cracklib (libcrack) libraries that +come standard on most unix-like distributions. This allows you to check +passwords against dictionaries of words to ensure some minimal level of +password security. + +From the cracklib README +CrackLib makes literally hundreds of tests to determine whether you've +chosen a bad password. + +* It tries to generate words from your username and gecos entry to tries +to match them against what you've chosen. + +* It checks for simplistic patterns. + +* It then tries to reverse-engineer your password into a dictionary +word, and searches for it in your dictionary. + +- after all that, it's PROBABLY a safe(-ish) password. 8-) + +WWW: http://pecl.php.net/package/crack diff --git a/security/pecl-crack/pkg-plist b/security/pecl-crack/pkg-plist new file mode 100644 index 00000000000..f90c25ba85b --- /dev/null +++ b/security/pecl-crack/pkg-plist @@ -0,0 +1,4 @@ +include/php/ext/crack +include/php/ext/crack/config.h +include/php/ext/crack/php_crack.h +lib/php/20050922/crack.so |