Windows companion suite for OpenClaw - System Tray app, Shared library, Node, and PowerToys Command Palette extension
This report presents the forensic synthetic code analysis of openclaw/openclaw-windows-node, a C# project with 1,979 GitHub stars. SynthScan v2.0 examined 247,702 lines of code across 746 source files, recording 1032 pattern matches distributed across 12 syntactic categories. The overall adjusted score of 9.4 places this repository in the Low AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 1032 distinct pattern matches across 12 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIDashboardScaleTest.cs | 155 | // ── Top-level layout ────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIDashboardScaleTest.cs | 161 | // ── Header row ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIDashboardScaleTest.cs | 182 | // ── Tabs ────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIDashboardScaleTest.cs | 193 | // ── Tab 1: Overview ───────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIDashboardScaleTest.cs | 229 | // ── Tab 2: Settings ───────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIDashboardScaleTest.cs | 294 | // ── Tab 3: Help ───────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIDashboardScaleTest.cs | 322 | // ── Footer row ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIControlMatrixTests.cs | 27 | // ─── Containers ────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIControlMatrixTests.cs | 200 | // ─── Display ───────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIControlMatrixTests.cs | 295 | // ─── Interactive ───────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIControlMatrixTests.cs | 606 | // ─── helper ────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIRenderingTests.cs | 205 | // ───────────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Tray.UITests/A2UIRenderingTests.cs | 207 | // ───────────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …sts/OpenClaw.Shared.Tests/HttpUrlRiskEvaluatorTests.cs | 70 | // ── IsPublicAddress: IPv4 ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …sts/OpenClaw.Shared.Tests/HttpUrlRiskEvaluatorTests.cs | 121 | // ── Evaluate: additional hostname / address forms ───────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecEnvSanitizerTests.cs | 14 | // ── null / empty input ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecEnvSanitizerTests.cs | 34 | // ── known-blocked names ─────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecEnvSanitizerTests.cs | 90 | // ── LD_ / DYLD_ prefix blocking ────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecEnvSanitizerTests.cs | 121 | // ── invalid / malformed names ───────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecEnvSanitizerTests.cs | 144 | // ── allowed names ───────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecEnvSanitizerTests.cs | 159 | // ── Sanitize: mixed allowed + blocked ──────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecEnvSanitizerTests.cs | 228 | // ── case-insensitive lookup in Sanitize ─────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecEnvSanitizerTests.cs | 246 | // ── LD_ prefix in Sanitize ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/DeepLinkParserTests.cs | 9 | // ─── ParseDeepLink ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/DeepLinkParserTests.cs | 126 | // ─── GetQueryParam ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/TokenSanitizerTests.cs | 8 | // ── null / empty input ───────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/TokenSanitizerTests.cs | 29 | // ── Authorization: Bearer ────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/TokenSanitizerTests.cs | 71 | // ── JSON secret fields ───────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/TokenSanitizerTests.cs | 120 | // ── Long base64-url token shape ──────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/TokenSanitizerTests.cs | 219 | // ── combinations ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/TokenSanitizerTests.cs | 547 | // ── URL tail redaction ────────────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/TokenSanitizerTests.cs | 618 | // ── URL log-injection defense ─────────────────────────────────────────── | STRING |
| MEDIUM | …enClaw.Shared.Tests/ExecEnvInvocationUnwrapperTests.cs | 14 | // ── helpers ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …enClaw.Shared.Tests/ExecEnvInvocationUnwrapperTests.cs | 18 | // ── Unwrap: basic passthrough ───────────────────────────────────────────── | COMMENT |
| MEDIUM | …enClaw.Shared.Tests/ExecEnvInvocationUnwrapperTests.cs | 54 | // ── Unwrap: flags (FlagOnly — no value) ─────────────────────────────────── | COMMENT |
| MEDIUM | …enClaw.Shared.Tests/ExecEnvInvocationUnwrapperTests.cs | 68 | // ── Unwrap: flags with values ───────────────────────────────────────────── | COMMENT |
| MEDIUM | …enClaw.Shared.Tests/ExecEnvInvocationUnwrapperTests.cs | 90 | // ── Unwrap: terminator handling ─────────────────────────────────────────── | COMMENT |
| MEDIUM | …enClaw.Shared.Tests/ExecEnvInvocationUnwrapperTests.cs | 108 | // ── Unwrap: unknown flag → fail-closed ──────────────────────────────────── | COMMENT |
| MEDIUM | …enClaw.Shared.Tests/ExecEnvInvocationUnwrapperTests.cs | 117 | // ── HasModifiers ────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …enClaw.Shared.Tests/ExecEnvInvocationUnwrapperTests.cs | 143 | // ── UnwrapForResolution ─────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 38 | // ── Default-deny when file absent ──────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 70 | // ── Malformed JSON → default-deny + warning ─────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 82 | // ── Unsupported version → default-deny + warning ───────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 223 | // ── Allowlist resolution ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 487 | // ── Atomic write ────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 919 | // ── Write path: RecordAllowlistUseAsync ────────────────────────────────── | COMMENT |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 119 | // ── Deserialization: enum values ────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 156 | // ── Cascade resolution ──────────────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 308 | // ── Normalization: default→main migration ───────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 363 | // ── Normalization: socket ───────────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 395 | // ── lastUsedAt as double? ───────────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 418 | // ── EnsureFile (ResolveAsync) ───────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 597 | // ── AutoAllowSkills ─────────────────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 613 | // ── Serialization round-trip ────────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 653 | // ── No side-effects contract ────────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 670 | // ── Cascade: defaults level ─────────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 723 | // ── Cascade: wildcard covers Ask/AskFallback/AutoAllowSkills ───────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 742 | // ── Explicit non-main agentId ───────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 760 | // ── Socket path ─────────────────────────────────────────────────────────── | STRING |
| MEDIUM | tests/OpenClaw.Shared.Tests/ExecApprovalsStoreTests.cs | 794 | // ── WhenWritingNull: null fields omitted from written JSON ──────────────── | STRING |
| 380 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | tests/OpenClaw.Tray.UITests/A2UIControlMatrixTests.cs | 340 | harness.Router.Push(DataUpdate("s", ("subscribed", System.Text.Json.Nodes.JsonValue.Create(true)))); | CODE |
| CRITICAL | tests/OpenClaw.Tray.UITests/A2UIControlMatrixTests.cs | 587 | h.Router.Push(DataUpdate("s", ("volume", System.Text.Json.Nodes.JsonValue.Create(25.0)))); | CODE |
| CRITICAL | tests/OpenClaw.Tray.UITests/A2UIRenderingTests.cs | 142 | var peer = Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer.CreatePeerForElement(btn); | CODE |
| CRITICAL⚡ | src/OpenClaw.Tray.WinUI/Chat/OpenClawChatRoot.cs | 799 | Microsoft.UI.Xaml.Media.Animation.Storyboard.SetTarget(anim, fe); | CODE |
| CRITICAL⚡ | src/OpenClaw.Tray.WinUI/Chat/OpenClawChatRoot.cs | 800 | Microsoft.UI.Xaml.Media.Animation.Storyboard.SetTargetProperty(anim, "Opacity"); | CODE |
| CRITICAL⚡ | src/OpenClaw.Tray.WinUI/Chat/OpenClawChatRoot.cs | 801 | var sb = new Microsoft.UI.Xaml.Media.Animation.Storyboard(); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 266 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName( | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 378 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName( | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 426 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName( | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 578 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetAutomationId( | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 967 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetAutomationId( | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 1763 | Microsoft.UI.Xaml.Controls.Grid.SetColumn(icon, 0); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 1774 | Microsoft.UI.Xaml.Controls.Grid.SetColumn(name, 1); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 1790 | Microsoft.UI.Xaml.Controls.Grid.SetColumn(argBlock, 2); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 1807 | Microsoft.UI.Xaml.Controls.Grid.SetColumn(desc, 3); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 1816 | Microsoft.UI.Xaml.Controls.Grid.SetColumn(badge, 4); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 1953 | var bmp = new Microsoft.UI.Xaml.Media.Imaging.BitmapImage(); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawChatTimeline.cs | 446 | var bmp = new Microsoft.UI.Xaml.Media.Imaging.BitmapImage(); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawChatTimeline.cs | 1986 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(b, $"{label}{automationSuffix}"); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Chat/OpenClawChatTimeline.cs | 2057 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(t, $"{kind} {label}"); | CODE |
| CRITICAL | …ray.WinUI/A2UI/Rendering/Renderers/DisplayRenderers.cs | 259 | if (string.IsNullOrEmpty(Microsoft.UI.Xaml.Automation.AutomationProperties.GetName(fontIcon))) | CODE |
| CRITICAL | …ray.WinUI/A2UI/Rendering/Renderers/DisplayRenderers.cs | 261 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetAccessibilityView( | CODE |
| CRITICAL | …WinUI/A2UI/Rendering/Renderers/InteractiveRenderers.cs | 49 | if (string.IsNullOrEmpty(Microsoft.UI.Xaml.Automation.AutomationProperties.GetName(btn))) | CODE |
| CRITICAL⚡ | …c/OpenClaw.Tray.WinUI/Dialogs/PairingApprovalDialog.cs | 153 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetAutomationId(_rejectButton, "PairingRejectAction"); | CODE |
| CRITICAL⚡ | …c/OpenClaw.Tray.WinUI/Dialogs/PairingApprovalDialog.cs | 159 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetAutomationId(_laterButton, "PairingLaterAction"); | CODE |
| CRITICAL⚡ | …c/OpenClaw.Tray.WinUI/Dialogs/PairingApprovalDialog.cs | 169 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetAutomationId(_approveButton, "PairingApproveAction"); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Windows/ChatWindow.xaml.cs | 656 | foreach (var popup in Microsoft.UI.Xaml.Media.VisualTreeHelper.GetOpenPopupsForXamlRoot(d.XamlRo | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Windows/ChatWindow.xaml.cs | 784 | var count = Microsoft.UI.Xaml.Media.VisualTreeHelper.GetChildrenCount(root); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Windows/ChatWindow.xaml.cs | 787 | var child = Microsoft.UI.Xaml.Media.VisualTreeHelper.GetChild(root, i); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/ConnectionPage.xaml.cs | 498 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName( | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/ConnectionPage.xaml.cs | 523 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName( | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/ConnectionPage.xaml.cs | 1616 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(stack, label); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/ConnectionPage.xaml.cs | 1617 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetLiveSetting( | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/ConnectionPage.xaml.cs | 1741 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(overflowBtn, | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/ConnectionPage.xaml.cs | 1793 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(card, row.DisplayName); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/ConnectionPage.xaml.cs | 3546 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(btn, automationName); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/ConnectionPage.xaml.cs | 3547 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetAutomationId(btn, automationId); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/ChatPage.xaml.cs | 1002 | foreach (var popup in Microsoft.UI.Xaml.Media.VisualTreeHelper.GetOpenPopupsForXamlRoot(d.XamlRo | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/CronPage.xaml.cs | 1188 | parent = Microsoft.UI.Xaml.Media.VisualTreeHelper.GetParent(parent) as FrameworkElement; | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/CronPage.xaml.cs | 1595 | var count = Microsoft.UI.Xaml.Media.VisualTreeHelper.GetChildrenCount(parent); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/CronPage.xaml.cs | 1598 | var child = Microsoft.UI.Xaml.Media.VisualTreeHelper.GetChild(parent, i); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/CronPage.xaml.cs | 1767 | int count = Microsoft.UI.Xaml.Media.VisualTreeHelper.GetChildrenCount(parent); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/CronPage.xaml.cs | 1770 | var child = Microsoft.UI.Xaml.Media.VisualTreeHelper.GetChild(parent, i); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/CronPage.xaml.cs | 2112 | int count = Microsoft.UI.Xaml.Media.VisualTreeHelper.GetChildrenCount(parent); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/CronPage.xaml.cs | 2115 | var child = Microsoft.UI.Xaml.Media.VisualTreeHelper.GetChild(parent, i); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/PermissionsPage.xaml.cs | 201 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(toggle, label); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/ChannelsPage.xaml.cs | 584 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(expander, record.Label); | CODE |
| CRITICAL | src/OpenClaw.Tray.WinUI/Pages/ChannelsPage.xaml.cs | 747 | Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(btn, label); | CODE |
| CRITICAL | …c/OpenClaw.Tray.WinUI/Services/TrayMenuStateBuilder.cs | 84 | Source = new Microsoft.UI.Xaml.Media.Imaging.BitmapImage(new Uri("ms-appx:///Assets/Square44x44Logo. | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …sts/OpenClaw.Tray.UITests/MarkdownRendererListTests.cs | 1 | using OpenClawTray.Chat.Markdown; | COMMENT |
| LOW | tests/OpenClaw.Tray.UITests/UIThreadFixture.cs | 21 | /// - Application.Start blocks the calling thread (it pumps the message loop), | COMMENT |
| LOW | tests/OpenClaw.Tray.UITests/A2UIControlMatrixTests.cs | 601 | Assert.True(node!.TryGetValue<double>(out var d) && d == 73); | COMMENT |
| LOW | tests/OpenClaw.Tray.UITests/TestApp.cs | 1 | using System; | COMMENT |
| LOW | tests/OpenClaw.Tray.UITests/A2UI.cs | 1 | using System.Collections.Generic; | COMMENT |
| LOW | tests/OpenClaw.WinNode.Cli.Tests/RunAsyncTests.cs | 321 | Assert.NotNull(server.LastRequestBody); | COMMENT |
| LOW | tests/OpenClaw.WinNode.Cli.Tests/SkillMdDriftTests.cs | 1 | using System.Text.RegularExpressions; | COMMENT |
| LOW | tests/OpenClaw.Shared.Tests/ChannelsStatusTests.cs | 321 | // Configured Signal exposes CanLogout — it's a QR channel and Logout | COMMENT |
| LOW | tests/OpenClaw.Shared.Tests/SystemRunTests.cs | 1121 | COMMENT | |
| LOW | …Claw.Shared.Tests/GatewayProtocolLiveRoundTripTests.cs | 21 | /// the parsers against crafted <see cref="JsonElement"/> payloads), these tests | COMMENT |
| LOW | …ts/OpenClaw.Shared.Tests/IdentityFileMigrationTests.cs | 1 | using OpenClaw.Shared; | COMMENT |
| LOW | tests/OpenClaw.Shared.Tests/Markdown/Md4cParserTests.cs | 1 | using System.Collections.Generic; | COMMENT |
| LOW | …penClaw.Shared.Tests/Markdown/MdInlineEqualityTests.cs | 1 | using System; | COMMENT |
| LOW | …penClaw.Shared.Tests/Markdown/MdInlineEqualityTests.cs | 21 | /// members (primitives, <c>string</c>, enums) — record-generated equality | COMMENT |
| LOW | …law.Shared.Tests/Protocol/GatewayProtocolDriftTests.cs | 21 | /// <c>Protocol/gateway-protocol-snapshot.json</c> and cross-checks it against what | COMMENT |
| LOW | …law.Shared.Tests/Protocol/GatewayProtocolDriftTests.cs | 161 | /// allowlist: | COMMENT |
| LOW | …law.Shared.Tests/Protocol/GatewayProtocolDriftTests.cs | 401 | } | COMMENT |
| LOW | …law.Shared.Tests/Protocol/GatewayProtocolDriftTests.cs | 501 | } | COMMENT |
| LOW | …law.Shared.Tests/Protocol/GatewayProtocolDriftTests.cs | 581 | COMMENT | |
| LOW | …aw.Tray.IntegrationTests/A2UICanvasIntegrationTests.cs | 1 | using System; | COMMENT |
| LOW | tests/OpenClaw.Tray.IntegrationTests/TrayAppFixture.cs | 41 | _process = SpawnTray(); | COMMENT |
| LOW | …ts/OpenClaw.Tray.Tests/DiagnosticsPageContractTests.cs | 121 | { | COMMENT |
| LOW | …ts/OpenClaw.Tray.Tests/DiagnosticsPageContractTests.cs | 141 | @"OnOpenEventTimeline[\s\S]{0,200}IAppCommands[\s\S]{0,80}ShowConnectionStatus"), | COMMENT |
| LOW | …penClaw.Tray.Tests/NodeInvokeActivityFormatterTests.cs | 1 | using OpenClawTray.Services; | COMMENT |
| LOW | …sts/OpenClaw.Tray.Tests/LocalizationValidationTests.cs | 41 | "WindowTitle_Update", | COMMENT |
| LOW | …sts/OpenClaw.Tray.Tests/LocalizationValidationTests.cs | 221 | // Same precedent as the PermissionsPage / InstancesPage / ConfigPage | COMMENT |
| LOW | tests/OpenClaw.Tray.Tests/InstallerIssAssertionTests.cs | 1 | namespace OpenClaw.Tray.Tests; | COMMENT |
| LOW | tests/OpenClaw.Tray.Tests/ChatTimelineReducerTests.cs | 61 | [Fact] | COMMENT |
| LOW | tests/OpenClaw.Tray.Tests/ChatTimelineReducerTests.cs | 1281 | { | COMMENT |
| LOW | tests/OpenClaw.E2ETests/Setup/E2ESetupFixture.cs | 21 | /// TestResults/E2E directory so CI can upload them as artifacts for debugging. | COMMENT |
| LOW | src/OpenClaw.Tray.WinUI/App.xaml.cs | 421 | // Approach: detect in OnLaunched before any UI is created (WinUI3 Main | COMMENT |
| LOW | src/OpenClaw.Tray.WinUI/App.xaml.cs | 561 | nodeMode = _settings.EnableNodeMode, | COMMENT |
| LOW | src/OpenClaw.Tray.WinUI/App.xaml.cs | 701 | // NodeConnector connect. The NodeConnector.ClientCreated event subscription | COMMENT |
| LOW | src/OpenClaw.Tray.WinUI/App.xaml.cs | 2801 | if (ChatProvider?.IsResponseSuppressed == true) | COMMENT |
| LOW | src/OpenClaw.Tray.WinUI/Chat/OpenClawChatRoot.cs | 41 | private Action<IReadOnlyList<ChatAttachment>>? _onFilesAttached; | COMMENT |
| LOW | src/OpenClaw.Tray.WinUI/Chat/OpenClawChatRoot.cs | 241 | } | COMMENT |
| LOW | src/OpenClaw.Tray.WinUI/Chat/OpenClawChatRoot.cs | 361 | var turnActiveOverride = timeline.TurnActive; | COMMENT |
| LOW | src/OpenClaw.Tray.WinUI/Chat/OpenClawChatRoot.cs | 381 | var isComposeOnlyThread = composeOnlyThread is not null | COMMENT |
| LOW | src/OpenClaw.Tray.WinUI/Chat/OpenClawChatRoot.cs | 661 | COMMENT | |
| LOW | src/OpenClaw.Tray.WinUI/Chat/OpenClawComposer.cs | 21 | COMMENT | |
| LOW | …enClaw.Tray.WinUI/Chat/FunctionalChatHostExtensions.cs | 21 | { | COMMENT |
| LOW | src/OpenClaw.Tray.WinUI/Chat/IChatGatewayBridge.cs | 21 | COMMENT | |
| LOW | src/OpenClaw.Tray.WinUI/Chat/IChatGatewayBridge.cs | 41 | string? sessionId, | COMMENT |
| LOW | src/OpenClaw.Tray.WinUI/Chat/IChatGatewayBridge.cs | 121 | }; | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 41 | /// <see cref="OpenClawGatewayClient"/>) into the | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 61 | /// and turn-end timeline events.</item> | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 201 | // and the first sessions.list — at that point the gateway may still | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 881 | // Approval slash commands ("/approve <slug> allow-once", | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 1741 | // we can synthesise a turn-end + status entry on every thread that | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 2081 | if (requestRemoteBackfillAfterReset) | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 2441 | // • Whitelist terminal phases — we explicitly enumerate the | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 2481 | else if (ApprovalIdMatches(pendingId!, evtSlug, evtApprovalId)) | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 3541 | return ChatPermissionDecision.Denied; | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 3561 | // dedupe window. | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 3841 | "start" => new ChatToolStartEvent(label, toolName, ToolCallId: toolCallId), | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 3861 | /// "title": "exec run command openclaw → ..." | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 4081 | COMMENT | |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 4101 | /// <see cref="MaxEntryTextBytes"/> bytes when encoded as UTF-8 and | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 4141 | if (lo > 0 && char.IsHighSurrogate(text[lo - 1])) lo--; | COMMENT |
| LOW | …c/OpenClaw.Tray.WinUI/Chat/OpenClawChatDataProvider.cs | 4161 | /// trust-taxonomy spoofing). We now require BOTH the prefix AND a | COMMENT |
| 211 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 599 | def test_secret_detector_handles_quoted_json_keys(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 604 | def test_secret_detector_handles_backtick_credential_literals(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 609 | def test_secret_detector_allows_op_backtick_credential_references(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 618 | def test_secret_detector_allows_safe_backtick_interpolation(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 628 | def test_secret_detector_rejects_backtick_interpolation_with_literal_secret( | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 643 | def test_secret_detector_rejects_op_backtick_shell_fallbacks(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 652 | def test_secret_detector_rejects_backtick_fallback_literals(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 662 | def test_secret_detector_rejects_member_reference_fallback_literals(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 672 | def test_secret_detector_rejects_reference_shaped_fallback_literals(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 682 | def test_secret_detector_rejects_reference_shaped_backtick_literals(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 687 | def test_secret_detector_rejects_python_reference_fallback_literals(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 752 | def test_secret_detector_rejects_call_fallback_literals(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 766 | def test_secret_detector_rejects_grouped_fallbacks_after_line_comments( | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1095 | def test_call_argument_split_preserves_secret_shaped_regex(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1105 | def test_call_argument_split_treats_contextual_of_as_identifier(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1113 | def test_control_condition_scan_is_cached_per_source(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1283 | def test_secret_detector_rejects_bare_secret_with_reference_prefix( | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1290 | def test_secret_detector_rejects_multiline_call_fallback_literals(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1300 | def test_secret_detector_rejects_operator_only_multiline_fallbacks(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1310 | def test_secret_detector_rejects_nested_multiline_fallbacks(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1320 | def test_secret_detector_rejects_comment_separated_call_fallbacks(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1331 | def test_secret_detector_rejects_optional_call_fallback_literals(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1340 | def test_secret_detector_ignores_comment_delimiters_in_calls(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1350 | def test_secret_detector_allows_bare_variable_secret_references(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1409 | def test_secret_detector_handles_private_key_header_variants(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1417 | def test_secret_detector_allows_dotted_config_keys(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1424 | def test_secret_detector_handles_punctuation_and_multiline_diff_values(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1494 | def test_secret_detector_handles_bare_call_keyword_values(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1499 | def test_secret_detector_handles_unquoted_underscore_tokens(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1504 | def test_secret_detector_allows_dotted_calls(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1550 | def test_secret_detector_does_not_exempt_expression_text_in_literals(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1560 | def test_secret_detector_handles_lowercase_passphrases(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1565 | def test_secret_detector_handles_low_diversity_passwords(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1574 | def test_secret_detector_handles_credentialed_uris(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1636 | def test_secret_detector_limits_uri_userinfo_to_authority(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1645 | def test_secret_detector_handles_username_only_uri_credentials(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1828 | def test_uri_defaults_and_plain_strings_are_not_interpolation(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1836 | def test_secret_detector_ignores_arrow_parameter_fallbacks(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1843 | def test_uri_interpolation_rejects_literal_expressions(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1851 | def test_secret_detector_handles_basic_authorization_headers(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1859 | def test_secret_detector_allows_basic_authentication_prose(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1867 | def test_template_uri_references_skip_format_scans(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1901 | def test_secret_detector_handles_aws_secret_access_keys(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1910 | def test_secret_detector_allows_common_fixture_literals(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1919 | def test_secret_detector_does_not_trust_in_band_suppressions(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1929 | def test_secret_detector_does_not_treat_quoted_code_text_as_a_reference(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 2179 | def test_read_text_truncates_without_scanning_tail(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 2189 | def test_read_text_marks_unreadable_input_incomplete(self) -> None: | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 2199 | def test_evidence_file_must_be_repo_relative_and_not_symlinked(self) -> None: | CODE |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 69 | def test_powershell_harness_exposes_runnable_engines_only(self) -> None: | CODE |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 76 | def test_local_bundle_blocks_sensitive_untracked_file(self) -> None: | CODE |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 87 | def test_local_bundle_marks_untracked_binary_input_incomplete(self) -> None: | CODE |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 105 | def test_local_bundle_uses_validated_untracked_snapshot(self) -> None: | CODE |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 129 | def test_tracked_binary_changes_are_blocked_in_all_modes(self) -> None: | CODE |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 149 | def test_gitlink_changes_are_blocked_in_all_modes(self) -> None: | CODE |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 174 | def test_gitlink_guard_parses_combined_raw_modes(self) -> None: | CODE |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 188 | def test_codex_config_rejects_capability_bearing_overrides(self) -> None: | CODE |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 204 | def test_codex_config_accepts_safe_tuning_overrides(self) -> None: | CODE |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 218 | def test_untracked_files_respect_trusted_global_excludes(self) -> None: | CODE |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 256 | def test_dirty_check_respects_trusted_global_excludes(self) -> None: | CODE |
| 155 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | tests/OpenClaw.Shared.Tests/ExecApprovalPolicyTests.cs | 579 | // Step 1: torn write. Should be a no-op for in-memory state. | COMMENT |
| LOW⚡ | tests/OpenClaw.Shared.Tests/ExecApprovalPolicyTests.cs | 583 | // Step 2: external writer finishes with a valid file. Engine must | COMMENT |
| LOW⚡ | …OpenClaw.Shared.Tests/ExecApprovalsCoordinatorTests.cs | 980 | // Step 1: AllowAlways → entry persisted (no lastUsed* yet). | COMMENT |
| LOW⚡ | …OpenClaw.Shared.Tests/ExecApprovalsCoordinatorTests.cs | 988 | // Step 2: Same command again → allowlist hit, lastUsed* recorded. | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 45 | // Step 1: validate | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 51 | // Step 2: normalize (unwrap shell wrappers, resolve executables, build canonical identity) | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 58 | // Step 3: buildContext | COMMENT |
| LOW | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 95 | // Step 4: first pass (approvalDecision always null — pass2 decides based on user response) | COMMENT |
| LOW | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 175 | // Step 7: second pass — must never return RequiresPrompt | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 195 | // Step 8: build payload before any store writes — a fail-closed payload result | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 202 | // Step 9: side effects — only reached when the payload is valid. | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 212 | // Step 10: final allow log | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 217 | // Step 10: return Allow | COMMENT |
| LOW⚡ | …OpenClaw.Shared/ExecApprovals/ExecApprovalEvaluator.cs | 19 | // Step 1: security=deny is an absolute override. No user approval can bypass it. | COMMENT |
| LOW⚡ | …OpenClaw.Shared/ExecApprovals/ExecApprovalEvaluator.cs | 23 | // Step 2: explicit user denial. | COMMENT |
| LOW⚡ | …OpenClaw.Shared/ExecApprovals/ExecApprovalEvaluator.cs | 27 | // Step 3: prompt required — give the user a chance before checking for an allowlist miss. | COMMENT |
| LOW⚡ | …OpenClaw.Shared/ExecApprovals/ExecApprovalEvaluator.cs | 32 | // Step 4: allowlist miss — security=allowlist, ask=off, no match, no user approval. | COMMENT |
| LOW | …OpenClaw.Shared/ExecApprovals/ExecApprovalEvaluator.cs | 47 | // Step 5: allow. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | tests/OpenClaw.Shared.Tests/ExecApprovalPolicyTests.cs | 579 | // Step 1: torn write. Should be a no-op for in-memory state. | COMMENT |
| LOW⚡ | tests/OpenClaw.Shared.Tests/ExecApprovalPolicyTests.cs | 583 | // Step 2: external writer finishes with a valid file. Engine must | COMMENT |
| LOW⚡ | …OpenClaw.Shared.Tests/ExecApprovalsCoordinatorTests.cs | 980 | // Step 1: AllowAlways → entry persisted (no lastUsed* yet). | COMMENT |
| LOW⚡ | …OpenClaw.Shared.Tests/ExecApprovalsCoordinatorTests.cs | 988 | // Step 2: Same command again → allowlist hit, lastUsed* recorded. | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 45 | // Step 1: validate | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 51 | // Step 2: normalize (unwrap shell wrappers, resolve executables, build canonical identity) | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 58 | // Step 3: buildContext | COMMENT |
| LOW | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 95 | // Step 4: first pass (approvalDecision always null — pass2 decides based on user response) | COMMENT |
| LOW | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 175 | // Step 7: second pass — must never return RequiresPrompt | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 195 | // Step 8: build payload before any store writes — a fail-closed payload result | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 202 | // Step 9: side effects — only reached when the payload is valid. | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 212 | // Step 10: final allow log | COMMENT |
| LOW⚡ | …nClaw.Shared/ExecApprovals/ExecApprovalsCoordinator.cs | 217 | // Step 10: return Allow | COMMENT |
| LOW⚡ | …OpenClaw.Shared/ExecApprovals/ExecApprovalEvaluator.cs | 19 | // Step 1: security=deny is an absolute override. No user approval can bypass it. | COMMENT |
| LOW⚡ | …OpenClaw.Shared/ExecApprovals/ExecApprovalEvaluator.cs | 23 | // Step 2: explicit user denial. | COMMENT |
| LOW⚡ | …OpenClaw.Shared/ExecApprovals/ExecApprovalEvaluator.cs | 27 | // Step 3: prompt required — give the user a chance before checking for an allowlist miss. | COMMENT |
| LOW⚡ | …OpenClaw.Shared/ExecApprovals/ExecApprovalEvaluator.cs | 32 | // Step 4: allowlist miss — security=allowlist, ask=off, no match, no user approval. | COMMENT |
| LOW | …OpenClaw.Shared/ExecApprovals/ExecApprovalEvaluator.cs | 47 | // Step 5: allow. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 646 | + "word=`op read op://vault/item/password || echo real-hardcoded-" | CODE |
| HIGH⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 759 | + 'ken = process.env.TOKEN || choose(/\\)/, "' | CODE |
| HIGH⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1313 | + "word = user.credentials.password || getDefault(\n" | CODE |
| HIGH | …s/skills/autoreview/tests/test_autoreview_hardening.py | 717 | "pass" + "word = user.credentials.password || null", | CODE |
| HIGH | …s/skills/autoreview/tests/test_autoreview_hardening.py | 993 | + "ken = provider.issue_token(value<int> / total || process.env.TOKEN)", | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …enClaw.Tray.Tests/FlattenedToolOutputDetectionTests.cs | 73 | "Lorem ipsum dolor sit amet consectetur adipiscing elit. " + | CODE |
| LOW | …enClaw.Tray.Tests/FlattenedToolOutputDetectionTests.cs | 73 | "Lorem ipsum dolor sit amet consectetur adipiscing elit. " + | CODE |
| LOW | tests/OpenClaw.Connection.Tests/SetupCodeFlowTests.cs | 488 | public FakeClient() : base("ws://fake", "fake-token", NullLogger.Instance) { } | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1638 | 'url="https://example.com:443?email=user@example.org"', | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1639 | 'url="https://example.com:443#owner=user@example.org"', | CODE |
| LOW⚡ | …s/skills/autoreview/tests/test_autoreview_hardening.py | 1640 | 'url="https://example.com:443" + "?email=user@example.org"', | CODE |
| LOW | docs/A2UI_NATIVE_WINUI.md | 131 | "context": { "/email": "user@example.com" } | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | docs/DATA_FLOW_ARCHITECTURE.md | 79 | ### App.xaml.cs — orchestration layer | COMMENT |
| MEDIUM | …Claw.Tray.WinUI/A2UI/Actions/GatewayActionTransport.cs | 117 | // matches the Android budget hint for a quick agentic step. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | src/OpenClaw.Tray.WinUI/App.xaml.cs | 3541 | /// robust to either identifier space. | COMMENT |
| MEDIUM | src/OpenClaw.Tray.WinUI/Pages/ChannelsPage.xaml.cs | 552 | // The robust fix is to apply Margin to the header element | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 2 | CODE | |
| LOW | …gents/skills/autoreview/scripts/test-review-harness.py | 2 | CODE | |
| LOW | .agents/skills/autoreview/scripts/autoreview_test.py | 2 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 3208 | CODE | |
| LOW | …s/skills/autoreview/tests/test_autoreview_hardening.py | 3773 | CODE |