6 lines
99 B
Plaintext
6 lines
99 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# a poor man's vpn
|
||
|
ip=$(dig +short beepboop.systems)
|
||
|
sshuttle --dns -r ryan@$ip:443 0/0
|