PHP Classes

login typo3

Recommend this page to a friend!

      PHP HTTP protocol client  >  All threads  >  login typo3  >  (Un) Subscribe thread alerts  
Subject:login typo3
Summary:I am trying to login at the typo3 admin
Messages:11
Author:Karl Masche
Date:2007-07-21 21:58:03
Update:2007-07-24 14:36:50
 
  1 - 10   11 - 11  

  11. Re: login typo3   Reply   Report abuse  
Picture of Karl Masche Karl Masche - 2007-07-24 14:36:50 - In reply to message 10 from Manuel Lemos
Its not found in the md5.js (doChallengeResponse). I am looking now in init.php and template.php. I guess it will be in some of the included files I will see in init.php. In this file are included some php classes and I guess somewhere is the java script.

I guess I found it:

function doChallengeResponse(superchallenged) { //
password = document.loginform.p_field.value;
if (password) {
if (superchallenged) {
password = MD5(password); // this makes it superchallenged!!
}
str = document.loginform.username.value+":"+password+":"+document.loginform.challenge.value;
document.loginform.userident.value = MD5(str);
document.loginform.p_field.value = "";
return true;
}
}

 
  1 - 10   11 - 11