Metadata-Version: 2.1
Name: pybfd3
Version: 0.1.2
Summary: A Python (3.x compatible) interface to the GNU Binary File Descriptor (BFD) and opcodes library.
Home-page: https://github.com/0xe1a00000/pybfd3.git
Author: Groundworks Technologies OSS Team
Author-email: oss@groundworkstech.com
Maintainer: Manuel Gebele
Maintainer-email: m.gebele@tuta.io
License: GPLv2
Description: # PyBFD3
        
        This clone of [PyBFD](https://github.com/Groundworkstech/pybfd) mainly adds support for Python 3.x while keeping compatibility with Python 2.x. To prevent conflicts and possible confusion, the name of the module/package has changed to **pybfd3**
        
        Because it seems that **pybfd** is no longer maintained, I decided to create my own independent repository.
        
        ## Install (PyPI)
        
        ```
        $ pip install --user pybfd3
        ````
        
        ## Install (Local)
        
        ```
        $ git clone https://github.com/0xe1a00000/pybfd3.git
        $ pip install --user ./pybfd3
        ```
        
        **Note:**  
        
        Depending on your pip version, you may need to add pip's ***--egg*** install option to successfully complete the installation.
        
        ## Sample Session
        
        ```
        $ cd pybfd3/examples
        $ chmod +x sample-session.py
        $ ./sample-session.py
        Usage : ./sample-session.py <binary>
        $ ./sample-session.py `which sudo`
        [+] Creating BFD instance...
        [+] File format     : Linker/assembler/compiler output.
        [+] Architecture    : Intel 386 (9)
        [+] BFD target name : elf64-x86-64
        [+] Entry point     : 0x403970
        [+] Sections        : 27
        [+] Selected section information:
        	Name   : .text
        	Index  : 13
        	Length : 59 Kbytes
        0x402B60 SZ=2 BD=0 IT=1	push   r15
        0x402B62 SZ=2 BD=0 IT=1	push   r14
        0x402B64 SZ=2 BD=0 IT=1	push   r13
        0x402B66 SZ=2 BD=0 IT=1	push   r12
        0x402B68 SZ=1 BD=0 IT=1	push   rbp
        0x402B69 SZ=1 BD=0 IT=1	push   rbx
        0x402B6A SZ=5 BD=0 IT=1	mov    ebx,0x63ec80
        0x402B6F SZ=3 BD=0 IT=1	mov    rbp,rsi
        0x402B72 SZ=7 BD=0 IT=1	sub    rsp,0xb8
        [...]
        ```
        
        ## TODOs
        
        - improve ***get_symbols*** to not throwing an error if no symbols are present
        - macOS testing
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Other Audience
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Programming Language :: C
Classifier: Programming Language :: Assembly
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Disassemblers
Classifier: Topic :: Software Development :: Compilers
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Embedded Systems
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
