+ | hidden done

This commit is contained in:
RedShip
2025-04-08 16:24:20 +02:00
parent 9e96789cfe
commit 6d60ef316c
4 changed files with 14 additions and 18 deletions

14
hidden/README.md Normal file
View File

@ -0,0 +1,14 @@
# Finding the Hidden Flag
## How We Found It
First we went throught basic analysis of the website and thought of `.robots.txt`.
`Dissallow: /.hidden`
We wrote a script that crawled through the websites `.hidden` directory. It checked every subdirectory and looked for each README file, examining the byte of its content. When that byte deviated from the expected pattern, we knew wed found the flag!
## Utility of It
For this project, there wasnt any real-world utility, it was just a roleplay exercise for school to learn about web crawling and threading.
## How Can We Patch It
The easiest fix is to restrict public access to sensitive files. Dont place secret files in directories that are directly accessible from the web.