in reply to Re: Code hiding in Perl
in thread Code hiding in Perl
The encryption is done through custom C executable and the execution of encrypted binary code can only be done through another C executable (dummy Perl interpreter) and it does in-memory execution like this.
perl_run(my_perl); eval_pv(buffer, TRUE);
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Code hiding in Perl
by afoken (Chancellor) on Jun 26, 2015 at 09:33 UTC | |
by sumanta (Novice) on Jun 29, 2015 at 06:58 UTC | |
by afoken (Chancellor) on Jun 29, 2015 at 18:48 UTC | |
by Anonymous Monk on Jun 29, 2015 at 07:04 UTC | |
Re^3: Code hiding in Perl
by Corion (Patriarch) on Jun 26, 2015 at 09:22 UTC |
In Section
Seekers of Perl Wisdom