[Bug 61860] Headers duplication when 416 status code occurs

2020-01-29 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61860

--- Comment #12 from Alex Bary  ---
We Offer ATT BellSouth Email Support Contact Help Number +1-805438-2911 for fix
BellSouth Emails, Server like Login, Sign in, Password Recovery, Forget
Password etc. Call BellSouth.net Email Help Number.
http://bellsouth-email.contactsupporthelpnumber.com/
http://bellsouth-email.contactsupporthelpnumber.com/bellsouth-email-contact-number-att-contact.php
http://bellsouth-email.contactsupporthelpnumber.com/bellsouth-email-customer-service-number-usa.php
http://bellsouth-email.contactsupporthelpnumber.com/bellsouth-email-forget-password-reset-password-iphone-android.php
http://bellsouth-email.contactsupporthelpnumber.com/bellsouth-email-login-problems-failed-iphone-yahoo-signin-android.php
http://bellsouth-email.contactsupporthelpnumber.com/bellsouth-email-not-working-iphone-ipad-mac-android-window-outlook.php
http://bellsouth-email.contactsupporthelpnumber.com/bellsouth-smtp-server-settings-iphone-outlook-mac-android.php

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 61860] Headers duplication when 416 status code occurs

2020-01-29 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61860

--- Comment #11 from Alex Bary  ---
Contact icloud email customer support. Apple teams will fix icloud mail login,
sign in, forget password recovery,iphone, android etc. visit here
http://icloud-email.contactsupporthelpnumber.com/
http://icloud-email.contactsupporthelpnumber.com/icloud-email-contact-number.php
http://icloud-email.contactsupporthelpnumber.com/icloud-email-customer-service-number-usa.php
http://icloud-email.contactsupporthelpnumber.com/icloud-email-login-problems-iphone-safari-android-failed.php
http://icloud-email.contactsupporthelpnumber.com/icloud-email-not-working-iphone-windows-outlook-android-ipad.php
http://icloud-email.contactsupporthelpnumber.com/icloud-email-forgot-password-reset-recovery-password-outlook-android-iphone-mac.php
http://icloud-email.contactsupporthelpnumber.com/icloud-technical-support-phone-number.php

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 45187] Long File name requests gives FORBIDDEN response

2020-01-29 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=45187

--- Comment #36 from Giovanni Bechis  ---
Created attachment 36987
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=36987=edit
long filenames 404 patch

This diff (very similar to your patch and rebased to trunk) will return 404
asap.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 63893] Bogus warning "unsupported command 20"

2020-01-29 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63893

--- Comment #1 from Giovanni Bechis  ---
Created attachment 36986
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=36986=edit
Patch to prevent from logging local proxy connections

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 45187] Long File name requests gives FORBIDDEN response

2020-01-29 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=45187

--- Comment #35 from Roman Garcia  ---
(In reply to Giovanni Bechis from comment #33)
> I think it fails in apr_filepath_get in apr/file_io/unix/filepath.c,
> getcwd(3) fails with ERANGE because the specified path is longer than
> PATH_MAX (as defined in limits.h of your os).

I think you're seeing what I saw back then. Then I submitted this patch which
actually does two things:

1. Responds APR_ENAMETOOLONG when trying to check for filepath longer than
supported

2. On APR_ENAMETOOLONG responses, instead of FORBIDDEN, result in APR_NOFILE
which I believe resulted in some 404 - NOT FOUND response after all

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 45187] Long File name requests gives FORBIDDEN response

2020-01-29 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=45187

--- Comment #34 from Roman Garcia  ---
(In reply to Luca Toscano from comment #32)
> Hi Roman,
> 
> have you tried to modify
> http://httpd.apache.org/docs/2.4/mod/core.html#limitrequestline ?

Not sure if I did, but think it didn't get as far as checking a request-line
limit. The error, 12 years ago, was related to HTTPd trying to stat the FS for
a file which failed for the file path length being over what the FS supported.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 54343] Add sanity checks for malloc() in mpm_winnt.c and service.c

2020-01-29 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=54343

--- Comment #4 from Giovanni Bechis  ---
Conversion from malloc to ap_malloc available in bz 64049
(https://bz.apache.org/bugzilla/attachment.cgi?id=36958=diff)

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 45187] Long File name requests gives FORBIDDEN response

2020-01-29 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=45187

--- Comment #33 from Giovanni Bechis  ---
I think it fails in apr_filepath_get in apr/file_io/unix/filepath.c,
getcwd(3) fails with ERANGE because the specified path is longer than PATH_MAX
(as defined in limits.h of your os).

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 28657] mod_negotiation should not store Content-Location header as an error header

2020-01-29 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=28657

--- Comment #78 from Md Redoy Hossain  ---
Hello, I check your blogs on a regular basis. Your humoristic style is witty,
keep up the good work.

I have been running a health-related blog site. You guys may be love to read.
check it below.
http://expertpreviews.com/
here are some health-related article:
http://expertpreviews.com/10-surprising-health-benefits-of-taking-a-bath-or-shower-every-day/
http://expertpreviews.com/10-best-foods-sources-of-vitamin-c/
http://expertpreviews.com/top-5-food-sources-to-boost-your-bodys-vitamin-d/
http://expertpreviews.com/10-primary-rules-for-good-health/
http://expertpreviews.com/top-15-health-tips-for-healthy-life/
http://expertpreviews.com/10-essential-ways-for-a-healthy-kidney/
http://expertpreviews.com/benefits-of-exercise/
http://expertpreviews.com/15-reasons-why-enough-sleep-is-important/

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org