Advertisement
Chigs34

hsj

May 22nd, 2020
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. Impact of XSS
  2. ● Cookie theft
  3. ● Keylogging
  4. ● Phishing
  5. ● URL Redirection
  6.  
  7. 2 / 5
  8. Background Concept about XSS
  9. Cross-Site Scripting (XSS) attacks are a type of injection, in which malicious scripts are
  10. injected into otherwise benign and trusted web sites. XSS attacks occur when an
  11. attacker uses a web application to send malicious code, generally in the form of a
  12. browser side script, to a different end user. Flaws that allow these attacks to succeed
  13. are quite widespread and occur anywhere a web application uses input from a user
  14. within the output it generates without validating or encoding it.
  15. ● An attacker can use XSS to send a malicious script to an unsuspecting user. The end
  16. user’s browser has no way to know that the script should not be trusted, and will
  17. execute the script. Because it thinks the script came from a trusted source, the
  18. malicious script can access any cookies, session tokens, or other sensitive
  19. information retained by the browser and used with that site.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement