From 3d48361497db08e55654f3dab975cfbad30acddf Mon Sep 17 00:00:00 2001 From: lucky-vers Date: Sat, 21 Oct 2023 16:36:12 +0530 Subject: [PATCH] Add the explanation for `-size` --- Writeup.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Writeup.md b/Writeup.md index a4ade9f..cf7157c 100644 --- a/Writeup.md +++ b/Writeup.md @@ -155,6 +155,7 @@ The arguments are as follows - `.` indicates that we want `find` to search in the current directory. - `-type f` is to make it so the only results we see are of files `f`. If we wanted to find only directories, we would use `-type d` instead. +- `-size 1033c` filters the results to files that are only 1033 (`1033`) bytes (`c`) large. - `! -executable` is a negation of the `-executable` argument, i.e. *"only show files that are \*not\* executable"* The results of the command are as follows. @@ -176,6 +177,8 @@ P4L4vucdmLnm8I7Vl7jG1ApGSfjYKqJU + + ``` The password is revealed to be `P4L4vucdmLnm8I7Vl7jG1ApGSfjYKqJU`.