Actions
Bug #31407
closedTask #49162: Rewrite install tool
Admin user creation function uses hardcoded md5() for password
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Install Tool
Target version:
-
Start date:
2011-10-30
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
4.6
PHP Version:
Tags:
Complexity:
medium
Is Regression:
Sprint Focus:
Description
The Install Tool function for creating an admin user uses hardcoded md5() for the associated password.
This does not work together with rsaauth/saltedpasswords.
typo3/sysext/install/mod/tx_install.php, line 6082:
$insertFields = array( 'username' => $username, 'password' => md5($pass), 'admin' => 1, 'uc' => '', 'fileoper_perms' => 0, 'tstamp' => $GLOBALS['EXEC_TIME'], 'crdate' => $GLOBALS['EXEC_TIME'] );
Updated by Xavier Perseguers about 13 years ago
- Target version changed from 4.6.1 to 4.6.2
Updated by Mario Rimann about 13 years ago
What's the proposed change to get this solved?
Updated by Markus Klein about 13 years ago
I guess we need to access saltedpasswords somehow.
Updated by Gerrit Code Review over 11 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/22676
Updated by Gerrit Code Review over 11 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/22676
Updated by Wouter Wolters over 11 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset d7ad41f5c6760aa7751bff7016b98b4e069c0f11.
Actions