Rating:

# copper gate
inspect the source code
```

```
... and navigate to the image path...here we find an interesting textfile

http://18.191.227.167/images/sitenotes.txt

Site is in development, but active updates can be viewed by going to **/devvvvv/index.html**

http://18.191.227.167/devvvvv/home.html

```bash
$ cat index.html
```
<meta http-equiv="refresh" content="0; URL='home.html'" />

```

```
```bash
$ curl http://18.191.227.167/enterthecoppergate/gate.html
```
```
<h1>CONGRATULATIONS!</h1>
<h2>You have found the Copper Flag.</h2>






VFVDVEZ7VzNsYzBtM19UMF9UaDNfMDQ1MTVfVGgzX0MwcHAzcl9LM3l9Cg==
```
```bash
$ echo VFVDVEZ7VzNsYzBtM19UMF9UaDNfMDQ1MTVfVGgzX0MwcHAzcl9LM3l9Cg== | base64 -d
```

**TUCTF{W3lc0m3_T0_Th3_04515_Th3_C0pp3r_K3y}**

Original writeup (https://github.com/h4ck7u5/CTF-writeups/blob/master/TUCTF/2018/copper_gate.md).