Comment on Python for FinanceparentComments−_xhok12yHaving struggled hard with the problem of remote Python code execution before, I'm quite interested how you're doing it. Mind sharing?−drpancake12yEssentially you can't sandbox CPython at the interpreter level, it's too introspective (I do it anyway though, just as a first level of defence). You need sandboxing at the OS level.Happy to go into more details by email.
Comments
Having struggled hard with the problem of remote Python code execution before, I'm quite interested how you're doing it. Mind sharing?
Essentially you can't sandbox CPython at the interpreter level, it's too introspective (I do it anyway though, just as a first level of defence). You need sandboxing at the OS level.
Happy to go into more details by email.