cloud_enum command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cloud_enum: command not found
or when using sudo you get the following error message
sudo: cloud_enum: command not found
Solutions to cloud_enum: command not found
How To Fix cloud_enum: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cloud_enum is provided by cloud-enum package.
cloud-enum is:
cloud_enum enumerates public resources matching user requested keywords in public clouds: Amazon Web Services: Open S3 Buckets Protected S3 Buckets Microsoft Azure: Storage Accounts Open Blob Storage Containers Hosted Databases Virtual Machines Web Apps Google Cloud Platform: Open GCP Buckets Protected GCP Buckets Google App Engine sites
This program is useful for penetration testing (PENTEST) and network security analysis serving as OSINT.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cloud-enum
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cloud-enum.
sudo apt -y install cloud-enum
Or if you have aptitude installed you can use the following command.
sudo aptitude install cloud-enum
Summary
In this tutorial we learn how to fix cloud_enum command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.