Use of Hard-coded, Security-relevant Constants
The product uses hard-coded constants instead of symbolic names for security-critical values, which increases the likelihood of mistakes during code maintenance or security reviews.
Hard-coded values make code harder to understand and maintain. When security-relevant values are hard-coded, it increases the risk of errors when the code needs to be modified.
Como corrigir esta vulnerabilidade
Estratégias de prevenção para Hardcoded Security Constants baseadas em 2 regras de detecção do Shoulder.
Use environment variables for URLs with localhost as a development fallback
- const API_URL = 'http://localhost:3000'; + const API_URL = process.env.API_URL || 'http://localhost:3000'; const response = await fetch(`${API_URL}/users`);
Load URLs from environment variables with localhost as the development fallback
- API_URL = "http://localhost:3000/api" - DB_HOST = "127.0.0.1" + import os + + API_URL = os.getenv('API_URL', 'http://localhost:3000/api') + DB_HOST = os.getenv('DB_HOST', 'localhost') def fetch_data(): response = requests.get(f'{API_URL}/data') return response.json()
Práticas-chave
- Use environment variables
- configurable via environment variables
Encontre vulnerabilidades no seu código
Use o Shoulder para escanear seu código em busca de padrões Use of Hard-coded, Security-relevant Constants. 2 regras.
# Scan with Shoulder CLI npx @shoulderdev/cli trust --cwe=547 # Or scan entire project npx @shoulderdev/cli trust .
Regras de Detecção (2)
O que observar nas revisões de código
Estes padrões indicam vulnerabilidades potenciais de Use of Hard-coded, Security-relevant Constants. Procure-os durante revisões de código e auditorias de segurança.
Escaneie seu código para Use of Hard-coded, Security-relevant Constants
O Shoulder CLI encontra padrões vulneráveis em todo o seu código.