**Level Information**
> [!important] The password for the next level is stored in a file somewhere under the **inhere** directory and has all of the following properties:
>
> - human-readable
> - 1033 bytes in size
> - not executable
>
>
> **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)
- First, use the `ls` command to see the available files and directories.
- Navigate into the target directory using the `cd` command.
- You will notice there are many directories. We need to find a file that is:
- Human-readable
- 1033 bytes in size
- Not executable
- To locate this file, use the `find` command with the following parameters:
```Bash
find ./ -type f -size 1033c ! -executable
```
- This command will search for files (`-type f`) that are exactly 1033 bytes in size (`-size 1033c`) and not executable (`! -executable`).
![[Level 5 - 6.png]]