From aa2d6f5432d0a9ce44d44960215bce3172562a3b Mon Sep 17 00:00:00 2001 From: hatoo Date: Sat, 22 Jun 2024 17:18:43 +0900 Subject: [PATCH] Add makefile for README.md --- README.md | 3 +-- README.md.php | 18 ++++++++++++++++++ makefile | 2 ++ 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 README.md.php create mode 100644 makefile diff --git a/README.md b/README.md index 2abba7e..5d87da6 100644 --- a/README.md +++ b/README.md @@ -136,5 +136,4 @@ async fn main() { }); } } - -``` \ No newline at end of file +``` diff --git a/README.md.php b/README.md.php new file mode 100644 index 0000000..4252f09 --- /dev/null +++ b/README.md.php @@ -0,0 +1,18 @@ +# http-mitm-proxy + +[![Crates.io](https://img.shields.io/crates/v/http-mitm-proxy.svg)](https://crates.io/crates/http-mitm-proxy) + +A HTTP proxy server library intended to be a backend of application like Burp proxy. + +- Sniff HTTP and HTTPS traffic by signing certificate on the fly. +- Server Sent Event +- WebSocket ("raw" traffic only. Parsers will not be implemented in this crate.) + +## Usage + +```rust, no_run + +``` diff --git a/makefile b/makefile new file mode 100644 index 0000000..b5a3dab --- /dev/null +++ b/makefile @@ -0,0 +1,2 @@ +readme: README.md.php + php README.md.php > README.md