日本語版はこちら A toolkit for encrypting, decrypting, and analyzing Minecraft Bedrock packs.
This repository organizes three related projects as submodules:
- MCPackDecrypt (Node.js) → Marketplace
.mcpack/.mctemplatedecryption - bedrockpack (Go) → Pack decryption / encryption / management
- bedrocktool (Go) → Proxy & utility for downloading worlds, packs, and skins
Before using bedrockpack, you must update to the latest gophertunnel:
go get -u github.com/sandertv/gophertunnel@latestWithout this step, you will encounter connection errors due to protocol version mismatches.
A small Node.js tool.
Specialized for official Marketplace .mcpack / .mctemplate decryption.
👉 Mainly used for analyzing packs and worlds distributed in the Marketplace.
AkmalFairuz/bedrockpack
A Go CLI tool to decrypt, encrypt, manage, and extract resource packs.
- Decrypt / Encrypt resource packs
- Steal resource packs from a server (Xbox authentication required)
# Decrypt
bedrockpack decrypt <path to pack> <key>
# Encrypt (key optional, can be auto-generated)
bedrockpack encrypt <path to pack> <key (optional)>
# Steal directly from a server
bedrockpack steal <server ip:port>bedrock-tool/bedrocktool A Go CLI tool serving as a Minecraft Bedrock proxy and utility. Notably allows downloading worlds, skins, and packs from servers.
worlds: Download a world from a serverpacks: Download resource packs from a serverskins: Download player skinsmerge: Merge two or more worldslist-realms: List available Realmscapture: Capture packets into a pcap file
# Download a world
bedrocktool worlds -debug=false <server info>
# Save server resource packs
bedrocktool packs <server info>
# List your Realms
bedrocktool list-realmsClone with submodules:
git clone --recurse-submodules https://github.com/Au12jp/Crypto-Decrypto-Bedrock-Tools.gitIf you already cloned without submodules:
git submodule update --init --recursive- Node.js (for MCPackDecrypt)
- Go (for bedrockpack, bedrocktool)
- Clone the repository (with submodules)
- Important: In the bedrockpack directory, run:
cd bedrockpack go get -u github.com/sandertv/gophertunnel@latest go mod tidy - Build the tool:
go build