atopolc has asked for the wisdom of the Perl Monks concerning the following question:
I am currently using PAR to create an executable that I can deliver to users who don't have perl installed on their machines. The exe has to connect to a database and must contain a password so I thought it would be a good idea to filter the code rather than keep it in plain view. Below is the command I am using to get PAR to filter the code.
pp -f Bleach -o out.exe out.pl
Because the executable is a self extracting zip archive I can open up the contents and take a look with a package like winzip.
To my surprise
There are two versions of the original perl script within the archive. The first is located at
script/
and is filtered. The other copy is located at
lib/
and is in plain text.
Does anyone know how to get both copies to filter?
pp -f Bleach -o out.exe out.pl
Because the executable is a self extracting zip archive I can open up the contents and take a look with a package like winzip.
To my surprise
There are two versions of the original perl script within the archive. The first is located at
script/
and is filtered. The other copy is located at
lib/
and is in plain text.
Does anyone know how to get both copies to filter?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: PAR only filters one of two copies of the script to be placed in the executable
by erroneousBollock (Curate) on Nov 02, 2007 at 17:41 UTC | |
by atopolc (Pilgrim) on Nov 05, 2007 at 16:20 UTC | |
Re: PAR only filters one of two copies of the script to be placed in the executable
by Anonymous Monk on Nov 03, 2007 at 10:27 UTC | |
by atopolc (Pilgrim) on Nov 05, 2007 at 16:15 UTC |
Back to
Seekers of Perl Wisdom