Omoeba

Results 21 comments of Omoeba

Just make a script called “routedns.sh” in your root directory using `sudo nano /root/routedns.sh` And paste in the following ``` #!/bin/bash /sbin/iptables -t nat -A OUTPUT -p tcp --dport 53...

@modib what do you mean by not portable?

The script is meant to be run on the server, not the client.

@ASTERISK-Git this will route all dns to cloudflare’s DNS at https://1.1.1.1/dns/ ``` #!/bin/bash /sbin/iptables -t nat -A OUTPUT -p tcp --dport 53 -j DNAT --to 1.1.1.1:53; /sbin/iptables -t nat -A...

> > @ASTERISK-Git this will route all dns to cloudflare’s DNS at https://1.1.1.1/dns/ > > ``` > > #!/bin/bash > > > > /sbin/iptables -t nat -A OUTPUT -p tcp...

Sounds good! So DNS resolvers are still hardcoded in the client 2 years later?

The only real con of websocket is difficulty of setup as you need a full-fledged webserver i.e. nginx. But once you set it up it is nearly impossible to block...

I made a one-liner script to store my password in the keychain following this [guide](https://scriptingosx.com/2021/04/get-password-from-keychain-in-shell-scripts/). It should be a lot more secure than storing your password in plaintext.

> > I made a one-liner script to store my password in the keychain following this [guide](https://scriptingosx.com/2021/04/get-password-from-keychain-in-shell-scripts/). It should be a lot more secure than storing your password in plaintext....