<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: Times New Roman; font-size: 12pt; color: #000000'>the user passwd is encoded and crypted in md5 and base64 so it is not possible to recover the original password (as this encoding is one way only)<br>Thus we've got to create a new password, for example I use ipython in linux this way:<br><br>cilma@wifidog-pruebas:~$ ipython<br>Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41) <br>Type "copyright", "credits" or "license" for more information.<br>IPython 0.9.1 -- An enhanced Interactive Python.<br>In [1]: import hashlib;<br>In [2]: import base64;<br>In [3]: base64.b64encode(hashlib.md5('<span style="color: rgb(255, 0, 0);">new_password</span>').digest())<br>Out[3]: 'Swkgyj75Sxeclhnjf1Wn5Q=='<br><br>As in the 3th line we passed the new password and received the hash key, we can now update that field in the database for the current user at the users table.<br><br>cilma@wifidog-pruebas:~$<strong> psql -U cilma -d wifidog</strong><br>Bienvenido a psql 8.3.8, la terminal interactiva de PostgreSQL.<br>wifidog=# update users set pass='4AzyWtQmg7PfZ4xh9Cxr2g==' where username = 'admin';<br>UPDATE 1<span style="font-weight: bold;"></span><br></div></body></html>