From dfc206b57a7a3edd310d3ba1efd95558b6c7341e Mon Sep 17 00:00:00 2001 From: Christopher Talib Date: Fri, 17 May 2019 16:15:13 +0200 Subject: [PATCH] Starting to add the first osint challenge --- applications/README.md | 5 +++ applications/blog/index.html | 37 +++++++++++++++++++ applications/blog/style.css | 15 ++++++++ challenges/chapter_1/osint/osint_1.md | 5 +++ .../chapter_1/osint/osint_1_solution.md | 1 + 5 files changed, 63 insertions(+) create mode 100644 applications/README.md create mode 100644 applications/blog/index.html create mode 100644 applications/blog/style.css create mode 100644 challenges/chapter_1/osint/osint_1.md create mode 100644 challenges/chapter_1/osint/osint_1_solution.md diff --git a/applications/README.md b/applications/README.md new file mode 100644 index 0000000..419a1fc --- /dev/null +++ b/applications/README.md @@ -0,0 +1,5 @@ +# This folder contains the application needed for the challenges + +## OSINT + +* Blog: a blog with information hidden within it. Used for the first chapter of OSINT challenges. \ No newline at end of file diff --git a/applications/blog/index.html b/applications/blog/index.html new file mode 100644 index 0000000..5651a30 --- /dev/null +++ b/applications/blog/index.html @@ -0,0 +1,37 @@ + + + + + + + + + + The blog of Robert Helmont + + + +
+
+

Welcome to my blog!

+
+ +
+
+

C Y B E R

+

Did you know you could hide things in a web page?

+

{flag_YouCannotFindMe}

+
+
+

This is my first article!

+

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Fuga qui natus id pariatur debitis + officiis, + odit repellendus culpa quia obcaecati quisquam. Sapiente accusamus possimus tenetur blanditiis + laudantium inventore modi vitae.

+
+
+
+ + + \ No newline at end of file diff --git a/applications/blog/style.css b/applications/blog/style.css new file mode 100644 index 0000000..7f4fd9d --- /dev/null +++ b/applications/blog/style.css @@ -0,0 +1,15 @@ +.posts { + display: flex; + justify-content: center; +} + +.post { + border: 1px solid black; + color: black; + padding: 10px; + margin: 10px; +} + +#hidden { + color: white; +} \ No newline at end of file diff --git a/challenges/chapter_1/osint/osint_1.md b/challenges/chapter_1/osint/osint_1.md new file mode 100644 index 0000000..0e37dbd --- /dev/null +++ b/challenges/chapter_1/osint/osint_1.md @@ -0,0 +1,5 @@ +# Welcome to Open-Source Intelligence + +Did you know that some people's job is to find information on the Internet? + +Let's warm up a bit. Can you find Alphonse Daudet's birthdate? diff --git a/challenges/chapter_1/osint/osint_1_solution.md b/challenges/chapter_1/osint/osint_1_solution.md new file mode 100644 index 0000000..e33380b --- /dev/null +++ b/challenges/chapter_1/osint/osint_1_solution.md @@ -0,0 +1 @@ +* 13 May 1840 \ No newline at end of file