રહસ્યો (API કીઓ, પાસવર્ડ, ટોકન, એનક્રિપ્શન કીઓ) સુરક્ષિત રીતે સંચાલિત કરવી આવશ્યક છે — કોડમાં કોઈપણ હાર્ડકોડ કરવું નહીં અથવા સંસ્કરણ નિયંત્રણમાં પ્રતિબદ્ધ કરવું નહીં, પરંતુ સુરક્ષિતપણે સંગ્રહ અને ઍક્સેસ કરવું. નબળું રહસ્યો સંચાલન એ ઉલ્લંઘનનું સામાન્ય, ગંભીર સ્ત્રોત છે.
મુખ્ય નિયમ: કોઈપણ હાલતમાં રહસ્યો હાર્ડકોડ અથવા પ્રતિબદ્ધ કરશો નહીં
❌ NEVER hardcode secrets in source code or commit them to Git:
→ committed secrets are in the repo HISTORY (exposed even if "removed" later)
→ public repos / leaks expose them to attackers (bots scan GitHub for keys constantly)
→ a TOP cause of breaches (leaked AWS keys, database passwords, API tokens)
⚠️ If a secret IS committed/leaked → ROTATE it immediately (it's compromised)
