I was preparing a new website on my cloud server and before changing the domain's pointing IP I decided to use telnet to make a quick test.
Since each site is a vhost I can use a different domain (which points to the same server) and I get a result like this:
$ telnet domain.example.com 80
Trying <server.ip>...
Connected to domain.example.com.
...
All good, but then I tried to connect to the IP directly:
$ telnet <server.ip> 80
And got an interesting response:
Trying <server.ip>...
Connected to <different-domain.com>.
Where is this unknown different-domain coming from? Is it a random thing? Does it mean I've got a security problem?