in reply to Practicing Obfuscation CODE
Easy SPOILER
perl -pe 's/eval/print/' tucano_obfu.pl | perl | perltidy
And here is the real code:
srand; my @c = ( 1 .. 90 ); my $i = 0; while ( $i < 5 ) { my $e = int( rand( $#c - $i ) ); my $u = $#c - $i; ( $c[$e], $c[$u] ) = ( $c[$u], $c[$e] ); print " $c[$u]\n"; $i++; }
All of the above could be easily replaced by
srand;@_=1..90;print$_[rand($#_-$_)],$/for+1..5;
(That's something for the OP to think about.) :-P
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Practicing Obfuscation CODE
by Crackers2 (Parson) on Jun 14, 2004 at 06:52 UTC |