First we will SSH into the server.
We will then go to the /bin directory to see what tools we have access to.
BusyBox is installed which has Netcat and ifconfig (Two of my favorite tools)
The next step is to check what IP address we have been registered and look at the adapter name.
We are able to do a manual IP address override with ifconfig. Then we will make sure the IP mask has taken affect.
If we try to listen for the packet it will not work because the server does know about the IP change. Therefore, we will ping 192.168.0.1 and then listen for the flag.
The tool I chose to listen for the packet is Netcat. I selected the commands -l to listen and -u for UDP protocol on port 8000. After four seconds you will receive the flag.
Thank you to the staff at https://metactf.com for making this event possible.