Appearance
SEC465 / MD-GIT-HTTP-REMOTE flags AI-native markdown that configures a Git remote through plain http://.
Why this matters:
git remote add ... http://...bakes insecure transport into repository setup guidance- the example can be copied directly into bootstrap instructions or onboarding docs
- the safer replacement is a normal TLS-verified
https://repository URL
Triggers:
bash
git remote add origin http://git.example.test/demo.gitDoes not trigger:
bash
git remote add origin https://github.com/acme/demo.gitRemediation:
- replace the insecure
http://remote source with a normal TLS-verifiedhttps://repository URL