diff --git a/README.md b/README.md index cc00dbd..f1fce62 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: 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 diff --git a/netset-main.sh b/netset-main.sh index 5f8a1d9..1ff0bc0 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}') @@ -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