[FIX] Проверки безопасности в loadModuleFull. + [FIX] finishModules в launchServer.

This commit is contained in:
zaxar163 2019-01-17 19:41:33 +03:00
parent 2d06628a74
commit 470164a80c
No known key found for this signature in database
GPG key ID: E3B309DD3852DE06
3 changed files with 7 additions and 0 deletions

View file

@ -585,6 +585,7 @@ public void run() {
JVMHelper.RUNTIME.addShutdownHook(CommonHelper.newThread(null, false, this::close));
CommonHelper.newThread("Command Thread", true, commandHandler).start();
rebindServerSocket();
modulesManager.finishModules();
}

View file

@ -16,4 +16,9 @@ public ClientModuleManager(LauncherEngine engine) {
public void loadModule(URL jarpath, String classname) {
throw new SecurityException("Custom JAR's load not allowed here");
}
@Override
public void loadModuleFull(URL jarpath) {
throw new SecurityException("Custom JAR's load not allowed here");
}
}

View file

@ -86,6 +86,7 @@ public void loadModuleFull(URL jarpath) throws ClassNotFoundException, IllegalAc
module.preInit(context);
module.init(context);
module.postInit(context);
module.finish(context);
LogHelper.info("Module %s version: %s loaded", module.getName(), module.getVersion());
}
}