Password Reuse

Does CS-Cart 4.x have any mechanism to prevent admin password reuse? I need to limit this per PCI:


Yes, this feature exists in CS-Cart. Please check the fn_update_user function in the app/functions/fn.users.php file





....
// PCI DSS Compliance
if (fn_check_user_type_admin_area($user_data['user_type'])) {
....
// Check last 4 passwords
if (!empty($user_id)) {
....

hi grayloon,



such a feature is not available in default CS-Cart and customization is needed so if you are interested in it, please don't hesitate to contact us.

p.s. checked for cs-cart 4.2.x



best regards,

WSA team

[quote name='eComLabs' timestamp='1437639716' post='224047']Yes, this feature exists in CS-Cart. Please check the fn_update_user function in the app/functions/fn.users.php file.[/quote]



That's what I was looking for. Thank you.

You are welcome!