Gestionnaire de Conformité

VérifiéSûr

Garantit que les modifications apportées à core/security/compliance-manager.js respectent strictement les règles PCI, GDPR, PSD2, SOX et HIPAA : masquage des numéros de carte, chiffrement AES-256-GCM, authentification forte, conservation minimale des données et journalisation sécurisée des audits. Utilisez cette compétence lorsque vous modifiez des validateurs de conformité, des mécanismes de sécurité ou des flux de vérification.

Spar Skills Guide Bot
SecuriteIntermédiaire
5002/06/2026
Claude Code
#compliance#guardrails#pci-dss#gdpr#hipaa

Recommandé pour

Notre avis

Cette compétence applique des garde-fous lors des modifications de core/security/compliance-manager.js pour préserver les contrôles PCI, GDPR, PSD2, SOX et HIPAA.

Points forts

  • Protège les données sensibles (numéros de carte, données personnelles) avec des règles strictes de masquage et chiffrement.
  • Impose l'authentification forte (SCA) et la journalisation d'audit obligatoire.
  • Empêche les contournements accidentels ou intentionnels des validateurs de conformité.
  • Assure le respect de multiples normes réglementaires en un seul endroit.

Limites

  • Se concentre uniquement sur le fichier compliance-manager.js, pas sur les autres modules de sécurité.
  • Les règles sont codées en dur et ne peuvent pas être modifiées sans réécrire la compétence elle-même.
  • Ne prend pas en charge la gestion des exemptions ou des cas particuliers approuvés.
Quand l'utiliser

Utilisez cette compétence lorsque vous modifiez des validateurs de conformité, des mécanismes de sécurité ou des flux d'audit dans compliance-manager.js.

Quand l'éviter

N'utilisez pas cette compétence pour des modifications ne touchant pas aux règles de conformité ou pour d'autres fichiers du projet.

Analyse de sécurité

Sûr
Score qualité90/100

The skill contains only static compliance guidelines and code patterns for maintaining security controls. It does not instruct or enable the AI agent to execute any potentially dangerous operations, and there are no declared tools.

Aucun point d'attention détecté

Exemples

Add new masked field
I need to add a new card field (cvv2) to the compliance manager. Ensure it follows PCI-DSS rules: never log it, mask it, and do not store after auth.
Update encryption algorithm
Update the encryption in compliance-manager.js from AES-256-GCM to AES-256-CBC. Make sure all non-negotiables are preserved.
Bypass audit logging for test
I want to add a debug flag that skips audit logging for certain operations. Apply this compliance skill to assess if it's allowed.

name: compliance-manager description: Guardrails for edits to core/security/compliance-manager.js that preserve PCI/GDPR/PSD2/SOX/HIPAA controls (masking, encryption, SCA, consent checks, and audit logging). Use when changing compliance validators, security handling, or audit flows.

Compliance Manager Guardian

Purpose & Scope

Apply this skill when modifying core/security/compliance-manager.js.

The Compliance Manager provides:

  • PCI-DSS data protection (card data masking, encryption)
  • GDPR compliance (pseudonymization, consent management, data minimization)
  • PSD2 compliance (Strong Customer Authentication)
  • SOX audit trail requirements
  • HIPAA health data protection
  • Multi-regulation validation framework
  • Secure audit logging

Non-Negotiables (Never Do)

Compliance Validators

  • Never disable or bypass compliance validators.
  • Never weaken validation rules (for example, making required checks optional).
  • Never skip validation for "trusted" sources.
  • Never add bypass flags or debug modes that skip compliance.

PCI-DSS Rules

  • Never log these PCI fields (even in debug mode):
    • cvv, cvv2, cvc, cvc2, cid, cav2
    • pin, pinBlock
    • track1, track2, magneticStripe
  • Never weaken card masking:
    • Must show only first 6 and last 4 digits.
    • Middle digits must be masked with *.
  • Never reduce encryption below AES-256-GCM.
  • Never store CVV/PIN after authorization.

GDPR Rules

  • Never process personal data without consent check.
  • Never skip pseudonymization for personal identifiers.
  • Never retain personal data beyond retention period.
  • Never disable data minimization for analytics.

PSD2 Rules

  • Never reduce SCA requirements below 2 factors.
  • Never bypass SCA for amounts over threshold.
  • Never skip transaction monitoring for high-value transactions.
  • Never disable cumulative amount tracking.

Audit Logging

  • Never skip audit logging for sensitive operations.
  • Never delete or modify existing audit entries.
  • Never log sensitive data in audit trails (mask first).
  • Never disable audit persistence.

Security Rollback

  • Never rollback security fixes without security team approval.
  • Never lower security levels in production.

Required Patterns (Must Follow)

Card Number Masking

// Must mask showing only first 6 and last 4
maskCardNumber(cardNumber) {
    const cleaned = cardNumber.replace(/\D/g, '');
    const first6 = cleaned.substring(0, 6);
    const last4 = cleaned.substring(cleaned.length - 4);
    const masked = '*'.repeat(cleaned.length - 10);
    return `${first6}${masked}${last4}`;
}
// Example: 4111111111111111 -> 411111******1111

Data Encryption

// Must use AES-256-GCM
encryptSensitiveData(data) {
    const algorithm = 'aes-256-gcm';  // Do not change
    const key = process.env.ENCRYPTION_KEY;
    if (!key) throw new Error('ENCRYPTION_KEY is required');

    // 12-byte IV is recommended for GCM
    const iv = crypto.randomBytes(12);

    // Prefer @onasis/security-sdk for key handling if available
    // If ENCRYPTION_KEY is a passphrase, derive a 32-byte key via scrypt.
    const keyBuf = (key.length === 64 && /^[0-9a-f]+$/i.test(key))
        ? Buffer.from(key, 'hex')
        : crypto.scryptSync(key, 'onasis-gateway', 32);

    const cipher = crypto.createCipheriv('aes-256-gcm', keyBuf, iv);
    cipher.setAAD(Buffer.from('compliance-encryption'));

    const plaintext = typeof data === 'string' ? data : JSON.stringify(data);
    const ciphertext = Buffer.concat([cipher.update(plaintext, 'utf8'), cipher.final()]);
    const authTag = cipher.getAuthTag();

    return {
        encrypted: ciphertext.toString('base64'),
        iv: iv.toString('hex'),
        authTag: authTag.toString('hex'),
        algorithm
    };
}

Strong Customer Authentication

// Must require 2+ factors
validateSCA(data) {
    const factors = [];

    if (data.password || data.pin) factors.push('knowledge');
    if (data.deviceId || data.token) factors.push('possession');
    if (data.biometric || data.fingerprint) factors.push('inherence');

    return factors.length >= 2;  // PSD2 requirement
}

Defense in Depth

// Must apply all applicable protections
enforceDataHandling(serviceId, data, operation) {
    let processedData = { ...data };

    if (service?.compliance?.pci) {
        processedData = this.applyPCIProtections(processedData, operation);
    }
    if (service?.compliance?.gdpr) {
        processedData = this.applyGDPRProtections(processedData, operation);
    }
    if (service?.compliance?.psd2) {
        processedData = this.applyPSD2Protections(processedData, operation);
    }

    return processedData;
}

Audit Entry Creation

// Must create audit entry for all compliance events
logAuditEntry(action, details) {
    const entry = {
        timestamp: new Date(),
        action,
        details,
        id: crypto.randomUUID()
    };

    this.auditLog.push(entry);
    this.emit('audit:logged', entry);
    this.persistAuditEntry(entry);  // Must persist
}

Prohibited Fields Registry

| Field | Regulation | Storage | Logging | Transmission | |-------|------------|---------|---------|--------------| | cvv, cvv2, cvc, cvc2 | PCI-DSS 3.2 | Never | Never | HTTPS only | | pin, pinBlock | PCI-DSS 3.4 | Never | Never | Encrypted | | track1, track2 | PCI-DSS 3.2 | Never | Never | Never | | magneticStripe | PCI-DSS 3.2 | Never | Never | Never | | Full card number | PCI-DSS 3.4 | Encrypted | Masked | Encrypted |

Integration Points

| Component | Integration Method | |-----------|-------------------| | Base Client | Data passed through enforceDataHandling() | | Metrics Collector | compliance_violations_total metric | | API Routes | Middleware for request validation | | Database | Audit entries persisted to audit.compliance_log |

Compliance Validation Checklist

Before deploying changes:

  • [ ] Card data properly masked (first 6, last 4 only).
  • [ ] CVV/PIN never logged or stored.
  • [ ] Encryption uses AES-256-GCM.
  • [ ] SCA requires 2+ factors.
  • [ ] Audit entries created for all operations.
  • [ ] GDPR consent check in place.
  • [ ] Data minimization applied for analytics.
  • [ ] No PII in metric labels.
  • [ ] Audit log persisted to secure storage.
Skills similaires