8000 GitHub - EshayDev/Amimod: A hex patching tool made for crackers, by crackers.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

EshayDev/Amimod

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

💜 Amimod

A hex patching tool made for crackers, by crackers.

macOS 11.0+ Architecture MIT License Downloads


Features

  • Bundle Selection — Support for apps, VSTs, AudioUnits, frameworks, and system extensions
  • Executable Discovery — Recursively scans MacOS, Frameworks, and LaunchServices directories
  • Multi-Pattern Patching — Apply multiple hex patches in sequence
  • Hex Notes Import — Batch import patches from formatted text
  • Wildcard Support — Use ?? wildcards with validation and memory preservation
  • Error Handling — Detailed error messages with context
  • Progress Tracking — Real-time patching progress with timing
  • Benchmarking — Built-in performance testing with visual results
  • SIMD Optimization — Boyer-Moore-Horspool algorithm with SIMD acceleration
  • Multi-threading — Parallel chunk processing for large files

Installation

Using the Latest Release

  1. Download the latest release from here
  2. Mount the DMG file
  3. Drag Amimod.app to your Applications folder

Compiling from Source

git clone https://github.com/EshayDev/Amimod.git
cd Amimod
# Open Amimod.xcodeproj in Xcode
# Build and archive the Amimod target
# Copy Amimod.app to /Applications

Usage

Selecting a Bundle

  1. Launch Amimod
  2. Click "Select Bundle" to choose a target file
  3. Supported formats: .app, .component, .audiounit, .vst, .vst3, .framework, .bundle, .kext, .appex
  4. Select an executable from the dropdown list

Manual Hex Patching

  1. Find Hex: Enter the pattern to search for (eg. 48 89 E5 41 57)
  2. Replace Hex: Enter the replacement pattern (eg. 90 90 90 90 90)
  3. Click "Patch Hex" to apply

Wildcard Usage

Use ?? to match any byte value:

Find:    48 89 ?? 5D C3
Replace: 90 90 90 90 90

Rules:

  • Wildcards in "Replace Hex" preserve original bytes when corresponding "Find Hex" uses ??
  • Validates wildcard combinations to prevent data corruption

Example preserving bytes:

Find:    48 8B ?? ?? ?? ?? 89
Replace: 48 8B ?? ?? ?? ?? 90  

# Middle 4 bytes unchanged

Multiple Matches

When multiple matches are found:

  • Shows match count before applying
  • Asks for confirmation
  • Limits to 50,000 matches per pattern to prevent performance issues

Batch Hex Notes

Import multiple patches using this format:

<find hex pattern>
to
<replace hex pattern>

Example:

x86_64:
31 C0 ?? ?? C3
to
31 C0 90 90 C3

ARM64:
?? ?? 80 52 C0 03 5F D6
to
20 00 80 52 C0 03 5F D6

To import:

  1. Click the Import button (📥) in the toolbar
  2. Paste hex notes into the editor
  3. Click "Import" to load and validate patches
  4. Click "Patch Hex" to apply all patches

Benchmarking

The built-in benchmark tests patching performance across different scenarios:

  1. Click the Speedometer icon (⏱️) in the toolbar
  2. Tests pattern sizes from 8 to 256 bytes
  3. Tests with and without wildcards
  4. View results as charts or tables

Performance Features

  • SIMD Instructions: Uses 16-bit and 32-bit SIMD for faster searching
  • Boyer-Moore-Horspool: Optimized string searching algorithm
  • Multi-threading: Parallel processing across CPU cores
  • Chunk Management: Dynamic sizing based on file size
  • Memory Efficiency: Handles large files without excessive RAM usage

System Requirements

Component Requirement
OS macOS 11.0 (Big Sur) or later
Architecture Intel x86_64 or Apple Silicon
Memory 4GB RAM
Storage 30MB free space

License

MIT License

Copyright (c) 2025 TEAM EDiSO & Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Credits

Code:

Graphics (App Icon & Logo):

Music:

App Testing:


This tool is provided free of charge. If you paid for this, you were scammed.

About

A hex patching tool made for crackers, by crackers.

Topics

Resources

Stars

Watchers

Forks

Languages

0