Hello all,
I have written numerous functions that check all user entered data on my
site via POST and GET. My question is this: once my data checks out as
being valid, I sometimes store it in SESSION as I move between pages,
and eventually use the values in SESSION to update my database. Do I
need to re-check the values in SESSION to make sure they are still valid
before updating the database? In other words, I know session data
resides on the server, but how possible/likely is it that a malicious
user could fake session data after or in lieu of my initial error
checks? All pages are protected by SSL if that makes any difference.
Thanks in advance.
Marcus
I have written numerous functions that check all user entered data on my
site via POST and GET. My question is this: once my data checks out as
being valid, I sometimes store it in SESSION as I move between pages,
and eventually use the values in SESSION to update my database. Do I
need to re-check the values in SESSION to make sure they are still valid
before updating the database? In other words, I know session data
resides on the server, but how possible/likely is it that a malicious
user could fake session data after or in lieu of my initial error
checks? All pages are protected by SSL if that makes any difference.
Thanks in advance.
Marcus
Comment