http://www.perlmonks.org?node_id=66657


in reply to Re: Icarus
in thread Icarus

Here it is formated nicly:
*$ = sub{ $a=q;}die;; sub u{ $_; } $= && unpack u => u; }; s[]{82G5S="!A;F]T:&5R(%!E<FP\@:&%C:V5R}six; die &$ => $/;
Boiled down this can be represented by
*$=sub{ unpack "u", $_; }; $_='82G5S="!A;F]T:&5R(%!E<FP@:&%C:V5R'; die &$, $/;
or even a one-liner:
die unpack ("u", '82G5S="!A;F]T:&5R(%!E<FP@:&%C:V5R'), $/;
With this, you should be able to figure out what was done to hide the code.