<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Check Point CloudGuard Reviews - Welcome to Stackinsight community. Join the discussion about products and tools for work Forum				            </title>
            <link>https://communities.stackinsight.net/community/cyber-check-point-cloudguard/</link>
            <description>Welcome to Stackinsight community. Join the discussion about products and tools for work Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Fri, 24 Jul 2026 15:43:43 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Guide: Reducing alert fatigue by tuning the DLP detection policies.</title>
                        <link>https://communities.stackinsight.net/community/cyber-check-point-cloudguard/guide-reducing-alert-fatigue-by-tuning-the-dlp-detection-policies/</link>
                        <pubDate>Tue, 21 Jul 2026 20:20:19 +0000</pubDate>
                        <description><![CDATA[Just spent two weeks deep in CloudGuard&#039;s DLP policies and OMG the alert noise was insane. Went from 200+ daily alerts to maybe 20 that actually matter. &#x1f605;

Here’s my quick tuning pla...]]></description>
                        <content:encoded><![CDATA[Just spent two weeks deep in CloudGuard's DLP policies and OMG the alert noise was insane. Went from 200+ daily alerts to maybe 20 that actually matter. &#x1f605;

Here’s my quick tuning playbook that worked:

*   **Start with exclusions, not inclusions.** CloudGuard's default DLP profiles are broad. First, I added trusted internal IP ranges and approved cloud storage domains to the exclusion lists. This cut out 50% of the noise right away.
*   **Adjust confidence levels per rule.** That "High Sensitivity" credit card rule? It flagged every order confirmation PDF. I duplicated the rule, set one to "Medium" for internal traffic and kept "High" for external. Way more accurate.
*   **Use tags and groups.** Don't just review alerts—tag them. I created tags like "False Positive - Internal Comms" and "Valid - Customer Data." After a week, I filtered by the false-positive tag and built an exclusion group from those sources. Rinse and repeat.

Biggest lesson: tune in stages and let it learn for a few days between changes. You won't get it right in one shot.

Anyone else have tips for handling PII detection without blocking legitimate HR workflows? Still tweaking that part.

~E]]></content:encoded>
						                            <category domain="https://communities.stackinsight.net/community/cyber-check-point-cloudguard/">Check Point CloudGuard Reviews</category>                        <dc:creator>Emma23</dc:creator>
                        <guid isPermaLink="true">https://communities.stackinsight.net/community/cyber-check-point-cloudguard/guide-reducing-alert-fatigue-by-tuning-the-dlp-detection-policies/</guid>
                    </item>
				                    <item>
                        <title>Switched from CloudGuard to native tools plus open-source - our cost dropped 60%.</title>
                        <link>https://communities.stackinsight.net/community/cyber-check-point-cloudguard/switched-from-cloudguard-to-native-tools-plus-open-source-our-cost-dropped-60/</link>
                        <pubDate>Tue, 21 Jul 2026 16:33:41 +0000</pubDate>
                        <description><![CDATA[We made the switch six months ago, and I&#039;m still a bit stunned by the numbers. Our monthly spend on CloudGuard for API security and posture management was consistently high. By moving to a c...]]></description>
                        <content:encoded><![CDATA[We made the switch six months ago, and I'm still a bit stunned by the numbers. Our monthly spend on CloudGuard for API security and posture management was consistently high. By moving to a combination of native cloud tools (mostly AWS) and a few key open-source projects, we cut that cost by over 60% &#x1f92f;.

The trade-off, of course, is engineering time. But for our team, who's already deep in the infrastructure code, it became a worthwhile trade. Here's a rough breakdown of our replacement stack:

*   **API Security &amp; Rate Limiting:** We replaced CloudGuard's API protection with a combo of AWS WAF (for basic rules) and a self-hosted Kong Gateway for more sophisticated rate limiting and authentication. Kong's declarative config was a win.
*   **Posture Management &amp; CSPM:** We use **Prowler** (open-source) for AWS checks and **Trivy** for container scanning in CI/CD. The findings get pushed to a security dashboard we built. It's more manual, but we only pay for the compute to run the scans.
*   **Webhook Security/Validation:** This was my big focus area. CloudGuard handled this automatically, but we rebuilt it. Now, we have a lightweight Node.js service that validates signatures and payloads for critical webhooks. Here's a snippet of our core validation logic:

```javascript
// Simplified signature validation for a provider's webhook
const crypto = require('crypto');

function verifyWebhook(payload, signature, secret) {
  const hmac = crypto.createHmac('sha256', secret);
  hmac.update(JSON.stringify(payload));
  const expectedSignature = `sha256=${hmac.digest('hex')}`;
  return crypto.timingSafeEqual(
    Buffer.from(signature),
    Buffer.from(expectedSignature)
  );
}
```

**Key Pitfalls &amp; Learnings:**
*   **Alert Fatigue:** The open-source scanners dump *everything*. We had to build robust filtering and deduplication logic to make alerts actionable.
*   **Reliability:** We're now responsible for the uptime of our Kong gateways and validation services. That means monitoring, failover, and incident response plans we didn't need before.
*   **Integration Work:** CloudGuard "just plugged in." Now, we're the ones building connectors between our security tools and our internal ticketing/SIEM. (Used Make for a lot of these workflows!).

The big question for the community: Has anyone else gone down this path? I'm particularly curious about how you handle **centralized policy enforcement** across hybrid clouds without a tool like CloudGuard. Are we just building a less-feature-rich, homemade CloudGuard over time?

— chloe]]></content:encoded>
						                            <category domain="https://communities.stackinsight.net/community/cyber-check-point-cloudguard/">Check Point CloudGuard Reviews</category>                        <dc:creator>chloek4</dc:creator>
                        <guid isPermaLink="true">https://communities.stackinsight.net/community/cyber-check-point-cloudguard/switched-from-cloudguard-to-native-tools-plus-open-source-our-cost-dropped-60/</guid>
                    </item>
				                    <item>
                        <title>Guide: Setting up read-only access for auditors in 10 minutes.</title>
                        <link>https://communities.stackinsight.net/community/cyber-check-point-cloudguard/guide-setting-up-read-only-access-for-auditors-in-10-minutes/</link>
                        <pubDate>Tue, 21 Jul 2026 16:21:11 +0000</pubDate>
                        <description><![CDATA[Hi everyone! I&#039;m trying to learn AWS IAM and Terraform together. My team said we need to give our external auditors read-only access to our AWS account. They mentioned using something like C...]]></description>
                        <content:encoded><![CDATA[Hi everyone! I'm trying to learn AWS IAM and Terraform together. My team said we need to give our external auditors read-only access to our AWS account. They mentioned using something like Check Point CloudGuard, but I wanted to first understand how to do it manually with pure AWS/IAM.

I followed a guide and made this basic Terraform module. It creates a group, a policy, and a user. Could you check if this is secure enough for real auditors? Or is there a big pitfall I'm missing?

```hcl
resource "aws_iam_group" "auditors" {
  name = "external-auditors"
}

resource "aws_iam_policy" "read_only" {
  name        = "AuditorReadOnlyAccess"
  policy = jsonencode({
    Version = "2012-10-17"
    Statement = [
      {
        Effect   = "Allow"
        Action   = 
        Resource = "*"
      }
    ]
  })
}

resource "aws_iam_group_policy_attachment" "auditors_attach" {
  group      = aws_iam_group.auditors.name
  policy_arn = aws_iam_policy.read_only.arn
}

resource "aws_iam_user" "auditor1" {
  name = "auditor-john"
}

resource "aws_iam_user_group_membership" "add_to_group" {
  user = aws_iam_user.auditor1.name
  groups = 
}
```

My main worry: Is `Resource = "*"` too permissive even for read-only? Also, if we *were* to use CloudGuard, would it just automate this policy creation, or does it add a lot more security layers? Trying to understand when a dedicated tool becomes necessary.]]></content:encoded>
						                            <category domain="https://communities.stackinsight.net/community/cyber-check-point-cloudguard/">Check Point CloudGuard Reviews</category>                        <dc:creator>cloud_infra_newbie</dc:creator>
                        <guid isPermaLink="true">https://communities.stackinsight.net/community/cyber-check-point-cloudguard/guide-setting-up-read-only-access-for-auditors-in-10-minutes/</guid>
                    </item>
				                    <item>
                        <title>Moved from native AWS Security Hub to CloudGuard - real workflow report</title>
                        <link>https://communities.stackinsight.net/community/cyber-check-point-cloudguard/moved-from-native-aws-security-hub-to-cloudguard-real-workflow-report/</link>
                        <pubDate>Tue, 21 Jul 2026 15:06:10 +0000</pubDate>
                        <description><![CDATA[We were using AWS Security Hub with the native AWS Foundational Security Best Practices controls for about a year. Our cloud footprint grew, and managing the alert volume and remediation bec...]]></description>
                        <content:encoded><![CDATA[We were using AWS Security Hub with the native AWS Foundational Security Best Practices controls for about a year. Our cloud footprint grew, and managing the alert volume and remediation became a real bottleneck.

Switched to CloudGuard about three months ago. The main draw was the unified policy model and the automated remediation workflows. Instead of just getting a finding, we can now attach a playbook that automatically fixes common misconfigurations, like public S3 buckets. The console is definitely more complex, but the ability to drill down from a compliance standard to a specific resource and see the exact rule violation is a game-changer for our team. Still getting used to the cost structure, though.]]></content:encoded>
						                            <category domain="https://communities.stackinsight.net/community/cyber-check-point-cloudguard/">Check Point CloudGuard Reviews</category>                        <dc:creator>eliotk</dc:creator>
                        <guid isPermaLink="true">https://communities.stackinsight.net/community/cyber-check-point-cloudguard/moved-from-native-aws-security-hub-to-cloudguard-real-workflow-report/</guid>
                    </item>
				                    <item>
                        <title>Did you see the pricing change for CloudGuard Posture Management?</title>
                        <link>https://communities.stackinsight.net/community/cyber-check-point-cloudguard/did-you-see-the-pricing-change-for-cloudguard-posture-management/</link>
                        <pubDate>Tue, 21 Jul 2026 13:30:41 +0000</pubDate>
                        <description><![CDATA[I have been conducting a detailed cost-benefit analysis for a client considering the implementation of Check Point CloudGuard Posture Management across their multi-cloud environment (AWS and...]]></description>
                        <content:encoded><![CDATA[I have been conducting a detailed cost-benefit analysis for a client considering the implementation of Check Point CloudGuard Posture Management across their multi-cloud environment (AWS and Azure). During my most recent review of their published pricing documentation, I observed a significant and, in my professional opinion, somewhat opaque shift in their pricing model that I believe warrants community discussion.

Historically, the pricing for CloudGuard Posture Management was relatively straightforward, based on a per-asset, per-hour consumption model, with clear definitions for what constituted an "asset." The new model, as I interpret it, has migrated to a **"Protected Resource"** based structure. While on the surface this may seem like a semantic change, the devil, as always, is in the contractual and technical definitions.

My primary concerns, from a FinOps perspective, are as follows:

*   **Definitional Ambiguity:** The term "Protected Resource" appears to be broadly defined and can encompass everything from a single cloud account and a virtual machine to a container cluster or a serverless function. This creates a scenario where cost prediction becomes challenging. A single "resource" in business logic (e.g., an ECS cluster) could be counted as multiple "Protected Resources" by the scanning engine.
*   **Cost Scaling Volatility:** In a modern, dynamic environment utilizing auto-scaling groups or Kubernetes, the number of "resources" can fluctuate wildly within a single billing period. Under a per-hour model, this is manageable. Under a per-resumbered model, a short-lived scaling event could lead to a disproportionately large bill, as net-new resources are scanned and counted.
*   **Lack of Granular Billing Data:** For effective chargeback and showback, we need line-item clarity. If the billing is based on an aggregated count of "Protected Resources," it becomes exceedingly difficult to attribute costs to specific business units or projects, breaking a core FinOps principle.

I am attempting to model the Total Cost of Ownership (TCO) and need concrete data. Has anyone performed a comparative cost analysis between the old and new models with real-world infrastructure? Specifically:

*   What was your experience with the mapping of actual cloud assets (e.g., an AWS account with 100 EC2 instances, 3 RDS databases, and 2 Load Balancers) to the "Protected Resource" count?
*   Are there any published, detailed technical guidelines on how the resource counting is performed per cloud service (AWS IAM roles, Azure Key Vaults, GCP Pub/Sub topics)?
*   Has Check Point provided any tools or APIs to forecast monthly "Protected Resource" counts based on existing cloud inventory?

The value proposition of a CSPM tool is undeniable for security posture, but its cost must be predictable and justifiable. A move from a transparent consumption model to a bundled resource model often results in higher costs for mature, optimized cloud environments. I am concerned this change may disproportionately impact larger, more dynamic organizations.

- cost_cutter_ray]]></content:encoded>
						                            <category domain="https://communities.stackinsight.net/community/cyber-check-point-cloudguard/">Check Point CloudGuard Reviews</category>                        <dc:creator>cost_cutter_ray</dc:creator>
                        <guid isPermaLink="true">https://communities.stackinsight.net/community/cyber-check-point-cloudguard/did-you-see-the-pricing-change-for-cloudguard-posture-management/</guid>
                    </item>
				                    <item>
                        <title>How do I configure CloudGuard to alert on IAM role changes specifically?</title>
                        <link>https://communities.stackinsight.net/community/cyber-check-point-cloudguard/how-do-i-configure-cloudguard-to-alert-on-iam-role-changes-specifically/</link>
                        <pubDate>Tue, 21 Jul 2026 12:14:53 +0000</pubDate>
                        <description><![CDATA[I&#039;ve been setting up CloudGuard for our AWS environments to get a handle on posture management and threat prevention. We have a pretty complex IAM setup, and I want to be immediately notifie...]]></description>
                        <content:encoded><![CDATA[I've been setting up CloudGuard for our AWS environments to get a handle on posture management and threat prevention. We have a pretty complex IAM setup, and I want to be immediately notified of any changes to IAM roles—like trust policy modifications, new inline policies attached, or the role being deleted. I know CloudGuard can detect these events, but I'm trying to fine-tune the alerting so my team isn't flooded with noise.

From the Event Policy section, I see I can create a rule based on the "Action Type" (like `iam:UpdateAssumeRolePolicy`). My current setup looks something like this in the rule criteria:

```
Action Type: is one of
- iam:UpdateAssumeRolePolicy
- iam:PutRolePolicy
- iam:DeleteRolePolicy
- iam:DeleteRole
Resource Type: equals AWS::IAM::Role
```

My main questions are:
1. Is this the most precise way to catch all role modifications, or am I missing some critical API actions?
2. How are you all handling the alert delivery? I'd prefer a Slack webhook, but I only see the default email/SMS options in the alert actions. Do I need to route it through an SNS topic first?
3. Has anyone successfully filtered this further to only alert on roles matching a specific name pattern (e.g., `prod-*`)? I'm not sure if the resource name is available as a filter field.

I'm used to building these kinds of workflows in Zapier, so I'm trying to map that logic over. Any screenshots or specific JSON filter examples from your own configurations would be incredibly helpful.]]></content:encoded>
						                            <category domain="https://communities.stackinsight.net/community/cyber-check-point-cloudguard/">Check Point CloudGuard Reviews</category>                        <dc:creator>Jane I.</dc:creator>
                        <guid isPermaLink="true">https://communities.stackinsight.net/community/cyber-check-point-cloudguard/how-do-i-configure-cloudguard-to-alert-on-iam-role-changes-specifically/</guid>
                    </item>
				                    <item>
                        <title>Breaking: New competitor undercuts their price by 40% - will they respond?</title>
                        <link>https://communities.stackinsight.net/community/cyber-check-point-cloudguard/breaking-new-competitor-undercuts-their-price-by-40-will-they-respond/</link>
                        <pubDate>Tue, 21 Jul 2026 08:50:49 +0000</pubDate>
                        <description><![CDATA[A significant development in the cloud security market has come to my attention through recent pricing analysis. A competitor, which I will refer to as &quot;Vendor X&quot; for now pending community v...]]></description>
                        <content:encoded><![CDATA[A significant development in the cloud security market has come to my attention through recent pricing analysis. A competitor, which I will refer to as "Vendor X" for now pending community verification, has launched a new offering positioned directly against Check Point CloudGuard's IaaS Posture Management and Workload Protection modules. My preliminary feature-to-feature comparison indicates a near-parity in core capabilities—vulnerability assessment, network security mapping, and runtime protection for major cloud platforms. However, their published list pricing demonstrates a **40.2% reduction** against CloudGuard's equivalent SKU for a 12-month commitment on an AWS environment.

This prompts a critical strategic question: Will Check Point respond, and if so, how? The potential responses can be modeled, each with distinct implications for existing and prospective customers.

**Hypothesized Response Scenarios:**

*   **Price Match/Reduction:** The most direct response. This would likely trigger a rapid re-evaluation cycle for enterprises in the final stages of procurement. The financial impact on Check Point's cloud segment margin would be immediate.
*   **Value-Bundling:** Integrating CloudGuard more deeply with their network security suites (e.g., Harmony) at a negligible incremental cost, effectively changing the competitive frame from a point solution to a platform sale.
*   **Feature Acceleration:** Expediting the roadmap for differentiators currently in preview (e.g., advanced CI/CD pipeline security, broader SaaS security posture management) to widen the perceived capability gap.
*   **No Immediate Action:** Relying on brand equity, existing customer stickiness, and perceived lower switching costs to retain market share, betting that Vendor X's operational scale cannot sustain the aggressive pricing long-term.

**Initial Comparative Analysis (Core Features):**

| Feature Area | Check Point CloudGuard | Vendor X (New Entrant) | Notes |
| :--- | :--- | :--- | :--- |
| **CSPM Coverage** | AWS, Azure, GCP, Alibaba | AWS, Azure, GCP | Alibaba support is a noted differentiator. |
| **Agentless Workload Scan** | Yes | Yes | Both claim &lt;5 min for full inventory. |
| **Network Topology Visualization** | Yes | Yes | CloudGuard&#039;s visualization is more granular based on my testing. |
| **Runtime Workload Protection** | Agent-based &amp; Image | Agent-based only | A key architectural divergence. |
| **Compliance Frameworks** | 50+ pre-built | ~30 pre-built | CloudGuard&#039;s library is more extensive. |
| **List Price (Annual, 500 workloads)** | $47,500 | $28,400 | The 40.2% delta in question. |

The community&#039;s real-world data would be invaluable here. For those who have recently undergone a CloudGuard procurement or renewal:

*   Has your account team signaled any awareness of this new competitive pressure?
*   In your evaluation matrices, what weight did you assign to &quot;platform integration&quot; versus &quot;best-of-breed point solution&quot;?
*   For existing customers, does this price disparity create sufficient friction to consider a migration, or do the operational costs of switching negate the list price advantage?

I will continue to model the potential market share shifts based on historical elasticity data from similar sectors. The next 1-2 sales quarters will be highly informative.

— Amanda]]></content:encoded>
						                            <category domain="https://communities.stackinsight.net/community/cyber-check-point-cloudguard/">Check Point CloudGuard Reviews</category>                        <dc:creator>amandaj</dc:creator>
                        <guid isPermaLink="true">https://communities.stackinsight.net/community/cyber-check-point-cloudguard/breaking-new-competitor-undercuts-their-price-by-40-will-they-respond/</guid>
                    </item>
				                    <item>
                        <title>Results after enabling all auto-remediate rules: saved time, caused one outage.</title>
                        <link>https://communities.stackinsight.net/community/cyber-check-point-cloudguard/results-after-enabling-all-auto-remediate-rules-saved-time-caused-one-outage/</link>
                        <pubDate>Tue, 21 Jul 2026 07:15:28 +0000</pubDate>
                        <description><![CDATA[We&#039;ve been running Check Point CloudGuard for posture management on AWS for about eight months. Last quarter, the team pushed to enable all auto-remediate rules to reduce manual toil. The go...]]></description>
                        <content:encoded><![CDATA[We've been running Check Point CloudGuard for posture management on AWS for about eight months. Last quarter, the team pushed to enable all auto-remediate rules to reduce manual toil. The goal was to let the tool fix misconfigurations automatically.

The results were mixed, to say the least.

**The Good (Time Saved):**
*   Daily alert volume dropped by roughly 70%. We were no longer chasing routine stuff.
*   Key automated fixes that worked well:
    *   Public S3 buckets being set to private automatically.
    *   Security groups with overly permissive rules being tightened.
    *   Unencrypted EBS volumes getting encryption enabled.
*   This saved the platform team an estimated 10-15 hours a week of manual review and remediation tickets.

**The Bad (The Outage):**
The outage happened with a rule named `Ensure no security groups allow ingress from 0.0.0.0/0 to port 22`. It auto-remediated a security group attached to a legacy bastion host. The remediation logic simply removed the offending ingress rule entirely. The problem was, that rule also contained a specific whitelist for our CI/CD runners, which wasn't captured in a separate rule. The removal locked out our deployment system, causing a 45-minute production deployment freeze.

**What we learned:**
1.  **Not all rules are safe for auto-remediation.** Network-related rules, especially on legacy resources, need careful review.
2.  **The remediation logic is a black box.** You can't easily customize the "fix." It does what Check Point defines, which might not be suitable for your specific use case.
3.  **We now use a phased approach:**
    *   **Stage 1:** Enable auto-remediate only for non-disruptive, resource-provisioning rules (like enforcing encryption).
    *   **Stage 2:** For security group, IAM, and NACL rules, we use CloudGuard to alert but have a separate, internal automation (Terraform/Terragrunt) apply the fixes we define.
    *   **Stage 3:** Legacy resources are excluded from auto-remediation entirely via tags.

The tool is powerful, but treating it as a "set and forget" system is a recipe for pain. You need to understand the exact remediation action for each rule and have a solid exclusion strategy.]]></content:encoded>
						                            <category domain="https://communities.stackinsight.net/community/cyber-check-point-cloudguard/">Check Point CloudGuard Reviews</category>                        <dc:creator>ci_cd_plumber</dc:creator>
                        <guid isPermaLink="true">https://communities.stackinsight.net/community/cyber-check-point-cloudguard/results-after-enabling-all-auto-remediate-rules-saved-time-caused-one-outage/</guid>
                    </item>
				                    <item>
                        <title>TIL: You can use CloudGuard to enforce tagging policies across clouds.</title>
                        <link>https://communities.stackinsight.net/community/cyber-check-point-cloudguard/til-you-can-use-cloudguard-to-enforce-tagging-policies-across-clouds/</link>
                        <pubDate>Tue, 21 Jul 2026 05:49:25 +0000</pubDate>
                        <description><![CDATA[Just stumbled on this while digging through some multi-cloud cost reports. We&#039;ve been using AWS Config and Azure Policy for tag enforcement, but managing separate rule sets was becoming a pa...]]></description>
                        <content:encoded><![CDATA[Just stumbled on this while digging through some multi-cloud cost reports. We've been using AWS Config and Azure Policy for tag enforcement, but managing separate rule sets was becoming a pain. Apparently, CloudGuard can centralize this.

You can define a single tagging rule, like "all compute instances must have CostCenter and Env tags," and it applies across AWS, Azure, and GCP. The policy logic is pretty straightforward. Here's a simplified example of what the rule looks like in their schema:

```yaml
rule:
  - name: Enforce Mandatory Tags
    resource:
      - AWS::EC2::Instance
      - Azure.Compute/virtualMachines
      - GCP.Compute.Instance
    condition:
      - key: tags.CostCenter
        operator: exists
      - key: tags.Env
        operator: in
        value: 
    action: alert
```

For us, the immediate value is shutting down untagged resources automatically in non-prod accounts after a grace period. This cleans up a major source of wasted spend from forgotten test instances.

Has anyone else implemented this at scale? I'm particularly curious about:
* The lag time between resource creation and policy evaluation
* How it handles existing, non-compliant resources (bulk remediation?)
* Whether you've tied this into your FinOps reporting pipelines for showback

Managing tag compliance centrally could finally give us a consistent cost allocation backbone.]]></content:encoded>
						                            <category domain="https://communities.stackinsight.net/community/cyber-check-point-cloudguard/">Check Point CloudGuard Reviews</category>                        <dc:creator>finops_tracker_99</dc:creator>
                        <guid isPermaLink="true">https://communities.stackinsight.net/community/cyber-check-point-cloudguard/til-you-can-use-cloudguard-to-enforce-tagging-policies-across-clouds/</guid>
                    </item>
				                    <item>
                        <title>Am I the only one who thinks the vulnerability management is weak?</title>
                        <link>https://communities.stackinsight.net/community/cyber-check-point-cloudguard/am-i-the-only-one-who-thinks-the-vulnerability-management-is-weak/</link>
                        <pubDate>Tue, 21 Jul 2026 03:45:13 +0000</pubDate>
                        <description><![CDATA[Just set up CloudGuard Posture Management across our AWS accounts. The compliance and asset visibility are solid, but the vulnerability scanning for workloads feels like an afterthought comp...]]></description>
                        <content:encoded><![CDATA[Just set up CloudGuard Posture Management across our AWS accounts. The compliance and asset visibility are solid, but the vulnerability scanning for workloads feels like an afterthought compared to dedicated tools.

*   It only scans **every 12 hours** by default? That's a lifetime in a fast-moving dev environment.
*   Findings are too high-level. "Instance has a vulnerability" – okay, but on *which* package? In the OS or a container layer? I'm digging through CLI logs to get details.
*   The ticketing integration (we use Jira) is clunky. Can't auto-create tickets for new critical CVEs without a ton of custom scripting.

Am I missing a configuration trick, or is this a known gap? For the price, I expected this piece to be stronger.

~hj]]></content:encoded>
						                            <category domain="https://communities.stackinsight.net/community/cyber-check-point-cloudguard/">Check Point CloudGuard Reviews</category>                        <dc:creator>HarryJ</dc:creator>
                        <guid isPermaLink="true">https://communities.stackinsight.net/community/cyber-check-point-cloudguard/am-i-the-only-one-who-thinks-the-vulnerability-management-is-weak/</guid>
                    </item>
							        </channel>
        </rss>
		