finishing the first web challenge
This commit is contained in:
parent
dfc206b57a
commit
032c5d6895
|
@ -2,4 +2,4 @@
|
|||
|
||||
## OSINT
|
||||
|
||||
* Blog: a blog with information hidden within it. Used for the first chapter of OSINT challenges.
|
||||
* Blog: a blog with information hidden within it. Used for the first chapter of web challenges.
|
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
|
||||
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<title>The SECRET blog of Robert Helmont</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<h1>Hey! This is a secret page, you cannot enter!</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- But while you're here, maybe you need this: {flag_YouCanReadHTMLCommentsToo}-->
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,3 @@
|
|||
function PrintThis() {
|
||||
window.alert("Woah, easy cowboy. Here is your flag: {flag_YouCanReadJSToo!}")
|
||||
}
|
|
@ -8,6 +8,7 @@
|
|||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
|
||||
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<script src="application.js"></script>
|
||||
<title>The blog of Robert Helmont</title>
|
||||
</head>
|
||||
|
||||
|
@ -30,6 +31,10 @@
|
|||
odit repellendus culpa quia obcaecati quisquam. Sapiente accusamus possimus tenetur blanditiis
|
||||
laudantium inventore modi vitae.</p>
|
||||
</div>
|
||||
<div class="post" id="hidden-post">
|
||||
<h2>You can even do things like this</h2>
|
||||
<p>{flag_YouCannotSeeMe}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -12,4 +12,8 @@
|
|||
|
||||
#hidden {
|
||||
color: white;
|
||||
}
|
||||
|
||||
#hidden-post {
|
||||
margin-left: 10000px;
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
# 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?
|
|
@ -1 +0,0 @@
|
|||
* 13 May 1840
|
|
@ -0,0 +1,11 @@
|
|||
# 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?
|
||||
|
||||
There is this guy using the name Robert Helmont. Here is a link to his blog. What do you see?
|
||||
|
||||
Apparently, he talk *about* himself on another page. But I can't find the link. Where is it? What do you see?
|
||||
|
||||
4 answers needed.
|
|
@ -0,0 +1,3 @@
|
|||
* {flag_YouCannotFindMe}
|
||||
* {flag_YouCanReadHTMLCommentsToo}
|
||||
* {flag_YouCanReadJSToo!}
|
Loading…
Reference in New Issue