diff options
author | Micael Karlberg <[email protected]> | 2011-11-01 18:39:48 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-11-01 18:39:48 +0100 |
commit | f8f0496c1b85169f6e72b6f875c521f09a471bbf (patch) | |
tree | 26c5761f96eabdd7f4f1ec83e5edb7853b180db6 /lib/inets/test/httpd_SUITE.erl | |
parent | 2da7b99f186e7a8f9a74b1c7aa60b1354cbc31ea (diff) | |
parent | 5fdd7be5b5b99658f7f9d05e7df3a572d73dd6cb (diff) | |
download | otp-f8f0496c1b85169f6e72b6f875c521f09a471bbf.tar.gz otp-f8f0496c1b85169f6e72b6f875c521f09a471bbf.tar.bz2 otp-f8f0496c1b85169f6e72b6f875c521f09a471bbf.zip |
[httpd] GET request with malformed header date caused
server crash (non-fatal) with no reply to client. Will
now result in a reply with status code 400.
OTP-9674
Merge branch 'bmk/inets/httpd/xss_with_bad_header_date/OTP-9674' into bmk/inets/inets536_integration
Conflicts:
lib/inets/doc/src/notes.xml
lib/inets/src/inets_app/inets.appup.src
lib/inets/test/httpd_test_lib.erl
lib/inets/vsn.mk
Diffstat (limited to 'lib/inets/test/httpd_SUITE.erl')
-rw-r--r-- | lib/inets/test/httpd_SUITE.erl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/inets/test/httpd_SUITE.erl b/lib/inets/test/httpd_SUITE.erl index 4a510f013e..731a50c70b 100644 --- a/lib/inets/test/httpd_SUITE.erl +++ b/lib/inets/test/httpd_SUITE.erl @@ -520,14 +520,14 @@ http_1_1_ip(doc) -> ["HTTP/1.1"]; http_1_1_ip(suite) -> [ - ip_host, - ip_chunked, - ip_expect, - ip_range, - ip_if_test, - ip_http_trace, - ip_http1_1_head, - ip_mod_cgi_chunked_encoding_test + %% ip_host, + %% ip_chunked, + %% ip_expect, + %% ip_range, + ip_if_test%% , + %% ip_http_trace, + %% ip_http1_1_head, + %% ip_mod_cgi_chunked_encoding_test ]. %%------------------------------------------------------------------------- |