WordPress 4.8.1 still vulnerable to Host Header Attack
learnwebdevelopment.review
WordPress 4.8.1 still vulnerable to Host Header Attack
1–10 of 14 posts
Re: WordPress 4.8.1 still vulnerable to Host Header Attack
#2Re: WordPress 4.8.1 still vulnerable to Host Header Attack
#3Re: WordPress 4.8.1 still vulnerable to Host Header Attack
#4I get where WordPress is coming from by not fixing this issue since it's an Apache thing. But since Apache's default value causes this to happen I think the framework should try to protect its users. The normal user that had their WordPress installed using an application installer on a shared host isn't going to know about this issue.
Re: WordPress 4.8.1 still vulnerable to Host Header Attack
#5Re: WordPress 4.8.1 still vulnerable to Host Header Attack
#6Re: WordPress 4.8.1 still vulnerable to Host Header Attack
#7I get where WordPress is coming from by not fixing this issue since it's an Apache thing. But since Apache's default value causes this to happen I think the framework should try to protect its users. The normal user that had their WordPress installed using an application installer on a shared host isn't going to know about this issue.
"Note: Under Apache 2, you must set UseCanonicalName = On and ServerName. Otherwise, this value reflects the hostname supplied by the client, which can be spoofed. It is not safe to rely on this value in security-dependent contexts."
So it seems to be clearly a Word Press issue.
Re: WordPress 4.8.1 still vulnerable to Host Header Attack
#8I get where WordPress is coming from by not fixing this issue since it's an Apache thing. But since Apache's default value causes this to happen I think the framework should try to protect its users. The normal user that had their WordPress installed using an application installer on a shared host isn't going to know about this issue.
server {
listen 80 default_server;
return 444;
}
Is something like this necessary for Apache as well? If yes, what are others using? (ignoring the non-standard but effective 444 return code)Re: WordPress 4.8.1 still vulnerable to Host Header Attack
#9I get where WordPress is coming from by not fixing this issue since it's an Apache thing. But since Apache's default value causes this to happen I think the framework should try to protect its users. The normal user that had their WordPress installed using an application installer on a shared host isn't going to know about this issue.