mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-01 20:42:11 +00:00
Fixing uri max size
Changing URI max size from 1024 to 1280 bytes
This commit is contained in:
parent
fc17d850b5
commit
f3a6461eaa
1 changed files with 5 additions and 1 deletions
6
docker/nginx/dist/conf/tpotweb.conf
vendored
6
docker/nginx/dist/conf/tpotweb.conf
vendored
|
@ -46,7 +46,11 @@ server {
|
||||||
client_body_buffer_size 128k;
|
client_body_buffer_size 128k;
|
||||||
client_header_buffer_size 1k;
|
client_header_buffer_size 1k;
|
||||||
client_max_body_size 2M;
|
client_max_body_size 2M;
|
||||||
large_client_header_buffers 2 1k;
|
|
||||||
|
### Changed from OWASP defaults
|
||||||
|
### To suit Kibana (long ajax uris) breaking 1024
|
||||||
|
### Still keeping it very true to 1k
|
||||||
|
large_client_header_buffers 2 1280;
|
||||||
|
|
||||||
### Mitigate Slow HHTP DoS Attack
|
### Mitigate Slow HHTP DoS Attack
|
||||||
### Timeouts definition ##
|
### Timeouts definition ##
|
||||||
|
|
Loading…
Reference in a new issue