On 11/02/2009 11:25 PM, Eric Balsa wrote:
FYI, the format in records.config for proxy.config.admin.admin_password can be re-created with:#!/usr/bin/php <?php $foo = md5('admin',true); echo strtoupper(substr(bin2hex($foo),0,23)) . "\n"; Looking forward to the one-liner in perl
Better late than never (and I don't even know perl):perl -MDigest::MD5 -le 'print uc(substr(Digest::MD5::md5_hex($ARGV[0]), 0, 23))' your-password
-- Leif