php nginx服务器得到奇怪的标头并从http请求发布数据

时间:2017-09-30 08:54:28

标签: php http msisdn

我们的app服务器收到了一些奇怪的请求,http标题如下:

// On Server only
const superRequire = require;
require = function(module) {
    if (module === 'leaflet') module = 'leaflet-headless';
    return superRequire(module);
}

使用"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

我们的应用程序使用libcurl在cpp中编写来处理http请求。 我真的不知道现在发生了什么。特别是帖子正文内容中的ISDN: 12345678\r\n\r\n

欢迎所有建议。

1 个答案:

答案 0 :(得分:0)

客户端可以添加他们想要的任何标头,也可以添加代理服务器。某些移动网络会为所有请求添加此标头。

Detect an MSISDN (mobile number) with the browser