From b87276462408b718cd05d0dd263eb7a865e5a7df Mon Sep 17 00:00:00 2001 From: str4d <str4d@mail.i2p> Date: Sun, 21 Apr 2013 13:27:28 +0000 Subject: [PATCH] Use HTTP 400 for Bad URI --- .../java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java | 2 +- installer/resources/proxy/baduri-header.ht | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java index eccdc480e8..67fdf31e3d 100644 --- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java +++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java @@ -163,7 +163,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelHTTPClientBase implements Runn "The request uses a bad protocol. " + "The I2P HTTP Proxy supports http:// requests ONLY. Other protocols such as https:// and ftp:// are not allowed.<BR>").getBytes(); private final static byte[] ERR_BAD_URI = - ("HTTP/1.1 403 Bad URI\r\n" + + ("HTTP/1.1 400 Bad URI\r\n" + "Content-Type: text/html; charset=iso-8859-1\r\n" + "Cache-control: no-cache\r\n" + "\r\n" + diff --git a/installer/resources/proxy/baduri-header.ht b/installer/resources/proxy/baduri-header.ht index 49fb39a835..012cdef589 100644 --- a/installer/resources/proxy/baduri-header.ht +++ b/installer/resources/proxy/baduri-header.ht @@ -1,4 +1,4 @@ -HTTP/1.1 403 Bad URI +HTTP/1.1 400 Bad URI Content-Type: text/html; charset=UTF-8 Cache-control: no-cache Connection: close -- GitLab