You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we use sun.security.provider package from sun.security module at the org.utbot.instrumentation.process.SecurityKt#sandbox(java.net.URI, kotlin.jvm.functions.Function0<? extends T>).
Judging by official Oracle documentation there can be multiple providers for security modules. sun.security is not listed in standard modules list so there might exist JDK without that module, so that UTBotJava would not be able to run using it.
Although there are no knowledge about which JDK is it, it's highly advised to rewrite sandbox without using unlisted internal Oracle modules.
The text was updated successfully, but these errors were encountered:
Description
Currently we use
sun.security.provider
package fromsun.security
module at theorg.utbot.instrumentation.process.SecurityKt#sandbox(java.net.URI, kotlin.jvm.functions.Function0<? extends T>)
.Judging by official Oracle documentation there can be multiple providers for security modules.
sun.security
is not listed in standard modules list so there might exist JDK without that module, so that UTBotJava would not be able to run using it.Although there are no knowledge about which JDK is it, it's highly advised to rewrite sandbox without using unlisted internal Oracle modules.
The text was updated successfully, but these errors were encountered: