From 82c0596ba5ac23b1bbe03abaef8534c342437770 Mon Sep 17 00:00:00 2001 From: Pinky <36157015+PinkP4nther@users.noreply.github.com> Date: Thu, 2 Sep 2021 21:10:07 -0700 Subject: [PATCH 1/4] Clean. --- Cargo.lock | 116 ----------------------------------------------------- 1 file changed, 116 deletions(-) delete mode 100644 Cargo.lock diff --git a/Cargo.lock b/Cargo.lock deleted file mode 100644 index dc7088f..0000000 --- a/Cargo.lock +++ /dev/null @@ -1,116 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "autocfg" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" - -[[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "cc" -version = "1.0.70" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d26a6ce4b6a484fa3edb70f7efa6fc430fd2b87285fe8b84304fd0936faa0dc0" - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "foreign-types" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" -dependencies = [ - "foreign-types-shared", -] - -[[package]] -name = "foreign-types-shared" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" - -[[package]] -name = "libc" -version = "0.2.101" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cb00336871be5ed2c8ed44b60ae9959dc5b9f08539422ed43f09e34ecaeba21" - -[[package]] -name = "once_cell" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" - -[[package]] -name = "openssl" -version = "0.10.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d9facdb76fec0b73c406f125d44d86fdad818d66fef0531eec9233ca425ff4a" -dependencies = [ - "bitflags", - "cfg-if", - "foreign-types", - "libc", - "once_cell", - "openssl-sys", -] - -[[package]] -name = "openssl-sys" -version = "0.9.66" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1996d2d305e561b70d1ee0c53f1542833f4e1ac6ce9a6708b6ff2738ca67dc82" -dependencies = [ - "autocfg", - "cc", - "libc", - "pkg-config", - "vcpkg", -] - -[[package]] -name = "pkg-config" -version = "0.3.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c" - -[[package]] -name = "serde" -version = "1.0.130" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913" - -[[package]] -name = "sslrelay" -version = "0.2.0" -dependencies = [ - "openssl", - "toml", -] - -[[package]] -name = "toml" -version = "0.5.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" -dependencies = [ - "serde", -] - -[[package]] -name = "vcpkg" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" From 362878d4a59a5dc163d4cb5ad63963cea8caac06 Mon Sep 17 00:00:00 2001 From: Pinky <36157015+PinkP4nther@users.noreply.github.com> Date: Thu, 2 Sep 2021 21:16:40 -0700 Subject: [PATCH 2/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index abda71c..4076db6 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,6 @@ A relay I wrote to help with intercepting/modifying TLS encrypted network traffic from an application. The idea is to generate a certificate and a private key (You may need to generate a CA for your certificate, so that you can tell your system or the application to trust the generated certificate). -Then use this library to continuously rewrite or display encrypted network traffic. +Then use this library to continuously rewrite or display decrypted network traffic. -This library now supports continuous TCP sessions. | 09/02/2021 \ No newline at end of file +This library now supports continuous TCP sessions. | 09/02/2021 From 8b92929ab505b906bcb98a54fac37a4f78ef7568 Mon Sep 17 00:00:00 2001 From: Pinky <36157015+PinkP4nther@users.noreply.github.com> Date: Thu, 2 Sep 2021 21:16:57 -0700 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4076db6..e157a6e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # SSLRelay -A relay I wrote to help with intercepting/modifying TLS encrypted network traffic from an application. +A relay library I wrote to help with intercepting/modifying TLS encrypted network traffic from an application. The idea is to generate a certificate and a private key (You may need to generate a CA for your certificate, so that you can tell your system or the application to trust the generated certificate). Then use this library to continuously rewrite or display decrypted network traffic. From 36ce07e13ae232ca8adeb71c69643cba0d8af12d Mon Sep 17 00:00:00 2001 From: Pinky <36157015+PinkP4nther@users.noreply.github.com> Date: Thu, 2 Sep 2021 21:17:54 -0700 Subject: [PATCH 4/4] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e157a6e..8d49d7d 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,5 @@ The idea is to generate a certificate and a private key (You may need to generat Then use this library to continuously rewrite or display decrypted network traffic. This library now supports continuous TCP sessions. | 09/02/2021 + +More updates/ideas to come.. I think..