Skip to content

CYB3RMX/Wh1teM0cha

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wh1teM0cha



Python Module for Parsing & Reverse Engineering Mach-O Executables.


Installation

  • You can simply run this command.
pip3 install wh1tem0cha

How to Use

Note

This section contains brief information about the module. For more information please visit USECASES.md

General Information About Target Binary

  • 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()

wm1

List Segments

  • Description: This method is for parsing and listing segments.
from wh1tem0cha import Wh1teM0cha

wm = Wh1teM0cha("target_binary_file")
wm.get_segments()

wm2

Get Target Segment Information

  • 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")

wm3

List Sections

  • Description: This method is for parsing and listing sections.
from wh1tem0cha import Wh1teM0cha

wm = Wh1teM0cha("target_binary_file")
wm.get_sections()

wm4

Get Target Section Information

  • 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")

wm5