InterviewSolution
Saved Bookmarks
| 1. |
Are there any security issues with AJAX? |
|
Answer» JavaScript acts as glue and renders plain view to the user through the view source of the page. It can't access the local file system without proper user permission. AJAX interaction can fetch data from servers-side components from where the entire page GETS loaded. DEVELOPERS can use a proxy pattern to perform AJAX interactions with external services. In this case, the developer would have to be careful not to expose the application model. Cybercriminals and reverse engineers can be MAJOR threats to the server-side components if they understand the data EXCHANGE method. |
|