What distinguishes a stored XSS attack from a reflected XSS attack?
- Reflected XSS requires user interaction, while stored XSS does not.
- Reflected XSS stores data on the server, while stored XSS reflects data to the user.
- Stored XSS involves persistent injection of malicious scripts, while reflected XSS involves immediate execution without persistence.
- Stored XSS occurs in client-side code, while reflected XSS occurs in server-side code.
Stored XSS refers to attacks where the injected script is permanently stored on the target server, affecting all users who view the compromised page. Reflected XSS, on the other hand, involves the immediate execution of the injected script without persistent storage.
Loading...
Related Quiz
- For load balancing, CodeIgniter allows the specification of multiple database servers in the ________ array.
- In a multi-user system, a CodeIgniter application needs to ensure consistent data state during simultaneous database updates. This is achieved through ________.
- In CodeIgniter, how do you manage library versioning and compatibility with different CodeIgniter versions?
- In CodeIgniter, how are data passed from the controller to a view?
- ________ is a critical aspect in CodeIgniter that needs optimization for handling high traffic.