Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@mu-online-js/mu-packet-manager
Advanced tools
It allows you to define packet structures in a single place and easily convert between buffer and object representations of these structures.
mu-online-js packet manager is a library that provides a simple way to define and manage packet structures used in the popular MMORPG game Mu Online. It allows you to define packet structures in a single place and easily convert between buffer and object representations of these structures. The library is designed to be used in any Mu Online server application that runs on node.js.
npm install @mu-online-js/mu-packet-manager
or
yarn add @mu-online-js/mu-packet-manager
First, you need to require the library in your code:
const packetManager = require('@mu-online-js/mu-packet-manager');
You can define your packet structure using an object and convert it to a buffer like this:
const messageStruct = {
header: {
type: 0xC2,
size: 'auto',
headCode: 0xF4,
subCode: 0x06,
},
serverCount: 1,
serverLoadInfo: [{
serverId: 0,
loadPercentage: 20
}]
}
const message = new packetManager()
.useStruct(structs.CSServerListResponse)
.toBuffer(messageStruct);
You can also convert a buffer to an object like this:
const data = Buffer;/* a buffer received from the client/server */
const messageObj = new packetManager()
.fromBuffer(data)
.useStruct(structs.CSServerListResponse)
.toObject();
Contributions are welcome! If you find a bug or have a feature request, please open an issue. If you want to contribute code, please open a pull request.
mu-online-js packet manager is licensed under the MIT License.
FAQs
It allows you to define packet structures in a single place and easily convert between buffer and object representations of these structures.
The npm package @mu-online-js/mu-packet-manager receives a total of 5 weekly downloads. As such, @mu-online-js/mu-packet-manager popularity was classified as not popular.
We found that @mu-online-js/mu-packet-manager demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.