maol

musings and one liners

Jabber Passwort von PSI

How to recover your jabber password from PSI

  1. config.xml suchen
  2. Die <jid> und <password> Strings aus der <account> Gruppe raussuchen
  3. Das Passwort als 16bit Unicode interpretieren und mit der jid XORen

Wenn Du nur ASCII-Buchstaben im Passwort hast, funktioniert es mit diesem Befehl:

perl -le '($jid,$pw)=@ARGV;$pw=~s/..(..)/chr hex$1/ge; \
print substr($pw^$jid,0,length$pw)' \
<jid> <password>


Posted

in

by

Comments

2 responses to “Jabber Passwort von PSI”

  1. Kraymer Avatar
    Kraymer

    Danke, das hat mich gerettet 🙂

  2. maol Avatar

    Das hat es mich damals eben auch, und deshalb habe ich es dann für Dich (und andere) online gestellt.