TIL: You can make HTTP requests without curl using Bash /dev/TCP
Bash has a built-in /dev/tcp feature that allows making HTTP requests without curl or other tools. By redirecting through /dev/tcp/HOST/PORT, you can send raw HTTP requests and receive responses directly from the shell. This is useful on systems where curl isn't available, although it requires Bash to be compiled with --enable-net-redirections.