Appearance
SEC471 flags AI-native markdown when an exact git config example disables Git transport verification with http.sslVerify false or http.sslVerify=false.
Why this matters
Turning off http.sslVerify disables normal TLS verification for Git HTTP transport. In shared AI-native instructions, that converts a risky trust-bypass workaround into copy-pastable setup guidance.
What triggers it
- a parsed markdown region contains
git config - the same region also contains:
http.sslVerify false- or
http.sslVerify=false
The finding points to the http.sslVerify false token.
What does not trigger it
git config http.sslVerify true- safety guidance such as
Do not use git config http.sslVerify false - unrelated prose that mentions Git without the exact config form
Example
bash
git config http.sslVerify falseBetter
bash
git config http.sslVerify trueRemediation
Remove http.sslVerify false and keep Git transport verification enabled instead of teaching a shared TLS-bypass workflow.