Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
bedrock-provider
Advanced tools
Minecraft Bedrock level provider for saves and network serialization
npm i extremeheat/bedrock-provider
Writing example:
const fs = require('fs')
const { LevelDB } = require('leveldb-zlib')
const { ChunkColumn, Version, WorldProvider } = require('bedrock-provider')
const Block = require('prismarine-block')('1.16')
async function main() {
// Create a new ChunkColumn at (0,0)
let cc = new ChunkColumn(Version.v1_4_0, 0, 0)
for (var x = 0; x < 4; x++) {
for (var y = 0; y < 4; y++) {
for (var z = 0; z < 4; z++) {
// Set some random block IDs
const id = Math.floor(Math.random() * 1000)
let block = Block.fromStateId(id)
cc.setBlock(x, y, z, block)
}
}
}
// Now let's create a new database and store this chunk in there
const db = new LevelDB('./__sample', { createIfMissing: true }) // Create a DB class
await db.open() // Open the database
const world = new WorldProvider(db, { dimension: 0 })
world.save(cc) // Store this chunk in world
await db.close() // Close it
// Done! 😃
}
See tests/ for more usage examples.
constructor(version: Version, x: any, z: any);
getBlock(sx: int, sy: int, sz: int): Block;
setBlock(sx: int, sy: int, sz: int, block: Block): void;
addSection(section: SubChunk): void;
/**
* Encodes this chunk column for the network with no caching
* @param buffer Full chunk buffer
*/
networkEncodeNoCache(): Promise<Buffer>;
/**
* Encodes this chunk column for use over network with caching enabled
*
* @param blobStore The blob store to write chunks in this section to
* @returns {Promise<Buffer[]>} The blob hashes for this chunk, the last one is biomes, rest are sections
*/
networkEncodeBlobs(blobStore: BlobStore): Promise<CCHash[]>;
networkEncode(blobStore: BlobStore): Promise<{
blobs: CCHash[];
payload: Buffer;
}>;
networkDecodeNoCache(buffer: Buffer, sectionCount: number): Promise<void>;
/**
* Decodes cached chunks sent over the network
* @param blobs The blob hashes sent in the Chunk packe
* @param blobStore Our blob store for cached data
* @param {Buffer} payload The rest of the non-cached data
* @returns {CCHash[]} A list of hashes we don't have and need. If len > 0, decode failed.
*/
networkDecode(blobs: CCHash[], blobStore: BlobStore, payload: any): Promise<CCHash[]>;
0.1.0
it works
FAQs
Minecraft Bedrock edition chunk provider
The npm package bedrock-provider receives a total of 103 weekly downloads. As such, bedrock-provider popularity was classified as not popular.
We found that bedrock-provider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.