Metadata-Version: 2.1
Name: mnm
Version: 0.2.0
Summary: A simple python library for pentesting firewall protected webapp
Author-email: ohk990102 <ohk990102@gmail.com>
Project-URL: Homepage, https://github.com/ohk990102/mnm
Project-URL: Bug Tracker, https://github.com/ohk990102/mnm/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Description-Content-Type: text/markdown
License-File: LICENSE

# mnm

This is a simple python library for pentesting firewall protected webapp.

## Installation

```bash
pip install mnm
```

## Usage

```python
import mnm
mnm.enable_socket_fragmentation()
mnm.enable_header_mocking()

import requests
requests.get('http://example.com')

mnm.disable_socket_fragmentation()
mnm.disable_header_mocking()

requests.get('http://example.com')
```

## License

MIT License
