Hi guys, i have a problem with HTTP GET Request.
Im connected to socket so i want to get a data from 1 site, so here is how looks like my "query": send(Socket,"GET /test.php HTTP/1.1\r\nHost: anticheat.serb-craft.com\r\nConnection: close\r\n\r\n", strlen("GET /test.php HTTP/1.1\r\nHost: anticheat.serb-craft.com\r\nConnection: close\r\n\r\n"),0);
The result is a 404, meaning the page could not be found on the server you connected to. To what server did you connect your Socket? I think you're connection to the wrong server, since the returned Server header differs from what I get as a result when connection to the site you are trying to access.
In the response I got connecting to the link you posted, the server header contained the value "Apache/2.4.10 (Debian)", meaning the server type differs.
Judging from the content result you posted, you connected to a server from Google. So your code is currently trying to access a page named /test.php on a Google server, with a provided Host header which doesn't exists on the server. Google's server is giving you a 404 back, and that's the result you are experiencing.
Try scanning the code where you connect to the server, maybe you entered a bad site name or IP address there. If you can't find the error, post that part of the code so we can help look for the exact error, but I think this should be enough to get you going.