Chapter 1 Cyber Security
Chapter 1 Cyber Security
Most people think that if they use ssl and adopt the PCI(payment card
industry) standards the website is secure. But even after using ssl and
adopting PCI scanning methods still website is insecure.
o <script>alert('XSS Attack!');</script>
3. Example:
2. <script>alert('XSS Attack');</script>
5. Result:
The attacker’s alert script pops up, showing a message in the victim’s
browser, as if it was a legitimate part of the website.
Conclusion:
XSS vulnerabilities occur when user input is not properly sanitized,
allowing attackers to inject malicious scripts that are executed by other
users' browsers. It’s a serious risk because it can lead to session hijacking,
data theft, or other forms of exploitation.
https://www.geeksforgeeks.org/what-is-cross-site-scripting-xss/
3. Information leakage(78%):
5.Broken authentication(71%):
6.SQl injection(32%):
But SSL only protects data in transit—while it's moving between your
browser and the server. It does not protect against attacks on the website
itself (the server) or your browser (the client). Many successful attacks
happen because of flaws in the application, not the connection. So even if
a website uses SSL, it can still have serious security vulnerabilities.