David Gacias

Results 3 comments of David Gacias

Had the same issue, solved it the same way as you mentioned: $ sudo vim +313 /usr/local/lib/node_modules/gsts/index.js Before: `if (/google|gstatic|youtube|googleusercontent|googleapis|gvt1/.test(route.request().url())) { ` Now: ` if (/google|gstatic|okta|youtube|googleusercontent|googleapis|gvt1/.test(route.request().url())) { ` I can...

Indeed this command worked: $ fcli fod sast setup --release=$APP:$RELEASE --entitlement-frequency=Subscription --assessment-type="Static Assessment" --audit-preference=Manual --technology-stack=JAVA --language-level=21 And then I could start the scan successfully with this one: $ fcli fod...

In that case, what about adding to this line: https://github.com/fortify/fcli/blob/d3c436fdf6a51712b3bed58e8c069cd86593962e/fcli-core/fcli-fod/src/main/java/com/fortify/cli/fod/_common/scan/helper/FoDScanHelper.java#L167 "Cannot find appropriate assessment type for specified options. Please specify the Name of a valid assessment type." That would help...