> For the complete documentation index, see [llms.txt](https://morgan-bin-bash.gitbook.io/data-base/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://morgan-bin-bash.gitbook.io/data-base/couchdb-pentesting.md).

# CouchDB Pentesting

### [Directories](https://exploit-notes.hdks.org/exploit/database/couchdb-pentesting/#directories) <a href="#directories" id="directories"></a>

```sh
# List all databases
/_all_dbs

# Show information of the database
/<db_name>

# Futon administration interface
/_utils/
# Temporary View
/_utils/database.html?<database_name>/_temp_view
Copied!
```

<br>

### [Basic Operations](https://exploit-notes.hdks.org/exploit/database/couchdb-pentesting/#basic-operations) <a href="#basic-operations" id="basic-operations"></a>

```sh
# Create a new database
curl -X PUT https://example.com:5984/<new_database_name>

# Delete a database
curl -X DELETE https://example.com:5984/<database_name>
Copied!
```

### References

* <https://guide.couchdb.org/draft/tour.html>
