Files
hacktricks-cloud/src/pentesting-cloud/digital-ocean-pentesting/do-services/do-projects.md
Carlos Polop 4ef00e6b1b translate fix
2025-01-01 23:55:17 +01:00

640 B

DO - Projects

{{#include ../../../banners/hacktricks-training.md}}

Basic Information

project is just a container for all the services (droplets, spaces, databases, kubernetes...) running together inside of it.
For more info check:

{{#ref}} ../do-basic-information.md {{#endref}}

Enumeration

It's possible to enumerate all the projects a user have access to and all the resources that are running inside a project very easily:

doctl projects list # Get projects
doctl projects resources list <proj-id> # Get all the resources of a project

{{#include ../../../banners/hacktricks-training.md}}