I have a website that communicates with an embedded swf object.
The flash runs sendAndLoad(“URL”, receiver) command to transfer xml strings with server and the server uses file_get_contents(“php://input”) to receive xml string from flash . Should i worry about sql injection attacks?
I have a website that communicates with an embedded swf object. The flash runs
Share
Short answer: Yes
A bit longer answer: While it’s not instantly obvious, a request CAN be forged and cause injection if the data isn’t escaped properly. Just because the data usually comes from a flash object doesn’t mean one can’t create his own script to send malicious data.