thefox / macho
PHP script for modifying Mach-O executable i386 and x86_64 files.
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^7.0
- liip/process-manager: ^1.0
- symfony/console: ^2.8
- symfony/filesystem: ^2.7
- thefox/assembly: ^0.2
- thefox/utilities: ^1.9
Requires (Dev)
- doctrine/common: ^2.4
- phpstan/phpstan: ^0.7
- phpunit/phpunit: ^4.8
README
PHP script for modifying Mach-O 64-bit executable x86_64 files using PHP.
Project Outlines
The project outlines as described in my blog post about Open Source Software Collaboration.
- The main purpose of this software is to modify Mach-O 64-bit executable x86_64 files using PHP.
- This list is open. Feel free to request features.
Installation
The preferred method of installation is via Packagist and Composer. Run the following command to install the package and add it as a requirement to composer.json:
composer require thefox/macho
Usage
To print general informations about a binary executable you can type the following command into your shell:
./macho binary --all PATH
For example:
./macho binary --all
Another way to print general informations about a binary executable is to use dbg.sh
script. This script uses default OS X tools like nm
and otool
.
Links
Examples
Look into examples directory to see code examples how to use this in your own project.