-
Notifications
You must be signed in to change notification settings - Fork 514
Reset Password
George Dawoud edited this page Apr 29, 2017
·
11 revisions
ChurchCRM currently uses SHA256 hash of the plaintext password salted with the ID of the user record. Securing the method of password hashing is discussed in https://github.com/ChurchCRM/CRM/issues/2342
UPDATE `user_usr` SET
`usr_Password` = SHA2(CONCAT("SECRET_PASSWORD", usr_per_ID),256)
, `usr_NeedPasswordChange` = 0
WHERE usr_per_ID = 1
AND usr_UserName = 'Admin';
- Installation Guide ← Start here!
- First Run Setup
- Features Overview
Day-to-day usage of ChurchCRM
- User Documentation
- People Management
- Groups & Events
- Tools
- Finances
Server management & configuration
- User Management
- System Maintenance
- Configuration
- Troubleshooting
- Localization
Contributing to ChurchCRM
- Quick Start
- Testing & CI/CD
- Code & Architecture
- Localization
- Release & Security