Google kernel to run executables

Can I run executable files in the Google engine? How using Runtime.exec?

The documentation for the Google engine has a whitelist that lists the classes that you can use, but the functions / within the classes are not specified.

+4
source share
2 answers

No, absolutely not.

+7
source

The only thing that makes AppEngine possible is that both the Python environment and the Java environment are controlled by Google, therefore minimizing performance / scalability and security. They don’t even allow you to use all the standard Java / Python classes, so imagine the problems that may arise if they allow people to run any executable file. Perhaps even a virus!

+4
source

Source: https://habr.com/ru/post/1299615/


All Articles