[PATCH 1/2] git-instaweb: support Fedora/Red Hat apache module path

2018-08-08 Thread Sebastian Kisela
Junio thanks for the tip! Your suggestion definitely looks better. BTW. I apologize for polluting the git mailing list with the recent email. I am still new to git-send-email.

[PATCH 1/2] git-instaweb: support Fedora/Red Hat apache module path

2018-08-08 Thread Sebastian Kisela
systems. Written with assistance of Todd Zullinger and Junio C Hamano . Signed-off-by: Sebastian Kisela --- git-instaweb.sh | 18 +++--- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/git-instaweb.sh b/git-instaweb.sh index 47e38f34c..675add184 100755 --- a/git

[PATCH] git-instaweb.sh: Generate unixd module loading

2018-08-08 Thread Sebastian Kisela
AH00136: Server MUST relinquish startup privileges before accepting connections. Please ensure mod_unixd or other system security module is loaded. Signed-off-by: Sebastian Kisela --- git-instaweb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-instaweb.sh b/git

[PATCH 2/2] git-instaweb: fix apache2 config with apache >= 2.4

2018-08-07 Thread Sebastian Kisela
the unixd module. This works with older httpd as well, so no IfVersion conditional is needed. (Tested with httpd-2.2.15 on CentOS-6.) Written with assistance of Todd Zullinger Signed-off-by: Sebastian Kisela --- git-instaweb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --gi

[PATCH 1/2] git-instaweb: support Fedora/Red Hat apache module path

2018-08-07 Thread Sebastian Kisela
systems. Written with assistance of Todd Zullinger Signed-off-by: Sebastian Kisela --- git-instaweb.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git-instaweb.sh b/git-instaweb.sh index 47e38f34c..e42e58528 100755 --- a/git-instaweb.sh +++ b/git-instaweb.sh @@ -332,6 +332,8

[PATCH] Sanitize escape char sequences coming from server

2018-06-21 Thread Sebastian Kisela
From: Sebastian Kisela Fix volnurability against MITM attacks on client side by replacing non printable and non white space characters by "?". Fixes: CVE-2018-121 Signed-off-by: Sebastian Kisela --- sideband.c | 20 t/t5401-update-hoo