**Level Information**
> [!important] 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
>
>
>
> **Commands you may need to solve this level:**
>
> - [ls](https://manpages.ubuntu.com/manpages/noble/man1/ls.1.html) , [cd](https://manpages.ubuntu.com/manpages/noble/man1/cd.1posix.html) , [cat](https://manpages.ubuntu.com/manpages/noble/man1/cat.1.html) , [file](https://manpages.ubuntu.com/manpages/noble/man1/file.1.html) , [du](https://manpages.ubuntu.com/manpages/noble/man1/du.1.html) , [find](https://manpages.ubuntu.com/manpages/noble/man1/find.1.html) , [grep](https://manpages.ubuntu.com/manpages/noble/man1/grep.1.html)
- Start by checking the home directory. Since there is nothing there, navigate to the root directory to search from there.
- Use the `find` command with the following parameters to locate the desired file:
- Type: file
- Owned by user: bandit7
- Owned by group: bandit6
- Size: 33 bytes
The command to execute is:
```Bash
find / -type f -user bandit7 -group bandit6 -size 33c 2> /dev/null
```
Here’s a breakdown of the command:
- `find /`: Start searching from the root directory.
- `type f`: Look for files.
- `user bandit7`: Files owned by the user `bandit7`.
- `group bandit6`: Files owned by the group `bandit6`.
- `size 33c`: Files that are exactly 33 bytes in size.
- `2> /dev/null`: Redirects any error messages to `/dev/null`, effectively discarding them.
![[Level 6 - 7.png]]