Python Module for Parsing & Reverse Engineering Mach-O Executables.
- You can simply run this command.
pip3 install wh1tem0cha
Note
This section contains brief information about the module. For more information please visit USECASES.md
- Description: With this feature you can get general information from target MACH-O binary.
from wh1tem0cha import Wh1teM0cha
wm = Wh1teM0cha("target_binary_file")
wm.get_binary_info()
- Description: This method is for parsing and listing segments.
from wh1tem0cha import Wh1teM0cha
wm = Wh1teM0cha("target_binary_file")
wm.get_segments()
- Description: With this method you can get additional information about the target segment.
from wh1tem0cha import Wh1teM0cha
wm = Wh1teM0cha("target_binary_file")
wm.segment_info("__TEXT")
- Description: This method is for parsing and listing sections.
from wh1tem0cha import Wh1teM0cha
wm = Wh1teM0cha("target_binary_file")
wm.get_sections()
- Description: With this method you can get additional information about the target section.
from wh1tem0cha import Wh1teM0cha
wm = Wh1teM0cha("target_binary_file")
wm.section_info("__text")