Seite 1 von 1

what CMS user pass encryption system is used in we_tblUser?

Verfasst: Di 11. Mai 2010, 11:01
von normaweb-thomas
Hello,

we have developped a 2 environments platforms, one being webEdition, and a second platform that we would link on with the 1st one.

We would like to base our plateform #2 login screen with the users access database with have on webEdition.

We're currently blocked because we can't find how to retrieve the users passwords (can't find how they are encrypted in the database), especially on the table "we_tblUser"


Thanks for your help

Re: what CMS user pass encryption system is used in we_tblUs

Verfasst: Di 25. Mai 2010, 16:05
von MarS
The password in tblUser is an md5-hash, build from password and the (also md5-)hashed username:

Code: Alles auswählen

$salted = md5($_POST["password"] . md5($_POST["username"]));