2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

picoCTF 2021 Scavenger Hunt Writeup

Last updated at Posted at 2021-03-30

何度,心が折れても,あきらめずに粘り強く頑張った結果解けた問題なので,うれしさのあまり Writeup を残す。
image.png

見た目
image.png

まずソースを見る

<!doctype html>
<html>
  <head>
    <title>Scavenger Hunt</title>
    <link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto" rel="stylesheet">
    <link rel="stylesheet" type="text/css" href="mycss.css">
    <script type="application/javascript" src="myjs.js"></script>
  </head>

  <body>
    <div class="container">
      <header>
		<h1>Just some boring HTML</h1>
      </header>

      <button class="tablink" onclick="openTab('tabintro', this, '#222')" id="defaultOpen">How</button>
      <button class="tablink" onclick="openTab('tababout', this, '#222')">What</button>

      <div id="tabintro" class="tabcontent">
		<h3>How</h3>
		<p>How do you like my website?</p>
      </div>

      <div id="tababout" class="tabcontent">
		<h3>What</h3>
		<p>I used these to make this site: <br/>
		  HTML <br/>
		  CSS <br/>
		  JS (JavaScript)
		</p>
	<!-- Here's the first part of the flag: picoCTF{t -->
      </div>

    </div>

  </body>
</html>

Here's the first part of the flag: picoCTF{t
と書いてるので,CSSやjsを見ていくパターンと予測

CSS
image.png
2つ目Get

js
image.png
ヒントだけ
How can I keep Google from indexing my website?

robots.txtかな?
image.png
3つ目Get
ってか,またヒントが
I think this is an apache server... can you Access the next flag?

Apache特有か?
apache ctf でググったら ↓ これが出てきた

.htaccessか

image.png
ビンゴ!4つ目Get
まだヒントが
I love making websites on my Mac, I can Store a lot of information there.

MACの自動保存

確かMACにさしたUSBに変な隠しファイルがたくさんできてたよな。
消すんじゃなかった。
ネットで頑張ってみる。
あった。

image.png

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?