HEX
Server: LiteSpeed
System: Linux cde2.duelhost.dk 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
User: dtptviut (1121)
PHP: 8.0.30
Disabled: exec,system,passthru,shell_exec,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/dtptviut/domains/findfliserens.dk/private_html/wp-content/plugins/w3-total-cache/pub/sns.php
<?php
/**
 * File: sns.php
 *
 * Public AWS SNS webhook receiver for W3 Total Cache cluster cache
 * invalidation messages.
 *
 * Request-handling order:
 *
 *   - Earlier versions of this file read the request body, decoded the JSON
 *     message, and wrote `$_SERVER['HTTP_HOST']` and `$w3tc_w3_current_blog_id`
 *     directly from request data BEFORE loading WordPress. That let the
 *     request set the host the entire WordPress bootstrap saw (init-phase
 *     URL generation, password-reset links, cookie domains, cache keys) on
 *     any site running the plugin.
 *
 *   - The endpoint also bootstrapped the full WordPress stack on every
 *     unauthenticated POST (a ~34MB / ~510ms cost per request), giving any
 *     internet-reachable WordPress install an expensive entrypoint that
 *     anyone could submit to.
 *
 * The order below validates first, loads WordPress second:
 *
 *   1. Reject any non-POST request and any request without the required AWS
 *      SNS message-type header. Both pre-checks happen before WordPress is
 *      loaded so scanners and DoS traffic are dropped cheaply.
 *   2. Load only the bundled AWS SNS message validator (Composer autoloader)
 *      — *not* WordPress — and verify the message's signature against AWS's
 *      published SNS signing certificates.
 *   3. Only after the signature is verified, load WordPress and dispatch the
 *      message to `Enterprise_SnsServer::process_message()` for further
 *      authorisation (TopicArn match) and execution.
 *   4. `$_SERVER['HTTP_HOST']` and `$w3tc_w3_current_blog_id` are NEVER written
 *      from request input here. Multisite/blog-context handling, if needed,
 *      now happens inside `Enterprise_SnsServer` after validation, using
 *      `switch_to_blog()` against an allowlist derived from configured site
 *      hostnames.
 *
 * Defence in depth: `pub/.htaccess` (shipped alongside this file) denies
 * direct execution of every other PHP file under `pub/` on Apache and
 * LiteSpeed, so adding a new file to this directory does not silently
 * expose a new public entrypoint. Nginx ignores `.htaccess` entirely;
 * `Generic_Environment::get_required_rules()` emits an equivalent
 * `location ~* /w3-total-cache/pub/(?!sns\.php$)[^/]+\.php$ { deny all; }`
 * block into the W3TC-managed `nginx.conf`, so as long as the site's
 * `nginx.conf` includes the W3TC rules file (the standard W3TC install
 * step on nginx) the same deny applies. Operators who include W3TC's
 * rules manually need the include statement to land for this defense
 * in depth to apply.
 *
 * @package W3TC
 *
 * @since 2.10.0
 */

/**
 * SNS endpoint PHPCS suppressions.
 *
 * phpcs:disable WordPress.Security.NonceVerification.Missing -- Endpoint authenticated via AWS SNS signature, not a WP nonce.
 * phpcs:disable WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Payload is raw JSON from AWS; validated cryptographically before use.
 * phpcs:disable WordPress.Security.ValidatedSanitizedInput.MissingUnslash -- See above; AWS SNS payload is signed JSON.
 */

if ( ! function_exists( 'w3tc_sns_reject' ) ) {
	/**
	 * Emit a small text response and terminate.
	 *
	 * @since 2.10.0
	 *
	 * @param int    $status HTTP status code.
	 * @param string $body   Short response body (single line).
	 *
	 * @return void
	 */
	function w3tc_sns_reject( $status, $body ) {
		if ( ! headers_sent() ) {
			http_response_code( $status );
			header( 'Content-Type: text/plain; charset=utf-8' );
			header( 'Cache-Control: no-store' );
			header( 'X-Robots-Tag: noindex, nofollow, noarchive' );
		}
		echo $body; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Caller-controlled constant string only.
		exit();
	}
}

// 1. Method gate: this endpoint exists solely to receive AWS SNS POSTs.
if ( ! isset( $_SERVER['REQUEST_METHOD'] ) || 'POST' !== strtoupper( (string) $_SERVER['REQUEST_METHOD'] ) ) {
	w3tc_sns_reject( 405, 'Method Not Allowed' );
}

/**
 * 2. Header gate: AWS SNS always sends `x-amz-sns-message-type`. Drop scanners
 * and generic POST traffic before paying for any further work, including
 * reading the request body.
 */
if ( empty( $_SERVER['HTTP_X_AMZ_SNS_MESSAGE_TYPE'] ) ) {
	w3tc_sns_reject( 400, 'Missing SNS headers' );
}

/**
 * 3. Bound the request body. AWS SNS notifications are well below 256KB; we
 * hard-cap to defend against memory-exhaustion attempts.
 *
 * The Content-Length check is a fast pre-filter, but it is not sufficient on
 * its own: chunked transfer-encoded requests (and proxied requests where the
 * front-end strips Content-Length) report 0 here. We therefore also read the
 * body ourselves with a hard byte cap so a streaming client cannot bypass the
 * limit by omitting Content-Length.
 */
$w3tc_sns_max_body_bytes = 262144; // 256 KB.
$w3tc_sns_content_length = isset( $_SERVER['CONTENT_LENGTH'] ) ? (int) $_SERVER['CONTENT_LENGTH'] : 0;
if ( $w3tc_sns_content_length > $w3tc_sns_max_body_bytes ) {
	w3tc_sns_reject( 413, 'Payload too large' );
}

/**
 * Read at most max+1 bytes; if the stream still has data we know the payload
 * exceeds the cap and reject. We deliberately consume php://input here so the
 * SDK's `fromRawPostData()` (which would re-read the stream unbounded) is not
 * used downstream.
 */
$w3tc_sns_input_handle = fopen( 'php://input', 'rb' ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fopen -- pre-WP-bootstrap; WP_Filesystem unavailable.
if ( false === $w3tc_sns_input_handle ) {
	w3tc_sns_reject( 400, 'Cannot read body' );
}
$w3tc_sns_body = stream_get_contents( $w3tc_sns_input_handle, $w3tc_sns_max_body_bytes + 1 );
fclose( $w3tc_sns_input_handle ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fclose -- pre-WP-bootstrap; WP_Filesystem unavailable.
if ( false === $w3tc_sns_body || strlen( $w3tc_sns_body ) > $w3tc_sns_max_body_bytes ) {
	w3tc_sns_reject( 413, 'Payload too large' );
}

/**
 * 4. Locate the plugin's vendored Composer autoloader so we can use the AWS
 * SNS message validator WITHOUT bootstrapping WordPress. This file lives in
 * `<plugin>/pub/sns.php`, so the autoloader is one level up.
 */
$w3tc_sns_autoload = __DIR__ . '/../vendor/autoload.php';
if ( ! file_exists( $w3tc_sns_autoload ) ) {
	w3tc_sns_reject( 500, 'Server misconfigured' );
}
require_once $w3tc_sns_autoload;

if ( ! class_exists( '\Aws\Sns\Message' ) || ! class_exists( '\Aws\Sns\MessageValidator' ) ) {
	w3tc_sns_reject( 500, 'Server misconfigured' );
}

/**
 * 5. Build the SNS Message directly from the bounded body we read in step 3.
 * The SDK's `fromRawPostData()` re-reads php://input without a size cap and
 * `fromJsonString()` would re-decode the body, so we decode once and pass the
 * array to the constructor. Catch \Throwable rather than \Exception so future
 * SDK upgrades that throw Error subtypes (e.g. TypeError on a missing key) do
 * not bypass the 400 response and surface a 500 stack trace.
 */
$w3tc_sns_decoded = json_decode( $w3tc_sns_body, true );
if ( ! is_array( $w3tc_sns_decoded ) ) {
	w3tc_sns_reject( 400, 'Invalid SNS message' );
}
try {
	$w3tc_sns_message = new \Aws\Sns\Message( $w3tc_sns_decoded );
} catch ( \Throwable $e ) {
	w3tc_sns_reject( 400, 'Invalid SNS message' );
}

/**
 * 6. Cryptographically validate the message signature against AWS's
 * published SNS signing certificates before we trust ANY field on it. The
 * validator throws on any failure (bad signature, untrusted cert host, etc).
 */
try {
	$w3tc_sns_validator = new \Aws\Sns\MessageValidator();
	$w3tc_sns_validator->validate( $w3tc_sns_message );
} catch ( \Throwable $e ) {
	w3tc_sns_reject( 403, 'Forbidden' );
}

/**
 * 7. Signature verified. NOW we can load WordPress and hand the message off
 * to the existing handler for TopicArn matching and action dispatch.
 *
 * Note: we deliberately do NOT mutate `$_SERVER['HTTP_HOST']` or
 * `$w3tc_w3_current_blog_id` here. Any multisite/blog-context switching the SNS
 * payload requests is performed inside `Enterprise_SnsServer` AFTER
 * validation, against an allowlist of configured site hostnames.
 */
if ( ! defined( 'W3TC_WP_LOADING' ) ) {
	define( 'W3TC_WP_LOADING', true );
}

if ( ! defined( 'ABSPATH' ) ) {
	/**
	 * Standard layout: this file lives at
	 * `wp-content/plugins/w3-total-cache/pub/sns.php`, so wp-load.php is four
	 * directories up. Sites that vendor W3TC outside `wp-content/plugins/`
	 * (must-use plugin dirs, custom plugin directories, some managed-host
	 * bundles) ship a shim at `<plugin>/../w3tc-wp-loader.php`; fall back to
	 * that before erroring so non-standard installs don't 500 on every SNS
	 * POST after the upgrade.
	 */
	$w3tc_sns_wp_load = __DIR__ . '/../../../../wp-load.php';
	if ( ! file_exists( $w3tc_sns_wp_load ) ) {
		$w3tc_sns_wp_load = __DIR__ . '/../../w3tc-wp-loader.php';
	}
	if ( ! file_exists( $w3tc_sns_wp_load ) ) {
		w3tc_sns_reject( 500, 'WordPress not found' );
	}
	require_once $w3tc_sns_wp_load;
}

if ( ! defined( 'W3TC_DIR' ) ) {
	define( 'W3TC_DIR', realpath( __DIR__ . '/..' ) );
}

if ( ! is_dir( W3TC_DIR ) || ! file_exists( W3TC_DIR . '/w3-total-cache-api.php' ) ) {
	w3tc_sns_reject( 500, 'Plugin files missing' );
}

require_once W3TC_DIR . '/w3-total-cache-api.php';

/**
 * Convert the validated SNS Message back to a plain array for the existing
 * handler signature (it constructs its own `\Aws\Sns\Message` internally and
 * re-validates as belt-and-braces).
 */
$w3tc_sns_message_array = $w3tc_sns_message->toArray();

$w3tc_sns_server = \W3TC\Dispatcher::component( 'Enterprise_SnsServer' );
$w3tc_sns_server->process_message( $w3tc_sns_message_array );