Blood Bash 3

100

Instructions

There’s a flag on this system that we’re having difficulty with. Unlike the previous flags, we can’t seem to find a file with this flag in it. Perhaps the flag isn’t stored in a traditional file?

Username: bl0ody_mary
Password: d34df4c3

bloodbash.deadface.io:22

Solution

For this flag I went a bit further than was necessary. I initially checked the sudo privileges for my user and saw that I was able to run /opt/start.sh as root. Running this program elevated my permissions to root.

Checking root’s bash history we can see multiple calls to netstat -ano. This gives us a clue that there may be a service that we should investigate

Checking services, we see that there is a udp service on port 43526. Using netcat we can connect to this service and it replies with the flag.

Continued On

Blood Bash 4