From 519072a4af77288b3da6c09ddc317d231dbe9956 Mon Sep 17 00:00:00 2001 From: KaranGauswami Date: Sun, 23 Jun 2024 17:13:02 +0530 Subject: [PATCH] breaking: changed the default listening IP from `0.0.0.0` to `127.0.0.1`. This change restricts the application access to the local machine only. --- README.md | 4 ++-- src/main.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6b9ada8..191209c 100644 --- a/README.md +++ b/README.md @@ -45,12 +45,12 @@ Usage: sthp [OPTIONS] Options: -p, --port port where Http proxy should listen [default: 8080] - --listen-ip [default: 0.0.0.0] + --listen-ip [default: 127.0.0.1] -u, --username Socks5 username -P, --password Socks5 password - --http-basic HTTP Basic Auth -s, --socks-address Socks5 proxy address [default: 127.0.0.1:1080] --allowed-domains Comma-separated list of allowed domains + --http-basic HTTP Basic Auth credentials in the format "user:passwd" -h, --help Print help information -V, --version Print version information ``` diff --git a/src/main.rs b/src/main.rs index a28a811..d9d1bf2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -38,7 +38,7 @@ struct Cli { #[arg(short, long, default_value_t = 8080)] port: u16, - #[arg(long, default_value = "0.0.0.0")] + #[arg(long, default_value = "127.0.0.1")] listen_ip: IpAddr, #[command(flatten)]