in reply to hidden functionality
Your $_ is first uudecoded and then packed from hex.print; print "\n>>>>\n"; print eval $_; print "\n>>>>\n";
A hex string converted to plain text. Why not using pack then?my$c;$_="7072696e7420224a75737420616e6f74686572205065726c206861636b657 +25c6e223b"; while(m((..))sg){$c.=chr hex$1;}return$c;
Anyway, the hex string contains the plainreturn pack "H*", $_;
|
|---|