Executables out of perl script?

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default Executables out of perl script?

    Hello,

    I need to generate an executable out of my perl script. Please let me know
    if there is any method by which the same can be implemented.

    Preabmble for the requirement:
    Some security cheks need to be done along with a lot of text manipulation
    for which Perl was the ideal candidate.
    But if the script is distributed, the safety checks can be easily removed by
    the user by commenting the calling perl code.
    Inorder to retain the safety checks, i must convert the perl script to some
    non readable format (how about executable?) so that it can not be tampered.

    Hope I will get the required information soon.

    Regards,
    Ajith


    Mail to: [email]Ajith.A@In.Bosch.com[/email]


    Ajith Guest

  2. Similar Questions and Discussions

    1. RFC on first perl script
      Hi all well im trying at lerning this perl stuff.. reading from the "learning perl" oreilly book and a few other places, but also using perl a...
    2. Control a non-perl image viewer from perl script
      Below is a (non-finished) script that trys to run a linux viewer called eog (eye of gnome) in a script that will eventually allow me to power thru...
    3. Executables in PHP
      Hi, I want to execute shell command in php. I tried successfully the following: <?php $output = `ls -al`; echo "<pre>$output</pre>"; ?>
    4. Help with Perl Script
      Any help on this would be great since its a free script there is no support. I have a website on a win2k server running MSFP 2002 extensions. The...
    5. Execute shell script from a perl script
      Hi, How can I executed a Unix shell script from a Perl script. The shell script is a dump of a oracle table to a file. The perl script is for...
  3. #2

    Default Executables out of perl script?

    Hello,

    I need to generate an executable out of my perl script. Please let me know
    if there is any method by which the same can be implemented.

    Preabmble for the requirement:
    Some security cheks need to be done along with a lot of text manipulation
    for which Perl was the ideal candidate.
    But if the script is distributed, the safety checks can be easily removed by
    the user by commenting the calling perl code.
    Inorder to retain the safety checks, i must convert the perl script to some
    non readable format (how about executable?) so that it can not be tampered.

    Hope I will get the required information soon.

    Regards,
    Ajith


    Mail to: [email]Ajith.A@In.Bosch.com[/email]


    Ajith Guest

  4. #3

    Default Executables out of perl script?

    Hello,

    I need to generate an executable out of my perl script. Please let me know
    if there is any method by which the same can be implemented.

    Preabmble for the requirement:
    Some security cheks need to be done along with a lot of text manipulation
    for which Perl was the ideal candidate.
    But if the script is distributed, the safety checks can be easily removed by
    the user by commenting the calling perl code.
    Inorder to retain the safety checks, i must convert the perl script to some
    non readable format (how about executable?) so that it can not be tampered.

    Hope I will get the required information soon.

    Regards,
    Ajith


    Mail to: [email]Ajith.A@In.Bosch.com[/email]



    Ajith Guest

  5. #4

    Default Re: Executables out of perl script?


    "Ajith" <Ajith.A@In.bosch.com> wrote in message
    news:e27rul$b5n$1@ns2.fe.internet.bosch.com...
    > Hello,
    >
    > I need to generate an executable out of my perl script. Please let me know
    > if there is any method by which the same can be implemented.
    >
    You can use PAR's 'pp' utility. The PAR module is available from CPAN.

    Cheers,
    Rob


    Sisyphus Guest

  6. #5

    Default Re: Executables out of perl script?

    Ajith wrote:
    > Hello,
    >
    > I need to generate an executable out of my perl script. Please let me
    > know if there is any method by which the same can be implemented.
    >
    > Preabmble for the requirement:
    > Some security cheks need to be done along with a lot of text
    > manipulation for which Perl was the ideal candidate.
    > But if the script is distributed, the safety checks can be easily
    > removed by the user by commenting the calling perl code.
    Yes, we heard you the first time already.

    See "perldoc -q hide"

    jue


    Jürgen Exner Guest

  7. #6

    Default Re: Executables out of perl script?

    "Ajith" <Ajith.A@In.bosch.com> wrote in message
    news:e27rul$b5n$1@ns2.fe.internet.bosch.com...
    > Hello,
    >
    > I need to generate an executable out of my perl script. Please let me know
    > if there is any method by which the same can be implemented.
    >
    [snip]

    Ajith, I have been using PerlApp from ActiveState - its part of the Perl
    Development Kit that they have ([url]http://www.activestate.com/pdk[/url]). It is a
    commercial product and I have been very happy with it.

    Allan


    AC Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139