Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
ips-patcher
Advanced tools
Parse and Apply IPS binary patch format for JavaScript.
npm install -g ips-patcher
The following is an brief example to apply patch.ips to target.bin. The result will be written to output.bin.
ips-patcher -p patch.ips -o output.bin target.bin
ips-patcher
Apply IPS patch to binary image.
SYNOPSIS
ips-patcher [<option>] <image>
OPTIONS
-t, --target file Specify target image file to be patched.
-p, --patch file Specify IPS patch file to use.
-o, --output file Specify output file. ./patched.bin is used by default.
-v, --version Show version.
-h, --help Show this help.
npm install --save ips-patcher
const fs = require('fs');
const { IPSParser } = require('ips-patcher');
function toArrayBuffer(b) {
return b.buffer.slice(b.byteOffset, b.byteOffset + b.byteLength);
}
const patch = fs.readFileSync('patch.ips');
const parser = new IPSParser();
const ips = parser.parseIPS(toArrayBuffer(patch));
const target = fs.readFileSync('target.bin');
const result = ips.applyTo(toArrayBuffer(target));
fs.writeFileSync('patched.bin', result);
FAQs
IPS ROM patcher library
The npm package ips-patcher receives a total of 0 weekly downloads. As such, ips-patcher popularity was classified as not popular.
We found that ips-patcher demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.