Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Find 'clear' PPP modem passwords in System Profiler' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Find 'clear' PPP modem passwords in System Profiler
Authored by: dkulp on Jan 25, '06 08:00:19PM
Perfect timing! I was just searching for this. Here's the obvious hex decoder in perl:

$x = '<hex password from System Profiler>'
$x =~ s/ //g;
$x =~ s/(....)/chr(hex($1))/ge;
print $x


[ Reply to This | # ]