Metadata-Version: 2.4
Name: httpreplay-ng
Version: 0.4.1
Summary: Properly interpret, decrypt, and replay pcap files (maintained fork of HTTPReplay)
Author-email: "Hatching B.V." <info@hatching.io>, Jurriaan Bremer <jbr@cuckoo.sh>
Maintainer: enzok
License-Expression: GPL-3.0-only
Project-URL: Homepage, https://github.com/enzok/httpreplay
Project-URL: Upstream project, https://github.com/hatching/httpreplay
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Security
Classifier: Topic :: System :: Networking :: Monitoring
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dpkt>=1.9.8
Requires-Dist: tlslite-ng>=0.8.2
Requires-Dist: brotli>=1.1.0
Provides-Extra: mitmproxy
Requires-Dist: mitmproxy==4.0.4; extra == "mitmproxy"
Provides-Extra: dev
Requires-Dist: mock==2.0.0; extra == "dev"
Requires-Dist: pytest>=4.4.1; extra == "dev"
Dynamic: license-file

# httpreplay-ng

Replay HTTP and HTTPS requests from a PCAP based on TLS Master Secrets. The
TLS Master Secrets can be extracted through mitmproxy, Cuckoo Sandbox, some
browsers, and probably some other tools as well.

[![Python package](https://github.com/enzok/httpreplay/actions/workflows/python-package.yml/badge.svg?branch=master)](https://github.com/enzok/httpreplay/actions/workflows/python-package.yml)

A maintained fork of [HTTPReplay](https://github.com/hatching/httpreplay),
which was last released as `HTTPReplay` 0.2.6. The import package is still
`httpreplay`, so existing code needs no changes:

```
pip install httpreplay-ng
```

```python
from httpreplay.reader import PcapReader
```
