Socket
Socket
Sign inDemoInstall

ips-patcher

Package Overview
Dependencies
23
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ips-patcher

IPS ROM patcher library


Version published
Maintainers
1
Created

Readme

Source

ips-patcher

Parse and Apply IPS binary patch format for JavaScript.

  • IPS format

Use from Command-Line

Install

npm install -g ips-patcher

Command Example

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

Command Usage

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. 

Use as Library

Install

npm install --save ips-patcher

Code Example

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

Last updated on 06 Feb 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc