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.
@etothepii/satisfactory-file-parser
Advanced tools
A file parser for satisfactory files. Includes save files and blueprint files.
This is an NPM TypeScript Module to parse Satisfactory Files. Satisfactory is a game released by Coffee Stain Studios.
The Module is written entirely in TypeScript and comes with Type Definitions.
This parser can read, modify and write:
.sav
.sbp
, .sbpcfg
Game Version Files of U5 and below are NOT supported. However, U6 and above is perfectly fine and parsable.
We can not promise that U8 saves will work out of the box! If there will be changes, those will come very soon as soon as U8 is out on Experimental.
npm install @etothepii/satisfactory-file-parser
Usage of the SaveParser is easy. For reading a save file (.sav
), just pass a Buffer to the parser with the file content.
import * as fs from 'fs';
import { Parser } from "@etothepii/satisfactory-file-parser";
const file = fs.readFileSync('./MySave.sav') as Buffer;
const parsedSave = Parser.ParseSaveFile(file);
Consequently, writing a parsed save file back is just as easy. The SaveParser has callbacks to assist in syncing on different occasions during the process. For example, when writing the header or when writing a chunk of the save body. The splitting in individual chunks enables you to more easily stream the binary data to somewhere else.
import * as fs from 'fs';
import { Parser } from "@etothepii/satisfactory-file-parser";
let header: Uint8Array, bodyChunks: Uint8Array[] = [];
Parser.WriteSave(save, binaryBeforeCompressed => {
console.log('on binary data before being compressed.');
}, header => {
console.log('on save header.');
header = header;
}, chunk => {
console.log('on save body chunk.');
bodyChunks.push(chunk);
});
// write complete sav file back to disk
fs.writeFileSync('./MyModifiedSave.sav', Buffer.concat([header!, ...bodyChunks]));
Blueprint parsing works very similiar. Note, that blueprints consist of 2 files. The .sbp
main file and the config file .sbpcfg
.
import * as fs from 'fs';
import { Parser } from "@etothepii/satisfactory-file-parser";
const mainFile = fs.readFileSync('./MyBlueprint.sbp') as Buffer;
const configFile = fs.readFileSync('./MyBlueprint.sbpcfg') as Buffer;
const parsedBlueprint = Parser.ParseBlueprintFiles('MyBlueprint', mainFile, configFile);
Consequently, writing a blueprint into binary data works the same way with getting callbacks in the same style as the save parsing.
import * as fs from 'fs';
import { Parser } from "@etothepii/satisfactory-file-parser";
let mainFileHeader: Uint8Array, mainFileBodyChunks: Uint8Array[] = [];
const summary = Parser.WriteBlueprintFiles(blueprint, mainFileBinaryBeforeCompressed => {
console.log('on main file binary data before being compressed.');
}, header => {
console.log('on main file blueprint header.');
mainFileHeader = header;
}, chunk => {
console.log('on main file blueprint body chunk.');
mainFileBodyChunks.push(chunk);
});
// write complete .sbp file back to disk
fs.writeFileSync('./MyModifiedBlueprint.sbp', Buffer.concat([mainFileHeader!, ...mainFileBodyChunks]));
// write .sbpcfg file back to disk, we get that data from the result of WriteBlueprintFiles
fs.writeFileSync('./MyModifiedSave.sbpcfg', Buffer.from(summary.configFileBinary));
MIT
The module's code is free to use and open source.
FAQs
A file parser for satisfactory files. Includes save files and blueprint files.
The npm package @etothepii/satisfactory-file-parser receives a total of 1,473 weekly downloads. As such, @etothepii/satisfactory-file-parser popularity was classified as popular.
We found that @etothepii/satisfactory-file-parser 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
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.