This mini project demonstrates a Stored Cross-Site Scripting (XSS) vulnerability by implementing a simple blog comment system using Node.js and Express. It shows how user-submitted comments without proper sanitization can lead to malicious script execution.
- Submit comments on a blog post
- Vulnerable version (no input sanitization) showing XSS attack
- Node.js
- Express.js
- HTML
- Cybersecurity
- Web Security
- Stored XSS
- Vulnerability Demonstration
git clone https://github.com/your-username/stored-xss-demo-CS-MiniProject.git
cd stored-xss-demo-CS-MiniProject
npm install
npm run start
<script>alert("XSS Attack")</script>
🚀 This project was built for a Cyber Security assignment (Mini Project) to understand real-world web vulnerabilities.