South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
php has functions to handle that already, they could do $string = html_special_chars($string); or they could do $string = str_replace('<', '', $string);sburrell said:all they have to do is edit the asp/php input script then, to reject anything thing contains a ; ( or < in it and any script just wont function.
it only escapes certain sql characters if magic_quptes is turned on and remember you can url encode stuff to get passed it, i dont have faith in their scripting abailities to be honest, i dont think they have it onpookfuzz said:From the content they have been able to put into the form I don’t think that SQL injection will work, that part at least seems to be escaping any funny characters.
Many of the php based database functions automatically escape any parameters, will be sad if an injection attack can be done as who knows what else the server is responsible for, could be a big headache for the admins.