I have a aspx page that returned JSON data from the server.
Currently when I look at ?#?Firebug?, I can see all the data that is being transmitted.
Since its possible for anyone to view and steal this data, what steps
do I need to take so that my data is only viewed from within my page and
cannot be viewed otherwise.
You could use a library like crypto-js to encrypt all data that is sent to and from the server. However, most of the time, that is an overkill when you already use https (since you should make your application hack resistant via server side validation and safety is ensured by the real encryption offered by https).
Anurag MalaniPosted Jul 11, 2013, 1:15 PM
but i need to hide the firebug response......
when i call the url i will get the response data in firebug net tab.....
Sanjeeb LenkaPosted Jul 11, 2013, 1:00 PM