server1:/opt/IBM/HTTPServer/SSL # cat unstash.pl
#!/usr/bin/perl -w
#for help mail to getwashelp@gmail.com
use strict;
die "Usage: $0
my $file=$ARGV[0];
open(F,$file) || die "Can't open $file: $!";
my $stash;
read F,$stash,1024;
my @unstash=map { $_^0xf5 } unpack("C*",$stash);
foreach my $c (@unstash) {
last if $c eq 0;
printf "%c",$c;
}
printf "\n";
server1:/opt/IBM/HTTPServer/SSL # ./unstash.pl key.sth
passw0rd
2 comments:
Thank You so much Silva!
Thank you so much, this script saved me !
Post a Comment