Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: decompile perl2exe

by tachyon (Chancellor)
on Feb 07, 2005 at 05:29 UTC ( [id://428572]=note: print w/replies, xml ) Need Help??


in reply to decompile perl2exe

Try this (assuming *nix as OS):

$ mv /usr/bin/perl /usr/bin/perl.real $ cat > /usr/bin/perl #!/bin/sh PROG=$1 /usr/bin/perl.real -MO=Deparse $PROG ^D $ chmod 755 /usr/bin/perl

$ is prompt. Ctrl+D to finish entering your perl substitute shell script.

Try running your exe and it should/may (untested) spew source.

$ some.exe > source.txt 2>&1
Reverse changes with:
$ rm -f /usr/bin/perl $ mv /usr/bin/perl.real /usr/bin/perl

All care, no responsibility.

cheers

tachyon

Replies are listed 'Best First'.
Re^2: decompile perl2exe
by Anonymous Monk on Feb 07, 2005 at 09:33 UTC
    Thank you.

    Any chance you can give the translation to windows in this.

    Got no xp with unix/linux.......

    Jahwik

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://428572]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-04-18 08:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found