Leser: 23
net use $UNCpath passw /user:qwertz
system net use $UNCpath $cryptpass /user:qwertz
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#!/usr/bin/perl use strict; use warnings; my $pass="DasIstNur1Test"; my $crypt; srand(1234); $crypt.=chr(ord($_)^int(rand(10))) for(split('',$pass)); print "$pass=>$crypt\n"; $pass=''; srand(1234); $pass.=chr(ord($_)^int(rand(10))) for(split('',$crypt)); print "$crypt=>$pass\n";
Guest dADOOk, dann wäre das Ziel, dass ich es auf jeden Fall nicht im Klartext in einer Datei liegen habe.