From 7cafd012e7fc6ff4e9417230230c495dd1ab88ad Mon Sep 17 00:00:00 2001 From: Pyro57000 <147988717+Pyro57000@users.noreply.github.com> Date: Mon, 20 Nov 2023 11:00:56 -0600 Subject: [PATCH] Update cseyewittness changed from splitting on just spaces to splitting on any white space when reading the proxychains config, should be better now. --- cs-eyewitness/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cs-eyewitness/src/main.rs b/cs-eyewitness/src/main.rs index 43e6c7a..b7f0d83 100644 --- a/cs-eyewitness/src/main.rs +++ b/cs-eyewitness/src/main.rs @@ -49,7 +49,7 @@ note if you have errors parsing your proxychains config file make sure its space let mut proxy_port = String::new(); for line in lines{ if line.contains("socks"){ - let split_line:Vec<&str> = line.split(" ").collect(); + let split_line:Vec<&str> = line.split_whitespace().collect(); proxy_type = split_line[0].to_owned(); proxy_address = split_line[1].to_owned(); proxy_port = split_line[2].to_owned();