Typo3 login password hash -
how can build rsa hash of typo3 login in php manually? need create spider script goes every site, , problem therefor have logged in. thought loggin via curl. saw rsa hash of password , don't know how convert password "blablabla" such rsa hash.
can me?
you might find out of auto login extension here: http://typo3.org/extensions/repository/?id=23&l=0&q=auto+login
or debugging tx_rsaauth_sv1::authuser. rsa-decrypt function called there. don't have time dive right now.
another solution login once , save cookies. send cookies curl request.
to make cookies valid longer period, temporarily change backend session time-out setting before logging in. so:
$typo3_conf_vars['be']['sessiontimeout'] = strtotime('+1 year')-time(); you can add/change line in typo3conf/localconf.php (typo3 < 6) or typo3conf/additionalconfiguration.php (typo3 6+).
Comments
Post a Comment