I'm working on a piece of code in which at some point I have to execute python bytecode, with exec
python builtin.
However the bytecode I have to execute is containing some nullbytes, preventing from being executed.
Is there any way to change this ? For exemple adding an additionnal encoding that would remove raw null bytes but still allowing to be executed as bytecode ?