mirror of https://gitlab.com/bashrc2/epicyon
Check length of content-length with caldav
parent
85c4ec0c1f
commit
a423c260c7
|
@ -18437,6 +18437,14 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
print(endpoint_type.upper() + ' has no content-length')
|
print(endpoint_type.upper() + ' has no content-length')
|
||||||
self._400()
|
self._400()
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# check that the content length string is not too long
|
||||||
|
if isinstance(self.headers['Content-length'], str):
|
||||||
|
max_content_size = len(str(self.server.maxMessageLength))
|
||||||
|
if len(self.headers['Content-length']) > max_content_size:
|
||||||
|
self._400()
|
||||||
|
return
|
||||||
|
|
||||||
length = int(self.headers['Content-length'])
|
length = int(self.headers['Content-length'])
|
||||||
if length > self.server.max_post_length:
|
if length > self.server.max_post_length:
|
||||||
print(endpoint_type.upper() +
|
print(endpoint_type.upper() +
|
||||||
|
|
Loading…
Reference in New Issue