Express
Web application framework for Node.js
Enumeration
When facing
Login forms, try to mess withContent-Typeheaders, for example changing itapplication/jsonin thePOSTrequest:When the server accepts
JSONinput, it typically parses this input directly into JavaScript objects.If the backend uses
MongoDB(NoSQL), the login authentication might involve queryingMongoDBdirectly with thisJSONdata.Crashing the site with invalid
JSONcan reveal thestack trace.
server.jsis a common name for a Node application and is a good place to look for the source code.
Last updated