Contexte : Le S.I. présentait des vulnérabilités critiques avec un score PingCastle de 100/100 sur les comptes à privilèges, dû à une utilisation généralisée des droits administrateurs locaux. L'objectif était de mettre l'infrastructure en conformité avec les guidelines de sécurité du groupe (Zero Trust, Modèle de Tiering).
Réalisations Techniques :
- Gestion des Privilèges (PAM) : Révocation totale des droits administrateurs locaux sur l'ensemble des postes. Déploiement par GPO et MDT de la solution Admin By Request pour permettre une élévation de privilèges temporaire, soumise à validation et entièrement journalisée.
- Hardening Active Directory : Implémentation de l'architecture de Tiering (Tier 1-0 pour les serveurs/AD, Tier 2 pour la bureautique). Nettoyage en masse des attributs
SIDHistory obsolètes via scripting PowerShell (188 objets traités). Le score PingCastle a été drastiquement réduit de 100 à 5.
- Station Blanche d'Administration : Déploiement d'une VM d'administration dédiée. Isolation réseau stricte via FortiGate (blocage total de l'accès à Internet). Sécurisation du flux entrant via GPO : activation du RDP sur un port personnalisé et blocage du port standard.
- LAPS : Préparation du déploiement de Microsoft LAPS pour la rotation automatisée des mots de passe des comptes administrateurs locaux.
Context: The IT system had critical vulnerabilities, including a PingCastle score of 100/100 for privileged accounts due to the widespread use of local admin rights. The goal was to align the infrastructure with corporate security guidelines (Zero Trust, AD Tiering Model).
Technical Achievements:
- Privileged Access Management (PAM): Full revocation of local administrator rights across workstations. Deployment of Admin By Request via GPO and MDT to enable temporary, workflow-approved, and fully audited privilege elevation.
- Active Directory Hardening: Implementation of the Tiering model (Tier 1-0 for Servers/AD, Tier 2 for workstations). Mass cleanup of obsolete
SIDHistory attributes via PowerShell scripting (188 objects processed). The PingCastle vulnerability score was drastically reduced from 100 to 5.
- Dedicated Admin Workstation: Deployment of a dedicated administration VM. Strict network isolation via FortiGate (total outbound internet block). Inbound traffic secured via GPO: custom RDP port activation and default port blocking.
- LAPS: Preparation and deployment planning of Microsoft LAPS for automated local administrator password rotation.
Flux de la station d'administration isolée
Isolated Admin Workstation Flow
graph LR
IT([IT Team
USERS VLAN]) -->|Secure RDP| VM[Admin Workstation
Clean Room VM]
Internet((Internet)) -.->|Blocked by FortiGate| VM
subgraph "SERVERS VLAN (Tier 1-0 Secure Zone)"
VM -->|RSAT / RDP| AD[(Active Directory)]
VM -->|Console / RDP| SRV[Infrastructure Servers]
end
classDef secure fill:#2e1065,stroke:#9b51e0,stroke-width:2px,color:#fff;
classDef ad fill:#0f172a,stroke:#10b981,stroke-width:2px,color:#fff;
classDef srv fill:#0f172a,stroke:#3b82f6,stroke-width:2px,color:#fff;
classDef user fill:#f1f5f9,stroke:#64748b,stroke-width:2px,color:#000;
classDef net fill:#ef4444,stroke:#b91c1c,stroke-width:2px,color:#fff;
class VM secure;
class AD ad;
class SRV srv;
class IT user;
class Internet net;