Re: [mod-security-users] checking single parameter value
Brought to you by:
victorhora,
zimmerletw
|
From: Alex V. <ale...@ss...> - 2006-04-13 13:41:35
|
On Jeu 13 avril 2006 15:23, joe barbish a =E9crit : > Thank you Alex for the explanation; > > But then why did the =3D sign pass in the hash value if the rule is s= aying > only allow multiple 0-9 a-z A-Z characters? Sorry, I just forgot to had a $ at the end, so yet it was allowing everything that begin with 0-9 a-z A-Z... So the correct rule is : "^[0-9a-zA-Z]*$" if you don't want the "=3D" or "^[0-9a-zA-Z]*=3D$" if the "=3D" is always the last char or "^[0-9a-zA-Z=3D]*$" if you want to allow the =3D sign everywhere |