New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

minecraft-protocol

Package Overview
Dependencies
Maintainers
2
Versions
176
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minecraft-protocol - npm Package Compare versions

Comparing version 0.7.5 to 0.7.6

4

index.js

@@ -106,3 +106,3 @@ var EventEmitter = require('events').EventEmitter

client.username = packet.username;
var isException = !!server.onlineModeExceptions[client.username];
var isException = !!server.onlineModeExceptions[client.username.toLowerCase()];
var needToVerify = (onlineMode && ! isException) || (! onlineMode && isException);

@@ -152,3 +152,3 @@ var serverId;

var isException = !!server.onlineModeExceptions[client.username];
var isException = !!server.onlineModeExceptions[client.username.toLowerCase()];
var needToVerify = (onlineMode && ! isException) || (! onlineMode && isException);

@@ -155,0 +155,0 @@ var nextStep = needToVerify ? verifyUsername : loginClient;

{
"name": "minecraft-protocol",
"version": "0.7.5",
"version": "0.7.6",
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -122,2 +122,4 @@ # minecraft protocol

Make sure the entries in this object are all lower case.
#### server.maxPlayers

@@ -248,2 +250,6 @@

### 0.7.6
* onlineModeExceptions are all lowercase now. fixes security hole.
### 0.7.5

@@ -250,0 +256,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc