MayADevBe / MayADevBe_Comments

Integration of comments for my SSG blog https://mayadevbe.me/ with the help of utterances.
1 stars 0 forks source link

posts/overthewire/bandit/level6/ #25

Open utterances-bot opened 2 weeks ago

utterances-bot commented 2 weeks ago

OverTheWire Bandit Level 5 -> 6 - Walkthrough - MayADevBe Blog

A walkthrough of Level 5 -> 6 of the Bandit wargame from OverTheWire. - Human-readable files, file sizes and non-executable files.

https://mayadevbe.me/posts/overthewire/bandit/level6/

VenTheZone commented 2 weeks ago

You can also use find . -type f -size 1033c -readable ! -executable

VenTheZone commented 2 weeks ago

starts searching in the current directory (inhere).

.

limits the search to files.

-type f

looks for files exactly 1033 bytes in size (c stands for bytes).

-size 1033c:

finds files that are human-readable.

-readable

excludes files that are executable.

! -executable