
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
satisfactory-save-reader
Advanced tools
This python package reads a satisfactory save file, allowing easy consumption for other programs.
(Note: This python program will not function on a big file save - as certain functionality is not programmed yet)
Video on Satisfactory Save Reader can be found here.
python3 -m pip install satisfactory-save-reader
from satisfactory_save_reader.save_reader import SaveReader
# File location variables for reading
SAVE_FILE = sys.argv[1]
save_data = SaveReader(f"{SAVE_FILE}")
objects = save_data.get_objects()
for obj_name, obj in objects.items():
print(obj_name)
Example downloading saves from dedicated server, and UI: More examples can be found here.
more examples to be added
.
├── img # Image files for README.md
├── src # All python files
└── README.md
.
├── satisfactory_save_reader # Python package
├── __init__.py
│ ├── bin_file.py # File to process the bin file
│ ├── data_file.py # Data file class for reading decompressed zlib data
│ ├── file.py # File parent class that has reading / writing capabilities
│ ├── save_reader.py # Main file to initialize a SaveReader
│ ├── utils.py # Util functions
│ ├── zlib_file.py # Zlib file class for reading compressed zlib data (from Satisfactory saves)
│ └── ... # etc.
├── ...
└── ...
FAQs
Package to parse a Satisfactory save file
We found that satisfactory-save-reader 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.