BugTraq
Back to list
Name:
Email:
*Note: Email address will appear as "user domain ext" to prevent harvesting.
Subject:
Message:
minor apache htpasswd problem
Sep 25 2003 08:25PM
Andreas Steinmetz (ast domdv de)
This is valid for the htpasswd utility of at least apache 1.3.27 and 1.3.28:
The salt used for password generation solely depends on the current
system time:
(void) srand((int) time((time_t *) NULL));
ap_to64(&salt[0], rand(), 8);
This causes all passwords generated within the same second to hav...
[ more ]
Privacy Statement
Copyright 2010, SecurityFocus
The salt used for password generation solely depends on the current
system time:
(void) srand((int) time((time_t *) NULL));
ap_to64(&salt[0], rand(), 8);
This causes all passwords generated within the same second to hav...
[ more ]