Enforce R6 on the save path (KTD6): in cache-on-save's onFormValidationProcessed, when a hidden edit_path is present, require the site owner (not merely any login — the super-admin tester also authenticates) AND that the target resolves through the page tree to a direct child of the active trip's dailies container. Fail closed with a ValidationException so add_page never runs. Create (empty edit_path) is left untouched. New shared EntryScopeGuard (classes/EntryScopeGuard.php) is the single source of truth for both R6 enforcement points — this save guard and U6's delete route call the same isOwner()/resolveActiveDailyChild()/segment helpers, so they cannot diverge (KTD5). Resolution is via $pages->find() + a parent-route assertion, never raw path concatenation, closing the traversal hole (basename(dirname()) yields the same target add-page-by-form writes to). Verified on the 2.0.4 container: non-owner edit, out-of-scope edit_path, unsafe '..' segment, and non-dailies-child targets are all rejected; owner in-place edit succeeds (V3). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01H1FrCYNq6RXdGYbn5PFrhM
111 lines
3.9 KiB
PHP
111 lines
3.9 KiB
PHP
<?php
|
|
namespace Grav\Plugin\Shared;
|
|
|
|
use Grav\Common\Grav;
|
|
use Grav\Common\Page\Interfaces\PageInterface;
|
|
|
|
/**
|
|
* Single source of truth for the R6 server-side scope guard, shared by BOTH
|
|
* enforcement points so they cannot diverge (KTD5):
|
|
* - the save/publish path (cache-on-save onFormValidationProcessed), and
|
|
* - the delete path (entry-actions API route).
|
|
*
|
|
* Two independent checks, both required:
|
|
* 1. isOwner() — the acting user is the configured site owner, NOT merely any
|
|
* authenticated account (the super-admin `tester` also authenticates).
|
|
* 2. resolveActiveDailyChild() — the target resolves, through the page tree,
|
|
* to a real DIRECT child of the active trip's `dailies` container. Resolving
|
|
* via $pages->find() + a parent-route assertion (never raw path concatenation)
|
|
* closes the traversal hole where a string like `/…/dailies/../other/entry.md`
|
|
* prefix-matches the active dailies but points elsewhere.
|
|
*/
|
|
class EntryScopeGuard
|
|
{
|
|
/**
|
|
* Active trip's dailies container route ("/trips/<slug>/dailies"), or null
|
|
* when site.active_trip is unset. Accepts a full route or a bare slug.
|
|
*/
|
|
public static function dailiesRoute(Grav $grav): ?string
|
|
{
|
|
$active = $grav['config']->get('site.active_trip');
|
|
$active = is_string($active) ? trim($active) : '';
|
|
if ($active === '') {
|
|
return null;
|
|
}
|
|
$trip = trim($active, '/');
|
|
if (strpos($trip, 'trips/') !== 0) {
|
|
$trip = 'trips/' . $trip;
|
|
}
|
|
return '/' . $trip . '/dailies';
|
|
}
|
|
|
|
/**
|
|
* True only when the current user is authenticated AND their username equals
|
|
* site.owner_username. Gating on authentication alone would grant rights to
|
|
* every account, including the super-admin `tester` (KTD8).
|
|
*/
|
|
public static function isOwner(Grav $grav): bool
|
|
{
|
|
$user = $grav['user'] ?? null;
|
|
if (!$user || empty($user->authenticated)) {
|
|
return false;
|
|
}
|
|
$owner = $grav['config']->get('site.owner_username');
|
|
return is_string($owner) && $owner !== '' && $user->username === $owner;
|
|
}
|
|
|
|
/**
|
|
* A safe single path segment: non-empty, no separators, no dot-traversal.
|
|
*/
|
|
public static function isSafeSegment(string $segment): bool
|
|
{
|
|
if ($segment === '' || $segment === '.' || $segment === '..') {
|
|
return false;
|
|
}
|
|
if (strpbrk($segment, '/\\') !== false) {
|
|
return false;
|
|
}
|
|
return strpos($segment, '..') === false;
|
|
}
|
|
|
|
/**
|
|
* The folder segment carried by a hidden edit_path value. post-form.js sets
|
|
* edit_path to "<entry-route>/entry.md", so basename(dirname()) is the entry's
|
|
* own folder name (its route's last segment) — the same value stock
|
|
* add-page-by-form derives for the in-place write.
|
|
*/
|
|
public static function segmentFromEditPath(string $editPath): string
|
|
{
|
|
$editPath = trim($editPath);
|
|
if ($editPath === '') {
|
|
return '';
|
|
}
|
|
return basename(dirname($editPath));
|
|
}
|
|
|
|
/**
|
|
* Resolve a folder segment to the page that is a DIRECT child of the active
|
|
* trip's dailies container, or null when the segment is unsafe, no active trip
|
|
* is set, the page does not exist, or its parent is not the active dailies.
|
|
*/
|
|
public static function resolveActiveDailyChild(Grav $grav, string $segment): ?PageInterface
|
|
{
|
|
if (!self::isSafeSegment($segment)) {
|
|
return null;
|
|
}
|
|
$dailies = self::dailiesRoute($grav);
|
|
if ($dailies === null) {
|
|
return null;
|
|
}
|
|
$page = $grav['pages']->find($dailies . '/' . $segment);
|
|
if ($page === null) {
|
|
return null;
|
|
}
|
|
$parent = $page->parent();
|
|
if ($parent === null || $parent->route() !== $dailies) {
|
|
return null;
|
|
}
|
|
return $page;
|
|
}
|
|
}
|