HHIDE_DUMP
Гость
H
HHIDE_DUMP
Гость
1. Достаем инфу.
В Windows:
Путь: C:\Users\admin\AppData\Roaming\Psi+\profiles\default\accounts.xml
В Linux:
Папка в которой вы создавали скрипт. /Psi+Linux/Psi+/profiles/default/accounts.xml
2. Ищем там ваш JID от которого забыли пароль, и сам пaроль в зашифрованном виде. Вот отрывок текста:
Код:
<password type="QString">0020000000000071005e0059005a00100029</password>
<host type="QString">jabber.systemli.org</host>
<stun-host type="QString">stun.jabber.ru:5249</stun-host>
<ssl type="QString">auto</ssl>
<name type="QString">Ens</name>
<jid type="QString">[email protected]</jid>
3. Создаем файл с раcширением .html и пишем в него код:
Код:
<html><head><script>
function decodePassword(pass, key){
var result ="";
var n1, n2;
if(key.length ==0)
return pass;
for(n1 =0, n2 =0; n1 < pass.length; n1 +=4){
if(n1 +4> pass.length)
break;
result +=String.fromCharCode(Number("0x"+pass.substr(n1,4))^ key.charCodeAt(n2++));
if(n2 >= key.length)
n2 =0;
}
return result;}function escapeHtml(html){
return html.split("&").join("&").split("<").join("<").split(">").join(">");}function tryDecode(){
var pass
try{
pass = decodePassword(document.getElementById("encoded").value, document.getElementById("jid").value);
}catch(e){
pass ="Encode failed: "+ e
}
document.getElementById("result").innerHTML = escapeHtml(pass);}
</script></head><body>
<table><tr><td>JID: </td><td><input id='jid'/></td></tr><tr><td>Encoded password: </td><td><input id='encoded'/></td></tr><tr><td>Result: </td><td id='result'></td></tr><tr><td colspan='2'style='text-align:right'><input type='button'value="decode"onclick="tryDecode()"/></td></tr></table>
</body></html>
4. Открываем в браузере файл, в нем пишем JID: [email protected], Encoded password: 0020000000000071005e0059005a00100029
5. Жмем кнопку Decode. Получаем расшифрованный пароль
Удачи!
В Windows:
Путь: C:\Users\admin\AppData\Roaming\Psi+\profiles\default\accounts.xml
В Linux:
Папка в которой вы создавали скрипт. /Psi+Linux/Psi+/profiles/default/accounts.xml
2. Ищем там ваш JID от которого забыли пароль, и сам пaроль в зашифрованном виде. Вот отрывок текста:
Код:
<password type="QString">0020000000000071005e0059005a00100029</password>
<host type="QString">jabber.systemli.org</host>
<stun-host type="QString">stun.jabber.ru:5249</stun-host>
<ssl type="QString">auto</ssl>
<name type="QString">Ens</name>
<jid type="QString">[email protected]</jid>
3. Создаем файл с раcширением .html и пишем в него код:
Код:
<html><head><script>
function decodePassword(pass, key){
var result ="";
var n1, n2;
if(key.length ==0)
return pass;
for(n1 =0, n2 =0; n1 < pass.length; n1 +=4){
if(n1 +4> pass.length)
break;
result +=String.fromCharCode(Number("0x"+pass.substr(n1,4))^ key.charCodeAt(n2++));
if(n2 >= key.length)
n2 =0;
}
return result;}function escapeHtml(html){
return html.split("&").join("&").split("<").join("<").split(">").join(">");}function tryDecode(){
var pass
try{
pass = decodePassword(document.getElementById("encoded").value, document.getElementById("jid").value);
}catch(e){
pass ="Encode failed: "+ e
}
document.getElementById("result").innerHTML = escapeHtml(pass);}
</script></head><body>
<table><tr><td>JID: </td><td><input id='jid'/></td></tr><tr><td>Encoded password: </td><td><input id='encoded'/></td></tr><tr><td>Result: </td><td id='result'></td></tr><tr><td colspan='2'style='text-align:right'><input type='button'value="decode"onclick="tryDecode()"/></td></tr></table>
</body></html>
4. Открываем в браузере файл, в нем пишем JID: [email protected], Encoded password: 0020000000000071005e0059005a00100029
5. Жмем кнопку Decode. Получаем расшифрованный пароль
Удачи!