in reply to bleach question

Replace the visible line of code with:

$_=<<''; tr/\r\n//d; $_=pack'b*',$_; print;

Then it'll print out the obfuscated code instead of executing it.

Replies are listed 'Best First'.
Re^2: bleach question
by roadtest (Sexton) on Sep 25, 2014 at 22:04 UTC
    Thank you very much no_slogan! You hit the nail right in the head. So this is a packed script, when run pack function twice , it will revert back to regular ascii code. Really appreciate your suggestions!! Cheers!