I have python code that starts new process with code:
process = subprocess.Popen(["python3", "solution.py"])
But code in solution.py can contain opening new processes:
import os
while True: os.fork()
How do I deny permission of subprocess to start new processes?