Appearance
SEC457 / MD-JS-PACKAGE-STRICT-SSL-FALSE
SEC457 flags AI-native markdown when an npm config set, pnpm config set, or yarn config set command disables strict SSL verification with strict-ssl false or strict-ssl=false.
Why It Matters
Disabling strict SSL verification removes normal certificate checks for package-manager network traffic. In shared AI-native instructions, that turns a TLS-bypass into copy-pastable setup guidance.
What Triggers It
- AI-native markdown surface
- the same parsed markdown region contains:
npm config setpnpm config set- or
yarn config set
- the same region also contains:
strict-ssl false- or
strict-ssl=false
The finding points to the strict-ssl false token.
What Does Not Trigger It
strict-ssl true- unrelated prose that mentions SSL without a matching package-manager config command
Example
Bad:
bash
npm config set strict-ssl falseBetter:
bash
npm config set strict-ssl trueRemediation
Remove the strict-ssl disable and keep normal certificate verification enabled for package-manager config.