{"id":171587,"date":"2026-06-10T00:31:53","date_gmt":"2026-06-09T21:31:53","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/"},"modified":"2026-06-10T00:31:53","modified_gmt":"2026-06-09T21:31:53","slug":"worldpreventer","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/","title":{"rendered":"WorldPreventer"},"content":{"rendered":"<p># WorldPreventer \u2013 Advanced Anti-Exploit &#038; World Protection<\/p>\n<p>\u26a0\ufe0f **Early Development Notice**<br \/>\nWorldPreventer is still in a very early stage of development. Many systems are functional, but the **machine learning (ML) detection system does not ship with a trained model**.<\/p>\n<p>* Do **not enable ML detection** unless you have trained your own model.<br \/>\n* If you see the notification `REQUEST_STATS observed (WorldTools signature)`, this likely indicates that a client is attempting to download your world.<\/p>\n<p>&#8212;<\/p>\n<p>## Overview<\/p>\n<p>WorldPreventer is a **high-performance anti-exploit and world protection plugin** designed to safeguard your server from a wide range of threats, including:<\/p>\n<p>* **World downloads**<br \/>\n* **Chunk exploitation**<br \/>\n* **Suspicious client behavior**<\/p>\n<p>It combines **packet-level monitoring**, **behavioral analysis**, and **adaptive responses** to protect your server from malicious activity.<\/p>\n<p>&#8212;<\/p>\n<p>##  Features<\/p>\n<p>###  Core Protection Systems<\/p>\n<p>1. **Chunk Exploit Prevention**<\/p>\n<p>   * Detects &#038; prevents rapid chunk loading\/unloading<br \/>\n   * Monitors chunk interaction patterns<br \/>\n   * Stops chunk boundary exploits<\/p>\n<p>2. **WorldTools Blocker**<\/p>\n<p>   * Blocks WorldTools client functionality<br \/>\n   * Prevents unauthorized world downloads<br \/>\n   * Detects &#038; blocks rapid join\/leave patterns<\/p>\n<p>3. **Deep Packet Inspection**<\/p>\n<p>   * Analyzes network traffic for suspicious patterns<br \/>\n   * Detects &#038; blocks malicious packet sequences<br \/>\n   * Monitors data volume &#038; timing anomalies<\/p>\n<p>4. **Adaptive Response System**<\/p>\n<p>   * Dynamic threat-level scoring<br \/>\n   * Escalating responses (warn \u2192 kick \u2192 ban)<br \/>\n   * Fully configurable actions<\/p>\n<p>&#8212;<\/p>\n<p>###  Machine Learning Detection (Optional)<\/p>\n<p> **Important:** The ML system is disabled by default and ships **without a trained model**. Do not enable it unless you train your own.<\/p>\n<p>When configured properly, the ML system provides:<\/p>\n<p>* **Anomaly Detection** \u2013 Spotting unusual player behavior<br \/>\n* **Behavioral Analysis** \u2013 Learning normal server patterns<br \/>\n* **Real-time Scoring** \u2013 Constantly evaluating actions<br \/>\n* **Adaptive Thresholds** \u2013 Adjusting to server conditions<\/p>\n<p>**Tracked Features (12 total):**<br \/>\nChunk transitions, container interactions, movement volume, entity spawn rates, packet bursts, systematic movement, join surges, client brand, timing precision, data volume variance, interaction patterns, movement entropy.<\/p>\n<p>&#8212;<\/p>\n<p>##  Commands &#038; Permissions<\/p>\n<p>### Admin Commands<\/p>\n<p>* `\/worldpreventer reload` \u2013 Reload configuration<br \/>\n* `\/worldpreventer status` \u2013 View protection status<br \/>\n* `\/worldpreventer simulate <player> <test>` \u2013 Run simulation tests<br \/>\n* `\/worldpreventer ml [enable|disable|status]` \u2013 Manage ML system<\/p>\n<p>### Permissions<\/p>\n<p>* `worldpreventer.admin` \u2013 Full access &#038; bypass<br \/>\n* `worldpreventer.staff` \u2013 Receive suspicious activity alerts<br \/>\n* `worldpreventer.bypass` \u2013 Exclude player from detection<\/p>\n<p>&#8212;<\/p>\n<p>##  Configuration<\/p>\n<p>Example `config.yml`:<\/p>\n<p>&#8220;`yaml<br \/>\n# Grace period after join<br \/>\njoin_grace_period_seconds: 120<\/p>\n<p># Escalation actions<br \/>\nactions:<br \/>\n  on_exceed: WARN  # WARN, KICK, BAN<\/p>\n<p># Suspicion scoring<br \/>\nscoring:<br \/>\n  enabled: true<br \/>\n  decay_per_minute: 10.0<br \/>\n  thresholds:<br \/>\n    warn: 100.0<br \/>\n    kick: 500.0<\/p>\n<p># Machine Learning (disabled by default)<br \/>\nml:<br \/>\n  enabled: false<br \/>\n  direct_kicks: false<br \/>\n  score_threshold: 3.0<br \/>\n  points_on_exceed: 20.0<br \/>\n  kick_message: &#8220;\u00a7cKicked by ML anti-cheat system&#8221;<br \/>\n  window_seconds: 60<br \/>\n  autosave_minutes: 5<br \/>\n  decay: 0.98<\/p>\n<p># ProtocolLib-based packet blocking<br \/>\npacket_blocking:<br \/>\n  enabled: true<br \/>\n  block_stats_request: false<br \/>\n  block_statistics: false<br \/>\n  block_map_data: false<br \/>\n  corrupt_block_entities: false<br \/>\n  inject_fake_data: false<br \/>\n&#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>##  Integration<\/p>\n<p>### Dependencies<\/p>\n<p>* **Required:** ProtocolLib<br \/>\n* **Recommended:** Vault<\/p>\n<p>### API Example<\/p>\n<p>&#8220;`java<br \/>\nWorldPreventer plugin = (WorldPreventer) Bukkit.getPluginManager().getPlugin(&#8220;WorldPreventer&#8221;);<\/p>\n<p>\/\/ Get suspicion score<br \/>\ndouble score = plugin.getSuspicionScorer().getScore(player.getUniqueId());<\/p>\n<p>\/\/ Add custom detection points<br \/>\nplugin.getSuspicionScorer().addScore(player.getUniqueId(), 10.0, &#8220;CUSTOM_EVENT&#8221;);<br \/>\n&#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>##  Staff Notifications<\/p>\n<p>Staff with permission receive alerts for:<\/p>\n<p>* Suspicious activity<br \/>\n* ML system detections<br \/>\n* Config changes<br \/>\n* Warnings &#038; errors<\/p>\n<p>&#8212;<\/p>\n<p>##  Bypass Options<\/p>\n<p>Players excluded from detection:<\/p>\n<p>* `worldpreventer.bypass` permission holders<br \/>\n* Players in Creative mode<br \/>\n* Players in Spectator mode<\/p>\n<p>&#8212;<\/p>\n<p>##  Support<\/p>\n<p>For bug reports, feature requests, or support, please visit the GitHub repository.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Prevents your Worlds from being downloaded<\/p>\n","protected":false},"featured_media":171588,"template":"","meta":{"_minecraft_slug":"worldpreventer","_minecraft_project_id":"PxdDGZkP","_minecraft_author":"Bobcat","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":71,"_minecraft_follows":3,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"worldpreventer.zip","_minecraft_size_bytes":130627,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-15T20:26:30.263544Z","_minecraft_date_created":"2025-08-28T08:31:20.948500Z","_minecraft_date_modified":"2025-08-28T05:05:18.974534Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/worldpreventer","_minecraft_icon_attachment_id":171588,"_minecraft_imported_at":"2026-06-09T21:31:53+00:00","_minecraft_import_hash":"ad4e1f436fe800affe6b862212fdc5f8","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[89,126,90,127,92,159],"mod_loader":[132],"minecraft_version":[62,37,73,74,38,78,79,80,81],"class_list":["post-171587","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-game-mechanics","mod_category-management","mod_category-optimization","mod_category-paper","mod_category-utility","mod_category-worldgen","mod_loader-paper","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>WorldPreventer - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WorldPreventer - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Prevents your Worlds from being downloaded\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldpreventer\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldpreventer\\\/\",\"name\":\"WorldPreventer - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldpreventer\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldpreventer\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/worldpreventer-icon-3b585f36daeadf040549873f8e10944c3addd70f_96.webp\",\"datePublished\":\"2026-06-09T21:31:53+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldpreventer\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldpreventer\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldpreventer\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/worldpreventer-icon-3b585f36daeadf040549873f8e10944c3addd70f_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/worldpreventer-icon-3b585f36daeadf040549873f8e10944c3addd70f_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldpreventer\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"WorldPreventer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WorldPreventer - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/","og_locale":"en_US","og_type":"article","og_title":"WorldPreventer - Minecraft","og_description":"Prevents your Worlds from being downloaded","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/","name":"WorldPreventer - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/worldpreventer-icon-3b585f36daeadf040549873f8e10944c3addd70f_96.webp","datePublished":"2026-06-09T21:31:53+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/worldpreventer-icon-3b585f36daeadf040549873f8e10944c3addd70f_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/worldpreventer-icon-3b585f36daeadf040549873f8e10944c3addd70f_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldpreventer\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"WorldPreventer"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/171587","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/171588"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=171587"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=171587"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=171587"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=171587"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}