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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *