Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Missing Image:Web:75pts

Max has been trying to add a picture to his first website. He uploaded the image to the server, but unfortunately, the image doesn't seem to be loading. I think he might be looking in the wrong subdomain...
https://hidden.challenges.nactf.com/

Solution

URLにアクセスするが、以下のような緑のページだった。
Where's the flag?
site.png
ソースを見ると、以下のようにflag.pngの場所がおかしいようだ。

<!DOCTYPE html>
<html lang="en">
<head>
    <link rel="stylesheet" href="style.css">
    <title>Where's the flag?</title> <!-- (It's not here) -->
</head>
<body>
<h1>Where's the flag?</h1>
<img src="http://challenges.nactf.com/flag.png" alt="">
</body>
</html>

正しい場所https://hidden.challenges.nactf.com/flag.pngに以下の画像があった。
flag.png
flagが書かれている。

nactf{h1dd3n_1mag3s}