Skip to content

nicolaisueper/xss-guestbook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

xss-guestbook

This is a basic NodeJS application for testing out XSS payloads.

Setup

cd server && npm install

Starting the server

cd server; npm start

Model

Guestbook:

interface GuestbookEntry {
  id: number,
  text: string,
  author: string
}

Routes

- GET /             -> Frontend
- GET /api          -> Get all guestbook entries
- GET /api/:id      -> Get guestbook entry by index / id
- POST /api         -> Insert guestbook entry
- DELETE /api/:id   -> Delete guestbook entry by index / id

About

Guestbook application for testing out XSS payloads

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published