From f42fbcd71ad800f293071cde155bedd1c35da7c6 Mon Sep 17 00:00:00 2001 From: NullArray Date: Tue, 14 Apr 2020 18:55:21 +0000 Subject: [PATCH 1/5] Update netset-main.sh --- netset-main.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netset-main.sh b/netset-main.sh index 5f8a1d9..9ba03a3 100644 --- a/netset-main.sh +++ b/netset-main.sh @@ -19,7 +19,7 @@ GREEN=$ESC"32;01m" # Working dir CWD=$(pwd) # Date -NOW=$(date) +NOW=$(date +"%d_%m_%Y") # Active connected interface IFACES=$(ip link | awk -F: '$0 !~ "lo|vir|wl|^[^0-9]"{print $2;getline}') From cb057505c9c5aab9b1e13350125c3a44b757fc43 Mon Sep 17 00:00:00 2001 From: NullArray Date: Tue, 21 Apr 2020 00:14:53 +0000 Subject: [PATCH 2/5] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index cc00dbd..0f89049 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,16 @@ Easy access to online OPSEC resources, the web resources in question can be open And more. +### DNSCrypt-Proxy Config + +Recently i've noticed that certain distros, even though they're Debian or Ubuntu derivatives don't seem to be able to +process the configuration file that gets downloaded through `apt` or is written out by means of NetSet's `debconf.sh` +script. + +Therefore i did some testing and managed to put together a `DNSCrypt-proxy.toml` file, based on original examples by +the DNSCrypt dev that appears to work on most systems. If you're interested find it [here](https://gist.github.com/NullArray/28958795b16f8eda7a5b0a69f8ce57fe). If you're still facing some trouble, please don't hesitate to open up a ticket. And i'll get back to you as soon as i am able to to help you troubleshoot. Thanks! + + ## Usage After cloning the repo navigate to the `NetSet` directory and run the following: From 94b33541b971ecb36c98e3b3f3dbee9eb05b089c Mon Sep 17 00:00:00 2001 From: NullArray Date: Tue, 21 Apr 2020 00:15:57 +0000 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f89049..f1fce62 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ process the configuration file that gets downloaded through `apt` or is written script. Therefore i did some testing and managed to put together a `DNSCrypt-proxy.toml` file, based on original examples by -the DNSCrypt dev that appears to work on most systems. If you're interested find it [here](https://gist.github.com/NullArray/28958795b16f8eda7a5b0a69f8ce57fe). If you're still facing some trouble, please don't hesitate to open up a ticket. And i'll get back to you as soon as i am able to to help you troubleshoot. Thanks! +the DNSCrypt dev that appears to work on most systems. If you're interested find it [here](https://gist.github.com/NullArray/28958795b16f8eda7a5b0a69f8ce57fe). If you're still facing some trouble, please don't hesitate to open up a ticket. And i'll get back to you as soon as i am able to, to help you troubleshoot. Thanks! ## Usage From 7ef2435859235c50c2f8dc11f64361255d6e885e Mon Sep 17 00:00:00 2001 From: NullArray Date: Fri, 17 Jul 2020 14:40:00 +0000 Subject: [PATCH 4/5] Update depconf.sh --- depconf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/depconf.sh b/depconf.sh index f6d3ffe..c55046b 100644 --- a/depconf.sh +++ b/depconf.sh @@ -306,7 +306,7 @@ be backed up in a directory labeled: 'backup- $(date) '\n" # Install proxy fetcher wget -O proxies/fetch.py https://raw.githubusercontent.com/stamparm/fetch-some-proxies/master/fetch.py && echo "Proxy Fetcher installed" >> installed.log - if [[ -z $(which protonvpn-cli) ]]; then + if [[ -z $(which protonvpn) ]]; then echo -e "Would you like to install ProtonVPN?" read -p '[Y]es/[N]o ' choice if [[ $choice == 'y' || $choice == 'Y' ]]; then From 3ed25d98494906c84bb7e157e0591895ca84733e Mon Sep 17 00:00:00 2001 From: NullArray Date: Tue, 21 Jul 2020 08:51:43 +0000 Subject: [PATCH 5/5] Update netset-main.sh --- netset-main.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netset-main.sh b/netset-main.sh index 9ba03a3..1ff0bc0 100644 --- a/netset-main.sh +++ b/netset-main.sh @@ -576,7 +576,7 @@ fi # Check for command line arguments if [[ "$1" != "" ]]; then - case $1 in + case $1 in '-i' | '--install' ) bash depconf.sh && menu esac