user2850992
user2850992

Reputation: 1

Is there any way to decrypt perl script?

I wants to decrypt perl script which I have. So is there any online tool available who can do this? I wants any such tool which can do this.

Thank you...

Upvotes: 0

Views: 658

Answers (2)

Dave Sherohman
Dave Sherohman

Reputation: 46187

We can't tell you how to decrypt the code without additional information, but, yes, if you can run it, then you can decrypt it. If you didn't have the means to decrypt it, then the Perl interpreter wouldn't be able to parse or execute it.

Upvotes: 1

mpapec
mpapec

Reputation: 50647

You can try with,

perl -MO=Deparse script.pl

Upvotes: 3

Related Questions