https://github.com/veha0001/hexsaly
Hexsaly is an easy hex editor that supports replacement and insertion from a configuration file, including wildcard pattern scanning.
https://github.com/veha0001/hexsaly
hex-editor hexpatch hexsaly modifier patcher rust
Last synced: 4 months ago
JSON representation
Hexsaly is an easy hex editor that supports replacement and insertion from a configuration file, including wildcard pattern scanning.
- Host: GitHub
- URL: https://github.com/veha0001/hexsaly
- Owner: Veha0001
- License: gpl-3.0
- Created: 2025-01-06T13:55:17.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-20T06:00:13.000Z (7 months ago)
- Last Synced: 2025-06-20T07:18:45.377Z (7 months ago)
- Topics: hex-editor, hexpatch, hexsaly, modifier, patcher, rust
- Language: Rust
- Homepage:
- Size: 132 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hexsaly
Hexsaly is a tool designed to apply patches to binary files. It supports various methods for locating the patch offsets, including direct offsets, method names, and wildcard patterns.
[](https://nightly.link/Veha0001/Hexsaly/workflows/ci/main?preview)
## Features
- Apply patches to binary files using hex codes.
- Locate patch offsets using method names from a dump file.
- Support for wildcard pattern scanning.
- Configurable logging styles for detailed output.
- Handle multiple input and output files.
- Option to require files for patching or continue if not found.
## Usage
**Configuration File**: Create a `config.json` file with the following structure:
```json
{
"Hexsaly": {
"menu": false,
"style": true,
"files": [
{
"title": "Example",
"dump_cs": "path/to/dump.cs",
"input": "path/to/input/file",
"output": "path/to/output/file",
"require": false,
"patches": [
{
"method_name": "methodName",
"hex_replace": "B8 85 47 DE 63 C3"
},
{
"offset": "0x1234",
"hex_replace": "B8 85 47 DE 63 C3"
},
{
"wildcard": "?? ?? ??",
"hex_insert": "hex values"
}
]
}
]
}
}
```
## Building & Install
To build the project, use the following command:
```sh
cargo build --release
```
To install the project, use the following command:
```sh
cargo install --git https://github.com/Veha0001/Hexsaly
```
### Usages
Create a `config.json` file then open/run the `hexsaly`.
For get help of the command:
```sh
hexsaly -h
```