Level 7
Perm check π
The password for the next level is stored somewhere on the server and has all of the following properties:
owned by user bandit7
owned by group bandit6
33 bytes in size
Last updated
Perm check π
The password for the next level is stored somewhere on the server and has all of the following properties:
owned by user bandit7
owned by group bandit6
33 bytes in size
Last updated
find / -type f -user bandit7 -group bandit6 -size 33c 2>/dev/null
# Command breakdown:
# -type f -> type of object is a file
# -user bandit7 -> object is owned by bandit7
# -group bandit6 -> object is owned by bandit6
# -size 33c -> object is 33 bytes in size
# 2>/dev/null ->