Di seguito è riportato il seguente pseudo-codice:
public updated(int id) {
// Note that variable **id** is not surrounded by single/double quotes.
sql = "Update table user set status=2 where user_id=**id** ";
// execute command
}
È vulnerabile all'iniezione SQL (forse l'iniezione SQL aritmetica)?