Tags: comment. web base64 

Rating: 5.0

__Bugs\_BunnyCTF-2017__

__Category__ - Web | __Points__ - 5

__Description:__

Nothing here !
http://52.53.151.123/web/web5.php
Author : Sold1er

__Solution:__

Fairly basic and simple challenge (as to be expected by the low points). After visiting the website, there isn't much there visually so I checked the source.
```

<html lang="EN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title Page</title>


<link href="//netdna.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">




</head>

<body>
<h1 class="text-center">Nothing here !!</h1>


<script src="//code.jquery.com/jquery.js"></script>

<script src="//netdna.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</body>

</html>
```
Note the ```` at the bottom, the string in the comment appears to be a Base64 encoded string.
Running this through a standard Base64-Decoder will give you the flag: ``Bugs_Bunny{529c429abde2171d0a25584472af8217}``

Original writeup (https://github.com/notdls/ctf-write-ups/tree/master/Bugs_BunnyCTF-2017/web/NothingHere-5).