3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-07-06 05:18:06 +02:00

DumpInfo: Mark internal IP as sensitive (#1264)

Sometimes the internal IP is the external IP of the server.
Dieser Commit ist enthalten in:
Camotoy 2020-09-14 20:51:07 -04:00 committet von GitHub
Ursprung b13f5e900f
Commit 1e1402a23f
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -31,6 +31,7 @@ import it.unimi.dsi.fastutil.objects.Object2IntMap;
import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap; import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap;
import lombok.Getter; import lombok.Getter;
import org.geysermc.connector.GeyserConnector; import org.geysermc.connector.GeyserConnector;
import org.geysermc.connector.common.serializer.AsteriskSerializer;
import org.geysermc.connector.configuration.GeyserConfiguration; import org.geysermc.connector.configuration.GeyserConfiguration;
import org.geysermc.connector.network.BedrockProtocol; import org.geysermc.connector.network.BedrockProtocol;
import org.geysermc.connector.network.session.GeyserSession; import org.geysermc.connector.network.session.GeyserSession;
@ -112,6 +113,7 @@ public class DumpInfo {
private final boolean dockerCheck; private final boolean dockerCheck;
NetworkInfo() { NetworkInfo() {
if (AsteriskSerializer.showSensitive) {
try { try {
// This is the most reliable for getting the main local IP // This is the most reliable for getting the main local IP
Socket socket = new Socket(); Socket socket = new Socket();
@ -123,6 +125,10 @@ public class DumpInfo {
this.internalIP = InetAddress.getLocalHost().getHostAddress(); this.internalIP = InetAddress.getLocalHost().getHostAddress();
} catch (UnknownHostException ignored) { } } catch (UnknownHostException ignored) { }
} }
} else {
// Sometimes the internal IP is the external IP...
this.internalIP = "***";
}
this.dockerCheck = DockerCheck.checkBasic(); this.dockerCheck = DockerCheck.checkBasic();
} }