-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Garey27/Binary-AutoPatcher
- Loading branch information
Showing
1 changed file
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
"# Binary-AutoPatcher" | ||
# Binary-AutoPatcher | ||
|
||
This little program search pattern in binary file and replace it according to JSON file. | ||
|
||
Possible JSON Fields: | ||
* "pattern" - key field - tells program that we have pattern to find | ||
* "name" - pattern name | ||
* "search" - pattern to search in hex-format BEEF011001.. etc | ||
* "wildcard" - skips selected byte in search pattern | ||
* "max_search" - max bytes to compare | ||
* "replace" - replace pattern at found position | ||
* "replace_wildcard" - wildcard for replacing | ||
* "replace_offset" - possible custom offset, of iterator where to start replace | ||
|
||
* "pattern" field can used recursively, examples in test folder. |