https://github.com/invertex/binaryfilepatcher
Simple command line tool that search and replaces a given series of HEX values in the binary data of a file. Useful for quick and simple file patching.
https://github.com/invertex/binaryfilepatcher
Last synced: 10 months ago
JSON representation
Simple command line tool that search and replaces a given series of HEX values in the binary data of a file. Useful for quick and simple file patching.
- Host: GitHub
- URL: https://github.com/invertex/binaryfilepatcher
- Owner: Invertex
- Created: 2018-03-21T00:32:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-21T03:11:16.000Z (over 2 years ago)
- Last Synced: 2025-04-12T08:53:43.386Z (about 1 year ago)
- Language: C#
- Size: 9.77 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Binary File Patcher
Simple tool to quickly replace a pattern of bytes in a file. Can replace one or multiple instances of the pattern, with a matching length of bytes.
Byte inputs are to be written in HEX code.
Command line usage:
BinaryFilePatcher.exe somefile.dll "42 4F 4F 42 53" "42 55 54 54 53" false
Argument 1: Target file.
Argument 2: HEX pattern to look for.
Argument 3: HEX pattern to replace with.
Argument 4 (optional): If set to true, all matching instances of the pattern will be replaced, instead of just the first.