我们的应用服务器收到了一些奇怪的请求,http 标头如下:
"Content-Type": "application/x-www-form-urlencoded",
"Content-Length": "3177",
"Host": "xxxxxxxxx",
"Accept": "*/*",
"Accept-Encoding": "gzip",
"Msisdn": "12345678",
并且使用的 http 帖子正文以file_get_contents('php://input')
以下开头:ISDN: 12345678\r\n\r\n
Msisdn
实体标头ISDN: 12345678\r\n\r\n
不是由应用程序客户端发送的。
我们用 cpp 编写的应用程序使用 libcurl 来处理 http 请求。我真的不知道现在发生了什么。尤其是ISDN: 12345678\r\n\r\n
帖子正文内容。
欢迎所有建议。