This is not backdoor.

This commit is contained in:
zaxar163 2019-01-03 17:09:49 +04:00
parent 0b047ad94f
commit 021e913af8
No known key found for this signature in database
GPG key ID: CEE900027AE098E0
3 changed files with 5 additions and 4 deletions

View file

@ -552,7 +552,7 @@ private void generateConfigIfNotExists() throws IOException {
Config newConfig = new Config(); Config newConfig = new Config();
newConfig.mirrors = new String[]{"http://mirror.gravitlauncher.ml/"}; newConfig.mirrors = new String[]{"http://mirror.gravitlauncher.ml/"};
newConfig.updateMirror = "gravitlauncher.ml:7245"; newConfig.updateMirror = "gravitlauncher.ml:7245";
newConfig.criticalCallbacks = true; newConfig.criticalCallbacks = false;
newConfig.launch4j = new ExeConf(); newConfig.launch4j = new ExeConf();
newConfig.launch4j.copyright = "© GravitLauncher Team"; newConfig.launch4j.copyright = "© GravitLauncher Team";
newConfig.launch4j.fileDesc = "GravitLauncher ".concat(Launcher.getVersion().getVersionString()); newConfig.launch4j.fileDesc = "GravitLauncher ".concat(Launcher.getVersion().getVersionString());

View file

@ -27,7 +27,7 @@ public interface Callback {
UpdateManager(LaunchServer lsrv) { UpdateManager(LaunchServer lsrv) {
this.srv = lsrv; this.srv = lsrv;
this.cl = new FCL(srv); this.cl = srv.config.criticalCallbacks ? new FCL(srv) : null;
t = srv.config.criticalCallbacks ? new Timer("Updater", true) : null; t = srv.config.criticalCallbacks ? new Timer("Updater", true) : null;
if (srv.config.criticalCallbacks) t.schedule(this, 60000, 60000); if (srv.config.criticalCallbacks) t.schedule(this, 60000, 60000);
String[] updU = lsrv.config.updateMirror.split(":"); String[] updU = lsrv.config.updateMirror.split(":");

View file

@ -1,5 +1,5 @@
{ {
"port": 7245, "port": 7240,
"authHandler": { "authHandler": {
"type": "memory" "type": "memory"
}, },
@ -47,7 +47,8 @@
"mirrors": [ "mirrors": [
"http://mirror.gravitlauncher.ml/" "http://mirror.gravitlauncher.ml/"
], ],
"updateMirror": "gravitlauncher.ml:57977", "updateMirror": "gravitlauncher.ml:7245",
"criticalCallbacks": false,
"binaryName": "Launcher", "binaryName": "Launcher",
"address": "localhost", "address": "localhost",
"bindAddress": "0.0.0.0", "bindAddress": "0.0.0.0",