Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Practicing Obfuscation CODE

by cchampion (Curate)
on Jun 08, 2004 at 17:04 UTC ( [id://362436]=note: print w/replies, xml ) Need Help??


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
    Your code is not equivalent to his though. You're missing the logic that makes sure all picked numbers are unique. Try changing the 90 to 10, it shouldn't take more than a few tries to get dupes with your code. Something like the below would work (though not very obfuscated):

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://362436]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (5)
As of 2024-03-29 11:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found