Tags: misc 

Rating:

# Where am I?

We're asked to find the city where the server for tamuctf.com is located. This can easily be done by just punching the website's IP address into any online IP info lookup tool. First, we need to get the IP of the website. This can be done by just pinging it.

```
$ ping tamuctf.com
```

![](https://raw.githubusercontent.com/shawnduong/ctf-writeups/master/2019-TAMU/images/Where-am-I-1.png)

And then we can just look up its location online. One of my favorite tools for this is [ipinfo.io](https://ipinfo.io).

![](https://raw.githubusercontent.com/shawnduong/ctf-writeups/master/2019-TAMU/images/Where-am-I-2.png)

Original writeup (https://github.com/shawnduong/ctf-writeups/blob/master/2019-TAMU/Misc/Where-am-I.md).