mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Merge pull request #3776 from hardillb/relaxed-http-req-headers
Allow HTTP Headers not in spec
This commit is contained in:
		@@ -91,6 +91,11 @@
 | 
			
		||||
        <label for="node-input-senderr" style="width: auto" data-i18n="httpin.senderr"></label>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="form-row">
 | 
			
		||||
        <input type="checkbox" id="node-input-insecureHTTPParser" style="display: inline-block; width: auto; vertical-align: top;">
 | 
			
		||||
        <label for="node-input-insecureHTTPParser", style="width: auto;" data-i18n="httpin.insecureHTTPParser"></label>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    <div class="form-row">
 | 
			
		||||
        <label for="node-input-ret"><i class="fa fa-arrow-left"></i> <span data-i18n="httpin.label.return"></span></label>
 | 
			
		||||
@@ -227,6 +232,7 @@
 | 
			
		||||
            persist: {value:false},
 | 
			
		||||
            proxy: {type:"http proxy",required: false,
 | 
			
		||||
                    label:RED._("node-red:httpin.proxy-config") },
 | 
			
		||||
            insecureHTTPParser: {value: false},
 | 
			
		||||
            authType: {value: ""},
 | 
			
		||||
            senderr: {value: false},
 | 
			
		||||
            headers: { value: [] }
 | 
			
		||||
@@ -338,6 +344,12 @@
 | 
			
		||||
            } else {
 | 
			
		||||
                $("#node-input-useProxy").prop("checked", false);
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            if (node.insecureHTTPParser) {
 | 
			
		||||
                $("node-intput-insecureHTTPParser").prop("checked", true)
 | 
			
		||||
            } else {
 | 
			
		||||
                $("node-intput-insecureHTTPParser").prop("checked", false)
 | 
			
		||||
            }
 | 
			
		||||
            updateProxyOptions();
 | 
			
		||||
            $("#node-input-useProxy").on("click", function() {
 | 
			
		||||
                updateProxyOptions();
 | 
			
		||||
 
 | 
			
		||||
@@ -244,6 +244,10 @@ in your Node-RED user directory (${RED.settings.userDir}).
 | 
			
		||||
                                delete options.headers[h];
 | 
			
		||||
                            }
 | 
			
		||||
                        })
 | 
			
		||||
 | 
			
		||||
                        if (node.insecureHTTPParser) {
 | 
			
		||||
                            options.insecureHTTPParser = true
 | 
			
		||||
                        }
 | 
			
		||||
                    }
 | 
			
		||||
                ],
 | 
			
		||||
                beforeRedirect: [
 | 
			
		||||
 
 | 
			
		||||
@@ -554,7 +554,8 @@
 | 
			
		||||
        },
 | 
			
		||||
        "status": {
 | 
			
		||||
            "requesting": "requesting"
 | 
			
		||||
        }
 | 
			
		||||
        },
 | 
			
		||||
        "insecureHTTPParser": "Disable strict HTTP parsing"
 | 
			
		||||
    },
 | 
			
		||||
    "websocket": {
 | 
			
		||||
        "label": {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user