I’m currently embedding Python in a C / C++ application that evaluates
user-provided scripts.
Obviously, this is terribly unsafe: user-provided scripts can execute arbitrary
malicious actions,
and there’s no good way to sandbox Python in a desktop context.
If I were to replace Python with Guile
Matthew Keeter writes:
> I’m currently embedding Python in a C / C++ application that evaluates
> user-provided scripts.
>
> Obviously, this is terribly unsafe: user-provided scripts can execute
> arbitrary malicious actions,
> and there’s no good way to sandbox Python in a desktop context.
>
>
On Sat, Nov 21, 2015 at 1:35 PM, Matthew Keeter wrote:
> I’m currently embedding Python in a C / C++ application that evaluates
> user-provided scripts.
>
> Obviously, this is terribly unsafe: user-provided scripts can execute
> arbitrary malicious actions,
> and there’s no good way to sandbox P