I really don’t like that the page asks users to blindly curl and execute a script that then curl and executes another script all to run a one line `ifconfig` command.
And a complication that is bad practice because a malicious party can detect the blind handoff to shell and serve malware.
e.g.
wget file.sh ; vi file.sh
and you get safe code
curl file.sh | bash
and you get malware.
This attack requires a malicious server, but it’s still bad practice.
Why not just share the command?