From 78f9849cb79ac3cca6195707b71aa8856dfd51b0 Mon Sep 17 00:00:00 2001 From: Paul Hutchinson Date: Tue, 18 Nov 2025 14:10:31 +0000 Subject: [PATCH] [feature] SC-166737/improve app proxy security by restricting where token replacements can go --- manifest.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 73f5d07..ebce997 100644 --- a/manifest.json +++ b/manifest.json @@ -119,7 +119,8 @@ "POST", "PATCH" ], - "timeout": 20 + "timeout": 20, + "settingsInjection": {} }, { "url": "https://app.copper.com/oauth/.*", @@ -129,7 +130,15 @@ "POST", "PATCH" ], - "timeout": 20 + "timeout": 20, + "settingsInjection": { + "client_id": { + "body": ["client_id"] + }, + "client_secret": { + "body": ["client_secret"] + } + } } ] }