crash when IV is not set
| Bug #21039 | crash when IV is not set | ||||
|---|---|---|---|---|---|
| Submitted: | 2002-12-16 02:27 UTC | Modified: | 2002-12-16 03:09 UTC | ||
| From: | mbretter@php.net | Assigned: | |||
| Status: | Closed | Package: | mcrypt related | ||
| PHP Version: | 4.3.0RC3 | OS: | FreeBSD 4.7 | ||
| Private report: | No | CVE-ID: | None | ||
[2002-12-16 02:27 UTC] mbretter@php.net
I'm running FreeBSD 4.7 with libmcrypt 2.5.3.
There seems to be a bug in libmcrypt, the crash occurs if you call mcrypt_generic(), but without valid IV. Here's a short script:
$td = mcrypt_module_open ('des', '', 'cbc', '');
$iv = mcrypt_create_iv (mcrypt_enc_get_iv_size ($td), MCRYPT_RAND);
mcrypt_generic_init ($td, substr($nthash, 0, 7));
$res = mcrypt_generic ($td, $challenge);
changing:
mcrypt_generic_init ($td, substr($nthash, 0, 7));
to:
mcrypt_generic_init ($td, substr($nthash, 0, 7), $iv);
solves the problem :-)
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2002-12-16 02:44 UTC] iliaa@php.net
[2002-12-16 02:45 UTC] derick@php.net
[2002-12-16 03:09 UTC] derick@php.net