Apache CouchDB

5984_pentesting_couchdb couch

Apache CouchDB is an open-source NoSQL database implement the document-based model store with JSON documents.

The database may have a management page at /_utils.

Common endpoints:

  • /_all_dbs: list all databases
  • /<db_name>/_all_docs: list all documents IDs
  • /<db_name>/<doc_id>: fetch a document
  • ...