Appearance
SEC464 / MD-GIT-HTTP-CLONE
SEC464 flags AI-native markdown when a git clone example fetches a repository directly from http://....
Why It Matters
An http:// clone source removes transport integrity from repository bootstrap. In shared AI-native instructions, that turns an insecure source fetch into copy-pastable setup guidance.
What Triggers It
- AI-native markdown surface
- the same parsed markdown region contains
git clone - the same region also contains a direct
http://repository source
The finding points to the http:// token itself.
What Does Not Trigger It
git clone https://...- unrelated
http://prose outside a matchinggit cloneform
Example
Bad:
bash
git clone http://git.example.test/demo.gitBetter:
bash
git clone https://github.com/acme/demo.gitRemediation
Replace the insecure http:// clone source with a normal TLS-verified https:// repository URL.