The SecOps Group Certified Cloud Pentesting eXpert - Azure CCPenX-Az Exam Questions
Preparing for the CCPenX-Az exam is simple with ExamsTeacher. We offer easy-to-understand study materials that help you learn the most important exam topics. You can study using our PDF questions, practice online with a real exam-style test, or use the desktop practice software. Choose the study method that works best for you and prepare at your own pace.
At ExamsTeacher, we keep our CCPenX-Az practice questions up to date. Whenever the exam syllabus or objectives change, we update our study materials so you always learn the latest topics. This helps you save time, avoid outdated content, and feel more confident when you take your exam.
A compromised developer account has Reader access to a resource group. Enumerate all Azure resources in that resource group and identify the exposed App Service name.
Correct Answer: A
finance-reporting-api
Detailed Solution:
Set the resource group:
RG= " rg-prod-apps-eastus "
List resources:
az resource list \
--resource-group " $RG " \
--output table
Expected output:
Name ResourceGroup Location Type
---------------------- --------------------- ---------- -------------------------------
finance-reporting-api rg-prod-apps-eastus eastus Microsoft.Web/sites
prod-reportstore01 rg-prod-apps-eastus eastus Microsoft.Storage/storageAccounts
kv-finance-prod rg-prod-apps-eastus eastus Microsoft.KeyVault/vaults
The exposed App Service is:
finance-reporting-api
================