https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu
Should be yes
:
grep IPV6 /etc/default/ufw
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu
Should be yes
:
grep IPV6 /etc/default/ufw
aspe:keyoxide.org:GK4JFFYSVEI5NMLLGAXX22QZAU
Nate Sanders, Senior Manager of Security Engineering & Operations, has spent over 20 years in Information Technology, with more than a decade dedicated to the wild and wonderful world of Information Security. Specializing in infrastructure security, application security, and vulnerability management, Nate’s professional focus is now on the leadership and development of people, but his mischievous streak ensures he’s always on the lookout for the next thing to break (for research, of course).
Known in the hacker world as "mauvehed," he has been gleefully causing trouble and dismantling tech since the late 1980s. Whether it was disassembling his sister’s electronics (without asking) or pressing every button on a keyboard to uncover hidden features, his knack for chaos has always been his secret weapon. These days, he directs that same energy into poking, prodding, and "testing" technology wherever he finds it.
A self-proclaimed shenanigator, lifelong Calvin & Hobbes enthusiast, and proudly neurodivergent (AuD
The following will show you how to create a new docker image from a running container that you have modified. The image will only exist locally, meaning you can only access and use it on the computer you create it. It will not be associated with any container registry.
We will start with the ubuntu container image as our base.
docker run -a stdin -a stdout -it ubuntu /bin/bash
git reset --hard HEAD~1 |
Source https://github.com/nextdns/nextdns/wiki/UnifiOS
sh -c 'sh -c "$(curl -sL https://nextdns.io/install)"'
Some services require a combined pfx
file to provide TLS to a client
The easiest way is to utilize openssl on the command line. Assuming you already have the .crt
and
.key
files, run the following command.
openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in domain.name.crt
#!/bin/bash | |
# bashGPT - richinseattle (who failed to gist it, but all credit is given) | |
[ "${OPENAI_API_KEY}" == "" ] && echo "Please set OPENAI_API_KEY env variable" && exit | |
[ "$(which jq)" == "" ] && echo "Please install the jq program" && exit | |
[ "$(which curl)" == "" ] && echo "Please install the curl program" && exit | |
PROMPT="$1" | |
while true |