in reply to Re^2: clean output from Deobfucation
in thread clean output from Deobfucation

Maybe you want to look at B::Deobfuscate and especially overload::eval, which gives some more avenues of output. By overloading eval, you can replace the eval that must happen somewhere in obfuscated/encoded code with a print command and look at the code to be evaluated.

Replies are listed 'Best First'.
Re^4: clean output from Deobfucation
by Anonymous Monk on Sep 21, 2010 at 08:54 UTC

    Thanks Corion . overload::eval is doing what echo -e is doing in my case.
    it resolves \t to tabs and \n to newlines etc but " @ $ % & are coming as \" \$ \@.
    I used Komodos' remote Debugging and that gives code from the eydrops obfuscated code.

    I think this was the request ! Thanks and cheers !

    Kapil