Since you asked ...
SPOILER follows.
Add the following before your triple eval.
print;
print "\n>>>>\n";
print eval $_;
print "\n>>>>\n";
Your $_ is first uudecoded and then packed from hex.
After the first eval you have:
my$c;$_="7072696e7420224a75737420616e6f74686572205065726c206861636b657
+25c6e223b";
while(m((..))sg){$c.=chr hex$1;}return$c;
A hex string converted to plain text.
Why not using pack then?
return pack "H*", $_;
Anyway, the hex string contains the plain
'print "Just another Perl hacker\n"'
Cheers.
cchampion
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|