因此,我有一个用于软件的身份验证系统,在该系统中,我向服务器发送一个GET请求,以对其进行验证,然后回显true或false。每当我使用Winsock发送HTTP请求时,我都会收到一个错误:400错误的请求,下面是openresty。任何帮助表示赞赏!
#define _WIN32_WINNT 0x0400
#include <iostream>
#include <locale>
#include <sstream>
#include <vector>
#include <stdio.h>
#include <string.h>
#include <windows.h>
#include <winsock2.h>
#pragma comment(lib, "ws2_32.lib")
using namespace std;
void main() {
WSADATA wsaData;
SOCKET Socket;
SOCKADDR_IN SockAddr;
int lineCount = 0;
int rowCount = 0;
struct hostent* host;
locale local;
char buffer[10000];
int i = 0;
int nDataLength;
string website_HTML;
// website url
string url = "www.mysitewebsite.com/auth/auth.php?hwid=" + hwidPro +
"&username=" + Username + "&password=" + Password;
// HTTP GET
string get_http =
"GET / HTTP/1.1\r\nHost: " + url + "\r\nConnection: close\r\n\r\n";
if(WSAStartup(MAKEWORD(2, 2), &wsaData) != 0) {
cout << "WSAStartup failed.\n";
system("pause");
// return 1;
}
Socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
host = gethostbyname("www.mysite.com");
SockAddr.sin_port = htons(80);
SockAddr.sin_family = AF_INET;
SockAddr.sin_addr.s_addr = *((unsigned long*)host->h_addr);
if(connect(Socket, (SOCKADDR*)(&SockAddr), sizeof(SockAddr)) != 0) {
cout << "Could not connect";
system("pause");
// return 1;
}
// send GET / HTTP
send(Socket, get_http.c_str(), strlen(get_http.c_str()), 0);
// recieve html
while((nDataLength = recv(Socket, buffer, 10000, 0)) > 0) {
int i = 0;
while(buffer[i] >= 32 || buffer[i] == '\n' || buffer[i] == '\r') {
website_HTML += buffer[i];
i += 1;
}
}
closesocket(Socket);
WSACleanup();
const char* result = website_HTML.c_str();
Log::Msg(result);
if(website_HTML == "true") {
authsucsess();
} else {
Log::Fatal(result);
Log::Fatal("Invalid Login or HWID");
exit(0);
}
}
我已将帖子编辑为一个最小的,可重复的示例。希望更好 编辑2:我已经添加了HTTP响应:
HTTP/1.1 400 Bad Request
Date: Sat, 22 Jun 2019 21:33:11 GMT
Content-type: text/html
content-length: 170
connection: close
Server: awex
X-Xss Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Request-ID: 7ccdf09347f06d7a061ad41aa45d5af7
<html>
<head><title>400 Bad Request</title></head>
<body bgcolor="white">
<center><h1>400 Bad Request</h1></center>
<hr><center>openresty</center>
</body>
</html>
答案 0 :(得分:2)
您的GET
请求格式不正确。这是您要发送的:
GET / HTTP/1.1
Host: www.mysitewebsite.com/auth/auth.php?hwid=[...]&username=[...]&password=[...]
Connection: close
它应该看起来像这样:
GET /auth/auth.php?hwid=[...]&username=[...]&password=[...] HTTP/1.1
Host: www.mysitewebsite.com
Connection: close
尝试一下:
string s_host = "www.mysitewebsite.com";
string s_resource = "/auth/auth.php";
string s_query = "?hwid=" + hwidPro + "&username=" + Username + "&password=" + Password;
string url = s_host + s_resource + s_query;
string get_http = "GET " + s_resource + s_query + " HTTP/1.1\r\n"
"Host: " + s_host + "\r\n"
"Connection: close\r\n"
"\r\n";
...
host = gethostbyname(s_host.c_str());
...
send(Socket, get_http.c_str(), get_http.size(), 0);
...
while((nDataLength = recv(Socket, buffer, sizeof(buffer), 0)) > 0)
{
website_HTML.append(buffer, nDataLength);
}
...