Exe for perl script

Hi, how to create an exe out of a perl script.Even if it is possible how secure is it? Are there other softwares to decryprt a perl exe and get the source code out of it ?

google "perl to exe". No it will not be secure to a determined hacker.

Thanks a lot for ur reply.K i understand tat its not secure to a determined hacker.But wat i really want to know is tat when we compare with exe created for a VB script is it easy to hack a exe created for perl script ???

Depends on how easy it is to "hack" an VB executable vs. a compiled C program, since the latter it the output of perlcc.

A better question might be: what are you trying to do:

  1. security - like a SOX requirement e.g., providing a total black box to users.
  2. intellectual property protection

intellectual property protection actually. My question is very simple.If i make an exe out of my perl script will anyone can get the source code out of it.If it is possible how easy it is when compared to getting the source code out of an exe created from a C program or VB script exe.

It's the same, in the end all three are compiled into assembler code.

ok.Thank you pludi