Hi,
I’m posting here to see if anyone has had that problem. After seeing my website going down at some repeatable time. I investigate what happens and I saw it was getting hit with strange url. The regular ones with the name of the template group / template name / entry title and after that they add some characters like this:
&sa=U&ei=de9GT_m_C8Pq8QPyyZCSDg&ved=0CEYQFjAP&usg=AFQjCNFDZbSjh9i287S5U9pDPbYT6cBzlQ
so that gives for the url
/template_group/template/entry_url&sa=U&ei=de9GT_m_C8Pq8QPyyZCSDg&ved=0CEYQFjAP&usg=AFQjCNFDZbSjh9i287S5U9pDPbYT6cBzlQ
So those strange characters are url encoded variables, if we decode them we get:
&sa=U&ei=de9GT_m_C8Pq8QPyyZCSDg&ved=0CEYQFjAP&usg=AFQjCNFDZbSjh9i287S5U9pDPbYT6cBzlQ
From my researches it seems like a case of Http Parameter Pollution which tries to compromise my website. It doesn’t goes far security wise, but it slow down the website tremendously, even crashing it at some time.
As anyone seen that, has anyone a solution to detect that and redirect or block the access if such string is at the end of the url?
Edit well it seems when I submit my post here it decodes the characters I wrote on top of the post. Normally that string contains percents signs and so on, like in an url encoded string.
Thank you
Alex