InterviewSolution
| 1. |
What Is Xss? |
|
Answer» Cross-site SCRIPTING, the nightmare of Javascript. Because Javascript can RUN pages locally on the client SYSTEM as opposed to running everything on the server side, this can cause headaches for a programmer if variables can be changed DIRECTLY on the client’s webpage. There are a NUMBER of ways to protect against this, the easiest of which is input validation. Cross-site scripting, the nightmare of Javascript. Because Javascript can run pages locally on the client system as opposed to running everything on the server side, this can cause headaches for a programmer if variables can be changed directly on the client’s webpage. There are a number of ways to protect against this, the easiest of which is input validation. |
|