You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: infra-cdk/lib/backend-stack.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -123,6 +123,7 @@ export class BackendStack extends cdk.NestedStack {
123
123
if(deploymentType==="zip"){
124
124
// ZIP DEPLOYMENT: Use Lambda to package and upload to S3 (no Docker required)
125
125
constrepoRoot=path.resolve(__dirname,"..","..")
126
+
// nosemgrep: javascript.lang.security.audit.path-traversal.path-join-resolve-traversal.path-join-resolve-traversal — pattern is from trusted local config.yaml, not user input
Copy file name to clipboardExpand all lines: infra-cdk/lib/utils/config-manager.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -113,11 +113,11 @@ export class ConfigManager {
113
113
returnthis.config
114
114
}
115
115
116
-
// nosemgrep: javascript.lang.security.audit.prototype-pollution.prototype-pollution-loop.prototype-pollution-loop — iterates over a trusted local YAML config object, not user-controlled input
117
116
publicget(key: string,defaultValue?: any): any{
118
117
constkeys=key.split(".")
119
118
letvalue: any=this.config
120
119
120
+
// nosemgrep: javascript.lang.security.audit.prototype-pollution.prototype-pollution-loop.prototype-pollution-loop — iterates over a trusted local YAML config object, not user-controlled input
0 commit comments