I'm learning how to save my project from attackers, so I have a question.
I have a form with username
and password
fields that are passed through to a PHP script.
The received array is like this: Array([username] => X, [password] => Y)
Can an attacker escape this array to inject arbitrary PHP code into my script?
If yes, then how he is doing that and how I can counteract?
Thanks for your help.