unfenced-server-accepts-all

Status: IN

`UnfencedResourceServer` has no token parameter on `write()` and accepts all writes unconditionally, serving as the pedagogical unsafe baseline for comparison with `FencedResourceServer`

Source: entries/2026/05/29/fencing-tokens-fencing_tokens.md

Example

class UnfencedResourceServer:
    def write(self, resource, key, value):
        self._data[resource][key] = value
        return {"success": True}  # no token check

JSON