Skip to main content

34 posts tagged with "release"

View All Tags

PHP 8.5.9, 8.4.24, 8.3.33 and 8.2.33

· One min read
Skpr Platform Team
Platform Engineering

Overview

Our PHP versions have been updated to:

This is a security release, covering the following:

  • CVE-2026-17543 (PGSQL, PDO_PGSQL) - The PostgreSQL escaping functions don't escape backslashes, so user input placed inside an E'...' string literal can break out of the quotes and inject SQL.
  • CVE-2026-17544 (BCMath) - bccomp() could write outside its allocated buffer when the scale argument trimmed trailing zeros from a fraction, for example bccomp("1.901", "0", 2). This one only affects 8.5 and 8.4.
  • CVE-2026-7260 (Phar) - Recursive symlinks inside a Phar archive crash the stream handler, which an attacker can use for denial of service.
  • CVE-2026-9672 (GD) - Upstream libgd upgrade that fixes image processing vulnerabilities.

Pull Request #195

NGINX Rift and PoolSlip

· 2 min read
Skpr Platform Team
Platform Engineering

Overview

Two critical vulnerabilities have recently been disclosed in NGINX's ngx_http_rewrite_module. We have been actively monitoring both issues since disclosure. Our configuration is not susceptible to either vulnerability. As a precaution, we have updated our base NGINX images to the latest patched version.

The vulnerabilities

NGINX Rift — CVE-2026-42945 (CVSS 9.2 Critical)

Disclosed on 13 May 2026, NGINX Rift is a heap buffer overflow in NGINX's ngx_http_rewrite_module triggered when the rewrite, if, or set directive is used with an unnamed expression (such as $1 or $2) to replace strings after a question mark. A single crafted HTTP request from an unauthenticated remote attacker can crash the worker process (DoS) or, in some conditions, achieve remote code execution. The bug had been present in the codebase since NGINX 0.6.27 in 2008 and affects NGINX Open Source versions 0.6.27 through 1.30.0 and NGINX Plus R32 through R36.

NGINX PoolSlip — CVE-2026-9256 (CVSS 9.2 Critical)

Disclosed on 22 May 2026, just nine days after Rift, PoolSlip is a second heap overflow in the same rewrite module. It is triggered when a rewrite directive uses a regex pattern with distinct, overlapping PCRE capture groups, such as ^/((.*))$ paired with a replacement string referencing multiple captures, like $1$2. The crafted request causes a controlled pointer "slip" across adjacent linked structures within the NGINX memory pool, allowing the attacker to overwrite cleanup handler pointers, again enabling DoS and potential RCE. Affected versions are NGINX Open Source 0.1.17 through 1.30.1 and 1.31.0.

Why our configuration is safe

Both vulnerabilities require specific patterns in rewrite / set / if directives, unnamed capture groups for Rift, and overlapping PCRE capture groups with multi-capture backreferences for PoolSlip. Our base NGINX configuration does not use these patterns, so neither exploit is reachable against our deployed servers.

What we changed

Out of an abundance of caution, we have updated our base NGINX images to the latest upstream release, which incorporates the patches for both CVE-2026-42945 and CVE-2026-9256. No action is required from customers; the updated images will roll out as part of the normal deployment cycle.

Application Metrics

· One min read
Skpr Platform Team
Platform Engineering

Overview

Skpr now supports custom application metrics. Applications can expose metrics rooted in their own business logic, not just infrastructure signals like CPU and memory usage.

This lets you track what actually matters to your platform. For example: active user sessions, queue depth, or pieces of content published. You define the metrics in your application, and Skpr surfaces them alongside the platform's existing observability data.

Metrics are exposed in Prometheus format. Prometheus is a widely used open standard for collecting and querying time-series data. Any monitoring or alerting tool that reads this format can scrape, graph, and alert on your metrics with no custom integration work.

CDN Upload and Download Metrics

· One min read
Skpr Platform Team
Platform Engineering

Overview

You can now view Content Delivery Network (CDN) upload and download metrics directly in the Skpr user interface.

These metrics show how much data your CDN is serving and receiving over time. That makes it easier to understand traffic patterns and spot unusual spikes.

Everything sits alongside your existing Skpr metrics, so you get a single view of how your application is performing.

Support for JA4 Fingerprint in Nginx Logs

· One min read
Skpr Platform Team
Platform Engineering

Overview

Nginx access logs now include a JA4 fingerprint for each request. JA4 is an open standard for fingerprinting TLS clients based on how they negotiate their connection, rather than what they claim to be.

This matters because details like the user agent can be faked. A JA4 fingerprint identifies the underlying client, so two requests from the same tool share a fingerprint even if one spoofs its user agent.

The fingerprint comes through from CloudFront and appears in the http_cloudfront_viewer_ja4_fingerprint field:

"http_cloudfront_viewer_ja4_fingerprint": "t13d1516h2_8daaf6152771_02713d6af862"

You can use it to spot bots, group related traffic, and investigate suspicious activity. It's especially useful for identifying automated clients during traffic spikes or denial-of-service attempts.

New Command: Release Pull

· One min read
Skpr Platform Team
Platform Engineering

Overview

In release v1.5.0, we've added a new command to the Skpr command-line interface (CLI): release pull.

This command pulls the packaged container images created by the skpr package command, so development teams can pull and debug the packaged application artefacts directly. To use it, run:

$ skpr release pull ENVIRONMENT

Payload Support

· One min read
Skpr Platform Team
Platform Engineering

Overview

With the release of Skpr v1.0 we have added first class support for Payload CMS.

Features:

  • MongoDB support through AWS DocumentDB.
  • Our CDN solution configured specifically to support Payload.
  • CLI and Skpr UI support.
  • Same development workflow as other project types.

Skpr Events infrastructure

· One min read
Skpr Platform Team
Platform Engineering

Overview

We've implemented a new events system for the Skpr cluster.

Features:

  • Fully supported through the CLI and Skpr UI.
  • Events per project environment.
  • Add @logStream = 'events' to your CloudWatch Logs Insights query for auditing your events.
  • Event subscription system so you can do things like get a Slack notification when a shell session is started on production, or trigger a github action on a restore completion.
  • Some example events:
    • Config has been set: my.config
    • Restore has completed: prod-123
    • Shell session has been created

Skpr UI metrics

· One min read
Skpr Platform Team
Platform Engineering

Overview

  • Improved resolution of metrics through the Skpr UI from 5 minutes to 1 minute aggregation.
  • Bugfix: Fixed an issue where CDN invalidation metrics weren't displaying.

WAF logging

· One min read
Skpr Platform Team
Platform Engineering

Overview

  • Add @logStream = "waf" to your CloudWatch Logs Insights query to view log events where the WAF blocked a request.
  • Logs are counted and rolled up by IP address.
  • Provider information is also included in the log for enhanced debugging.