php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #11817 segfault in mhash_keygen_s2k()
Submitted: 2001-07-01 02:35 UTC Modified: 2001-07-01 07:19 UTC
From: graeme at inetix dot com dot au Assigned:
Status: Closed Package: mhash related
PHP Version: 4.0 Latest CVS (2001-07-01) OS: Linux i386
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: graeme at inetix dot com dot au
New email:
PHP Version: OS:

 

 [2001-07-01 02:35 UTC] graeme at inetix dot com dot au
According to the PHP docs, the salt parameter hasa fixed length of 8 bytes. Using lengths over 8 bytes causes a segfault in Apache. 
PHP compiled as a DSO, mhash-0.8.9 compiled statically into PHP.

Sample scripts.
This does not segfault.
$salt = "oksalt";
$password = "cthulu";
$hash = mhash_keygen_s2k(MHASH_MD5, $password, $salt, 16);

This does.
$salt = "a longer bad salt";
$password = "cthulu";
$hash = mhash_keygen_s2k(MHASH_MD5, $password, $salt, 16);

Backtrace:
Program received signal SIGSEGV, Segmentation fault.
0x4022682b in php_if_mhash_keygen_s2k (ht=4, return_value=0x812263c,
    this_ptr=0x0, return_value_used=1) at mhash.c:245
245             hashid = Z_LVAL_PP(hash);
(gdb) bt
#0  0x4022682b in php_if_mhash_keygen_s2k (ht=4, return_value=0x812263c,
    this_ptr=0x0, return_value_used=1) at mhash.c:245
#1  0x401f7969 in execute (op_array=0x811bab4) at ./zend_execute.c:1504
#2  0x4020617e in zend_execute_scripts (type=8, file_count=3) at zend.c:750
#3  0x402182b4 in php_execute_script (primary_file=0xbffffa88) at main.c:1265
#4  0x4021495f in apache_php_module_main (r=0x811995c, display_source_mode=0)
    at sapi_apache.c:90
#5  0x4021533e in send_php (r=0x811995c, display_source_mode=0, filename=0x0)
    at mod_php4.c:581
#6  0x4021537a in send_parsed_php (r=0x811995c) at mod_php4.c:594
#7  0x8054929 in ap_invoke_handler ()
#8  0x80691cf in process_request_internal ()
#9  0x8069236 in ap_process_request ()
#10 0x80601b6 in child_main ()
#11 0x8060371 in make_child ()
#12 0x80604ec in startup_children ()
#13 0x8060b5c in standalone_main ()
#14 0x806138c in main ()
#15 0x4008c38b in __libc_start_main () from /lib/libc.so.6

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-07-01 07:19 UTC] sas@php.net
This has been fixed in the CVS. Thanks for your report.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 12:01:30 2024 UTC