> For the complete documentation index, see [llms.txt](https://docs.prismacloud.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.prismacloud.io/release-notes/prisma-cloud-release-information/classic-releases/prisma-cloud-cspm-release-information/features-introduced-in-may-2023.md).

# Features Introduced in May 2023

Learn what’s new on Prisma® Cloud in May 2023.

* [New Features Introduced in 23.5.2](#new-features-may-2)
* [New Features Introduced in 23.5.1](#new-features-may-1)

## New Features Introduced in 23.5.2

* [New Features](#new-features2)
* [API Ingestions](#api-ingestions2)
* [New Policies](#new-policies2)
* [Policy Updates](#policy-updates2)
* [Changes in Existing Behavior](#changes-in-existing-behavior2)
* [REST API Updates](#rest-api-updates2)
* [Deprecation Notice](#deprecation-notice2)

## New Features

| FEATURE                                                                     | DESCRIPTION                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| --------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Release Notes Look Ahead Displayed on Home Page**                         | <p>The <strong>New in Prisma Cloud</strong> section on the Home page now includes information from the Look Ahead section of the release notes.</p><p>Use this information to access the release notes and stay informed on deprecation notices and changes in behavior.</p>                                                                                                                                                                                                                                                                                                                    |
| **Adoption Advisor Furthers Your Code & Build Hygiene**                     | <p>The Adoption Advisor now includes two additional checks for enforcing hygiene in the Code & Build phase.</p><p>You can <strong>Create Custom Secret Signature</strong> in the Code Policy Management category. This enables you to prevent developers from committing hard coded secrets based on custom signatures.</p><p>You can <strong>Add Drift Alert Rule</strong> in the Notifications category. This enables you to trace and get notified regarding the configuration changes between the deployed cloud resources and your IaC templates in order to quickly remediate drifts.</p> |
| **Attack Path Policies Displayed on Home Page, Command Center, and Alerts** | <p>Prisma Cloud <strong>Attack Path</strong> policies identify the confluence of issues that increase the likelihood of a security breach.</p><p>You can now view the Attack Path policies on the Homepage, Command Center dashboard, and the Alerts page as a specific <strong>Saved View</strong>.</p>                                                                                                                                                                                                                                                                                        |

## API Ingestions

| SERVICE                                                                   | API DETAILS                                                                                                                                                                                                                                                                   |
| ------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <mark style="background-color:orange;">Update</mark> **Amazon Translate** | <p><strong>aws-translate-terminology</strong></p><p>This API is updated to remove the <code>CreatedAt</code> field in the resource JSON.</p>                                                                                                                                  |
| **AWS Serverless Application Repository**                                 | <p><strong>aws-serverlessrepo-application</strong></p><p>Additional permissions required:</p><ul><li><code>serverlessrepo:GetApplicationPolicy</code></li><li><code>serverlessrepo:ListApplications</code></li></ul><p>The Security Audit role includes the permissions.</p>  |
| **AWS Transfer Family**                                                   | <p><strong>aws-transfer-family-user</strong></p><p>Additional permissions required:</p><ul><li><code>transfer:ListUsers</code></li><li><code>transfer:DescribeUser</code></li></ul><p>The Security Audit role includes the permissions.</p>                                   |
| **Amazon API Gateway**                                                    | <p><strong>aws-apigatewayv2-api</strong></p><p>Additional permission required:</p><ul><li><code>apigateway:GET</code></li></ul><p>The Security Audit role includes the permission.</p>                                                                                        |
| **Google Traffic Director Network Service**                               | <p><strong>gcloud-traffic-director-network-service-tls-route</strong></p><p>Additional permission required:</p><ul><li><code>networkservices.tlsRoutes.list</code></li></ul><p>The Viewer role includes the permission.</p><p>This API will list only Global resources.</p>   |
| **Google Traffic Director Network Service**                               | <p><strong>gcloud-traffic-director-network-service-tcp-route</strong></p><p>Additional permission required:</p><ul><li><code>networkservices.tcpRoutes.list</code></li></ul><p>The Viewer role includes the permission.</p><p>This API will list only Global resources.</p>   |
| **Google Traffic Director Network Service**                               | <p><strong>gcloud-traffic-director-network-service-grpc-route</strong></p><p>Additional permission required:</p><ul><li><code>networkservices.grpcRoutes.list</code></li></ul><p>The Viewer role includes the permission.</p><p>This API will list only Global resources.</p> |
| **Google Traffic Director Network Service**                               | <p><strong>gcloud-traffic-director-network-service-http-route</strong></p><p>Additional permission required:</p><ul><li><code>networkservices.httpRoutes.list</code></li></ul><p>The Viewer role includes the permission.</p><p>This API will list only Global resources.</p> |

## New Policies

<table data-header-hidden><thead><tr><th></th><th></th></tr></thead><tbody><tr><td>NEW POLICIES</td><td>DESCRIPTION</td></tr><tr><td><strong>Azure Virtual Machine that is reachable from any untrust internet source to ports with high risk</strong></td><td><p>Identifies Azure Virtual machines that are reachable from any untrust internet source to ports with high risk. Azure VMs with untrusted access to high risky ports may enable bad actors to use brute force on a system to gain unauthorized access to the entire network. As a best practice, restrict traffic from unknown IP addresses and limit the access to known hosts, services, or specific entities.</p><p><strong>Severity—</strong> High</p><p><strong>RQL—</strong></p><pre><code>config from network where source.network = UNTRUST_INTERNET and dest.resource.type = 'Instance' and dest.cloud.type = 'Azure' and protocol.ports in ( 'tcp/20', 'tcp/21', 'tcp/23', 'tcp/25', 'tcp/110', 'tcp/135', 'tcp/143', 'tcp/445', 'tcp/1433:1434', 'tcp/3000', 'tcp/3306', 'tcp/4333', 'tcp/5000', 'tcp/5432', 'tcp/5500', 'tcp/5601', 'tcp/8080', 'tcp/8088', 'tcp/8888', 'tcp/9200', 'tcp/9300' ) and dest.resource.state = 'Active'
</code></pre></td></tr><tr><td><strong>Azure SQL Server (PaaS) reachable from any untrust internet source</strong></td><td><p>Identifies Azure SQL Servers (PaaS) that are reachable from any untrust internet source on TCP port. SQL Server instances with untrusted access to the internet may enable bad actors to use brute force on a system to gain unauthorised access to the entire network. As a best practice, restrict traffic from untrusted IP addresses and limit the access to known hosts, services, or specific entities.</p><p><strong>Severity—</strong> High</p><p><strong>RQL—</strong></p><pre><code>config from network where source.network = UNTRUST_INTERNET and dest.resource.type = 'PaaS' and dest.cloud.type = 'AZURE' and dest.paas.service.type in ( 'MicrosoftSQLServers' )
</code></pre></td></tr><tr><td><strong>GCP VM instance that is internet reachable with unrestricted access (0.0.0.0/0)</strong></td><td><p>Identifies GCP VM instances that are internet reachable with unrestricted access (0.0.0.0/0). VM instances with unrestricted access to the internet may enable bad actors to use brute force on a system to gain unauthorised access to the entire network. As a best practice, restrict traffic from unknown IP addresses and limit the access to known hosts, services, or specific entities.</p><p><strong>Severity—</strong> High</p><p><strong>RQL—</strong></p><pre><code>config from network where source.network = '0.0.0.0/0' and address.match.criteria = 'full_match' and dest.resource.type = 'Instance' and dest.cloud.type = 'GCP' and dest.resource.state = 'Active'
</code></pre></td></tr></tbody></table>

## Policy Updates

<table data-header-hidden><thead><tr><th></th><th></th></tr></thead><tbody><tr><td>POLICY UPDATES</td><td>DESCRIPTION</td></tr><tr><td><strong>Policy Updates—RQL</strong></td><td></td></tr><tr><td><strong>AWS S3 bucket is not configured with MFA Delete</strong></td><td><p><strong>Changes—</strong> The policy RQL has been updated to exclude S3 buckets which are configured with <code>bucketLifecycleConfiguration</code> rules because <em>MFA Delete</em> can’t be enabled for those buckets.</p><p><strong>Severity—</strong> Low</p><p><strong>Current RQL—</strong></p><pre><code>config from cloud.resource where cloud.type = 'aws' AND api.name = 'aws-s3api-get-bucket-acl' AND json.rule = '(versioningConfiguration.status equals Enabled and (versioningConfiguration.mfaDeleteEnabled does not exist or versioningConfiguration.mfaDeleteEnabled equals false))'
</code></pre><p><strong>Updated RQL—</strong></p><pre><code>config from cloud.resource where cloud.type = 'aws' AND api.name = 'aws-s3api-get-bucket-acl' AND json.rule = versioningConfiguration.status equals Enabled and (versioningConfiguration.mfaDeleteEnabled does not exist or versioningConfiguration.mfaDeleteEnabled is false) AND (bucketLifecycleConfiguration does not exist or bucketLifecycleConfiguration.rules[*].status equals Disabled)
</code></pre><p><strong>Impact—</strong> Medium. Existing alerts for AWS S3 buckets that have bucketlifecycle configuration enabled will be resolved as <strong>Policy_Updated</strong>.</p></td></tr></tbody></table>

## Changes in Existing Behavior

| FEATURE                                                                   | DESCRIPTION                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| ------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Disabled Policy cannot be Re-enabled within 4 Hours**                   | <p>When you disable a policy, a message to inform you that <strong>Disabling this policy will automatically mark any open alerts as resolved. You won’t be able to enable the policy back for 4 hours. Are you sure you want to continue?</strong> is displayed. After you confirm, the policy will be disabled and that marks the start of a 4-hour window during which you cannot re-enable the policy. During this period, the button to enable the policy will be greyed out in the UI, and if you use the API to change the policy status the HTTP response will display an error.</p><p><strong>Impact—</strong> The restriction will apply to all policy types and all policy severities.</p>            |
| **UEBA Anomaly Policy Attribution Extended to Support Compute Instances** | <p>Alerts from UEBA anomaly policies were attributed to compute instances using their cloud IDs and not names. For example, an alert was attributed to an AWS EC2 instance by its ID <em>i-019b8f824f4f77001</em> and not by its name <em>demo-host</em>. When such an alert was generated, you would not be able to click on the resource to see the Unified Asset Inventory (UAI) details and the Command Center also reported the instance by its ID instead of name.</p><p>Prisma Cloud has now added additional checks to UEBA anomaly policies to make sure alerts are attributed to a resource by its name. Now, when you click on a resource on the Alerts page, the UAI details will be displayed.</p> |

## REST API Updates

No REST API updates for 23.5.2.

## Deprecation Notice

| FEATURE                                                                                           | DESCRIPTION                                                                                                                                                                                                                                                                                                                                                                                                                |
| ------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <mark style="background-color:orange;">Azure Defender for Cloud Secure Score API Ingestion</mark> | <p>Prisma Cloud no longer ingests metadata for the <code>azure-defender-for-cloud-secure-score</code> API.</p><p>In RQL, the key is not available in the <code>api.name</code> attribute auto completion.</p><p><strong>Impact—</strong> If you have a saved search or custom policies based on this API, you must delete them manually.</p><p>The policy alerts will be resolved as <strong>Policy\_deleted</strong>.</p> |

## New Features Introduced in 23.5.1

* [New Features](#new-features1)
* [API Ingestions](#api-ingestions1)
* [New Policies](#new-policies1)
* [Policy Updates](#policy-updates1)
* [New Compliance Benchmarks and Updates](#new-compliance-benchmarks-and-updates1)
* [Changes in Existing Behavior](#changes-in-existing-behavior1)
* [REST API Updates](#rest-api-updates1)

## New Features

| FEATURE                                                                         | DESCRIPTION                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| ------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Recurring Reports for Cloud Security Assessment**                             | <p>To make sure that you are not missing anything important, you can now schedule a recurring <a href="https://docs.paloaltonetworks.com/prisma/prisma-cloud/prisma-cloud-admin/manage-prisma-cloud-alerts/generate-reports-on-prisma-cloud-alerts">Cloud Security Assessment Report</a> and keep track of the risks from open alerts in your monitored cloud accounts.</p><p>You can customize it to run on a daily, weekly, or monthly basis and pick an email template. Once you set it up, you can access all scheduled reports on "Alerts > Reports".</p><p><img src="/files/6urATWcuParC4WlciZIT" alt="" data-size="original"></p>                               |
| **Credit Allocation for Usage**                                                 | <p>You can now distribute the credits you have purchased for the security features on Prisma Cloud amongst your teams. When you add a credit allocation rule (Settings > Licensing > Credit Allocation), you can provide the total number of credits for an account group, and define a usage threshold % at which you want to be notified. For example, if you set the threshold to 80% for 1000 credits, an alarm is generated when the usage is at 800 credits.</p><p>You can also monitor the credit usage on "Settings > Licensing > Credit Allocation" for a specified time range.</p><p><img src="/files/r90kHoZRMzLa4VakHzsp" alt="" data-size="original"></p> |
| **Cloud Network Analyzer Support for GCP**                                      | <p>Prisma Cloud now supports network exposure queries on GCP cloud environments. In addition to AWS and Azure, you can now also calculate the net effective reachability of your <a href="https://docs.paloaltonetworks.com/prisma/prisma-cloud/prisma-cloud-rql-reference/rql-reference/network-query">GCP cloud resources</a>.</p><p><img src="/files/SAmcQIVs7nCH1ovUFKo3" alt="" data-size="original"></p>                                                                                                                                                                                                                                                         |
| **Additional Alert Details in Asset Detail View**                               | <p>In Asset Inventory, to better understand the risks posed by policy violations, the alert details now also display <strong>Policy Name</strong> and <strong>Alert Time</strong> in addition to Alert ID and Severity in the asset detail view.</p><p><img src="/files/IncxXnwJIDAtj1jTxZRj" alt="" data-size="original"></p>                                                                                                                                                                                                                                                                                                                                         |
| **Home Page Access for all**                                                    | <p>All Prisma Cloud users who log in to the administrative console can now view the <strong>Home page</strong>. Based on your permissions, you can use this page to see the urgent alerts, recommended workflows, and as a launch point for onboarding assets that you want to monitor. Release Notes and industry research from our Unit 42 team are also at your fingertips.</p><p><img src="/files/Jj2d2xeRy32rD97QTttL" alt="" data-size="original"></p>                                                                                                                                                                                                           |
| **Broadened Access for Adoption Advisor**                                       | The Adoption Advisor is now accessible to all Prisma Cloud users. Based on your role and access privileges, you can view a list of items and widgets that provide visibility into your operationalization journey and guidance on the next steps and remediation actions to secure your cloud infrastructure from code to cloud.                                                                                                                                                                                                                                                                                                                                       |
| <mark style="background-color:orange;">Enhancement</mark> **IAM Asset Details** | <p>Enhancements to the <a href="https://docs.paloaltonetworks.com/prisma/prisma-cloud/prisma-cloud-admin/prisma-cloud-iam-security/cloud-identity-inventory">IAM details view</a> provide you with greater visibility into the permissions associated with your assets. Currently, additional information is available for AWS:</p><ul><li>groups</li><li>roles</li><li>policies</li></ul><p><img src="/files/FMcs1K3tRdvahtH2I5Q7" alt="" data-size="original"></p>                                                                                                                                                                                                   |

## API Ingestions

| SERVICE                                                                       | API DETAILS                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| **AWS IoT Analytics**                                                         | <p><strong>aws-iot-analytics-channel</strong></p><p>Additional permissions required:</p><ul><li><code>iotanalytics:ListChannels</code></li><li><code>iotanalytics:ListTagsForResource</code></li></ul><p>You must manually add the permissions or update the CFT template to enable them.</p><p>Not supported in AWS Gov.</p>                                                                                                                                                        |
| **AWS Security Hub**                                                          | <p><strong>aws-securityhub-enabled-standards</strong></p><p>Additional permission required:</p><ul><li><code>securityhub:GetEnabledStandards</code></li></ul><p>The Security Audit role includes the permission.</p>                                                                                                                                                                                                                                                                 |
| **Azure Compute**                                                             | <p><strong>azure-compute-gallery</strong></p><p>Additional permission required:</p><ul><li><code>Microsoft.Compute/galleries/read</code></li></ul><p>The Reader role includes the permission.</p>                                                                                                                                                                                                                                                                                    |
| **Azure Compute**                                                             | <p><strong>azure-compute-gallery-image</strong></p><p>Additional permissions required:</p><ul><li><code>Microsoft.Compute/galleries/read</code></li><li><code>Microsoft.Compute/galleries/images/read</code></li></ul><p>The Reader role includes the permissions.</p>                                                                                                                                                                                                               |
| **Azure Managed Identity**                                                    | <p><strong>azure-managed-identity-user-assigned-identities</strong></p><p>Additional permission required:</p><ul><li><code>Microsoft.ManagedIdentity/userAssignedIdentities/read</code></li></ul><p>The Reader role includes the permission.</p>                                                                                                                                                                                                                                     |
| <mark style="background-color:orange;">Update</mark> **Azure Key Vault**      | <p><strong>azure-key-vault-list</strong></p><p>The resource JSON for this API now includes the following new fields under the key\[\*] subfield.</p><p>For RSA Key:</p><ul><li><code>e</code></li><li><code>n</code></li><li><code>kty</code></li><li><code>size</code></li><li><code>key\_ops</code></li></ul><p>For Elliptic Curve Key:</p><ul><li><code>x</code></li><li><code>y</code></li><li><code>crv</code></li><li><code>kty</code></li><li><code>key\_ops</code></li></ul> |
| <mark style="background-color:orange;">Update</mark> **Azure Service Fabric** | <p><strong>azure-service-fabric-cluster</strong></p><p>The resource JSON for this API no longer includes the <code>properties.clusterState</code> field.</p>                                                                                                                                                                                                                                                                                                                         |
| **Google Hybrid Connectivity**                                                | <p><strong>gcloud-hybrid-connectivity-global-hub</strong></p><p>Additional permissions required:</p><ul><li><code>networkconnectivity.hubs.list</code></li><li><code>networkconnectivity.hubs.getIamPolicy</code></li></ul><p>The Viewer role includes the permissions.</p>                                                                                                                                                                                                          |
| **Google Hybrid Connectivity**                                                | <p><strong>gcloud-hybrid-connectivity-spoke</strong></p><p>Additional permissions required:</p><ul><li><code>networkconnectivity.locations.list</code></li><li><code>networkconnectivity.spokes.list</code></li><li><code>networkconnectivity.spokes.getIamPolicy</code></li></ul><p>The Viewer role includes the permissions.</p>                                                                                                                                                   |
| **Google Serverless VPC Access**                                              | <p><strong>gcloud-serverless-vpc-access-connector</strong></p><p>Additional permissions required:</p><ul><li><code>vpcaccess.locations.list</code></li><li><code>vpcaccess.connectors.list</code></li></ul><p>The Viewer role includes the permissions.</p>                                                                                                                                                                                                                          |
| **Google Stackdriver Logging**                                                | <p><strong>gcloud-logging-default-sink-exclusion</strong></p><p>Additional permission required:</p><ul><li><code>logging.exclusions.list</code></li></ul><p>The Viewer role includes the permission.</p>                                                                                                                                                                                                                                                                             |
| **OCI Service Mesh**                                                          | <p><strong>oci-service-mesh-virtualservice-routetable</strong></p><p>Additional permissions required:</p><ul><li><code>MESH\_VIRTUAL\_SERVICE\_ROUTE?\_TABLE\_LIST</code></li><li><code>MESH\_VIRTUAL\_SERVICE\_ROUTE?\_TABLE\_READ</code></li></ul><p>You must update the Terraform template to enable the permissions.</p>                                                                                                                                                         |
| **OCI Service Mesh**                                                          | <p><strong>oci-service-mesh-virtualservice</strong></p><p>Additional permissions required:</p><ul><li><code>MESH\_VIRTUAL\_SERVICE?\_LIST</code></li><li><code>MESH\_VIRTUAL\_SERVICE?\_READ</code></li></ul><p>You must update the Terraform template to enable the permissions.</p>                                                                                                                                                                                                |

## New Policies

| NEW POLICIES                                                                                                 | DESCRIPTION                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| **AWS EC2 instance publicly exposed with critical/high exploitable vulnerabilities and port scan activity**  | <p>Identifies AWS EC2 instances which are publicly exposed and have exploitable vulnerabilities that are connected with remote systems known for port scan activities. Port scans are a type of discovery attack where a source host is probing a target host across multiple ports, to find out what services are running and to uncover vulnerabilities associated with those services. The network connectivity with remote systems known for port scan activity on a publicly exposed and exploitable instance indicates that the instance could be under attack or already have been compromised.</p><p><strong>Policy Severity—</strong> Critical.</p> |
| **AWS EC2 instance publicly exposed with critical/high exploitable vulnerabilities and ransomware activity** | <p>Identifies AWS EC2 instances which are publicly exposed and have exploitable vulnerabilities that are connected with remote systems known for ransomware activities. Ransomware is a type of malware that prevents users from accessing their system or personal files and demands ransom payment in order to regain access. The network connectivity with remote systems known for ransomware activity on a publicly exposed and exploitable instance indicates that the instance could be under attack or already have been compromised.</p><p><strong>Policy Severity—</strong> Critical.</p>                                                          |

## Policy Updates

<table data-header-hidden><thead><tr><th></th><th></th></tr></thead><tbody><tr><td>POLICY UPDATES</td><td>DESCRIPTION</td></tr><tr><td><strong>Policy Updates-RQL</strong></td><td></td></tr><tr><td><strong>Azure VM instance in running state that is internet reachable with unrestricted access (0.0.0.0/0) other than HTTP/HTTPS port</strong></td><td><p><strong>Changes—</strong> The policy name and the RQL is updated to report instance configured with HTTP (80) and HTTP (443) port and instance which are in active state only.</p><p><strong>Current Name—</strong> Azure VM instance in running state that is internet reachable with unrestricted access (0.0.0.0/0) other than HTTP/HTTPS port <strong>Updated Name—</strong> Azure Virtual Machine in running state that is internet reachable with unrestricted access (0.0.0.0/0)</p><p><strong>Updated Description—</strong> Identifies azure VM instances in running state that are internet reachable with unrestricted access (0.0.0.0/0). VM instances with unrestricted access to the internet may enable bad actors to use brute force on a system to gain unauthorised access to the entire network. As a best practice, restrict traffic from unknown IP addresses and limit the access to known hosts, services, or specific entities.</p><p><strong>Severity—</strong> High</p><p><strong>Current RQL—</strong></p><pre><code>config from network where source.network = '0.0.0.0/0' and address.match.criteria = 'full_match' and dest.resource.type = 'Instance' and dest.cloud.type = 'AZURE' and protocol.ports in ( 'tcp/0:79', 'tcp/81:442', 'tcp/444:65535' ) and dest.resource.state = 'Active'
</code></pre><p><strong>Updated RQL—</strong></p><pre><code>config from network where source.network = '0.0.0.0/0' and address.match.criteria = 'full_match' and dest.resource.type = 'Instance' and dest.cloud.type = 'AZURE' and dest.resource.state = 'Active'
</code></pre><p><strong>Impact—</strong> Medium. New alerts will be generated when instance is exposed to internet and configured where HTTP / HTTPS port.</p></td></tr><tr><td><strong>GCP Kubernetes Engine Clusters have Master authorized networks disabled</strong></td><td><p><strong>Changes—</strong> The policy RQL is updated to reflect the latest CSP behavior.</p><p><strong>Severity—</strong> Low</p><p><strong>Current RQL—</strong></p><pre><code>config from cloud.resource where cloud.type = 'gcp' AND api.name = 'gcloud-container-describe-clusters' AND json.rule = status equals RUNNING and (masterAuthorizedNetworksConfig.[*] is empty or masterAuthorizedNetworksConfig.enabled equals "false")
</code></pre><p><strong>Updated RQL—</strong></p><pre><code>config from cloud.resource where cloud.type = 'gcp' AND api.name = 'gcloud-container-describe-clusters' AND json.rule = status equals RUNNING and masterAuthorizedNetworksConfig.enabled does not equal "true"
</code></pre><p><strong>Impact—</strong> Medium. New alerts are generated for the failing resources. This includes resources where Master authorized networks were previously enabled but are now configured as disabled.</p></td></tr><tr><td><strong>Policy Deletions</strong></td><td></td></tr><tr><td><strong>GCP Policies</strong></td><td><p>The following policies are deleted because GCP has deprecated basic authentication, Kubernetes dashboard, and Istio for GKE.</p><ul><li>GCP Kubernetes Engine Clusters Basic Authentication is set to Enabled</li><li>GCP Kubernetes Engine Clusters web UI/Dashboard is set to Enabled</li><li>GCP Kubernetes cluster istioConfig not enabled</li></ul><p><strong>Impact</strong>— Low. Previously generated alerts are resolved as <strong>Policy_Deleted</strong>. The out-of-the-box compliance mappings for the above policies are removed and can affect the compliance score.</p></td></tr></tbody></table>

## New Compliance Benchmarks and Updates

| COMPLIANCE BENCHMARK                                             | DESCRIPTION                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| ---------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Support for Mitre Att\&ck v12**                                | <p>Prisma Cloud now supports the Mitre Att\&ck v12 compliance standard. The MITRE ATTACK Framework is a curated knowledge base that tracks threat actors' cyber adversary tactics and techniques throughout the attack lifecycle. The framework is intended to be used as a tool to improve your organization’s security posture.</p><p>You can now view this built-in standard and the associated policies on Prisma Cloud’s <strong>Compliance > Standard</strong> page with this support. You can also generate reports for immediate viewing or download, or schedule recurring reports to track this compliance standard over time.</p> |
| **Support for CRI Profile v.1.2.1**                              | <p>Prisma Cloud now supports the CRI Profile v.1.2.1 compliance standard. This version includes a reference to cybersecurity time synchronization controls based on best practices as requested by the U.S. Department of the Treasury.</p><p>You can now view this built-in standard and the associated policies on Prisma Cloud’s <strong>Compliance > Standard</strong> page with this support. You can also generate reports for immediate viewing or download, or schedule recurring reports to track this compliance standard over time.</p>                                                                                           |
| **Support for CIS Microsoft Azure Foundations Benchmark v2.0.0** | <p>Prisma Cloud now supports the CIS Microsoft Azure Foundations Benchmark v2.0.0 compliance standard. This benchmark specifies best practices for configuring Azure services in accordance with industry best practices.</p><p>You can now view this built-in standard and the associated policies on Prisma Cloud’s <strong>Compliance > Standard</strong> page with this support. You can also generate reports for immediate viewing or download, or schedule recurring reports to track this compliance standard over time.</p>                                                                                                         |

## Changes in Existing Behavior

| FEATURE                                                                                        | DESCRIPTION                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Critical Severity Policies Included in Auto-Enable Default Policies in Enterprise Settings** | <p>Prisma Cloud now includes Critical severity policies in the list of policies that are enabled out-of-the-box in "Enterprise Settings > Auto-Enable Default Policies". With this change, both critical and high severity policies (current behavior), will be enabled out-of-the-box.</p><p><strong>Impact—</strong></p><ul><li>If you had previously selected Medium severity, it will now also include Critical.</li><li>If you had previously selected High and Medium severities, it will now also include Critical.</li><li>If you had previously selected Critical severity, it will be retained.</li><li>If you had not selected any severity, none will be added.</li></ul> |
| **Support for Permissions for Code Security**                                                  | <p>Prisma Cloud now includes additional read permissions for Code Security in the terraform template that you use for onboarding GCP organizations and projects.</p><p><strong>Impact—</strong> None. The additional read permissions are included by default in the terraform template.</p>                                                                                                                                                                                                                                                                                                                                                                                          |

## REST API Updates

No REST API updates for 23.5.1.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.prismacloud.io/release-notes/prisma-cloud-release-information/classic-releases/prisma-cloud-cspm-release-information/features-introduced-in-may-2023.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
