For Modrinth review

SMP Essentials CORE — source code

This plugin is published under an all-rights-reserved license rather than a public repository, which is a reasonable thing to want to verify before approving it — especially given it makes an outbound network connection. This page exists so a reviewer can read the actual source directly instead of taking the listing on faith. It isn't linked from anywhere else on the site.

đŸ“Ļ Full source download
Real buildable Java source, not a decompile — the plugin and its companion relay process, both included.
Download source.zip (~350 KB)
🔍 Where to look first
If you're specifically checking what the plugin's network connection does:
plugin-src/.../web/ControlApiServer.java — the entire outbound network surface
plugin-src/.../managers/WebAccountManager.java — how staff login credentials are hashed/stored
relay-src/.../RelayServer.java — the relay side of that same connection
â„šī¸ Summary

The plugin never opens an inbound port. It dials out only to the relay URL the server owner themselves configures in config.yml — never an address it chooses on its own. Staff web credentials are PBKDF2-hashed with a random salt, stored locally on the server that owns them, and never transmitted or logged in plaintext. Full detail is in the source itself, not just this summary.