Block a user
[Feature]: User Authentication
Initial Admin Account
- Username: admin
- Password: admin123
- Created automatically by setup.js
- User should change password after first login
Implementation Order
- Backend…
[Feature]: Bulk Upload from CSV
[Feature]: User Authentication
[Bug]: Hardcoded IP causing Testing to fail
[Bug]: Hardcoded IP causing Testing to fail
Files to Create
backend/.env PORT=3001 CORS_ORIGINS=http://YOUR_IP:3000
frontend/.env REACT_APP_API_BASE=http://YOUR_IP:3001/api REACT_APP_API_HOST=http://YOUR_IP:3001
…
[Bug]: Hardcoded IP causing Testing to fail
Cannot edit or enter another vendor under the same CVE
Cannot edit or enter another vendor under the same CVE
Issue Resolution Root Cause: The database schema had a UNIQUE constraint on cve_id alone, preventing multiple vendors from being added to the same CVE-ID. Fix Applied:
- Database Schema…