in reply to Trouble with PAR & Bleach filter
Any hints or suggestions dear monks? I'm absolutely stumped.Have you tried examining the filtered module? I see stuff like $_=<<'';y;\r\n;;d;$_=pack'b*',$_;eval;$@&&die$@ and that is not going to return a true value. Here's my version of PAR::Filter::Bleach
sub apply { my $ref = $_[1]; $$ref = unpack("b*", $$ref); $$ref =~ tr/01/ \t/; $$ref =~ s/(.{9})/$1\n/g; $$ref = q(local $_=<<'';y;\r\n;;d;$_=pack'b*',$_;$_=eval;$@&&die$@ +;$_;)."\n$$ref\n\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Trouble with PAR & Bleach filter
by tsee (Curate) on Mar 26, 2006 at 19:10 UTC | |
|
Re^2: Trouble with PAR & Bleach filter
by Booger (Pilgrim) on Oct 21, 2004 at 14:40 UTC |