commit 6a475e680ffae4e5d503aa597bc0b39d561b291b Author: Admin MPCZ Date: Fri Apr 24 14:23:16 2026 +0200 Initial commit: SANEF Qualys V3 taxonomie scripts (gen_xlsx, gen_resume, send_*, apply_sed_sei) + inputs + docs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..301a07b --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +__pycache__/ +*.pyc +*.tmp +~$* +.sanef_qualys.db diff --git a/README.md b/README.md new file mode 100644 index 0000000..3cbcc64 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +# SANEF Qualys Taxonomie V3 + +Scripts de génération/maintenance de la taxonomie Qualys V3 SANEF (tags dynamiques + statiques + préfixes manuels). + +## Structure +- `inputs/` — sources : exports CSV Qualys, listes bulk manuelles, refs QQL, captures règles +- `docs/` — générés : xlsx référence + docx résumé exécution +- Scripts à la racine + +## Scripts +| Script | Rôle | +|---|---| +| `gen_xlsx.py` | Génère `docs/SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx` (référence complète 23 DYN + 7 STAT + préfixes) | +| `gen_resume.py` | Génère `docs/SANEF_Qualys_V3_Resume_Vigilance.docx` (résumé exécution + points de vigilance + TODO) | +| `send_xlsx.py` | Envoie le xlsx par email via Gmail SMTP | +| `send_docx.py` | Envoie docx + xlsx par email | +| `apply_sed_sei_tags.py` | Applique TAG-SED / TAG-SEI en bulk via API Qualys (fallback si SQATM indispo) | + +## Envoi email +``` +$env:GMAIL_APP_PASSWORD="xxxx xxxx xxxx xxxx" +py send_docx.py +``` +Prérequis : App Password Gmail (voir mémoire `gmail_smtp.md`). + +## Notes +Nomenclature V3 : `OS-*`, `EQT-*` (équipement), `ENV-*` (environnement), `POS-*` (positionnement), `TAG-*`. +Voir `inputs/qualys_qql_ref.txt` pour le référentiel QQL. diff --git a/apply_sed_sei_tags.py b/apply_sed_sei_tags.py new file mode 100644 index 0000000..4b24b46 --- /dev/null +++ b/apply_sed_sei_tags.py @@ -0,0 +1,194 @@ +#!/usr/bin/env python3 +""" +Bulk apply TAG-SED and TAG-SEI to SANEF DMZ assets via Qualys QPS REST API. + +Usage: + # Dry run (default) - just lists what would happen + python apply_sed_sei_tags.py + + # Apply for real + python apply_sed_sei_tags.py --apply + +Auth: + Set env vars QUALYS_URL, QUALYS_USER, QUALYS_PASS + OR script will prompt interactively. + +Files expected: + C:\\Claude\\sanef\\QL\\inputs\\bulk_tag_sed.txt (9 hostnames) + C:\\Claude\\sanef\\QL\\inputs\\bulk_tag_sei.txt (21 hostnames) +""" +import os +import sys +import time +import getpass +import requests +import urllib3 + +urllib3.disable_warnings() + +URL = os.environ.get("QUALYS_URL", "https://qualysapi.qualys.eu") +USER = os.environ.get("QUALYS_USER") or input("Qualys user: ") +PASS = os.environ.get("QUALYS_PASS") or getpass.getpass("Qualys password: ") + +APPLY = "--apply" in sys.argv + +session = requests.Session() +session.auth = (USER, PASS) +session.headers.update({ + "X-Requested-With": "SANEF-bulk-sed-sei", + "Content-Type": "application/json", +}) +session.verify = False +# Force no proxy (ignore HTTP_PROXY/HTTPS_PROXY env vars) +session.trust_env = False +session.proxies = {"http": "", "https": ""} + + +def call(endpoint, body=None, retries=3): + for attempt in range(retries): + r = session.post(URL + endpoint, json=body, timeout=60) + if r.status_code == 200: + return r.text + if r.status_code == 409 or r.status_code == 429: # rate limit + print(f" [RATE LIMIT] wait 30s...") + time.sleep(30) + continue + print(f" [HTTP {r.status_code}] {endpoint}") + print(f" Response body (first 500 chars): {r.text[:500]}") + r.raise_for_status() + raise RuntimeError(f"Max retries exceeded for {endpoint}") + + +def parse_xml(text, tag): + s, e = f"<{tag}>", f"" + pos = 0 + out = [] + while True: + i = text.find(s, pos) + if i == -1: + break + i += len(s) + j = text.find(e, i) + if j == -1: + break + out.append(text[i:j].strip()) + pos = j + len(e) + return out + + +def find_tag_id(name): + body = {"ServiceRequest": {"filters": {"Criteria": [ + {"field": "name", "operator": "EQUALS", "value": name} + ]}}} + resp = call("/qps/rest/2.0/search/am/tag", body) + ids = parse_xml(resp, "id") + return ids[0] if ids else None + + +def _search_hostasset(field, operator, value): + body = {"ServiceRequest": {"filters": {"Criteria": [ + {"field": field, "operator": operator, "value": value} + ]}, "preferences": {"limitResults": 20}}} + return call("/qps/rest/2.0/search/am/hostasset", body) + + +def find_asset_id(name): + # Strategy 1: exact match on name (short hostname) + resp = _search_hostasset("name", "EQUALS", name) + if "" in resp: + block = resp.split("", 1)[1].split("", 1)[0] + ids = parse_xml(block, "id") + if ids: + return ids[0] + # Strategy 2: CONTAINS name — couvre les cas FQDN stockés (vrosapsrv1 -> vrosapsrv1.sanef.groupe) + resp = _search_hostasset("name", "CONTAINS", name) + blocks = [b.split("", 1)[0] for b in resp.split("")[1:]] + for b in blocks: + nm = (parse_xml(b, "name") or [""])[0].lower() + if nm == name.lower() or nm.startswith(name.lower() + "."): + ids = parse_xml(b, "id") + if ids: + return ids[0] + # Strategy 3: netbiosName EQUALS uppercase (cas Windows hosts) + try: + resp = _search_hostasset("netbiosName", "EQUALS", name.upper()) + if "" in resp: + block = resp.split("", 1)[1].split("", 1)[0] + ids = parse_xml(block, "id") + if ids: + return ids[0] + except Exception: + pass + return None + + +def add_tag_to_asset(asset_id, tag_id): + body = {"ServiceRequest": {"data": {"HostAsset": {"tags": { + "add": {"TagSimple": {"id": tag_id}} + }}}}} + resp = call(f"/qps/rest/2.0/update/am/hostasset/{asset_id}", body) + return "SUCCESS" in resp + + +def process(tag_name, hostnames_file): + print(f"\n=== {tag_name} ===") + tag_id = find_tag_id(tag_name) + if not tag_id: + print(f" !! Tag '{tag_name}' introuvable sur Qualys. SKIP.") + return 0, 0 + print(f" Tag ID: {tag_id}") + try: + with open(hostnames_file, encoding="utf-8") as f: + hosts = [l.strip() for l in f if l.strip()] + except FileNotFoundError: + print(f" !! Fichier introuvable: {hostnames_file}") + return 0, 0 + print(f" {len(hosts)} hostnames a traiter\n") + + ok, ko = 0, 0 + for h in hosts: + aid = find_asset_id(h) + if not aid: + print(f" [NOT_FOUND] {h}") + ko += 1 + continue + if not APPLY: + print(f" [DRY] {h:<25} aid={aid} -> would add tag {tag_id}") + ok += 1 + continue + try: + if add_tag_to_asset(aid, tag_id): + print(f" [OK] {h:<25} aid={aid} tagged") + ok += 1 + else: + print(f" [FAIL] {h:<25} aid={aid}") + ko += 1 + time.sleep(0.4) # rate limit margin + except Exception as e: + print(f" [ERR] {h}: {e}") + ko += 1 + return ok, ko + + +def main(): + mode = "APPLY (real)" if APPLY else "DRY RUN" + print(f"Mode: {mode}") + print(f"URL: {URL}") + print(f"User: {USER}") + + t_ok, t_ko = 0, 0 + for tag, path in [ + ("TAG-SED", r"C:\Claude\sanef\QL\inputs\bulk_tag_sed.txt"), + ("TAG-SEI", r"C:\Claude\sanef\QL\inputs\bulk_tag_sei.txt"), + ]: + ok, ko = process(tag, path) + t_ok += ok + t_ko += ko + + print(f"\n=== TOTAL: {t_ok} OK / {t_ko} KO ===") + if not APPLY: + print("\n>>> DRY RUN termine. Pour appliquer: python apply_sed_sei_tags.py --apply") + + +if __name__ == "__main__": + main() diff --git a/docs/SANEF_Qualys_Tags_V3_RuleTypes.ods b/docs/SANEF_Qualys_Tags_V3_RuleTypes.ods new file mode 100644 index 0000000..05800f9 Binary files /dev/null and b/docs/SANEF_Qualys_Tags_V3_RuleTypes.ods differ diff --git a/docs/SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx b/docs/SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx new file mode 100644 index 0000000..d9edc9a Binary files /dev/null and b/docs/SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx differ diff --git a/docs/SANEF_Qualys_V3_Resume_Vigilance.docx b/docs/SANEF_Qualys_V3_Resume_Vigilance.docx new file mode 100644 index 0000000..a603135 Binary files /dev/null and b/docs/SANEF_Qualys_V3_Resume_Vigilance.docx differ diff --git a/gen_resume.py b/gen_resume.py new file mode 100644 index 0000000..c507a5c --- /dev/null +++ b/gen_resume.py @@ -0,0 +1,302 @@ +# -*- coding: utf-8 -*- +"""Generate SANEF Qualys V3 - resume execution + points de vigilance.docx""" +from docx import Document +from docx.shared import Pt, RGBColor, Inches, Cm +from docx.enum.text import WD_ALIGN_PARAGRAPH + +doc = Document() + +style = doc.styles['Normal'] +style.font.name = 'Calibri' +style.font.size = Pt(10) + +# ===== Cover ===== +title = doc.add_heading('SANEF — Qualys Taxonomie V3', 0) +title.alignment = WD_ALIGN_PARAGRAPH.CENTER + +sub = doc.add_paragraph() +sub.alignment = WD_ALIGN_PARAGRAPH.CENTER +r = sub.add_run('Résumé d\'exécution + points de vigilance') +r.font.size = Pt(14) +r.italic = True + +meta = doc.add_paragraph() +meta.alignment = WD_ALIGN_PARAGRAPH.CENTER +r = meta.add_run('Date : 22 avril 2026\nRédacteur : Khalid MOUTAOUAKIL — SECOPS\nVersion : 1.0') +r.font.size = Pt(11) + +doc.add_paragraph() +doc.add_paragraph('_' * 80) +doc.add_paragraph() + +# ===== 1. Résumé ===== +doc.add_heading('1. Résumé de la session', level=1) +doc.add_paragraph( + "Cette session a consisté à déployer la taxonomie V3 des tags Qualys SANEF, " + "définie dans le document « Processus d'affectation des Tags Qualys — Nomenclature V3 ». " + "L'ensemble des règles a été créé directement dans la console Qualys (module Asset Inventory) " + "et appliqué sur le parc actif (~3,22k assets sur 6,24k au total)." +) + +doc.add_heading('1.1 Tags créés', level=2) +doc.add_paragraph('5 parents (containers organisationnels statiques) :', style='List Bullet') +for p in ['OS', 'EQT', 'ENV', 'POS', 'TAG']: + doc.add_paragraph(p, style='List Bullet 2') + +doc.add_paragraph('23 tags dynamiques (Asset Inventory rule engine) :', style='List Bullet') +for line in [ + 'OS-LIN-SRV (729), OS-WIN-SRV (505), OS-WIN-WKS (~2056), OS-MAC (7), OS-ESX (2)', + 'EQT-VIR (956), EQT-SRV (307), EQT-SWI (72)', + 'ENV-PRD (~772), ENV-REC (~302), ENV-PPR (~76), ENV-TST (83), ENV-DEV (~21)', + 'POS-FL, POS-INF, POS-PEA, POS-TRA, POS-BI, POS-GES (counts variables, voir console)', + 'NOM-LEGACY (219) — KPI dette de conformité V3', + 'TAG-EMV (~34) — zone PCI-DSS', + 'TAG-OBS (~190+) — OS EOL liste explicite', +]: + doc.add_paragraph(line, style='List Bullet 2') + +doc.add_paragraph('Tags statiques (bulk SQATM) :', style='List Bullet') +for line in [ + 'TAG-SED (10) — exposition directe Internet', + 'TAG-SEI (22) — exposition indirecte derrière frontal', + 'TAG-ELS (vide) — extension de licence (exclusion EOL)', + 'TAG-DEC, TAG-INT, TAG-SIC, TAG-SIA — statiques manuels', +]: + doc.add_paragraph(line, style='List Bullet 2') + +doc.add_heading('1.2 Découvertes techniques majeures', level=2) +findings = [ + ("Limites QQL Tag rule engine", + "Le moteur Asset Inventory pour la création de règles n'accepte que la syntaxe starts-with " + "(asset.name:vp*). Les opérateurs CONTAINS (*X*) et les guillemets (\"X\") échouent. La clé " + "tags.name peut être utilisée dans les recherches interactives mais PAS dans la création de " + "règles dynamiques (l'API rejette le commit avec « Error while committing transaction »)."), + ("FQDN .sanef.groupe non env-spécifique", + "Découverte initialement supposée comme indicateur Production, le domaine AD interne " + ".sanef.groupe est en réalité utilisé par tous les serveurs SANEF (PRD, REC, PPR, TST, DEV). " + "Utiliser comme filtre broad provoque des overlaps massifs entre tags ENV. Solution adoptée : " + "scoper FQDN par pattern hostname précis (ex : vmm*.sanef-int.adds pour les Win11 prod uniquement)."), + ("Conflits de préfixes 5-char entre POS", + "Plusieurs préfixes hostname appartiennent à des domaines différents selon contexte applicatif " + "(ex : vppea* = FL pour BOOST + PEA pour SVP). Résolution par énumération 7-char spécifique " + "(vppeaab* BOOST = FL, vppeaaa*/ar*/ae* SVP = PEA) et clauses NOT exclusives."), + ("Zone DMZ multi-subnet", + "La DMZ SANEF est segmentée en 15 sous-réseaux /24 différents. Pas de CIDR unique. " + "Impossible de faire une règle dynamique simple par IP. Tagging actuel TAG-SED/SEI en static " + "via SQATM bulk."), + ("Tag built-in Qualys « Obsolete »", + "Qualys maintient automatiquement un tag « Obsolete » basé sur sa détection EOL. ~190 assets " + "SANEF sont taggés. Ce tag NE peut PAS être référencé dans une règle de tag custom (limitation " + "Qualys). On utilise une liste OS explicite pour TAG-OBS."), + ("Postes Superviseur Péage (svp*) — exclusion ENV-TST et EQT-SRV", + "Le préfixe sv* visait initialement les serveurs physiques de test (svboomcla2, etc.). " + "Découverte : ~100 postes de travail Windows 11 (HP Elite Mini desktops SVP2xxxx + HP EliteBook " + "SVP1xxxx) commencent aussi par svp* — ce sont des postes Superviseur Péage, pas des serveurs. " + "Sans exclusion explicite, ils étaient ramassés par ENV-TST (~180 au lieu de 83) et " + "potentiellement par EQT-SRV. Correction : ajout de « and not asset.name:svp* » sur les deux " + "règles. ENV-TST passe à 83 assets, cohérent avec le périmètre attendu."), +] +for h, t in findings: + p = doc.add_paragraph() + p.add_run(h + ' : ').bold = True + p.add_run(t) + +# ===== 2. Points de vigilance ===== +doc.add_page_break() +doc.add_heading('2. Points de vigilance', level=1) +doc.add_paragraph( + "Les éléments suivants nécessitent une surveillance ou des actions futures pour maintenir " + "la cohérence et l'exhaustivité de la taxonomie V3." +) + +doc.add_heading("2.1 POS-DMZ — à adapter une fois la DMZ normalisée", level=2) +doc.add_paragraph( + "Statut actuel : pas de tag POS-DMZ créé. La gestion DMZ est faite via TAG-SED (10 frontaux) " + "et TAG-SEI (22 backends), tous statiques." +) +p = doc.add_paragraph() +p.add_run('Problème : ').bold = True +p.add_run( + "la DMZ SANEF s'étend sur 15 sous-réseaux /24 différents (192.168.2/24, 192.168.20/24, " + "192.168.31/24, 10.41.20/24, 10.42.30/24, 10.205.0/24, etc.). Aucun CIDR unique ne permet " + "actuellement une règle dynamique simple." +) +p = doc.add_paragraph() +p.add_run('Action requise : ').bold = True +p.add_run( + "demander à l'équipe réseau SANEF de fournir soit (a) le CIDR DMZ consolidé (si réorganisation " + "envisagée), soit (b) une nomenclature IP DMZ-spécifique (par exemple un /20 dédié). Une fois " + "obtenu, basculer TAG-SED et TAG-SEI en règles dynamiques basées sur " + "asset.interface:(address: )." +) +p = doc.add_paragraph() +p.add_run('Alternative : ').bold = True +p.add_run( + "si la DMZ reste multi-subnet, garder TAG-SED/TAG-SEI en static. Documenter dans la procédure " + "patcheur SECOPS : tout nouveau serveur en zone DMZ doit être taggé manuellement via SQATM " + "selon son rôle (frontal = SED, backend = SEI)." +) +p = doc.add_paragraph() +p.add_run('Plages publiques connues pour TAG-SED dynamique : ').bold = True +p.add_run("83.68.96.0/24 (Juniper firewalls), 83.68.99.0/24 (F5 BIG-IP). Ces plages peuvent être " + "utilisées pour basculer TAG-SED en dynamique partiel dès aujourd'hui :") +doc.add_paragraph( + "asset.interface:(address: 83.68.96.0/24) or asset.interface:(address: 83.68.99.0/24)", + style='Intense Quote' +) + +doc.add_heading('2.2 TAG-ELS — saisie manuelle au cas par cas', level=2) +doc.add_paragraph( + "TAG-ELS (Extended Life License) identifie les serveurs sous contrat de support sécurité " + "étendu payé (Microsoft ESU, Red Hat ELS, etc.). Ces serveurs ne doivent PAS être considérés " + "comme TAG-OBS car ils reçoivent encore des correctifs de sécurité." +) +p = doc.add_paragraph() +p.add_run('Statut actuel : ').bold = True +p.add_run("TAG-ELS créé (statique, vide). Aucun asset taggué.") +p = doc.add_paragraph() +p.add_run('Action requise : ').bold = True +p.add_run( + "lister les serveurs SANEF sous contrats ELS (vérifier avec la DSI / responsables applicatifs / " + "renouvellements de licence Microsoft/RedHat). Saisir manuellement via SQATM avec le tag TAG-ELS " + "sur chaque asset concerné." +) +p = doc.add_paragraph() +p.add_run('Workflow opérationnel : ').bold = True +p.add_run( + "lorsqu'un asset est ajouté à TAG-ELS, retirer manuellement TAG-OBS si présent (les deux tags " + "ne doivent pas coexister). Limitation : la chaîne de tag (tag rule excluant un autre tag) " + "n'est pas supportée par Qualys, donc le double-tagging doit être nettoyé manuellement." +) +p = doc.add_paragraph() +p.add_run('Reporting recommandé : ').bold = True +p.add_run("créer une « Saved Search » Qualys pour le reporting opérationnel :") +doc.add_paragraph('tags.name:"TAG-OBS" and not tags.name:"TAG-ELS"', style='Intense Quote') +doc.add_paragraph("Cette query, valide en recherche interactive, donne les « vrais EOL à patcher » " + "et est utilisable dans les dashboards.") + +doc.add_heading("2.3 TAG-OBS — adapter la liste OS quand un nouvel OS devient obsolète", level=2) +doc.add_paragraph( + "TAG-OBS est défini en Option A (liste OS explicite) car la chaîne sur le tag built-in Qualys " + "« Obsolete » n'est pas supportée. La liste actuelle couvre 15 OS / familles." +) +p = doc.add_paragraph() +p.add_run('Liste OS actuelle (à maintenir) : ').bold = True +oses = [ + "Windows XP (EOL 2014-04-08)", + "Windows Server 2003 (EOL 2015-07-14)", + "Windows Server 2008 / 2008 R2 (EOL 2020-01-14)", + "Windows Server 2012 / 2012 R2 (EOL 2023-10-10)", + "Windows 7 (EOL 2020-01-14)", + "Red Hat Enterprise Linux 5 (EOL 2017-03-31)", + "Red Hat Enterprise Linux 6 (EOL 2020-11-30)", + "CentOS 5 / 6 / 7 (CentOS 7 EOL 2024-06-30)", + "Ubuntu 14.04 / 16.04 / 18.04 (EOL 2019/2021/2023)", + "Debian 8 / 9 (EOL 2020/2022)", +] +for o in oses: + doc.add_paragraph(o, style='List Bullet') + +p = doc.add_paragraph() +p.add_run('Surveillance recommandée : ').bold = True +p.add_run( + "vérifier au moins une fois par an (idéalement en début d'année) si de nouveaux OS sont passés EOL. " + "Sources fiables : endoflife.date, sites éditeurs (microsoft.com/lifecycle, redhat.com/support, " + "ubuntu.com/about/release-cycle)." +) + +p = doc.add_paragraph() +p.add_run('OS à surveiller dans les 12-24 mois : ').bold = True +upcoming = [ + "RHEL 7 — EOL 2024-06-30 (déjà à inclure si pas déjà fait)", + "Windows Server 2012 R2 ESU — EOL 2026-10-13", + "Ubuntu 20.04 — EOL 2025-04 standard, ESM jusqu'à 2030", + "Debian 10 — EOL 2024-06-30 standard, LTS jusqu'à 2024-06", + "CentOS Stream 8 — EOL 2024-05-31", +] +for o in upcoming: + doc.add_paragraph(o, style='List Bullet') + +p = doc.add_paragraph() +p.add_run('Procédure de mise à jour TAG-OBS : ').bold = True +doc.add_paragraph("Ouvrir Qualys Console > AssetView > Configuration > Tags > TAG-OBS > Edit", style='List Number') +doc.add_paragraph('Ajouter la nouvelle clause OR à la query : or operatingSystem:""', style='List Number') +doc.add_paragraph("Cliquer Test pour vérifier le count", style='List Number') +doc.add_paragraph("Save", style='List Number') +doc.add_paragraph("Mettre à jour le fichier de référence SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx", style='List Number') + +doc.add_heading("2.4 Mécanisme natif Qualys « Obsolete » (à connaître)", level=2) +doc.add_paragraph( + "Qualys propose un tag système « Obsolete » auto-appliqué à partir d'une base de connaissance " + "interne sur les fins de support OS. Ce tag est maintenu par Qualys (pas par SANEF), s'applique " + "automatiquement aux assets quand leur OS bascule EOL." +) +p = doc.add_paragraph() +p.add_run("Couverture observée dans le parc SANEF : ").bold = True +p.add_run("~190 assets (181 dans l'export AssetView et 180 dans Cloud Agent au 22 avril 2026).") + +p = doc.add_paragraph() +p.add_run("Pourquoi ne pas utiliser uniquement ce tag : ").bold = True +p.add_run( + "(1) il n'est PAS référençable dans une règle de tag dynamique custom (limitation Qualys " + "confirmée), donc impossible de créer un TAG-OBS = mirror du tag Qualys ; " + "(2) il n'inclut pas toujours toutes les variantes EOL (parfois décalage temporel ou critères " + "différents) ; " + "(3) il ne permet pas l'exclusion ELS via règle." +) +p = doc.add_paragraph() +p.add_run("Comment l'utiliser malgré ses limites : ").bold = True +p.add_run( + "via les Saved Searches dans la console Qualys. Exemple de query à sauvegarder pour le reporting :" +) +doc.add_paragraph('tags.name:"Obsolete" and not tags.name:"TAG-ELS"', style='Intense Quote') +p = doc.add_paragraph() +p.add_run("Comparaison TAG-OBS (Option A) vs Obsolete built-in : ").bold = True +p.add_run( + "TAG-OBS = liste explicite contrôlée par SECOPS, plus large potentiellement, mais nécessite " + "maintenance. Obsolete built-in = auto-update Qualys, sans maintenance, mais sans contrôle SANEF " + "et non chaînable. La meilleure approche est de conserver les deux et de les utiliser en croisant " + "leur intersection." +) + +# ===== 3. Suite à faire ===== +doc.add_page_break() +doc.add_heading('3. Suite à faire (TODO)', level=1) +todos = [ + ("Bulk SQATM TAG-SED, TAG-SEI", + "Appliqué aujourd'hui via SQATM (10 SED, 22 SEI). Vérifier à la prochaine revue qu'aucun nouveau " + "asset DMZ n'a été oublié."), + ("Récupérer CIDR DMZ auprès équipe réseau", + "Pour basculer TAG-SED/TAG-SEI en dynamique IP-based. Voir section 2.1."), + ("Saisir TAG-ELS sur les serveurs concernés", + "Inventaire des contrats ELS à faire avec la DSI. Voir section 2.2."), + ("Nettoyer tags legacy concurrents dans Qualys", + "Plusieurs tags concurrents détectés dans les exports : TAG-SRVEXPOSEINTERNET, DMZ, SED, " + "ZONE-DMZ. Décision à prendre : garder en parallèle, supprimer ou consolider sur la nomenclature V3."), + ("Documenter procédure SECOPS pour nouveaux serveurs", + "Procédure à intégrer dans le wiki DokuWiki SANEF (page infra:sanef_utiles:sanef_utiles:qualys_tagv3) : " + "tout nouveau serveur SANEF doit être taggé selon V3 dans les 48h après scan Qualys initial."), + ("Dashboard Qualys « Conformité V3 »", + "Construire un dashboard avec : count NOM-LEGACY (KPI dette renommage), count TAG-OBS (hors ELS), " + "% serveurs avec OS-* + ENV-* + POS-* + EQT-* tags présents (couverture V3)."), + ("Surveillance annuelle TAG-OBS", + "Revérifier la liste OS EOL en janvier 2027 et ajouter les nouveaux OS passés EOL. Voir 2.3."), +] +for title_, desc in todos: + p = doc.add_paragraph(style='List Bullet') + p.add_run(title_).bold = True + p.add_run(' : ' + desc) + +doc.add_paragraph() +doc.add_paragraph('_' * 80) +p = doc.add_paragraph() +p.alignment = WD_ALIGN_PARAGRAPH.CENTER +r = p.add_run("SANEF DSI / Sécurité Opérationnelle — Plan d'action Qualys V3") +r.italic = True +r.font.size = Pt(9) + +out = r"C:\Claude\sanef\QL\docs\SANEF_Qualys_V3_Resume_Vigilance.docx" +doc.save(out) +print("Saved:", out) +import os +print("Size:", os.path.getsize(out), "bytes") diff --git a/gen_xlsx.py b/gen_xlsx.py new file mode 100644 index 0000000..c366248 --- /dev/null +++ b/gen_xlsx.py @@ -0,0 +1,181 @@ +"""Generate SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx with description column.""" +from openpyxl import Workbook +from openpyxl.styles import PatternFill, Font, Alignment +from openpyxl.utils import get_column_letter + +wb = Workbook() + +# ============== Sheet 1: Tags Dynamiques (DYN) ============== +ws1 = wb.active +ws1.title = "Tags Dynamiques (DYN)" +ws1.append(["Tag", "Couleur (hex)", "Type", "Rule Type", "Description", "Query QQL"]) +for cell in ws1[1]: + cell.font = Font(bold=True, color="FFFFFF") + cell.fill = PatternFill("solid", fgColor="263238") + cell.alignment = Alignment(horizontal="center", vertical="center") + +dyn_tags = [ + ("OS-LIN-SRV", "#4CAF50", "DYN", "Asset Inventory", + "Serveurs Linux avec Cloud Agent Qualys", + "operatingSystem.category1:Linux and operatingSystem.category2:Server and asset.trackingMethod:QAGENT"), + ("OS-WIN-SRV", "#1976D2", "DYN", "Asset Inventory", + "Serveurs Windows Server avec Cloud Agent Qualys", + "operatingSystem.category1:Windows and operatingSystem.category2:Server and asset.trackingMethod:QAGENT"), + ("OS-WIN-WKS", "#2196F3", "DYN", "Asset Inventory", + "Postes de travail Windows avec Cloud Agent Qualys", + "operatingSystem.category1:Windows and operatingSystem.category2:Client and asset.trackingMethod:QAGENT"), + ("OS-MAC", "#546E7A", "DYN", "Asset Inventory", + "Postes macOS avec Cloud Agent Qualys", + "operatingSystem.category1:Mac and asset.trackingMethod:QAGENT"), + ("OS-ESX", "#9C27B0", "DYN", "Asset Inventory", + "Hyperviseurs VMware ESXi (hors scope, pas d'agent)", + 'operatingSystem:"ESXi"'), + ("EQT-VIR", "#00BCD4", "DYN", "Asset Inventory", + "Machines virtuelles (hors postes clients)", + 'asset.name:v* and not operatingSystem.category2:"Client"'), + ("EQT-SRV", "#03A9F4", "DYN", "Asset Inventory", + "Serveurs physiques (hors VM et equipements reseau)", + '(asset.name:l* or asset.name:s*) and not operatingSystem.category2:"Client" and not asset.name:svp*'), + ("EQT-SWI", "#4DD0E1", "DYN", "Asset Inventory", + "Equipements reseau (switches, routeurs, firewalls, LB) - detection via OS reseau Juniper/F5/Cisco/Pulse", + 'operatingSystem.category1:"Network Operating System"'), + ("ENV-PRD", "#F44336", "DYN", "Asset Inventory", + "Production - V3 prefixes (vp/sp/lp/ls-) sauf vppi, legacy lam* sauf (lamar/lamr/lamt), + vmm*.sanef-int.adds, hors exceptions REC/DEV legacy", + "(asset.name:vp* or asset.name:sp* or asset.name:lp* or asset.name:ls-* or asset.name:lam* or (asset.name:vmm* and asset.fqdn:*.sanef-int.adds)) and not (asset.name:vppi* or asset.name:lamar* or asset.name:lamr* or asset.name:lamt* or asset.name:vmamr* or asset.name:vmamd* or asset.name:vmrgmao7 or asset.name:vmcmdb1 or asset.name:vmcmdb2)"), + ("ENV-REC", "#FF9800", "DYN", "Asset Inventory", + "Recette - V3 (vr/sr/lr), legacy lamar/lamr/lamt + AME (vmamr*, vmrgmao7, vmcmdb1/2), + vmd*.recette.adds", + "(asset.name:vr* or asset.name:sr* or asset.name:lr* or asset.name:lamar* or asset.name:lamr* or asset.name:lamt* or (asset.name:vmd* and asset.fqdn:*.recette.adds) or asset.name:vmamr* or asset.name:vmrgmao7 or asset.name:vmcmdb1 or asset.name:vmcmdb2) and not (asset.name:vrsupbmap1 or asset.name:vrsupbmbi1)"), + ("ENV-PPR", "#FFC107", "DYN", "Asset Inventory", + "Pre-Production - V3 (vi/si/vo/vppi)", + "asset.name:vi* or asset.name:si* or asset.name:vo* or asset.name:vppi*"), + ("ENV-TST", "#CDDC39", "DYN", "Asset Inventory", + "Test - V3 (vv/vt/sv) + exceptions (vrsupbmap1, vrsupbmbi1), exclut postes Superviseur Peage svp*", + "(asset.name:vv* or asset.name:vt* or asset.name:sv* or asset.name:vrsupbmap1 or asset.name:vrsupbmbi1) and not asset.name:svp*"), + ("ENV-DEV", "#8BC34A", "DYN", "Asset Inventory", + "Developpement - V3 (vd/sd) + legacy AME vmamd*", + "asset.name:vd* or asset.name:sd* or asset.name:vmamd*"), + ("POS-FL", "#009688", "DYN", "Asset Inventory", + "Flux Libre - Free Flow (BOT/BOO/BOC), AFL, Supervision, BOOST peage", + "asset.name:vpbot* or asset.name:vrbot* or asset.name:vibot* or asset.name:vvbot* or asset.name:vdbot* or asset.name:vpboo* or asset.name:vrboo* or asset.name:viboo* or asset.name:vvboo* or asset.name:vdboo* or asset.name:spboo* or asset.name:siboo* or asset.name:svboo* or asset.name:vpboc* or asset.name:vrboc* or asset.name:viboc* or asset.name:vvboc* or asset.name:vdboc* or asset.name:spboc* or asset.name:siboc* or asset.name:vpafl* or asset.name:vrafl* or asset.name:viafl* or asset.name:vvafl* or asset.name:vdafl* or asset.name:vpsupa* or asset.name:vrsupa* or asset.name:visupa* or asset.name:vvsupa* or asset.name:vpsupb* or asset.name:vrsupb* or asset.name:vppeaab* or asset.name:vrpeaab* or asset.name:vipeaab* or asset.name:vvpeaab* or asset.name:vrpeaak* or asset.name:vppeab* or asset.name:vrpeab* or asset.name:vipeab* or asset.name:vvpeab* or asset.name:vppeah* or asset.name:vrpeah* or asset.name:vipeah* or asset.name:vvpeah* or asset.name:vpnit*"), + ("POS-INF", "#3F51B5", "DYN", "Asset Inventory", + "Infrastructure DSI - DNS/AD, Sauvegarde, Bureautique, SCCM, Logs, Video, GoAnywhere, PKI - voir dom_inf_rule_v2.txt", + "Voir fichier C:\\Claude\\sanef\\QL\\inputs\\dom_inf_rule_v2.txt (91 prefixes + 12 NOT exclusions)"), + ("POS-PEA", "#673AB7", "DYN", "Asset Inventory", + "Peage - sites geographiques (ls-*), OSAP, SVP sanef, ADV, RPA, RPN", + "asset.name:ls-* or asset.name:lrpea* or asset.name:vdosa* or asset.name:viosa* or asset.name:vposa* or asset.name:vrosa* or asset.name:vpadv* or asset.name:vradv* or asset.name:vpsvp* or asset.name:vrsvp* or asset.name:vprpa* or asset.name:vrrpa* or asset.name:vprpn* or asset.name:vrrpn* or asset.name:vprps* or asset.name:vrrps* or asset.name:vpppe* or asset.name:vppeaaa* or asset.name:vppeaae* or asset.name:vppeaar* or asset.name:vpsimas* or asset.name:vraiia* or asset.name:vrboe* or asset.name:vrffb* or asset.name:vrgrs* or asset.name:vrpeaar*"), + ("POS-TRA", "#E91E63", "DYN", "Asset Inventory", + "Trafic - AME/Sextan/Octan, Aquarius, Isis, RAU/ASUR, GDEPA, Exceptionnel, SIG. Inclut legacy vmam*", + "asset.name:vpame* or asset.name:vrame* or asset.name:viame* or asset.name:vvame* or asset.name:vdame* or asset.name:vmame* or asset.name:vmamp* or asset.name:vmamr* or asset.name:vmamd* or asset.name:vpdai* or asset.name:vrdai* or asset.name:vidai* or asset.name:vppat* or asset.name:vrpat* or asset.name:vipat* or asset.name:vprau* or asset.name:vrrau* or asset.name:vpdep* or asset.name:vrdep* or asset.name:vpsig* or asset.name:vrsig* or asset.name:visig* or asset.name:vpair* or asset.name:vrair*"), + ("POS-BI", "#FF5722", "DYN", "Asset Inventory", + "Business Intelligence - SAS Decisionnel, SAS Viya, Bip&Go, Power BI, Reporting", + "asset.name:vdrep* or asset.name:vpapt* or asset.name:vpbipb* or asset.name:vpdec* or asset.name:vppbi* or asset.name:vpsas* or asset.name:vraptb* or asset.name:vrbip* or asset.name:vrdec* or asset.name:vrpbi*"), + ("POS-GES", "#9E9D24", "DYN", "Asset Inventory", + "Gestion - Institutionnel, Intranet, AgileTime, Talend ETL", + "asset.name:lpagt* or asset.name:lragt* or asset.name:vdechat* or asset.name:vpagt* or asset.name:vpechat* or asset.name:vpint* or asset.name:vppin* or asset.name:vragt* or asset.name:vrechat* or asset.name:vrint* or asset.name:vpaiiat* or asset.name:vrdsiat* or asset.name:vpgesb* or asset.name:vrapta*"), + ("NOM-LEGACY", "#795548", "DYN", "Asset Inventory", + "Serveur avec nommage pre-V3 a renommer - KPI dette de conformite - decroit auto au renommage", + 'operatingSystem.category2:"Server" and not (asset.name:vp* or asset.name:vr* or asset.name:vi* or asset.name:vv* or asset.name:vd* or asset.name:vt* or asset.name:vo* or asset.name:vs* or asset.name:sp* or asset.name:sr* or asset.name:si* or asset.name:sd* or asset.name:sv* or asset.name:ss* or asset.name:st* or asset.name:so* or asset.name:lp* or asset.name:lr* or asset.name:ls-* or asset.name:li* or asset.name:lv* or asset.name:ld* or asset.name:lt*)'), + ("TAG-EMV", "#D500F9", "DYN", "Asset Inventory", + "Asset en zone EMV/PCI-DSS - patching renforce, audits conformite", + "asset.name:vpemv* or asset.name:lpemv* or asset.name:lremv* or asset.name:vemvr* or asset.name:spemv* or asset.name:vemvs*"), + ("TAG-OBS", "#B71C1C", "DYN", "Asset Inventory", + "OS obsolete/EOL SANEF (Win XP/2003/2008/2012/7, RHEL 5/6, CentOS 5/6/7, Ubuntu 14/16/18, Debian 8/9). ELS exclus manuellement via SQATM.", + 'operatingSystem:"Windows XP" or operatingSystem:"Windows Server 2003" or operatingSystem:"Windows Server 2008" or operatingSystem:"Windows Server 2012" or operatingSystem:"Windows 7" or operatingSystem:"Red Hat Enterprise Linux Server 5" or operatingSystem:"Red Hat Enterprise Linux Server 6" or operatingSystem:"CentOS 5" or operatingSystem:"CentOS 6" or operatingSystem:"CentOS 7" or operatingSystem:"Ubuntu 14" or operatingSystem:"Ubuntu 16" or operatingSystem:"Ubuntu 18" or operatingSystem:"Debian 8" or operatingSystem:"Debian 9"'), +] + +for row in dyn_tags: + ws1.append(row) + +for r in range(2, len(dyn_tags) + 2): + color_cell = ws1.cell(row=r, column=2) + hex_val = color_cell.value + if hex_val and hex_val.startswith("#"): + color_cell.fill = PatternFill("solid", fgColor=hex_val[1:]) + color_cell.font = Font(color="FFFFFF", bold=True) + color_cell.alignment = Alignment(horizontal="center") + +for i, w in enumerate([18, 14, 7, 18, 60, 90], 1): + ws1.column_dimensions[get_column_letter(i)].width = w +for row in ws1.iter_rows(min_row=2, max_row=len(dyn_tags) + 1): + for cell in row: + cell.alignment = Alignment(wrap_text=True, vertical="top") +for r in range(2, len(dyn_tags) + 2): + ws1.row_dimensions[r].height = 60 + +# ============== Sheet 2: Tags Statiques (STAT) ============== +ws2 = wb.create_sheet("Tags Statiques (STAT)") +ws2.append(["Tag", "Couleur (hex)", "Description", "Action / Source"]) +for cell in ws2[1]: + cell.font = Font(bold=True, color="FFFFFF") + cell.fill = PatternFill("solid", fgColor="263238") + cell.alignment = Alignment(horizontal="center") + +stat_tags = [ + ("TAG-SED", "#C62828", + "Securite Exposition Directe - frontaux IP publique (firewalls, F5, HAProxy DMZ, AOV, WAP, proxy)", + "Bulk SQATM - liste actuelle dans bulk_tag_sed.txt (10 assets)"), + ("TAG-SEI", "#EF6C00", + "Securite Exposition Indirecte - backends DMZ derriere frontaux (Exchange, DNS, OwnCloud, BOOST backends)", + "Bulk SQATM - liste actuelle dans bulk_tag_sei.txt (22 assets)"), + ("TAG-ELS", "#1B5E20", + "Serveur sous Extended Life License (support securite etendu payant) - exception EOL", + "Manuel SQATM - a remplir au cas par cas selon contrats ELS"), + ("TAG-DEC", "#6D4C41", + "Decommissionnement en cours - asset a supprimer dans 1 mois", + "Manuel SQATM - decision operationnelle ITOP"), + ("TAG-INT", "#FDD835", + "Integration / Implementation en cours - vulnerabilites normales pendant phase deploiement", + "Manuel SQATM - retirer a la MEP"), + ("TAG-SIC", "#1A237E", + "Zone SIC - Systeme Information Classifie", + "Manuel SQATM - validation architecte securite"), + ("TAG-SIA", "#283593", + "Zone SIA - Systeme Information Administration", + "Manuel SQATM - validation architecte securite"), +] +for row in stat_tags: + ws2.append(row) +for r in range(2, len(stat_tags) + 2): + color_cell = ws2.cell(row=r, column=2) + hex_val = color_cell.value + if hex_val and hex_val.startswith("#"): + color_cell.fill = PatternFill("solid", fgColor=hex_val[1:]) + color_cell.font = Font(color="FFFFFF", bold=True) + color_cell.alignment = Alignment(horizontal="center") +for i, w in enumerate([14, 14, 60, 50], 1): + ws2.column_dimensions[get_column_letter(i)].width = w +for row in ws2.iter_rows(min_row=2, max_row=len(stat_tags) + 1): + for cell in row: + cell.alignment = Alignment(wrap_text=True, vertical="top") +for r in range(2, len(stat_tags) + 2): + ws2.row_dimensions[r].height = 50 + +# ============== Sheet 3: Prefixes Manuels ============== +ws3 = wb.create_sheet("Prefixes manuels") +ws3.append(["Prefixe", "Description", "Source"]) +for cell in ws3[1]: + cell.font = Font(bold=True, color="FFFFFF") + cell.fill = PatternFill("solid", fgColor="263238") + cell.alignment = Alignment(horizontal="center") +manual = [ + ("APP-xxx", "Application hebergee (APP-SAT, APP-JIRA, APP-GLPI, APP-GED)", "Manuel - non deductible du hostname, declaration projet"), + ("BDD-xxx", "Type de base de donnees (BDD-ORA, BDD-PG, BDD-SQL, BDD-MONGO)", "Semi-manuel - sous-zone b dans hostname suggere BDD, mais type a confirmer"), + ("VRF-xxx", "VRF reseau (VRF-TRAFIC, VRF-EMV, VRF-INTERPHONE)", "Manuel - depend architecture reseau, demander equipe reseau"), + ("MID-xxx", "Middleware (MID-TOMCAT, MID-HAPROXY, MID-NGINX, MID-APACHE)", "Manuel - necessite scan applicatif ou declaration technique"), + ("VULN-xxx", "Vulnerabilite specifique (VULN-LOG4J, VULN-OPENSSL)", "Manuel - creation ad-hoc lors d'incidents/CVE majeurs"), +] +for row in manual: + ws3.append(row) +for i, w in enumerate([12, 60, 60], 1): + ws3.column_dimensions[get_column_letter(i)].width = w +for row in ws3.iter_rows(min_row=2, max_row=len(manual) + 1): + for cell in row: + cell.alignment = Alignment(wrap_text=True, vertical="top") +for r in range(2, len(manual) + 2): + ws3.row_dimensions[r].height = 40 + +out = r"C:\Claude\sanef\QL\docs\SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx" +wb.save(out) +print("Saved:", out) +import os +print("Size:", os.path.getsize(out), "bytes") diff --git a/inputs/AI_Asset_List_sanef-km1_20260422 (1).csv b/inputs/AI_Asset_List_sanef-km1_20260422 (1).csv new file mode 100644 index 0000000..71fc5b6 --- /dev/null +++ b/inputs/AI_Asset_List_sanef-km1_20260422 (1).csv @@ -0,0 +1,731 @@ +"Asset ID","Host ID","Asset Name","NetBIOS Name","MAC Address","IPV4 Address","IPV6 Address","Operating System Category","Operating System","Operating System Version","Hardware Category","Hardware","CPU Count","CPU Speed (MHz)","CPU Description","Total Memory (MB)","BIOS Description","BIOS Serial Number","BIOS Asset Tag","Timezone","Last System Boot","Last Logged On User","Inventory Source","Agent ID","Inventory Created On","Inventory Last Updated On","Architecture","CriticalityScore","Modules","Tags","TruRisk Score" +"139158019","198270644","vmampsxt1","","00:50:56:82:6C:1A, 00:50:56:82:78:82, 00:50:56:82:3A:E9","10.41.40.30,10.41.40.34,10.43.4.30,10.43.40.30","fe80::250:56ff:fe82:6c1a,fe80::250:56ff:fe82:7882,fe80::250:56ff:fe82:3ae9","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 05 0b 89 c3 eb de-0d e3 a8 e1 0e 4a 54 b4","No Asset Tag","'+02:00","2023-01-12T01:48:29.000+02:00","cybreconcile","Cloud Agent","10b2836a-1caa-4515-b53e-7d5cb5467814","2022-09-07T14:33:57.000+02:00","2026-04-22T11:11:28.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,Sextan,DEX,Production,Trafic,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,Obsolete","699.0" +"130582850","192832077","vmamrgtc2","","00:50:56:82:7D:66, 00:50:56:82:07:63, 00:50:56:82:6A:AF","10.45.3.161,10.45.3.163,10.45.4.161,10.45.2.161,10.45.2.163","fe80::250:56ff:fe82:7d66,fe80::250:56ff:fe82:763,fe80::250:56ff:fe82:6aaf","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 03 1b b4 15 d0 7a-05 7e 5f fb bf 72 e0 31","No Asset Tag","'+02:00","2025-10-09T12:05:15.000+02:00","cybadmsys","Cloud Agent","fe8956e8-cc60-44ed-93e2-95a307f07f07","2022-07-07T11:12:20.000+02:00","2026-04-22T11:11:24.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,log4j,Obsolete,MIVISU,Recette,Sans,Trafic,DEX,VRF_INCONNUE,OS-LIN-SRV DYN","876.0" +"409023782","364788937","vibotaapm1.sanef.groupe","","00:50:56:90:b8:1f","10.41.23.143","fe80::250:56ff:fe90:b81f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 6e f9 5e ec 09 b9-3e 79 59 f7 ec b8 2c 41","No Asset Tag","'+02:00","2026-03-17T11:24:22.000+02:00","cybreconcile","Cloud Agent","d317fd6d-41de-45f0-b603-2b4ddaf50e25","2026-03-17T11:25:23.000+02:00","2026-04-22T11:09:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,log4j,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Flux Libre,Production","141.0" +"180108924","232626124","vrrauaapp1.sanef-rec.fr","","00:50:56:9c:08:6c","10.45.9.231","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f3 f0 6e 7f d0 d4-00 4c ef 10 4f 7e 47 ba","No Asset Tag","'+02:00","2026-04-21T11:55:01.000+02:00","cybadmsys","Cloud Agent","5ca517d7-929e-4f09-8fee-edbbbc6f41a7","2023-07-26T18:19:32.000+02:00","2026-04-22T11:09:11.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,OS-LIN-SRV DYN,ASUR","72.0" +"241525484","276502495","vpvsaaafl1.sanef.groupe","","00:50:56:90:45:45","10.42.16.85","fe80::250:56ff:fe90:4545","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 b2 c1 38 2f d8 a4-1c 11 56 ea 3c 71 cb 82","No Asset Tag","'+02:00","2026-02-03T11:47:12.000+02:00","tbaad","Cloud Agent","e0cba33a-5464-467a-8be6-0bbb288c670c","2024-06-04T11:16:43.000+02:00","2026-04-22T11:08:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Linux Server,Cloud Agent","52.0" +"195071010","241703493","vpbocrsap1.sanef.groupe","","00:50:56:90:71:93","10.41.22.13","fe80::250:56ff:fe90:7193","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 00 d0 64 ae e0 2c-b0 0f dd 9e 31 1d a6 a8","No Asset Tag","'+02:00","2026-04-01T22:04:13.000+02:00","cybreconcile","Cloud Agent","227888cb-7d76-4544-b9e0-11c380a98427","2023-10-24T08:02:17.000+02:00","2026-04-22T11:07:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,Flux Libre,flux_libre,FreeFlow","337.0" +"218502735","253210495","viosapquo1.sanef.groupe","","00:50:56:90:5a:44","10.100.16.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 f2 8e be 55 ad fe-e6 88 8d cc 59 f3 c5 51","No Asset Tag","'+02:00","2026-02-19T15:45:05.000+02:00","cybadmroot","Cloud Agent","e95202a1-eb90-4277-a712-a8862f9b648e","2024-02-28T15:03:52.000+02:00","2026-04-22T11:06:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,Péage","141.0" +"139158024","198270620","vmampsxt2","","00:50:56:82:77:D6, 00:50:56:82:34:57, 00:50:56:82:30:7E","10.41.40.31,10.43.40.31,10.43.4.31","fe80::250:56ff:fe82:77d6,fe80::250:56ff:fe82:3457,fe80::250:56ff:fe82:307e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 91 fb 5b cb 7f 86-3e 56 f5 cd 77 f3 57 ec","No Asset Tag","'+02:00","2023-05-31T07:04:09.000+02:00","cybreconcile","Cloud Agent","0d8914c4-4d68-4530-8886-bbdb7c9420e2","2022-09-07T14:34:34.000+02:00","2026-04-22T11:32:18.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_TRAFIC_DC,OS-LIN-SRV DYN,Sextan,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server,DEX,Trafic,Production,Obsolete","699.0" +"392620270","358316603","VRSIGAFRT1","","00:50:56:9c:95:f8","10.45.2.30","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 9f d5 6a 2a 5e f9-44 65 bf 9d 87 fb 80 e4","No Asset Tag","'+02:00","2026-02-05T16:20:10.000+02:00","cybsupapp","Cloud Agent","8d3fa3dd-efb7-49a7-be36-fb674f82e453","2026-01-16T11:07:44.000+02:00","2026-04-22T11:11:27.000+02:00","x86_64","3","SCA,VM,PM,GAV","Recette,SIG,OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","209.0" +"191424031","239727602","vibooaboo1.sanef.groupe","","00:50:56:90:46:2d","10.41.22.202","fe80::250:56ff:fe90:462d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 51 f3 e9 df 6e dc-ae 9f c0 29 18 dc 87 02","No Asset Tag","'+02:00","2026-03-17T15:35:43.000+02:00","cybsupemo","Cloud Agent","634cc72d-dc9c-440e-b3a6-903fce7680e1","2023-10-04T17:56:01.000+02:00","2026-04-22T11:03:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,Production,flux_libre,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","142.0" +"193617840","240981756","vpbocs4as1.sanef.groupe","","00:50:56:90:ff:70","10.41.22.8","fe80::250:56ff:fe90:ff70","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 9f 64 ec 68 d3 ef-1e 56 f5 62 bf aa f4 22","No Asset Tag","'+02:00","2026-04-01T21:57:40.000+02:00","cyblecibm","Cloud Agent","28b031bd-a7eb-41c0-8723-e914f54013b2","2023-10-16T12:48:26.000+02:00","2026-04-22T11:03:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Production,FreeFlow,Flux Libre","331.0" +"397149291","360233116","vrtrabwaz1.sanef-rec.fr","","00:50:56:9c:e7:8b","10.45.2.122","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 17 40 34 86 d1 1d-3c 88 67 37 0c 23 a0 61","No Asset Tag","'+02:00","2026-02-03T15:02:51.000+02:00","cybadmsys","Cloud Agent","57f46af5-a757-4507-9732-85f9416913e8","2026-02-03T15:03:11.000+02:00","2026-04-22T11:02:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Waze,DSI,Recette,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-NGINX DYN,BDD-ELA DYN","141.0" +"353299227","341953317","srlogbels1.sanef-rec.fr","","20:67:7c:e6:8d:70","10.45.15.166","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31368","HPE U41 07/14/2022","CZJ84600RS","","'+02:00","2026-02-02T17:49:49.000+02:00","cybintsys","Cloud Agent","ed621be3-cd42-4c0f-951f-29c2db90c7d6","2025-08-21T12:18:21.000+02:00","2026-04-22T11:00:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN","66.0" +"167744583","224051603","vppciaquo1.sanef.groupe","","00:50:56:82:b0:c3","10.100.16.7","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 0a db 33 18 00 31-85 ee aa f6 39 56 64 14","No Asset Tag","'+02:00","2026-01-29T16:14:16.000+02:00","cybreconcile","Cloud Agent","03dd0271-a066-49a4-b810-02d4a3549e2a","2023-04-24T15:01:14.000+02:00","2026-04-22T10:59:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,3PAR","142.0" +"340053174","336780155","vppwdapod2.sanef.groupe","","00:50:56:94:ad:ab","10.44.1.201","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 4a 37 e9 9b ea 21-a3 99 f3 77 a9 17 30 1e","No Asset Tag","'+02:00","2026-01-07T11:18:29.000+02:00","cybreconcile","Cloud Agent","b251eede-5a9f-4dca-91b2-ca4b548ab442","2025-07-08T10:16:06.000+02:00","2026-04-22T10:58:03.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD,Production","330.0" +"303906796","322171226","vrdepaapp1.sanef-rec.fr","","00:50:56:9c:66:a4","10.45.13.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 5f 6d 29 e6 4f 92-1f a9 bb b3 58 54 7b 1f","No Asset Tag","'+02:00","2026-01-15T16:42:52.000+02:00","cybsupapp","Cloud Agent","4c109497-abf2-404a-9f8b-924ba90a89fc","2025-02-27T19:22:22.000+02:00","2026-04-22T10:57:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion dépanneurs,Linux Server,Cloud Agent,Recette,MID-NGINX DYN,OS-LIN-SRV DYN","142.0" +"395535068","359520750","vrsigaags1.sanef-rec.fr","","00:50:56:9c:fb:29","10.45.2.34","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","96044","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 35 eb b0 06 e8 f7-3c 0b b7 24 dc 5e 8d 60","No Asset Tag","'+02:00","2026-02-25T13:38:54.000+02:00","cybsupapp","Cloud Agent","6e83ddb8-2fde-4e1e-979a-38b727b186e6","2026-01-28T11:51:07.000+02:00","2026-04-22T10:57:28.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,MID-APACHE-TOMCAT DYN,Recette,Cloud Agent,OS-LIN-SRV DYN,Linux Server","215.0" +"229361884","257999675","vpsupacen1.sanef.groupe","","00:50:56:8d:f7:2f","10.44.5.99","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 07 75 63 a4 b8 eb-7b da 58 0b 66 9a fe fc","No Asset Tag","'+02:00","2026-03-30T10:14:48.000+02:00","cybreconcile","Cloud Agent","7dd688ec-3925-434e-99cc-5fb2cb56ea12","2024-04-11T15:33:08.000+02:00","2026-04-22T10:56:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,MID-NGINX DYN,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","147.0" +"214502631","251415990","vipeaabst2.sanef.groupe","","00:50:56:90:d6:99","10.41.29.54","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31887","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 dd 4a 01 cf c9 73-00 f2 23 5c 48 14 bc 74","No Asset Tag","'+02:00","2026-03-19T11:07:03.000+02:00","cybintsys","Cloud Agent","16ba225b-3ebd-4d20-94b3-681bca23e83d","2024-02-08T14:29:40.000+02:00","2026-04-22T10:55:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,flux_libre,OS-LIN-SRV DYN,MID-NGINX DYN,ServersInCyberark,Production,FreeFlow,Cloud Agent,Linux Server,DSI,BOOST","138.0" +"303886597","322164389","vrdepbels1.sanef-rec.fr","","00:50:56:9c:9d:7a","10.45.13.69","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 95 98 f1 c2 2e db-e4 64 6d f5 d1 af d9 fe","No Asset Tag","'+02:00","2026-01-15T16:11:41.000+02:00","cybsupapp","Cloud Agent","34249e96-671f-43b7-935d-f5a5d28b93ca","2025-02-27T17:39:09.000+02:00","2026-04-22T10:55:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion dépanneurs,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-ELA DYN,Recette","141.0" +"354679518","342495237","vpechaetl1.sanef.groupe","","00:50:56:90:13:ae","10.42.16.141","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 61 ad e4 e1 c4 e6-50 86 97 42 1a 06 6a c4","No Asset Tag","'+02:00","2026-03-27T16:31:11.000+02:00","cybexpapp","Cloud Agent","593594e4-9804-4fe4-802a-adfb88685958","2025-08-26T17:08:59.000+02:00","2026-04-22T10:53:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","144.0" +"173355077","227828424","vvboomocr1.sanef-rec.fr","","00:50:56:9c:34:ff","10.45.6.72","fe80::250:56ff:fe9c:34ff","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a1 4b 9f 48 e9 62-7c b2 8e c5 d8 29 5e 86","No Asset Tag","'+02:00","2026-03-12T11:22:06.000+02:00","cybsupsys","Cloud Agent","760759b1-6518-417e-ab86-e7506e32e626","2023-06-07T10:48:55.000+02:00","2026-04-22T10:53:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Cloud Agent,Linux Server,Flux Libre,FreeFlow","335.0" +"298442394","319181985","vpameapmv2.sanef.groupe","","00:50:56:8f:67:12, 00:50:56:8f:c6:bd","10.44.201.4,10.44.201.5,172.16.255.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","11729","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 0f c5 37 86 2e 75 2d-f8 cf 44 ad a0 21 cc 8d","No Asset Tag","'+02:00","2026-03-18T14:16:03.000+02:00","cybreconcile","Cloud Agent","f8fe228c-2645-47c2-a24b-e13d254312ad","2025-02-07T10:24:08.000+02:00","2026-04-22T10:53:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,TAG-MIVISUPMV,TAG-SIC","140.0" +"377749981","352186177","vrdsiahax2.sanef-rec.fr","","00:50:56:9c:e2:54","192.168.19.197","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c9 8b 2e f0 a5 15-25 c9 53 68 f9 ba b8 7d","No Asset Tag","'+02:00","2026-02-04T19:26:12.000+02:00","root","Cloud Agent","5c007b24-47c5-4afe-ab4d-683b7016bb91","2025-11-19T15:05:28.000+02:00","2026-04-22T10:52:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,DMZ,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","329.0" +"137331600","197583171","vpairahtp1.sanef.groupe","","00:50:56:82:e0:c4","10.42.40.136","fe80::250:56ff:fe82:e0c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 72 4e 68 04 83 7e-58 b6 7b d5 ca 9f 17 59","No Asset Tag","'+02:00","2026-01-20T16:45:09.000+02:00","cybreconcile","Cloud Agent","56fa8823-0386-4790-8b91-3d896b270b3a","2022-08-30T15:47:32.000+02:00","2026-04-22T10:51:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_AIRES_DC,Production,VISIONAIRE,DSG,Cloud Agent,Linux Server,OS-LIN-SRV DYN","208.0" +"238724130","269608771","vpbotarep1.sanef.groupe","","00:50:56:90:8d:5d","10.41.23.28","fe80::250:56ff:fe90:8d5d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c1 91 ba 08 ed 99-f7 2c 35 90 ca 0c 84 06","No Asset Tag","'+02:00","2026-04-21T09:42:10.000+02:00","cybreconcile","Cloud Agent","c6093b94-cfd4-4f0e-a877-2643ba5a1570","2024-05-23T09:07:48.000+02:00","2026-04-22T11:49:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","141.0" +"354676610","342490002","vpdsiarad2.sanef.groupe","","00:50:56:94:21:0f","10.44.5.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 ef 2e e0 26 26 f3-ff 9b df c2 a7 54 5d 8a","No Asset Tag","'+02:00","2026-03-24T11:02:46.000+02:00","cybsupsys","Cloud Agent","92dcb81c-7828-431a-bb3d-fa959e0012eb","2025-08-26T16:07:05.000+02:00","2026-04-22T10:50:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Radius,Production,OS-LIN-SRV DYN","152.0" +"211396220","250074202","vrpeaabst2.sanef-rec.fr","","00:50:56:9c:3e:65","10.45.10.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 8a 5d 9f 66 81 57-f5 aa 2c af 74 79 ad 91","No Asset Tag","'+02:00","2026-02-18T10:32:29.000+02:00","cybadmsys","Cloud Agent","ff752b7b-dfd0-4567-9c80-a7d1a8f826c5","2024-01-23T16:35:20.000+02:00","2026-04-22T10:50:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,DSI,MID-NGINX DYN,BOOST,Cloud Agent,Linux Server","141.0" +"304663556","322548088","vpdsiacol1.sanef.groupe","","00:50:56:94:78:19","10.44.6.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3633","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 aa 0b 3c 84 76 53-22 9a bc 46 16 89 ec c8","No Asset Tag","'+02:00","2026-02-10T12:02:50.000+02:00","cybreconcile","Cloud Agent","3b9bb29c-fce6-4c73-9004-d11afc152a84","2025-03-03T17:41:39.000+02:00","2026-04-22T11:06:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Collecte,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"213124947","250790137","vpbckangw2","","00:50:56:90:38:e1","192.168.18.53","fe80::250:56ff:fe90:38e1","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e5 42 78 14 7e ac-70 23 d5 d7 f9 a5 1e ae","No Asset Tag","'+02:00","2026-02-03T16:26:24.000+02:00","tbaad-ext","Cloud Agent","fe53c135-a3e3-4b9e-8799-d5a69e262ece","2024-02-01T12:19:29.000+02:00","2026-04-22T10:50:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","53.0" +"376422961","351518009","vpcybapsp2.sanef.groupe","","00:50:56:9c:ad:ff","10.44.1.75","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 88 13 5d fe e4 76-36 ee ef c2 c2 2c f3 fe","No Asset Tag","'+02:00","2026-03-25T09:37:27.000+02:00","cybreconcile","Cloud Agent","fc4dde3c-a938-418c-83c2-b9580dca77de","2025-11-13T17:22:02.000+02:00","2026-04-22T10:50:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,Production,CyberArk","152.0" +"399388387","361109979","vpemvgrid1.sanef.groupe","","00:50:56:98:14:19","192.168.100.134","fe80::250:56ff:fe98:1419","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12014","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 bb 96 25 25 31 2f-51 61 f2 c8 80 9b 2f f4","No Asset Tag","'+02:00","2026-02-23T13:42:54.000+02:00","oracle","Cloud Agent","b3ab440e-70fb-464c-a39e-732fe598b29c","2026-02-11T16:29:42.000+02:00","2026-04-22T10:49:53.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Supervision/Admin","675.0" +"228724304","257679746","vpbocarep1.sanef.groupe","","00:50:56:90:4d:3f","10.41.22.15","fe80::250:56ff:fe90:4d3f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 eb d4 a9 d7 76 f8-6e 5d 1f c0 70 0a ff 91","No Asset Tag","'+02:00","2026-04-01T15:24:47.000+02:00","root","Cloud Agent","963196f6-3330-423e-a96d-169fbf6bd5f9","2024-04-09T15:45:58.000+02:00","2026-04-22T10:49:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","141.0" +"411843487","365824440","vpgrnangx1.sanf.groupe","","00:50:56:90:c3:b8","10.41.20.86","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 a1 09 cb 55 e4 13-15 d3 2f 2f 4f 03 93 0f","No Asset Tag","'+02:00","2026-04-07T15:57:21.000+02:00","cybreconcile","Cloud Agent","5379e72b-39b4-49d6-9e9e-853d210ec86d","2026-03-27T12:18:22.000+02:00","2026-04-22T10:48:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,MID-NGINX DYN,BDD-POS DYN","65.0" +"263390489","297610057","vpexpbtex1","","00:50:56:90:c0:39","10.41.40.26","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 62 82 88 d0 ee 44-e9 67 ea 57 98 11 a4 d9","No Asset Tag","'+02:00","2026-01-27T12:14:47.000+02:00","cybadmsys","Cloud Agent","6af103f5-23a9-41b0-b8c6-8f835ca4a28d","2024-09-05T16:32:37.000+02:00","2026-04-22T10:48:01.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,Transports Exceptionnels,Production","140.0" +"378066936","352311408","vrlogakib1.sanef-rec.fr","","00:50:56:9c:38:fd","10.45.15.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c af 39 c1 9f 41 cf-cc 46 d1 e9 26 d7 32 33","No Asset Tag","'+02:00","2026-04-01T11:10:02.000+02:00","cybintsys","Cloud Agent","327e1c61-7538-444e-a0f4-3c22fa18c725","2025-11-20T14:34:39.000+02:00","2026-04-22T10:47:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Elasticsearch,Recette,Linux Server,OS-LIN-SRV DYN,Cloud Agent","141.0" +"378055243","352306883","vpdsiahap3.sanef.groupe","","00:50:56:90:c5:fa","192.168.19.144","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 97 fc c2 b8 0c 7e-f6 b5 af 0c 61 d8 ad 2b","No Asset Tag","'+02:00","2025-11-20T13:34:06.000+02:00","cybintsys","Cloud Agent","c5dde6fe-987d-4bdb-8ceb-b9b0c2ae9450","2025-11-20T13:35:25.000+02:00","2026-04-22T10:47:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0" +"196660267","242432304","vpboobsql2.sanef.groupe","","00:50:56:90:b3:02","10.41.22.134","fe80::250:56ff:fe90:b302","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ce 59 56 16 2c 22-65 32 42 14 2c 26 84 20","No Asset Tag","'+02:00","2026-04-07T11:46:42.000+02:00","cybreconcile","Cloud Agent","7dc6ec33-0e00-4be0-9fb2-f511617b86bc","2023-10-31T18:19:55.000+02:00","2026-04-22T10:47:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,FreeFlow,Production,flux_libre","334.0" +"249342100","288692146","vrameapmv1.sanef-rec.fr","","00:50:56:9c:b9:3e","10.45.2.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c bb 59 92 e1 aa 18-03 0e af 7e 87 b5 cc 1b","No Asset Tag","'+02:00","2026-04-21T10:27:54.000+02:00","cybsecope","Cloud Agent","05bbc933-a556-453b-9f7f-bd557bcd68f6","2024-07-08T17:16:22.000+02:00","2026-04-22T11:50:52.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,MIVISU","35.0" +"218323011","252975059","vibooangx1.sanef.groupe","","00:50:56:90:71:74","10.41.22.210","fe80::250:56ff:fe90:7174","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 07 30 0f f5 c4 62-77 36 26 4f bd 90 cd 12","No Asset Tag","'+02:00","2026-03-16T10:30:25.000+02:00","cyblecemo","Cloud Agent","bcb8fffd-18e8-49e4-82f8-b497091a040a","2024-02-26T15:44:06.000+02:00","2026-04-22T10:46:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,ServersInCyberark,Flux Libre,Production,flux_libre,OS-LIN-SRV DYN,FreeFlow,MID-NGINX DYN","141.0" +"196663725","242433778","vpbooangx1.sanef.groupe","","00:50:56:90:8b:75","10.41.22.147","fe80::250:56ff:fe90:8b75","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 5a 08 bf 7c 15 ff-c6 77 73 1c 71 3f d7 52","No Asset Tag","'+02:00","2026-04-07T11:44:54.000+02:00","cybreconcile","Cloud Agent","dc64af1f-5e04-4377-9ece-46ead1446236","2023-10-31T18:38:48.000+02:00","2026-04-22T10:46:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Production,flux_libre,Cloud Agent,Linux Server","329.0" +"189172820","238405709","vvpeaarcv1.sanef-rec.fr","","00:50:56:9c:45:ba","10.45.6.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 61 6f 3e 31 c1 79-c2 ac 1f 06 da a9 f8 45","No Asset Tag","'+02:00","2026-03-12T10:33:09.000+02:00","cybreconcile","Cloud Agent","4df11211-78c4-4dac-bc9f-fd7df91d89d4","2023-09-21T13:11:50.000+02:00","2026-04-22T10:45:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Recette,flux_libre","333.0" +"139157052","198270704","vmamptd1.sanef.groupe","","00:50:56:82:5B:C6","10.41.40.165","fe80::250:56ff:fe82:5bc6","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 81 c7 66 1d 69-91 26 2c 88 c7 a1 34 9d","No Asset Tag","'+02:00","2025-09-29T15:02:30.000+02:00","cybreconcile","Cloud Agent","dbadc8c6-f389-483b-b396-cf73f4190b36","2022-09-07T14:36:49.000+02:00","2026-04-22T10:44:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,Obsolete,Production,Trafic,Traffic,Cloud Agent,Linux Server,VRF_TRAFIC_DC,OS-LIN-SRV DYN","692.0" +"238272359","269262153","vipeahbst1.sanef.groupe","","00:50:56:90:10:e3","192.168.31.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 de 88 b6 2b cd 2b-3c 44 43 0e b9 e9 28 23","No Asset Tag","'+02:00","2026-04-14T10:29:18.000+02:00","cybsecope","Cloud Agent","b46fa68f-ff5c-405c-bd2d-5cad329b7181","2024-05-21T14:50:12.000+02:00","2026-04-22T10:44:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,TAG-SRVEXPOSEINTERNET,flux_libre,Flux Libre,Cloud Agent,Linux Server,Recette","132.0" +"314908353","326677556","vrdsiasaf1","","f6:61:32:36:b7:b5, 00:50:56:9c:e5:c6, fe:33:26:30:9c:77","10.88.0.1,192.168.19.24","fe80::f8b1:5eff:fe68:216d,fe80::fc33:26ff:fe30:9c77","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3654","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c ac e5 79 a1 c0 a5-4a 99 9d 16 77 01 76 51","No Asset Tag","'+02:00","2026-04-20T17:49:21.000+02:00","cybadmroot","IP Scanner, Cloud Agent","ff0da179-fcc8-4758-8ed2-0b28c8518524","2025-04-09T16:45:51.000+02:00","2026-04-22T10:43:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Radius,Recette","248.0" +"157615760","210413258","vppintaels1.sanef.groupe","","00:50:56:82:56:38","10.46.39.15","fe80::250:56ff:fe82:5638","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 67 e6 ec 03 d8 ff-cd 63 a1 e6 58 67 72 c4","No Asset Tag","'+02:00","2026-02-25T10:47:56.000+02:00","cybadmbdd","Cloud Agent","7cf47c07-db57-42f5-85a7-946d89b050c1","2023-02-01T16:29:03.000+02:00","2026-04-22T10:43:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,VRF_INCONNUE,Gestion institutionnel,Cloud Agent,Linux Server","142.0" +"308850037","323875092","vrdsibetc2.sanef-rec.fr","","00:50:56:9c:90:88","10.45.1.177","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c e6 68 6c 62 dc b0-23 8f 1c 27 bc e3 ba 97","No Asset Tag","'+02:00","2026-01-06T13:52:01.000+02:00","cybadmbdd","Cloud Agent","14801267-3beb-415f-9814-d19dfa280886","2025-03-17T18:36:36.000+02:00","2026-04-22T10:43:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD,Recette","141.0" +"139156976","198270451","vmamprdt1","","00:50:56:82:25:F8, 00:50:56:82:4B:AD, 00:50:56:82:09:77","10.43.4.70,10.41.40.70,10.41.40.72,10.41.40.73,10.43.40.70,10.43.40.72,10.43.40.73","fe80::250:56ff:fe82:25f8,fe80::250:56ff:fe82:4bad,fe80::250:56ff:fe82:977","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 ea be bd f8 2c 6f-19 ab 4a da 29 5a d0 7d","No Asset Tag","'+02:00","2024-02-13T14:07:37.000+02:00","cybreconcile","Cloud Agent","76dece7b-0c6b-4cc5-9b36-abc9e5c62828","2022-09-07T14:30:36.000+02:00","2026-04-22T10:43:09.000+02:00","x86_64","5","SCA,VM,PM,GAV","VRF_TRAFIC_DC,Production,Cloud Agent,Linux Server,log4j,MIVISU,Obsolete,OS-LIN-SRV DYN,Trafic,DEX","873.0" +"152255312","206859174","vpsasapil1.sanef.groupe","","00:50:56:82:dd:e9","10.41.32.20","fe80::250:56ff:fe82:dde9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7f 0d 6d e4 1d 96-c0 af 50 d0 23 ae 67 95","No Asset Tag","'+02:00","2026-03-25T16:10:58.000+02:00","cybreconcile","Cloud Agent","3ed9295c-e2c3-464f-875e-3a275e57972b","2022-12-16T15:39:51.000+02:00","2026-04-22T10:43:06.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,SAS,VRF_BURO_DC,OS-LIN-SRV DYN,Cloud Agent,Linux Server","92.0" +"201497726","244876565","vrtrabkme1.sanef-rec.fr","","00:50:56:9c:3f:de","10.45.10.66","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 25 ac b3 44 9b 92-e5 d1 d0 4c 93 54 c3 6a","No Asset Tag","'+02:00","2026-04-14T11:01:22.000+02:00","cybsecope","Cloud Agent","a7ed7b48-7fe5-4dda-b18c-f3fbe85dd2e0","2023-11-29T12:34:35.000+02:00","2026-04-22T10:43:01.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,Cloud Agent,Linux Server,MID-NGINX DYN,Masterparc,OS-LIN-SRV DYN","117.0" +"173357493","227829060","vvbooaori1.sanef-rec.fr","","00:50:56:9c:37:83","10.45.6.79","fe80::250:56ff:fe9c:3783","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 19 cb 03 85 c0 a7-a8 dd bf e6 55 b5 91 e8","No Asset Tag","'+02:00","2026-03-12T11:20:36.000+02:00","podman_app","Cloud Agent","9b7e7cf0-343a-44f4-8a57-947a81ee0c3b","2023-06-07T10:53:31.000+02:00","2026-04-22T10:16:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","140.0" +"173355626","227827000","vvboobsql1.sanef-rec.fr","","00:50:56:9c:10:ac","10.45.6.68","fe80::250:56ff:fe9c:10ac","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 67 8f 66 4d 2f 26-d9 bf 06 b0 89 87 88 0a","No Asset Tag","'+02:00","2026-03-12T11:02:18.000+02:00","cybsupsys","Cloud Agent","27757c4b-5d68-4f2c-b905-3a12dbc66d1e","2023-06-07T10:31:40.000+02:00","2026-04-22T10:42:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Recette,flux_libre","144.0" +"318424837","328042212","vrameakfk1.sanef-rec.fr","","00:50:56:9c:c4:6a","10.45.2.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d4 f5 49 4e da 8d-98 48 7e af d0 57 37 53","No Asset Tag","'+02:00","2026-04-20T09:03:47.000+02:00","cybsupapp","Cloud Agent","0fc3c02f-b771-4d49-8ef4-7a25ef38c735","2025-04-22T14:33:15.000+02:00","2026-04-22T10:59:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Amelie,Recette,OS-LIN-SRV DYN","48.0" +"411130803","365528397","vplogbels2","","00:50:56:94:9d:ba","10.44.7.40","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 04 5d 4b f2 6c 70-c3 2d c9 2d 77 df 67 ec","No Asset Tag","'+02:00","2026-04-07T12:00:16.000+02:00","cybsecope","Cloud Agent","f216911a-a924-4624-8ab1-f790e0861580","2026-03-24T17:15:48.000+02:00","2026-04-22T10:42:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-ELA DYN","66.0" +"354679096","342495682","vpechaetl4.sanef.groupe","","00:50:56:90:36:6c","10.42.16.144","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0b ee b6 64 c0 73-30 6e 16 d7 0f f0 bb f6","No Asset Tag","'+02:00","2026-02-12T16:12:05.000+02:00","cybsecope","Cloud Agent","a7123e67-8e4f-4bcd-a82f-1a6771ff4d57","2025-08-26T17:15:03.000+02:00","2026-04-22T10:41:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","145.0" +"379841430","353008348","vtdsiatmp1.sanef.groupe","","00:50:56:82:3a:d6","10.43.253.4","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 15 56 a7 e3 a7 24-c6 67 23 21 67 98 c5 76","No Asset Tag","'+02:00","2026-04-14T14:17:53.000+02:00","root","Cloud Agent","cf933cbc-f4d7-4fd2-8840-4d3d428abf86","2025-11-27T18:45:57.000+02:00","2026-04-22T11:00:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"331385324","333860818","vpmonaftp1.sanef.groupe","","00:50:56:90:7f:60","10.41.20.80","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 19 aa 94 6a 9b c1-e9 8f 8c 58 2e d0 b9 40","No Asset Tag","'+02:00","2025-11-20T16:13:29.000+02:00","cybreconcile","Cloud Agent","11292117-193f-4e71-860e-893257d74414","2025-06-06T09:58:55.000+02:00","2026-04-22T10:41:09.000+02:00","x86_64","2","SCA,VM,GAV","Production,EMV,OS-LIN-SRV DYN,Cloud Agent,Linux Server","332.0" +"287936544","311537310","vrosapels1.sanef-rec.fr","","00:50:56:9c:3e:a7","10.45.9.71","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d6 80 bd e9 ea 0f-6d fc 5b 26 ce 3f bc 34","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","reboot","Cloud Agent","26000044-0bd2-432b-b647-8f734d7a09d3","2024-12-20T13:09:33.000+02:00","2026-04-22T10:40:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","142.0" +"156225794","209332073","vppintbweb1.sanef.groupe","","00:50:56:82:e5:f5","10.46.39.16","fe80::250:56ff:fe82:e5f5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","15760","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 b5 93 e7 22 ca 8a-cb 55 2d 85 89 c6 13 76","No Asset Tag","'+02:00","2026-02-23T15:32:16.000+02:00","cybreconcile","Cloud Agent","8244acf6-c516-4fe9-a1da-77d4b1abb84a","2023-01-20T15:10:06.000+02:00","2026-04-22T10:40:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,VRF_BURO_DC,Gestion institutionnel,Cloud Agent,Linux Server","144.0" +"358170685","344041759","vpdsiagrd1.sanef.groupe","","00:50:56:90:50:a9","192.168.19.100","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 0d d0 92 e3 ad f2-6b 12 7f eb 1a 34 a6 00","No Asset Tag","'+02:00","2026-04-15T15:43:37.000+02:00","root","Cloud Agent","173f0431-2687-4201-a8d1-bdb4cea1dbf9","2025-09-09T15:47:41.000+02:00","2026-04-22T10:40:08.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,DMZ,Linux Server,Cloud Agent,TAG-SRVEXPOSEINTERNET,DNS,OS-LIN-SRV DYN,MID-NGINX DYN","115.0" +"159244834","211843609","vpsasamic1.sanef.groupe","","00:50:56:82:e5:84","10.41.32.5","fe80::250:56ff:fe82:e584","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257421","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 cd 78 4d 4f 8a e3-1d 73 04 3c 11 19 0a df","No Asset Tag","'+02:00","2026-03-25T16:22:52.000+02:00","cybreconcile","Cloud Agent","30c1f6a2-779c-4e60-ac63-dadd36a9ca46","2023-02-14T16:13:31.000+02:00","2026-04-22T10:39:58.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,SAS,VRF_BURO_DC,log4j","504.0" +"130590138","192836895","vmamrsxt4","","00:50:56:82:26:F5, 00:50:56:82:4A:4D, 00:50:56:82:58:5D","10.33.16.63,10.32.16.63,10.30.16.63","fe80::250:56ff:fe82:26f5,fe80::250:56ff:fe82:4a4d,fe80::250:56ff:fe82:585d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3f bf 83 fb 25 5a-88 23 9d d6 d4 88 25 c3","No Asset Tag","'+02:00","2025-10-09T11:39:37.000+02:00","cybastsys","Cloud Agent","9b15cc9b-6b59-4550-92ee-de5298641343","2022-07-07T12:06:26.000+02:00","2026-04-22T10:38:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Sextan,Obsolete,VRF_INCONNUE","699.0" +"335714568","336779950","vrdatafrt1.sanef-rec.fr","","00:50:56:9c:83:76","192.168.40.115","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c2 78 9b 72 94 09-bf 19 40 9d 8a 3c 7d 6b","No Asset Tag","'+02:00","2026-04-20T10:38:48.000+02:00","root","Cloud Agent","097fd4df-1bf5-4aed-ab5a-87ec60e2de2d","2025-06-23T16:58:58.000+02:00","2026-04-22T11:07:37.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","152.0" +"378059947","352307186","vpdsiangx3.sanef.groupe","","00:50:56:90:1f:10","192.168.19.162","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 45 04 87 7a 05 98-b8 0c 0c ea 5d dd 84 30","No Asset Tag","'+02:00","2025-12-10T15:09:42.000+02:00","cybintsys","Cloud Agent","80c4f763-af58-4981-9202-a10bb6035dc3","2025-11-20T13:39:33.000+02:00","2026-04-22T11:52:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0" +"334752929","336779981","vrdataapp1.sanef-rec.fr","","00:50:56:9c:8c:9c","10.45.14.165","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 48 45 d3 3c 6c 25-84 c4 6d fc 6f 22 b5 59","No Asset Tag","'+02:00","2026-04-20T10:08:27.000+02:00","cybsupapp","Cloud Agent","644f99af-3c7a-4b65-aa36-f504e6c931a8","2025-06-19T16:49:55.000+02:00","2026-04-22T10:38:21.000+02:00","x86_64","3","SCA,VM,GAV","DATI,Recette,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","71.0" +"321972468","329308235","vpintbweb2.sanef.groupe","","00:50:56:9c:ad:90","10.46.33.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c be 84 af 23 67 18-73 4c 71 63 63 67 d9 51","No Asset Tag","'+02:00","2026-02-24T12:22:48.000+02:00","cybreconcile","Cloud Agent","137bf765-a1cc-46d1-8e4e-17baba61d960","2025-05-05T09:03:07.000+02:00","2026-04-22T10:38:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Production,Gestion institutionnel,Linux Server,Cloud Agent","144.0" +"236313681","264524364","vpemvagtw1.sanef.groupe","","00:50:56:98:1f:a9","192.168.101.110","fe80::250:56ff:fe98:1fa9","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 18 1a af b2 0d 22 1e-ce 36 4c fb bd 16 0a a1","No Asset Tag","'+02:00","2025-12-04T11:44:29.000+02:00","synchro","Cloud Agent","55a2a761-1ea4-412e-b400-d94e53c0632a","2024-05-13T15:52:33.000+02:00","2026-04-22T10:37:44.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17,PCI Bunker EMV,EMV,Production","504.0" +"175919695","229595373","vpaiiapol10","","00:50:56:82:62:ed","10.30.12.130","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7820","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 57 9e a1 3d 32 8e-43 cf b5 a6 a0 8d 2c 2f","No Asset Tag","'+02:00","2024-06-06T16:22:14.000+02:00","cybreconcile","Cloud Agent","1644939b-679d-4342-a633-4cf639c86cdc","2023-06-26T12:26:01.000+02:00","2026-04-22T11:43:25.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,BDD-ELA DYN,BDD-SQL DYN,Centreon,Obsolete,MID-APACHE-TOMCAT DYN,DSI,MID-NGINX DYN","82.0" +"220360665","253837004","viosapels1.sanef.groupe","","00:50:56:90:10:e8","10.41.29.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 13 e5 68 eb 82 5a-c7 17 9e cd df 73 2a 0a","No Asset Tag","'+02:00","2026-02-19T11:42:02.000+02:00","cybadmbdd","Cloud Agent","d7dc4010-3276-4b1d-a984-28b5e9bc98ad","2024-03-06T14:10:51.000+02:00","2026-04-22T10:37:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Péage,DEX,Cloud Agent,Linux Server","141.0" +"379779221","352984437","spbckamag3.sanef.groupe","","04:bd:97:22:c5:b9, 04:bd:97:22:c5:b8","10.43.1.5,10.42.16.74","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP260706CC","Unknown","'+02:00","2025-12-02T17:55:29.000+02:00","cybsecope","Cloud Agent","cb460ae1-89cd-4dbc-b5d4-58eacfb9b891","2025-11-27T13:44:26.000+02:00","2026-04-22T10:37:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0" +"265688076","297448165","vpexpatex1.sanef.groupe","","00:50:56:90:91:60","10.41.40.25","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e8 75 8c 3f ac e7-38 1e 36 fc f3 00 00 ab","No Asset Tag","'+02:00","2026-01-27T12:14:44.000+02:00","root","Cloud Agent","841a123c-c7bc-4642-a6bb-ab32bd00aa4a","2024-09-16T11:44:59.000+02:00","2026-04-22T10:37:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Transports Exceptionnels","139.0" +"353304779","341953316","srlogbels2.sanef-rec.fr","","20:67:7c:e8:d1:14","10.45.15.167","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31496","HPE U41 07/14/2022","CZJ8470B2F","","'+02:00","2026-02-24T12:19:01.000+02:00","cybintsys","Cloud Agent","e298aece-c7bf-4023-a38e-b6217f6fad0e","2025-08-21T12:18:21.000+02:00","2026-04-22T10:37:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Elasticsearch,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","66.0" +"160247428","213434314","vpameaoct2","","00:50:56:82:2c:ab","10.41.40.131","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 02 22 9d 03 55 e0-68 f6 85 ed 20 e3 97 30","No Asset Tag","'+02:00","2026-01-21T10:44:49.000+02:00","cybreconcile","Cloud Agent","9baa3173-4108-4ce4-8d38-71640a319ce5","2023-02-22T16:45:55.000+02:00","2026-04-22T10:37:12.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,OCTAN,Cloud Agent,Linux Server,DEX,MID-APACHE-TOMCAT DYN","510.0" +"229387995","258011538","vpsupbmap1.sanef.groupe","","00:50:56:8d:2b:a5","10.44.5.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","9713","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d 16 ae 81 f5 62 d4-a5 dd 10 be 53 9d 02 31","No Asset Tag","'+02:00","2026-03-30T11:31:03.000+02:00","cybreconcile","Cloud Agent","e6412e32-9ce5-4e98-b321-4bfe6f05f37f","2024-04-11T17:28:44.000+02:00","2026-04-22T10:36:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","57.0" +"239823210","272569954","vpdsiasat2.sanef.groupe","","00:50:56:8d:01:12","10.44.2.133","","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","19793","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d a0 01 33 3d 8d 86-aa 11 8d 81 8d 5e 10 8b","No Asset Tag","'+02:00","2026-04-14T15:15:05.000+02:00","cybreconcile","Cloud Agent","c89ac5e5-e7bc-4aad-a699-734f852ac621","2024-05-28T12:53:15.000+02:00","2026-04-22T10:36:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,MID-APACHE-TOMCAT DYN,Production,Satellite","331.0" +"130582564","192832076","vmamrgtc1","","00:50:56:82:30:83, 00:50:56:82:29:fb, 00:50:56:82:68:ff","10.45.3.160,10.45.3.162,10.45.2.160,10.45.2.162,10.45.4.160","fe80::250:56ff:fe82:3083,fe80::250:56ff:fe82:29fb,fe80::250:56ff:fe82:68ff","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 fe 04 d3 c1 9c b5-c4 75 10 69 d5 71 e8 ca","No Asset Tag","'+02:00","2025-10-09T11:38:50.000+02:00","cybadmsys","Cloud Agent","e754412e-d12f-4949-b585-58087a9402e7","2022-07-07T11:11:35.000+02:00","2026-04-22T10:36:35.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,MIVISU,DEX,log4j,Recette,Sans,Trafic,Obsolete","876.0" +"230624333","258742190","vpsupapol2.sanef.groupe","","00:50:56:8d:b1:4d","10.44.5.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","1778","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 45 e4 e7 11 fe ad-01 3a 2d 47 a0 bb dd a6","No Asset Tag","'+02:00","2026-03-30T10:53:14.000+02:00","cybreconcile","Cloud Agent","ae71c630-7e3f-413a-a45e-9cbb00a602c6","2024-04-17T18:08:34.000+02:00","2026-04-22T10:36:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN,BDD-ELA DYN,MID-NGINX DYN,Cloud Agent,Linux Server","60.0" +"377757145","352186178","vrdsiahax1.sanef-rec.fr","","00:50:56:9c:7b:57","192.168.19.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cf ae ac b0 86 9a-13 e5 31 18 b1 42 f9 66","No Asset Tag","'+02:00","2026-01-29T15:36:52.000+02:00","root","Cloud Agent","ca202fc2-fb1c-45f0-8d59-b042c1dce9b9","2025-11-19T15:03:26.000+02:00","2026-04-22T10:35:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","DMZ,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","329.0" +"411592329","365726895","vrsigbmut1.sanef-rec.fr","","52:54:00:bf:a0:1b, 96:f8:7c:9a:18:68, 52:54:00:bc:ab:3d","10.45.15.68,192.168.16.24,192.168.17.6","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","16","","AMD EPYC 9J15 32-Core Processor","129433","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:24:33.000+02:00","oracle","Cloud Agent","b93c44c7-52f4-49e4-9b52-07b9e1540c98","2026-03-26T12:42:47.000+02:00","2026-04-22T10:35:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN,ENV-REC","339.0" +"131269839","193319056","vpaiibcen1","","00:50:56:82:ad:1d","10.30.12.122","fe80::250:56ff:fe82:ad1d","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9837","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 69 4a 7c 68 92 64-c6 df 7d 32 79 3b be 83","No Asset Tag","'+02:00","2026-04-20T11:01:43.000+02:00","cybreconcile","Cloud Agent","8d2f6e58-7506-413d-bf6d-fe1037e6390a","2022-07-12T15:26:49.000+02:00","2026-04-22T10:35:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,DSI,Centreon,VRF_INCONNUE,Production,Linux Server,Outils prod (Monitoring, NMS, gestion de parc)","699.0" +"234569455","262099083","vrechatre1.sanef-rec.fr","","00:50:56:9c:f0:7a","10.45.11.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 72 3c 45 55 1f 05-e3 f8 1c 54 2a bc f0 74","No Asset Tag","'+02:00","2026-03-25T12:20:47.000+02:00","cybadmsys","Cloud Agent","4bbf0e2b-df4d-49e9-a1ec-52be59ab5310","2024-05-06T12:58:52.000+02:00","2026-04-22T10:34:14.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,TALEND,Cloud Agent,Linux Server","215.0" +"131401795","193422093","lamaprac1.sanef.groupe","","00:17:A4:77:0C:B8, 00:17:A4:77:0C:B4, 00:17:A4:77:0C:B0, 00:17:A4:77:0C:BC","192.168.17.120,10.43.4.130,169.254.104.213,10.41.40.50,10.41.40.51,10.41.40.59,10.43.40.50","fe80::217:a4ff:fe77:cb8,fe80::217:a4ff:fe77:cb4,fe80::217:a4ff:fe77:cb0,fe80::217:a4ff:fe77:cbc","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ35002DJ","","'+02:00","2024-06-04T14:00:14.000+02:00","cybreconcile","Cloud Agent","a6bf3a46-ae5a-4539-ab4c-a30e626174c3","2022-07-13T10:09:09.000+02:00","2026-04-22T10:33:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,DEX,Sextan,Obsolete,log4j,VRF_TRAFIC_DC,Production,Trafic,Sans","692.0" +"381711057","353639420","spbckamag8.sanef.groupe","","6c:29:d2:30:51:04, 6c:29:d2:30:51:05","10.42.16.103,10.43.1.41","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192294","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3P","Unknown","'+02:00","2025-12-04T18:02:10.000+02:00","root","Cloud Agent","b33873db-0da1-43e7-9af7-ce8570252f12","2025-12-04T17:34:56.000+02:00","2026-04-22T10:33:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0" +"326134718","331288786","vposapapp1.sanef.groupe","","00:50:56:90:0c:7d","10.41.20.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","39952","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 71 17 72 e1 8f 01-2f b0 da 31 86 62 f6 bb","No Asset Tag","'+02:00","2026-03-04T07:39:03.000+02:00","cybreconcile","Cloud Agent","542cb2d0-bc99-41ff-ad1d-9179f9349ee4","2025-05-21T06:58:46.000+02:00","2026-04-22T10:32:12.000+02:00","x86_64","2","SCA,VM,GAV","Production,Péage,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","141.0" +"222290141","254684659","vibotcach1.sanef.groupe","","00:50:56:90:83:91","10.41.23.138","fe80::250:56ff:fe90:8391","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","13745","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 46 63 33 70 94 5a-1b fd bf 36 e5 9b 6f d8","No Asset Tag","'+02:00","2026-03-18T13:02:16.000+02:00","cybreconcile","Cloud Agent","613c7371-b7b2-4f1a-85eb-f895cb5a102e","2024-03-14T15:04:48.000+02:00","2026-04-22T10:32:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,flux_libre,FreeFlow,Production,Cloud Agent,Linux Server","140.0" +"305549366","322795680","vpgesbref1","","00:50:56:9c:b0:29","10.46.33.30","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f1 f8 ac 77 86 d1-87 e7 e6 08 00 3b 7d 31","No Asset Tag","'+02:00","2026-02-24T12:53:58.000+02:00","cybsecope","Cloud Agent","b787ffe4-7fd9-4005-b101-b8ca88e239c8","2025-03-05T19:51:45.000+02:00","2026-04-22T10:31:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Production,Linux Server,Cloud Agent,BDD","144.0" +"236303036","264488390","lpemvaste1","","00:17:a4:77:1c:48, 00:17:a4:77:1c:44","192.168.102.101,192.168.101.101","fe80::217:a4ff:fe77:1c48,fe80::217:a4ff:fe77:1c44","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000709","","'+02:00","2025-06-19T10:30:57.000+02:00","sanefmaj","Cloud Agent","c7591f06-e641-4961-aa38-3f79afcde08c","2024-05-13T14:57:35.000+02:00","2026-04-22T10:31:39.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,PCI Bunker EMV,EMV,PCI Bunker EMV - VLAN Stecard v17,Cloud Agent,Linux Server","668.0" +"139157910","198270158","vmamphtp1.sanef.groupe","","00:50:56:82:6D:A2, 00:50:56:82:4A:D4, 00:50:56:82:76:04","10.41.40.35,10.41.40.37,10.41.40.38,10.43.40.35,10.43.4.35","fe80::250:56ff:fe82:6da2,fe80::250:56ff:fe82:4ad4,fe80::250:56ff:fe82:7604","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 78 5e 41 48 cd 66-58 8b 3e 5e c8 9e c5 ec","No Asset Tag","'+02:00","2024-02-13T13:59:34.000+02:00","cybreconcile","Cloud Agent","40de57c4-09f4-4a7d-9365-ecf0d6008fbd","2022-09-07T14:24:58.000+02:00","2026-04-22T10:31:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,Amelie,DEX,log4j,Trafic,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Production","349.0" +"180099540","232621475","vdosapsrv1.sanef-rec.fr","","00:50:56:9c:8e:b5","10.45.9.66","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c e0 75 22 fd e2 d2-b7 6f 6f a8 05 e6 fe c7","No Asset Tag","'+02:00","2026-03-03T15:14:48.000+02:00","cybsupsys","Cloud Agent","c192df7b-6e91-4547-b0f1-e0e695a33d0a","2023-07-26T17:29:11.000+02:00","2026-04-22T10:30:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,DEX,Cloud Agent,Linux Server","140.0" +"311198745","331288572","vrgawagtw1.sanef-rec.fr","","00:50:56:9c:f9:9b","192.168.19.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c c5 ca c7 c2 fe 3c-05 b5 fa 43 02 8b 07 ea","No Asset Tag","'+02:00","2026-02-11T13:15:26.000+02:00","root","Cloud Agent","f2df81d0-fd0d-4e6d-8293-2d347f1fffc5","2025-03-26T20:03:06.000+02:00","2026-04-22T10:29:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Plateforme d'échange,Recette,Linux Server,Cloud Agent","58.0" +"139156912","198270160","vmampgtc2","","00:50:56:82:2C:BA, 00:50:56:82:1A:8B, 00:50:56:82:54:84","10.41.40.86,10.41.40.87,10.43.4.86,10.43.40.86,10.43.40.87","fe80::250:56ff:fe82:2cba,fe80::250:56ff:fe82:1a8b,fe80::250:56ff:fe82:5484","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 71 54 08 b5 2e bc-ae be e6 6f 45 96 49 92","No Asset Tag","'+02:00","2025-10-08T11:58:20.000+02:00","cybreconcile","Cloud Agent","d152cb18-e02a-415b-8806-c7afdf242069","2022-09-07T14:23:35.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MIVISU,Trafic,VRF_TRAFIC_DC,Production,Cloud Agent,Linux Server,log4j,Obsolete,DEX","876.0" +"269338854","299222837","vtdsiaquo1.sanef-rec.fr","","00:50:56:90:cb:e0","10.100.16.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 25 7e df 61 65 15-97 23 d2 66 c7 88 34 f4","No Asset Tag","'+02:00","2026-01-06T14:03:16.000+02:00","cybsecope","Cloud Agent","b1250051-e4ae-40d9-9a85-43cbe7743c73","2024-10-01T11:14:57.000+02:00","2026-04-22T10:29:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,OS-LIN-SRV DYN,BDD-ELA DYN,Linux Server,Cloud Agent","141.0" +"295291112","317082444","vpvsaasic2","","00:50:56:8f:13:64","10.44.200.105","fe80::250:56ff:fe8f:1364","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 00 68 0b 72 0b fa-4d 1a 61 c2 af fb 06 33","No Asset Tag","'+02:00","2026-03-18T14:17:29.000+02:00","reboot","Cloud Agent","34934209-83bd-499c-90d8-93c76d3e8618","2025-01-28T12:10:02.000+02:00","2026-04-22T10:29:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIC,TAG-SIA,Cloud Agent,Linux Server","52.0" +"143622225","201025557","vpemvaldap1.sanef.groupe","","00:50:56:82:0b:a2","192.168.100.127","fe80::250:56ff:fe82:ba2","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 d2 4d cb d3 26 9f-c2 1c 8b 6d 00 9b 1c fb","No Asset Tag","'+02:00","2024-09-05T11:43:35.000+02:00","root","IP Scanner, Cloud Agent","2228916e-04d4-4923-adbc-66783544dec8","2022-10-11T17:32:31.000+02:00","2026-04-22T11:54:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,BDD-POS DYN,PCI Bunker EMV - VLAN Supervision/Admin,Cloud Agent,Linux Server,VRF_INCONNUE,PCI Bunker EMV,EMV,DEX","287.0" +"173084373","227657349","vdbocbsap1.sanef-rec.fr","","00:50:56:9c:5e:98","10.45.6.39","fe80::250:56ff:fe9c:5e98","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","515467","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 60 80 7d 55 e4 1e-03 07 99 46 7f 09 0b 9d","No Asset Tag","'+02:00","2026-03-11T10:05:08.000+02:00","cybsecope","Cloud Agent","f565c704-8967-4b19-9576-bc489230516a","2023-06-05T16:08:32.000+02:00","2026-04-22T10:27:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Flux Libre,Recette,flux_libre,Cloud Agent,Linux Server","141.0" +"191424454","239728562","vibooaori2.sanef.groupe","","00:50:56:90:ef:9f","10.41.22.209","fe80::250:56ff:fe90:ef9f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 36 fb e6 64 84 b1-4f fa 64 cd 12 1e c4 6e","No Asset Tag","'+02:00","2026-03-16T10:46:53.000+02:00","cybsupemo","Cloud Agent","dff34fb2-5ab0-4ac9-8202-27b31c5f9d7d","2023-10-04T18:05:31.000+02:00","2026-04-22T10:27:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,flux_libre,OS-LIN-SRV DYN,Production,Flux Libre","140.0" +"175043726","229008771","vpaiiacol1.sanef.groupe","","00:50:56:82:80:08","10.30.11.130","fe80::250:56ff:fe82:8008","Linux / Server","The CentOS Project CentOS 8.2 (2004)","8.2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3939","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 71 a8 76 99 38 10-5a 56 59 67 16 e7 ea ba","No Asset Tag","'+02:00","2024-10-24T08:39:04.000+02:00","cybadmsys","Cloud Agent","27f4df5b-d678-4a76-854f-e96720e739b1","2023-06-19T18:42:15.000+02:00","2026-04-22T10:27:45.000+02:00","x86_64","2","SCA,VM,GAV","Collecte,Obsolete,DSI,Cloud Agent,Linux Server","59.0" +"359136877","344907763","vprpaangx1.sanef.groupe","","00:50:56:90:a1:66","10.42.0.140","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 a2 e9 6d fd 0c 29-e5 7e e7 75 40 a7 ce d9","No Asset Tag","'+02:00","2026-02-25T15:24:43.000+02:00","cybreconcile","Cloud Agent","17465e5f-6624-458b-8686-1f2032631037","2025-09-12T10:01:58.000+02:00","2026-04-22T11:34:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Péage,MID-NGINX DYN","140.0" +"160244154","213434437","vpameaoct1","","00:50:56:82:43:9a","10.41.40.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 3a 23 80 47 a1 c1-ef 4d 30 55 c6 7c 7b 40","No Asset Tag","'+02:00","2026-01-21T10:59:29.000+02:00","cybreconcile","Cloud Agent","16907c14-62ff-4640-aee8-6b8cbf3f91db","2023-02-22T16:34:38.000+02:00","2026-04-22T11:38:05.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OCTAN,OS-LIN-SRV DYN,DEX","511.0" +"236303035","264488388","lpemvaste2","","00:17:a4:77:1c:50, 00:17:a4:77:1c:4c","192.168.102.102,192.168.101.102","fe80::217:a4ff:fe77:1c50,fe80::217:a4ff:fe77:1c4c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070A","","'+02:00","2025-08-20T02:42:51.000+02:00","root","Cloud Agent","48a4db20-c5cf-4cec-8d1c-5a586d74072c","2024-05-13T14:57:35.000+02:00","2026-04-22T11:50:45.000+02:00","x86_64","4","SCA,VM,PM,GAV","PCI Bunker EMV,EMV,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17","679.0" +"392410566","358213495","vdpataels1.sanef-rec.fr","","00:50:56:9c:a9:de","10.45.9.131","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 50 06 29 fa 6b 92-c6 b7 68 76 36 60 9e 1f","No Asset Tag","'+02:00","2026-04-07T10:20:27.000+02:00","cybadmsys","Cloud Agent","6260bc0c-2644-4456-b0b2-c7744bfea354","2026-01-15T15:04:43.000+02:00","2026-04-22T11:45:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DFIN,ISIS","61.0" +"240378938","274668324","vibocaprx1.sanef.groupe","","00:50:56:90:14:09","192.168.21.227","fe80::250:56ff:fe90:1409","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 09 69 37 21 af 7e-b7 22 39 52 4b ba 8d 2d","No Asset Tag","'+02:00","2026-03-16T10:41:18.000+02:00","cybreconcile","Cloud Agent","0c5bac1a-0aea-4f6f-9867-7b2c9a202087","2024-05-30T10:36:42.000+02:00","2026-04-22T11:40:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,flux_libre,FreeFlow,Flux Libre,Production","144.0" +"160222392","213244072","vrsupbmap1.sanef.groupe","","00:50:56:82:b1:ad","10.45.0.198","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 82 1d c5 cf 36 0f-7b 06 b7 a8 c8 f9 f4 74","No Asset Tag","'+02:00","2026-03-11T11:25:54.000+02:00","cybadmsys","Cloud Agent","4fe54dac-8a51-4245-8075-07d26fb341f3","2023-02-22T13:03:42.000+02:00","2026-04-22T10:26:10.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,DSI,flux_libre,Flux Libre,Production","288.0" +"208784156","248752400","vibotatsp1.sanef.groupe","","00:50:56:90:f4:eb","10.41.23.144","fe80::250:56ff:fe90:f4eb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 35 6b 1e ea d8 f9-74 c2 b6 f3 29 18 a7 c8","No Asset Tag","'+02:00","2026-03-18T10:30:12.000+02:00","root","Cloud Agent","d4710f92-cb1c-44d5-953b-527a94b38c0a","2024-01-10T13:43:46.000+02:00","2026-04-22T10:26:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","140.0" +"139157943","198270298","vmampmet2","","00:50:56:82:2B:88, 00:50:56:82:21:85, 00:50:56:82:66:C4","10.41.40.78,10.41.40.79,10.43.40.78,10.43.40.79,10.43.4.78","fe80::250:56ff:fe82:2b88,fe80::250:56ff:fe82:2185,fe80::250:56ff:fe82:66c4","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 70 9d 87 5f df 23-cb 06 4c 49 6e b6 8d 73","No Asset Tag","'+02:00","2024-02-14T14:14:42.000+02:00","cybreconcile","Cloud Agent","72fb8c0b-b87a-4c72-b45e-7de93f23ecf1","2022-09-07T14:28:06.000+02:00","2026-04-22T11:51:58.000+02:00","x86_64","5","SCA,VM,PM,GAV","Production,Obsolete,VRF_TRAFIC_DC,OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,log4j,Trafic,MIVISU","878.0" +"287937932","311537311","vrosapels2.sanef-rec.fr","","00:50:56:9c:33:b0","10.45.9.72","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f2 57 d9 e5 2c 78-d1 5e b5 e1 ad e9 62 81","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","reboot","Cloud Agent","d6e43cba-b9c2-4040-8c1e-b517722e33ce","2024-12-20T13:09:32.000+02:00","2026-04-22T10:25:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server","142.0" +"113584905","181185075","vpdecasas8.sanef.groupe","","00:50:56:82:21:8d","10.30.11.156","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2200","Intel(R) Xeon(R) CPU E5-4660 v4 @ 2.20GHz","257964","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 aa 81 37 79 5d 13-9b 16 72 cf 17 10 38 43","No Asset Tag","'+02:00","2026-03-25T11:53:14.000+02:00","cybreconcile","Cloud Agent","c9cc1609-7e02-495f-bd01-409cde65e06e","2022-02-15T15:08:08.000+02:00","2026-04-22T10:25:13.000+02:00","x86_64","3","SCA,VM,PM,GAV","Production,VRF_INCONNUE,SAS,OS-LIN-SRV DYN,ServersInCyberark,Cloud Agent,Linux Server,Obsolete,DSI","71.0" +"175948102","229616407","vppatbsip1.sanef.groupe","","00:50:56:82:9d:b6","10.42.40.10","fe80::875:558:2c8f:990d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63886","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 04 53 a7 0b 19 47-f5 65 cd a9 59 b7 1c d6","No Asset Tag","'+02:00","2026-04-16T16:09:23.000+02:00","cybreconcile","Cloud Agent","238ba139-c4ff-4e05-88e4-315c0d456ba9","2023-06-26T16:20:40.000+02:00","2026-04-22T11:56:06.000+02:00","x86_64","4","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,ISIS,Cloud Agent,Linux Server,TAG-SRVEXPOSEINDIRECT,DFIN","113.0" +"175415700","229250370","vvbocharg2.sanef-rec.fr","","00:50:56:9c:f6:5c","10.45.6.8","fe80::250:56ff:fe9c:f65c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 2a 02 73 5d 71 89-fe 0d 0a 73 4e f7 43 d3","No Asset Tag","'+02:00","2026-03-09T11:12:28.000+02:00","cybsupsys","Cloud Agent","0bc8a46d-7335-4c96-b45d-aa680d71c021","2023-06-22T11:01:56.000+02:00","2026-04-22T11:54:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,MID-APACHE-TOMCAT DYN,Flux Libre","142.0" +"295300195","317119406","vpvsaasic1","","00:50:56:8f:35:45","10.44.200.104","fe80::250:56ff:fe8f:3545","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 55 23 06 2b d2 c0-fa ed 85 7f 9a 6f 7c 07","No Asset Tag","'+02:00","2026-02-02T13:02:56.000+02:00","root","Cloud Agent","75424e16-2fee-4d17-a073-6dc653ef1520","2025-01-28T14:30:58.000+02:00","2026-04-22T10:24:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,TAG-SIC,TAG-SIA","52.0" +"363969483","346387491","vptrabmut1.sanef.groupe","","52:54:00:7d:a0:29, 52:54:00:43:7d:b5, 52:54:00:63:38:b5","192.168.17.6,10.41.40.230,10.41.40.232,10.41.40.234,10.41.40.235,192.168.17.133","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-26T15:52:24.000+02:00","oracle","Cloud Agent","2c191b39-4c8b-4d5e-8fbe-40599367b65b","2025-09-29T16:50:18.000+02:00","2026-04-22T10:38:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Production,BDD,MID-APACHE-TOMCAT DYN","339.0" +"191424299","239728327","vibooaori1.sanef.groupe","","00:50:56:90:bf:0a","10.41.22.208","fe80::250:56ff:fe90:bf0a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1c a2 e3 a1 9a 47-e2 48 00 9c a6 34 16 5f","No Asset Tag","'+02:00","2026-03-16T10:43:53.000+02:00","cybsupemo","Cloud Agent","c017ef11-d65e-4155-8681-9c96b9abfea1","2023-10-04T18:03:36.000+02:00","2026-04-22T10:23:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","142.0" +"335441959","334612886","vtdsiatmp4.sanef.groupe","","00:50:56:9c:4f:67","10.43.253.7","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 91 dc 94 43 2e bb-81 8e bf 75 ee 1e 93 2e","No Asset Tag","'+02:00","2026-04-14T14:37:24.000+02:00","root","Cloud Agent","8866e5e5-d66b-4ac4-9800-a8e3525be2c1","2025-06-23T10:44:00.000+02:00","2026-04-22T10:23:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","test_rhel9,Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"372122822","349584353","vppciamft1.sanef.groupe","","00:50:56:86:f9:ac","192.168.101.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 06 9b be e3 fd be 93-2f 5f 46 bd 01 4a fd 3d","No Asset Tag","'+02:00","2025-06-10T14:29:29.000+02:00","root","Cloud Agent","a8669d13-053b-4aa8-9e3f-b23f852d9a05","2025-10-27T13:56:29.000+02:00","2026-04-22T10:23:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","334.0" +"193226459","240735722","vibocs4ci1.sanef.groupe","","00:50:56:90:e0:2c","10.41.22.69","fe80::250:56ff:fe90:e02c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","92112","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c7 20 18 e4 be 9f-46 22 ff d7 3f b9 28 3c","No Asset Tag","'+02:00","2026-03-16T16:13:00.000+02:00","root","Cloud Agent","5a870b8a-94dc-4da1-83f6-46abced9cf6d","2023-10-13T13:27:19.000+02:00","2026-04-22T10:23:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,flux_libre,Flux Libre","143.0" +"131275076","193321025","vpaiiapol6","","00:50:56:82:80:89","10.40.2.40","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ca 4d 52 2a c3 ed-d6 0e 34 dd 06 91 ee f3","No Asset Tag","'+02:00","2024-06-05T14:32:22.000+02:00","cybadmsys","Cloud Agent","c557d007-c6ac-4eb6-8413-cddc52b3e53f","2022-07-12T15:48:39.000+02:00","2026-04-22T10:23:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,Centreon,DSI,BDD-POS DYN,BDD-SQL DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,Sans,Production,Outils prod (Monitoring, NMS, gestion de parc),Obsolete","462.0" +"365792814","347053025","vpdatafrt1.sanef.groupe","","00:50:56:90:37:c5","192.168.40.99","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 32 5c c2 b4 f2 1d-01 04 cc 83 de 99 f6 de","No Asset Tag","'+02:00","2026-01-27T15:49:10.000+02:00","cybreconcile","Cloud Agent","9deacc13-d798-41ec-b0ca-7638a295b0b5","2025-10-06T10:46:20.000+02:00","2026-04-22T11:47:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent","141.0" +"167745827","224050667","vpmetaquo1.sanef.groupe","","00:50:56:82:bd:67","10.100.16.5","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 be 69 76 a2 c5 c6-cd a1 17 01 56 e8 4b 59","No Asset Tag","'+02:00","2026-01-29T15:52:00.000+02:00","cybreconcile","Cloud Agent","e45a9a3d-9c60-4b85-a734-9a4c7f17a71d","2023-04-24T14:45:11.000+02:00","2026-04-22T11:47:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DSI,Cloud Agent,Linux Server,3PAR","142.0" +"236872619","266140980","vpechatre4.sanef.groupe","","00:50:56:90:e7:4f","10.42.16.136","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7d 1c 93 aa ac dd-d9 02 10 09 ba 24 9e 4d","No Asset Tag","'+02:00","2025-11-18T16:03:15.000+02:00","cybreconcile","Cloud Agent","4668f5d0-df8d-4488-89d9-af1275a5aa73","2024-05-15T12:24:05.000+02:00","2026-04-22T11:54:57.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,TALEND,Production,Cloud Agent,Linux Server","208.0" +"202413303","245310749","vrameasxt3.sanef-rec.fr","","00:50:56:9c:14:8b, 00:50:56:9c:39:30","10.45.4.62,10.45.2.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 86 19 b0 fe 39 4c-c1 f0 ac 35 71 b1 a2 30","No Asset Tag","'+02:00","2026-04-20T15:20:56.000+02:00","cybadmsys","Cloud Agent","fb7b130d-8e2f-429c-939f-a07d0fa2cfd4","2023-12-04T17:29:51.000+02:00","2026-04-22T11:56:41.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","95.0" +"294135637","316159330","vradvangx1.sanef-rec.fr","","00:50:56:9c:1d:06","192.168.20.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7696","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d3 be 42 6a 65 f4-d8 e7 02 31 3c 8d b4 35","No Asset Tag","'+02:00","2026-02-18T15:32:01.000+02:00","root","Cloud Agent","8feb517e-05d5-42e2-8b25-112def6329c1","2025-01-22T13:33:18.000+02:00","2026-04-22T10:22:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,ADV-U,Recette","54.0" +"358140645","344038672","vrdsibarc1.sanef-rec.fr","","00:50:56:9c:e6:6a","10.45.15.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a4 e1 44 00 0e 2f-83 ae a4 21 0c 33 0e 58","No Asset Tag","'+02:00","2026-04-20T15:37:16.000+02:00","cybsupapp","Cloud Agent","acc111a7-8e4c-48cb-aa3b-74104257f29c","2025-09-09T15:12:14.000+02:00","2026-04-22T11:53:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,BDD,Recette,Linux Server,Cloud Agent,BDD-POS DYN","152.0" +"195401077","241773075","vpbotrssm2.sanef.groupe","","00:50:56:90:56:56","10.41.23.9","fe80::250:56ff:fe90:5656","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 72 d8 03 18 55 c7-ad 9e 33 08 c8 c7 fe 77","No Asset Tag","'+02:00","2026-04-21T11:17:35.000+02:00","cybreconcile","Cloud Agent","c165f7bf-9fb6-4f01-8d85-f785caab184e","2023-10-24T23:34:18.000+02:00","2026-04-22T11:49:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Production","139.0" +"131401680","193422309","lampasu1.sanef.groupe","","00:17:A4:77:08:E8, 00:17:A4:77:08:EC","10.41.40.190,10.41.40.192,10.41.40.194,10.43.4.193,169.254.155.254","fe80::217:a4ff:fe77:8e8,fe80::217:a4ff:fe77:8ec","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","4","2500","Intel(R) Xeon(R) CPU E5-2609 v2 @ 2.50GHz","32069","HP I31 01/22/2018","VCX000020P","","'+02:00","2025-08-12T11:10:07.000+02:00","cybreconcile","Cloud Agent","d4bf24ea-0482-46c9-a9b4-644bdcf9bb95","2022-07-13T10:13:42.000+02:00","2026-04-22T10:21:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,Production,Exploitation,Sans,ServersInCyberark,OS-LIN-SRV DYN,Obsolete,DSI,log4j,Cloud Agent,Linux Server","528.0" +"175414997","229251321","vvbocmedi2.sanef-rec.fr","","00:50:56:9c:87:9b","10.45.6.9","fe80::250:56ff:fe9c:879b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c fa 7b 56 cf 71 32-3c eb bb 3b 8f a3 66 b2","No Asset Tag","'+02:00","2026-03-09T11:47:14.000+02:00","cybsupsys","Cloud Agent","d1ed673e-21bf-4d0f-b1e0-95fab51d8e62","2023-06-22T11:09:16.000+02:00","2026-04-22T10:21:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN,FreeFlow,Flux Libre","337.0" +"331378739","333860817","vrmonaftp1.sanef-rec.fr","","00:50:56:9c:30:c7","10.45.14.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 47 e3 1b ba 61 28-5b b8 9a 64 74 90 36 cc","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","reboot","Cloud Agent","763903e4-d4e7-4ca6-b374-d0441c6a28ef","2025-06-06T09:46:24.000+02:00","2026-04-22T10:21:12.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,EMV","332.0" +"395905873","359675952","vpnapamed1.sanef.groupe","","00:50:56:90:4f:bd","10.100.16.9","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 e1 af 9c 87 94 f4-b8 f4 f3 2b 33 73 dc e6","No Asset Tag","'+02:00","2026-01-29T18:34:20.000+02:00","cybreconcile","Cloud Agent","bf23870f-082d-4f25-a572-a62b1992f590","2026-01-29T18:17:16.000+02:00","2026-04-22T11:35:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","Quorum,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","336.0" +"209599636","249215479","vpbotarmq2.sanef.groupe","","00:50:56:90:38:06","10.41.23.23","fe80::250:56ff:fe90:3806","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 9a ec 2b 1f 4b e8-84 2a b4 51 03 06 01 be","No Asset Tag","'+02:00","2026-04-21T11:47:46.000+02:00","cybadmsys","Cloud Agent","d084200a-8e4c-44b1-9123-34e14f6717cd","2024-01-15T13:34:46.000+02:00","2026-04-22T10:20:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,FreeFlow,flux_libre,Production","141.0" +"241549584","276516748","vpvsaaahz2.sanef.groupe","","00:50:56:9c:0d:eb","192.168.18.80","fe80::250:56ff:fe9c:deb","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c ef a5 9c cc 09 a8-e8 ee 76 b6 32 81 ca ea","No Asset Tag","'+02:00","2026-02-04T13:39:00.000+02:00","tbaad-ext","Cloud Agent","ed68b9ed-6e4b-4348-aa33-fc4c57d3f8cd","2024-06-04T12:46:47.000+02:00","2026-04-22T11:44:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"165442546","221733692","vppataels1","","00:50:56:82:26:e6","10.42.40.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 fa 07 a0 61 4c dd-cb 35 30 c6 b4 63 2f fc","No Asset Tag","'+02:00","2026-04-02T14:23:50.000+02:00","cybadmsys","Cloud Agent","17645695-a79d-4089-a9d9-4b1021e0c9b7","2023-04-05T11:10:12.000+02:00","2026-04-22T10:19:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,DFIN,Cloud Agent,Linux Server,ISIS","66.0" +"139155574","198270091","vampsychtp1.sanef.groupe","","00:50:56:82:08:63","10.41.40.102","fe80::250:56ff:fe82:863","Linux / Server","Red Hat Enterprise Linux Server 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 de e9 ce 1c 20 7e-77 be 84 8e 7a 72 3a fb","No Asset Tag","'+02:00","2023-12-21T15:54:07.000+02:00","cybreconcile","Cloud Agent","3b2d3777-cf64-459e-87b6-e977684cbe5b","2022-09-07T14:20:37.000+02:00","2026-04-22T11:45:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,DEX,VRF_TRAFIC_DC,Production,Patrimoine","524.0" +"377809009","352213444","vpdsiangx1.sanef.groupe","","00:50:56:90:a8:30","192.168.19.160","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 16 6a c4 ab e8 0d-aa 1c be 7d a0 14 54 7a","No Asset Tag","'+02:00","2026-04-13T14:25:03.000+02:00","cybreconcile","Cloud Agent","40de4338-c22b-46aa-90ac-1e8b80ec5800","2025-11-19T18:56:10.000+02:00","2026-04-22T10:19:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","329.0" +"335905349","336780143","vrrpnangx1.sanef-rec.fr","","00:50:56:9c:4f:9c","10.45.14.229","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a8 de 8a 4a f7 76-92 5c 50 9e 49 ab 6d d4","No Asset Tag","'+02:00","2026-02-23T10:35:27.000+02:00","cybsecope","Cloud Agent","2ad21bec-0e15-48d3-ba8d-ce21d0af3547","2025-06-24T11:02:57.000+02:00","2026-04-22T10:18:58.000+02:00","x86_64","2","SCA,VM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Péage,Linux Server,Cloud Agent","140.0" +"130588628","192836893","vmamrsxt3","","00:50:56:82:60:09, 00:50:56:82:12:4D, 00:50:56:82:23:4D","10.33.16.62,10.32.16.62,10.30.16.62","fe80::250:56ff:fe82:6009,fe80::250:56ff:fe82:124d,fe80::250:56ff:fe82:234d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7d e6 2b 46 18 6d-cc 34 58 02 61 87 44 84","No Asset Tag","'+02:00","2025-10-09T11:39:38.000+02:00","cybexpapp","Cloud Agent","0d432158-cbf2-44af-a96b-158976ac6f3d","2022-07-07T12:05:53.000+02:00","2026-04-22T10:18:43.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Obsolete,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sans,Trafic,Recette,log4j,MID-APACHE-TOMCAT DYN,Sextan","699.0" +"295835229","317388750","vpngwasia1","","00:50:56:94:77:7d","10.44.2.196","fe80::250:56ff:fe94:777d","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 fd 85 a2 bc 8d 35-8a 61 7b 87 bb e6 14 b2","No Asset Tag","'+02:00","2026-02-02T16:44:55.000+02:00","tbaad","Cloud Agent","9f3dadeb-d99e-40cb-9749-876934fc2c26","2025-01-29T11:30:35.000+02:00","2026-04-22T10:18:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server","53.0" +"211399224","250073992","vrpeabbst2.sanef-rec.fr","","00:50:56:9c:b1:be","10.45.10.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 85 d0 cd af 0d a8-00 69 b7 36 f7 38 2b 47","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","cybadmsys","Cloud Agent","ecfe5959-6a9e-49ab-a7b9-d042ddf918bf","2024-01-23T16:34:55.000+02:00","2026-04-22T11:54:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","DSI,Péage,BOOST,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN","141.0" +"169723549","225427800","vpdsiagit1.sanef.groupe","","00:50:56:82:a9:a3","10.30.11.216","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 3a 4b 2f 86 5f 03-22 a8 d0 1a 85 58 5f 55","No Asset Tag","'+02:00","2026-01-29T10:27:50.000+02:00","cybexpapp","Cloud Agent","69ea2e8a-9170-42ac-bdfb-3ecc80d170bc","2023-05-10T11:56:17.000+02:00","2026-04-22T11:50:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,CVS","140.0" +"183949377","235204371","vmamdpmv1","","00:50:56:82:18:5B","10.45.2.128","fe80::250:56ff:fe82:185b","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7c a1 fd 72 70 8d-57 f4 c1 96 c8 2a d1 cc","No Asset Tag","'+02:00","2025-10-08T13:43:04.000+02:00","cybexpapp","Cloud Agent","50ab478b-ce5c-4f6e-a556-5021d0b0d58d","2023-08-22T12:03:22.000+02:00","2026-04-22T11:53:01.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,MIVISU,Obsolete","867.0" +"180099331","232620255","vrrauaast1.sanef-rec.fr","","00:50:56:9c:d9:be, 00:50:56:9c:05:31","10.45.9.227,10.45.5.33","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 06 b5 77 3b a8 49-0b 7a 92 6c 8b de 96 aa","No Asset Tag","'+02:00","2026-04-21T14:27:18.000+02:00","cybadmsys","Cloud Agent","6ea8fff9-b501-435a-bbbc-b252b4b77110","2023-07-26T17:16:56.000+02:00","2026-04-22T10:18:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,OS-LIN-SRV DYN,DSI,Cloud Agent,Linux Server","201.0" +"160222343","213244601","vrsupbcen1.sanef.groupe","","00:50:56:82:6e:11","10.45.0.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 07 e0 e6 17 72 3e-f2 47 c7 28 72 d1 af 72","No Asset Tag","'+02:00","2026-03-11T13:10:16.000+02:00","cybadmsys","Cloud Agent","3cb2591d-3ba7-4f13-9492-fe0c05ad5fcf","2023-02-22T13:06:10.000+02:00","2026-04-22T11:51:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,DSI,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Centreon","288.0" +"138994697","198163433","RSMIRAU1","","10:60:4B:9C:57:E4, 10:60:4B:9C:57:DC","10.41.40.202,10.43.4.202","fe80::1260:4bff:fe9c:57e4,fe80::1260:4bff:fe9c:57dc","Linux / Server","Red Hat Enterprise Linux Server 6.3","6.3","Computers / Server","HPE ProLiant DL360 G7 Server","8","2400","Intel(R) Xeon(R) CPU E5620 @ 2.40GHz","7858","HP P68 05/05/2011","CZJ24400DR","","'+02:00","2025-06-10T15:52:29.000+02:00","cybsupapp","Cloud Agent","6ab0aef7-5896-4bab-9b42-24f63f46107c","2022-09-06T12:34:31.000+02:00","2026-04-22T10:18:11.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,OS-LIN-SRV DYN,DSI,Obsolete,VRF_INCONNUE,ServersInCyberark,Cloud Agent,Linux Server,Production,Exploitation","522.0" +"234568952","262085964","vrechatre3.sanef-rec.fr","","00:50:56:9c:b9:4f","10.45.11.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 7f d6 67 4a 43 36-82 22 54 0f 10 94 eb 6c","No Asset Tag","'+02:00","2026-03-25T13:39:53.000+02:00","cybadmsys","Cloud Agent","31668934-7f52-4255-ba90-da54b19172a6","2024-05-06T12:42:21.000+02:00","2026-04-22T10:18:02.000+02:00","x86_64","3","SCA,VM,PM,GAV","Recette,TALEND,OS-LIN-SRV DYN,Cloud Agent,Linux Server","221.0" +"139158116","198270707","vmampsxt4","","00:50:56:82:17:A2, 00:50:56:82:38:61, 00:50:56:82:61:C3","10.43.40.33,10.41.40.33,10.43.4.33","fe80::250:56ff:fe82:17a2,fe80::250:56ff:fe82:3861,fe80::250:56ff:fe82:61c3","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 5f 5a 21 87 08-cc 4f 12 18 2b 59 23 ba","No Asset Tag","'+02:00","2024-11-06T21:15:53.000+02:00","cybreconcile","Cloud Agent","41ed86ae-1ab0-4c15-b2a0-1a63aaadb290","2022-09-07T14:36:03.000+02:00","2026-04-22T10:17:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,VRF_TRAFIC_DC,DEX,Obsolete,log4j,Production,Trafic","699.0" +"303906738","322166974","vpdsismtp1.sanef.groupe","","00:50:56:9c:52:31","192.168.19.35,192.168.19.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7696","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 3e e5 84 98 21 b6-d6 b8 ae 6a bd 09 14 06","No Asset Tag","'+02:00","2026-04-09T12:31:59.000+02:00","cybsecope","Cloud Agent","f68793dc-d81e-4c88-b8e0-4044c40554d4","2025-02-27T18:09:30.000+02:00","2026-04-22T11:47:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,TAG-SRVEXPOSEINTERNET,EXCHANGE,Production","132.0" +"165610538","221971339","vpameatra1.sanef.groupe","","00:50:56:82:73:2e","192.168.40.20","fe80::250:56ff:fe82:732e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 92 ce 9d 33 0d 0e-76 91 d2 15 d8 8d 62 e6","No Asset Tag","'+02:00","2026-04-15T10:05:10.000+02:00","cybreconcile","Cloud Agent","e527400e-fa04-45e6-914d-8b1af9fba2fb","2023-04-06T12:22:04.000+02:00","2026-04-22T10:17:34.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,DEX,OS-LIN-SRV DYN,Production,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,Cloud Agent,Linux Server","132.0" +"395825841","359643460","VRAIRAHTP2","","00:50:56:9c:e7:1c","10.45.1.103","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 45 c1 34 37 27 d0-15 0c 45 3c 97 d0 d6 d6","No Asset Tag","'+02:00","2026-02-05T17:21:20.000+02:00","cybintsys","Cloud Agent","4ca0a099-f07f-42f4-967e-d964de9cc715","2026-01-29T12:20:23.000+02:00","2026-04-22T10:17:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,OS-LIN-SRV DYN,Linux Server,MID-NGINX DYN","139.0" +"372123651","349584354","vppciagtw1.sanef.groupe","","00:50:56:86:e6:08","192.168.105.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 06 ca 03 b6 92 21 00-01 ff e6 c6 ae e6 1b b5","No Asset Tag","'+02:00","2025-07-21T16:40:09.000+02:00","root","Cloud Agent","f56ee2eb-ffb7-4fef-934b-e486ad36bf19","2025-10-27T13:54:20.000+02:00","2026-04-22T11:56:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","333.0" +"382721458","354098156","spbckmmag2.sanef.groupe","","04:bd:97:3e:68:b4","192.168.109.9","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C240 M5 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","31534","Cisco Systems, Inc. C240M5.4.3.2g.0.0515250954 05/15/2025","WZP25500WKY","Unknown","'+02:00","2025-12-09T13:29:34.000+02:00","root","Cloud Agent","fe8e0cdb-dc07-4295-8fdc-ab368b2ff599","2025-12-09T12:50:44.000+02:00","2026-04-22T11:39:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","328.0" +"175949260","229617190","vvbotarep1.sanef-rec.fr","","00:50:56:9c:fd:ec","10.45.6.140","fe80::250:56ff:fe9c:fdec","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 45 5d 19 e3 bf 42-83 28 d6 3a 84 43 0a 86","No Asset Tag","'+02:00","2026-03-12T15:18:59.000+02:00","cybreconcile","Cloud Agent","e382a969-d1de-4f96-84ca-249a19b63936","2023-06-26T16:30:00.000+02:00","2026-04-22T10:16:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,FreeFlow,flux_libre,Flux Libre","329.0" +"326648225","331288789","vpvsampci2","","00:50:56:86:09:5e","192.168.109.15","fe80::250:56ff:fe86:95e","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 6b 63 3d e5 6e 51-34 20 ee fa 34 b4 63 b3","No Asset Tag","'+02:00","2026-02-02T12:26:36.000+02:00","tbaad","Cloud Agent","b5809d2d-36ec-44f7-b02d-72d7b3211eb9","2025-05-22T17:21:07.000+02:00","2026-04-22T11:55:13.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent","52.0" +"241575082","276534362","vrdepaast1.sanef-rec.fr","","00:50:56:9c:d1:ef","10.45.13.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3664","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c f0 51 af e8 1a ae-3d df 78 87 80 4f b0 e8","No Asset Tag","'+02:00","2026-01-15T16:39:32.000+02:00","cybastsys","Cloud Agent","d3bbea99-fd05-45b1-b063-1ed639f99e63","2024-06-04T15:16:09.000+02:00","2026-04-22T11:50:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","144.0" +"213849842","251124346","spboomcla1.sanef.groupe","","5c:ba:2c:60:ae:c0","10.41.22.143","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95787","HPE U30 07/20/2023","CZ22410FKD","","'+02:00","2026-04-07T09:43:49.000+02:00","cybreconcile","Cloud Agent","0bc1bab5-67be-4531-a686-14b7644b08ec","2024-02-05T19:17:09.000+02:00","2026-04-22T11:56:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,FreeFlow,Flux Libre,Production,Cloud Agent,Linux Server","337.0" +"167744458","224051351","vpgesaquo1.sanef.groupe","","00:50:56:82:ee:fa","10.100.16.6","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 bb c5 f5 be d4 74-24 70 0e fa 80 22 ca 2e","No Asset Tag","'+02:00","2026-01-29T12:04:55.000+02:00","cybreconcile","Cloud Agent","7af802e0-6711-4b9f-8be4-201679e24cac","2023-04-24T14:58:05.000+02:00","2026-04-22T11:51:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,Quorum,3PAR","142.0" +"241563624","276522522","vpvsaages2.sanef.groupe","","00:50:56:9c:02:61","10.42.16.83","fe80::250:56ff:fe9c:261","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c f9 3d e3 54 b3 61-09 4d 38 db 1e 3e 2d 7d","No Asset Tag","'+02:00","2026-02-04T15:59:26.000+02:00","tbaad-ext","Cloud Agent","0daeaf3f-26f3-41e5-9a42-41fbd8198ed2","2024-06-04T13:53:01.000+02:00","2026-04-22T11:55:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"138994660","198163269","RMILRAU1","","10:60:4B:9C:27:DC, 10:60:4B:9C:27:E0","10.43.4.201,10.41.40.201","fe80::1260:4bff:fe9c:27dc,fe80::1260:4bff:fe9c:27e0","Linux / Server","Red Hat Enterprise Linux Server 6.3","6.3","Computers / Server","HPE ProLiant DL360 G7 Server","8","2400","Intel(R) Xeon(R) CPU E5620 @ 2.40GHz","7857","HP P68 05/05/2011","CZJ24400HL","","'+02:00","2023-04-26T18:33:37.000+02:00","cybreconcile","Cloud Agent","7800337f-f123-481e-b26b-807801c6d492","2022-09-06T12:31:09.000+02:00","2026-04-22T10:15:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,ASUR,Obsolete,OS-LIN-SRV DYN,Cloud Agent,Linux Server,log4j,Production,Exploitation,VRF_INCONNUE","524.0" +"130588882","192836205","vmamrsxt1","","00:50:56:82:73:93, 00:50:56:82:2E:73, 00:50:56:82:69:1E","10.33.16.60,10.30.16.60,10.32.16.60","fe80::250:56ff:fe82:7393,fe80::250:56ff:fe82:2e73,fe80::250:56ff:fe82:691e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a6 8e eb 83 91 b8-d0 69 ec a5 7a d6 f9 b7","No Asset Tag","'+02:00","2025-10-09T11:39:32.000+02:00","cybexpapp","Cloud Agent","12d97d2c-e53a-486e-8273-da5ef8c65d95","2022-07-07T12:04:45.000+02:00","2026-04-22T10:15:36.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sextan,DEX,Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE,log4j,Recette,Sans,Trafic","699.0" +"171734767","226770082","lragtbpla1.sanef.groupe","","3e:33:fb:a0:00:a5, 3e:33:fb:a0:00:a4","10.45.1.227","fe80::3c33:fbff:fea0:a5,fe80::3c33:fbff:fea0:a4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63887","HPE I44 06/13/2025","VCGBW5200K","/n/Bios Asset Tag :","'+02:00","2026-02-23T17:19:46.000+02:00","oracle","Cloud Agent","8911252f-42b8-4a22-aa5b-fd12d7f3c2e8","2023-05-25T11:20:04.000+02:00","2026-04-22T10:15:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,AgileTime,DRH","339.0" +"327577343","333860585","vrdsibetc3.sanef-rec.fr","","00:50:56:bf:85:20","10.100.16.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 3f e1 47 4c e6 87 c6-8f a5 dc 27 b2 4d 00 02","No Asset Tag","'+02:00","2026-01-06T13:53:56.000+02:00","cybadmbdd","Cloud Agent","aad2d7ad-d15c-4b5e-92a4-94921c6b4541","2025-05-27T15:24:08.000+02:00","2026-04-22T10:15:08.000+02:00","x86_64","2","SCA,VM,GAV","BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","141.0" +"159249333","211845831","vpsasactr1.sanef.groupe","","00:50:56:82:e1:6d","10.41.32.6","fe80::250:56ff:fe82:e16d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","128400","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7e 68 66 a1 6c aa-c6 3a e1 d6 dc 9c 09 7e","No Asset Tag","'+02:00","2026-03-25T16:02:01.000+02:00","cybreconcile","Cloud Agent","af6606fc-6a57-4b19-8632-834a308f2af4","2023-02-14T16:35:03.000+02:00","2026-04-22T10:15:07.000+02:00","x86_64","3","SCA,VM,PM,GAV","SAS,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,VRF_BURO_DC,BDD-POS DYN","93.0" +"213855690","251126730","lampdec1.sanef.groupe","","00:17:A4:77:14:E6","10.30.13.140","fe80::217:a4ff:fe77:14e6","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G8 Server","24","2000","Intel(R) Xeon(R) CPU E5-2620 0 @ 2.00GHz","48262","","CZ3232T6EL","","'+02:00","2024-09-17T10:37:46.000+02:00","cybadmbdd","Cloud Agent","156d7940-47a5-496d-a3fd-08a5a9f1150e","2024-02-05T20:01:30.000+02:00","2026-04-22T10:15:01.000+02:00","x86_64","3","SCA,VM,GAV","log4j,Cloud Agent,Linux Server,BusinessObjects,BDD-POS DYN,OS-LIN-SRV DYN,Obsolete,DFIN","529.0" +"335897723","336780141","vrrpaangx1.sanef-rec.fr","","00:50:56:9c:16:d2","10.45.14.227","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 1d 78 01 8c 4a d0-cd 00 26 9a 79 43 18 d9","No Asset Tag","'+02:00","2026-02-23T10:33:33.000+02:00","cybsupcar","Cloud Agent","44586578-1757-4548-b297-a52e315c4347","2025-06-24T10:23:46.000+02:00","2026-04-22T11:52:20.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Péage,MID-NGINX DYN,Linux Server,Cloud Agent","140.0" +"195074577","241703494","vvbocrsap1.sanef-rec.fr","","00:50:56:9c:55:c1","10.45.6.12","fe80::250:56ff:fe9c:55c1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c7 15 4c 32 fc 78-29 df 68 ce e2 c0 b1 ca","No Asset Tag","'+02:00","2026-03-10T10:11:12.000+02:00","cybsupsys","Cloud Agent","704b4548-7fc8-49e9-ae47-baa62e733487","2023-10-24T08:03:31.000+02:00","2026-04-22T10:14:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server,Flux Libre","334.0" +"175461662","229280306","vvbotreco2.sanef-rec.fr","","56:ed:ae:09:e6:94, ea:fc:6a:70:d1:2c, 6e:70:e9:cb:2e:8a, c2:94:47:eb:4b:a0, 00:50:56:9c:93:d3, 02:b2:4d:b0:18:d0","10.45.6.155,10.89.0.1","fe80::54ed:aeff:fe09:e694,fe80::e8fc:6aff:fe70:d12c,fe80::6c70:e9ff:fecb:2e8a,fe80::c094:47ff:feeb:4ba0,fe80::250:56ff:fe9c:93d3,fe80::b2:4dff:feb0:18d0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f8 f4 f9 b9 d3 44-08 9f 36 b4 e3 36 1c 85","No Asset Tag","'+02:00","2026-03-10T15:11:05.000+02:00","cybreconcile","Cloud Agent","47dac430-a3d2-4dc3-84c3-2d5c3ea604fd","2023-06-22T16:50:06.000+02:00","2026-04-22T10:14:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Recette,flux_libre","140.0" +"130586805","192835988","vmamrdif1.sanef.groupe","","00:50:56:82:0C:04","10.45.2.25","fe80::250:56ff:fe82:c04","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 b7 da fe 38 e7 af-c5 f8 4a 09 65 33 bf 74","No Asset Tag","'+02:00","2025-10-09T11:37:48.000+02:00","root","Cloud Agent","4b4cc9e0-1393-4bd2-a872-473ff5d2607f","2022-07-07T11:59:30.000+02:00","2026-04-22T11:47:26.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,VRF_INCONNUE,BDD-POS DYN,OS-LIN-SRV DYN,DEX,Sextan,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,log4j,Trafic,Recette,Sans","696.0" +"334495487","336780139","vrdsiarad1.sanef-rec.fr","","00:50:56:9c:41:8f","10.45.14.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 8f e8 03 a0 cd 70-bf 12 f0 4b 25 5b 2c a1","No Asset Tag","'+02:00","2026-04-20T16:55:11.000+02:00","cybadmroot","Cloud Agent","091c8c68-abea-443f-8477-5cece3743e9f","2025-06-18T17:35:29.000+02:00","2026-04-22T10:13:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette,Radius","66.0" +"411158635","365551022","vplogakib1","","00:50:56:94:f3:0c","10.44.7.37","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 21 fe ed f3 95 c5-06 92 34 c4 70 65 6c 79","No Asset Tag","'+02:00","2026-04-15T10:55:05.000+02:00","cybintsys","Cloud Agent","8cf0a59b-7c48-4da0-bde5-d939c657fd99","2026-03-24T19:05:08.000+02:00","2026-04-22T10:13:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","103.0" +"175950696","229618441","vvbocharg1.sanef-rec.fr","","00:50:56:9c:8d:a8","10.45.6.4","fe80::250:56ff:fe9c:8da8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 84 e2 ba e7 23 1b-f3 1f e2 1c 6e 37 fe e6","No Asset Tag","'+02:00","2026-03-11T16:01:47.000+02:00","cybsupsys","Cloud Agent","79393a41-1ae4-4e20-a725-73faabdf17bf","2023-06-26T16:42:59.000+02:00","2026-04-22T10:13:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Cloud Agent,Linux Server,Flux Libre,MID-APACHE-TOMCAT DYN,Recette,OS-LIN-SRV DYN","142.0" +"378055027","352307187","vpdsiangx4.sanef.groupe","","00:50:56:90:b6:c0","192.168.19.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 58 e0 f3 49 5a cd-a1 4b 62 d7 2f 21 93 33","No Asset Tag","'+02:00","2025-11-20T13:40:09.000+02:00","root","Cloud Agent","7be8f63a-d7f7-49bc-956a-d6f883f75240","2025-11-20T13:41:29.000+02:00","2026-04-22T10:13:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","330.0" +"130588848","192836203","vmamrrdt1","","00:50:56:82:0C:6D, 00:50:56:82:09:BB","10.45.2.185,10.45.2.189,10.45.2.190,10.45.2.191,10.45.2.193,10.45.3.185,10.45.3.189,10.45.3.190,10.45.3.191,10.45.3.193","fe80::250:56ff:fe82:c6d,fe80::250:56ff:fe82:9bb","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 40 aa b1 b8 96 ee-ca 32 05 82 2c 6a be 61","No Asset Tag","'+02:00","2025-10-09T11:38:41.000+02:00","cybexpapp","Cloud Agent","8fb0d821-c304-4c9d-9bc4-1bea5285db80","2022-07-07T12:03:10.000+02:00","2026-04-22T11:49:27.000+02:00","x86_64","5","SCA,VM,PM,GAV","DEX,log4j,OS-LIN-SRV DYN,Obsolete,Trafic,Sans,Recette,VRF_INCONNUE,MIVISU,Cloud Agent,Linux Server","873.0" +"173079542","227655711","vdbocmedi1.sanef-rec.fr","","00:50:56:9c:2e:2f","10.45.6.37","fe80::250:56ff:fe9c:2e2f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d2 43 f7 d2 cf b3-01 ce 33 e0 9a 55 5d a6","No Asset Tag","'+02:00","2026-03-11T10:03:59.000+02:00","ibmsysuser","Cloud Agent","56d77215-91cc-4a3c-a9d7-1115975bdce9","2023-06-05T15:51:34.000+02:00","2026-04-22T10:12:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre,OS-LIN-SRV DYN","333.0" +"294384825","316468985","vptrabwaz1.sanef.groupe","","00:50:56:90:eb:a7","10.41.40.124","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 81 00 bc 47 3a d7-67 52 ba 14 24 0f 77 35","No Asset Tag","'+02:00","2026-01-21T15:15:10.000+02:00","cybintsys","Cloud Agent","4716d04a-9ddd-447e-b8d4-7fe20ca5c32f","2025-01-23T13:48:18.000+02:00","2026-04-22T11:49:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,BDD-ELA DYN,OS-LIN-SRV DYN","142.0" +"189179496","238409385","vvpeaarcv2.sanef-rec.fr","","00:50:56:9c:2e:91","10.45.6.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c b9 78 20 06 79 a2-ad 17 ca 6a 65 ff ff 78","No Asset Tag","'+02:00","2026-03-09T13:04:38.000+02:00","cybreconcile","Cloud Agent","8358e818-71b8-4b64-8f6d-38275e33642f","2023-09-21T13:59:29.000+02:00","2026-04-22T11:38:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN,Recette,flux_libre,Flux Libre","336.0" +"238296972","269274161","lpemvbpemv4.sanef.groupe","","00:17:a4:77:1c:94, 00:17:a4:77:1c:24, 00:17:a4:77:1c:20","169.254.17.11,172.16.0.118,192.168.103.118,192.168.101.118,192.168.101.148","fe80::217:a4ff:fe77:1c94,fe80::217:a4ff:fe77:1c24,fe80::217:a4ff:fe77:1c20","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","CZ255300JN","","'+02:00","2025-10-08T16:33:15.000+02:00","grid","Cloud Agent","bffc7a43-eac3-4dbb-8f25-1cd79473640b","2024-05-21T16:48:50.000+02:00","2026-04-22T10:12:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,EMV,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17,Production","684.0" +"407771009","364205182","splogbels4","","d4:f5:ef:39:84:5d","10.44.7.44","fe80::d6f5:efff:fe39:845d","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G10 Server","16","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","31493","HPE U30 08/06/2025","CZ2051091W","","'+02:00","2026-03-27T16:25:40.000+02:00","cybintsys","Cloud Agent","560222bd-b1c6-49c2-99a3-59a8d298040d","2026-03-11T18:30:30.000+02:00","2026-04-22T11:55:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Cloud Agent,OS-LIN-SRV DYN,Linux Server,Production,BDD-ELA DYN","152.0" +"360834094","345069350","vrrauafrt1.sanef-rec.fr","","00:50:56:9c:5c:ed, 00:50:56:9c:18:ff","10.45.9.235,10.45.5.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c c1 ae b8 80 17 13-bd 2a a6 c7 93 d4 cc 41","No Asset Tag","'+02:00","2026-04-21T15:17:32.000+02:00","cybadmsys","Cloud Agent","bfe3f61e-251b-4f25-b3ea-8df35e5bfaa0","2025-09-18T07:47:18.000+02:00","2026-04-22T11:45:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","47.0" +"314663097","326546973","vpdsiakib1.sanef.groupe","","00:50:56:94:87:c4","10.44.5.165","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 41 44 1c 7d d8 ce-ca 45 1e 1f 74 cc 25 3f","No Asset Tag","'+02:00","2026-02-10T10:24:43.000+02:00","cybreconcile","Cloud Agent","fc28a327-5742-4f5b-a645-7c184930d7a0","2025-04-08T17:03:59.000+02:00","2026-04-22T11:51:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server","140.0" +"354639273","342479604","vpdsiasaf1.sanef.groupe","","00:50:56:90:31:5a, b2:2c:a3:11:f1:e1, b6:c5:71:61:e3:86","192.168.19.8,10.88.0.1","fe80::b02c:a3ff:fe11:f1e1,fe80::b4c5:71ff:fe61:e386","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3654","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 18 f1 f2 d9 9f 21-1d 7b b0 2f ea 0a 2b 23","No Asset Tag","'+02:00","2026-03-24T11:14:21.000+02:00","cybsupsys","Cloud Agent","05c67cdb-9eb6-4732-b336-1b3a5a338677","2025-08-26T15:03:25.000+02:00","2026-04-22T11:14:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","144.0" +"169599230","225349571","vrpeaabst1","","ba:f3:68:f1:12:88, 00:50:56:9c:19:a2","10.88.0.1,192.168.31.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8c ba 46 dd f6 5c-87 b2 62 4e 52 99 23 2d","No Asset Tag","'+02:00","2026-02-18T10:30:01.000+02:00","cybastapp","Cloud Agent","e860f3f8-0fb1-47d1-a9bf-03ee4de3146c","2023-05-09T15:02:28.000+02:00","2026-04-22T10:11:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,DMZ,BOOST,Cloud Agent,Linux Server,DSI,Péage,OS-LIN-SRV DYN","327.0" +"159252140","211849458","vpsasawrk1.sanef.groupe","","00:50:56:82:97:37","10.41.32.10","fe80::250:56ff:fe82:9737","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 5a 6d 3c 43 b4 c2-31 62 2c 0b 7c 39 7a 2d","No Asset Tag","'+02:00","2026-03-25T16:03:56.000+02:00","cybreconcile","Cloud Agent","54c2b156-2f0e-4b01-8fbb-36327c43c9b1","2023-02-14T17:09:43.000+02:00","2026-04-22T10:11:04.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,VRF_BURO_DC,OS-LIN-SRV DYN,BDD-POS DYN,SAS,Cloud Agent,Linux Server","93.0" +"281406923","305953568","vtpataels1.sanef-rec.fr","","00:50:56:9c:b6:b3","10.45.9.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c7 9a 4d 53 0c 32-65 e0 44 6f f3 07 80 1d","No Asset Tag","'+02:00","2026-04-14T16:00:43.000+02:00","cybsecope","Cloud Agent","fe05b703-706a-4324-ae6c-0952a9bc8caa","2024-11-22T11:14:25.000+02:00","2026-04-22T10:10:30.000+02:00","x86_64","2","VM,PM,GAV","Recette,Patrimoine,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","65.0" +"175416002","229251780","vvbocs4as2.sanef-rec.fr","","00:50:56:9c:0b:6b","10.45.6.10","fe80::250:56ff:fe9c:b6b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 12 88 ad 5a c9 fd-2b 42 24 7c e1 69 48 a2","No Asset Tag","'+02:00","2026-03-09T11:36:12.000+02:00","cybsupsys","Cloud Agent","962f14d5-aa5d-453f-9736-a87f28712b1f","2023-06-22T11:15:17.000+02:00","2026-04-22T10:10:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Recette,Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN","142.0" +"130588308","192835991","vmamrhtp2","","00:50:56:82:6A:A5, 00:50:56:82:47:9D, 00:50:56:82:4A:25","10.33.16.51,10.30.16.51,10.30.16.54,10.30.16.55,10.30.16.56,10.32.16.51,10.32.16.54,10.32.16.55,10.32.16.56","fe80::250:56ff:fe82:6aa5,fe80::250:56ff:fe82:479d,fe80::250:56ff:fe82:4a25","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 4b 5e e6 a2 bd cc-12 db 6d 7c 85 60 a4 9d","No Asset Tag","'+02:00","2025-10-09T11:55:07.000+02:00","cybexpapp","Cloud Agent","577d5ed6-0449-42c4-b1d6-54d920fc49a4","2022-07-07T12:00:59.000+02:00","2026-04-22T11:31:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Cloud Agent,Linux Server,DEX,VRF_INCONNUE,Obsolete,Amelie","349.0" +"131403992","193422091","lamaprac2.sanef.groupe","","00:17:A4:77:10:30, 00:17:A4:77:10:2C, 00:17:A4:77:10:24, 00:17:A4:77:10:28","10.43.40.52,192.168.17.121,10.41.40.52,10.41.40.53,10.43.4.132,169.254.214.18","fe80::217:a4ff:fe77:1030,fe80::217:a4ff:fe77:102c,fe80::217:a4ff:fe77:1024,fe80::217:a4ff:fe77:1028","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DH","","'+02:00","2025-10-06T11:06:39.000+02:00","cybadmbdd","Cloud Agent","ce87a0f9-a504-4146-9a16-6a37638d429f","2022-07-13T10:10:23.000+02:00","2026-04-22T10:09:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,OS-LIN-SRV DYN,log4j,VRF_TRAFIC_DC,Sans,Trafic,Production","351.0" +"216883440","252316001","vpaflgsys1.sanef.groupe","","00:50:56:9c:b2:c4","10.46.34.8","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 49 a9 85 65 58 62-44 16 76 34 12 cc c7 e7","No Asset Tag","'+02:00","2026-04-01T10:04:25.000+02:00","cybsupapp","Cloud Agent","53dcd2a6-a9b8-4b6a-bd86-653e7a553ef0","2024-02-19T12:34:56.000+02:00","2026-04-22T11:33:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,flux_libre,Cloud Agent,Linux Server,Flux Libre","143.0" +"242127639","276920601","vpvsaaiad2","","00:50:56:9a:20:fb","10.44.0.105","fe80::250:56ff:fe9a:20fb","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a ff 99 15 58 8c 88-35 5e 93 3a 9d 82 57 2d","No Asset Tag","'-04:00","2026-02-04T18:09:39.000+02:00","tbaad-ext","Cloud Agent","7f232d97-39f9-4718-a716-f12f7b69e0aa","2024-06-06T15:32:26.000+02:00","2026-04-22T10:56:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"131405505","193423067","rmila150.sanef.groupe","","A0:D3:C1:FB:60:28","10.30.11.42","fe80::a2d3:c1ff:fefb:6028","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant DL360p G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","64386","HP P71 05/21/2018","CZJ429008S","","'+02:00","2025-10-22T09:42:22.000+02:00","cybexpapp","Cloud Agent","16d71e28-4c81-4b1f-be5d-590341dfacf0","2022-07-13T10:22:07.000+02:00","2026-04-22T10:31:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,Production,Sans,VRF_INCONNUE,Obsolete,OS-LIN-SRV DYN,log4j,DEX,Central péage,ServersInCyberark,Cloud Agent,Linux Server","346.0" +"366892020","347534122","vrpatbsip1.sanef.groupe","","00:50:56:9c:59:c3","10.43.255.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6d 29 5c a0 81 a1-77 aa 6c 2e dd 19 c7 8f","No Asset Tag","'+02:00","2026-04-07T14:24:42.000+02:00","cybsupapp","Cloud Agent","3c25e3ab-a99d-4d69-8049-c2f141f32163","2025-10-09T12:26:18.000+02:00","2026-04-22T10:52:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","60.0" +"282888814","313088162","vrdsiagit1.sanef-rec.fr","","00:50:56:9c:44:d5","10.45.7.229","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 01 ac 23 c6 f6 6a-52 07 e7 92 59 43 f0 9d","No Asset Tag","'+02:00","2025-12-10T17:07:56.000+02:00","root","Cloud Agent","29eef19b-47bf-4321-b9d0-5f5954622254","2024-11-28T11:04:17.000+02:00","2026-04-22T11:42:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Recette,GitLab,Linux Server,Cloud Agent","141.0" +"208624727","248644832","vibotrssm2.sanef.groupe","","00:50:56:90:69:c2","10.41.23.153","fe80::250:56ff:fe90:69c2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 21 65 d0 bb f0 bc-fa 79 45 bc 6f 83 c7 fa","No Asset Tag","'+02:00","2026-03-18T16:38:50.000+02:00","cybreconcile","Cloud Agent","b6c6fa77-f6ed-44e3-a92d-9467175a1d35","2024-01-09T18:19:50.000+02:00","2026-04-22T10:08:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Production,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Cloud Agent,Linux Server,flux_libre","139.0" +"272326721","300954740","vvbotaapm2.sanef-rec.fr","","2a:6b:d6:c3:8a:75, 00:50:56:9c:73:de, 7a:3c:ba:2d:1a:de, 2e:4a:5a:df:b9:7d, 4a:80:9b:0e:a8:dd, ba:51:e4:e5:73:f8, 32:b0:53:b2:af:ef","10.45.6.157,10.89.0.1","fe80::286b:d6ff:fec3:8a75,fe80::250:56ff:fe9c:73de,fe80::783c:baff:fe2d:1ade,fe80::2c4a:5aff:fedf:b97d,fe80::4880:9bff:fe0e:a8dd,fe80::b851:e4ff:fee5:73f8,fe80::30b0:53ff:feb2:afef","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 22 b4 ed d0 bb 55-bd c6 34 0a 12 17 3a 11","No Asset Tag","'+02:00","2026-03-10T10:48:23.000+02:00","kapschsysuser","Cloud Agent","2e9b3aa9-4441-49d9-a57b-d87526c3176f","2024-10-15T12:09:05.000+02:00","2026-04-22T11:46:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","142.0" +"210040166","249438986","siboomcla1.sanef.groupe","","5c:ba:2c:61:34:d0","10.41.22.204","fe80::87:a7ad:d2b7:8033","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95780","HPE U30 07/20/2023","CZ22410FK8","","'+02:00","2026-03-16T12:58:26.000+02:00","cybsupemo","Cloud Agent","c8cf4951-9272-4efe-9a0a-53b3b1d1ed4d","2024-01-17T12:56:03.000+02:00","2026-04-22T10:08:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN","337.0" +"392818522","358345782","vrdsialab1.sanef-rec.fr","","00:50:56:9c:c1:6d, f6:b2:59:e4:24:8c","10.45.16.35,172.28.0.1","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 03 94 48 e5 29 52-01 30 01 ad a1 7d a9 ae","No Asset Tag","'+02:00","2026-03-12T12:45:36.000+02:00","egret","Cloud Agent","47369580-1000-4a85-9a51-601646181033","2026-01-16T16:53:03.000+02:00","2026-04-22T11:01:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,Recette","144.0" +"295110908","316903631","vpngwasic1","","00:50:56:8f:2a:08","10.44.200.100","fe80::250:56ff:fe8f:2a08","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 8c 8c 10 61 a3 3e-2c 38 cd e7 ed a9 d2 17","No Asset Tag","'+02:00","2026-02-02T17:06:04.000+02:00","root","Cloud Agent","be9b172d-c0d6-47a0-bea9-380445f251fc","2025-01-27T16:06:15.000+02:00","2026-04-22T11:24:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,TAG-SIA,TAG-SIC","53.0" +"196660167","242432943","vpbooaori2.sanef.groupe","","00:50:56:90:d4:76","10.41.22.140","fe80::250:56ff:fe90:d476","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7e 22 57 82 fd 6c-88 dc d8 6c 06 55 0b f5","No Asset Tag","'+02:00","2026-04-07T15:15:07.000+02:00","cybreconcile","Cloud Agent","a4da858e-2083-4d84-a008-757940e37101","2023-10-31T18:27:14.000+02:00","2026-04-22T10:06:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Flux Libre,flux_libre,Cloud Agent,Linux Server,FreeFlow","335.0" +"131270365","193318815","vpaiiarda1.sanef.groupe","","00:50:56:82:51:9f","10.30.10.75","fe80::250:56ff:fe82:519f","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7982","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 fe 90 65 4f 1d 60-a9 51 72 cc dc 3b ac 2e","No Asset Tag","'+02:00","2024-09-10T09:40:14.000+02:00","cybreconcile","Cloud Agent","e4ad2df0-22c5-4f84-b526-6ac743d97f59","2022-07-12T15:25:26.000+02:00","2026-04-22T10:06:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,Cloud Agent,Linux Server,Production,Obsolete,VRF_INCONNUE,Rebond","53.0" +"218315519","252974484","viboobquo1.sanef.groupe","","00:50:56:90:97:24","10.100.16.11","fe80::250:56ff:fe90:9724","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 d4 4f 35 f5 f9 fe-7a 3e 58 29 08 a1 76 e6","No Asset Tag","'+02:00","2026-03-16T11:16:12.000+02:00","cybreconcile","Cloud Agent","2359e7a8-4ea6-44bd-b7ce-16fc12a4d629","2024-02-26T15:32:46.000+02:00","2026-04-22T11:46:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre","141.0" +"339877892","336780154","vppwdahap2.sanef.groupe","","00:50:56:94:f7:20","10.44.1.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3665","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 51 10 8c b1 aa 1e-7d 56 dd 98 cc d3 28 5d","No Asset Tag","'+02:00","2026-01-07T11:28:26.000+02:00","cybreconcile","Cloud Agent","c7543c65-896a-409a-8810-a647189f369d","2025-07-07T17:43:19.000+02:00","2026-04-22T11:56:22.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,BDD","331.0" +"399074773","360968875","vtdsibpgs2.sanef-rec.fr","","00:50:56:9c:6f:a2","10.45.1.173","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d4 af 7e cb cc 73-0b c7 2c ff ba f7 84 f8","No Asset Tag","'+02:00","2026-03-11T11:25:24.000+02:00","root","Cloud Agent","8ca1a11f-9165-460c-b7db-2593c97ade73","2026-02-10T12:46:31.000+02:00","2026-04-22T11:01:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","PATRIMOINE,Linux Server,OS-LIN-SRV DYN,Cloud Agent,BDD-POS DYN,Recette","144.0" +"175564471","229349435","vvbotatvv2.sanef-rec.fr","","be:7a:55:25:e7:92, 6e:43:48:cb:e2:1a, 00:50:56:9c:cd:e1","10.89.0.1,10.45.6.167","fe80::bc7a:55ff:fe25:e792,fe80::6c43:48ff:fecb:e21a,fe80::250:56ff:fe9c:cde1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 88 d4 32 31 8a 91-29 87 2a 7e 46 60 c6 16","No Asset Tag","'+02:00","2026-03-10T12:17:09.000+02:00","cybreconcile","Cloud Agent","d46e8ae6-c69f-4fd7-b681-2e8c53bafb0a","2023-06-23T12:02:56.000+02:00","2026-04-22T11:45:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,FreeFlow,Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,flux_libre","141.0" +"279153754","304713612","vrdecasas3.sanef.groupe","","00:50:56:82:9e:6b","10.45.1.6","fe80::250:56ff:fe82:9e6b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d4 c2 ec 31 d8 d7-55 0e 43 0b 2b cf 47 06","No Asset Tag","'+02:00","2026-03-23T11:57:06.000+02:00","cybsupsys","Cloud Agent","493fd2a6-8277-49c0-83bf-acb2d49090da","2024-11-14T15:54:04.000+02:00","2026-04-22T10:04:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,BDD-POS DYN,OS-LIN-SRV DYN","139.0" +"395543997","359520554","vrsigaptl1.sanef-rec.fr","","00:50:56:9c:fd:ee","10.45.2.33","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 3d 88 ae a6 e0 f3-92 9e cb 94 f4 dc fd 09","No Asset Tag","'+02:00","2026-02-25T13:43:10.000+02:00","cybsupapp","Cloud Agent","aae97ad2-7cfe-461a-a34d-3d5053bc39e6","2026-01-28T11:49:58.000+02:00","2026-04-22T11:49:10.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,Recette,SIG,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-APACHE-TOMCAT DYN","217.0" +"143793491","201145998","vrintbweb2.sanef.groupe","","00:50:56:82:83:8f","10.45.1.196","fe80::250:56ff:fe82:838f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 f4 51 81 c1 24 1b-be b4 cd d4 fb b0 4a fa","No Asset Tag","'+02:00","2026-02-23T13:33:18.000+02:00","cybadmsys","Cloud Agent","cd070384-a015-4313-8a18-5e498034d13c","2022-10-12T18:26:56.000+02:00","2026-04-22T11:41:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,BDD-POS DYN,OS-LIN-SRV DYN,VRF_INCONNUE,Cloud Agent,Linux Server","334.0" +"377809988","352213955","vpdsiangx2.sanef.groupe","","00:50:56:90:09:4a","192.168.19.161","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 1e 47 82 d6 0c 90-43 35 b8 c5 d5 49 9e e0","No Asset Tag","'+02:00","2026-04-13T14:28:28.000+02:00","cybreconcile","Cloud Agent","f1f66d97-cb1c-45c1-bce7-3174862cb0ab","2025-11-19T18:59:11.000+02:00","2026-04-22T10:02:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production","329.0" +"208777986","248746837","vibotapps2.sanef.groupe","","00:50:56:90:1d:96","10.41.23.137","fe80::250:56ff:fe90:1d96","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48013","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 94 04 c8 9e 5c 19-48 57 ca 74 4f e4 a8 ac","No Asset Tag","'+02:00","2026-03-17T11:29:49.000+02:00","cybreconcile","Cloud Agent","cc4bb2b8-2c99-41b0-813e-3f01a5645dd0","2024-01-10T12:58:35.000+02:00","2026-04-22T11:48:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,FreeFlow,Cloud Agent,Linux Server","141.0" +"357896652","343916086","vprpsangx1.sanef.groupe","","00:50:56:90:06:8c","10.41.20.25","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 fe 7a 14 54 29 cb-a3 e6 3a ee b0 34 f9 9c","No Asset Tag","'+02:00","2026-02-25T15:35:39.000+02:00","cybreconcile","Cloud Agent","2031410a-7022-4386-a664-ea11cab03d86","2025-09-08T16:15:13.000+02:00","2026-04-22T10:01:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,Péage,Production","140.0" +"324698955","330493463","vpgawamft1.sanef.groupe","","00:50:56:90:b3:a6","10.42.16.15,10.42.16.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1b e7 6e 16 15 0f-90 06 de 1b c5 d5 0c 74","No Asset Tag","'+02:00","2026-03-19T15:43:25.000+02:00","cybexpapp","Cloud Agent","7a6f02f3-0895-4742-848b-1602f842ebb0","2025-05-14T14:11:29.000+02:00","2026-04-22T10:58:47.000+02:00","x86_64","2","SCA,VM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","146.0" +"196660522","242432946","vpboomocr1.sanef.groupe","","00:50:56:90:3d:93","10.41.22.138","fe80::250:56ff:fe90:3d93","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3664","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 25 2e 6b e5 7a 60-79 50 1b 9d 3e f5 42 16","No Asset Tag","'+02:00","2026-04-07T16:01:15.000+02:00","cybadmroot","Cloud Agent","e6a968e9-e277-454a-a0d0-626b7279ee29","2023-10-31T18:27:14.000+02:00","2026-04-22T11:54:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,ServersInCyberark,flux_libre,OS-LIN-SRV DYN,Production,Flux Libre,Cloud Agent,Linux Server","336.0" +"340063685","336780158","lpamebrac2.sanef.groupe","","3e:33:fb:a0:00:f1, 3e:33:fb:a0:00:ed","10.43.4.139,10.41.41.111,10.41.41.115","fe80::3c33:fbff:fea0:f1,fe80::3c33:fbff:fea0:ed","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63822","HPE I44 06/13/2025","VCGBW52014","/n/Bios Asset Tag :","'+02:00","2025-11-20T11:16:01.000+02:00","cybreconcile","Cloud Agent","cde7c92e-3baa-4fcd-8dd5-d076d06fed26","2025-07-08T10:21:20.000+02:00","2026-04-22T11:45:54.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,OS-LIN-SRV DYN,Amelie,Production,Cloud Agent","335.0" +"230624144","258742189","vpsupapol3.sanef.groupe","","00:50:56:8d:0f:61","10.44.5.105","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","1778","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 01 97 6d b8 39 77-d1 38 9d 2f e4 52 82 94","No Asset Tag","'+02:00","2026-03-30T11:03:58.000+02:00","cybreconcile","Cloud Agent","0e5dcde3-eb25-459e-b3d3-9b65a36b1545","2024-04-17T18:08:36.000+02:00","2026-04-22T11:27:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","66.0" +"158198255","210926887","vpdsiaumds1","","00:50:56:82:84:3a","192.168.18.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7696","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 64 33 40 32 68 07-fe d2 af c0 d9 78 99 20","No Asset Tag","'+02:00","2026-01-29T11:54:35.000+02:00","cybreconcile","Cloud Agent","1c49e4cf-d9a6-4534-9b4a-82b7aaf7ac1b","2023-02-06T13:40:20.000+02:00","2026-04-22T11:29:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,DSI,VCENTER,OS-LIN-SRV DYN","140.0" +"331039777","333860583","vrameahtp1.sanef-rec.fr","","00:50:56:9c:58:38, 00:50:56:9c:91:5c","10.45.4.50,10.45.2.50,10.45.2.52,10.45.2.55,10.45.2.54,10.45.2.53","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d0 3b 2f e9 cd 48-3c 44 a6 6f 73 62 4d 10","No Asset Tag","'+02:00","2026-04-02T16:26:08.000+02:00","cybintsys","Cloud Agent","5a65a923-f1a4-4bf8-a3b6-2f0a5b3748a5","2025-06-05T08:32:31.000+02:00","2026-04-22T11:55:24.000+02:00","x86_64","4","SCA,VM,GAV","Sextan,Recette,OS-LIN-SRV DYN,MID-NGINX DYN,DEX,Linux Server,Cloud Agent","284.0" +"112576691","180430333","vpssiapki1.sanef.groupe","","52:54:00:4c:07:2e, 00:50:56:82:de:2e","192.168.122.1,10.30.10.157","fe80::7829:ca19:ffd9:5c41","Linux / Server","The CentOS Project CentOS Stream 8","","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7954","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 73 4f c5 4d dd f3-5a 0e 55 80 de 8d 4d 76","No Asset Tag","'+02:00","2025-02-18T11:12:27.000+02:00","root","Cloud Agent","41bf3f3e-26ff-4f0e-a179-38fd3d0af892","2022-02-07T12:17:45.000+02:00","2026-04-22T11:31:01.000+02:00","x86_64","2","SCA,VM,GAV","DSI,Linux Server,Outils prod (Monitoring, NMS, gestion de parc),Production,Gestion_PKI,Obsolete,Cloud Agent","41.0" +"114204409","181635177","lamaprac4.sanef.groupe","","00:17:A4:77:10:3A, 00:17:A4:77:10:42, 00:17:A4:77:10:36, 00:17:A4:77:10:3E","10.43.4.136,169.254.242.4,10.43.40.56,10.41.40.56,10.41.40.57,192.168.17.123","fe80::217:a4ff:fe77:103a,fe80::217:a4ff:fe77:1042,fe80::217:a4ff:fe77:1036,fe80::217:a4ff:fe77:103e","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DG","","'+02:00","2025-10-08T15:12:32.000+02:00","cybastapp","Cloud Agent","cc6d440d-dc99-48e3-afcc-84d6e1697c1c","2022-02-21T14:47:16.000+02:00","2026-04-22T11:48:15.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Obsolete,Haute,Trafic,Sans,Production,Cloud Agent,DEX,OS-LIN-SRV DYN,Sextan,Linux Server,VRF_TRAFIC_DC","879.0" +"137331581","197582940","vpairatom1.sanef.groupe","","00:50:56:82:54:15","10.42.40.135","fe80::250:56ff:fe82:5415","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d c6 e7 7d d5 52 2d-df 8a 92 09 b5 75 f3 13","No Asset Tag","'+02:00","2026-01-20T17:08:53.000+02:00","cybreconcile","Cloud Agent","8079b5ee-91f7-4d2d-ad3f-3ffbacb536ee","2022-08-30T15:45:52.000+02:00","2026-04-22T11:44:05.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_AIRES_DC,Production,VISIONAIRE,DSG,OS-LIN-SRV DYN","210.0" +"238501906","269490999","vibotapps1.sanef.groupe","","00:50:56:90:0b:f3","10.41.23.136","fe80::250:56ff:fe90:bf3","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f4 3f cf 82 a3 92-bb 86 76 de a1 6b bd e7","No Asset Tag","'+02:00","2026-03-17T11:13:35.000+02:00","cybadmroot","Cloud Agent","8a264ccc-f947-4bd7-a824-0b94f380bd44","2024-05-22T12:19:05.000+02:00","2026-04-22T11:46:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","140.0" +"131275232","193320762","vpaiiapol4","","00:50:56:82:66:07","10.30.12.128","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 f8 a6 89 02 81 7e-81 e6 9e f3 aa e1 26 31","No Asset Tag","'+02:00","2024-06-04T14:25:32.000+02:00","cybadmsys","Cloud Agent","54648c63-aabb-4fb8-a46f-812b36bc707a","2022-07-12T15:46:44.000+02:00","2026-04-22T11:39:40.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,Outils prod (Monitoring, NMS, gestion de parc),Sans,Production,Centreon,Cloud Agent,Linux Server,Obsolete,VRF_INCONNUE","82.0" +"241539604","276514044","vpvsaaafz1.sanef.groupe","","00:50:56:90:46:9a","192.168.18.78","fe80::250:56ff:fe90:469a","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 c6 5b 4b 7b fa 21-eb 83 ac 6a ce fc 8a 09","No Asset Tag","'+02:00","2026-02-04T12:19:48.000+02:00","tbaad","Cloud Agent","96356976-305b-4ed0-939b-7dd7c5bb0fc5","2024-06-04T12:22:32.000+02:00","2026-04-22T11:47:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"366152124","347225549","vpsicapol1.sanef.groupe","","00:50:56:8f:b1:82","10.44.200.132","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 0f fd b6 35 ab 48 ae-a8 6d c7 9e 39 2a 84 34","No Asset Tag","'+02:00","2026-03-18T14:15:58.000+02:00","cybreconcile","Cloud Agent","d79638ce-e667-4ec9-bfff-2a76a06d6dc1","2025-10-07T17:43:35.000+02:00","2026-04-22T10:52:37.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Centreon,TAG-SIA,Linux Server,Cloud Agent","285.0" +"228697918","257670138","vvbocasec1","","00:50:56:9c:27:8f","10.45.6.14","fe80::250:56ff:fe9c:278f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 49 1f 8e c9 09 9c-0e c4 3e 15 c0 98 a2 4d","No Asset Tag","'+02:00","2026-03-11T15:52:36.000+02:00","cybsecope","Cloud Agent","930af021-95b8-4dde-8621-f7b4b89e54b8","2024-04-09T14:13:08.000+02:00","2026-04-22T11:41:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN","141.0" +"130586766","192835849","lamarrac2.sanef.groupe","","00:17:A4:77:0C:7C, 00:17:A4:77:0C:74, 00:17:A4:77:0C:70, 00:17:A4:77:0C:78","10.45.3.101,10.45.5.3,169.254.120.200,10.45.2.102,10.45.2.103,10.45.5.19","fe80::217:a4ff:fe77:c7c,fe80::217:a4ff:fe77:c74,fe80::217:a4ff:fe77:c70,fe80::217:a4ff:fe77:c78","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ32903SJ","","'+02:00","2026-02-25T16:10:32.000+02:00","root","Cloud Agent","7e2d8833-dcbb-465a-971d-e9bab8ca47a1","2022-07-07T11:56:14.000+02:00","2026-04-22T09:56:31.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,Obsolete,Sans,Trafic,Recette,Sextan,Cloud Agent,Linux Server,DEX,OS-LIN-SRV DYN,VRF_INCONNUE","693.0" +"131407949","193425885","vpaiiapol9","","00:50:56:82:05:74","10.30.12.129","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 d4 e1 7c 78 61 16-bf 7c e7 39 5a 03 30 a6","No Asset Tag","'+02:00","2024-06-06T11:44:26.000+02:00","cybreconcile","Cloud Agent","7ab828f1-6a6d-463d-bb63-22f925fff320","2022-07-13T10:49:27.000+02:00","2026-04-22T11:45:06.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,DSI,MID-APACHE-TOMCAT DYN,BDD-ELA DYN,BDD-POS DYN,BDD-SQL DYN,MID-NGINX DYN,Centreon,VRF_INCONNUE,Outils prod (Monitoring, NMS, gestion de parc),Sans,Production","462.0" +"241562936","276524405","vpvsaagez1","","00:50:56:9c:32:9d","192.168.18.75","fe80::250:56ff:fe9c:329d","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 3c 0e 6b c2 82 a7-9b 3f 38 e5 9e 1f 61 89","No Asset Tag","'+02:00","2026-02-04T16:17:24.000+02:00","tbaad","Cloud Agent","f7737ced-5ff5-472b-b284-24939729a6b2","2024-06-04T13:59:35.000+02:00","2026-04-22T11:28:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"241531310","276507273","vpvsaaafl2.sanef.groupe","","00:50:56:90:27:24","10.42.16.86","fe80::250:56ff:fe90:2724","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 7a c2 fd 69 79 c2-be f1 88 47 2e 46 1d 7d","No Asset Tag","'+02:00","2026-02-04T11:52:09.000+02:00","tbaad-ext","Cloud Agent","1c018fe9-244b-414e-90a5-b24fce8caa78","2024-06-04T11:39:07.000+02:00","2026-04-22T10:59:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"411849639","365824822","vpgrsangx1.sanef.groupe","","00:50:56:90:0f:2e","10.41.20.85","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 09 74 7b 39 d0 d4-96 e9 14 4a 79 ca 3b 7e","No Asset Tag","'+02:00","2026-04-07T15:49:03.000+02:00","cybreconcile","Cloud Agent","26288a73-39be-4247-a117-243ff9321bc3","2026-03-27T12:21:28.000+02:00","2026-04-22T11:50:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-NGINX DYN,BDD-POS DYN","65.0" +"209161378","248966234","vibotreco1.sanef.groupe","","00:50:56:90:9b:e5","10.41.23.139","fe80::250:56ff:fe90:9be5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 ec cd c6 d3 40 12-1e cf b4 3d 27 b3 9d d6","No Asset Tag","'+02:00","2026-03-18T15:10:27.000+02:00","cybreconcile","Cloud Agent","bf13b879-30b9-4164-bd94-22c98344237e","2024-01-12T11:59:05.000+02:00","2026-04-22T09:56:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre","140.0" +"314655310","326546335","vpdsibels2.sanef.groupe","","00:50:56:94:96:34","10.44.5.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","31888","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 60 40 b3 ee 11 5c-9c b0 f2 d9 86 56 4b fb","No Asset Tag","'+02:00","2026-02-10T11:05:28.000+02:00","cybadmbdd","Cloud Agent","f427b4d3-0ec6-4dc6-8995-9c381ee2a225","2025-04-08T16:55:59.000+02:00","2026-04-22T11:14:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production,BDD","140.0" +"313690077","326069856","vpdsibpmm1.sanef.groupe","","00:50:56:94:00:f8","10.44.5.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","15761","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 7f b4 d5 3b 1c 62-e2 1c 90 22 30 75 98 36","No Asset Tag","'+02:00","2026-02-10T11:05:12.000+02:00","cybreconcile","Cloud Agent","5b8204f5-bd25-4913-ae45-f144b7e8f7fe","2025-04-04T10:33:58.000+02:00","2026-04-22T11:52:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,BDD","139.0" +"130588736","192836894","vmamrsxt2","","00:50:56:82:38:AC, 00:50:56:82:10:63, 00:50:56:82:35:7E","10.30.16.61,10.32.16.61,10.33.16.61","fe80::250:56ff:fe82:38ac,fe80::250:56ff:fe82:1063,fe80::250:56ff:fe82:357e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8d bf ac 8d f7 1f-af c6 c5 0a 46 ec 9b a7","No Asset Tag","'+02:00","2025-10-09T11:39:35.000+02:00","cybexpapp","Cloud Agent","fedd9208-8c4b-45e2-bec4-4424ba542a92","2022-07-07T12:05:18.000+02:00","2026-04-22T11:50:14.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Cloud Agent,Linux Server,log4j,VRF_INCONNUE,OS-LIN-SRV DYN,DEX,Obsolete,Sextan","699.0" +"332364676","333860645","vpameakfk2.sanef.groupe","","00:50:56:90:62:fb","10.41.41.41","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 64 2f ce 71 ca b3-79 bb ce 4b f5 6f 33 2e","No Asset Tag","'+02:00","2025-10-29T11:31:29.000+02:00","cybadmbdd","Cloud Agent","5451e375-b869-4489-86d7-b19519650c27","2025-06-10T16:31:40.000+02:00","2026-04-22T10:55:46.000+02:00","x86_64","4","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","278.0" +"356281593","343240103","vpdsiadep1.sanef.groupe","","00:50:56:94:aa:b4","10.44.6.5","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","9684","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 8f 6e c6 cc c9 bb-c2 9f 14 db 5f fa 0c 8e","No Asset Tag","'+02:00","2026-02-10T12:07:18.000+02:00","cybadmroot","Cloud Agent","459ae527-bb2c-4372-8da8-8020e6694172","2025-09-02T10:54:05.000+02:00","2026-04-22T11:27:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,NextCloud,Production,Linux Server,Cloud Agent","332.0" +"184274823","235418455","vpsimaapi1","","00:50:56:82:09:8a","10.41.20.30","fe80::583f:dea5:8ddc:2bec","Linux / Server","The CentOS Project CentOS 7.4 (1708)","7.4","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7984","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 88 e4 f4 8d 79 b0-18 b6 c7 6b ad 9a b1 4f","No Asset Tag","'+02:00","2025-02-24T16:01:53.000+02:00","cybreconcile","Cloud Agent","9e4e4ac7-3f61-4a3e-bf90-933107c8f924","2023-08-24T12:18:59.000+02:00","2026-04-22T11:47:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,BDD-POS DYN,FreeFlow,log4j,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,Obsolete","343.0" +"139157311","198270449","vmamprdt2","","00:50:56:82:4d:83, 00:50:56:82:73:0e, 00:50:56:82:1e:cc","10.41.40.71,10.41.40.74,10.41.40.75,10.43.40.71,10.43.40.74,10.43.40.75,10.43.4.71","fe80::250:56ff:fe82:4d83,fe80::250:56ff:fe82:730e,fe80::250:56ff:fe82:1ecc","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3a 36 7c ea da 33-d1 92 df 39 0a 2d 2f 32","No Asset Tag","'+02:00","2024-02-14T14:45:03.000+02:00","cybreconcile","Cloud Agent","2390c953-cec7-401c-9d98-461499419684","2022-09-07T14:31:30.000+02:00","2026-04-22T09:53:24.000+02:00","x86_64","5","SCA,VM,PM,GAV","Obsolete,VRF_TRAFIC_DC,Trafic,log4j,DEX,Cloud Agent,Linux Server,Production,MIVISU,OS-LIN-SRV DYN","873.0" +"382992167","354208654","vrpeabrac2.sanef-rec.fr","","52:54:00:54:39:20, 9a:53:a6:01:38:c3, 52:54:00:bf:eb:9c","192.168.17.5,192.168.16.24,10.45.15.37","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","64413","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-07T15:41:12.000+02:00","oracle","Cloud Agent","9821a6e3-ac73-475b-b388-35462434174b","2025-12-10T12:11:02.000+02:00","2026-04-22T09:52:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN","339.0" +"416487289","367845342","vrzbxaapp1.sanef-rec.fr","","00:50:56:9c:25:44","10.45.15.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 64 2f 45 34 33 f8-91 16 9d bd 35 38 8b cb","No Asset Tag","'+02:00","2026-04-16T17:07:58.000+02:00","cybintsys","Cloud Agent","25db37e5-6c59-40dc-8a3d-c58d87cf3053","2026-04-16T17:08:17.000+02:00","2026-04-22T11:38:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","66.0" +"382990199","354209251","vrpeabrac1.sanef-rec.fr","","52:54:00:0c:48:7e, 52:54:00:d5:33:4b, 1a:08:40:51:70:fb","10.45.15.36,192.168.17.5,192.168.16.24","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","64413","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:43:49.000+02:00","oracle","Cloud Agent","8ea1a893-c52b-45dd-aca0-8e8e3a787bfc","2025-12-10T12:11:44.000+02:00","2026-04-22T11:43:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0" +"137339569","197584629","vptraagas1","","00:50:56:82:05:5d","10.41.40.150","fe80::250:56ff:fe82:55d","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 66 78 f5 41 da e3-68 15 1c ce 99 bf 0c c9","No Asset Tag","'+02:00","2025-01-16T11:16:46.000+02:00","cybadmsys","Cloud Agent","76d7296f-4d35-4c0b-b317-0602fb796e2a","2022-08-30T16:11:51.000+02:00","2026-04-22T09:51:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Exploitation,Production,DEX,OS-LIN-SRV DYN,Obsolete,VRF_TRAFIC_DC,Gaspar","517.0" +"359801548","344907765","vrcybapsp1.sanef-rec.fr","","00:50:56:9c:27:27","10.45.11.103","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3654","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9c d3 87 0e c5 1c-1f 79 4e 63 20 02 3d 82","No Asset Tag","'+02:00","2026-04-16T11:21:29.000+02:00","cybreconcile","Cloud Agent","67758aed-02ba-4179-ab10-9b51b3787577","2025-09-15T15:54:53.000+02:00","2026-04-22T11:52:20.000+02:00","x86_64","2","SCA,VM,GAV","Recette,Linux Server,Cloud Agent,CyberArk,OS-LIN-SRV DYN","66.0" +"143625427","201026716","vpemvaldap2.sanef.groupe","","00:50:56:82:51:0c","192.168.100.128","fe80::250:56ff:fe82:510c","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 09/21/2015","VMware-42 02 9c 59 10 65 fe cb-d8 4b 37 07 c2 47 70 33","No Asset Tag","'+02:00","2025-06-03T11:06:33.000+02:00","root","Cloud Agent","d3575692-9abd-4cfe-8bf1-b4ee8afa001a","2022-10-11T17:44:53.000+02:00","2026-04-22T09:51:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,DEX,BDD-POS DYN,PCI Bunker EMV - VLAN Supervision/Admin,VRF_INCONNUE,Cloud Agent,Linux Server,Obsolete","107.0" +"241859199","276775641","vpdsiawik1.sanef.groupe","","00:50:56:9c:a3:a4","192.168.31.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 9c f5 a8 72 94 b0-56 cb 50 f9 c6 65 94 22","No Asset Tag","'+02:00","2026-04-13T11:20:26.000+02:00","cybreconcile","Cloud Agent","f44f74c6-1b54-40d2-abb1-8238f56a3f8c","2024-06-05T16:19:37.000+02:00","2026-04-22T11:44:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DocuWiki,Production","67.0" +"303928250","322166975","vpdsismtp2.sanef.groupe","","00:50:56:9c:a0:a8","192.168.19.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 00 68 5b 39 44 33-bc 21 52 75 63 7b 5c 22","No Asset Tag","'+02:00","2026-04-08T11:53:27.000+02:00","cybsecope","Cloud Agent","3e6b3e9e-bc4f-47d7-a791-9aca43d21382","2025-02-27T18:09:58.000+02:00","2026-04-22T11:48:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,OS-LIN-SRV DYN,Linux Server,Cloud Agent,EXCHANGE,Production","132.0" +"200012633","244159298","vppeaabst2.sanef.groupe","","00:50:56:90:0c:39","10.41.20.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 77 fd f2 0c 9c 7d-53 62 bf db 8b fa a2 df","No Asset Tag","'+02:00","2026-04-16T14:46:56.000+02:00","cybreconcile","Cloud Agent","10a98a33-ca7c-49b4-b122-44d54db84dfb","2023-11-20T18:32:46.000+02:00","2026-04-22T09:50:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,flux_libre,Flux Libre,TAG-SRVEXPOSEINDIRECT,FreeFlow,Production","485.0" +"222529119","254800462","vppatakib1.sanef.groupe","","00:50:56:90:59:ba","10.42.40.15","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 6f fd 1c cd de 1f-ce 83 16 7d ad c6 7e 9f","No Asset Tag","'+02:00","2026-04-09T16:12:53.000+02:00","cybadmbdd","Cloud Agent","83451f3c-6805-458b-979e-1fb6ffcd2068","2024-03-15T12:10:59.000+02:00","2026-04-22T11:18:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","PATRIMOINE,DFIN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","57.0" +"183457732","234863518","vtdsibpgs1.sanef-rec.fr","","00:50:56:9c:77:7e","10.45.1.167","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c b6 7b 71 22 01 84-ec fe 04 26 bf 3b 4f 17","No Asset Tag","'+02:00","2026-01-06T15:54:48.000+02:00","cybsecope","Cloud Agent","ec852b1a-f855-46a4-88ae-903b37921bed","2023-08-18T17:11:51.000+02:00","2026-04-22T11:53:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,PATRIMOINE","141.0" +"236895900","266301960","vpvpnarad2","","02:42:9c:2f:9f:bb, b6:47:fe:27:d8:89, 00:50:56:90:40:f5","172.17.0.1,192.168.19.7","fe80::42:9cff:fe2f:9fbb,fe80::b447:feff:fe27:d889,fe80::250:56ff:fe90:40f5","Linux / Server","Red Hat Enterprise Linux 8.3","8.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 2a 03 6f bc c2 e7-10 f6 d6 6c 6e 29 9c e9","No Asset Tag","'+02:00","2026-02-24T12:31:12.000+02:00","cybsupsys","Cloud Agent","db63d141-d056-4287-9e53-31930fdb766e","2024-05-15T14:46:02.000+02:00","2026-04-22T11:36:13.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,GEMALTO,VPN,Radius,DSI","207.0" +"381698913","353634169","spbckamag7.sanef.groupe","","6c:29:d2:30:51:dc, 6c:29:d2:30:51:dd","10.42.16.101,10.43.1.9","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192295","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3G","Unknown","'+02:00","2025-12-04T17:01:36.000+02:00","root","Cloud Agent","de6ae98a-1867-41a0-98a2-043a932172c8","2025-12-04T16:39:03.000+02:00","2026-04-22T11:40:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"130586812","192835992","vmamrhtp1","","00:50:56:82:00:63, 00:50:56:82:1F:DC, 00:50:56:82:46:63","10.32.16.50,10.30.16.50,10.30.16.57,10.30.16.59,10.33.16.50","fe80::250:56ff:fe82:63,fe80::250:56ff:fe82:1fdc,fe80::250:56ff:fe82:4663","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d3 dc 26 d6 b0 47-13 65 44 3c 3c 1d b0 59","No Asset Tag","'+02:00","2025-10-09T11:37:38.000+02:00","cybexpapp","Cloud Agent","946a2d3a-0f88-464a-986b-a92a377b8afd","2022-07-07T12:00:23.000+02:00","2026-04-22T11:45:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,DEX,log4j,Amelie,Obsolete,Sans,Trafic,Recette,VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN","349.0" +"191660245","239874257","sibocbsap2.sanef.groupe","","88:e9:a4:75:25:08","10.41.22.76","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL560 G10 Server","144","2600","Intel(R) Xeon(R) Gold 6240L CPU @ 2.60GHz","4127749","HPE U34 07/20/2023","CZ22420F50","","'+02:00","2026-03-16T16:22:43.000+02:00","cybastapp","Cloud Agent","af2ca818-f1c9-4b0c-a5c2-33213852a9bb","2023-10-05T21:48:59.000+02:00","2026-04-22T09:49:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Production,Flux Libre","337.0" +"332353560","333860644","vpameakfk1.sanef.groupe","","00:50:56:90:04:1c","10.41.41.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 b3 9d 5a d9 91 de-49 0d d0 9b 5b 6b 02 07","No Asset Tag","'+02:00","2025-10-29T11:06:09.000+02:00","cybadmbdd","Cloud Agent","51544ed6-bde3-4faa-b97f-31bb7e0d44f9","2025-06-10T16:29:00.000+02:00","2026-04-22T10:08:16.000+02:00","x86_64","4","SCA,VM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Sextan,Production","278.0" +"130590027","192837854","vdameassl1.sanef.groupe","","00:50:56:82:f1:1a","10.43.255.45","fe80::f672:80e6:59b3:f788","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2b b7 30 78 5e 8a-ad a8 29 5f 73 57 24 cb","No Asset Tag","'+02:00","2026-04-20T15:24:04.000+02:00","cybexpapp","Cloud Agent","a5692cec-00b3-4117-a659-3b436eaa851d","2022-07-07T12:12:12.000+02:00","2026-04-22T09:38:36.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,VRF_INCONNUE,DEX,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","268.0" +"175464814","229282552","vvbotatst3.sanef-rec.fr","","00:50:56:9c:ba:92","10.45.6.161","fe80::250:56ff:fe9c:ba92","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7696","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 97 75 e5 1f ac c9-75 c6 00 62 09 fb 2d e9","No Asset Tag","'+02:00","2026-03-10T12:00:04.000+02:00","cybreconcile","Cloud Agent","475dd744-3781-4643-97b0-8ce87c3e0672","2023-06-22T17:17:41.000+02:00","2026-04-22T11:55:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Recette,Flux Libre,flux_libre,Cloud Agent,Linux Server","334.0" +"238272367","269262155","vipeabbst2.sanef.groupe","","00:50:56:90:ce:4e","10.41.29.56","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 fc 3a 2e ef 88 c6-05 2a 0d ba 91 ec 80 aa","No Asset Tag","'+02:00","2026-03-19T11:10:15.000+02:00","cybintsys","Cloud Agent","391e4720-a981-4d5b-bb7e-ebb0db648bb9","2024-05-21T14:51:21.000+02:00","2026-04-22T11:02:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,Cloud Agent,Linux Server,FreeFlow","141.0" +"201783484","245012499","vrameastg2","","00:50:56:9c:17:d8, 00:50:56:9c:bb:2e","10.45.2.11,10.45.4.11","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c fc 36 79 54 6c ba-ca 12 cd 69 db a2 8b 97","No Asset Tag","'+02:00","2026-04-21T11:03:11.000+02:00","cybadmsys","Cloud Agent","be788eb3-66f5-44eb-a642-ec84a40a79e1","2023-11-30T16:16:30.000+02:00","2026-04-22T11:44:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","47.0" +"279155823","304713613","vrdecasas2.sanef.groupe","","00:50:56:82:7f:e4","10.45.1.5","fe80::250:56ff:fe82:7fe4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2b 63 fb 72 01 f6-47 5d 14 e5 e3 22 ca 28","No Asset Tag","'+02:00","2026-03-23T11:55:09.000+02:00","cybadmsys","Cloud Agent","4b70bd06-8ae2-45da-baee-f2f13c404985","2024-11-14T15:53:41.000+02:00","2026-04-22T11:30:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","54.0" +"202869826","245559410","viosapapp1.sanef.groupe","","00:50:56:90:3e:29","10.41.29.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 c9 cc 4b d1 aa 40-5e d3 90 16 07 fd 9b 1b","No Asset Tag","'+02:00","2026-02-16T11:43:08.000+02:00","cybadmbdd","Cloud Agent","c53e3b0e-dbdb-44c5-837b-aeab50fdfe98","2023-12-06T19:43:12.000+02:00","2026-04-22T09:48:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,Péage","140.0" +"354650363","342479605","vpdsiasaf2.sanef.groupe","","d6:b8:e4:b9:10:87, ce:74:ea:04:3a:03, 00:50:56:90:e0:5d","10.88.0.1,192.168.19.9","fe80::d4b8:e4ff:feb9:1087,fe80::cc74:eaff:fe04:3a03","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 37 7d df 6f 8b 51-fc 8b fb 03 1c 3c 2a 09","No Asset Tag","'+02:00","2026-03-24T11:06:59.000+02:00","cybsupsys","Cloud Agent","8412c1c3-7f0d-4706-8013-12195e7a40d9","2025-08-26T15:04:36.000+02:00","2026-04-22T11:51:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","144.0" +"175412357","229249002","vvbocs4ci2.sanef-rec.fr","","00:50:56:9c:28:55","10.45.6.7","fe80::250:56ff:fe9c:2855","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7d d4 67 db 36 a4-b2 20 38 1b 76 a4 90 b8","No Asset Tag","'+02:00","2026-03-09T11:21:57.000+02:00","cybsupsys","Cloud Agent","e5198541-430d-44e4-bc45-e454d68ee3b3","2023-06-22T10:40:04.000+02:00","2026-04-22T11:00:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,FreeFlow,Cloud Agent,Linux Server","143.0" +"176097843","229734619","vvbooaboo2.sanef-rec.fr","","00:50:56:9c:38:43","10.45.6.77","fe80::250:56ff:fe9c:3843","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7696","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 31 06 3a 3d 3d 43-73 bb 58 b6 5b 60 c1 05","No Asset Tag","'+02:00","2026-03-10T17:14:03.000+02:00","cybsupsys","Cloud Agent","75335249-80f8-47bc-98d0-ea1d1ccf6fe1","2023-06-27T15:28:32.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow","140.0" +"175460796","229280307","vvbotcach2.sanef-rec.fr","","ce:99:89:14:9f:e6, 00:50:56:9c:91:57, 52:ea:5f:a9:20:e6, 9e:33:db:81:69:e3, 0a:e7:2e:8c:32:81, 9a:44:a6:b3:90:86, 6e:f1:e1:71:87:fe, ce:f6:b2:09:40:ae, fe:81:27:e9:b3:11","10.45.6.154,10.89.0.1","fe80::cc99:89ff:fe14:9fe6,fe80::250:56ff:fe9c:9157,fe80::50ea:5fff:fea9:20e6,fe80::9c33:dbff:fe81:69e3,fe80::8e7:2eff:fe8c:3281,fe80::9844:a6ff:feb3:9086,fe80::6cf1:e1ff:fe71:87fe,fe80::ccf6:b2ff:fe09:40ae,fe80::fc81:27ff:fee9:b311","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c8 1c 08 b4 fb 22-19 5e 0c bf ea d6 cd 38","No Asset Tag","'+02:00","2026-03-10T13:14:04.000+02:00","cybreconcile","Cloud Agent","659cee55-a9c2-4202-937d-3d0bf3b1a279","2023-06-22T16:51:38.000+02:00","2026-04-22T11:37:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,Recette,flux_libre,FreeFlow","140.0" +"312827606","325605227","vpgawgtw1.sanef.groupe","","00:50:56:90:64:a2","192.168.19.67,192.168.19.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0f fb 4d 00 1c 82-1c 5b c8 be 84 eb 2c 4f","No Asset Tag","'+02:00","2026-03-17T17:09:54.000+02:00","root","Cloud Agent","4dc116ec-ca5a-49b6-be94-dcba58afe9db","2025-04-01T16:29:23.000+02:00","2026-04-22T11:04:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","144.0" +"212764598","250647971","viaflperf1.sanef.groupe","","00:50:56:90:31:5e","192.168.22.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 db f0 ae 7a 40 aa-16 6d c0 a1 34 ab a0 52","No Asset Tag","'+02:00","2026-03-19T17:17:57.000+02:00","cybreconcile","Cloud Agent","b4c016af-9f63-4366-ae08-328deead2f01","2024-01-30T18:29:54.000+02:00","2026-04-22T11:53:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server,Production","142.0" +"221414626","254284745","vposapels2.sanef.groupe","","00:50:56:90:f9:15","10.41.20.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63887","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ab 73 a3 7d d0 1e-3f e5 88 b0 bf 5d fd fa","No Asset Tag","'+02:00","2026-02-26T12:41:06.000+02:00","cybadmsys","Cloud Agent","920d01ab-2f0d-419c-90ac-a814f489997e","2024-03-11T18:23:25.000+02:00","2026-04-22T11:28:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","DEX,Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production","144.0" +"416893750","367956474","vrzbxaprx2.sanef-rec.fr","","00:50:56:9c:de:1b","10.45.15.208","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3654","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 45 da d6 aa e0 cf-89 72 1b 4a ad 0c e0 f7","No Asset Tag","'+02:00","2026-04-16T12:36:02.000+02:00","cybintsys","Cloud Agent","62023821-1f5c-487c-869b-1db00aff7e86","2026-04-17T16:50:53.000+02:00","2026-04-22T09:46:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"383456003","354466610","vpbotakpi1.sanef.groupe","","00:50:56:90:30:ef","10.41.23.30","fe80::250:56ff:fe90:30ef","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 9d 32 f3 bf 13 7f-b6 1e 57 c8 72 bd b3 18","No Asset Tag","'+02:00","2026-04-21T10:16:47.000+02:00","root","Cloud Agent","8884854a-42e2-4da4-bbf2-118f4d9d6f53","2025-12-12T13:08:00.000+02:00","2026-04-22T11:32:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","138.0" +"287954932","311552199","vrosapquo1.sanef-rec.fr","","00:50:56:90:21:62","10.100.16.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7696","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 d0 0a 2e 94 88 a6-92 48 b4 ac 8d ce 1a e0","No Asset Tag","'+02:00","2026-02-16T16:21:43.000+02:00","cybintsys","Cloud Agent","4daaa297-2dae-4663-83ef-ff78eb122691","2024-12-20T16:03:16.000+02:00","2026-04-22T11:37:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Péage","142.0" +"175464703","229281780","vvbotarmq2.sanef-rec.fr","","8e:75:d4:ea:8a:13, ce:41:d0:99:97:2d, 00:50:56:9c:38:22, 8e:42:e1:89:23:73, ce:b5:c5:81:2b:f3, e6:02:b2:64:d1:3f","10.45.6.156,10.89.0.1","fe80::8c75:d4ff:feea:8a13,fe80::cc41:d0ff:fe99:972d,fe80::250:56ff:fe9c:3822,fe80::8c42:e1ff:fe89:2373,fe80::ccb5:c5ff:fe81:2bf3,fe80::e402:b2ff:fe64:d13f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 42 8e 55 99 ed 07-4b d7 16 8e 87 8d 2a f0","No Asset Tag","'+02:00","2026-03-10T11:11:19.000+02:00","cybreconcile","Cloud Agent","b254d0ab-cce8-41d1-a5b2-08d923fb4726","2023-06-22T17:09:38.000+02:00","2026-04-22T11:38:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,flux_libre,Recette,Flux Libre","140.0" +"311159768","330493472","vrosapkib1.sanef-rec.fr","","00:50:56:9c:69:75","10.45.9.73","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5a c3 59 a2 79 00-c7 92 48 57 11 fd 3a 9a","No Asset Tag","'+02:00","2026-02-16T11:13:38.000+02:00","cybsecope","Cloud Agent","eb2ff29b-686b-42f6-89ee-6ef7d53596e8","2025-03-26T17:24:27.000+02:00","2026-04-22T11:49:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,Recette","58.0" +"211148562","249951676","vpbotaapm1.sanef.groupe","","00:50:56:90:70:f7, a2:19:f5:d7:54:80, 6e:3a:41:f6:71:f9","10.41.23.25,10.89.0.1","fe80::250:56ff:fe90:70f7,fe80::a019:f5ff:fed7:5480,fe80::6c3a:41ff:fef6:71f9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1c 3a c4 ba eb 22-a7 69 07 ce d9 f8 c1 df","No Asset Tag","'+02:00","2026-04-16T11:59:37.000+02:00","cybreconcile","Cloud Agent","f4cafacf-be16-46f1-95e5-3fc235f24cb3","2024-01-22T16:37:41.000+02:00","2026-04-22T11:17:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,flux_libre,Production,log4j","337.0" +"208784479","248752401","vibotasim1.sanef.groupe","","00:50:56:90:1f:84","10.41.23.156","fe80::250:56ff:fe90:1f84","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 96 01 67 53 72 c4-2b dc dc 02 45 eb f4 c1","No Asset Tag","'+02:00","2026-03-18T10:13:13.000+02:00","cybreconcile","Cloud Agent","fb0e72e8-aded-416c-b660-261bdf842dae","2024-01-10T13:43:44.000+02:00","2026-04-22T11:30:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,FreeFlow,flux_libre,Flux Libre","141.0" +"295273598","317083541","vpdepaapp1.sanef.groupe","","00:50:56:90:ec:98","10.41.40.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 66 3d ef bb 75 ab-4e 20 b2 12 90 56 84 7a","No Asset Tag","'+02:00","2026-01-21T16:30:26.000+02:00","cybreconcile","Cloud Agent","b198f1a2-82fc-49d5-beff-3418a84e57b2","2025-01-28T12:18:30.000+02:00","2026-04-22T10:58:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,Production","140.0" +"234568691","262079565","vrechatre2.sanef-rec.fr","","00:50:56:9c:ff:de","10.45.11.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 32 85 b3 6a 36 a8-f5 e9 8e 02 f7 2b cb 10","No Asset Tag","'+02:00","2026-03-25T13:17:02.000+02:00","cybadmsys","Cloud Agent","6bde38f9-f7ad-4c00-85a8-36beeaab7df9","2024-05-06T12:36:30.000+02:00","2026-04-22T09:42:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,TALEND","217.0" +"332295040","333860643","vpameakfq1.sanef.groupe","","00:50:56:90:62:92","10.100.16.21","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","5681","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e1 e9 91 f4 4a 8f-b8 31 a2 d8 e7 01 2a 63","No Asset Tag","'+02:00","2025-10-29T11:46:08.000+02:00","cybreconcile","Cloud Agent","0ba58b85-0cc2-4263-abfb-18692205ac40","2025-06-10T14:22:25.000+02:00","2026-04-22T11:37:50.000+02:00","x86_64","4","SCA,VM,GAV","Linux Server,Cloud Agent,Sextan,Production,OS-LIN-SRV DYN","278.0" +"173084420","227656196","vdbocsman1.sanef-rec.fr","","00:50:56:9c:eb:ee","10.45.6.38","fe80::250:56ff:fe9c:ebee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c ce 2d 5c dd 36 8f-71 60 71 45 22 04 76 90","No Asset Tag","'+02:00","2026-03-10T10:22:32.000+02:00","cybadmbdd","Cloud Agent","813a675e-eaf7-44bd-a290-c4894857ae76","2023-06-05T15:56:38.000+02:00","2026-04-22T11:24:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,FreeFlow","334.0" +"175948571","229617188","vvbotbtsd1.sanef-rec.fr","","02:41:67:e4:3b:ed, 2e:fa:be:db:1c:f8, 52:d8:68:2d:9a:48, 8e:c8:a4:02:5d:40, ee:9b:02:11:12:7d, 00:50:56:9c:1f:30, b2:2f:5a:a5:4f:d8, f6:87:00:c4:0a:9f, b6:17:1d:64:31:df, 36:56:d2:92:f6:cf, ba:0d:fe:6c:39:64","10.45.6.139,10.89.0.1","fe80::41:67ff:fee4:3bed,fe80::2cfa:beff:fedb:1cf8,fe80::50d8:68ff:fe2d:9a48,fe80::8cc8:a4ff:fe02:5d40,fe80::ec9b:2ff:fe11:127d,fe80::250:56ff:fe9c:1f30,fe80::b02f:5aff:fea5:4fd8,fe80::f487:ff:fec4:a9f,fe80::b417:1dff:fe64:31df,fe80::3456:d2ff:fe92:f6cf,fe80::b80d:feff:fe6c:3964","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c b8 91 d0 d5 c4 33-17 bd 50 00 6f 9a 7d ad","No Asset Tag","'+02:00","2026-03-12T16:23:25.000+02:00","cybreconcile","Cloud Agent","5cf7bbf8-42a1-4971-a80f-3c5db5c78d12","2023-06-26T16:30:04.000+02:00","2026-04-22T11:27:53.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,flux_libre,Recette","142.0" +"323205153","329824071","vpgawamft2.sanef.groupe","","00:50:56:90:3d:96","10.42.16.17","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e5 4a 4a aa 88 3a-5d bb 57 53 ab 3e 7d b7","No Asset Tag","'+02:00","2026-02-12T15:49:59.000+02:00","cybreconcile","Cloud Agent","afc19412-f025-444a-9f53-4263b507df01","2025-05-09T15:24:02.000+02:00","2026-04-22T10:20:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","142.0" +"366884514","347537076","vrpataels1.sanef.groupe","","00:50:56:82:96:c5","10.43.255.22","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 fa 90 b2 b5 0c 4f-dd 7e e0 1a 8c 11 f2 21","No Asset Tag","'+02:00","2026-03-31T11:25:48.000+02:00","cybastsys","Cloud Agent","f13ef54f-555f-491a-a2f2-4ba0372319f4","2025-10-09T12:49:47.000+02:00","2026-04-22T11:07:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN","255.0" +"213848992","251124342","srtrabgas1.sanef.groupe","","50:65:f3:6e:90:04","10.45.1.66","fe80::5265:f3ff:fe6e:9004","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL160 G9 Server","8","3000","Intel(R) Xeon(R) CPU E5-2623 v3 @ 3.00GHz","47830","HP U20 08/29/2024","CZ264901HZ","","'+02:00","2026-01-13T16:00:27.000+02:00","cybsecope","Cloud Agent","197d25c3-7ab3-4332-b0d9-0574a5bb5581","2024-02-05T19:20:11.000+02:00","2026-04-22T11:08:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Gaspar,DEX","507.0" +"311171805","330493461","vrgawamft1.sanef-rec.fr","","00:50:56:9c:95:57","10.45.14.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d1 e1 af 6c 3f da-69 f6 24 76 4c 7f 27 47","No Asset Tag","'+02:00","2026-02-11T11:47:00.000+02:00","root","Cloud Agent","52e66d02-c804-4d11-b693-4f48cda50a88","2025-03-26T18:36:28.000+02:00","2026-04-22T11:27:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Plateforme d'échange,Recette,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","59.0" +"383452162","354460837","vibotakpi1.sanef.groupe","","00:50:56:90:9e:23","10.41.23.146","fe80::250:56ff:fe90:9e23","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 f3 7b a7 73 58 8d-8e 29 5e aa 27 9c 75 db","No Asset Tag","'+02:00","2026-03-19T12:33:01.000+02:00","cybreconcile","Cloud Agent","93bf39d1-da0d-4937-ad7a-b1dd2d75a698","2025-12-12T11:34:52.000+02:00","2026-04-22T11:27:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Linux Server,OS-LIN-SRV DYN,Cloud Agent","138.0" +"130588548","192836202","vmamrstg1","","00:50:56:82:4B:5E, 00:50:56:82:69:20, 00:50:56:82:0C:DF","10.33.16.10,10.32.16.10,10.32.16.17,10.32.16.18,10.30.16.10,10.30.16.17,10.30.16.18","fe80::250:56ff:fe82:4b5e,fe80::250:56ff:fe82:6920,fe80::250:56ff:fe82:cdf","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a5 3e 1a cc c0 8a-9b 8a f5 2d 87 49 4e 3d","No Asset Tag","'+02:00","2025-10-09T11:38:43.000+02:00","cybexpapp","Cloud Agent","7bb33190-4842-4833-89d2-ef36edd44bd7","2022-07-07T12:03:44.000+02:00","2026-04-22T11:15:13.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,SSTG,OS-LIN-SRV DYN,DEX,Obsolete,Sans,Trafic,Recette,Cloud Agent,Linux Server,VRF_INCONNUE","699.0" +"379846586","353006855","spbckamag2.sanef.groupe","","04:bd:97:23:06:20, 04:bd:97:23:06:21","10.42.16.75,10.43.1.36","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191547","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP26080HGP","Unknown","'+02:00","2025-11-27T20:26:54.000+02:00","cybsecope","Cloud Agent","86f212c8-4bd0-48b2-93ef-be55f3c829bd","2025-11-27T18:17:58.000+02:00","2026-04-22T11:19:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0" +"143622556","201025275","vpemvantp1.sanef.groupe","","00:50:56:82:2a:4c","192.168.100.132","fe80::250:56ff:fe82:2a4c","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 89 b6 e3 0b e8 e6-23 9d 7d 15 4e 3d da 8a","No Asset Tag","'+02:00","2024-09-04T15:19:33.000+02:00","lamhajeb-ext","Cloud Agent","ca5b415c-1d52-4ab0-b23f-9feaa2cb77af","2022-10-11T17:31:05.000+02:00","2026-04-22T11:29:49.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,Obsolete,VRF_INCONNUE,PCI Bunker EMV - VLAN Supervision/Admin,Cloud Agent,Linux Server,BDD-POS DYN","107.0" +"210022570","249438985","siboomcla2.sanef.groupe","","5c:ba:2c:1c:94:60","10.41.22.205","fe80::5811:2d9b:7a24:7d54","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95788","HPE U30 07/20/2023","CZ22410FK7","","'+02:00","2026-03-16T13:13:13.000+02:00","cybsupemo","Cloud Agent","c21d0a6d-555b-4861-9119-c3a0f4dcc6d2","2024-01-17T12:55:00.000+02:00","2026-04-22T11:33:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,flux_libre","337.0" +"398248431","360587807","vpdsibetc1.sanef.groupe","","00:50:56:9c:f8:44","10.44.5.131","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c e9 f7 4b 0b 4e a2-06 28 85 8d e6 77 db d2","No Asset Tag","'+02:00","2026-02-11T18:42:39.000+02:00","cybadmbdd","Cloud Agent","7f04098c-1b4e-488c-9826-bbe36367c07b","2026-02-06T12:48:58.000+02:00","2026-04-22T11:50:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,Production","141.0" +"238271912","269259607","vipeaabst1.sanef.groupe","","00:50:56:90:e8:7d","10.41.29.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 5e 6c 94 44 53 a2-1c 58 69 50 e8 f3 ad 3c","No Asset Tag","'+02:00","2026-03-19T10:22:55.000+02:00","cybintsys","Cloud Agent","d87bd183-869a-42bf-82c0-228dd283014d","2024-05-21T14:30:01.000+02:00","2026-04-22T11:37:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,DSI,Flux Libre","141.0" +"376415144","351514141","vipeaarcv1.sanef.groupe","","00:50:56:90:be:56","10.41.29.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 2d 62 a0 05 c7 c3-63 b2 3e 5c 98 bd 4d d0","No Asset Tag","'+02:00","2026-03-19T15:05:55.000+02:00","cybreconcile","Cloud Agent","6824db21-9e8a-41ee-98b6-da91fca300c5","2025-11-13T16:39:51.000+02:00","2026-04-22T11:05:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,MID-NGINX DYN,flux_libre,log4j,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Flux Libre,Production,FreeFlow","334.0" +"139156941","198270159","vmamphtp2.sanef.groupe","","00:50:56:82:75:3B, 00:50:56:82:4E:8C, 00:50:56:82:06:1D","10.41.40.36,10.41.40.39,10.41.40.40,10.41.40.41,10.43.4.36,10.43.40.36,10.43.40.39","fe80::250:56ff:fe82:753b,fe80::250:56ff:fe82:4e8c,fe80::250:56ff:fe82:61d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 87 d0 59 1b 5f 6f-07 1c c6 e7 14 00 7e 0e","No Asset Tag","'+02:00","2025-10-08T15:50:31.000+02:00","cybreconcile","Cloud Agent","950d952c-913d-4f60-89ad-24963c92f040","2022-09-07T14:26:01.000+02:00","2026-04-22T11:19:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,VRF_TRAFIC_DC,Obsolete,Production,Trafic,Amelie","349.0" +"238297816","269274162","lpemvbpemv2.sanef.groupe","","00:17:a4:77:1c:68, 00:17:a4:77:1c:98, 00:17:a4:77:1c:64","169.254.8.81,172.16.0.105,192.168.103.105,192.168.101.105,192.168.101.145","fe80::217:a4ff:fe77:1c68,fe80::217:a4ff:fe77:1c98,fe80::217:a4ff:fe77:1c64","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","PWARU%%LM333IZ","","'+02:00","2026-01-25T23:27:02.000+02:00","root","Cloud Agent","d4a07993-1fa2-45b1-9fa5-a160ba803fc7","2024-05-21T16:48:50.000+02:00","2026-04-22T11:35:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,Production,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17,Cloud Agent,Linux Server","682.0" +"294119824","316124809","vpvsaarec2.sanef.groupe","","00:50:56:9c:65:9b","10.42.16.84","fe80::250:56ff:fe9c:659b","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c fe dd 01 df 68 3f-9f 0d 28 bc 7a 70 7d 1f","No Asset Tag","'+02:00","2026-02-05T13:13:32.000+02:00","tbaad","Cloud Agent","51b00c2e-edd7-4d16-a176-83bdeab2a2d8","2025-01-22T11:43:10.000+02:00","2026-04-22T09:35:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0" +"210406652","249580391","lremvaste1","","00:17:a4:77:1c:28, 00:17:a4:77:1c:2c","192.168.108.114,192.168.107.114","fe80::217:a4ff:fe77:1c28,fe80::217:a4ff:fe77:1c2c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","31879","HP I36 07/18/2022","VCX0000705","","'+02:00","2025-12-02T11:47:45.000+02:00","lamhajeb-ext","Cloud Agent","1b52413a-1e4d-46c5-8179-a64404b83b63","2024-01-18T14:17:38.000+02:00","2026-04-22T09:35:44.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,EMV,PCI Bunker EMV - VLAN Stecard V17 Recette","491.0" +"212748468","250644352","vpbooarep2.sanef.groupe","","00:50:56:90:8f:73","10.41.22.146","fe80::250:56ff:fe90:8f73","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 0a 92 da 66 4b 41-1b 07 52 eb 31 0b 9a 09","No Asset Tag","'+02:00","2026-04-07T12:00:35.000+02:00","cybadmroot","Cloud Agent","4d9fbb90-492c-42fc-83e2-cdb4de0813f9","2024-01-30T17:21:46.000+02:00","2026-04-22T11:38:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server,FreeFlow,ServersInCyberark,Production","140.0" +"359802333","344907561","vrpeahbst1.sanef-rec.fr","","00:50:56:9c:8a:e8","192.168.31.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c e4 3c bb 93 a4 3d-cb 11 9e 0b ee 2c 91 f3","No Asset Tag","'+02:00","2026-04-08T11:05:10.000+02:00","root","Cloud Agent","bc9760af-f453-400d-a64a-5ca2536ef0a6","2025-09-15T15:57:45.000+02:00","2026-04-22T10:45:58.000+02:00","x86_64","4","SCA,VM,GAV","flux_libre,TAG-SED,TAG-SRVEXPOSEINTERNET,Recette,FreeFlow,Flux Libre,OS-LIN-SRV DYN,Linux Server,Cloud Agent","132.0" +"378049638","352306110","vpdsiahap4.sanef.groupe","","00:50:56:90:b1:b1","192.168.19.145","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 a4 1e 78 01 ee 72-08 15 55 ca 9a 49 05 89","No Asset Tag","'+02:00","2025-12-10T15:09:42.000+02:00","cybintsys","Cloud Agent","de87e680-eb6e-4b1e-a78c-e09ce7005235","2025-11-20T13:31:08.000+02:00","2026-04-22T11:29:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"175950695","229618442","vvbocs4ci1.sanef-rec.fr","","00:50:56:9c:37:2d","10.45.6.3","fe80::250:56ff:fe9c:372d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c be 0a b0 f1 5e 5e-ea 6a fe 73 5b 41 85 e4","No Asset Tag","'+02:00","2026-03-11T16:15:40.000+02:00","cybsupsys","Cloud Agent","63aa44d5-fbe8-4b22-b643-4e984c0b6104","2023-06-26T16:42:59.000+02:00","2026-04-22T11:07:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Recette","336.0" +"407940473","364292118","splogbels2","","40:5b:7f:e1:ac:78","10.44.7.43","fe80::425b:7fff:fee1:ac78","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G11 Server","32","","INTEL(R) XEON(R) SILVER 4514Y","31586","HPE 2.50 04/22/2025","CZ2D3C0G31","","'+02:00","2026-03-27T16:17:38.000+02:00","cybintsys","Cloud Agent","b523ded9-6eff-429f-8655-ce7b008f4657","2026-03-12T12:08:05.000+02:00","2026-04-22T11:42:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN","152.0" +"195792930","241929201","vpbotreco2.sanef.groupe","","00:50:56:90:d2:5d","10.41.23.19","fe80::250:56ff:fe90:d25d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 b8 38 f4 43 ea 75-23 8f 5e ef 9f 47 e0 84","No Asset Tag","'+02:00","2026-04-16T14:13:14.000+02:00","cybreconcile","Cloud Agent","3b9a017c-694d-4156-b17c-42a71c740a9f","2023-10-26T11:37:58.000+02:00","2026-04-22T10:58:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre","141.0" +"205606145","246966123","vvbocaprx1.sanef-rec.fr","","00:50:56:9c:fb:60","192.168.22.3","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 96 b7 47 17 66 e2-40 be cf 40 2a 15 b4 5b","No Asset Tag","'+02:00","2026-03-10T10:14:35.000+02:00","cybsupsys","Cloud Agent","281b8add-6df6-428a-aeac-fb4bdc00d3d4","2023-12-21T20:05:47.000+02:00","2026-04-22T11:38:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Recette,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre","335.0" +"339814656","336780130","vrpatbl2r3.sanef-rec.fr","","00:50:56:9c:e9:e1","10.45.10.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5e 5f 2e fb 54 47-32 c3 18 8a e7 f1 cb 68","No Asset Tag","'+02:00","2026-04-08T12:31:52.000+02:00","cybsecope","Cloud Agent","bd717c73-dcb2-42f1-b414-d1bbf77a60b7","2025-07-07T12:40:40.000+02:00","2026-04-22T11:31:46.000+02:00","x86_64","3","SCA,VM,GAV","Linux Server,Cloud Agent,Recette,BDD-POS DYN,L2R,OS-LIN-SRV DYN","216.0" +"241533000","276509051","vpvsaaahp2.sanef.groupe","","00:50:56:9c:67:25","10.42.16.87","fe80::250:56ff:fe9c:6725","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c c8 69 60 5c c6 26-c6 55 85 cc 68 d9 06 4a","No Asset Tag","'+02:00","2026-02-04T13:20:50.000+02:00","tbaad-ext","Cloud Agent","e2fe25e9-9955-4368-ad32-ff54b16be948","2024-06-04T11:57:09.000+02:00","2026-04-22T11:04:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"360043312","344907767","vrtrabmut1.sanef-rec.fr","","52:54:00:ea:79:1f, 42:19:7e:d4:9b:a4, 52:54:00:39:27:bc","192.168.17.4,192.168.16.24,10.45.15.4","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","48139","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:57:32.000+02:00","oracle","Cloud Agent","30c83049-dcfa-4fc5-875c-e07b656fa40e","2025-09-16T15:15:32.000+02:00","2026-04-22T09:32:27.000+02:00","x86_64","2","SCA,VM,GAV","ORACLE,Recette,Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0" +"130588099","192835847","vamrsychtp1.sanef.groupe","","00:50:56:82:6F:63","10.45.2.23","fe80::250:56ff:fe82:6f63","Linux / Server","Red Hat Enterprise Linux Server 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 0c f2 5b e6 50 1d-c4 77 7e 11 1e f7 84 ea","No Asset Tag","'+02:00","2025-02-04T10:47:28.000+02:00","cybexpapp","Cloud Agent","cacd808b-cfc7-4ace-9f0f-2d2a6d0896cf","2022-07-07T11:58:05.000+02:00","2026-04-22T10:53:35.000+02:00","x86_64","3","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Patrimoine,Sans,Recette,SIG,VRF_INCONNUE,Obsolete","525.0" +"193606163","240976273","vibocs4as1.sanef.groupe","","00:50:56:90:4b:56","10.41.22.72","fe80::250:56ff:fe90:4b56","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 b3 9d 45 c1 b3 06-4e 3b 9a a5 4c d2 f9 a7","No Asset Tag","'+02:00","2026-03-16T16:11:20.000+02:00","cybsupibm","Cloud Agent","d4d5e555-5327-402f-9c71-f08ab8b17d2f","2023-10-16T12:03:22.000+02:00","2026-04-22T10:41:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ServersInCyberark,Flux Libre,flux_libre,Production,Cloud Agent,Linux Server,FreeFlow","141.0" +"195796370","241931295","vpbotapps2.sanef.groupe","","00:50:56:90:83:1a","10.41.23.15","fe80::250:56ff:fe90:831a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7a e8 f5 ed a9 da-9f ba 9c e2 b2 ea b3 f4","No Asset Tag","'+02:00","2026-04-16T11:04:07.000+02:00","cybreconcile","Cloud Agent","5966ce31-ac30-4dab-bd4a-9c6f908666f7","2023-10-26T11:59:09.000+02:00","2026-04-22T11:16:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Flux Libre,flux_libre,Production","141.0" +"340063684","336780157","lpamebrac1.sanef.groupe","","ee:50:33:80:00:90, ee:50:33:80:00:8c","10.43.4.138,10.41.41.110,10.41.41.114,10.41.41.118","fe80::ec50:33ff:fe80:90,fe80::ec50:33ff:fe80:8c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63822","HPE I44 06/13/2025","VCGCIOJ00L","/n/Bios Asset Tag :","'+02:00","2025-11-19T15:02:39.000+02:00","cybreconcile","Cloud Agent","4579ea91-d9dc-4a08-96e1-64538e06b070","2025-07-08T10:21:16.000+02:00","2026-04-22T11:23:24.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,Amelie","335.0" +"195792948","241929532","vpbotreco3.sanef.groupe","","00:50:56:90:fe:07","10.41.23.20","fe80::250:56ff:fe90:fe07","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37934","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 3f 96 41 bb c3 ba-0f 2b 55 5e 03 95 57 72","No Asset Tag","'+02:00","2026-04-16T14:43:36.000+02:00","cybreconcile","Cloud Agent","38a94212-add9-4f23-a636-ec8a78fefca2","2023-10-26T11:39:01.000+02:00","2026-04-22T11:21:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,Production,flux_libre,FreeFlow","141.0" +"195798232","241931296","vpbotapps1.sanef.groupe","","00:50:56:90:20:d6","10.41.23.14","fe80::250:56ff:fe90:20d6","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48013","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c3 80 01 f1 a1 19-c7 71 bd 66 db 88 44 03","No Asset Tag","'+02:00","2026-04-16T10:57:27.000+02:00","cybreconcile","Cloud Agent","cd6b5702-76f4-42b4-bd7d-c780ca442252","2023-10-26T11:59:07.000+02:00","2026-04-22T11:30:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,FreeFlow,flux_libre","140.0" +"246263460","286957595","vraptbjup1","","00:50:56:9c:68:1f","10.45.10.163","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 73 71 b0 27 0c f4-da e4 3a 1a 03 d0 f9 22","No Asset Tag","'+02:00","2026-03-23T12:26:07.000+02:00","cybadmsys","Cloud Agent","d49a03b3-702f-4f64-9629-4074ab9b2665","2024-06-25T09:57:21.000+02:00","2026-04-22T11:35:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent,BDD,Recette,DSI","65.0" +"191422143","239727391","vibooosea1.sanef.groupe","","00:50:56:90:d0:d2","10.41.22.200","fe80::250:56ff:fe90:d0d2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 60 1e 2d 60 a3 9f-25 e1 a1 e1 07 6a f6 13","No Asset Tag","'+02:00","2026-03-17T16:23:43.000+02:00","cybreconcile","Cloud Agent","4fc0b10a-d5c0-4440-8e54-b5a86c892f55","2023-10-04T17:50:33.000+02:00","2026-04-22T11:31:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,FreeFlow,Flux Libre,Cloud Agent,Linux Server,Production","141.0" +"354672880","342490001","vpdsiarad1.sanef.groupe","","00:50:56:94:27:ba","10.44.5.195","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 14 6a 29 aa 1d 18 c4-2e 88 c9 f2 81 5a 1c c0","No Asset Tag","'+02:00","2026-03-24T10:54:33.000+02:00","cybsupsys","Cloud Agent","b96d30e4-ca8d-4182-919d-ff2042485f53","2025-08-26T16:06:56.000+02:00","2026-04-22T11:20:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Radius,Production,Linux Server,Cloud Agent","152.0" +"377717881","352168080","vdpatbsip1.sanef-rec.fr","","00:50:56:9c:0c:0c","10.45.9.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 2a 35 aa d2 3c b2-c8 27 37 20 22 c4 2d 34","No Asset Tag","'+02:00","2026-04-07T10:38:58.000+02:00","sipat","Cloud Agent","213e9236-7d67-4ff2-9606-768952003ad5","2025-11-19T12:07:59.000+02:00","2026-04-22T11:55:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","65.0" +"208776231","248746835","vibotarmq1.sanef.groupe","","00:50:56:90:b2:64","10.41.23.141","fe80::250:56ff:fe90:b264","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 89 39 6b 48 96 4c-d8 bc aa 1f cb 1a f6 db","No Asset Tag","'+02:00","2026-03-17T11:49:24.000+02:00","cybreconcile","Cloud Agent","0c4f3d39-21bb-4068-b9ab-68be3541b623","2024-01-10T12:58:43.000+02:00","2026-04-22T10:48:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,FreeFlow,flux_libre,Flux Libre,OS-LIN-SRV DYN","141.0" +"196663142","242432307","vpboobsql1.sanef.groupe","","00:50:56:90:0a:8a","10.41.22.133,10.41.22.145","fe80::250:56ff:fe90:a8a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 53 ab fa da 5a 83-0a 5a 28 98 b3 be b8 b4","No Asset Tag","'+02:00","2026-04-07T12:26:31.000+02:00","cybreconcile","Cloud Agent","7ba6ea7c-6f04-46d4-aa2e-b54aa3838cd1","2023-10-31T18:19:55.000+02:00","2026-04-22T11:34:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Flux Libre,flux_libre,Production","334.0" +"356292342","343241127","vrdsiadep1.sanef-rec.fr","","00:50:56:9c:26:44","10.45.7.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 36 54 65 18 a0 e6-ad 53 24 7d 33 6f d7 ba","No Asset Tag","'+02:00","2026-04-14T11:11:13.000+02:00","cybroasys","Cloud Agent","356f6da7-2195-4d61-bc91-762e197d3a0e","2025-09-02T11:03:45.000+02:00","2026-04-22T11:37:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent","331.0" +"335928595","336780144","vrrpsangx1.sanef-rec.fr","","00:50:56:9c:5b:78","10.45.14.228","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9b a2 72 85 7c 69-27 91 bd 43 a6 92 ba 7e","No Asset Tag","'+02:00","2026-02-23T10:50:21.000+02:00","cybintsys","Cloud Agent","f23ce48a-cce3-452a-961c-1b6c0f8158e7","2025-06-24T10:58:05.000+02:00","2026-04-22T10:59:36.000+02:00","x86_64","2","SCA,VM,GAV","Péage,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server","140.0" +"130590699","192838403","vrameaoct1.sanef.groupe","","00:50:56:82:06:1f","10.45.2.80","fe80::250:56ff:fe82:61f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 91 24 d3 33 d0 86-74 d4 63 bd 71 07 c5 8c","No Asset Tag","'+02:00","2026-01-14T11:19:29.000+02:00","delcour","Cloud Agent","69ca43f0-8e14-4a5d-9390-b03fcbb5cf70","2022-07-07T12:14:57.000+02:00","2026-04-22T11:37:37.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,OS-LIN-SRV DYN,OCTAN,MID-APACHE-TOMCAT DYN,VRF_INCONNUE,Recette","510.0" +"216910714","252328115","vppeaabst3.sanef.groupe","","00:50:56:90:e3:b2","10.41.20.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 28 89 8d ba 81 f2-cf bf d5 9e ee c5 98 8c","No Asset Tag","'+02:00","2026-04-01T14:32:09.000+02:00","root","Cloud Agent","97b2d5d3-9e23-444a-b621-4dde2406819f","2024-02-19T14:51:50.000+02:00","2026-04-22T11:23:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,MID-NGINX DYN","327.0" +"200710325","244490967","vppeahbst1.sanef.groupe","","00:50:56:90:5f:20","192.168.31.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 24 00 49 92 a6 38-67 0d 23 53 6e bd 74 64","No Asset Tag","'+02:00","2026-04-02T06:52:57.000+02:00","root","Cloud Agent","a87f553d-d953-4403-97c1-3f7efa4e73bb","2023-11-24T12:50:45.000+02:00","2026-04-22T09:23:54.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,FreeFlow,Flux Libre,flux_libre","132.0" +"292523826","315076953","vpsimaexp2.sanef.groupe","","00:50:56:90:87:1e, 52:54:00:94:2c:6b","10.30.10.130,192.168.122.1","fe80::15e:a51:8c8b:ddfd","Linux / Server","The CentOS Project CentOS 8.1 (1911)","8.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3940","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e9 13 5e 4f b0 a9-0e e5 c3 62 4a f8 00 fc","No Asset Tag","'+02:00","2025-11-27T14:02:58.000+02:00","cybexpapp","Cloud Agent","d1988b13-f451-461f-9eb0-596894d852d3","2025-01-15T17:40:50.000+02:00","2026-04-22T11:17:10.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server","238.0" +"195405316","241775894","vpbotangx1.sanef.groupe","","00:50:56:90:3d:0e","10.41.23.5","fe80::250:56ff:fe90:3d0e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11728","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 2e e4 cb 20 8b 22-8e 5b 7a e8 1c ff 15 a2","No Asset Tag","'+02:00","2026-04-16T10:09:04.000+02:00","cybreconcile","Cloud Agent","9a3c5563-a956-45ac-a79a-887c2907085d","2023-10-25T00:17:46.000+02:00","2026-04-22T11:34:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,flux_libre,FreeFlow","140.0" +"308848238","323875091","vrdsibetc1.sanef-rec.fr","","00:50:56:9c:97:30","10.45.1.176","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c bc dc 81 c4 8f 8f-fe bb cb a3 b5 35 b3 1c","No Asset Tag","'+02:00","2026-01-06T13:16:38.000+02:00","cybadmbdd","Cloud Agent","f18ad314-5889-40df-84bc-da4e14f2e1dd","2025-03-17T18:36:34.000+02:00","2026-04-22T10:23:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,BDD,Recette","141.0" +"130588872","192836204","vmamrstg2","","00:50:56:82:2B:DE, 00:50:56:82:7A:6C, 00:50:56:82:53:09","10.32.16.11,10.30.16.11,10.33.16.11","fe80::250:56ff:fe82:2bde,fe80::250:56ff:fe82:7a6c,fe80::250:56ff:fe82:5309","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f7 1e 5b 10 bc d9-1c a0 a7 e3 c8 b3 d1 ca","No Asset Tag","'+02:00","2025-10-09T11:39:29.000+02:00","cybexpapp","Cloud Agent","91d95ee7-0c3c-4d21-b9d3-ac7535dfc197","2022-07-07T12:04:10.000+02:00","2026-04-22T11:02:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,Sans,Trafic,Obsolete,Cloud Agent,Linux Server,SSTG,log4j,DEX,VRF_INCONNUE,OS-LIN-SRV DYN","699.0" +"334435348","336780124","vrdsiasaf2.sanef-rec.fr","","00:50:56:9c:30:bd, e6:86:b8:72:47:09, 22:74:c7:88:61:f8","192.168.19.25,10.88.0.1","fe80::e486:b8ff:fe72:4709,fe80::2074:c7ff:fe88:61f8","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cf 9d 42 d5 c9 83-0d a2 ce 1c ad 0f a7 bf","No Asset Tag","'+02:00","2026-04-20T17:36:47.000+02:00","cybadmroot","Cloud Agent","1f12e31f-8021-4ebc-9f9c-64539c39a30d","2025-06-18T14:36:16.000+02:00","2026-04-22T11:16:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Radius,Recette,OS-LIN-SRV DYN","66.0" +"314384921","326407133","vrpwdamft1.sanef-rec.fr","","00:50:56:9c:a6:f8","10.45.14.99","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c eb 57 47 6b 95 2e-35 89 f1 f3 93 72 36 7f","No Asset Tag","'+02:00","2026-03-03T15:14:49.000+02:00","cybintsys","Cloud Agent","da618b04-5c5b-41b7-af12-4070a153957f","2025-04-07T15:27:16.000+02:00","2026-04-22T11:15:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","141.0" +"323214900","329825072","vpgawagtw2.sanef.groupe","","00:50:56:90:af:75","192.168.19.69","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 a2 a7 3f 9c c9 45-93 6b dc 19 a0 61 18 92","No Asset Tag","'+02:00","2026-02-12T15:49:52.000+02:00","cybreconcile","Cloud Agent","eec93e93-8c18-4f5d-97cd-042afbb897d4","2025-05-09T15:39:10.000+02:00","2026-04-22T11:17:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Production,OS-LIN-SRV DYN","142.0" +"195878803","241974731","vpbotapps3.sanef.groupe","","00:50:56:90:76:49","10.41.23.16","fe80::250:56ff:fe90:7649","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 20 59 d5 ce 99 14-bc 60 18 a2 3f 67 4d d4","No Asset Tag","'+02:00","2026-04-16T11:25:45.000+02:00","cybreconcile","Cloud Agent","9aba982e-6ce9-477c-95e1-4033af8e070f","2023-10-26T22:36:47.000+02:00","2026-04-22T10:49:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,flux_libre,Production,FreeFlow","337.0" +"131405384","193423787","vmzeus.sanef.groupe","","00:50:56:AC:00:D4","192.168.230.23","fe80::250:56ff:feac:d4","Linux / Server","The CentOS Project CentOS 6.3","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 2c bf eb 40 21 87 89-83 89 7e f9 55 05 97 8d","No Asset Tag","'+02:00","2023-01-12T08:58:29.000+02:00","cybreconcile","Cloud Agent","cf37f0d2-c026-4734-905d-405ee885e85c","2022-07-13T10:28:24.000+02:00","2026-04-22T11:25:17.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Cloud Agent,Linux Server,VRF_INCONNUE,TAG-SRVEXPOSEINDIRECT,DMZ,Trafic,Sans,Production,DEX,ServersInCyberark,log4j,Obsolete","704.0" +"398238102","360591179","vpdsibetc3.sanef.groupe","","00:50:56:9c:5c:2d","10.100.16.23","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 4f f3 e2 f9 ae f4-7c 6e c7 6a 08 df 0f fc","No Asset Tag","'+02:00","2026-02-11T18:52:14.000+02:00","cybadmbdd","Cloud Agent","abe171ad-3577-40ab-94e5-0b1c840ae86f","2026-02-06T13:31:16.000+02:00","2026-04-22T11:21:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","141.0" +"213853706","251126285","spasuagsm2","","5c:ed:8c:3f:33:fc, 5c:ed:8c:3f:33:fd","10.41.40.207,10.43.4.207","fe80::5eed:8cff:fe3f:33fc,fe80::5eed:8cff:fe3f:33fd","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31672","HPE U32 07/14/2022","CZJ81900F1","","'+02:00","2025-06-16T15:47:42.000+02:00","cybastapp","Cloud Agent","8800916c-6443-4be9-8689-6b6841ddca21","2024-02-05T19:50:23.000+02:00","2026-04-22T11:03:48.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,MID-NGINX DYN,Cloud Agent,Linux Server,DSI,Obsolete,ASUR","524.0" +"395567531","359520752","vrsigaapp2.sanef-rec.fr","","00:50:56:9c:bc:3e","10.45.2.32","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c a3 8f 33 b2 56 99-1b 87 72 b5 4a ca 23 3a","No Asset Tag","'+02:00","2026-02-05T16:26:02.000+02:00","cybsupapp","Cloud Agent","7803e67a-7128-4ff4-beab-7e22ae0aeed1","2026-01-28T11:52:38.000+02:00","2026-04-22T11:24:25.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent","214.0" +"411855378","365824048","vpgraangx1.sanef.groupe","","00:50:56:90:8b:59","10.42.0.142","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 44 42 cd fa c0 bd-a4 c6 96 d6 0c 4a 13 af","No Asset Tag","'+02:00","2026-04-07T11:36:53.000+02:00","cybreconcile","Cloud Agent","a9b653c5-ab52-447c-95ce-7d1bf7895047","2026-03-27T12:14:02.000+02:00","2026-04-22T11:10:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,BDD-POS DYN","65.0" +"349735151","340111943","vrechbetl1.sanef-rec.fr","","00:50:56:9c:90:9a","10.45.11.205","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c bf da b2 9d 19 a5-a9 78 ff 0a 0c 62 87 03","No Asset Tag","'+02:00","2026-03-03T15:14:41.000+02:00","cybadmbdd","Cloud Agent","b09b590c-0132-4260-96f1-1ebd72a613ef","2025-08-07T10:26:35.000+02:00","2026-04-22T10:29:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,MID-NGINX DYN,BDD-POS DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","341.0" +"379762503","352976791","spbckamag4.sanef.groupe","","04:bd:97:22:cb:7c, 04:bd:97:22:cb:7d","10.42.16.76,10.43.1.37","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP260706B5","Unknown","'+02:00","2025-12-29T10:04:17.000+02:00","root","Cloud Agent","cb4430b2-9f67-42d2-95fa-e8725944b59e","2025-11-27T12:50:22.000+02:00","2026-04-22T11:26:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","330.0" +"326661934","331288841","vpvsampci1","","00:50:56:86:a6:2f","192.168.109.14","fe80::250:56ff:fe86:a62f","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 15 bb e6 f2 ce 4f-d9 ca da c3 6d 16 08 1e","No Asset Tag","'-04:00","2026-02-02T11:43:11.000+02:00","tbaad","Cloud Agent","6a2f41d1-c22e-4da7-bb28-e4f6c4561178","2025-05-22T17:19:59.000+02:00","2026-04-22T11:23:50.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server","52.0" +"216433861","252120323","vipeabbst3.sanef.groupe","","00:50:56:90:54:5a","10.41.29.57","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 49 8a d6 d3 ea cd-8d 24 21 de 81 e6 be a2","No Asset Tag","'+02:00","2026-03-19T11:29:37.000+02:00","cybsecope","Cloud Agent","5fc11800-9ca1-4f11-af69-552f915f6a7c","2024-02-16T15:41:51.000+02:00","2026-04-22T11:10:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,Production,flux_libre,ServersInCyberark,FreeFlow","141.0" +"178991227","231837430","vpsasawrk3.sanef.groupe","","00:50:56:9c:08:ff","10.41.32.12","fe80::250:56ff:fe9c:8ff","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 05 9f ea 75 e2 6c-6f 45 41 2c 6a bc 29 63","No Asset Tag","'+02:00","2026-03-25T16:06:58.000+02:00","cybreconcile","Cloud Agent","c455e000-b143-4198-bc50-41b8f3799add","2023-07-18T15:56:36.000+02:00","2026-04-22T11:17:48.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,DSI,SAS","86.0" +"232513887","259823391","lrpeabsip1.sanef-rec.fr","","3e:33:fb:a0:00:b8","10.45.1.35","fe80::3c33:fbff:fea0:b8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200Q","/n/Bios Asset Tag :","'+02:00","2026-02-23T10:43:04.000+02:00","cybintsys","Cloud Agent","16c30fdc-aad2-4abe-b866-621ec7a92981","2024-04-26T11:53:58.000+02:00","2026-04-22T11:20:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Péage","336.0" +"179784561","232376102","vrrauaast2.sanef-rec.fr","","00:50:56:9c:03:d4, 00:50:56:9c:a4:69","10.45.5.34,10.45.9.228","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d6 e4 19 48 87 58-5b 91 7b f4 22 fb c8 99","No Asset Tag","'+02:00","2026-04-21T14:58:28.000+02:00","cybadmsys","Cloud Agent","bf537a6e-e375-4a41-8cb1-b512a6fd1cbc","2023-07-24T19:12:46.000+02:00","2026-04-22T10:56:41.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,ASUR","71.0" +"176096529","229734620","vvboobsql2.sanef-rec.fr","","00:50:56:9c:3a:17","10.45.6.74","fe80::250:56ff:fe9c:3a17","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 0f db ff 24 76 e2-92 43 4b 58 88 1e af ff","No Asset Tag","'+02:00","2026-03-09T16:09:08.000+02:00","cybsupsys","Cloud Agent","220147c2-7bda-4a8b-83c1-437f7ba4e560","2023-06-27T15:28:32.000+02:00","2026-04-22T11:20:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette,flux_libre,FreeFlow,Flux Libre","141.0" +"249813575","288925764","lrdsibrac1.sanef-rec.fr","","3e:33:fb:a0:00:c8, 3e:33:fb:a0:00:c4","10.45.5.19,10.45.7.9","fe80::3c33:fbff:fea0:c8,fe80::3c33:fbff:fea0:c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200U","/n/Bios Asset Tag :","'+02:00","2026-03-04T18:18:50.000+02:00","cybintsys","Cloud Agent","fe98673a-1142-4e55-a5ce-b95cc2fcc706","2024-07-10T15:12:02.000+02:00","2026-04-22T11:23:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ORACLE,Recette,Cloud Agent,Linux Server","146.0" +"294564327","316603854","vpdepbels1.sanef.groupe","","00:50:56:90:ee:47","10.41.40.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 bc d0 a9 7c f6 e0-74 e6 9e df e4 3a 9a 4b","No Asset Tag","'+02:00","2026-01-21T16:28:19.000+02:00","cybreconcile","Cloud Agent","4685b369-44e5-4653-ba6f-c714e07e16b9","2025-01-24T12:20:16.000+02:00","2026-04-22T11:20:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Elasticsearch,Production,BDD-ELA DYN,Linux Server,Cloud Agent","141.0" +"354689834","342495239","vpechaetl3.sanef.groupe","","00:50:56:90:40:ee","10.42.16.143","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0e 8b d3 7b 36 51-5f df bd 6a 12 84 de 48","No Asset Tag","'+02:00","2026-02-12T16:12:13.000+02:00","cybsecope","Cloud Agent","9cabca3d-8eb4-4b12-a929-f5ab6bff06e2","2025-08-26T17:09:56.000+02:00","2026-04-22T11:39:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","145.0" +"318433984","328044306","vrameakfk3.sanef-rec.fr","","00:50:56:9c:dc:24","10.45.2.42","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c fe 9f 88 82 15 48-40 9d 56 1f 19 b1 e2 67","No Asset Tag","'+02:00","2026-04-20T09:48:02.000+02:00","cybsupapp","Cloud Agent","fce6b33d-8765-4afe-b545-f94b0f73361c","2025-04-22T14:58:17.000+02:00","2026-04-22T10:53:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","48.0" +"339876286","336780153","vppwdahap1.sanef.groupe","","00:50:56:94:ff:24","10.44.1.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3665","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 ec 9d 08 bd a5 59-6f 2d 6a 02 87 c0 89 b6","No Asset Tag","'+02:00","2026-01-07T11:25:09.000+02:00","cybreconcile","Cloud Agent","bb622005-9a99-443e-b3ef-5401b8c6f17e","2025-07-07T17:41:45.000+02:00","2026-04-22T11:29:16.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,Production,OS-LIN-SRV DYN,BDD","331.0" +"159570303","212142030","vpintanfs1.sanef.groupe","","00:50:56:82:bb:7d, 02:42:ff:d0:be:e0","192.168.20.38,172.17.0.1","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 72 2e ee aa d4 a2-a3 a6 a5 13 14 d9 e6 ae","No Asset Tag","'+02:00","2026-02-24T12:10:54.000+02:00","cybexpapp","Cloud Agent","87fc443a-99ff-498f-96d5-6fdaecc421e7","2023-02-16T15:12:34.000+02:00","2026-04-22T11:20:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Gestion institutionnel","141.0" +"347941250","339425714","vrlogbels2.sanef-rec.fr","","00:50:56:9c:67:bc","10.45.15.165","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c e0 69 ae 3d a8 19-1e 14 8b 09 04 6d 94 24","No Asset Tag","'+02:00","2026-01-21T17:53:23.000+02:00","cybintsys","Cloud Agent","bbe215d2-df89-4f91-9851-de6fa6dada2c","2025-07-31T17:25:49.000+02:00","2026-04-22T11:28:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,BDD-ELA DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"204123362","246220794","vpbotbtsd1.sanef.groupe","","00:50:56:90:26:9b","10.41.23.27","fe80::250:56ff:fe90:269b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e1 e2 cb 27 f7 af-5b 9a d7 aa 01 13 03 56","No Asset Tag","'+02:00","2026-04-16T09:56:24.000+02:00","cybreconcile","Cloud Agent","a5ac4389-1c0d-447e-98fd-8d8e7813c9c9","2023-12-13T19:24:32.000+02:00","2026-04-22T11:13:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,FreeFlow","337.0" +"255418106","294877252","lramebrac3.sanef-rec.fr","","ee:50:33:80:00:82, ee:50:33:80:00:7e","10.45.5.8,169.254.11.217,10.45.2.112,10.45.2.116,10.45.2.120","fe80::ec50:33ff:fe80:82,fe80::ec50:33ff:fe80:7e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00H","/n/Bios Asset Tag :","'+02:00","2026-04-20T12:16:41.000+02:00","grid","Cloud Agent","72e14ef1-7236-4778-866d-6419c0880148","2024-08-02T16:53:13.000+02:00","2026-04-22T11:29:43.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Amelie,Sextan,Cloud Agent,Linux Server,Recette","503.0" +"209598658","249215489","vpbotarmq3.sanef.groupe","","00:50:56:90:c1:c7","10.41.23.24","fe80::250:56ff:fe90:c1c7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 ec 0a f2 ca 61 aa-fc 52 9a d3 14 48 f6 b8","No Asset Tag","'+02:00","2026-04-21T14:34:39.000+02:00","cybreconcile","Cloud Agent","baa70ac2-1a90-4737-ba4f-34229f425cc7","2024-01-15T13:34:51.000+02:00","2026-04-22T08:58:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,flux_libre,Production,FreeFlow","141.0" +"228734286","257688280","vvaflblog1.sanef-rec.fr","","00:50:56:9c:2b:2c","10.45.0.205","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c ba df 72 90 8c 32-ea a3 cf ee 99 52 00 1b","No Asset Tag","'+02:00","2026-03-11T15:11:28.000+02:00","cybadmsys","Cloud Agent","57b74fed-61c9-4fe5-81e5-eb3917cf2205","2024-04-09T17:25:46.000+02:00","2026-04-22T11:09:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server,Recette","144.0" +"139157827","198270294","vmampmet1","","00:50:56:82:1C:70, 00:50:56:82:23:B7, 00:50:56:82:62:FE","10.43.40.77,10.43.4.77,10.41.40.77","fe80::250:56ff:fe82:1c70,fe80::250:56ff:fe82:23b7,fe80::250:56ff:fe82:62fe","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 cd 32 c6 92 58 66-ac b8 8f fe 7e 41 74 68","No Asset Tag","'+02:00","2024-02-13T13:59:47.000+02:00","cybreconcile","Cloud Agent","5f4e0bb0-e430-423d-b645-a68c08edf4b4","2022-09-07T14:26:51.000+02:00","2026-04-22T11:17:03.000+02:00","x86_64","5","SCA,VM,PM,GAV","Obsolete,log4j,OS-LIN-SRV DYN,DEX,Production,Trafic,MIVISU,Cloud Agent,Linux Server,VRF_TRAFIC_DC","876.0" +"173083621","227654993","vdbocharg1.sanef-rec.fr","","00:50:56:9c:9a:ee","10.45.6.36","fe80::250:56ff:fe9c:9aee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7f ec 9f 0d f7 d5-c8 4d f3 a8 27 28 73 a2","No Asset Tag","'+02:00","2026-03-11T10:03:06.000+02:00","cybsecope","Cloud Agent","332ccdec-af18-42c5-b4f1-a1fb9b9af8f2","2023-06-05T15:43:25.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Flux Libre,FreeFlow,flux_libre,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN","338.0" +"313413111","325877000","vrameaquo1.sanef-rec.fr","","00:50:56:90:79:9d","10.100.16.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 0a 4f fb 4e 75 c1-f0 d6 a2 6d 87 7d d7 98","No Asset Tag","'+02:00","2026-04-20T10:01:24.000+02:00","cybsecope","Cloud Agent","4972f0f9-3792-46dd-98ff-9a562b72cf27","2025-04-03T11:30:25.000+02:00","2026-04-22T09:28:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","14.0" +"130583019","192832806","vtexpbdech1.sanef.groupe","","00:50:56:82:32:78","10.45.14.163","fe80::250:56ff:fe82:3278","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f2 5c 11 c8 8e 2e-99 6a 47 bd 0c 40 bf e4","No Asset Tag","'+02:00","2026-03-03T15:15:34.000+02:00","delcour","Cloud Agent","8c9d3abb-5581-4975-bfd8-d8dd1837b75a","2022-07-07T11:28:24.000+02:00","2026-04-22T11:21:37.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,BDD-POS DYN,DECHETS,TAG-SRVEXPOSEINDIRECT,Obsolete,Patrimoine,Recette,VRF_INCONNUE","108.0" +"202866425","245557998","vipeaabst3.sanef.groupe","","00:50:56:90:12:e8","10.41.29.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e0 d3 a8 10 4d 30-d9 48 e3 c1 ce dd 54 4b","No Asset Tag","'+02:00","2026-03-19T12:12:01.000+02:00","cybreconcile","Cloud Agent","c0e868f2-650f-4170-8c54-2f5d9d4b0555","2023-12-06T19:16:31.000+02:00","2026-04-22T11:09:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DSI,BOOST,Cloud Agent,Linux Server","152.0" +"236549943","265276980","vpechatre2.sanef.groupe","","00:50:56:90:2c:2e","10.42.16.134","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 48 20 ea b6 3a 83-1e dd 57 83 4f 65 64 33","No Asset Tag","'+02:00","2025-11-18T15:28:24.000+02:00","cybreconcile","Cloud Agent","795a8b92-3919-4704-9255-37eaf5049f65","2024-05-14T14:27:38.000+02:00","2026-04-22T11:23:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,TALEND","208.0" +"325248248","331288891","vposapkib1.sanef.groupe","","00:50:56:90:d2:21","10.41.20.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 65 6a 7f f9 9d e9-49 e9 27 e1 07 1e 65 fe","No Asset Tag","'+02:00","2026-02-25T17:17:08.000+02:00","cybsupsys","Cloud Agent","b8c5e342-d8c3-4e4b-9a54-a47044b97c84","2025-05-16T14:45:24.000+02:00","2026-04-22T11:19:49.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,Péage","144.0" +"187703359","237569912","lremvbremv2.sanef.groupe","","00:17:a4:77:1c:38, 00:17:a4:77:1c:3c","192.168.108.116,192.168.108.136,192.168.108.138,169.254.1.199,172.16.0.116","fe80::217:a4ff:fe77:1c38,fe80::217:a4ff:fe77:1c3c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000707","","'+02:00","2024-05-15T12:09:38.000+02:00","root","Cloud Agent","8066c65e-2e21-482d-afab-6cf60d6f3b18","2023-09-13T17:37:59.000+02:00","2026-04-22T11:07:34.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard V17 Recette,Cloud Agent,Linux Server,DEX","494.0" +"130583718","192833336","vdameasxt1","","00:50:56:82:7c:10, 66:f9:37:c3:7e:94, fe:90:fc:73:f5:6b, ee:ee:ee:ee:ee:ee","10.45.2.56,10.233.102.128,169.254.25.10","fe80::250:56ff:fe82:7c10,fe80::64f9:37ff:fec3:7e94,fe80::ecee:eeff:feee:eeee","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","3","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 53 e6 8b 2f b6 06-8f 26 29 fa 57 33 f6 e4","No Asset Tag","'+02:00","2025-10-08T13:43:03.000+02:00","cybreconcile","Cloud Agent","084596db-0cec-4dbf-82cb-d7db228164f0","2022-07-07T11:35:58.000+02:00","2026-04-22T11:00:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,BDD-POS DYN,VRF_INCONNUE","245.0" +"255419684","294877149","lramebrac4.sanef-rec.fr","","3e:33:fb:a0:00:da, 3e:33:fb:a0:00:d6","10.45.5.9,169.254.28.85,10.45.2.113,10.45.2.117","fe80::3c33:fbff:fea0:da,fe80::3c33:fbff:fea0:d6","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW52010","/n/Bios Asset Tag :","'+02:00","2026-04-20T14:20:51.000+02:00","reboot","Cloud Agent","4e64c4bc-08ea-4237-bd14-c2fa87d29bb3","2024-08-02T16:53:15.000+02:00","2026-04-22T11:23:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Sextan,Recette,Amelie,OS-LIN-SRV DYN","503.0" +"295952448","317393322","vpvsaasia2","","00:50:56:94:73:30","10.44.2.201","fe80::250:56ff:fe94:7330","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 ab ae 1f bb 23 47-54 83 36 3a 8f 25 bf 3a","No Asset Tag","'-04:00","2026-02-02T12:37:49.000+02:00","tbaad","Cloud Agent","cfc98c51-d86e-4590-b98c-102ab201162a","2025-01-29T12:18:42.000+02:00","2026-04-22T11:13:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0" +"130587954","192835990","vmamrmet1","","00:50:56:82:2C:C1, 00:50:56:82:59:C6, 00:50:56:82:65:99","10.45.2.150,10.45.2.152,10.45.3.150,10.45.3.152,10.45.4.150","fe80::250:56ff:fe82:2cc1,fe80::250:56ff:fe82:59c6,fe80::250:56ff:fe82:6599","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 5b 39 52 6e fc 3f-66 9d f0 ed db db 06 a9","No Asset Tag","'+02:00","2025-10-09T11:39:04.000+02:00","cybadmsys","Cloud Agent","0c5baa2e-99a4-4a1d-9d82-87138a30c4f5","2022-07-07T12:01:27.000+02:00","2026-04-22T08:30:33.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Trafic,Recette,Sans,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,DEX,VRF_INCONNUE,MIVISU","878.0" +"409462641","364910388","vplogbels1","","00:50:56:94:27:14","10.44.7.39","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 72 af 1d 51 93 ac-40 c3 18 44 d2 07 46 77","No Asset Tag","'+02:00","2026-04-07T11:55:21.000+02:00","cybsecope","Cloud Agent","0ac27646-c8f6-4b55-bb66-f82ddbab5b1a","2026-03-18T12:16:49.000+02:00","2026-04-22T10:57:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"238565707","269520472","vibocmedi1","","00:50:56:90:35:fb","10.41.22.71","fe80::250:56ff:fe90:35fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 33 f6 a2 fc e7 53-c6 0c e2 93 21 20 1c f1","No Asset Tag","'+02:00","2026-03-16T16:10:52.000+02:00","cybsupibm","Cloud Agent","c7705ff9-17c4-4cb4-9646-600201e97957","2024-05-22T16:40:38.000+02:00","2026-04-22T08:22:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,flux_libre,FreeFlow,Flux Libre","336.0" +"131273902","193319976","lpaiigrid1.sanef.groupe","","00:17:a4:77:0c:dc","10.30.12.34","fe80::b4cb:388d:c849:b1e3","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Computers / Server","HPE ProLiant BL460c G8 Server","16","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","96643","HP I31 05/24/2019","CZJ41200VM","","'+02:00","2025-10-21T09:38:07.000+02:00","cybadmbdd","Cloud Agent","002e7288-53c9-4f0f-92d6-9ddb4379e29d","2022-07-12T15:36:19.000+02:00","2026-04-22T08:18:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,DSI,VRF_INCONNUE,Obsolete,ORACLE,Bases de Données","346.0" +"198942271","243682415","lpinfbcos1.sanef.groupe","","ee:50:33:80:00:74, ee:50:33:80:00:75","10.41.40.179","fe80::ec50:33ff:fe80:74,fe80::ec50:33ff:fe80:75","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63821","HPE I44 06/13/2025","VCGCIOJ00F","/n/Bios Asset Tag :","'+02:00","2026-01-27T11:28:45.000+02:00","cybadmbdd","Cloud Agent","665e0f05-efd7-4f34-b9cf-95a9bb35b5fd","2023-11-14T13:01:08.000+02:00","2026-04-22T10:53:34.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,COSWIN","500.0" +"208831505","248780233","vibotbtsd1.sanef.groupe","","00:50:56:90:8d:fc","10.41.23.145","fe80::250:56ff:fe90:8dfc","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f9 75 7a 17 d8 85-7a 6d 1d 7a 09 a1 fa 86","No Asset Tag","'+02:00","2026-03-18T12:28:10.000+02:00","cybreconcile","Cloud Agent","64fbec89-2595-45d9-80d3-6fc198e9acaf","2024-01-10T18:16:50.000+02:00","2026-04-22T11:13:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,flux_libre,FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production","141.0" +"349737402","340112646","vrechaetl2.sanef-rec.fr","","00:50:56:9c:79:1e","10.45.11.207","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6c 3e 7a e8 f8 7c-ce 99 bf e3 76 96 4a df","No Asset Tag","'+02:00","2026-03-03T15:14:47.000+02:00","root","Cloud Agent","4b793303-2b37-48e1-bd68-f3189804f66c","2025-08-07T10:37:01.000+02:00","2026-04-22T08:12:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","143.0" +"193617668","240981755","vibocs4as2.sanef.groupe","","00:50:56:90:7c:d5","10.41.22.73","fe80::250:56ff:fe90:7cd5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f5 ec 2b 7b 8c 2c-52 8a af 2e 25 d3 19 5f","No Asset Tag","'+02:00","2026-03-16T16:12:26.000+02:00","cybsupibm","Cloud Agent","960ccdc0-4836-4d1d-abce-d382d6537655","2023-10-16T12:49:07.000+02:00","2026-04-22T11:05:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,Cloud Agent,Linux Server,ServersInCyberark,OS-LIN-SRV DYN,Flux Libre","141.0" +"213853630","251124643","lampasu2.sanef.groupe","","00:17:A4:77:10:74, 00:17:A4:77:10:70","10.43.4.194,169.254.70.12,10.41.40.191,10.41.40.193","fe80::217:a4ff:fe77:1074,fe80::217:a4ff:fe77:1070","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","4","2500","Intel(R) Xeon(R) CPU E5-2609 v2 @ 2.50GHz","32069","HP I31 05/24/2019","CZJ41604RZ","","'+02:00","2025-10-08T15:07:14.000+02:00","cybastapp","Cloud Agent","b8ec5715-df07-4b89-999b-b6411d5ea362","2024-02-05T19:25:54.000+02:00","2026-04-22T08:09:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","Obsolete,DSI,ASUR,OS-LIN-SRV DYN,Cloud Agent,Linux Server","527.0" +"204348432","246324123","vrdsiaans1.sanef-rec.fr","","00:50:56:9c:78:6e","10.45.0.165","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d9 de f6 e7 9d 09-3b b0 81 ad 08 80 bc 9f","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","cybadmsys","Cloud Agent","6be0af5c-8046-463c-a904-d3cb1b4994bc","2023-12-14T17:50:58.000+02:00","2026-04-22T08:09:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Ansible,OS-LIN-SRV DYN,MID-NGINX DYN,Recette,Cloud Agent,Linux Server","142.0" +"411157863","365555384","vplogalst1","","00:50:56:94:79:08","10.44.7.51","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 8d 8c fb b9 c5 c1-0b ab 4b 23 40 9a 71 ae","No Asset Tag","'+02:00","2026-04-21T14:14:45.000+02:00","cybintsys","Cloud Agent","3c3f4ea8-414c-4237-a2e0-10d2a40c7bcd","2026-03-24T19:08:09.000+02:00","2026-04-22T08:08:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","13.0" +"416488481","367846723","vpbotatvv1.sanef.groupe","","00:50:56:90:02:fb","10.41.23.11","fe80::250:56ff:fe90:2fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 d4 dd 86 65 f5 16-0b 8c 6e ec d1 4f 4a 7c","No Asset Tag","'+02:00","2026-04-21T16:29:59.000+02:00","cybreconcile","Cloud Agent","da474021-93a7-4460-8867-cfe17ed97189","2026-04-16T17:24:10.000+02:00","2026-04-22T08:07:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","142.0" +"229372706","258003126","vpsupbcen1.sanef.groupe","","00:50:56:8d:35:66","10.44.5.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d 62 ea 55 62 01 38-de 47 34 6e c2 2d dc 9c","No Asset Tag","'+02:00","2026-03-30T10:23:47.000+02:00","cybadmroot","Cloud Agent","651cda1a-b8ed-4ecb-8d5c-f5a97390c219","2024-04-11T16:14:23.000+02:00","2026-04-22T08:02:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","332.0" +"131273947","193320248","vpaiiacen1","","00:50:56:82:ad:5b","10.30.12.121","fe80::e83e:8fa8:f676:77fe","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9837","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 21 ef fd 6c 41 20-63 8c 6d f2 4a 05 89 29","No Asset Tag","'+02:00","2026-03-16T14:02:32.000+02:00","cybreconcile","Cloud Agent","be05e162-5eb7-4c0a-89a5-aa14243edaf2","2022-07-12T15:40:43.000+02:00","2026-04-22T08:01:07.000+02:00","x86_64","4","SCA,VM,PM,GAV","BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,VRF_INCONNUE,Cloud Agent,Linux Server,DSI,Centreon,Obsolete,log4j,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans","703.0" +"187703888","237569915","lremvbremv1.sanef.groupe","","00:17:a4:77:1c:70, 00:17:a4:77:1c:74","192.168.108.107,192.168.108.137,169.254.7.191,172.16.0.107","fe80::217:a4ff:fe77:1c70,fe80::217:a4ff:fe77:1c74","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070F","","'+02:00","2024-05-15T11:35:39.000+02:00","root","Cloud Agent","c867e106-2418-48c4-ab51-415175cbefc9","2023-09-13T17:37:44.000+02:00","2026-04-22T07:59:02.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard V17 Recette,EMV,OS-LIN-SRV DYN,DEX","499.0" +"213858750","251130288","spasuagsm1","","ec:eb:b8:9a:5a:81, ec:eb:b8:9a:5a:80","10.43.4.206,10.41.40.206","fe80::eeeb:b8ff:fe9a:5a81,fe80::eeeb:b8ff:fe9a:5a80","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/20/2023","CZJ81900F3","","'+02:00","2023-09-25T10:38:00.000+02:00","cybadmsys","Cloud Agent","aaf2f3fb-16f6-4719-827a-1c5a4433c4a5","2024-02-05T20:45:02.000+02:00","2026-04-22T07:57:52.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,DSI,BDD-POS DYN,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server","524.0" +"187703886","237569914","lremvaste2","","00:17:a4:77:1c:7c, 00:17:a4:77:1c:78","192.168.107.108,192.168.108.108","fe80::217:a4ff:fe77:1c7c,fe80::217:a4ff:fe77:1c78","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070G","","'+02:00","2025-12-10T13:15:30.000+02:00","lamhajeb-ext","Cloud Agent","fa25cdc0-e6c3-449a-99b3-2d75d3f360d5","2023-09-13T17:37:30.000+02:00","2026-04-22T07:57:38.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,OS-LIN-SRV DYN,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard V17 Recette","676.0" +"325041070","331288683","vpaflarat1.sanef.groupe","","00:50:56:9c:23:d5","10.46.34.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c b0 e8 0c 53 11 be-42 2b 08 cc cb b1 02 20","No Asset Tag","'+02:00","2026-03-30T14:04:21.000+02:00","root","Cloud Agent","bcc0c71a-405c-4015-b192-30efadcda31b","2025-05-15T17:13:03.000+02:00","2026-04-22T07:57:01.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,flux_libre,Production,OS-LIN-SRV DYN","138.0" +"131396410","193417063","vpsimaapi2.sanef.groupe","","00:50:56:82:39:17","10.30.11.10","fe80::2f0d:87b4:78ff:6925","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16046","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 60 ca 19 a6 8f a4-ed b4 cc db 99 49 a3 db","No Asset Tag","'+02:00","2025-11-21T12:21:58.000+02:00","cybadmsys","Cloud Agent","d18702e5-ad51-4be0-945b-0920c944f6e0","2022-07-13T09:25:38.000+02:00","2026-04-22T07:56:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,Trafic,Production,Obsolete,VRF_INCONNUE,BDD-ELA DYN,Flux Libre","334.0" +"384522351","355028087","vrgrsangx1.sanef-rec.fr","","00:50:56:9c:84:2a","10.45.9.177","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c be 62 05 96 4f e9-f8 69 c8 bf b5 c1 5e 7a","No Asset Tag","'+02:00","2026-02-19T10:09:59.000+02:00","cybintsys","Cloud Agent","b8a80dfd-6688-4fb5-a115-73e39326dadb","2025-12-17T12:56:43.000+02:00","2026-04-22T07:56:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette,MID-NGINX DYN,BDD-POS DYN","147.0" +"160500506","213663599","vppintaweb2.sanef.groupe","","02:42:ac:5f:6a:ca, 00:50:56:82:2c:5f","172.17.0.1,192.168.20.21","fe80::250:56ff:fe82:2c5f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 a9 c8 ab c6 0d b0-3a 1e 06 f1 4a a6 bf f5","No Asset Tag","'+02:00","2026-04-14T14:27:12.000+02:00","cybreconcile","Cloud Agent","f9805222-188f-487e-82d1-666db9d814e6","2023-02-24T17:15:52.000+02:00","2026-04-22T07:55:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,Gestion institutionnel,Cloud Agent,Linux Server","65.0" +"213855638","251126076","spasuagsm3","","ec:eb:b8:9a:5a:b5, ec:eb:b8:9a:5a:b4","10.43.4.211,10.41.40.211","fe80::eeeb:b8ff:fe9a:5ab5,fe80::eeeb:b8ff:fe9a:5ab4","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/20/2023","CZJ81900F0","","'+02:00","2025-10-07T11:53:01.000+02:00","cybastapp","Cloud Agent","0f1eb777-2645-4602-9997-0b1ea4e73c59","2024-02-05T19:49:18.000+02:00","2026-04-22T07:52:51.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server,Obsolete,ASUR","524.0" +"332262809","333860615","vpameahtp1.sanef.groupe","","00:50:56:90:87:8b, 00:50:56:90:8c:4d","10.41.41.50,10.41.41.52,10.43.4.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 cf 7d a0 3a 2b 64-83 8b cf 80 29 ae d8 3e","No Asset Tag","'+02:00","2025-10-29T10:31:22.000+02:00","cybastapp","Cloud Agent","bb63cacb-2de4-4628-918b-2d20b9fd9f3c","2025-06-10T12:42:03.000+02:00","2026-04-22T07:51:53.000+02:00","x86_64","4","SCA,VM,GAV","Cloud Agent,Linux Server,Sextan,Production,MID-NGINX DYN,OS-LIN-SRV DYN","278.0" +"240414317","274791588","vibocharg1","","00:50:56:90:c9:83","10.41.22.70","fe80::250:56ff:fe90:c983","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d6 b6 2f bd 3b 24-eb 93 26 ea 57 fe f0 ce","No Asset Tag","'+02:00","2026-03-16T16:10:12.000+02:00","cybsupibm","Cloud Agent","0bcf5151-cdd0-493d-802c-6c66c677630f","2024-05-30T12:39:29.000+02:00","2026-04-22T07:50:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,flux_libre,FreeFlow,Flux Libre","141.0" +"255409754","294877165","lramebrac1.sanef-rec.fr","","ee:50:33:80:00:78, ee:50:33:80:00:7c","10.45.2.110,10.45.2.114,10.45.2.119,10.45.5.6,169.254.16.47","fe80::ec50:33ff:fe80:78,fe80::ec50:33ff:fe80:7c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00G","/n/Bios Asset Tag :","'+02:00","2026-04-20T11:39:32.000+02:00","grid","Cloud Agent","814094fb-7668-435d-a867-f7df839822d0","2024-08-02T16:53:15.000+02:00","2026-04-22T07:48:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Amelie,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette","500.0" +"208777939","248746384","vibotangx1.sanef.groupe","","00:50:56:90:d2:ee","10.41.23.151","fe80::250:56ff:fe90:d2ee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11728","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 68 3d 7f fc 70 0b-92 c5 64 74 b1 0e c7 28","No Asset Tag","'+02:00","2026-03-17T10:52:00.000+02:00","cybreconcile","Cloud Agent","a5986775-8447-4cac-9d8e-cbd9cbe765e6","2024-01-10T12:54:55.000+02:00","2026-04-22T07:46:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Production,MID-NGINX DYN,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0" +"249836031","288925765","lrdsibrac2.sanef-rec.fr","","3e:33:fb:a0:00:ca, 3e:33:fb:a0:00:ce","10.45.7.10,10.45.5.20","fe80::3c33:fbff:fea0:ca,fe80::3c33:fbff:fea0:ce","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200V","/n/Bios Asset Tag :","'+02:00","2026-03-04T18:18:46.000+02:00","reboot","Cloud Agent","0d957134-7830-49ff-a656-5c9d578b5bb7","2024-07-10T15:12:04.000+02:00","2026-04-22T07:45:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,ORACLE","146.0" +"391148476","357841487","vrdsialab2.sanef-rec.fr","","00:50:56:9c:41:e0","10.45.16.36","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 86 7d b8 28 a5 60-5a 50 b9 96 e5 7a 71 a8","No Asset Tag","'+02:00","2026-03-12T13:05:37.000+02:00","root","Cloud Agent","4cbfd300-075b-4e56-b552-646b79038eb6","2026-01-12T17:39:10.000+02:00","2026-04-22T07:45:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,test_rhel9,Recette","144.0" +"340070824","336780159","vppwdapod1.sanef.groupe","","00:50:56:94:6a:23","10.44.1.200","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 c3 5e ac d9 70 a8-34 da 91 3e 67 a7 a1 3d","No Asset Tag","'+02:00","2026-01-07T11:14:16.000+02:00","cybreconcile","Cloud Agent","4284b3bb-d420-4bfc-87c2-206c1d4ead2a","2025-07-08T10:13:26.000+02:00","2026-04-22T07:43:02.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","332.0" +"175464748","229282007","vvbotatsp2.sanef-rec.fr","","42:d1:61:b3:ec:74, ca:c1:e9:e2:85:97, ce:f5:66:28:3e:64, e6:7a:28:bb:34:3a, 00:50:56:9c:29:20, 86:6d:28:44:d4:dc, ba:a0:83:64:91:4f, d2:9a:a7:f0:5b:f0","10.45.6.158,10.89.0.1","fe80::40d1:61ff:feb3:ec74,fe80::c8c1:e9ff:fee2:8597,fe80::ccf5:66ff:fe28:3e64,fe80::e47a:28ff:febb:343a,fe80::250:56ff:fe9c:2920,fe80::846d:28ff:fe44:d4dc,fe80::b8a0:83ff:fe64:914f,fe80::d09a:a7ff:fef0:5bf0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 6e 77 2f 09 41 e3-c2 26 21 99 bc 7c 16 7c","No Asset Tag","'+02:00","2026-03-10T11:29:16.000+02:00","cybreconcile","Cloud Agent","4a14bfd7-e9a4-4a27-8ef7-1d35494fcd66","2023-06-22T17:12:46.000+02:00","2026-04-22T07:42:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,FreeFlow,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"192389444","240321284","vppeaabst1.sanef.groupe","","00:50:56:90:ee:11","10.41.20.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 a4 6b aa c2 b4 1d-66 50 bb 82 68 7a e8 40","No Asset Tag","'+02:00","2026-04-16T14:30:59.000+02:00","cybreconcile","Cloud Agent","03ac2c85-231e-4577-a87b-1011f771b865","2023-10-10T12:52:07.000+02:00","2026-04-22T07:41:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","485.0" +"213125599","250793707","vpbckangw4","","00:50:56:9a:d7:cd","10.44.3.165","fe80::250:56ff:fe9a:d7cd","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","3626","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a e4 61 03 48 01 3c-90 0b 8b e3 e9 c1 5a f6","No Asset Tag","'+02:00","2026-02-03T17:25:25.000+02:00","tbaad-ext","Cloud Agent","c045d0c9-2317-4051-8f6c-a26ad473874d","2024-02-01T12:45:52.000+02:00","2026-04-22T07:41:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","53.0" +"220595112","253937959","vvbooarep2.sanef-rec.fr","","00:50:56:9c:e0:73","10.45.6.81","fe80::250:56ff:fe9c:e073","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 2a 59 5d 55 c9 bb-4a 0a 4e 97 69 02 ce c5","No Asset Tag","'+02:00","2026-03-09T16:01:19.000+02:00","cybintsys","Cloud Agent","3b74b962-7e4e-47fd-ac08-89e1bc617c16","2024-03-07T12:56:24.000+02:00","2026-04-22T07:40:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,Flux Libre,flux_libre","141.0" +"130584251","192833335","node3","","00:50:56:82:3f:a3, 66:a4:6f:e0:c4:da, ee:ee:ee:ee:ee:ee, 22:09:18:03:9a:76","10.45.2.58,10.233.71.0,169.254.25.10","fe80::c251:be9c:d8ba:9277,fe80::64a4:6fff:fee0:c4da,fe80::ecee:eeff:feee:eeee","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 37 fd 56 01 65 85-f2 6f 3d 1f d8 40 d0 c6","No Asset Tag","'+02:00","2025-10-08T13:43:03.000+02:00","cybexpapp","Cloud Agent","3d718006-e555-46cc-b3f8-d1a8be458214","2022-07-07T11:37:04.000+02:00","2026-04-22T07:40:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,VRF_INCONNUE,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server","245.0" +"349775614","340136514","vpodaboem2.sanef.groupe","","52:54:00:eb:9c:78, 52:54:00:4e:87:ca, 52:54:00:df:ed:d3","192.168.17.129,10.42.15.90,10.42.15.92,10.42.15.95,10.42.15.96,192.168.17.4","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-10-03T14:51:30.000+02:00","grid","Cloud Agent","34fb5e73-b763-4faf-b472-8978c8d6e474","2025-08-07T14:49:18.000+02:00","2026-04-22T07:39:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent","339.0" +"205308048","246811798","vpbotarep2.sanef.groupe","","00:50:56:90:54:97","192.168.21.67","fe80::250:56ff:fe90:5497","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 12 e4 d6 12 27 c2-13 42 c2 d3 9f 32 ab e9","No Asset Tag","'+02:00","2026-04-21T10:01:57.000+02:00","cybreconcile","Cloud Agent","85846a96-9265-4ae1-ae41-7a30e78eecd7","2023-12-20T13:07:22.000+02:00","2026-04-22T07:39:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Flux Libre,OS-LIN-SRV DYN,flux_libre,log4j,FreeFlow,Cloud Agent,Linux Server","332.0" +"416742830","367956475","vrzbxaprx1.sanef-rec.fr","","00:50:56:9c:54:dd","10.45.15.207","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 79 51 76 96 f1 f4-04 23 a4 72 c4 09 43 4f","No Asset Tag","'+02:00","2026-04-16T12:17:54.000+02:00","cybsecope","Cloud Agent","68ae297c-956a-4d4d-8828-0f9bfcb6cfd7","2026-04-17T16:48:22.000+02:00","2026-04-22T07:39:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"156914176","209819757","vpgmoaprx1.sanef.groupe","","00:50:56:82:af:7a","192.168.40.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 d6 c5 11 14 04 ba-46 53 b6 a4 26 48 12 8d","No Asset Tag","'+02:00","2026-04-15T14:30:47.000+02:00","cybexppct","Cloud Agent","3eb07219-8801-441f-a52a-1f9809474f39","2023-01-26T16:54:00.000+02:00","2026-04-22T07:38:46.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,TAG-SRVEXPOSEINTERNET,COSWIN,Production,OS-LIN-SRV DYN,DSI,VRF_INCONNUE","132.0" +"298436585","319181980","vpameapmv1.sanef.groupe","","00:50:56:8f:7e:56, 00:50:56:8f:4f:57","172.16.255.34,10.44.201.3,10.44.201.6,10.44.201.7,10.44.201.8,10.44.201.9,10.44.201.10","fe80::fcd1:4596:6e71:68c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","11729","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 0f 39 3f f5 66 8a ad-79 e9 6a 0e 2e 03 a1 24","No Asset Tag","'+02:00","2025-11-06T11:55:44.000+02:00","cybreconcile","Cloud Agent","a6ed69dc-9ded-4025-b12a-bc53aa7e5f63","2025-02-07T10:24:08.000+02:00","2026-04-22T07:38:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,TAG-MIVISUPMV,TAG-SIC,OS-LIN-SRV DYN","140.0" +"334474020","336780138","vrdsiarad2.sanef-rec.fr","","00:50:56:9c:bf:c1","10.45.14.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 0d e2 97 96 64 9a-44 c6 d2 8d 1d 8c 7b c6","No Asset Tag","'+02:00","2026-04-21T10:44:57.000+02:00","cybadmroot","Cloud Agent","3f63d0e7-54c5-4227-a8b2-60721c718d13","2025-06-18T17:34:39.000+02:00","2026-04-22T11:09:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Radius,Recette,Cloud Agent,Linux Server,OS-LIN-SRV DYN","14.0" +"180394921","232823329","vrrauafrt2.sanef-rec.fr","","00:50:56:9c:c6:7d, 00:50:56:9c:aa:2f","10.45.5.38,10.45.9.236","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 23 17 6e 89 d4 65-93 ec 9d d5 6b 06 83 e1","No Asset Tag","'+02:00","2026-04-21T16:00:40.000+02:00","cybadmsys","Cloud Agent","525a37e9-3602-4d61-b803-11b1c97b105e","2023-07-28T12:38:15.000+02:00","2026-04-22T07:37:53.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,DSI,OS-LIN-SRV DYN,Cloud Agent,Linux Server","72.0" +"221418055","254288584","vposapquo1.sanef.groupe","","00:50:56:90:1f:e1","10.100.16.17","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 de 26 7d 05 8e 96-46 de 3a 71 de 50 c8 52","No Asset Tag","'+02:00","2026-02-26T12:08:15.000+02:00","cybadmsys","Cloud Agent","4b48a16f-2b2a-45bf-91f8-c4ef7cbdff20","2024-03-11T18:51:32.000+02:00","2026-04-22T07:37:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production","144.0" +"138992971","198162634","vpdecasas6","","00:50:56:82:37:c1","10.30.11.154","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2200","Intel(R) Xeon(R) CPU E5-4660 v4 @ 2.20GHz","257964","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 2b 40 e9 8a e9 d8-a0 1e a2 a8 2d ab 8e 0f","No Asset Tag","'+02:00","2026-03-25T11:28:20.000+02:00","cybreconcile","Cloud Agent","c3e072b4-8e43-4338-ab89-6f9896d3609a","2022-09-06T12:18:18.000+02:00","2026-04-22T07:37:25.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_INCONNUE,DSI,Cloud Agent,Linux Server,SAS,OS-LIN-SRV DYN,Production,Finances Comptabilité / Consolidation,Obsolete","71.0" +"272327301","300954741","vvbotaapm1.sanef-rec.fr","","5a:09:23:e9:c6:41, 8e:39:85:ab:6d:31, 1a:8a:d0:4e:4a:43, 00:50:56:9c:18:ae, 02:0d:59:ac:68:df, 32:df:9a:a9:82:3a, ba:10:c1:f3:2b:de","10.45.6.137,10.89.0.1","fe80::5809:23ff:fee9:c641,fe80::8c39:85ff:feab:6d31,fe80::188a:d0ff:fe4e:4a43,fe80::250:56ff:fe9c:18ae,fe80::d:59ff:feac:68df,fe80::30df:9aff:fea9:823a,fe80::b810:c1ff:fef3:2bde","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 42 4c 71 97 de 6c-e5 40 df bf 2f 98 e3 a7","No Asset Tag","'+02:00","2026-03-12T12:55:50.000+02:00","kapschsysuser","Cloud Agent","8e02ac89-8937-4583-b501-5d54d7a7ff99","2024-10-15T12:09:12.000+02:00","2026-04-22T07:36:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Linux Server,Cloud Agent","140.0" +"143622461","201024877","vpemvaadm1.sanef.groupe","","00:50:56:82:3f:ac","192.168.100.120","fe80::250:56ff:fe82:3fac","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 94 1a 2b 26 46 c5-68 17 52 2c 7d 31 2e c2","No Asset Tag","'+02:00","2026-03-19T12:55:29.000+02:00","reboot","Cloud Agent","73800d87-faef-4e19-88bf-f430624893f1","2022-10-11T17:24:07.000+02:00","2026-04-22T07:35:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Supervision/Admin,EMV,VRF_INCONNUE","106.0" +"202390516","245295390","vrameastg1.sanef-rec.fr","","00:50:56:9c:50:2f, 00:50:56:9c:a8:a5","10.45.4.10,10.45.2.10,10.45.2.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f6 73 b7 0a f4 df-55 19 7b 0c 02 1c 3d 05","No Asset Tag","'+02:00","2026-04-21T10:41:12.000+02:00","cybadmsys","Cloud Agent","17f4fe5e-9d61-4389-b6ac-7ee108a71fa9","2023-12-04T14:02:28.000+02:00","2026-04-22T07:35:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","SSTG,DEX,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","95.0" +"354695010","342495683","vpechaetl2.sanef.groupe","","00:50:56:90:59:ff","10.42.16.142","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 cc 42 ba c4 dc a0-5d 1b 90 2d 9b ff 83 97","No Asset Tag","'+02:00","2026-02-12T16:12:14.000+02:00","cybsecope","Cloud Agent","90a09695-211c-4ae1-8779-9584eb44c3a1","2025-08-26T17:17:27.000+02:00","2026-04-22T07:34:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","145.0" +"176096530","229734616","vvboomocr2.sanef-rec.fr","","00:50:56:9c:08:ca","10.45.6.78","fe80::250:56ff:fe9c:8ca","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d1 8d 24 87 25 73-ff 38 59 35 ce 37 cc a8","No Asset Tag","'+02:00","2026-03-09T16:40:08.000+02:00","cybreconcile","Cloud Agent","79b897c6-80b0-4561-8dd4-4e84de31dafa","2023-06-27T15:28:32.000+02:00","2026-04-22T07:33:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,FreeFlow,Flux Libre,Cloud Agent,Linux Server","141.0" +"230348234","258581748","vradvaapp1.sanef-rec.fr","","00:50:56:9c:80:06","10.45.13.3","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 33 fc f3 60 48 45-df 57 6e 3a f8 87 cd 75","No Asset Tag","'+02:00","2026-02-18T18:45:29.000+02:00","cybastsys","Cloud Agent","64984566-669b-48c3-87e2-c7e5f39edfc2","2024-04-16T14:00:00.000+02:00","2026-04-22T07:32:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server","333.0" +"194461477","241443119","vpgesapent1","","00:50:56:9c:a9:32","10.30.11.140","fe80::250:56ff:fe9c:a932","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","5966","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c cc 61 51 29 81 1d-78 62 8c 9d 51 6d 5b 1f","No Asset Tag","'+02:00","2024-03-19T16:59:37.000+02:00","cybreconcile","Cloud Agent","824c87ce-2488-41d8-a52c-5ba974fca43a","2023-10-20T16:41:13.000+02:00","2026-04-22T07:32:02.000+02:00","x86_64","3","SCA,VM,PM,GAV","Obsolete,log4j,Cloud Agent,Linux Server,DSI,ITOP","512.0" +"398236665","360588010","vpdsibetc2.sanef.groupe","","00:50:56:9c:a9:8e","10.44.5.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c a3 32 6a 14 8e 9d-05 55 08 bc 3b 8a cb 57","No Asset Tag","'+02:00","2026-02-11T18:47:33.000+02:00","cybadmbdd","Cloud Agent","34a9d613-cd50-4c89-8f85-f9d729b9676f","2026-02-06T12:51:47.000+02:00","2026-04-22T07:32:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server","141.0" +"384764086","355156890","vtpatbsip1.sanef-rec.fr","","00:50:56:9c:22:64","10.45.9.132","fe80::94dd:5e60:6164:3b39","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","39952","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 25 d7 b4 64 d1 99-19 7b 7a 20 80 9e 93 41","No Asset Tag","'+02:00","2026-04-14T15:51:51.000+02:00","cybsupapp","Cloud Agent","3af681c4-bc88-42f4-91b2-c23ad4b8a4c8","2025-12-18T12:21:10.000+02:00","2026-04-22T07:31:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN","56.0" +"175565773","229347361","vvbotrtms2.sanef-rec.fr","","00:50:56:9c:d9:16","10.45.6.165","fe80::250:56ff:fe9c:d916","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c9 88 2a 81 80 57-4d c5 2f 74 05 59 16 4c","No Asset Tag","'+02:00","2026-03-10T16:34:24.000+02:00","cybreconcile","Cloud Agent","16b42a31-3a64-4db8-ada9-536c1851e7be","2023-06-23T11:42:20.000+02:00","2026-04-22T07:30:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,flux_libre,Recette,FreeFlow","145.0" +"240205944","279077695","lrinfbcos1.sanef.groupe","","3e:33:fb:a0:00:a8","10.45.9.196","fe80::3c33:fbff:fea0:a8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200L","/n/Bios Asset Tag :","'+02:00","2026-01-12T12:43:30.000+02:00","cybadmsys","Cloud Agent","d56a3b8a-da4c-4683-a2ba-075eb895ee72","2024-06-10T12:34:16.000+02:00","2026-04-22T07:30:21.000+02:00","x86_64","3","SCA,VM,PM,GAV","COSWIN,Linux Server,Cloud Agent,Recette,OS-LIN-SRV DYN","502.0" +"208776146","248746834","vibotarmq2.sanef.groupe","","00:50:56:90:db:03","10.41.23.142","fe80::250:56ff:fe90:db03","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 d8 4e fb 0b bf 0a-b1 ff 2b 2f 68 7b b8 74","No Asset Tag","'+02:00","2026-03-17T12:05:56.000+02:00","cybreconcile","Cloud Agent","02404df1-e3e6-4541-9dda-fddb0c86b4d7","2024-01-10T12:58:42.000+02:00","2026-04-22T07:30:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server","141.0" +"267466879","298462274","vpracaquo1.sanef.groupe","","00:50:56:90:7f:5b","10.100.16.18","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 2e 0b 0e 39 5e 0e-64 e3 3d 31 d2 d6 b5 b7","No Asset Tag","'+02:00","2026-04-13T09:50:32.000+02:00","cybreconcile","Cloud Agent","447db307-ccdc-4989-8c0c-e51b96f27990","2024-09-24T16:55:13.000+02:00","2026-04-22T07:29:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"238271425","269262511","vipeahbst3.sanef.groupe","","00:50:56:90:37:19","10.41.29.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 17 95 89 c2 84 ed-2c 8f 91 a2 95 54 83 8a","No Asset Tag","'+02:00","2026-03-19T15:49:49.000+02:00","cybexpapp","Cloud Agent","ddb444b2-d7ae-4fc7-a6a1-1674d9ed38cb","2024-05-21T14:55:10.000+02:00","2026-04-22T07:29:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow","141.0" +"149877032","205250032","vrintaels1.sanef.groupe","","00:50:56:82:02:34","10.45.1.197","fe80::250:56ff:fe82:234","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 ac 73 da 72 85 c5-c8 e3 d2 3c 4b 23 61 01","No Asset Tag","'+02:00","2026-02-23T13:28:31.000+02:00","cybadmsys","Cloud Agent","f2b5da61-0e90-43e5-b315-8d3c3ee6bdf6","2022-11-29T10:44:36.000+02:00","2026-04-22T07:29:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,OS-LIN-SRV DYN,BDD-ELA DYN,Gestion institutionnel","141.0" +"158184886","210914051","vppintaprx1.sanef.groupe","","00:50:56:82:66:76","192.168.20.19","fe80::250:56ff:fe82:6676","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 98 5e 01 55 5c ea-d6 a7 9f f8 28 64 bc a9","No Asset Tag","'+02:00","2026-04-14T14:21:02.000+02:00","cybreconcile","Cloud Agent","7ddfba67-cd2f-4aad-85b8-b9b1d639cab3","2023-02-06T11:51:10.000+02:00","2026-04-22T07:28:31.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,TAG-SRVEXPOSEINTERNET,Gestion institutionnel,OS-LIN-SRV DYN,Cloud Agent,Linux Server","132.0" +"131405805","193425044","vsapbdd1.sanef.groupe","","00:50:56:82:58:5A","10.30.10.139","fe80::250:56ff:fe82:585a","Linux / Server","The CentOS Project CentOS 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7873","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ef 1d 10 5c 70 1c-1a e3 77 a7 40 8d 08 a2","No Asset Tag","'+02:00","2023-01-12T08:06:16.000+02:00","cybreconcile","Cloud Agent","26e354e7-4929-4e5b-9b75-9e6636cd71cd","2022-07-13T10:39:43.000+02:00","2026-04-22T07:28:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,Cloud Agent,Linux Server,log4j,BDD-POS DYN,SAP,Production,Finances Comptabilité / Consolidation,DFIN","351.0" +"200577338","244425330","vptrabkme1.sanef.groupe","","00:50:56:90:b4:65","10.41.40.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 67 97 da 01 0d b9-6f df 41 7d 19 bc 76 d8","No Asset Tag","'+02:00","2026-04-14T11:33:55.000+02:00","cybreconcile","Cloud Agent","b559369d-392d-45c1-a640-f40c99f06c85","2023-11-23T17:01:49.000+02:00","2026-04-22T07:27:00.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,OS-LIN-SRV DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,KMELC","130.0" +"202807661","245521799","viosapast1.sanef.groupe","","00:50:56:90:37:69","10.41.8.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 77 e5 7d 99 99 79-cd 16 76 8d 84 16 ad 81","No Asset Tag","'+02:00","2026-02-19T11:14:13.000+02:00","cybreconcile","Cloud Agent","65f9b2dc-066e-4f1e-8b79-db849af7b5da","2023-12-06T13:29:33.000+02:00","2026-04-22T07:26:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,DEX,OS-LIN-SRV DYN","142.0" +"309388699","324179537","vrpeaakib1.sanef-rec.fr","","00:50:56:9c:d4:ef","10.45.10.105","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c aa d6 07 4c a1 bf-da 60 2e f3 68 89 02 99","No Asset Tag","'+02:00","2026-02-18T18:42:03.000+02:00","cybsecope","Cloud Agent","8c5eb5e7-c486-41a3-8d42-17501ebb7b76","2025-03-19T17:46:47.000+02:00","2026-04-22T07:26:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,Linux Server,Cloud Agent,BDD,Recette","54.0" +"130588224","192836201","vmamrpmv2","","00:50:56:82:25:CC, 00:50:56:82:39:36, 00:50:56:82:6C:80","10.30.16.73,10.30.16.81,10.30.16.82,10.30.16.84,10.30.16.86,10.30.16.88,10.32.16.73,10.32.16.81,10.32.16.82,10.32.16.84,10.32.16.86,10.32.16.88,10.33.16.81","fe80::250:56ff:fe82:25cc,fe80::250:56ff:fe82:3936,fe80::250:56ff:fe82:6c80","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 95 cf d8 6c 28 75-6d 67 f9 88 4b f2 99 cd","No Asset Tag","'+02:00","2025-10-09T11:39:24.000+02:00","cybexpapp","Cloud Agent","5f97bdcf-1f2b-4de0-96e9-1686ef15f760","2022-07-07T12:02:38.000+02:00","2026-04-22T07:25:37.000+02:00","x86_64","5","SCA,VM,PM,GAV","Sans,Trafic,Recette,MIVISU,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,log4j,DEX","873.0" +"260022315","294877281","vrdsiasat1.sanef-rec.fr","","00:50:56:9c:29:f3","10.45.0.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6f fc bc db ff 4e-c4 f6 11 d8 0f be 9a 51","No Asset Tag","'+02:00","2026-04-14T09:45:50.000+02:00","cybsecope","Cloud Agent","26212425-1c91-4064-9586-dc5c7d9037dd","2024-08-21T12:54:30.000+02:00","2026-04-22T07:24:50.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,BDD-POS DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Recette,Satellite","66.0" +"257780648","294877284","vpsupapol4.sanef.groupe","","00:50:56:8d:c4:62","10.44.5.106","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 35 87 6d 7e 97 ca-a1 9c fd b1 fa ab cf 04","No Asset Tag","'+02:00","2026-03-30T11:14:42.000+02:00","cybsecope","Cloud Agent","4fda7178-6910-4c69-a02a-546b182516c0","2024-08-12T13:41:18.000+02:00","2026-04-22T07:24:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,BDD-ELA DYN,MID-NGINX DYN,Linux Server,Cloud Agent,Production,Centreon","133.0" +"175949562","229618439","vvbocs4as1.sanef-rec.fr","","00:50:56:9c:59:aa","10.45.6.6","fe80::250:56ff:fe9c:59aa","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5b 05 6c b5 23 31-e1 35 15 fc 6f 74 67 90","No Asset Tag","'+02:00","2026-03-26T20:15:05.000+02:00","cybsupsys","Cloud Agent","4b7af28e-0cdc-4b98-998b-afc9b523b3c4","2023-06-26T16:43:00.000+02:00","2026-04-22T07:24:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Flux Libre,Cloud Agent,Linux Server,FreeFlow","144.0" +"139158084","198270618","vmampstg2","","00:50:56:82:6D:2C, 00:50:56:82:5F:2A, 00:50:56:82:46:99","10.41.40.46,10.41.40.47,10.43.40.46,10.43.40.47,10.43.4.46","fe80::250:56ff:fe82:6d2c,fe80::250:56ff:fe82:5f2a,fe80::250:56ff:fe82:4699","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 6a 8e b4 34 55 f7-0d 01 14 05 58 f5 27 f0","No Asset Tag","'+02:00","2024-02-14T14:45:23.000+02:00","cybreconcile","Cloud Agent","b0547fe7-2fee-4906-ac22-bf8a3dea7380","2022-09-07T14:33:00.000+02:00","2026-04-22T07:24:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,Trafic,SSTG,Obsolete,OS-LIN-SRV DYN,VRF_TRAFIC_DC,DEX,log4j,Cloud Agent,Linux Server","698.0" +"372999308","349974669","vpodabquo1.sanef.groupe","","00:50:56:90:34:d2","10.100.16.22","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 7a 50 2e b0 ce 3a-28 d8 2c 9a 76 6f 8c ea","No Asset Tag","'+02:00","2026-02-10T12:39:18.000+02:00","cybreconcile","Cloud Agent","b92550fa-6274-4296-a17f-b5273fc0ccd6","2025-10-30T15:47:38.000+02:00","2026-04-22T07:23:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","ORACLE,Production,BDD,Cloud Agent,OS-LIN-SRV DYN,Linux Server","145.0" +"210605077","249678661","lremvaste3","","00:17:a4:77:1c:34, 00:17:a4:77:1c:30","192.168.107.115,192.168.108.115","fe80::217:a4ff:fe77:1c34,fe80::217:a4ff:fe77:1c30","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000706","","'+02:00","2025-06-04T14:18:19.000+02:00","lamhajeb-ext","Cloud Agent","fa60436c-e5fc-4f21-a2fd-62a5517dd638","2024-01-19T12:08:18.000+02:00","2026-04-22T07:23:50.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard V17 Recette,Cloud Agent,Linux Server,EMV","700.0" +"241563930","276525121","vpvsaagez2","","00:50:56:9c:d2:03","192.168.18.76","fe80::250:56ff:fe9c:d203","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 52 a6 ca a7 7e 22-68 94 4a bb 72 29 6a 07","No Asset Tag","'+02:00","2026-02-04T16:51:01.000+02:00","tbaad","Cloud Agent","d9b33b8b-9cb1-4890-ba92-6b7cf1449d49","2024-06-04T14:05:02.000+02:00","2026-04-22T07:22:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"236301380","264488385","lpemvaste3","","00:17:a4:77:1c:58, 00:17:a4:77:1c:54","192.168.102.103,192.168.101.103","fe80::217:a4ff:fe77:1c58,fe80::217:a4ff:fe77:1c54","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070B","","'+02:00","2025-06-30T11:12:08.000+02:00","root","Cloud Agent","216dadc9-61a9-4156-a307-9de372a484c9","2024-05-13T14:57:35.000+02:00","2026-04-22T07:22:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,PCI Bunker EMV,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17","683.0" +"205550121","246935753","vpbooarep1.sanef.groupe","","00:50:56:90:7a:a8","192.168.21.3","fe80::250:56ff:fe90:7aa8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 3c d9 75 25 1e 2f-79 7f 10 53 d4 a9 62 4f","No Asset Tag","'+02:00","2026-04-07T09:45:52.000+02:00","cybreconcile","Cloud Agent","f2176662-a3cf-4a99-b94e-4792f9ca9b65","2023-12-21T14:00:12.000+02:00","2026-04-22T07:22:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,FreeFlow,Cloud Agent,Linux Server","141.0" +"159569521","212140185","vpintaweb3.sanef.groupe","","02:42:21:84:a9:e1, 00:50:56:82:a2:58","172.17.0.1,192.168.20.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 43 4e ac 36 c5 0b-a0 45 79 e7 07 64 75 d2","No Asset Tag","'+02:00","2026-04-15T14:58:12.000+02:00","cybreconcile","Cloud Agent","6f0930eb-1188-470b-8b59-430309194b43","2023-02-16T14:57:57.000+02:00","2026-04-22T07:22:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,Gestion institutionnel","130.0" +"130587915","192835846","lamarrac4.sanef.groupe","","00:17:A4:77:0C:8C, 00:17:A4:77:0C:84, 00:17:A4:77:0C:80, 00:17:A4:77:0C:88","10.45.3.103,10.45.5.5,169.254.24.161,10.45.2.106,10.45.2.107,10.45.5.21","fe80::217:a4ff:fe77:c8c,fe80::217:a4ff:fe77:c84,fe80::217:a4ff:fe77:c80,fe80::217:a4ff:fe77:c88","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ32903SK","","'+02:00","2026-02-25T16:01:13.000+02:00","cybsupsys","Cloud Agent","62edf48e-b2d4-4d90-80e9-1eaacdde2ce1","2022-07-07T11:57:26.000+02:00","2026-04-22T07:21:36.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,DEX,Sextan,Linux Server,Cloud Agent,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Sans,Recette,Trafic","693.0" +"231613066","259382222","vvbotatvv1.sanef-rec.fr","","36:b3:50:af:a2:f7, 00:50:56:9c:11:6d, b6:98:6a:57:7a:d1","10.89.0.1,192.168.21.169","fe80::34b3:50ff:feaf:a2f7,fe80::250:56ff:fe9c:116d,fe80::b498:6aff:fe57:7ad1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c e4 3e 1f e7 e6 66-f4 e4 b9 53 06 1e 77 c5","No Asset Tag","'+02:00","2026-03-12T15:42:20.000+02:00","cybreconcile","Cloud Agent","7ba4ea28-e9be-43d3-976a-a169627d11ff","2024-04-22T17:38:56.000+02:00","2026-04-22T07:21:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,FreeFlow,flux_libre","141.0" +"213858465","251130134","lpagtbpla1.sanef.groupe","","ee:50:33:80:00:6c, ee:50:33:80:00:6d","10.46.33.21","fe80::ec50:33ff:fe80:6c,fe80::ec50:33ff:fe80:6d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63887","HPE I44 06/13/2025","VCGCIOJ00D","/n/Bios Asset Tag :","'+02:00","2026-02-24T15:37:40.000+02:00","cybastapp","Cloud Agent","22e9a011-1e29-4413-99d1-2d90a1d71123","2024-02-05T20:43:53.000+02:00","2026-04-22T07:20:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","AgileTime,Cloud Agent,Linux Server,DRH,OS-LIN-SRV DYN","341.0" +"131396898","193419390","vpcrmacle1","","00:50:56:82:e6:8f","10.30.10.15","fe80::addf:699e:1a72:e0d8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7953","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 40 a7 69 a1 03 2e-e4 d9 f8 26 f2 26 4a 7f","No Asset Tag","'+02:00","2025-10-08T19:36:32.000+02:00","cybreconcile","Cloud Agent","833e747b-1f77-45bc-b197-57d004f3ca4b","2022-07-13T09:47:18.000+02:00","2026-04-22T07:20:19.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cleo,OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,Communication,Production,DSI","501.0" +"380802646","353390884","spbckamag6.sanef.groupe","","6c:29:d2:30:50:e0, 6c:29:d2:30:50:e1","10.42.16.102,10.43.1.40","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192294","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27160090","Unknown","'+02:00","2025-12-02T18:18:27.000+02:00","root","Cloud Agent","78e081a3-6a78-488f-b1dc-5e7d8129752e","2025-12-02T13:31:47.000+02:00","2026-04-22T07:19:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"182754885","234343584","vrsimbffl1.sanef.groupe","","00:50:56:9c:6e:ef","10.45.6.226","fe80::d6ad:85e1:7b19:67c4","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c d9 63 53 ed d3 4b-9c 27 3c 69 1b c9 cb 68","No Asset Tag","'+02:00","2026-03-03T15:15:39.000+02:00","cybreconcile","Cloud Agent","532638c1-735f-4e04-ac5a-e43c17ea3ff8","2023-08-14T15:33:44.000+02:00","2026-04-22T07:19:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,BDD-POS DYN,FreeFlow,MID-APACHE-TOMCAT DYN,Flux Libre,Obsolete,Cloud Agent,Linux Server","337.0" +"194428822","241420225","spbocbsap1.sanef.groupe","","88:e9:a4:8a:b7:12","10.41.22.11","fe80::8ae9:a4ff:fe8a:b712","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL560 G10 Server","144","2600","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","3095575","HPE U34 07/20/2023","CZ22420F51","","'+02:00","2026-04-01T21:39:28.000+02:00","cybsupibm","Cloud Agent","e0271779-5d77-4bdc-9073-cbe2bb19fc54","2023-10-20T11:50:47.000+02:00","2026-04-22T07:19:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,Cloud Agent,Linux Server,Flux Libre,flux_libre,OS-LIN-SRV DYN","329.0" +"131401827","193422310","lamaprac3.sanef.groupe","","00:17:A4:77:0C:C0, 00:17:A4:77:0C:C8, 00:17:A4:77:0C:CC, 00:17:A4:77:0C:C4","10.41.40.54,10.41.40.55,192.168.17.122,10.43.40.54,10.43.4.134,169.254.154.102","fe80::217:a4ff:fe77:cc0,fe80::217:a4ff:fe77:cc8,fe80::217:a4ff:fe77:ccc,fe80::217:a4ff:fe77:cc4","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DF","","'+02:00","2025-10-08T15:12:43.000+02:00","cybastapp","Cloud Agent","260df756-19aa-4bfd-9e9b-bba8265ba6e4","2022-07-13T10:11:32.000+02:00","2026-04-22T07:19:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,Sans,Trafic,log4j,VRF_TRAFIC_DC,OS-LIN-SRV DYN,Sextan,Cloud Agent,Linux Server,DEX,Obsolete","703.0" +"175948082","229616157","vvbotarmq1.sanef-rec.fr","","c6:2c:c8:c7:cf:e2, ea:01:16:fe:2e:56, 2e:50:3e:48:24:a9, 00:50:56:9c:08:be, d6:00:b0:b2:aa:ee, 6a:bc:93:2a:a0:60","10.45.6.136,10.89.0.1","fe80::c42c:c8ff:fec7:cfe2,fe80::e801:16ff:fefe:2e56,fe80::2c50:3eff:fe48:24a9,fe80::250:56ff:fe9c:8be,fe80::d400:b0ff:feb2:aaee,fe80::68bc:93ff:fe2a:a060","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c be db 50 60 40 57-3d 65 46 87 a6 2a 3f 7d","No Asset Tag","'+02:00","2026-03-12T15:35:02.000+02:00","kapschsysuser","Cloud Agent","5793f3aa-a2e6-4243-ab40-c6119cc9158a","2023-06-26T16:19:42.000+02:00","2026-04-22T07:18:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,FreeFlow","140.0" +"241565638","276526603","vpvsaamet1.sanef.groupe","","00:50:56:90:4e:b2","10.42.16.80","fe80::250:56ff:fe90:4eb2","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 de d6 a5 89 3e be-75 58 93 4a 7e 39 6a 34","No Asset Tag","'+02:00","2026-02-05T10:15:27.000+02:00","tbaad","Cloud Agent","6dd1dea1-6ac5-409d-9615-248e8e7e389d","2024-06-04T14:13:56.000+02:00","2026-04-22T07:18:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"160254541","213434294","vpameaoct3","","00:50:56:82:9c:bf","10.41.40.132","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 83 57 fc b0 cf e3-59 10 8e e7 20 50 ae 61","No Asset Tag","'+02:00","2026-01-21T10:48:59.000+02:00","cybreconcile","Cloud Agent","bda31da6-c234-43dc-9fa5-321dbe627fa8","2023-02-22T18:11:07.000+02:00","2026-04-22T07:17:39.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,OCTAN,DEX,Cloud Agent,Linux Server","212.0" +"301230398","320881573","vrdsismtp2.sanef-rec.fr","","00:50:56:9c:4d:2c","192.168.19.53","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 96 2d 1d eb 72 8a-13 9f 35 b9 9f 94 14 39","No Asset Tag","'+02:00","2026-01-07T11:15:16.000+02:00","root","Cloud Agent","f053efb1-ac6e-474a-b24d-88e43d3362a3","2025-02-19T14:15:17.000+02:00","2026-04-22T07:17:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","141.0" +"380803972","353387551","spbckamag5.sanef.groupe","","6c:29:d2:30:72:11, 6c:29:d2:30:72:10","10.43.1.8,10.42.16.100","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192295","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3W","Unknown","'+02:00","2025-12-02T14:30:27.000+02:00","root","Cloud Agent","26a8beb3-8e97-4dc4-89fa-8ff79f76f136","2025-12-02T13:08:43.000+02:00","2026-04-22T07:17:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0" +"213849158","251124645","asur-rau2","","40:a8:f0:27:80:de, 40:a8:f0:27:80:dc","10.43.4.197,10.41.40.197","fe80::42a8:f0ff:fe27:80de,fe80::42a8:f0ff:fe27:80dc","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant DL380p G8 Server","24","2600","Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz","32069","HP P70 08/02/2014","CZ24422JVZ","","'+02:00","2026-04-02T09:13:29.000+02:00","cybreconcile","Cloud Agent","d6b6d4e3-911d-4923-9e06-3538ab7f4c61","2024-02-05T19:25:56.000+02:00","2026-04-22T07:16:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,Obsolete,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,MID-NGINX DYN","351.0" +"131265958","193315361","vmxfb1.sanef.groupe","","00:50:56:82:33:61","10.30.11.99","fe80::250:56ff:fe82:3361","Linux / Server","Red Hat Enterprise Linux Server 6.7","6.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d9 b0 eb 79 07 7b-f1 fb 9c f1 9c 20 e0 59","No Asset Tag","'+02:00","2025-01-30T11:10:38.000+02:00","cybreconcile","Cloud Agent","7d281613-4f4d-4ab7-9a09-1e79c4661a21","2022-07-12T14:43:02.000+02:00","2026-04-22T07:16:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,VRF_INCONNUE,OS-LIN-SRV DYN,XFB,ServersInCyberark,Obsolete,DEX,log4j,Production,Exploitation IT","351.0" +"313113952","325677727","vprauahtp2.sanef.groupe","","00:50:56:90:41:89","192.168.40.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 fa 16 f5 1c 4e 00-30 9a 01 a5 08 7e e8 67","No Asset Tag","'+02:00","2026-04-13T10:17:10.000+02:00","cybadmsys","Cloud Agent","58c6c779-9cf7-43fd-b23b-958ccaafe72c","2025-04-02T11:04:41.000+02:00","2026-04-22T07:15:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT","132.0" +"183965866","235215633","vmamrmet2","","00:50:56:82:67:F0, 00:50:56:82:42:10, 00:50:56:82:07:E1","10.45.4.151,10.45.2.151,10.45.3.151","fe80::250:56ff:fe82:67f0,fe80::250:56ff:fe82:4210,fe80::250:56ff:fe82:7e1","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 84 26 ae 6d 9b-c0 d7 e4 a0 b7 13 78 52","No Asset Tag","'+02:00","2025-10-09T11:39:08.000+02:00","root","Cloud Agent","84233946-88dd-45d5-888e-6d9ad37c4526","2023-08-22T13:03:52.000+02:00","2026-04-22T11:12:29.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Obsolete,DEX,MIVISU,log4j","878.0" +"194260782","241335670","vppeaarcv1.sanef.groupe","","00:50:56:90:2c:dd","10.41.20.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 3e 20 cf 0e 8d d1-5c 99 97 fd e9 77 bd 6d","No Asset Tag","'+02:00","2026-04-01T12:13:26.000+02:00","cybreconcile","Cloud Agent","d0be85c3-94c9-4154-8c8b-3f6f4669d86f","2023-10-19T14:29:55.000+02:00","2026-04-22T07:15:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,flux_libre,log4j,Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN","332.0" +"180108602","232626623","vrrauaapp2.sanef-rec.fr","","00:50:56:9c:28:db","10.45.9.232","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cd c2 27 21 3b 75-d5 11 d0 ed cd 78 9f 31","No Asset Tag","'+02:00","2026-04-21T14:54:09.000+02:00","cybadmsys","Cloud Agent","3d6bb01a-4c12-418a-a7d8-e0a1a778b1b9","2023-07-26T18:25:45.000+02:00","2026-04-22T07:15:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ASUR,Cloud Agent,Linux Server,DSI","21.0" +"215187156","251711287","vipeabbst4.sanef.groupe","","00:50:56:90:9a:9d","10.41.29.55","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 63 dc 35 88 e1 90-07 2f ea a2 36 05 18 93","No Asset Tag","'+02:00","2026-03-19T11:51:00.000+02:00","cybexpapp","Cloud Agent","6c1945a9-58ae-45ed-8cad-f782421b63ad","2024-02-12T13:16:30.000+02:00","2026-04-22T07:15:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,BDD-ELA DYN,OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,Flux Libre","141.0" +"200166052","244210270","vppeabbst2.sanef.groupe","","00:50:56:90:e3:00","10.41.20.54","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 dd 2d a9 8d 51 fb-9b 8d 5b 3f 89 8f 53 66","No Asset Tag","'+02:00","2026-04-02T09:36:52.000+02:00","cybreconcile","Cloud Agent","bdbaf8c4-ec55-4b37-88ad-00412535be0b","2023-11-21T11:57:07.000+02:00","2026-04-22T07:15:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-ELA DYN,DSI,flux_libre,Production,BOOST,Flux Libre,FreeFlow","66.0" +"241565659","276527066","vpvsaamet2.sanef.groupe","","00:50:56:90:52:13","10.42.16.81","fe80::250:56ff:fe90:5213","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 3d 97 76 31 7a bc-22 6e b6 c5 94 5c 3f 19","No Asset Tag","'+02:00","2026-02-05T10:59:02.000+02:00","tbaad-ext","Cloud Agent","cd01681c-7508-42e1-9f52-8ee3646ead86","2024-06-04T14:16:52.000+02:00","2026-04-22T07:14:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"379514975","352868343","vpdecasas5","","00:50:56:82:27:7a","10.30.11.153","fe80::250:56ff:fe82:277a","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257964","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 e3 ce 30 de ba 20-7b 70 48 b6 76 de 02 54","No Asset Tag","'+02:00","2026-03-25T11:06:10.000+02:00","cybreconcile","Cloud Agent","6775240f-e611-4a59-ba72-fd17c7fb99ee","2025-11-26T11:58:56.000+02:00","2026-04-22T07:13:31.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Finances Comptabilité / Consolidation,Obsolete,VRF_INCONNUE,SAS,Production,BDD-POS DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","75.0" +"175464776","229282250","vvbotbtsd2.sanef-rec.fr","","5e:a8:b9:89:1d:64, 5e:9f:b9:d3:c9:e3, d2:d9:d6:a9:92:32, ea:4b:26:17:43:51, 3a:2e:30:81:51:3d, 1a:bb:e1:57:5c:d6, e2:af:07:d9:5f:01, fe:45:99:76:06:e6, 52:e5:74:29:12:93, 00:50:56:9c:73:6c","10.89.0.1,10.45.6.159","fe80::5ca8:b9ff:fe89:1d64,fe80::5c9f:b9ff:fed3:c9e3,fe80::d0d9:d6ff:fea9:9232,fe80::e84b:26ff:fe17:4351,fe80::382e:30ff:fe81:513d,fe80::18bb:e1ff:fe57:5cd6,fe80::e0af:7ff:fed9:5f01,fe80::fc45:99ff:fe76:6e6,fe80::50e5:74ff:fe29:1293,fe80::250:56ff:fe9c:736c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d9 28 0c 18 45 4b-0b c7 7f 31 33 07 ce b6","No Asset Tag","'+02:00","2026-03-10T12:33:09.000+02:00","cybreconcile","Cloud Agent","d65335f6-ad53-44be-9ee9-4ba2bb568850","2023-06-22T17:14:50.000+02:00","2026-04-22T07:12:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,Recette,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server","140.0" +"131396766","193418130","vptraatpf2.sanef.groupe","","00:50:56:82:60:51","192.168.40.11","fe80::3b2c:823:f9b7:cb57","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","5966","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 70 ac 1e 4f b4 40-b2 98 b8 7a f9 2a dc 1b","No Asset Tag","'+02:00","2024-03-18T11:34:08.000+02:00","cybreconcile","Cloud Agent","93a03fe2-db2a-4bfe-b492-491600b97a67","2022-07-13T09:36:36.000+02:00","2026-04-22T07:12:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,DEX,Temps de parcours,TAG-SRVEXPOSEINDIRECT,Obsolete,Sans,Production,DMZ,Trafic,Cloud Agent,Linux Server","507.0" +"208784631","248750420","vibotreco4.sanef.groupe","","00:50:56:90:b2:cc","10.41.23.160","fe80::250:56ff:fe90:b2cc","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 32 96 a5 05 01 5f-00 b5 e6 43 6f 5f b5 6d","No Asset Tag","'+02:00","2026-03-18T16:17:18.000+02:00","cybsupsys","Cloud Agent","23ddfa6c-2990-4221-a9a7-32314045d24d","2024-01-10T13:28:16.000+02:00","2026-04-22T07:11:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,flux_libre,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","140.0" +"416897959","367958041","vrzbxaprx3.sanef-rec.fr","","00:50:56:9c:4a:1f","192.168.10.67","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c f7 1f b4 4e f6 eb-27 2e 03 8b 6e 28 f5 e3","No Asset Tag","'+02:00","2026-04-16T12:33:48.000+02:00","cybintsys","Cloud Agent","791c799b-ce3b-4f7d-bdb1-00bf541cf736","2026-04-17T17:04:12.000+02:00","2026-04-22T07:11:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","66.0" +"209161379","248966236","vibotreco2.sanef.groupe","","00:50:56:90:65:1c","10.41.23.140","fe80::250:56ff:fe90:651c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 79 08 4b cf 1a 7c-67 1f 09 45 c8 d8 73 70","No Asset Tag","'+02:00","2026-03-18T15:32:26.000+02:00","cybreconcile","Cloud Agent","99ca84de-06e5-4779-9e22-9176f45f96b1","2024-01-12T11:59:18.000+02:00","2026-04-22T07:11:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,Production,flux_libre","140.0" +"157732257","210514185","vppintanfs1.sanef.groupe","","02:42:0d:37:c7:29, 00:50:56:82:0f:d4","172.17.0.1,192.168.20.22","fe80::42:dff:fe37:c729,fe80::250:56ff:fe82:fd4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 91 99 cb 93 9a a9-48 f3 bf a9 34 a8 5e c8","No Asset Tag","'+02:00","2026-02-23T15:27:34.000+02:00","cybreconcile","Cloud Agent","61bbad5a-2fa0-48b1-b600-e63a7c9bf3ec","2023-02-02T12:53:49.000+02:00","2026-04-22T07:10:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,OS-LIN-SRV DYN,Recette,Gestion institutionnel,Cloud Agent,Linux Server","142.0" +"203201197","245720142","viboobquo2.sanef.groupe","","00:50:56:90:f4:81","10.100.16.14","fe80::250:56ff:fe90:f481","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 a8 8a 3d af c5 cc-3a 3b 81 2e a2 5c 0f db","No Asset Tag","'+02:00","2026-03-16T11:44:22.000+02:00","cybadmsys","Cloud Agent","d893a18b-379e-49de-adc6-d85c776904e0","2023-12-08T12:15:23.000+02:00","2026-04-22T07:10:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0" +"191423864","239727601","viboomocr1.sanef.groupe","","00:50:56:90:d3:5a","10.41.22.203","fe80::250:56ff:fe90:d35a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 7d 5b 72 12 b8 c6-18 ac dd ec 2d c2 b1 c6","No Asset Tag","'+02:00","2026-03-17T16:15:16.000+02:00","cyblecemo","Cloud Agent","9d3db0fc-f9c5-4e35-8a6b-b4b13710c954","2023-10-04T17:55:58.000+02:00","2026-04-22T07:10:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,flux_libre,Flux Libre","337.0" +"219208217","253333827","viosapels2.sanef.groupe","","00:50:56:90:96:f3","10.41.29.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 15 3c 6e 04 1f 18-1f 0a f3 e4 57 bf 49 45","No Asset Tag","'+02:00","2026-02-19T11:42:45.000+02:00","cybadmroot","Cloud Agent","e3694e2f-bbb9-4630-9788-06ccef9c608b","2024-02-29T19:22:51.000+02:00","2026-04-22T07:09:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Recette,Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","141.0" +"241566273","276527283","vpvsaamez1.sanef.groupe","","00:50:56:90:1e:44","192.168.18.73","fe80::250:56ff:fe90:1e44","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e4 4a 7a 68 7b 7e-8c 84 de d8 8b f9 e7 e1","No Asset Tag","'+02:00","2026-02-05T11:22:41.000+02:00","tbaad","Cloud Agent","ef3dbfbc-766c-4bf2-95ae-668a0f6c47c9","2024-06-04T14:19:12.000+02:00","2026-04-22T07:09:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"231533958","259283849","lpemvaste5","","00:17:a4:77:1c:08, 00:17:a4:77:1c:0c","192.168.101.112,192.168.102.112","fe80::217:a4ff:fe77:1c08,fe80::217:a4ff:fe77:1c0c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000701","","'+02:00","2025-08-20T02:51:24.000+02:00","root","Cloud Agent","014648fd-0bf3-42fa-a645-5c26d7f077ef","2024-04-22T11:32:18.000+02:00","2026-04-22T07:09:15.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,Production,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Cloud Agent,OS-LIN-SRV DYN","678.0" +"191420278","239726172","viboobsql1.sanef.groupe","","00:50:56:90:79:13","10.41.22.197","fe80::9f87:73a9:8141:a671","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 89 87 08 56 5a e2-02 2d 98 dd e9 78 ce 8b","No Asset Tag","'+02:00","2026-03-16T13:14:11.000+02:00","cyblecemo","Cloud Agent","0e78b35e-587f-488d-8b42-686603abadce","2023-10-04T17:40:04.000+02:00","2026-04-22T07:07:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-SQL,FreeFlow,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production,OS-LIN-SRV DYN","144.0" +"137349499","197588902","vppeabbst1.sanef.groupe","","00:50:56:82:cb:ed","10.41.20.36","fe80::5562:9fe3:1d4d:cbca","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","15884","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d f3 6e 44 26 a7 73-1c 5c 78 45 08 5a 03 16","No Asset Tag","'+02:00","2024-09-03T10:18:40.000+02:00","cybreconcile","Cloud Agent","e215704d-750e-43fb-9a9e-7e5ce428f036","2022-08-30T17:13:50.000+02:00","2026-04-22T07:07:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,Obsolete,BDD-ELA DYN,Production,VRF_PEAGE_DC,ServersInCyberark,BOOST","244.0" +"240373008","274660851","vibocsman1","","00:50:56:90:15:cf","10.41.22.75","fe80::250:56ff:fe90:15cf","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f1 89 97 41 48 21-f3 72 04 fd 52 84 b9 88","No Asset Tag","'+02:00","2026-03-16T16:13:35.000+02:00","cybreconcile","Cloud Agent","ef118b75-4ec2-4641-a292-762f6378d872","2024-05-30T10:26:21.000+02:00","2026-04-22T07:06:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,FreeFlow,Cloud Agent,Linux Server","141.0" +"131405746","193424771","vmntp1.sanef.groupe","","00:50:56:90:BC:8A","10.100.1.200","fe80::250:56ff:fe90:bc8a","Linux / Server","The CentOS Project CentOS 6.4","6.4","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","1878","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 6c 9a 6e 8a 5b 6d-a4 a0 de 2f 17 2b cf d1","No Asset Tag","'+02:00","2025-09-02T17:07:41.000+02:00","cybreconcile","Cloud Agent","fd737359-f1d2-4382-bb84-211d4f5a1fe5","2022-07-13T10:35:52.000+02:00","2026-04-22T07:06:50.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Cloud Agent,Linux Server,VRF_INCONNUE,NTP,Obsolete,Production","519.0" +"236561622","265298550","vpaptbjup1","","00:50:56:9c:ba:e7","10.46.34.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","128398","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 20 80 48 3d 56 28-9e 03 4c 62 49 be ba 76","No Asset Tag","'+02:00","2026-03-23T15:14:43.000+02:00","cybreconcile","Cloud Agent","0da83727-852c-4ba7-9ca2-7bb222238ab0","2024-05-14T15:06:56.000+02:00","2026-04-22T07:06:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,Production,Cloud Agent,Linux Server","141.0" +"236301381","264488386","lpemvaste4","","00:17:a4:77:1c:04, 00:17:a4:77:1c:00","192.168.102.111,192.168.101.111","fe80::217:a4ff:fe77:1c04,fe80::217:a4ff:fe77:1c00","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000700","","'+02:00","2025-08-20T02:47:02.000+02:00","root","Cloud Agent","6f46b509-d7ed-40b4-a333-76facfeb3d9c","2024-05-13T14:57:35.000+02:00","2026-04-22T07:06:25.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17,Production,EMV,PCI Bunker EMV","480.0" +"130584077","192833340","node2","","00:50:56:82:d1:ae, 66:2d:bf:44:a6:8b","10.45.2.57,10.233.75.0","fe80::250:56ff:fe82:d1ae,fe80::642d:bfff:fe44:a68b","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 b4 9a 31 df 57 07-ae c3 e8 88 b2 b1 e0 ad","No Asset Tag","'+02:00","2025-02-26T17:07:09.000+02:00","zhou","Cloud Agent","929b11d7-0ff3-45ef-880d-69c40d5ab4e5","2022-07-07T11:36:33.000+02:00","2026-04-22T07:06:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE","342.0" +"376341349","351487830","vptrabmut2.sanef.groupe","","52:54:00:6a:93:4d, 52:54:00:1b:c4:f4, 52:54:00:45:c3:aa","192.168.17.6,10.41.40.220,10.41.40.222,10.41.40.224,10.41.40.225,192.168.17.133","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-13T11:23:36.000+02:00","cybsecope","Cloud Agent","8d8d9b64-fad1-4bb3-90a7-e7c5c44d3906","2025-11-13T12:06:57.000+02:00","2026-04-22T07:06:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,Linux Server,Cloud Agent,Production,ORACLE","339.0" +"200010195","244159182","vppeabbst4.sanef.groupe","","00:50:56:90:92:2c","10.41.20.53","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 d3 e2 57 3a 45 24-23 d3 3d c3 ab f0 2d 99","No Asset Tag","'+02:00","2026-04-02T10:12:32.000+02:00","cybreconcile","Cloud Agent","6cd17fdf-4e6c-4bea-b0af-db962a018d9c","2023-11-20T18:30:27.000+02:00","2026-04-22T07:05:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,FreeFlow,flux_libre,DSI,BOOST,Production","66.0" +"241566442","276527835","vpvsaarez2","","00:50:56:9c:e0:a6","192.168.18.77","fe80::250:56ff:fe9c:e0a6","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c e4 9a ea a7 d9 db-82 71 0e dd c5 2b 48 3f","No Asset Tag","'+02:00","2026-02-05T13:34:19.000+02:00","tbaad-ext","Cloud Agent","43b76ec3-cf8f-48ab-8427-779ef5952a76","2024-06-04T14:27:35.000+02:00","2026-04-22T07:05:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"382535369","354020836","vrdsiascr1.sanef-rec.fr","","00:50:56:9c:8b:d9","192.168.31.3","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c ab be 26 df 26 0e-f6 ee 9d ca 08 fa 4f b6","No Asset Tag","'+02:00","2026-03-17T18:26:38.000+02:00","cybintsys","Cloud Agent","f4715e59-7fcd-4568-9c9c-4e14851a31a1","2025-12-08T18:43:40.000+02:00","2026-04-22T07:05:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Recette,NextCloud,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","145.0" +"139158140","198270706","asur-rau1","","40:a8:f0:27:a9:f4, 40:a8:f0:27:a9:f6","10.41.40.195,10.41.40.196,10.43.4.196","fe80::42a8:f0ff:fe27:a9f4,fe80::42a8:f0ff:fe27:a9f6","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant DL380p G8 Server","24","2600","Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz","32069","HP P70 05/24/2019","CZ2D1A03DL","","'+02:00","2026-04-02T09:20:01.000+02:00","cybastsys","Cloud Agent","9e18ea3e-abcd-46a2-b81b-6a1bed7f4ca7","2022-09-07T14:38:03.000+02:00","2026-04-22T07:04:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,log4j,Obsolete,VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","350.0" +"318425666","328043648","vrameakfk2.sanef-rec.fr","","00:50:56:9c:a5:17","10.45.2.41","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c8 7e 4b fb 71 b1-0c 8d e5 80 63 d2 e3 19","No Asset Tag","'+02:00","2026-04-20T09:28:21.000+02:00","cybsupapp","Cloud Agent","dbd56bd1-f707-4d45-81e5-8ac18665e209","2025-04-22T14:50:03.000+02:00","2026-04-22T07:04:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Amelie","48.0" +"229191355","257963095","vvbocarep1.sanef-rec.fr","","00:50:56:9c:fb:45","10.45.6.13","fe80::250:56ff:fe9c:fb45","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c dd a5 63 3c 60 79-e1 14 79 d3 63 26 30 34","No Asset Tag","'+02:00","2026-03-11T15:24:54.000+02:00","cybsupsys","Cloud Agent","87dfc34b-5199-4079-81b3-d53eed892e4d","2024-04-11T10:29:55.000+02:00","2026-04-22T07:04:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0" +"139158077","198270619","vmampstg1","","00:50:56:82:1D:1F, 00:50:56:82:31:55, 00:50:56:82:20:3D","10.41.40.45,10.41.40.49,10.43.40.45,10.43.40.49,10.43.4.45","fe80::250:56ff:fe82:1d1f,fe80::250:56ff:fe82:3155,fe80::250:56ff:fe82:203d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 68 9f 2a 20 3f 69-09 5c 0a fb 5d 99 6c 23","No Asset Tag","'+02:00","2024-02-13T14:07:51.000+02:00","cybreconcile","Cloud Agent","9f42509a-bdc6-4442-92af-24d7c02bff27","2022-09-07T14:32:19.000+02:00","2026-04-22T07:04:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Trafic,Cloud Agent,Linux Server,log4j,Obsolete,DEX,VRF_TRAFIC_DC,OS-LIN-SRV DYN,SSTG,Production","698.0" +"130583160","192832674","vmcmdb1","","00:50:56:82:2a:23","10.30.11.107","fe80::250:56ff:fe82:2a23","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d bb 7b 8a eb f9 ef-52 af 84 7c 73 cb d1 b5","No Asset Tag","'+02:00","2025-10-09T11:34:20.000+02:00","cybastsys","Cloud Agent","adf31e08-00b0-40ec-b4b7-0c02de37e963","2022-07-07T11:25:27.000+02:00","2026-04-22T07:04:08.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,Bases de Données,VRF_INCONNUE,Recette,Production,Péage,BDD-POS DYN,ITOP,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,Obsolete","682.0" +"193239279","240746200","vpbocsman1.sanef.groupe","","00:50:56:90:75:83","10.41.22.12","fe80::250:56ff:fe90:7583","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 84 b1 8b 62 45 c3-fd 8e 0f 6e bf d0 38 36","No Asset Tag","'+02:00","2026-04-01T22:07:00.000+02:00","cybreconcile","Cloud Agent","f3962cdd-3357-4b22-9c0b-a019e669a722","2023-10-13T15:25:07.000+02:00","2026-04-22T07:04:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","140.0" +"241566316","276527664","vpvsaamez2","","00:50:56:90:1a:be","192.168.18.74","fe80::250:56ff:fe90:1abe","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 7f 0e 93 96 35 ca-ce 63 bd 18 94 c8 3d c9","No Asset Tag","'+02:00","2026-02-05T12:16:52.000+02:00","tbaad-ext","Cloud Agent","9694f565-91c5-47a8-8306-bab0c8309f12","2024-06-04T14:24:06.000+02:00","2026-04-22T07:03:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"178993124","231838279","vpsasawrk5.sanef.groupe","","00:50:56:82:88:17","10.41.32.14","fe80::250:56ff:fe82:8817","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d0 ae 00 c5 2f c4-44 7e 95 ec 2f ba 28 d3","No Asset Tag","'+02:00","2026-03-25T16:09:16.000+02:00","cybreconcile","Cloud Agent","4550baae-9ce1-4137-a685-0e12f058c7dd","2023-07-18T16:09:08.000+02:00","2026-04-22T07:03:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,SAS,DSI,Cloud Agent,Linux Server","86.0" +"175568112","229347672","vvbotrssc2.sanef-rec.fr","","00:50:56:9c:67:a2","10.45.6.164","fe80::250:56ff:fe9c:67a2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 4e 3a 51 02 96 38-5e 0b 6a c4 19 45 b9 ec","No Asset Tag","'+02:00","2026-03-10T15:25:00.000+02:00","cybreconcile","Cloud Agent","81ec73f5-fd15-4e74-9273-5176ea4ea726","2023-06-23T11:47:55.000+02:00","2026-04-22T07:03:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,flux_libre,FreeFlow,Recette,Cloud Agent,Linux Server,Flux Libre","139.0" +"202758101","245521798","vposapast1.sanef.groupe","","00:50:56:90:f1:c2","10.41.8.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 80 94 9a 23 33 77-48 f4 53 be 39 dc 0f d4","No Asset Tag","'+02:00","2026-03-04T07:52:35.000+02:00","cybreconcile","Cloud Agent","69ba10f2-4559-4503-8388-2dbdb6cec2b7","2023-12-06T13:31:42.000+02:00","2026-04-22T07:03:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,Production,OS-LIN-SRV DYN,DEX","144.0" +"131262350","193313521","lampcrm1.serveur.est.sanef.fr","","00:17:A4:77:00:80","10.30.11.166","fe80::217:a4ff:fe77:80","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","8","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","12007","","VCX0000008","","'+02:00","2025-06-02T16:18:54.000+02:00","cybastapp","Cloud Agent","90e2ebad-e312-4974-a72f-79ae0f79cd43","2022-07-12T14:10:55.000+02:00","2026-04-22T07:01:43.000+02:00","x86_64","3","SCA,VM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,DSI,BDD-POS DYN,OS-LIN-SRV DYN,Cleo,Gestion commerciale,Sans,Production,Obsolete,ServersInCyberark","529.0" +"143625000","201025858","vpemvapol1","","00:50:56:82:cc:27","192.168.100.210","fe80::7499:cfde:6820:8896","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8f 36 0c f7 b9 4a-0b aa ab e7 ee 3e 4a 85","No Asset Tag","'+02:00","2025-10-28T17:58:14.000+02:00","root","Cloud Agent","f6a9bf03-3765-4870-80bf-04b49ce5ec59","2022-10-11T17:37:37.000+02:00","2026-04-22T07:01:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,PCI Bunker EMV,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,Obsolete,Centreon,VRF_INCONNUE,Cloud Agent,Linux Server","111.0" +"178994738","231838047","vpsasawrk4.sanef.groupe","","00:50:56:82:d5:bf","10.41.32.13","fe80::250:56ff:fe82:d5bf","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 95 27 ed 8e ec 68-0c 24 ee 91 71 e2 3f b6","No Asset Tag","'+02:00","2026-03-25T16:08:05.000+02:00","cybreconcile","Cloud Agent","28f3b331-7b56-4aea-b1d4-e48b98b4adc9","2023-07-18T16:05:20.000+02:00","2026-04-22T07:01:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,SAS,BDD-POS DYN,DSI","86.0" +"284373652","309489720","vtdsibquo1.sanef-rec.fr","","00:50:56:90:09:64","10.100.16.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 05 33 07 18 a6 ad-c2 24 36 1e e1 7a 34 fb","No Asset Tag","'+02:00","2026-01-20T12:44:52.000+02:00","cybadmbdd","Cloud Agent","d4c09689-9864-43d4-b09d-9148a5925d7c","2024-12-05T13:22:39.000+02:00","2026-04-22T07:01:20.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,PATRIMOINE,Cloud Agent,Linux Server","140.0" +"311188894","330493462","vrgawbpgs1.sanef-rec.fr","","00:50:56:9c:b2:e3","10.45.14.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c ae a7 c0 1e 76 3a-38 ea 0f 5e 63 b6 75 fe","No Asset Tag","'+02:00","2026-02-11T13:00:58.000+02:00","cybintsys","Cloud Agent","fe8d93a6-f708-4b08-a027-2195526d9300","2025-03-26T18:31:22.000+02:00","2026-04-22T07:00:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-POS DYN,Plateforme d'échange","58.0" +"295840239","317389833","vpngwasia2","","00:50:56:94:df:a9","10.44.2.197","fe80::250:56ff:fe94:dfa9","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 c8 60 db c0 ee 4d-d2 e5 84 bb d1 d0 4a 54","No Asset Tag","'+02:00","2026-02-02T16:48:11.000+02:00","tbaad","Cloud Agent","519cf2ee-5556-4e62-841b-af4a5a3c3ce7","2025-01-29T11:45:08.000+02:00","2026-04-22T06:59:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server","53.0" +"131405535","193423432","vastapp1.sanef.groupe","","00:50:56:82:05:81","10.30.10.28","fe80::250:56ff:fe82:581","Linux / Server","The CentOS Project CentOS 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3833","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 ec 06 40 2b 24 69-07 b2 4f 24 dc ce 7d 43","No Asset Tag","'+02:00","2024-11-28T11:18:16.000+02:00","cybreconcile","Cloud Agent","eff2945f-584a-4870-ae6d-a4dec2ede75a","2022-07-13T10:25:15.000+02:00","2026-04-22T06:58:52.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,Obsolete,Moyenne,ServersInCyberark,Péage,Production,Medium,VRF_INCONNUE,BDD-POS DYN,DEX,ADV-U","699.0" +"340054184","336780133","vppwdbsql1.sanef.groupe","","00:50:56:94:99:8b","10.44.1.204","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 79 99 86 b3 83 7e-33 8d a0 75 1f 7d 24 97","No Asset Tag","'+02:00","2026-01-12T11:15:14.000+02:00","cybadmbdd","Cloud Agent","528c381a-7196-4ce4-b292-3e8e87eae124","2025-07-08T10:17:27.000+02:00","2026-04-22T06:58:36.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","332.0" +"376415237","351518008","vpcybapsp1.sanef.groupe","","00:50:56:9c:6c:8d","10.44.1.74","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f9 be bd f5 ad b8-ce 39 02 93 63 8c d7 98","No Asset Tag","'+02:00","2026-03-23T10:04:47.000+02:00","cybsecope","Cloud Agent","1c8a2d4b-a8c2-4153-921f-733552d74b8c","2025-11-13T17:20:19.000+02:00","2026-04-22T06:58:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,Production,CyberArk","152.0" +"208784339","248752685","vibotatst1.sanef.groupe","","00:50:56:90:f4:29","10.41.23.147","fe80::250:56ff:fe90:f429","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 37 5b 95 76 60 67-c1 9b 21 e0 40 c7 d9 ac","No Asset Tag","'+02:00","2026-03-18T10:48:36.000+02:00","cybreconcile","Cloud Agent","663f1a10-8f92-4ba0-9ce1-64a95e276b54","2024-01-10T13:46:44.000+02:00","2026-04-22T06:57:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,FreeFlow,Flux Libre,Cloud Agent,Linux Server,flux_libre","140.0" +"175946491","229615309","vvbotcach1.sanef-rec.fr","","ca:d9:7b:7f:b4:62, 00:50:56:9c:bd:e0, 2e:96:62:6f:39:9b, ae:af:ba:79:bd:b1, 16:cb:70:08:47:44, ba:bf:e5:0c:37:9e, e2:9c:39:9f:87:eb, ee:ff:c5:a2:32:80, e2:95:66:e1:cd:79","10.89.0.1,10.45.6.134","fe80::c8d9:7bff:fe7f:b462,fe80::250:56ff:fe9c:bde0,fe80::2c96:62ff:fe6f:399b,fe80::acaf:baff:fe79:bdb1,fe80::14cb:70ff:fe08:4744,fe80::b8bf:e5ff:fe0c:379e,fe80::e09c:39ff:fe9f:87eb,fe80::ecff:c5ff:fea2:3280,fe80::e095:66ff:fee1:cd79","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 06 eb b3 4e 4f 09-7c db 21 c2 f7 68 06 55","No Asset Tag","'+02:00","2026-03-23T17:32:51.000+02:00","kapschsysuser","Cloud Agent","c4c636e9-9e2e-4e12-8ce8-070f2ee3cca3","2023-06-26T16:09:59.000+02:00","2026-04-22T06:57:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,Recette,Cloud Agent,Linux Server,flux_libre,FreeFlow","140.0" +"363271952","346043088","vpdataapp1.sanef.groupe","","00:50:56:90:82:b9","10.41.40.145","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 dd ff 41 d8 ef 31-e1 05 cd e9 41 2e a3 c1","No Asset Tag","'+02:00","2026-01-27T15:00:44.000+02:00","cybadmroot","Cloud Agent","823fbea8-e9dc-41fc-a34f-34fe775d6ace","2025-09-26T14:21:14.000+02:00","2026-04-22T06:57:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","138.0" +"212784022","250654143","rsminas1.sanef.groupe","","AC:16:2D:BE:79:B8","10.30.10.244","fe80::ae16:2dff:febe:79b8","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant DL180 G6 Server","4","2130","Intel(R) Xeon(R) CPU E5606 @ 2.13GHz","7990","HP O20 05/01/2012","CZJ2380H9F","","'+02:00","2025-02-24T15:29:36.000+02:00","cybreconcile","Cloud Agent","eb25f56d-085a-4297-9e74-3537e0c10174","2024-01-30T20:29:34.000+02:00","2026-04-22T06:57:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,log4j,Package,DSI,Obsolete","346.0" +"178987974","231834396","vpsasawrk2.sanef.groupe","","00:50:56:9c:3c:7e","10.41.32.11","fe80::250:56ff:fe9c:3c7e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 44 cd f4 1c 05 f6-ec 5a 77 9f 48 d7 bd ee","No Asset Tag","'+02:00","2026-03-25T16:05:19.000+02:00","cybreconcile","Cloud Agent","282d4b3d-dc63-4714-9802-de796af6d28c","2023-07-18T15:24:52.000+02:00","2026-04-22T06:57:17.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,SAS,BDD-POS DYN,OS-LIN-SRV DYN,DSI","86.0" +"131270155","193318578","lpsimbpfe1.sanef.groupe","","00:17:a4:77:08:0c","10.30.11.35","fe80::dbd2:64a5:3f9a:488","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","15915","HP I36 07/18/2022","CZ255301Y3","","'+02:00","2024-09-26T09:49:06.000+02:00","root","Cloud Agent","6974b918-ea34-4b17-ba9e-1844c04cfc61","2022-07-12T15:22:29.000+02:00","2026-04-22T06:57:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Obsolete,Plateforme d'échange,log4j,Cloud Agent,Linux Server,Production,Exploitation IT,OS-LIN-SRV DYN,VRF_INCONNUE,DEX","342.0" +"131406886","193425562","vpexpaxfb1.sanef.groupe","","00:50:56:82:8e:9f","10.42.16.10","fe80::96d1:3f1f:8fd7:b2b5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d cf d5 53 cd b9 ff-af 5a 56 80 d5 e4 c7 ad","No Asset Tag","'+02:00","2026-02-12T11:28:39.000+02:00","cybreconcile","Cloud Agent","c75eb41c-4217-4836-8eb9-0fb55afb2d1f","2022-07-13T10:46:25.000+02:00","2026-04-22T06:57:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","DEX,Production,Cloud Agent,Linux Server,VRF_ECHANGE_DC,XFB,OS-LIN-SRV DYN","145.0" +"416050086","367717577","vrzbxaapp2.sanef-rec.fr","","00:50:56:9c:8f:39","10.45.15.197","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 4b 1a 2e c5 4c c9-04 c2 fa 36 29 42 10 c4","No Asset Tag","'+02:00","2026-04-15T16:50:37.000+02:00","root","Cloud Agent","f1b1bdb2-aba9-42c3-b024-668c319824e6","2026-04-15T15:19:46.000+02:00","2026-04-22T06:56:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"407993958","364306731","splogbels1","","40:5b:7f:e1:b0:8d","10.44.7.41","fe80::425b:7fff:fee1:b08d","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G11 Server","32","","INTEL(R) XEON(R) SILVER 4514Y","31586","HPE 2.50 04/22/2025","CZ2D3C0G32","","'+02:00","2026-04-17T15:24:14.000+02:00","reboot","Cloud Agent","6babbc6b-af04-4507-a5a5-1cca7d385c4d","2026-03-12T14:43:01.000+02:00","2026-04-22T06:56:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN,Elasticsearch,Production","152.0" +"131142756","193232215","vmcmdb","","00:50:56:82:89:58","10.30.11.126","fe80::250:56ff:fe82:8958","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-5c 9a 02 42 e2 29 78 a4-73 39 00 04 68 fe dd 76","No Asset Tag","'+02:00","2024-12-18T15:24:38.000+02:00","cybreconcile","Cloud Agent","215653c1-a242-4eee-bac0-657357541f10","2022-07-11T16:24:04.000+02:00","2026-04-22T06:56:03.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,Trafic,Recette,ITOP,Obsolete,VRF_INCONNUE","675.0" +"295975028","317392823","vpvsaasia1","","00:50:56:94:26:36","10.44.2.200","fe80::250:56ff:fe94:2636","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 55 2f f1 7e 8f d8-37 f0 26 6d e1 12 63 8a","No Asset Tag","'+02:00","2026-02-02T16:43:43.000+02:00","tbaad","Cloud Agent","75796606-f2a5-4510-9e2a-8d1ba5778e54","2025-01-29T12:11:48.000+02:00","2026-04-22T06:55:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0" +"162039853","215781556","vpsasacpt1.sanef.groupe","","00:50:56:82:03:5b","10.41.32.7","fe80::250:56ff:fe82:35b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","386444","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 20 dd 1b 99 33 df-70 0d f5 60 7c a9 e0 e3","No Asset Tag","'+02:00","2026-03-25T16:00:22.000+02:00","cybreconcile","Cloud Agent","fe65813a-d961-484f-b252-9ee5d6cb7734","2023-03-08T15:38:55.000+02:00","2026-04-22T06:55:51.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,SAS,Cloud Agent,Linux Server,DSI","93.0" +"131405762","193424770","vmquorum1.sanef.groupe","","00:50:56:82:5D:D3","10.102.2.11","fe80::250:56ff:fe82:5dd3","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 0c c5 ed f0 97 2d-b4 cb f2 2e 27 19 ea 19","No Asset Tag","'+02:00","2025-01-22T12:14:26.000+02:00","cybreconcile","Cloud Agent","f4622346-fe46-4098-8fd1-0d9bd920de6f","2022-07-13T10:36:59.000+02:00","2026-04-22T06:55:41.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,DEX,Obsolete,Production,Sextan","700.0" +"358779414","344245999","vrcybapta1","","00:50:56:9c:fa:b5","10.45.11.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11700","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c8 c0 6e 1c 85 f3-ac 52 3a dd e2 8f f8 01","No Asset Tag","'+02:00","2026-04-16T10:48:49.000+02:00","cybreconcile","Cloud Agent","bbf8ae39-41ed-49c7-a126-946a2741aecd","2025-09-11T09:26:33.000+02:00","2026-04-22T06:55:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN,CyberArk,Recette","336.0" +"139375864","198361633","spasuagsm4","","b4:7a:f1:b3:e7:09, b4:7a:f1:b3:e7:08","10.43.4.212,10.41.40.212","fe80::b67a:f1ff:feb3:e709,fe80::b67a:f1ff:feb3:e708","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/14/2022","CZJ81900F2","","'+02:00","2025-10-08T16:09:42.000+02:00","cybreconcile","Cloud Agent","239632ad-773e-46c7-81cb-452e6531aa02","2022-09-08T15:34:56.000+02:00","2026-04-22T06:54:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","Production,Exploitation,VRF_INCONNUE,DSI,BDD-POS DYN,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server,ASUR","524.0" +"369277894","348354786","vrdsiaito1.sanef-rec.fr","","00:50:56:9c:0b:ac","10.45.15.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 14 09 8f cb c0 b4-4c 0f fc c5 0c e4 3b 21","No Asset Tag","'+02:00","2026-04-10T10:01:22.000+02:00","cybsupapp","Cloud Agent","ad2c0f09-1ecd-4312-8a4c-0c7d53077036","2025-10-16T11:55:50.000+02:00","2026-04-22T06:54:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","139.0" +"373212905","350070988","vpameasxt1.sanef.groupe","","00:50:56:90:3e:d6, 00:50:56:90:1e:f8","10.43.4.25,10.41.41.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 8b 3c 35 35 56 96-78 8b 90 84 23 83 a4 05","No Asset Tag","'+02:00","2025-11-12T09:33:10.000+02:00","cybreconcile","Cloud Agent","b6929662-ee8c-4e67-afe2-eb5686a424e3","2025-10-31T11:57:06.000+02:00","2026-04-22T06:53:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,Sextan,Production","662.0" +"112196090","180151399","vmamrrdt2","","00:50:56:82:53:79, 00:50:56:82:4F:D5","10.45.2.186,10.45.2.188,10.45.2.192,10.45.2.194,10.45.3.186,10.45.3.188,10.45.3.192,10.45.3.194","fe80::250:56ff:fe82:5379,fe80::250:56ff:fe82:4fd5","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 93 64 9e 76 9d-d4 d7 dc 53 6a 19 06 90","No Asset Tag","'+02:00","2025-11-18T13:38:15.000+02:00","cybexpapp","Cloud Agent","6baf190a-8dc9-4345-bd7d-5872ffaa9231","2022-02-03T16:45:05.000+02:00","2026-04-22T06:53:49.000+02:00","x86_64","5","SCA,VM,PM,GAV","ServersInCyberark,MIVISU,log4j,Outils prod (Monitoring, NMS, gestion de parc),Production,Linux Server,OS-LIN-SRV DYN,Cloud Agent,Sans,Trafic,Recette,Obsolete,DEX,VRF_INCONNUE","873.0" +"156071801","209222521","vpdsiaclo1.sanef.groupe","","00:50:56:82:aa:3c","192.168.31.19","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 d4 84 8f 20 30 8b-15 80 94 1b a9 56 7a 6d","No Asset Tag","'+02:00","2026-04-16T14:26:49.000+02:00","cybreconcile","Cloud Agent","4e6ad26c-f78d-4e23-8d2f-c0071e748eb9","2023-01-19T10:41:15.000+02:00","2026-04-22T06:53:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Owncloud,VRF_INCONNUE","132.0" +"219800194","253606419","vpbotarmq1.sanef.groupe","","00:50:56:90:2a:9d","10.41.23.22","fe80::250:56ff:fe90:2a9d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 dd 7c 58 43 63 71-e5 91 e0 bf 4b f1 54 66","No Asset Tag","'+02:00","2026-04-21T11:32:10.000+02:00","cybreconcile","Cloud Agent","ffcb26ac-642c-4ddf-9731-be09592928c3","2024-03-04T12:16:46.000+02:00","2026-04-22T06:53:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Linux Server,Cloud Agent,OS-LIN-SRV DYN","141.0" +"160093994","213039821","vraiibpgs4","","00:50:56:82:c5:14","10.45.1.165,10.45.1.168","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 ae 0b a2 5e 22 17-93 4c cc eb a7 71 b9 5a","No Asset Tag","'+02:00","2026-01-07T12:41:58.000+02:00","cybintsys","Cloud Agent","92f8ba2f-56bd-4758-9d22-e1b740b167e8","2023-02-21T12:42:20.000+02:00","2026-04-22T06:53:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,BDD,BDD-ELA DYN,BDD-POS DYN,OS-LIN-SRV DYN,MID-NGINX DYN,Recette","143.0" +"178168038","231228012","vpameased1.sanef.groupe","","00:50:56:82:57:01","10.41.40.43","fe80::250:56ff:fe82:5701","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a4 1d 0c ca 65 5c-69 49 dd d6 7a e3 eb 37","No Asset Tag","'+02:00","2026-04-15T15:16:26.000+02:00","cybreconcile","Cloud Agent","7023c0a4-e618-46a7-9ffd-d1cf3479d060","2023-07-12T12:05:06.000+02:00","2026-04-22T06:52:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,OS-LIN-SRV DYN,SED,Cloud Agent,Linux Server","132.0" +"296033054","317455078","vpiadapol1","","00:50:56:9a:8f:55","10.44.3.68","","Linux / Server","Red Hat Enterprise Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7685","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1a 89 6e 39 61 2b 38-47 36 07 52 d2 4b 7d e4","No Asset Tag","'+02:00","2025-01-29T14:59:52.000+02:00","root","Cloud Agent","18253cdb-719b-4f0c-bd66-f63d7cf8b292","2025-01-29T15:00:17.000+02:00","2026-04-22T06:52:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","338.0" +"181705921","233669335","vrosapsrv1.sanef-rec.fr","","00:50:56:9c:70:38","10.45.9.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 29 fb 96 2e 14 82-28 c3 82 89 0e b2 31 36","No Asset Tag","'+02:00","2026-04-09T12:14:04.000+02:00","cybadmsys","Cloud Agent","31f20ac1-dd20-4cd3-9a4e-790be9367805","2023-08-07T10:57:17.000+02:00","2026-04-22T06:52:15.000+02:00","x86_64","4","SCA,VM,PM,GAV","Péage,BDD-ELA DYN,MID-NGINX DYN,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,DEX,Cloud Agent,Linux Server","133.0" +"131406323","193425034","vrracquo1","","00:50:56:AC:00:E6","10.102.2.10","fe80::250:56ff:feac:e6","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","996","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 2c 61 f3 29 a8 f9 a3-22 22 61 17 58 04 c3 5d","No Asset Tag","'+02:00","2023-09-25T12:03:13.000+02:00","cybreconcile","Cloud Agent","7fc95d16-3183-469d-9c09-e08ccbf5dea2","2022-07-13T10:38:49.000+02:00","2026-04-22T06:52:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Quorum,OS-LIN-SRV DYN,Obsolete,Cloud Agent,Linux Server","343.0" +"411394993","365634074","vpdecasas4","","00:50:56:82:11:f0","10.30.11.152","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","64430","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 fa 1c e9 14 59 44-09 d9 a0 eb 46 07 f2 ff","No Asset Tag","'+02:00","2026-03-25T15:50:33.000+02:00","cybreconcile","Cloud Agent","80b494e2-2f67-454e-8170-847d60075eae","2026-03-25T15:50:52.000+02:00","2026-04-22T06:51:59.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,SAS,DSI,Production,Finances Comptabilité / Consolidation,Linux Server,Cloud Agent,OS-LIN-SRV DYN","512.0" +"230624660","258738929","vpsupapol1.sanef.groupe","","00:50:56:8d:78:3e","10.44.5.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d de 96 06 d0 e5 37-73 d9 95 5b 4a d8 8f 44","No Asset Tag","'+02:00","2026-03-30T10:42:58.000+02:00","cybreconcile","Cloud Agent","82ca204b-27bc-4eb7-b322-1655ec08497b","2024-04-17T17:35:43.000+02:00","2026-04-22T06:51:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN","66.0" +"159693566","212321116","vpvpnarad1.sanef.groupe","","00:50:56:82:70:90, 02:42:9d:4f:9c:a1, 7a:60:ec:a5:16:1a","192.168.19.6,172.17.0.1","fe80::250:56ff:fe82:7090,fe80::42:9dff:fe4f:9ca1,fe80::7860:ecff:fea5:161a","Linux / Server","Red Hat Enterprise Linux 8.3","8.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 02 d7 da 94 70 9e 6e-62 4c 3e fb 97 e7 7c 40","No Asset Tag","'+02:00","2026-02-24T12:10:05.000+02:00","cybadmres","Cloud Agent","7ab0a0cc-dff6-4c59-b695-fea679d296e7","2023-02-17T13:09:34.000+02:00","2026-04-22T06:51:42.000+02:00","x86_64","3","SCA,VM,PM,GAV","VPN,Radius,GEMALTO,VRF_INCONNUE,OS-LIN-SRV DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server","207.0" +"213849878","251124779","spsecalog1.sanef.groupe","","54:80:28:4e:62:e0","10.30.10.163","fe80::adf5:cfc0:844c:bb2a","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant DL380 G10 Server","32","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31828","HPE U30 08/06/2025","CZ28450152","","'+02:00","2026-01-14T16:13:56.000+02:00","cybsupsys","Cloud Agent","561115b7-6e0d-4fcf-8b81-6db17110d077","2024-02-05T19:27:44.000+02:00","2026-04-22T06:51:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,Splunk,OS-LIN-SRV DYN,DSI","242.0" +"195794735","241929791","vpbotreco4.sanef.groupe","","00:50:56:90:4a:4d","10.41.23.21","fe80::250:56ff:fe90:4a4d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 cb 51 e5 f3 c5 6d-3b 13 0c 15 51 d4 9a 94","No Asset Tag","'+02:00","2026-04-16T15:14:01.000+02:00","cybreconcile","Cloud Agent","84311023-f2cf-4094-b245-29d504b5c25f","2023-10-26T11:42:11.000+02:00","2026-04-22T06:49:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,FreeFlow,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0" +"409746895","365034580","vpdsiaito1.sanef.groupe","","00:50:56:9c:fa:7c","10.46.33.35","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 29 1a 4f 84 a5 cf-aa 45 de 5e 04 ad 47 37","No Asset Tag","'+02:00","2026-03-23T15:11:57.000+02:00","cybreconcile","Cloud Agent","1c3cf6bb-20fe-4cc6-9671-7ff64bcdc4e1","2026-03-19T15:13:46.000+02:00","2026-04-22T06:49:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","330.0" +"303923893","322167384","vrdepbels2.sanef-rec.fr","","00:50:56:9c:fc:1d","10.45.13.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9f 5f 98 84 33 6c-23 9d a6 89 71 d7 53 91","No Asset Tag","'+02:00","2026-01-15T16:11:37.000+02:00","cybsupapp","Cloud Agent","2a28fb56-a6f0-4da5-812f-61c6e7bb2b50","2025-02-27T18:15:20.000+02:00","2026-04-22T06:48:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Recette,Gestion dépanneurs,Linux Server,Cloud Agent","141.0" +"314659720","326547477","vpdsibquo1.sanef.groupe","","00:50:56:90:ff:a1","10.100.16.19","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 73 1f 14 3b 95 cf-66 6b b9 4a ae 5c d7 d4","No Asset Tag","'+02:00","2026-02-10T11:18:47.000+02:00","cybadmbdd","Cloud Agent","9892cd90-4b55-48b2-bf09-4a20e99269de","2025-04-08T17:09:47.000+02:00","2026-04-22T06:47:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,OS-LIN-SRV DYN,Production,BDD-ELA DYN,Cloud Agent,Linux Server","140.0" +"294113565","316155452","vpadvangx1.sanef.groupe","","00:50:56:90:f2:a9","192.168.20.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d5 59 bd 3e ac 7f-5f e4 fd 51 7e 33 c8 37","No Asset Tag","'+02:00","2026-03-17T16:39:16.000+02:00","cybadmroot","Cloud Agent","f9d3d39e-0323-4b81-90e4-1642915c432b","2025-01-22T13:10:08.000+02:00","2026-04-22T06:47:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,ADV-U","141.0" +"137346917","197588252","vpexpbdech1.sanef.groupe","","00:50:56:82:9b:ad","10.41.40.155","fe80::663a:66b7:1daf:db9e","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d d3 08 47 19 41 98-d7 42 c7 04 de b3 f2 e8","No Asset Tag","'+02:00","2025-11-25T15:36:26.000+02:00","cybreconcile","Cloud Agent","8308352a-87a2-4733-86fd-7cb6ac17b583","2022-08-30T17:02:41.000+02:00","2026-04-22T11:56:38.000+02:00","x86_64","4","SCA,VM,PM,GAV","DECHETS,Production,BDD-POS DYN,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,VRF_TRAFIC_DC,DEX,Cloud Agent,Linux Server,Obsolete,ServersInCyberark,Patrimoine","100.0" +"196663887","242433779","vpboobquo1.sanef.groupe","","00:50:56:90:eb:e4","10.100.16.13","fe80::250:56ff:fe90:ebe4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 31 52 df 09 67 68-7e 74 2f 62 c2 51 c4 34","No Asset Tag","'+02:00","2026-04-07T12:08:49.000+02:00","cybreconcile","Cloud Agent","d7f52b85-a622-403d-b3ff-1d2f8e4b3b4a","2023-10-31T18:38:52.000+02:00","2026-04-22T06:47:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN","334.0" +"304096310","322255083","vpsupapol5","","00:50:56:94:70:3a","10.44.5.107","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 ef 07 cf 2f 81 53-d9 5d 06 e4 16 01 eb 07","No Asset Tag","'+02:00","2026-03-30T11:24:10.000+02:00","cybsupsys","Cloud Agent","98d941fc-1d28-41a4-9618-16754a77178f","2025-02-28T12:35:28.000+02:00","2026-04-22T06:47:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server","133.0" +"228684181","257664201","vpbocasec1","","00:50:56:90:53:09","10.41.22.16","fe80::250:56ff:fe90:5309","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 66 9f 39 aa 70 12-76 58 86 b2 81 d1 ac e7","No Asset Tag","'+02:00","2026-04-01T09:56:22.000+02:00","root","Cloud Agent","5fd89561-ad73-4111-8bb9-95ee494fde17","2024-04-09T13:14:36.000+02:00","2026-04-22T06:47:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN","141.0" +"407627825","364166819","splogbels3","","d4:f5:ef:39:81:2c","10.44.7.42","fe80::d6f5:efff:fe39:812c","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G10 Server","16","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","31493","HPE U30 08/06/2025","CZ20510927","","'+02:00","2026-03-27T16:19:28.000+02:00","cybintsys","Cloud Agent","58b1fe8a-fb3d-4490-a2f9-a26a40618ce8","2026-03-11T12:17:53.000+02:00","2026-04-22T06:46:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Production,Elasticsearch,Cloud Agent,OS-LIN-SRV DYN,Linux Server","152.0" +"413355832","366628998","vpsecapki1.sanef.groupe","","00:50:56:94:ae:99","10.44.3.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 d2 63 c4 cf 61 e0-f6 2e 2d d5 54 ba fc f1","No Asset Tag","'+02:00","2026-04-03T15:08:49.000+02:00","cybsecope","Cloud Agent","6f169398-810e-420e-bf0a-4f8b5f09b5f6","2026-04-03T15:09:06.000+02:00","2026-04-22T06:46:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","66.0" +"295103250","316894097","vpngwasic2","","00:50:56:8f:a6:87","10.44.200.101","fe80::250:56ff:fe8f:a687","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 7a 40 97 ae c4 25-6d 28 12 8a 34 18 1a 68","No Asset Tag","'+02:00","2026-03-18T14:17:24.000+02:00","reboot","Cloud Agent","e89ff728-8ed2-450e-b500-76e84d85f701","2025-01-27T14:53:33.000+02:00","2026-04-22T06:45:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIA,TAG-SIC,Linux Server,Cloud Agent","53.0" +"357904904","343915750","vprpnangx1","","00:50:56:90:12:0f","10.41.20.26","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 2e f2 88 64 36 d2-70 58 1c 2a eb 53 fb cc","No Asset Tag","'+02:00","2026-02-25T15:49:56.000+02:00","cybreconcile","Cloud Agent","5e905740-f89f-4e67-a259-7f1f87138406","2025-09-08T16:12:44.000+02:00","2026-04-22T06:45:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Péage,Production","140.0" +"191420514","239726721","viboobsql2.sanef.groupe","","00:50:56:90:7b:74","10.41.22.198,10.41.22.199","fe80::250:56ff:fe90:7b74","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f0 cd 09 15 29 ed-6e c7 9a 6d ee ef 3c b3","No Asset Tag","'+02:00","2026-03-16T12:41:55.000+02:00","cyblecemo","Cloud Agent","aa979cae-f80b-4415-9145-4dbfffb99ae3","2023-10-04T17:46:12.000+02:00","2026-04-22T06:45:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,ServersInCyberark,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Production,flux_libre","141.0" +"160222097","213243642","vrsupbmbi1.sanef.groupe","","00:50:56:82:91:43","10.45.0.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 a7 cb 5e 11 9c 25-8d 4c 0d c0 79 38 21 0c","No Asset Tag","'+02:00","2026-03-11T12:02:03.000+02:00","cybadmsys","Cloud Agent","13fa4ab4-5e50-4785-b908-e76cd337b081","2023-02-22T13:01:31.000+02:00","2026-04-22T06:43:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,DSI,Centreon,Recette","120.0" +"382479156","353996573","spbckmmag1.sanef.groupe","","04:bd:97:3e:78:08","192.168.109.8","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C240 M5 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","31534","Cisco Systems, Inc. C240M5.4.3.2g.0.0515250954 05/15/2025","WZP25500WKR","Unknown","'+02:00","2025-12-09T16:15:11.000+02:00","root","Cloud Agent","99d35416-a255-4046-b5b6-7e8255676814","2025-12-08T14:34:11.000+02:00","2026-04-22T06:42:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","330.0" +"331046153","333860641","vrameahtp2.sanef-rec.fr","","00:50:56:9c:3d:a0, 00:50:56:9c:5a:88","10.45.4.51,10.45.2.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 4c 0a 64 79 11 d2-9e cb 7e de 44 01 97 c7","No Asset Tag","'+02:00","2026-04-02T16:34:16.000+02:00","cybintsys","Cloud Agent","a855257a-e734-4924-8b5c-8061f3926d70","2025-06-05T08:35:50.000+02:00","2026-04-22T06:42:31.000+02:00","x86_64","4","SCA,VM,GAV","DEX,Sextan,Recette,OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent","284.0" +"284376860","309489722","vtdsibpmm1.sanef-rec.fr","","00:50:56:9c:a2:ab","10.45.1.175","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 94 30 91 a1 96 cf-bd 52 ef f8 df 16 ca 87","No Asset Tag","'+02:00","2026-01-20T11:44:37.000+02:00","cybadmbdd","Cloud Agent","d0c1bf3d-4dcd-4749-861b-efbe8da5ebda","2024-12-05T13:41:18.000+02:00","2026-04-22T06:42:12.000+02:00","x86_64","2","SCA,VM,GAV","Recette,Linux Server,Cloud Agent,PATRIMOINE,OS-LIN-SRV DYN","138.0" +"131274982","193320475","vpaiiamap1","","00:50:56:82:de:45","10.30.12.123","fe80::1afe:7fb8:56b0:ac9f","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 07 5f 63 f0 05 d9-8e 0c 2a e2 67 26 e7 96","No Asset Tag","'+02:00","2026-03-10T15:02:52.000+02:00","cybreconcile","Cloud Agent","a8ecaddb-8789-40d3-820d-9da6f7a543ed","2022-07-12T15:41:44.000+02:00","2026-04-22T06:41:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE,Production,DSI,Centreon,ServersInCyberark,Outils prod (Monitoring, NMS, gestion de parc)","453.0" +"231613074","259382223","vvbotrssc1.sanef-rec.fr","","00:50:56:9c:03:e2","192.168.21.165","fe80::250:56ff:fe9c:3e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c b6 4e e1 e9 7c b6-e8 0e c2 e3 8c 86 0c 3a","No Asset Tag","'+02:00","2026-03-12T18:03:24.000+02:00","cybreconcile","Cloud Agent","4edf4a44-6734-48fe-8837-ff52373820f2","2024-04-22T17:39:57.000+02:00","2026-04-22T06:41:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","147.0" +"231533960","259283850","lpemvaste6","","00:17:a4:77:1c:14, 00:17:a4:77:1c:10","192.168.102.113,192.168.101.113","fe80::217:a4ff:fe77:1c14,fe80::217:a4ff:fe77:1c10","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000702","","'+02:00","2025-06-30T14:48:56.000+02:00","lamhajeb-ext","Cloud Agent","9eda4a28-4e0a-4ae4-adfe-e74a78ee0ab5","2024-04-22T11:32:19.000+02:00","2026-04-22T11:53:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,OS-LIN-SRV DYN,EMV,PCI Bunker EMV,Production,PCI Bunker EMV - VLAN Stecard v17","676.0" +"200350065","244309166","vppeabbst3.sanef.groupe","","00:50:56:90:ef:2a","10.41.20.55","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f1 ea 1b 11 82 89-0d 71 98 b5 13 7b 53 58","No Asset Tag","'+02:00","2026-04-02T09:48:26.000+02:00","cybreconcile","Cloud Agent","b976e995-c0d3-471d-9e5f-ac8132228163","2023-11-22T13:43:16.000+02:00","2026-04-22T06:41:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Flux Libre,OS-LIN-SRV DYN,DSI,FreeFlow,flux_libre,Production,BOOST,Cloud Agent,Linux Server","332.0" +"305794746","322889283","vrgesbref1.sanef-rec.fr","","00:50:56:9c:8a:87","10.45.13.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a1 0a 88 b1 57 aa-49 97 5e a7 53 f7 e2 8a","No Asset Tag","'+02:00","2026-02-23T13:29:00.000+02:00","cybadmbdd","Cloud Agent","809fe4b8-391b-4a1d-a017-71508b1cc939","2025-03-06T19:33:16.000+02:00","2026-04-22T06:41:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,Recette,BDD,Linux Server,Cloud Agent","54.0" +"130584303","192833659","vmamdpmv2.sanef.groupe","","00:50:56:82:ef:a5","10.45.2.129","fe80::8c25:8c4e:dce7:4fc3","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","12014","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 11 9d 4d e8 01 09-dc 3a 84 d6 ff 43 24 bd","No Asset Tag","'+02:00","2025-01-21T11:19:37.000+02:00","cybexpapp","Cloud Agent","fe51c1b9-c5ea-493c-8764-987808a4713d","2022-07-07T11:41:37.000+02:00","2026-04-22T06:41:00.000+02:00","x86_64","5","SCA,VM,PM,GAV","Recette,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,Trafic,Obsolete,MIVISU","627.0" +"202413299","245310748","vrameasxt2.sanef-rec.fr","","00:50:56:9c:a2:af, 00:50:56:9c:bb:53","10.45.2.61,10.45.4.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8f f0 1e b4 8f 5c-dc 45 a1 02 f8 0e 75 a0","No Asset Tag","'+02:00","2026-04-20T18:47:53.000+02:00","cybadmsys","Cloud Agent","8d3e033a-62fd-4f26-8345-fb6e6e199652","2023-12-04T17:29:25.000+02:00","2026-04-22T11:45:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,Sextan,DEX,OS-LIN-SRV DYN","682.0" +"130580517","192830533","lamtinf1.sanef.groupe","","00:17:A4:77:14:E2","10.45.7.30","fe80::217:a4ff:fe77:14e2","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G8 Server","24","2000","Intel(R) Xeon(R) CPU E5-2620 0 @ 2.00GHz","48262","","CZ3232T6JF","","'+02:00","2024-10-14T15:38:12.000+02:00","cybexpapp","Cloud Agent","2a5c3d9c-f404-46ca-ab8f-e5901e2a0842","2022-07-07T10:55:00.000+02:00","2026-04-22T06:40:50.000+02:00","x86_64","2","SCA,VM,GAV","log4j,Recette,Bases de Données,ORACLE,OS-LIN-SRV DYN,BDD-POS DYN,Obsolete,DSI,VRF_INCONNUE,Linux Server,Cloud Agent","350.0" +"236554069","265278425","vpechatre3.sanef.groupe","","00:50:56:90:7e:a5","10.42.16.135","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 b5 68 f5 b3 65 40-57 8b 1f 07 fa 7a 66 83","No Asset Tag","'+02:00","2025-11-18T15:42:54.000+02:00","cybreconcile","Cloud Agent","911a6144-d6a0-438f-a361-664ca817db49","2024-05-14T14:30:32.000+02:00","2026-04-22T06:40:04.000+02:00","x86_64","3","SCA,VM,PM,GAV","TALEND,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production","208.0" +"190550423","239193384","vvpeaabst2.sanef-rec.fr","","00:50:56:9c:ad:2b","10.45.10.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cc c1 a9 d2 a8 f2-fd 37 22 ca ca ee 9b b3","No Asset Tag","'+02:00","2026-03-09T13:30:51.000+02:00","cybsupapp","Cloud Agent","793727e6-7348-4e4d-815b-3204aa28f0f3","2023-09-29T15:58:49.000+02:00","2026-04-22T06:40:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,MID-NGINX DYN,BDD-ELA DYN,FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server","141.0" +"213123476","250792401","vpbckangw3","","00:50:56:9a:29:e0","10.44.3.164","fe80::250:56ff:fe9a:29e0","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7652","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a 8d f5 87 6d da da-86 27 fa e8 f3 ed a6 57","No Asset Tag","'+02:00","2026-02-03T17:03:01.000+02:00","tbaad-ext","Cloud Agent","f0d76d38-def3-4a0b-91ce-86b0881e830e","2024-02-01T12:32:22.000+02:00","2026-04-22T06:39:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","53.0" +"279163184","304713615","vrdecasas4.sanef.groupe","","00:50:56:82:b2:63","10.45.1.7","fe80::250:56ff:fe82:b263","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a9 4e c6 b7 8e a0-a8 88 9d 5b bc b3 0e 55","No Asset Tag","'+02:00","2026-03-23T11:58:16.000+02:00","cybadmsys","Cloud Agent","5b8b3dc2-a47e-4751-95b1-6252c80a5b64","2024-11-14T15:54:25.000+02:00","2026-04-22T06:37:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,Recette","54.0" +"131275015","193320477","vpaiiapol2","","00:50:56:82:f3:e9","10.30.12.126","fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 18 a7 f2 2e b1 a5-a1 1c 21 89 fe 28 2e 7f","No Asset Tag","'+02:00","2024-06-03T14:34:52.000+02:00","cybreconcile","Cloud Agent","579cf1d3-e95b-4537-9e26-c2c734e321dc","2022-07-12T15:43:36.000+02:00","2026-04-22T11:52:05.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,Sans,Production,Outils prod (Monitoring, NMS, gestion de parc),Cloud Agent,Linux Server,DSI,Obsolete,MID-APACHE-TOMCAT DYN,BDD-SQL DYN,BDD-ELA DYN,BDD-POS DYN,MID-NGINX DYN,VRF_INCONNUE","462.0" +"332275914","336780122","vpameaquo1","","00:50:56:90:f9:d1","10.100.16.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d6 b9 69 7f 0f 02-6c 35 67 7f 8f 01 af d7","No Asset Tag","'+02:00","2025-10-29T12:02:18.000+02:00","cybsupsys","Cloud Agent","a8802b8e-5c87-4fcc-bff6-c2139fc7c98c","2025-06-10T12:45:37.000+02:00","2026-04-22T11:53:45.000+02:00","x86_64","4","SCA,VM,GAV","OS-LIN-SRV DYN,Production,Linux Server,Cloud Agent,Sextan","279.0" +"196050820","242054828","vpbotasim1.sanef.groupe","","00:50:56:90:85:61","10.41.23.31","fe80::250:56ff:fe90:8561","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 94 48 64 86 40 f6-73 5a 9d 2b 20 3f bc 65","No Asset Tag","'+02:00","2026-04-16T10:28:21.000+02:00","cybadmsys","Cloud Agent","b9bd1b16-bc99-45b3-97c0-fd3a002ddf14","2023-10-27T17:19:03.000+02:00","2026-04-22T06:37:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,flux_libre,Production,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0" +"186210649","236667824","vmampsxt5","","00:50:56:82:d1:65, 00:50:56:82:b2:9b, 00:50:56:82:57:b5","10.43.4.29,10.41.40.29,10.43.40.29","fe80::250:56ff:fe82:d165,fe80::250:56ff:fe82:b29b,fe80::250:56ff:fe82:57b5","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ca 2d 25 44 81 97-f3 90 5f 38 8f 3c 46 ca","No Asset Tag","'+02:00","2025-11-24T16:47:40.000+02:00","cybreconcile","Cloud Agent","140e696a-12df-41e9-bebd-8eca61f63123","2023-09-05T12:01:03.000+02:00","2026-04-22T11:52:32.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Obsolete,DEX,Cloud Agent,Linux Server,log4j,Sextan","698.0" +"379524208","352874785","vpcybapta1.sanef.groupe","","00:50:56:9c:1c:c6","10.44.1.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c b1 0d 1b 59 dd 19-7a 4f 80 15 f9 ef 4a 5e","No Asset Tag","'+02:00","2026-03-24T11:13:51.000+02:00","cybreconcile","Cloud Agent","6ea81e60-f188-45fb-8176-8e01a9e42ff3","2025-11-26T12:58:05.000+02:00","2026-04-22T11:40:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN","335.0" +"196660337","242432944","vpbooaboo1.sanef.groupe","","00:50:56:90:74:ba","10.41.22.137","fe80::250:56ff:fe90:74ba","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 50 d8 89 7a c9 e8-f2 81 33 00 22 be 20 3d","No Asset Tag","'+02:00","2026-04-07T10:28:49.000+02:00","cybadmroot","Cloud Agent","5f9569f7-9009-4dac-bed8-28b03f8a1eba","2023-10-31T18:27:13.000+02:00","2026-04-22T06:36:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,FreeFlow,Flux Libre,Production,flux_libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"200009562","244159730","vppeahbst3.sanef.groupe","","00:50:56:90:76:4a","10.41.20.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 8b 75 0d 58 d2 29-46 fe 8f e0 6b 86 b7 f0","No Asset Tag","'+02:00","2026-04-02T10:29:13.000+02:00","cybreconcile","Cloud Agent","e8a2fd6f-d9d0-4f1e-b3fe-741f89579b14","2023-11-20T18:38:20.000+02:00","2026-04-22T11:50:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN,Flux Libre","334.0" +"176095383","229734617","vvbooaori2.sanef-rec.fr","","00:50:56:9c:11:3b","10.45.6.80","fe80::250:56ff:fe9c:113b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9a 63 d4 9f 6d 8e-61 ea 72 e7 61 59 49 4b","No Asset Tag","'+02:00","2026-03-09T15:41:40.000+02:00","podman_app","Cloud Agent","9a0647fa-be42-4676-b0ca-31699173ba60","2023-06-27T15:28:30.000+02:00","2026-04-22T11:51:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,FreeFlow,Recette,flux_libre","140.0" +"340062892","336780156","lpamebrac3.sanef.groupe","","ee:50:33:80:00:92, ee:50:33:80:00:96","10.41.41.112,10.41.41.116,10.41.41.120,10.43.4.140","fe80::ec50:33ff:fe80:92,fe80::ec50:33ff:fe80:96","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00N","/n/Bios Asset Tag :","'+02:00","2025-11-19T17:26:14.000+02:00","cybreconcile","Cloud Agent","a89c2ad5-34c7-41b1-8205-6946fb9e1015","2025-07-08T10:21:21.000+02:00","2026-04-22T06:36:19.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,Amelie,Production,OS-LIN-SRV DYN","337.0" +"131262266","193313201","lampadv1.serveur.est.sanef.fr","","00:17:A4:77:00:94","10.30.11.52","","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","8","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","28143","","VCX000000D","","'+02:00","2025-04-02T07:34:32.000+02:00","cybreconcile","Cloud Agent","d09c96f9-ad88-46bd-855b-1e92eb7d3ad2","2022-07-12T14:04:21.000+02:00","2026-04-22T11:32:07.000+02:00","x86_64","2","SCA,VM,GAV","DEX,BDD-POS DYN,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Obsolete,ADV-U,Cloud Agent,Linux Server,Sans,Production,Gestion commerciale","350.0" +"255415529","294877240","lramebrac2.sanef-rec.fr","","3e:33:fb:a0:00:d0, 3e:33:fb:a0:00:d4","10.45.2.111,10.45.2.115,10.45.2.118,10.45.5.7,169.254.17.171","fe80::3c33:fbff:fea0:d0,fe80::3c33:fbff:fea0:d4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200Z","/n/Bios Asset Tag :","'+02:00","2026-04-20T11:58:34.000+02:00","cybsecope","Cloud Agent","ddca9e7a-7c2d-4c10-b291-9d97f63ca0ed","2024-08-02T16:53:13.000+02:00","2026-04-22T11:49:42.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Amelie,Sextan,Recette","508.0" +"295082073","316880283","vpdepaast1.sanef.groupe","","00:50:56:90:cb:02","10.41.40.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 82 82 88 55 c1 62-ca dc 83 58 e4 67 9a 31","No Asset Tag","'+02:00","2026-01-21T16:30:27.000+02:00","cybadmroot","Cloud Agent","6ce50ffc-ab6f-4c7e-ba3a-255e14dd5054","2025-01-27T13:04:21.000+02:00","2026-04-22T11:51:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","140.0" +"279169027","304713053","vrdecasas1.sanef.groupe","","00:50:56:82:b0:e2","10.45.1.4","fe80::250:56ff:fe82:b0e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 69 6b 63 46 e2 ad-5f 6a 83 36 0b fa 28 da","No Asset Tag","'+02:00","2026-03-23T11:52:39.000+02:00","cybadmsys","Cloud Agent","b88811e0-cc8a-4ee1-bf37-49d372569e65","2024-11-14T15:48:31.000+02:00","2026-04-22T06:35:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,OS-LIN-SRV DYN","137.0" +"236300233","264488384","lpemvbaemv1.sanef.groupe","","00:17:a4:77:1c:9c, 00:17:a4:77:1c:6c","192.168.103.106,192.168.101.106","fe80::217:a4ff:fe77:1c9c,fe80::217:a4ff:fe77:1c6c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","VCX000070E","","'+02:00","2024-04-18T14:38:57.000+02:00","oracle","Cloud Agent","84a94940-e1b1-4d34-a2ad-001fb49443b0","2024-05-13T14:58:45.000+02:00","2026-04-22T11:41:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,EMV,PCI Bunker EMV,Production,PCI Bunker EMV - VLAN Stecard v17","682.0" +"130587922","192835850","vrtraagas1","","00:50:56:82:53:63","10.45.1.68","fe80::250:56ff:fe82:5363","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7982","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 06 aa 79 c1 4c bd-ed fa 16 f4 63 a8 52 0b","No Asset Tag","'+02:00","2024-12-04T17:32:24.000+02:00","cybastsys","Cloud Agent","7f6c1baa-fc5a-4c14-aa51-a16daa713dc6","2022-07-07T11:58:07.000+02:00","2026-04-22T11:41:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,MID-APACHE-TOMCAT DYN,Gaspar,Obsolete,Recette,Exploitation,DEX","520.0" +"196043340","242053537","vpbotatsp1.sanef.groupe","","00:50:56:90:c9:33","10.41.23.26","fe80::250:56ff:fe90:c933","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 5d c7 1c 15 78 d6-37 84 9b 58 0c b4 39 c7","No Asset Tag","'+02:00","2026-04-16T09:42:23.000+02:00","cybreconcile","Cloud Agent","1f745a43-a175-4dbd-9a53-4c91c580be6a","2023-10-27T17:08:10.000+02:00","2026-04-22T06:34:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,Flux Libre","141.0" +"324359363","330213430","vpgawbpgs1","","00:50:56:90:03:b9","10.42.16.18","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d9 70 c1 ad cb 57-a4 02 b9 79 bd d9 62 3e","No Asset Tag","'+02:00","2026-03-19T15:40:40.000+02:00","cybreconcile","Cloud Agent","013e3747-9807-4e34-ab9a-05dd8f2c2731","2025-05-13T12:04:37.000+02:00","2026-04-22T11:44:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","144.0" +"279142399","304713252","vrdecasas5.sanef.groupe","","00:50:56:82:39:c1","10.45.1.8","fe80::250:56ff:fe82:39c1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 1e bb 86 a2 10 d4-d1 9b 68 4c 1c ad 1a f1","No Asset Tag","'+02:00","2026-03-23T11:53:58.000+02:00","cybadmsys","Cloud Agent","865bfabf-855d-4cbf-8cf8-bb525d7bebd1","2024-11-14T15:51:08.000+02:00","2026-04-22T06:33:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","335.0" +"373217282","350071907","vpameasxt4.sanef.groupe","","00:50:56:90:88:7a, 00:50:56:90:2c:f7","10.43.4.28,10.41.41.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 66 0c 01 8e 76 5e-7a f3 dc b7 8e 3c f0 98","No Asset Tag","'+02:00","2025-11-12T12:14:33.000+02:00","cybreconcile","Cloud Agent","a2764d3f-f9b0-4ed4-b1db-9093bb564a44","2025-10-31T12:09:44.000+02:00","2026-04-22T06:33:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Production","662.0" +"160118702","213073412","vrsupacen1.sanef.groupe","","00:50:56:82:61:85","10.45.0.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 a5 ad 02 11 fa 62-d7 b4 b7 7b cb 4c c7 da","No Asset Tag","'+02:00","2026-03-11T12:35:33.000+02:00","cybadmsys","Cloud Agent","870de1da-7a09-4dfc-8dbc-005ee6213ec6","2023-02-21T16:18:53.000+02:00","2026-04-22T11:37:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,MID-NGINX DYN,MID-APACHE-TOMCAT DYN","142.0" +"196660268","242432305","vpbooosea1.sanef.groupe","","00:50:56:90:2a:7c","10.41.22.135","fe80::250:56ff:fe90:2a7c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 34 7c c7 7b 02 91-50 1e 03 6e f3 bf 06 1c","No Asset Tag","'+02:00","2026-04-07T14:56:17.000+02:00","cybreconcile","Cloud Agent","845addd5-d249-4429-a295-0884f8d27548","2023-10-31T18:19:56.000+02:00","2026-04-22T11:50:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,FreeFlow","334.0" +"196660165","242432941","vpbooaori1.sanef.groupe","","00:50:56:90:a0:1d","10.41.22.139","fe80::250:56ff:fe90:a01d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 74 23 cd 47 6f b2-af db be 5a b4 1b cc 01","No Asset Tag","'+02:00","2026-04-07T15:38:31.000+02:00","cybreconcile","Cloud Agent","9d284d8e-c47d-44ae-acfe-5cc543379c58","2023-10-31T18:27:13.000+02:00","2026-04-22T11:37:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,flux_libre,Production,OS-LIN-SRV DYN,Flux Libre","336.0" +"332275911","333860642","vpameahtp2.sanef.groupe","","00:50:56:90:9d:bb, 00:50:56:90:92:0d","10.41.41.51,10.43.4.38","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f0 57 9e 98 96 4a-f1 28 f2 17 77 ff 2b ef","No Asset Tag","'+02:00","2025-10-29T10:52:43.000+02:00","cybreconcile","Cloud Agent","8d17b0bd-7464-48d9-b889-b0cf6d6a589c","2025-06-10T12:45:05.000+02:00","2026-04-22T11:32:50.000+02:00","x86_64","4","SCA,VM,GAV","Production,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,Sextan","278.0" +"373211951","350071560","vpameasxt3.sanef.groupe","","00:50:56:90:12:34, 00:50:56:90:02:9e","10.41.41.62,10.43.4.27","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f0 5c bc 40 22 b0-70 47 58 4d 4a ec 08 11","No Asset Tag","'+02:00","2025-11-12T12:04:43.000+02:00","cybreconcile","Cloud Agent","3ac94f2b-c68d-4251-9cb8-c5b3da4b14a7","2025-10-31T12:07:15.000+02:00","2026-04-22T11:53:00.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Sextan,Production,Linux Server,OS-LIN-SRV DYN","662.0" +"229382460","258006652","vpsupbmbi1.sanef.groupe","","00:50:56:8d:00:e3","10.44.5.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","23825","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d c9 2f 47 11 62 e6-0a 5e f6 34 dd d8 f1 3a","No Asset Tag","'+02:00","2026-03-30T11:45:46.000+02:00","cybadmroot","Cloud Agent","58c27d31-4492-4469-b10e-1d1828777cb1","2024-04-11T16:46:47.000+02:00","2026-04-22T11:30:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","60.0" +"338807292","336780149","vpintaprx2.sanef.groupe","","00:50:56:82:0d:77","192.168.20.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 46 17 6e 3f 09 37-1d fd 03 38 fd fb 2e 79","No Asset Tag","'+02:00","2026-04-15T14:51:46.000+02:00","cybreconcile","Cloud Agent","f6767056-31a2-4cd1-9c8a-288474c49fce","2025-07-03T10:02:20.000+02:00","2026-04-22T11:43:03.000+02:00","x86_64","4","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Gestion institutionnel,TAG-SRVEXPOSEINTERNET,High,VRF_INCONNUE,Production,ServersInCyberark","132.0" +"279112238","304690920","vpemvasat1.sanef.groupe","","00:50:56:86:ba:94","192.168.100.141","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 06 3f cb fb b5 ec dd-00 c2 5f a2 97 91 c1 69","No Asset Tag","'+02:00","2025-11-18T17:20:47.000+02:00","root","Cloud Agent","9e455e15-7fc3-4b0a-9b65-70628a2f0240","2024-11-14T12:47:47.000+02:00","2026-04-22T11:52:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN,BDD-POS DYN,OS-LIN-SRV DYN","335.0" +"139276377","198335416","vpdecasas7.sanef.groupe","","00:50:56:82:3f:e9","10.30.11.155","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257964","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 e7 36 38 3e d1 bc-ec 48 12 4d 54 f9 09 92","No Asset Tag","'+02:00","2026-03-25T11:48:03.000+02:00","cybreconcile","Cloud Agent","2f728387-f3ea-4e45-b052-1181cdede9fd","2022-09-08T09:19:40.000+02:00","2026-04-22T11:37:59.000+02:00","x86_64","3","SCA,VM,PM,GAV","ServersInCyberark,OS-LIN-SRV DYN,Production,Finances Comptabilité / Consolidation,Cloud Agent,Linux Server,SAS,DSI,VRF_INCONNUE,Obsolete","71.0" +"190915657","239409823","vvaflsmtp1.sanef-rec.fr","","00:50:56:9c:ea:e1, 1a:50:83:10:5f:17","10.45.0.231,10.88.0.1","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 4d 5b 62 d1 1d 4d-5c 8e 04 15 7b 70 f8 f3","No Asset Tag","'+02:00","2026-03-09T15:29:49.000+02:00","cybsupsys","Cloud Agent","e6c3ed13-fe7a-4dd5-adf7-dafc493ace10","2023-10-02T15:20:36.000+02:00","2026-04-22T11:43:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,flux_libre,Recette,FreeFlow","142.0" +"131405556","193423788","vmampdif2.sanef.groupe","","00:50:56:82:22:6E","10.41.40.121","fe80::250:56ff:fe82:226e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 09/17/2015","VMware-42 02 6b e5 f5 8f 41 09-6e 8e 8b 0d ad 3e ff 6b","No Asset Tag","'+02:00","2018-09-25T12:04:43.000+02:00","cybreconcile","Cloud Agent","677ad417-17ef-4c5d-baa3-df481b654afd","2022-07-13T10:27:16.000+02:00","2026-04-22T06:27:01.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Obsolete,VRF_TRAFIC_DC,Sans,Trafic,Production,Sextan,Cloud Agent,Linux Server","693.0" +"202418413","245312456","vrameasxt4.sanef-rec.fr","","00:50:56:9c:72:5e, 00:50:56:9c:e0:9a","10.45.4.63,10.45.2.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8a 86 1a 6c 10 8d-5a bd 34 fd 12 d8 29 bc","No Asset Tag","'+02:00","2026-04-20T15:35:19.000+02:00","cybadmsys","Cloud Agent","3b64fcf3-897c-4344-a6fe-988e0d1200bd","2023-12-04T17:50:25.000+02:00","2026-04-22T11:32:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,DEX,Cloud Agent,Linux Server,Sextan","95.0" +"175025285","228996977","vrairahtp1.sanef.groupe","","00:50:56:82:7e:b4","10.43.255.19","fe80::1162:faac:f084:2df3","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","16017","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 24 2b 85 10 aa 99-9a 38 33 26 87 ab 0c 4a","No Asset Tag","'+02:00","2026-04-21T10:08:07.000+02:00","cybsecope","Cloud Agent","6ce91fb2-96e6-46d6-a826-619283611851","2023-06-19T15:39:54.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette,DFIN,Satisf'aire","68.0" +"131396612","193418131","vptraatpf1.sanef.groupe","","00:50:56:82:59:9c","192.168.40.10","fe80::7fff:8231:ebd9:a751","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","5966","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d a0 20 4c 72 cf 33-f0 57 b9 fc e5 89 2a e3","No Asset Tag","'+02:00","2025-01-21T11:12:20.000+02:00","cybreconcile","Cloud Agent","4d179ac2-b564-4c18-a3f8-792967439925","2022-07-13T09:35:23.000+02:00","2026-04-22T11:30:35.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Temps de parcours,VRF_INCONNUE,ServersInCyberark,DMZ,Trafic,Sans,Production,Obsolete,DEX,TAG-SRVEXPOSEINDIRECT","491.0" +"325026193","331288660","viaflarat1.sanef.groupe","","00:50:56:9c:f8:a4","10.46.34.78","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c fc a9 c7 79 3d 47-d0 96 20 15 f9 73 ce f7","No Asset Tag","'+02:00","2026-03-19T16:15:58.000+02:00","root","Cloud Agent","36a1809e-1763-4a31-b386-905435d4e693","2025-05-15T17:10:18.000+02:00","2026-04-22T11:40:35.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,flux_libre,Linux Server,Cloud Agent","139.0" +"190553349","239196400","vvpeaabst1.sanef-rec.fr","","00:50:56:9c:08:26","10.45.10.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cb 7a b5 04 04 c1-b5 e0 a7 9f 70 ec 14 12","No Asset Tag","'+02:00","2026-03-12T10:14:24.000+02:00","cybsupapp","Cloud Agent","d44ce2e4-deed-4113-ae51-ec421311d875","2023-09-29T16:41:34.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,BDD-ELA DYN,Flux Libre,flux_libre","139.0" +"213122768","250788889","vpbckangw1","","00:50:56:82:aa:33","192.168.18.52","fe80::250:56ff:fe82:aa33","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7652","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8a 48 d9 af aa 30-01 51 85 5a 18 e4 fc fb","No Asset Tag","'-04:00","2026-02-03T16:10:08.000+02:00","tbaad-ext","Cloud Agent","40ee046b-187d-4fd9-8cda-b0f1c7cbea27","2024-02-01T12:02:36.000+02:00","2026-04-22T11:42:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","53.0" +"131270182","193318816","vpaiiacbi1.sanef.groupe","","00:50:56:82:4c:e2","10.30.12.124","fe80::71a3:5845:25c1:d5e8","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7a 02 c5 12 ef 66-37 96 1a c6 41 9c 62 c6","No Asset Tag","'+02:00","2025-12-11T09:49:04.000+02:00","cybreconcile","Cloud Agent","06beef37-3e5b-49f1-9e5d-6ff4b90a9e39","2022-07-12T15:24:19.000+02:00","2026-04-22T11:34:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),Centreon,DSI,ServersInCyberark,Obsolete,Cloud Agent,Linux Server","486.0" +"139157881","198270080","vmampgtc1","","00:50:56:82:1E:CE, 00:50:56:82:72:1A, 00:50:56:82:3C:2F","10.41.40.85,10.43.40.85,10.43.4.85","fe80::250:56ff:fe82:1ece,fe80::250:56ff:fe82:721a,fe80::250:56ff:fe82:3c2f","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3e 4f fc fa cd ee-fa d2 f5 6e ae 60 92 36","No Asset Tag","'+02:00","2024-02-13T13:58:43.000+02:00","cybreconcile","Cloud Agent","0a831760-7e62-488d-a5fd-a0b37457aa00","2022-09-07T14:22:35.000+02:00","2026-04-22T11:27:32.000+02:00","x86_64","5","SCA,VM,PM,GAV","Production,Trafic,log4j,DEX,Cloud Agent,Linux Server,VRF_TRAFIC_DC,OS-LIN-SRV DYN,Obsolete,MIVISU","876.0" +"131396522","193416778","lpsimabkp1.sanef.groupe","","00:17:a4:77:10:80","10.30.10.143","fe80::217:a4ff:fe77:1080","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","32","2600","Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz","32044","HP I36 07/18/2022","CZ25430692","","'+02:00","2024-09-24T14:24:50.000+02:00","cybreconcile","Cloud Agent","ec29d36f-515f-4712-9cbe-11eaaceb8c88","2022-07-13T09:22:37.000+02:00","2026-04-22T11:38:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,VRF_INCONNUE,BDD-POS DYN,DSI,Obsolete,ServersInCyberark,TINA,Cloud Agent,Linux Server,Sécurité IT","348.0" +"173355805","227828333","vvbooaboo1.sanef-rec.fr","","00:50:56:9c:60:2d","10.45.6.71","fe80::250:56ff:fe9c:602d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 1e 4c 91 32 23 92-4d 16 d6 e7 80 b4 24 25","No Asset Tag","'+02:00","2026-03-12T10:55:28.000+02:00","cybsupsys","Cloud Agent","5c874b4e-09c9-42c7-9351-8e6aadea36d8","2023-06-07T10:45:07.000+02:00","2026-04-22T11:26:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,Recette,Flux Libre,OS-LIN-SRV DYN,flux_libre,FreeFlow","140.0" +"193616126","240982066","vibocs4as3.sanef.groupe","","00:50:56:90:c0:91","10.41.22.74","fe80::250:56ff:fe90:c091","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 54 fb 5c 8a d3 bc-bb e2 9e f5 f8 b3 df b6","No Asset Tag","'+02:00","2026-03-16T16:12:40.000+02:00","cybadmsys","Cloud Agent","2047bf18-8379-406f-b2c6-47b46730b8a5","2023-10-16T12:50:27.000+02:00","2026-04-22T11:28:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,ServersInCyberark,Cloud Agent,Linux Server,FreeFlow","141.0" +"175944074","229613622","vvbotapps1.sanef-rec.fr","","5a:b2:f5:21:73:e0, 66:da:ea:db:2d:fd, 9e:40:a5:7d:30:a7, 72:9d:3e:38:20:4e, 96:1c:12:66:47:14, 0e:cc:43:92:1d:27, de:35:46:9d:41:e6, 0e:eb:fb:10:1b:c6, 36:fd:35:ec:d7:1c, 7e:be:f9:ec:a2:b5, 42:4a:25:23:eb:f9, 4e:c4:59:c5:a8:81, ae:16:44:be:a1:01, de:4f:c5:a4:58:f1, 96:83:78:b9:89:23, 00:50:56:9c:8e:55, 66:95:c1:3f:bb:17, 92:1d:a9:36:ab:be, 06:ab:b7:72:fc:9d, 8e:56:56:d4:b3:c6, 5e:54:b6:92:e5:fe, 82:8d:74:92:d4:e8, 72:39:de:d9:6b:ae, a6:bd:f0:bd:97:7d, ba:77:c6:01:3b:eb, fa:90:88:3d:a3:4b, 6e:e6:7e:96:8a:f8, 96:20:64:6b:0b:83, 06:85:6a:09:74:0f, 4a:5f:ba:26:57:a2, 7a:e8:0a:45:5f:f0, d6:34:78:0f:a2:ec, ba:39:97:7f:b7:ab, d6:a8:60:b8:65:66, ce:af:ef:2f:e4:90","10.45.6.132,10.89.0.1","fe80::58b2:f5ff:fe21:73e0,fe80::64da:eaff:fedb:2dfd,fe80::9c40:a5ff:fe7d:30a7,fe80::709d:3eff:fe38:204e,fe80::941c:12ff:fe66:4714,fe80::ccc:43ff:fe92:1d27,fe80::dc35:46ff:fe9d:41e6,fe80::ceb:fbff:fe10:1bc6,fe80::34fd:35ff:feec:d71c,fe80::7cbe:f9ff:feec:a2b5,fe80::404a:25ff:fe23:ebf9,fe80::4cc4:59ff:fec5:a881,fe80::ac16:44ff:febe:a101,fe80::dc4f:c5ff:fea4:58f1,fe80::9483:78ff:feb9:8923,fe80::250:56ff:fe9c:8e55,fe80::6495:c1ff:fe3f:bb17,fe80::901d:a9ff:fe36:abbe,fe80::4ab:b7ff:fe72:fc9d,fe80::8c56:56ff:fed4:b3c6,fe80::5c54:b6ff:fe92:e5fe,fe80::808d:74ff:fe92:d4e8,fe80::7039:deff:fed9:6bae,fe80::a4bd:f0ff:febd:977d,fe80::b877:c6ff:fe01:3beb,fe80::f890:88ff:fe3d:a34b,fe80::6ce6:7eff:fe96:8af8,fe80::9420:64ff:fe6b:b83,fe80::485:6aff:fe09:740f,fe80::485f:baff:fe26:57a2,fe80::78e8:aff:fe45:5ff0,fe80::d434:78ff:fe0f:a2ec,fe80::b839:97ff:fe7f:b7ab,fe80::d4a8:60ff:feb8:6566,fe80::ccaf:efff:fe2f:e490","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 71 bf bc 9d 56 79-0e f0 9c b6 50 17 eb 18","No Asset Tag","'+02:00","2026-03-12T13:06:50.000+02:00","kapschsysuser","Cloud Agent","8ad8361b-5982-4bc5-a94d-1e7b9983cc0f","2023-06-26T15:47:34.000+02:00","2026-04-22T11:18:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,Flux Libre,flux_libre","142.0" +"395875292","359658168","vpvsaagpu1.sanef.groupe","","00:50:56:90:44:a7","10.42.16.88","fe80::250:56ff:fe90:44a7","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 9f 4c ff e1 df 54-f8 ac 22 9f 1b 36 93 fe","No Asset Tag","'+02:00","2026-02-09T16:29:36.000+02:00","tbaad-ext","Cloud Agent","f80ffbce-5d09-48c4-8241-7a4f70df82d3","2026-01-29T15:08:09.000+02:00","2026-04-22T11:30:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Sauvegarde & Securite,Production,Cloud Agent,Linux Server","52.0" +"287925589","311535928","vrosapast1.sanef-rec.fr","","00:50:56:9c:90:bd","10.45.9.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d4 4d 97 1c e9 37-05 1c b6 cc 9a 43 b7 8e","No Asset Tag","'+02:00","2026-02-16T12:22:34.000+02:00","cybintsys","Cloud Agent","8786ae31-c349-4265-b4f4-7521f48f3e77","2024-12-20T12:48:49.000+02:00","2026-04-22T11:48:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","142.0" +"163897942","219067810","vmcmdb2","","00:50:56:82:67:ef","10.30.11.108","fe80::250:56ff:fe82:67ef","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 24 82 65 20 26 53-d8 50 a7 83 3c 91 e6 08","No Asset Tag","'+02:00","2025-10-09T11:34:24.000+02:00","cybsupapp","Cloud Agent","13d7fa43-03d2-4257-90de-970af488eff8","2023-03-22T17:30:51.000+02:00","2026-04-22T11:41:49.000+02:00","x86_64","4","SCA,VM,PM,GAV","ITOP,TAG-SRVEXPOSEINDIRECT,BDD-POS DYN,DSI,Cloud Agent,Linux Server,Obsolete","695.0" +"395881501","359669099","vpvsaagpu2.sanef.groupe","","00:50:56:90:81:27","10.42.16.89","fe80::250:56ff:fe90:8127","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 1d e1 a2 93 aa 40-40 9b 9e b9 0b 99 91 af","No Asset Tag","'+02:00","2026-02-09T16:42:59.000+02:00","tbaad-ext","Cloud Agent","9fd19e40-e7b8-42f5-aed8-982a1bdc7ac2","2026-01-29T16:52:10.000+02:00","2026-04-22T11:37:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Sauvegarde & Securite,Gestion SAUVEGARDE,Production,Linux Server,Cloud Agent","52.0" +"213855634","251126075","spboomcla2.sanef.groupe","","5c:ba:2c:1c:93:f0","10.41.22.144","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95795","HPE U30 07/20/2023","CZ22410FK9","","'+02:00","2026-04-07T10:10:48.000+02:00","cybreconcile","Cloud Agent","1f64988b-4a4e-4b6d-9d53-756e174e72df","2024-02-05T19:47:48.000+02:00","2026-04-22T11:45:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Production","338.0" +"238298215","269275297","lpemvbpemv1.sanef.groupe","","00:17:a4:77:1c:60, 00:17:a4:77:1c:88, 00:17:a4:77:1c:5c","192.168.103.104,169.254.0.158,172.16.0.104,192.168.101.104,192.168.101.144,192.168.101.149","fe80::217:a4ff:fe77:1c60,fe80::217:a4ff:fe77:1c88,fe80::217:a4ff:fe77:1c5c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","VCX000070C","","'+02:00","2024-05-30T21:57:35.000+02:00","grid","Cloud Agent","6d25ca0b-346f-4a3f-82d4-50f25127e16d","2024-05-21T17:02:06.000+02:00","2026-04-22T11:36:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,PCI Bunker EMV,PCI Bunker EMV - VLAN Stecard v17,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","682.0" +"205522748","246920804","vposapels1.sanef.groupe","","00:50:56:90:0c:fd","10.41.20.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 ba 28 08 a0 ac 2c-d6 ec fd 00 ff 44 b1 4e","No Asset Tag","'+02:00","2026-02-26T12:21:32.000+02:00","cybsupsys","Cloud Agent","abbbb8e1-af16-43b6-830d-10d190572ded","2023-12-21T11:38:37.000+02:00","2026-04-22T11:44:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,Production,OS-LIN-SRV DYN,BDD-ELA DYN,Péage","144.0" +"411628774","365732726","vrsigbmut2.sanef-rec.fr","","52:54:00:60:28:61, 52:54:00:3f:83:03, 9e:0f:28:bc:ce:6f","10.45.15.69,192.168.17.6,192.168.16.24","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","16","","AMD EPYC 9J15 32-Core Processor","129433","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-07T14:36:53.000+02:00","oracle","Cloud Agent","69bf36f3-9e6f-4de4-827d-dc008722d1e3","2026-03-26T13:16:44.000+02:00","2026-04-22T11:27:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","ENV-REC,Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0" +"301233552","320880027","vrdsismtp1.sanef-rec.fr","","00:50:56:9c:50:c5","192.168.19.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c fc d3 13 24 ea ef-6f 58 c0 fa 67 51 40 cd","No Asset Tag","'+02:00","2026-01-07T11:33:19.000+02:00","root","IP Scanner, Cloud Agent","babf489f-52c4-42d8-b05c-f467463617f2","2025-02-19T14:01:41.000+02:00","2026-04-22T11:48:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","331.0" +"192863549","240624322","vpeapnot1","","00:50:56:82:4d:dc","10.30.10.18","fe80::250:56ff:fe82:4ddc","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3950","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 6b 47 d8 ae 71 ff-6c ee 75 c1 b7 be a6 6c","No Asset Tag","'+02:00","2025-02-13T11:19:35.000+02:00","cybreconcile","Cloud Agent","73f5b11f-a546-40b8-a307-d753e7772c88","2023-10-12T15:48:07.000+02:00","2026-04-22T11:47:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,E-notification,Cloud Agent,Linux Server,MID-NGINX DYN,DSI,Production,BDD-POS DYN,High,high priority","693.0" +"178993271","231838520","vpsasawrk6.sanef.groupe","","00:50:56:9c:6b:16","10.41.32.15","fe80::250:56ff:fe9c:6b16","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 56 44 ed 88 44 e0-f7 e6 b4 eb 82 9a 28 6c","No Asset Tag","'+02:00","2026-03-25T16:10:23.000+02:00","cybreconcile","Cloud Agent","109fbed1-141a-4b3a-88ce-65b31b1e1501","2023-07-18T16:12:44.000+02:00","2026-04-22T11:17:28.000+02:00","x86_64","3","SCA,VM,PM,GAV","SAS,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,DSI","86.0" +"209168351","248970270","vibotarmq3.sanef.groupe","","00:50:56:90:0f:90","10.41.23.158","fe80::250:56ff:fe90:f90","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 68 b1 5a a7 17 8b-e5 28 2e af d3 cf da bd","No Asset Tag","'+02:00","2026-03-17T12:20:16.000+02:00","cybsupsys","Cloud Agent","7f06a272-3b9a-4598-93ee-c3a136206580","2024-01-12T12:54:08.000+02:00","2026-04-22T11:25:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,FreeFlow,OS-LIN-SRV DYN,Flux Libre,Production","141.0" +"267395255","298436653","vtdsiakib1.sanef-rec.fr","","00:50:56:9c:ec:57","10.45.1.172","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 5e 2c ac cf 26 e1-3f 6e 36 2b aa 6a ff 95","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","reboot","Cloud Agent","da01fbde-7fcb-4691-b112-a2cc1e3b6030","2024-09-24T12:01:57.000+02:00","2026-04-22T11:39:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Elasticsearch,Recette","141.0" +"207971781","248307124","vrdsiadev1","","00:50:56:9c:de:af","10.45.10.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c a3 37 d8 94 61 7a-c2 d4 bf cb a4 f4 bd 70","No Asset Tag","'+02:00","2026-04-14T10:48:32.000+02:00","cybadmsys","Cloud Agent","3c1cec60-ac26-4b9a-8401-d0e3145eddf1","2024-01-05T18:08:26.000+02:00","2026-04-22T11:32:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Collecte,Recette,DSI,Cloud Agent,Linux Server","141.0" +"156095898","209242562","vpdsiasat1.sanef.groupe","","00:50:56:82:33:07","192.168.18.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 7c cf b1 64 5d 44-24 bc 22 cf 2a 52 a3 fd","No Asset Tag","'+02:00","2026-04-14T14:36:27.000+02:00","cybreconcile","Cloud Agent","781bc3ee-8408-4601-8891-668f4ed84846","2023-01-19T15:24:23.000+02:00","2026-04-22T11:26:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Satellite,BDD-POS DYN,MID-APACHE-TOMCAT DYN,VRF_INCONNUE,OS-LIN-SRV DYN,Linux Server,Cloud Agent","65.0" +"379559158","352887680","spbckamag1.sanef.groupe","","04:bd:97:22:ca:c8, 04:bd:97:22:ca:c9","10.42.16.73,10.43.1.4","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP26080HDN","Unknown","'+02:00","2025-11-26T17:35:24.000+02:00","root","Cloud Agent","6a1565b0-3862-4024-a918-18a25864c9d9","2025-11-26T15:07:15.000+02:00","2026-04-22T11:28:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"143625294","201025860","vpemvaftp1.sanef.groupe","","00:50:56:98:13:35","192.168.100.109","fe80::250:56ff:fe98:1335","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 18 4b 22 06 98 68 11-2c 33 e6 ed 3f c0 f2 ff","No Asset Tag","'+02:00","2025-12-04T12:46:29.000+02:00","root","Cloud Agent","4ee6e39f-a396-4c59-a9ad-c5c6b8f77409","2022-10-11T17:37:49.000+02:00","2026-04-22T11:36:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,VRF_INCONNUE,EMV,Cloud Agent,Linux Server,DEX,PCI Bunker EMV - VLAN Supervision/Admin","665.0" +"168848537","224865904","vpaiiapol3","","00:50:56:82:7d:cf","10.30.12.127","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3789","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7e 18 f7 82 f4 a8-65 c8 d9 05 20 f9 71 0c","No Asset Tag","'+02:00","2024-06-04T10:41:08.000+02:00","cybreconcile","Cloud Agent","c5ad794a-ec19-4022-9be6-b53cd7003725","2023-05-03T11:30:20.000+02:00","2026-04-22T11:27:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-POS DYN,BDD-ELA DYN,BDD-SQL DYN,DSI,Obsolete,Cloud Agent,Linux Server,Centreon","456.0" +"208768095","248737409","vibotatvv1.sanef.groupe","","00:50:56:90:51:b1","10.41.23.155","fe80::250:56ff:fe90:51b1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e5 e9 51 88 68 17-13 bc c8 ea 85 1e c2 6d","No Asset Tag","'+02:00","2026-03-18T11:32:39.000+02:00","cybreconcile","Cloud Agent","da744d2b-c18a-457c-aa3b-5e97d0f12856","2024-01-10T11:26:20.000+02:00","2026-04-22T06:13:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,Production,OS-LIN-SRV DYN,Flux Libre,ServersInCyberark,flux_libre","140.0" +"182212643","233990529","svboomcla2.sanef-rec.fr","","5c:ba:2c:1c:89:20","10.45.6.73","fe80::5eba:2cff:fe1c:8920","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95795","HPE U30 05/17/2022","CZ22410FK5","","'+02:00","2026-03-10T10:03:22.000+02:00","cybintsys","Cloud Agent","ab249ea2-f203-4bd5-8d07-cc4c26158159","2023-08-10T10:50:58.000+02:00","2026-04-22T11:34:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,flux_libre,Flux Libre","337.0" +"325669861","331288785","vpdsigrid1.sanef.groupe","","00:50:56:94:df:89","10.44.5.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","15761","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 14 a7 ca c0 f2 9a 1f-a1 20 9c eb 0b 2c 87 51","No Asset Tag","'+02:00","2026-02-10T11:30:28.000+02:00","cybsupsys","Cloud Agent","8660cd0c-33fd-4201-8f28-5474fdc93860","2025-05-19T10:14:52.000+02:00","2026-04-22T11:25:07.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","333.0" +"175420304","229255869","vvbotapps3.sanef-rec.fr","","fe:71:2f:ed:5c:ef, 6a:3f:1e:66:6c:7b, 62:b4:6e:6e:7e:ee, 76:5a:f7:4f:c5:3a, ca:66:d5:f8:08:2b, 92:aa:ce:62:32:40, b6:43:ad:ca:68:b5, 0e:ea:89:77:4e:56, 66:b6:4c:9e:40:61, 6a:1f:e1:49:23:06, 3a:ab:36:eb:12:0b, 92:84:a0:1b:71:f4, c6:c2:f9:78:eb:13, fa:d5:b6:d3:cb:5b, 00:50:56:9c:10:d9, 16:71:60:0d:53:b5, 0a:51:1a:48:09:5e, 66:4a:e1:48:e2:a4, e6:09:98:f0:0a:cc, 8e:83:72:aa:20:0c, fa:d4:64:6e:57:28, 1a:d5:20:b3:9b:06, 2a:6d:f7:fd:7f:fc, 76:70:85:64:17:f1, 92:ae:2c:a7:98:c7, ae:8e:df:3f:07:57, de:f2:1f:ee:2b:36, 6e:53:f9:87:42:a2, 72:a7:9d:6a:4d:25, 76:c2:8e:c3:e0:f4, 5a:32:3c:2f:b4:f0, 22:13:79:e4:24:64, 2e:67:94:e2:53:01, 8a:75:85:80:e0:e2","10.45.6.152,10.89.0.1","fe80::fc71:2fff:feed:5cef,fe80::683f:1eff:fe66:6c7b,fe80::60b4:6eff:fe6e:7eee,fe80::745a:f7ff:fe4f:c53a,fe80::c866:d5ff:fef8:82b,fe80::90aa:ceff:fe62:3240,fe80::b443:adff:feca:68b5,fe80::cea:89ff:fe77:4e56,fe80::64b6:4cff:fe9e:4061,fe80::681f:e1ff:fe49:2306,fe80::38ab:36ff:feeb:120b,fe80::9084:a0ff:fe1b:71f4,fe80::c4c2:f9ff:fe78:eb13,fe80::f8d5:b6ff:fed3:cb5b,fe80::250:56ff:fe9c:10d9,fe80::1471:60ff:fe0d:53b5,fe80::851:1aff:fe48:95e,fe80::644a:e1ff:fe48:e2a4,fe80::e409:98ff:fef0:acc,fe80::8c83:72ff:feaa:200c,fe80::f8d4:64ff:fe6e:5728,fe80::18d5:20ff:feb3:9b06,fe80::286d:f7ff:fefd:7ffc,fe80::7470:85ff:fe64:17f1,fe80::90ae:2cff:fea7:98c7,fe80::ac8e:dfff:fe3f:757,fe80::dcf2:1fff:feee:2b36,fe80::6c53:f9ff:fe87:42a2,fe80::70a7:9dff:fe6a:4d25,fe80::74c2:8eff:fec3:e0f4,fe80::5832:3cff:fe2f:b4f0,fe80::2013:79ff:fee4:2464,fe80::2c67:94ff:fee2:5301,fe80::8875:85ff:fe80:e0e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 98 7c 1e 8f 6d cd-c3 63 8b 97 4b 9a d5 4a","No Asset Tag","'+02:00","2026-03-10T11:33:54.000+02:00","cybreconcile","Cloud Agent","ee58c856-04d4-45ad-aec2-8c0f55a60aa7","2023-06-22T12:03:17.000+02:00","2026-04-22T11:29:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,FreeFlow","139.0" +"173079234","227652731","vdbocs4ci1.sanef-rec.fr","","00:50:56:9c:39:05","10.45.6.35","fe80::250:56ff:fe9c:3905","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7e 2e 15 f6 00 f6-6d ce 57 37 cd 3d e9 2b","No Asset Tag","'+02:00","2026-03-11T10:02:59.000+02:00","cybsecope","Cloud Agent","a5d20a66-e192-4fe4-94e3-34c63f8033af","2023-06-05T15:26:04.000+02:00","2026-04-22T11:27:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,flux_libre,FreeFlow,Recette,Cloud Agent,Linux Server","141.0" +"177079686","230465871","vvbocbsap1.sanef-rec.fr","","00:50:56:9c:54:4e","10.45.6.11","fe80::250:56ff:fe9c:544e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","1031563","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 75 51 28 03 bd 0e-18 93 9f ca 34 6b 3b 72","No Asset Tag","'+02:00","2026-03-10T10:03:27.000+02:00","cybsupsys","Cloud Agent","9a1a955f-be95-44fd-8dfc-a8a925d23654","2023-07-04T13:41:39.000+02:00","2026-04-22T11:27:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,flux_libre,OS-LIN-SRV DYN","142.0" +"130583362","192832990","node4","","06:ac:38:d5:6c:36, 66:9d:a3:05:39:af, ee:ee:ee:ee:ee:ee, 00:50:56:82:4b:e9","169.254.25.10,10.233.74.64,10.45.2.59","fe80::649d:a3ff:fe05:39af,fe80::ecee:eeff:feee:eeee,fe80::88bd:f1a0:d07e:13cb","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 26 dc 16 dd 43 ed-90 35 76 d2 bb fc 48 d2","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","cybexpapp","Cloud Agent","43737328-a06b-4ffc-9b9e-0489c15501bf","2022-07-07T11:29:28.000+02:00","2026-04-22T11:36:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,BDD-POS DYN,VRF_INCONNUE,Obsolete","341.0" +"209164475","248967435","vibotapps3.sanef.groupe","","00:50:56:90:f8:0b","10.41.23.157","fe80::250:56ff:fe90:f80b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ec 31 7c aa e2 97-44 72 cf 1d cc 11 0e b3","No Asset Tag","'+02:00","2026-03-17T11:33:03.000+02:00","cybsecope","Cloud Agent","744f0797-94e8-4617-80b3-a63bf60fd012","2024-01-12T12:08:30.000+02:00","2026-04-22T11:17:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0" +"373212739","350071349","vpameasxt2.sanef.groupe","","00:50:56:90:8e:58, 00:50:56:90:70:52","10.41.41.61,10.43.4.26","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 a6 c0 e5 02 48 c2-f7 88 71 b6 0c 38 77 ba","No Asset Tag","'+02:00","2025-11-12T11:52:08.000+02:00","cybreconcile","Cloud Agent","5ab2192f-3bca-48c1-b8d4-b9ea4ab9b18c","2025-10-31T12:03:33.000+02:00","2026-04-22T11:23:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,Sextan","662.0" +"175950116","229618440","vvbocmedi1.sanef-rec.fr","","00:50:56:9c:a8:14","10.45.6.5","fe80::250:56ff:fe9c:a814","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 65 cc 9e 10 b2 48-94 af ee fb 9d 41 ee 4c","No Asset Tag","'+02:00","2026-03-11T16:03:12.000+02:00","cybsupsys","Cloud Agent","2d9b1322-79e0-4cb2-8c3f-fdb0c8effcce","2023-06-26T16:43:00.000+02:00","2026-04-22T11:33:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,flux_libre,Flux Libre,Recette","332.0" +"161779682","215361432","vraiibpgs5","","00:50:56:82:41:dc","10.45.1.166","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 be f7 a5 b9 7b a3-da b9 35 50 fb 01 95 25","No Asset Tag","'+02:00","2026-03-03T15:14:51.000+02:00","reboot","Cloud Agent","f378f3c9-dbe2-472d-b010-c1337c3d82f6","2023-03-06T13:32:17.000+02:00","2026-04-22T11:32:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","DSI,OS-LIN-SRV DYN,MID-NGINX DYN,Recette,BDD,Cloud Agent,Linux Server","142.0" +"363247806","346032866","vpdsibarc1.sanef.groupe","","00:50:56:9c:de:e3","10.46.33.40","","Linux / Server","Red Hat Enterprise Linux 9.6","9.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 3d 25 ac 92 66 97-c6 8f 5b b1 dd 9d 1f 2f","No Asset Tag","'+02:00","2025-11-06T18:56:37.000+02:00","cybreconcile","Cloud Agent","67730d59-4c98-40aa-bdd1-310c6e65ec29","2025-09-26T11:59:43.000+02:00","2026-04-22T11:41:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD,Production,MID-NGINX DYN","332.0" +"203204186","245721134","vpboobquo2.sanef.groupe","","00:50:56:90:33:87","10.100.16.15","fe80::250:56ff:fe90:3387","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 5f 2c c5 bc 88 bf-48 58 d5 42 e0 9e 4a 2b","No Asset Tag","'+02:00","2026-04-07T10:46:33.000+02:00","cybreconcile","Cloud Agent","01814ec3-d1be-40c5-b48d-04d73d99bf86","2023-12-08T12:27:55.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,flux_libre,Flux Libre,FreeFlow","333.0" +"196660269","242432306","vpbooosea2.sanef.groupe","","00:50:56:90:b5:d7","10.41.22.136","fe80::250:56ff:fe90:b5d7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 77 7a 5c d6 e7 55-8d b3 4c 3e 11 ef e3 ef","No Asset Tag","'+02:00","2026-04-07T15:17:37.000+02:00","cybreconcile","Cloud Agent","22ea8bf7-5f22-47a1-a02a-8a0b44fc5b91","2023-10-31T18:19:57.000+02:00","2026-04-22T11:19:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,FreeFlow,OS-LIN-SRV DYN,Flux Libre,flux_libre","330.0" +"193621646","240986858","vpbocs4as2.sanef.groupe","","00:50:56:90:d1:09","10.41.22.9","fe80::250:56ff:fe90:d109","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 5a c4 2d 26 e0 f4-e8 5f c4 3c 26 0c a7 cc","No Asset Tag","'+02:00","2026-04-01T21:58:56.000+02:00","cybreconcile","Cloud Agent","cea903fb-fb33-4e40-a78d-f3ced159bd18","2023-10-16T13:31:56.000+02:00","2026-04-22T11:12:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,flux_libre,FreeFlow,OS-LIN-SRV DYN,Production","331.0" +"411327666","365612889","vplogbquo1.sanef.groupe","","00:50:56:90:0a:64","10.100.16.24","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 86 00 a3 f0 0d 58-ef 0c b3 e5 e0 c5 41 8c","No Asset Tag","'+02:00","2026-04-07T12:16:39.000+02:00","cybsecope","Cloud Agent","acd91f63-4ab1-4dee-920a-41ec44d5e3ca","2026-03-25T12:08:38.000+02:00","2026-04-22T11:31:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server","66.0" +"193240995","240745929","vpbocmedi1.sanef.groupe","","00:50:56:90:b1:9e","10.41.22.7","fe80::250:56ff:fe90:b19e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 02 d8 d4 6d e7 e7-cc 26 5c 77 77 cf 70 f0","No Asset Tag","'+02:00","2026-04-01T22:01:27.000+02:00","cybreconcile","Cloud Agent","e032846f-c40a-458e-a2f5-53ba09d3bd4a","2023-10-13T15:22:01.000+02:00","2026-04-22T11:33:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Production,flux_libre","335.0" +"243982908","283202091","vdechatal1.sanef.groupe","","00:50:56:82:30:b6","10.45.11.221","fe80::711a:3f73:265e:7d3e","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f6 f9 39 60 6c 46-3e 4b a4 02 56 ea cf 37","No Asset Tag","'+02:00","2025-09-16T09:46:35.000+02:00","cybreconcile","Cloud Agent","b43b0a5f-09b3-481c-b906-bbc93f6bd4be","2024-06-14T10:54:00.000+02:00","2026-04-22T11:34:27.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,Obsolete,DSI,Linux Server,Cloud Agent,TALEND,MID-APACHE-TOMCAT DYN","518.0" +"131404287","193423786","vmampdif1.sanef.groupe","","00:50:56:82:4A:DA","10.41.40.120","fe80::250:56ff:fe82:4ada","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 99 5a c1 b5 93 1a-27 3f 1b ac 65 09 01 f0","No Asset Tag","'+02:00","2023-01-11T21:02:33.000+02:00","cybreconcile","Cloud Agent","77c8d8e6-c0ea-4de7-93fc-1f6016d85d9f","2022-07-13T10:26:16.000+02:00","2026-04-22T11:36:26.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_TRAFIC_DC,DEX,Sextan,Obsolete,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server,Trafic,Production,Sans","696.0" +"131275095","193321026","vpaiiapol7","","00:50:56:82:d9:3c","192.168.2.40","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 49 7a 4e 1f c1 18-92 7b 7c 41 f3 55 9e 5c","No Asset Tag","'+02:00","2024-06-06T10:56:16.000+02:00","cybreconcile","Cloud Agent","4998fab1-c1eb-4e51-b9f9-5cb60e18cac8","2022-07-12T15:49:44.000+02:00","2026-04-22T11:26:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-ELA DYN,BDD-POS DYN,VRF_INCONNUE,Obsolete,Centreon,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans,Cloud Agent,Linux Server","462.0" +"193238549","240744337","vpbocharg1.sanef.groupe","","00:50:56:90:bb:97","10.41.22.6","fe80::250:56ff:fe90:bb97","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 bf de 5d 4c 93 97-85 bf 03 81 b4 e4 13 dd","No Asset Tag","'+02:00","2026-04-01T22:00:29.000+02:00","cybreconcile","Cloud Agent","6b52db23-d651-43d0-bdbe-c44bfd308313","2023-10-13T15:03:08.000+02:00","2026-04-22T11:41:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,Production","330.0" +"130582878","192832075","vmamrtd1.sanef.groupe","","00:50:56:82:60:73","10.45.2.195","fe80::250:56ff:fe82:6073","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3832","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 c6 2a f5 49 bc a2-59 3c 10 9a 46 7a f9 b4","No Asset Tag","'+02:00","2025-10-08T13:43:16.000+02:00","cybastsys","Cloud Agent","379c9019-ff00-476f-a3d0-4968941b6a16","2022-07-07T11:13:56.000+02:00","2026-04-22T11:36:33.000+02:00","x86_64","3","SCA,VM,PM,GAV","Traffic,OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,DEX,Obsolete,log4j,Recette,Sans,Trafic","518.0" +"195789744","241928028","vpbotreco1.sanef.groupe","","00:50:56:90:9c:a9","10.41.23.18","fe80::250:56ff:fe90:9ca9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 93 a0 e3 8d c2 a1-c4 b1 12 c2 f5 43 cd de","No Asset Tag","'+02:00","2026-04-16T11:30:45.000+02:00","cybreconcile","Cloud Agent","6c3400e0-8494-4e2f-bc30-cece799a2623","2023-10-26T11:19:27.000+02:00","2026-04-22T11:28:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,flux_libre,Flux Libre,Production","335.0" +"376359111","351489742","vptrabmut4.sanef.groupe","","52:54:00:f6:df:a5, 52:54:00:4c:fe:ac, 52:54:00:e6:b6:da","192.168.17.7,10.41.40.221,10.41.40.223,10.41.40.226,192.168.17.134","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-13T11:23:37.000+02:00","oracle","Cloud Agent","cfacc9d6-289c-46d2-a4a0-1bd1dd209988","2025-11-13T12:22:43.000+02:00","2026-04-22T11:28:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,Production,ORACLE,BDD","339.0" +"242119222","276920246","vpvsaaiad1","","00:50:56:9a:b2:da","10.44.0.104","fe80::250:56ff:fe9a:b2da","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a 06 7d bb 22 a7 a8-b7 1d 26 90 bc ce 60 c0","No Asset Tag","'-04:00","2026-02-04T18:07:17.000+02:00","tbaad-ext","Cloud Agent","6739b175-db8a-430b-adb2-545d91a68e4a","2024-06-06T15:30:31.000+02:00","2026-04-22T11:45:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"414638987","367132982","vrpxpapps1","","00:50:56:9c:be:b3","10.45.14.169","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23770","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c d9 a2 d8 87 49 d1-93 6a d8 be 66 0f c4 a6","No Asset Tag","'+02:00","2026-04-15T09:17:18.000+02:00","cybintsys","Cloud Agent","d9909aaf-6472-486d-bf91-0f400eeb295e","2026-04-09T11:51:08.000+02:00","2026-04-22T11:49:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"114208440","181637926","lamarrac1.sanef.groupe","","00:17:A4:77:08:A8, 00:17:A4:77:08:B4, 00:17:A4:77:08:AC, 00:17:A4:77:08:B0","10.45.2.100,10.45.2.101,10.45.3.100,10.45.5.2,169.254.75.12,10.45.5.18","fe80::217:a4ff:fe77:8a8,fe80::217:a4ff:fe77:8b4,fe80::217:a4ff:fe77:8ac,fe80::217:a4ff:fe77:8b0","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","VCX000020J","","'+02:00","2026-02-25T16:10:34.000+02:00","cybadmsys","Cloud Agent","8c67b965-8690-4354-b316-a1e1f389c3c7","2022-02-21T15:34:28.000+02:00","2026-04-22T11:46:17.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Linux Server,Recette,Sans,Trafic,OS-LIN-SRV DYN,Cloud Agent,DEX,Obsolete,log4j,Sextan","693.0" +"236302913","264492818","lpemvbpemv3.sanef.groupe","","00:17:a4:77:1c:90, 00:17:a4:77:1c:18, 00:17:a4:77:1c:1c","169.254.5.227,172.16.0.117,192.168.101.117,192.168.101.147,192.168.101.150,192.168.103.117","fe80::217:a4ff:fe77:1c90,fe80::217:a4ff:fe77:1c18,fe80::217:a4ff:fe77:1c1c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000703","","'+02:00","2025-10-08T16:34:29.000+02:00","oracle","Cloud Agent","02118ed9-bdd8-4a72-95b6-3f35d1c60365","2024-05-13T15:02:54.000+02:00","2026-04-22T11:31:32.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,PCI Bunker EMV - VLAN Stecard v17,EMV,PCI Bunker EMV,Production,Linux Server,Cloud Agent,OS-LIN-SRV DYN","684.0" +"202417909","245310581","vrameasxt1.sanef-rec.fr","","00:50:56:9c:ee:c0, 00:50:56:9c:03:6a","10.45.2.60,10.45.4.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 96 39 e1 59 7f 01-4c 1d 84 be 8d 0e 2e 3d","No Asset Tag","'+02:00","2026-04-20T18:13:18.000+02:00","cybadmsys","Cloud Agent","82d41526-f32d-43f4-ba79-4ec43cc1366a","2023-12-04T17:28:50.000+02:00","2026-04-22T11:36:38.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Sextan,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","682.0" +"314659903","326546972","vpdsibels1.sanef.groupe","","00:50:56:94:24:01","10.44.5.163","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","31889","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 14 79 f4 90 0c ae af-a1 e6 4c 3b 07 6a 15 a6","No Asset Tag","'+02:00","2026-02-10T10:37:08.000+02:00","cybreconcile","Cloud Agent","b41bf64c-fcc7-4584-bb5d-9aa36b706786","2025-04-08T17:04:44.000+02:00","2026-04-22T11:21:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,BDD,Production,BDD-ELA DYN","140.0" +"354675277","342491005","vpechbetl1.sanef.groupe","","00:50:56:90:8f:f8","10.42.16.140","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 d2 68 1d 31 e0 41-23 3e bb 1f 0b eb 0e ec","No Asset Tag","'+02:00","2026-02-12T16:12:01.000+02:00","cybsupsys","Cloud Agent","a662aaed-3d25-42d4-a779-5c190b8f957f","2025-08-26T16:14:41.000+02:00","2026-04-22T11:34:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,Linux Server,Cloud Agent,MID-NGINX DYN,Production","144.0" +"203604125","245940905","vrdsibans1.sanef-rec.fr","","00:50:56:9c:2a:6e","10.45.0.166","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 14 1a 3c 12 f2 f3-bc 07 0f b2 3f e4 8e cc","No Asset Tag","'+02:00","2026-01-07T11:53:05.000+02:00","cybadmsys","Cloud Agent","66baa830-a381-4b74-afba-347a75a8b4ee","2023-12-11T11:56:10.000+02:00","2026-04-22T11:28:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Ansible","337.0" +"193621036","240986557","vpbocs4as3.sanef.groupe","","00:50:56:90:4f:98","10.41.22.10","fe80::250:56ff:fe90:4f98","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 af 30 43 be 13 48-43 31 e8 d0 5e 4f b6 46","No Asset Tag","'+02:00","2026-04-01T21:57:06.000+02:00","cybreconcile","Cloud Agent","4343f3b6-92f2-421d-8a62-5526f24f2b50","2023-10-16T13:28:43.000+02:00","2026-04-22T11:34:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Production,flux_libre,Cloud Agent,Linux Server","331.0" +"137347865","197590796","vppeaasip1.sanef.groupe","","00:50:56:82:f6:86","10.41.20.35","fe80::2746:28d3:7cc0:3356","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7821","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2c 9a 92 ff a4 40-5c 9c 4e 42 17 2f 35 cc","No Asset Tag","'+02:00","2024-11-14T11:45:54.000+02:00","cybreconcile","Cloud Agent","016180df-549c-451e-928f-068e926a750d","2022-08-30T17:31:07.000+02:00","2026-04-22T11:36:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Production,Obsolete,MID-NGINX DYN,VRF_PEAGE_DC,Cloud Agent,Linux Server,DEX,SSIP","343.0" +"363981573","346388761","vptrabmut3.sanef.groupe","","52:54:00:ac:fa:fd, 52:54:00:32:a0:3a, 52:54:00:71:43:6a","10.41.40.231,10.41.40.233,10.41.40.236,192.168.17.134,192.168.17.7","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-26T15:52:24.000+02:00","oracle","Cloud Agent","2754da18-b6c3-4577-9f74-3e0940f99b7a","2025-09-29T17:05:48.000+02:00","2026-04-22T11:28:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,Production,Linux Server,Cloud Agent","339.0" +"347918139","339424918","vrlogbels1.sanef-rec.fr","","00:50:56:9c:b9:36","10.45.15.164","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 08 da 48 70 10 be-85 df 5d 65 04 dd 97 52","No Asset Tag","'+02:00","2026-01-21T17:50:36.000+02:00","cybintsys","Cloud Agent","6b892b42-f235-497c-a463-35fb34d6c0bc","2025-07-31T17:17:19.000+02:00","2026-04-22T11:20:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Elasticsearch,Recette","140.0" +"175948080","229616156","vvbotreco1.sanef-rec.fr","","e6:ea:cc:9f:a8:6b, 00:50:56:9c:51:3a, 12:69:54:7c:50:22, 66:f1:af:ae:1a:cf, c6:ae:dc:5f:1c:de, 36:39:49:ce:59:27","10.45.6.135,10.89.0.1","fe80::e4ea:ccff:fe9f:a86b,fe80::250:56ff:fe9c:513a,fe80::1069:54ff:fe7c:5022,fe80::64f1:afff:feae:1acf,fe80::c4ae:dcff:fe5f:1cde,fe80::3439:49ff:fece:5927","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 2b c6 b8 67 f4 1c-fd bc ed 09 20 f9 90 7f","No Asset Tag","'+02:00","2026-03-12T17:22:15.000+02:00","kapschsysuser","Cloud Agent","38c2e411-c71f-45ae-acae-5daa52a15ffd","2023-06-26T16:19:30.000+02:00","2026-04-22T10:57:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,Recette,FreeFlow,flux_libre","142.0" +"194257182","241333482","vpcosaapp1.sanef.groupe","","00:50:56:90:1a:28","10.41.40.178","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f3 5a f2 75 7d 83-f7 74 3b d0 2b 5c 2e 6e","No Asset Tag","'+02:00","2026-01-27T11:25:47.000+02:00","root","Cloud Agent","5d29df00-0517-4708-bf91-071d41bd293c","2023-10-19T14:05:03.000+02:00","2026-04-22T11:15:33.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server,log4j,COSWIN,MID-APACHE-TOMCAT DYN","511.0" +"159570896","212144733","vpintaels1.sanef.groupe","","00:50:56:82:9c:94","10.46.33.15","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 0f 4c 53 91 c9 2b-89 d9 8b cf 4c 61 3b 82","No Asset Tag","'+02:00","2026-02-24T12:06:38.000+02:00","cybreconcile","Cloud Agent","903070e8-d55b-4b79-9537-dd5f911d7fa0","2023-02-16T15:30:31.000+02:00","2026-04-22T11:17:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,Cloud Agent,Linux Server,VRF_BURO_DC,OS-LIN-SRV DYN,BDD-ELA DYN","140.0" +"208782494","248750418","vibotreco3.sanef.groupe","","00:50:56:90:60:6a","10.41.23.159","fe80::250:56ff:fe90:606a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f3 0e 93 d4 68 75-7f ba 4f bb 8e 09 fa f5","No Asset Tag","'+02:00","2026-03-18T15:53:31.000+02:00","cybsupsys","Cloud Agent","00a28729-de34-4f80-8f1e-e7b31432429b","2024-01-10T13:28:36.000+02:00","2026-04-22T11:05:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","140.0" +"130590884","192838404","vrameased1.sanef.groupe","","00:50:56:82:7a:69","10.45.2.75","fe80::250:56ff:fe82:7a69","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 1e ee a2 92 ac 86-6c 8c f9 b3 a2 94 88 c9","No Asset Tag","'+02:00","2026-04-21T10:42:13.000+02:00","cybsecope","Cloud Agent","39e04d51-1e57-49a4-bd10-f19f6adc92bf","2022-07-07T12:17:00.000+02:00","2026-04-22T11:25:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,DEX,SED,Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,TAG-SRVEXPOSEINDIRECT","28.0" +"385999740","355957537","vrlogaagt1.sanef-rec.fr","","00:50:56:9c:7a:c4","10.45.15.168","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 01 30 6c 10 92 b4-5b 0b 78 88 ee 20 c1 1c","No Asset Tag","'+02:00","2026-04-14T09:37:38.000+02:00","cybintsys","Cloud Agent","ef545dbd-144b-4f79-a905-85f2a6aad04d","2025-12-24T17:20:30.000+02:00","2026-04-22T11:23:53.000+02:00","x86_64","2","SCA,VM,PM,GAV","Logiciels,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent","66.0" +"189160131","238399071","vpdsiaans1.sanef.groupe","","00:50:56:8d:95:c2","10.44.2.134","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 54 63 d1 d6 4a 7f-a6 4a 8a b9 8d 82 21 1b","No Asset Tag","'+02:00","2026-01-27T16:09:39.000+02:00","cybreconcile","Cloud Agent","b6841e91-c79e-484a-afa5-d32ab3f637b3","2023-09-21T11:50:23.000+02:00","2026-04-22T11:26:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Ansible","139.0" +"131406665","193426321","vpexparep1.sanef.groupe","","00:50:56:82:5f:2e","10.41.40.19","fe80::3882:f0f2:73c8:f3d0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d e3 1b d8 76 df b7-50 2a d2 6e 2e cf be d8","No Asset Tag","'+02:00","2026-01-21T17:41:02.000+02:00","cybreconcile","Cloud Agent","2a48840b-99bb-4e7e-9381-de183fb8456e","2022-07-13T10:52:22.000+02:00","2026-04-22T11:13:17.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Production,eReport,Cloud Agent,Linux Server,VRF_TRAFIC_DC","210.0" +"157828168","210598037","vppintaweb1.sanef.groupe","","00:50:56:82:2c:2d","192.168.20.20","fe80::250:56ff:fe82:2c2d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 77 09 31 f0 6b 76-f7 e3 6e d8 2b ad 95 9f","No Asset Tag","'+02:00","2026-04-14T14:24:12.000+02:00","cybreconcile","Cloud Agent","b919eceb-06be-43b0-83ac-4c13ec02459c","2023-02-03T03:34:19.000+02:00","2026-04-22T11:27:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,BDD-POS DYN,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,VRF_INCONNUE","59.0" +"131269845","193319055","lampwaz1.sanef.groupe","","00:17:a4:77:10:de","10.41.40.122","fe80::217:a4ff:fe77:10de","Linux / Server","The CentOS Project CentOS 7.7 (1908)","7.7","Computers / Server","HPE ProLiant BL460c G9 Server","16","2400","Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz","64303","HP I36 07/18/2022","CZ2622016K","","'+02:00","2024-03-20T11:44:36.000+02:00","cybastapp","Cloud Agent","3da45f2d-a68a-4ccd-9e0e-ff8d500d455e","2022-07-12T15:27:28.000+02:00","2026-04-22T11:17:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_TRAFIC_DC,Trafic,DSI,BDD-ELA DYN,Cloud Agent,Linux Server,Waze,MID-NGINX DYN,log4j,Production,Obsolete","344.0" +"230338974","258575124","vpadvaapp1.sanef.groupe","","00:50:56:90:a7:35","10.41.20.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e8 ee dd 80 45 a1-90 55 02 ef e6 c5 60 78","No Asset Tag","'+02:00","2026-03-17T16:37:31.000+02:00","cybreconcile","Cloud Agent","7ef6b100-66b0-403a-bf75-d23cc38d1e91","2024-04-16T13:00:27.000+02:00","2026-04-22T11:17:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Péage","332.0" +"131270067","193318266","vpechatal1.sanef.groupe","","00:50:56:82:45:f0","10.30.10.20","fe80::711a:3f73:265e:7d3e","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 12 9d c2 45 88 9f-3e 14 e3 36 cb f8 03 a3","No Asset Tag","'+02:00","2025-02-13T11:49:26.000+02:00","cybreconcile","Cloud Agent","a6ae2468-fc2c-4f6b-9218-735ddd4c618c","2022-07-12T15:17:38.000+02:00","2026-04-22T11:17:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,BDD-POS DYN,Cloud Agent,Linux Server,Exploitation IT,Production,DSI,Obsolete,log4j,TALEND,VRF_INCONNUE","513.0" +"195833595","241948707","lptrabgas1.sanef.groupe","","ee:50:33:80:00:70","10.41.40.151","fe80::ec50:33ff:fe80:70","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63821","HPE I44 06/13/2025","VCGCIOJ00E","/n/Bios Asset Tag :","'+02:00","2026-01-20T17:04:55.000+02:00","cybastapp","Cloud Agent","0978afd0-9c46-4f22-a50d-1649fc9c7717","2023-10-26T15:25:02.000+02:00","2026-04-22T10:58:12.000+02:00","x86_64","3","SCA,VM,PM,GAV","Gaspar,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX","504.0" +"349742049","340111944","vrechaetl1","","00:50:56:9c:b3:8b","10.45.11.206","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 99 db c1 19 74 57-95 63 73 08 d3 47 aa 2e","No Asset Tag","'+02:00","2026-01-08T12:05:43.000+02:00","cybadmsys","Cloud Agent","51bb8d70-ced7-4155-a860-a33fd1eae820","2025-08-07T10:28:44.000+02:00","2026-04-22T11:18:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette","340.0" +"175948572","229617189","vvbotatsp1.sanef-rec.fr","","00:50:56:9c:c3:f7, 42:6a:d1:c0:a3:49, 86:ef:5a:6f:8b:1d, aa:8f:7b:e3:dd:40, aa:75:42:9d:f4:82, 36:15:78:10:a8:1d, 9e:26:58:5f:42:2f, 2e:a0:54:8a:8d:77","10.45.6.138,10.89.0.1","fe80::250:56ff:fe9c:c3f7,fe80::406a:d1ff:fec0:a349,fe80::84ef:5aff:fe6f:8b1d,fe80::a88f:7bff:fee3:dd40,fe80::a875:42ff:fe9d:f482,fe80::3415:78ff:fe10:a81d,fe80::9c26:58ff:fe5f:422f,fe80::2ca0:54ff:fe8a:8d77","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c bc f3 f5 a6 3e cb-a7 c7 a3 b8 4a 0b f7 0a","No Asset Tag","'+02:00","2026-03-12T15:49:55.000+02:00","kapschsysuser","Cloud Agent","8971266d-8f79-45c1-9c5a-cf5a291472ff","2023-06-26T16:30:04.000+02:00","2026-04-22T10:58:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,Flux Libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN","142.0" +"349775782","340136515","vpodaboem1.sanef.groupe","","52:54:00:c0:56:44, 52:54:00:b3:54:bb, 52:54:00:45:b9:77","192.168.17.129,192.168.17.4,10.42.15.100,10.42.15.102,10.42.15.105,10.42.15.106","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-07-31T08:56:17.000+02:00","oracle","Cloud Agent","ebe237cd-1827-4e0c-8fa2-7e65f82d01a5","2025-08-07T14:49:20.000+02:00","2026-04-22T11:02:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent","339.0" +"349790308","340136517","vpodaboem4.sanef.groupe","","52:54:00:44:a7:4f, 52:54:00:0d:d3:d8, 52:54:00:a4:3c:f9","192.168.17.130,192.168.17.5,10.42.15.91,10.42.15.93,10.42.15.94","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-10-03T14:51:30.000+02:00","oracle","Cloud Agent","eceb77e5-0bb7-4372-a44f-29005e436230","2025-08-07T14:49:18.000+02:00","2026-04-22T11:17:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","339.0" +"152272093","206868500","vrintaprx2.sanef.groupe","","00:50:56:82:e3:56","192.168.20.4","fe80::250:56ff:fe82:e356","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 38 e0 f4 be 5d d8-0a ca 30 d2 61 81 d5 eb","No Asset Tag","'+02:00","2026-02-23T13:29:47.000+02:00","cybadmsys","Cloud Agent","12f16116-8e69-4534-b153-8625040e394f","2022-12-16T17:48:50.000+02:00","2026-04-22T11:20:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Gestion institutionnel,OS-LIN-SRV DYN","55.0" +"130586828","192835989","vmamrpmv1","","00:50:56:82:2A:C2, 00:50:56:82:5F:9D, 00:50:56:82:1B:6C","10.33.16.80,10.30.16.72,10.30.16.80,10.30.16.83,10.30.16.85,10.30.16.87,10.30.16.89,10.32.16.72,10.32.16.80,10.32.16.83,10.32.16.85,10.32.16.87,10.32.16.89","fe80::250:56ff:fe82:2ac2,fe80::250:56ff:fe82:5f9d,fe80::250:56ff:fe82:1b6c","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 24 45 67 6c 6f a4-0d 0b 07 05 70 c2 d5 c8","No Asset Tag","'+02:00","2025-10-09T14:46:27.000+02:00","delcour","Cloud Agent","9e6775b2-b6f9-4250-93a0-ab50a67c0e91","2022-07-07T12:01:59.000+02:00","2026-04-22T11:16:36.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MIVISU,DEX,Obsolete,Sans,Recette,Trafic,VRF_INCONNUE","873.0" +"287926188","311535929","vrosapapp1.sanef-rec.fr","","00:50:56:9c:d7:4e","10.45.9.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 77 b6 59 f3 4f f2-8e 9e ca 27 86 09 c9 25","No Asset Tag","'+02:00","2026-02-16T11:59:55.000+02:00","cybintsys","Cloud Agent","3255e4fb-6a64-490b-8eb8-51ab95621d88","2024-12-20T12:48:26.000+02:00","2026-04-22T11:07:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server","142.0" +"395540025","359520751","vrsigaapp1.sanef-rec.fr","","00:50:56:9c:05:30","10.45.2.31","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 7b b0 e0 75 2d 89-f1 b3 22 04 c9 78 ad e9","No Asset Tag","'+02:00","2026-02-05T16:23:38.000+02:00","cybsupapp","Cloud Agent","4da548de-ca05-4cd7-b695-9750ff6b0a51","2026-01-28T11:51:58.000+02:00","2026-04-22T11:15:35.000+02:00","x86_64","3","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,SIG,Recette","221.0" +"349797065","340136519","vpodaboem3.sanef.groupe","","52:54:00:3d:a8:66, 52:54:00:ad:d4:bb, 52:54:00:1a:17:e6","10.42.15.101,10.42.15.103,10.42.15.104,192.168.17.5,192.168.17.130","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-07-31T08:56:17.000+02:00","oracle","Cloud Agent","15a33704-1218-4419-b52e-21f40487c096","2025-08-07T14:49:20.000+02:00","2026-04-22T11:07:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","339.0" +"304604398","322521242","vrpeabbst1","","00:50:56:9c:39:61","192.168.31.13","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 90 7c 63 5e 53 f5-1f 9c aa fc be ca 40 80","No Asset Tag","'+02:00","2026-02-18T18:42:45.000+02:00","cybastapp","Cloud Agent","0da30718-32bf-4ba7-9e42-831875d498e0","2025-03-03T12:50:05.000+02:00","2026-04-22T10:47:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,MID-NGINX DYN,Péage,Cloud Agent,Linux Server","142.0" +"377808411","352213443","vpdsiahap2.sanef.groupe","","00:50:56:90:9a:cd","192.168.19.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 98 aa fe 00 2a 65-e3 4b 29 19 60 ab 75 e9","No Asset Tag","'+02:00","2026-04-13T14:20:26.000+02:00","cybreconcile","Cloud Agent","649d883a-fab2-40b2-9f81-89e61284a0f6","2025-11-19T18:53:52.000+02:00","2026-04-22T11:05:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"305733241","322855856","spsicaquo1.sanef.groupe","","20:67:7c:e6:0f:14","10.100.254.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31570","HPE U41 09/30/2024","CZJ84600RQ","","'+02:00","2025-11-06T13:55:17.000+02:00","cybreconcile","Cloud Agent","c73d0497-231a-417f-b8bb-3202cc8b2e09","2025-03-06T12:30:09.000+02:00","2026-04-22T11:08:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIA,OS-LIN-SRV DYN,TAG-SIC,Linux Server,Cloud Agent","139.0" +"194005729","241200204","vvaflgsys1.sanef-rec.fr","","00:50:56:9c:37:85","10.45.7.168","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 62 29 12 cc 53 ce-71 ba f5 29 9b 33 1b 0d","No Asset Tag","'+02:00","2026-03-09T10:07:17.000+02:00","cybsupsys","Cloud Agent","c797811c-5f5a-4122-81bc-107e2387d4dc","2023-10-18T11:07:13.000+02:00","2026-04-22T11:16:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,Recette,flux_libre,Flux Libre","143.0" +"340078604","336780137","lpamebrac4.sanef.groupe","","3e:33:fb:a0:00:f3, 3e:33:fb:a0:00:f7","10.41.41.113,10.41.41.117,10.41.41.119,10.43.4.141","fe80::3c33:fbff:fea0:f3,fe80::3c33:fbff:fea0:f7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","515150","HPE I44 06/13/2025","VCGBW52015","/n/Bios Asset Tag :","'+02:00","2025-11-19T12:19:37.000+02:00","cybreconcile","Cloud Agent","307d4f95-68a7-49e0-887e-2904dced3c48","2025-07-08T10:21:22.000+02:00","2026-04-22T11:28:29.000+02:00","x86_64","2","SCA,VM,GAV","Production,Amelie,OS-LIN-SRV DYN,Cloud Agent,Linux Server","335.0" +"180395955","232824862","vrcosaapp1.sanef-rec.fr","","00:50:56:9c:2c:bc","10.45.9.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cc cc 7f 17 24 62-7e 52 35 14 aa 3d 49 cc","No Asset Tag","'+02:00","2026-03-03T15:14:46.000+02:00","cybadmsys","Cloud Agent","19e13af6-03e7-4cd2-9244-bc0b33de9b6a","2023-07-28T12:58:06.000+02:00","2026-04-22T11:34:23.000+02:00","x86_64","3","SCA,VM,PM,GAV","log4j,MID-NGINX DYN,OS-LIN-SRV DYN,COSWIN,DSI,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","512.0" +"295368261","317190257","vvpeaabst3.sanef-rec.fr","","00:50:56:9c:3b:0a","10.45.10.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c de 43 23 21 2f 31-fc 6b e2 de 55 4d 8c a8","No Asset Tag","'+02:00","2026-03-10T10:01:59.000+02:00","cybsupapp","Cloud Agent","1d147632-02e4-4e6c-b4d3-d15d33be5555","2025-01-28T18:14:56.000+02:00","2026-04-22T11:11:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent,BOOST","140.0" +"130586773","192835845","lamarrac3.sanef.groupe","","00:17:A4:77:08:B8, 00:17:A4:77:08:C4, 00:17:A4:77:08:BC, 00:17:A4:77:08:C0","10.45.2.104,10.45.2.105,10.45.2.109,10.45.3.102,10.45.5.4,169.254.214.108,10.45.5.20","fe80::217:a4ff:fe77:8b8,fe80::217:a4ff:fe77:8c4,fe80::217:a4ff:fe77:8bc,fe80::217:a4ff:fe77:8c0","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","VCX000010L","","'+02:00","2026-02-25T16:01:27.000+02:00","cybadmsys","Cloud Agent","8056d027-67c8-4f74-b1e3-63678907b110","2022-07-07T11:56:50.000+02:00","2026-04-22T11:31:45.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,DEX,Sextan,Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Trafic,Sans,Recette","693.0" +"191420571","239727390","vibooosea2.sanef.groupe","","00:50:56:90:11:1b","10.41.22.201","fe80::250:56ff:fe90:111b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 6e 23 07 d6 d2 49-7c 08 13 af b9 04 a5 7a","No Asset Tag","'+02:00","2026-03-17T16:27:11.000+02:00","cybreconcile","Cloud Agent","d0dd40d7-7870-40a4-8102-3d8fb7c8786e","2023-10-04T17:50:38.000+02:00","2026-04-22T11:01:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre,FreeFlow","141.0" +"131270890","193320476","vpaiiapol1","","00:50:56:82:d9:5d","10.30.12.125","fe80::88d2:6e86:b660:94e8","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 3d 4e a5 fd e2 ca-c1 b3 12 6c db 8b df 7d","No Asset Tag","'+02:00","2025-11-06T09:07:19.000+02:00","cybreconcile","Cloud Agent","8a44c204-9168-4913-a93e-b83e3814dee2","2022-07-12T15:42:46.000+02:00","2026-04-22T11:09:53.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,Centreon,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,DSI,Obsolete,Cloud Agent,Linux Server","82.0" +"211609269","250177509","vpbotcach1.sanef.groupe","","00:50:56:90:8c:8f","10.41.23.17","fe80::250:56ff:fe90:8c8f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f5 e9 69 31 75 b8-54 62 12 29 b3 d0 a0 9e","No Asset Tag","'+02:00","2026-04-21T15:45:49.000+02:00","cybreconcile","Cloud Agent","76495e4b-6c1a-4310-9b1e-dffb951e6514","2024-01-24T13:59:33.000+02:00","2026-04-22T11:09:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","140.0" +"236549774","265276979","vpechatre1.sanef.groupe","","00:50:56:90:e6:a8","10.42.16.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 05 a5 ff 9f 6e 64-19 af 44 5f 75 4d bb cb","No Asset Tag","'+02:00","2025-11-18T15:18:21.000+02:00","cybreconcile","Cloud Agent","2e64d7e9-2c54-44b9-90cc-779390b12af5","2024-05-14T14:27:56.000+02:00","2026-04-22T11:01:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,TALEND,Production","208.0" +"143625406","201026504","vpemvantp2.sanef.groupe","","00:50:56:82:32:aa","192.168.100.133","fe80::250:56ff:fe82:32aa","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 09/21/2015","VMware-42 02 33 c0 84 b1 d7 cf-d7 b9 40 d5 02 3f 34 cd","No Asset Tag","'+02:00","2024-09-11T10:18:20.000+02:00","root","Cloud Agent","34f7059e-9f6e-4ac9-99e0-c8efd0309db3","2022-10-11T17:43:44.000+02:00","2026-04-22T10:52:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,EMV,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Supervision/Admin,DEX,BDD-POS DYN","107.0" +"349449582","340001447","vrpwdapod1","","00:50:56:9c:d8:ee","10.45.14.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d6 eb 75 59 64 c4-2c dd a2 b8 ac a1 ed 24","No Asset Tag","'+02:00","2026-03-31T14:12:12.000+02:00","cybintsys","Cloud Agent","e0a9367a-aa6e-4bec-a4fc-b27a74a7b4e3","2025-08-06T11:08:56.000+02:00","2026-04-22T11:09:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","140.0" +"359801327","344907764","vrcybapsp2.sanef-rec.fr","","00:50:56:9c:af:56","10.45.11.104","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cc 5f 7e ab f4 11-e1 4d b3 66 17 7b ab 3a","No Asset Tag","'+02:00","2026-04-16T11:15:02.000+02:00","cybreconcile","Cloud Agent","bd126235-c4e6-4b54-8341-6e7b62820203","2025-09-15T15:56:10.000+02:00","2026-04-22T11:23:36.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,Linux Server,Cloud Agent,CyberArk","66.0" +"399660876","361235534","vodsiaito1.sanef.groupe","","00:50:56:9c:f3:92","10.46.39.35","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 5e 94 be 8f a0 16-75 6f f5 a0 50 3b ba 52","No Asset Tag","'+02:00","2026-02-12T17:05:50.000+02:00","cybreconcile","Cloud Agent","1bd870a4-e1d1-4573-8ce3-a6829334b652","2026-02-12T17:06:40.000+02:00","2026-04-22T11:20:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","140.0" +"377822105","352213229","vpdsiahap1.sanef.groupe","","00:50:56:90:90:f8","192.168.19.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 92 86 8f 71 15 09-de 5c 7a f3 46 4b 40 25","No Asset Tag","'+02:00","2026-04-13T14:14:05.000+02:00","cybreconcile","Cloud Agent","38afdf12-d722-44ea-800e-8651b44ab20a","2025-11-19T18:51:53.000+02:00","2026-04-22T11:15:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","330.0" +"241563039","276522521","vpvsaages1.sanef.groupe","","00:50:56:9c:f9:12","10.42.16.82","fe80::250:56ff:fe9c:f912","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 0a d5 e7 9f 5f dd-22 29 5d 69 ed f7 05 85","No Asset Tag","'-04:00","2026-02-04T15:40:16.000+02:00","tbaad","Cloud Agent","f7872d0c-582a-48b5-99f2-9aadbc1b488d","2024-06-04T13:52:42.000+02:00","2026-04-22T11:14:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"349748226","340121296","vrlogbquo1","","00:50:56:9c:b4:5a","10.100.16.105","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7681","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c b5 be be 2a 87 74-3b 74 4d ba 64 e3 e4 86","No Asset Tag","'+02:00","2026-02-17T11:00:44.000+02:00","cybintsys","Cloud Agent","edfd80fc-bb74-479e-8fe5-b25f8e07b45f","2025-08-07T12:08:27.000+02:00","2026-04-22T10:55:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","138.0" +"131275361","193321031","vpaiiapol5","","00:50:56:82:94:70","10.40.2.46","fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 6e a8 95 50 3b 27-85 58 35 bb e3 53 b5 eb","No Asset Tag","'+02:00","2024-06-05T11:39:28.000+02:00","cybreconcile","Cloud Agent","d6b6f887-84de-4656-8aed-6d6620e18881","2022-07-12T15:47:48.000+02:00","2026-04-22T11:22:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans,Centreon,Obsolete,Linux Server,Cloud Agent,VRF_INCONNUE","462.0" +"159557652","212130482","vpintaweb2.sanef.groupe","","02:42:b5:4e:0c:dd, 00:50:56:82:64:bf","172.17.0.1,192.168.20.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 c1 7b d8 5a 03 8a-7e 0b 01 96 df cb 9c b6","No Asset Tag","'+02:00","2026-04-15T14:54:46.000+02:00","cybreconcile","Cloud Agent","fbc331e5-6829-47d9-9ce7-d4429dcf4a02","2023-02-16T13:41:17.000+02:00","2026-04-22T10:59:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Gestion institutionnel,OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,VRF_INCONNUE,Cloud Agent,Linux Server","130.0" +"148436350","204914682","vrexpbtex1","","00:50:56:82:09:ce","10.45.2.226","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","31889","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 ca d0 16 1b 0c 4e-87 84 fd 26 39 0c 54 49","No Asset Tag","'+02:00","2026-04-15T15:32:58.000+02:00","cybadmsys","Cloud Agent","8b1511b6-7b10-4895-96d6-efc9bafc4f15","2022-11-17T19:47:18.000+02:00","2026-04-22T10:50:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,Transports Exceptionnels","27.0" +"131267086","193317133","vpadvaapp4.sanef.groupe","","00:50:56:82:66:86","10.30.10.46","fe80::ecd1:9383:fcf1:dd35","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 bf ea 65 0e 1e 53-60 54 30 ec b6 94 41 f0","No Asset Tag","'+02:00","2024-09-05T14:16:38.000+02:00","cybreconcile","Cloud Agent","d630674c-0f84-4895-97fe-f794da697d55","2022-07-12T15:04:23.000+02:00","2026-04-22T10:54:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Production,BDD-POS DYN,Gestion commerciale,Cloud Agent,Linux Server,DEX,Obsolete,ADV-U","336.0" +"139158036","198270705","vmampsxt3","","00:50:56:82:48:7B, 00:50:56:82:2F:B3, 00:50:56:82:60:FD","10.43.4.32,10.43.40.32,10.41.40.32","fe80::250:56ff:fe82:487b,fe80::250:56ff:fe82:2fb3,fe80::250:56ff:fe82:60fd","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 8f 04 7b 29 62 51-77 87 c2 cf 93 91 e2 58","No Asset Tag","'+02:00","2025-12-11T15:55:16.000+02:00","cybreconcile","Cloud Agent","3f1d4ed6-923d-4649-a944-e6c72d8fc086","2022-09-07T14:35:22.000+02:00","2026-04-22T10:55:35.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,log4j,DEX,OS-LIN-SRV DYN,Sextan,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,Production,Trafic,Linux Server,Cloud Agent","699.0" +"213849189","251125497","spemvalog1.sanef.groupe","","54:80:28:4e:67:5a","192.168.100.74","fe80::46c:6cb9:10b9:4392","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant DL380 G10 Server","32","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31829","HPE U30 08/06/2025","CZ28450153","","'+02:00","2026-01-19T17:20:57.000+02:00","root","Cloud Agent","14d73869-4e52-41ff-9546-b2ea4392cdfc","2024-02-05T19:36:04.000+02:00","2026-04-22T10:45:02.000+02:00","x86_64","4","SCA,VM,PM,GAV","Forescout,PCI Bunker EMV - VLAN Supervision/Admin,DSI,OS-LIN-SRV DYN,Splunk,Cloud Agent,Linux Server","673.0" +"241536911","276509649","vpvsaaafz2.sanef.groupe","","00:50:56:90:7a:80","192.168.18.79","fe80::250:56ff:fe90:7a80","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 23 07 9c d7 fc 84-af eb a1 31 0d 4d f5 03","No Asset Tag","'+02:00","2026-02-04T12:51:21.000+02:00","tbaad","Cloud Agent","13f17acb-fa02-4c85-84f0-2e3c2e12022d","2024-06-04T12:01:16.000+02:00","2026-04-22T11:03:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"193226489","240735961","vpbocs4ci1.sanef.groupe","","00:50:56:90:6e:15","10.41.22.5","fe80::250:56ff:fe90:6e15","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","92112","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 1e 89 b0 76 c1 7b-6a 8e 22 88 02 10 4d cb","No Asset Tag","'+02:00","2026-04-01T21:45:11.000+02:00","cybreconcile","Cloud Agent","3cdf60b5-1dc5-41a8-a2d3-c561cd8fa947","2023-10-13T13:29:39.000+02:00","2026-04-22T10:50:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server","332.0" +"205781540","247056237","vpbocaprx1.sanef.groupe","","00:50:56:90:74:89","192.168.21.195","fe80::250:56ff:fe90:7489","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f7 cb 90 98 b5 11-3f d7 f2 04 60 73 60 0e","No Asset Tag","'+02:00","2026-04-01T22:02:40.000+02:00","root","Cloud Agent","21d995fb-3719-4d8d-aa67-d163aafa15f8","2023-12-22T18:22:14.000+02:00","2026-04-22T10:55:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,flux_libre,FreeFlow,Flux Libre,Production","66.0" +"416076516","367729274","vrzbxbpgs2.sanef-rec.fr","","00:50:56:9c:c2:6c","10.45.15.203,10.45.15.202","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c e7 97 67 50 ba 06-33 b4 74 8a eb a1 79 91","No Asset Tag","'+02:00","2026-04-17T16:46:21.000+02:00","cybsecope","Cloud Agent","1246f772-6461-4ea3-a1b8-da1005acddb6","2026-04-15T17:05:41.000+02:00","2026-04-22T11:25:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","66.0" +"173355718","227827566","vvbooosea1.sanef-rec.fr","","00:50:56:9c:b3:11","10.45.6.69","fe80::250:56ff:fe9c:b311","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c5 9e d6 a0 56 60-69 20 4f 09 f0 dd 32 86","No Asset Tag","'+02:00","2026-03-12T11:45:33.000+02:00","cybreconcile","Cloud Agent","3a4a7f04-ade1-4811-b513-86fa27408488","2023-06-07T10:37:31.000+02:00","2026-04-20T19:19:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Recette,Flux Libre,flux_libre","141.0" +"269316158","299220499","vtdsiaels1.sanef-rec.fr","","00:50:56:9c:69:b1","10.45.1.170","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f2 4c ab be 7e 59-88 61 ac 1e 41 bf dd d3","No Asset Tag","'+02:00","2026-01-06T13:57:31.000+02:00","cybsecope","Cloud Agent","cc8c6fbd-9bf1-48b9-8d0a-e937aad5fa4a","2024-10-01T10:52:18.000+02:00","2026-04-18T07:09:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Recette,Linux Server,Cloud Agent,Elasticsearch","139.0" +"195400913","241773072","vpbotatvv1.sanef.groupe","","00:50:56:90:02:fb","10.41.23.11","fe80::250:56ff:fe90:2fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 d4 dd 86 65 f5 16-0b 8c 6e ec d1 4f 4a 7c","No Asset Tag","'+02:00","2026-04-16T15:47:04.000+02:00","cybreconcile","Cloud Agent","dcecd626-4a64-423b-b159-743ec40ae678","2023-10-24T23:32:36.000+02:00","2026-04-16T16:37:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Flux Libre,Production,flux_libre","140.0" +"415474522","367481217","vpdsiangx2.sanef.groupe","","00:00:00:00:00:00, 00:50:56:90:1b:dd","192.168.19.161","::1","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Server","","","","","","VMware-42 10 4e f9 6e 78 ec d3-fa f1 ed 76 57 63 30 fe","","'+02:00","","","Cloud Agent","9f2559d4-1234-49aa-8f55-5057c02d8470","2026-04-13T14:27:05.000+02:00","2026-04-13T14:27:04.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","0.0" +"415486980","367481218","vpdsiangx1.sanef.groupe","","00:00:00:00:00:00, 00:50:56:90:ae:4a","192.168.19.160","::1","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Server","","","","","","VMware-42 10 8d 88 c9 1d 51 81-80 87 7e a2 d2 d0 a2 4c","","'+02:00","","","Cloud Agent","ec715c55-d9d9-4497-9159-deb3d95c5181","2026-04-13T14:23:28.000+02:00","2026-04-13T14:23:26.000+02:00","x64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","0.0" +"415479841","367480545","vpdsiahap2.sanef.groupe","","00:50:56:90:a5:70","192.168.19.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 79 42 7e 15 dd 6d-44 e3 7d 75 da f1 8e f6","","'+02:00","2026-04-13T14:17:29.000+02:00","cybintsys","Cloud Agent","94925ce9-7329-428f-a9fe-48b21f42a1c3","2026-04-13T14:17:35.000+02:00","2026-04-13T14:19:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","0.0" +"415483225","367480191","vpdsiahap1.sanef.groupe","","00:50:56:90:08:f8","192.168.19.132,192.168.19.134","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 2e 4a 83 50 cb 8e-0e 6c ef 83 29 6e 3c 7a","","'+02:00","2026-04-13T14:11:12.000+02:00","cybintsys","Cloud Agent","d2e411da-48eb-4fa6-8177-640b7de770a9","2026-04-13T14:11:22.000+02:00","2026-04-13T14:13:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","0.0" +"403289818","362453582","vrintaweb2.sanef.groupe","","02:42:78:ef:31:30, 00:50:56:82:ef:41","172.17.0.1,192.168.20.3","fe80::42:78ff:feef:3130,fe80::250:56ff:fe82:ef41","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 fd 8b 9c 89 53 12-a7 fc a4 c1 f5 3c cd 70","No Asset Tag","'+02:00","2026-02-23T13:29:29.000+02:00","husson-ext","Cloud Agent","67172794-53f1-4c5c-9922-dd6e8838fd8f","2026-02-23T15:45:41.000+02:00","2026-04-01T21:54:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","DMZ,Gestion institutionnel,Cloud Agent,OS-LIN-SRV DYN,Linux Server,Recette,Sans,Communication et Collaboration,VRF_INCONNUE,MID-NGINX DYN,BDD-POS DYN","139.0" +"392184545","358112878","srdsiabkp1.sanef-rec.fr","","ec:eb:b8:9d:5f:98","10.43.253.30","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","15293","HPE U41 07/20/2023","CZJ82213V0","","'+02:00","2026-01-14T18:15:28.000+02:00","cybadmsys","Cloud Agent","83b1a7cf-656d-4934-89ac-69be2d111e12","2026-01-14T18:18:30.000+02:00","2026-04-01T10:21:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,BDD-ELA DYN,Cloud Agent,OS-LIN-SRV DYN,Linux Server","336.0" +"403260902","362450986","vvbooosea2.sanef-rec.fr","","00:50:56:9c:8c:2a","10.45.6.75","fe80::250:56ff:fe9c:8c2a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f8 de c1 d6 0d f9-43 43 4e 03 73 fc 6b d8","No Asset Tag","'+02:00","2026-03-09T17:00:55.000+02:00","cybadmsys","Cloud Agent","77417873-5a3e-49ef-871a-bf0fe50063d6","2026-02-23T15:08:48.000+02:00","2026-04-01T05:34:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,Recette,flux_libre,Linux Server,OS-LIN-SRV DYN,Cloud Agent","134.0" +"364171253","346469322","vpdsiaito1.sanef.groupe","","00:50:56:9c:fa:7c","10.46.33.35","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15731","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 29 1a 4f 84 a5 cf-aa 45 de 5e 04 ad 47 37","No Asset Tag","'+01:00","2025-11-24T16:14:16.000+02:00","cybreconcile","Cloud Agent","322b6db7-30b2-4bb8-a774-afb954e818d0","2025-09-30T11:25:11.000+02:00","2026-03-19T11:36:06.000+02:00","x86_64","3","SCA,VM,PM,GAV","Production,MID-NGINX DYN,OS-LIN-SRV DYN,ITOP,Cloud Agent,Linux Server","490.0" +"269330646","299220500","vtdsiaels2.sanef-rec.fr","","00:50:56:9c:b1:54","10.45.1.171","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 26 34 94 6b 39 1a-41 6e ad b0 05 e4 02 2c","No Asset Tag","'+01:00","2026-01-06T13:59:06.000+02:00","cybadmbdd","Cloud Agent","505b4524-cc17-4108-81d8-1342e34dd5f3","2024-10-01T10:52:14.000+02:00","2026-03-14T04:22:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Elasticsearch,Recette,Cloud Agent,Linux Server","140.0" +"177200698","230572089","vraiibsql2","","00:50:56:82:e5:f3","10.45.1.190","fe80::18c1:e4dc:8578:9b13","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 77 61 d4 93 28 26-ec 72 e7 64 45 3b 89 cc","No Asset Tag","'+01:00","2024-09-24T15:52:18.000+02:00","cybintsys","Cloud Agent","f2024917-d356-4795-a0cb-71c54797c320","2023-07-05T10:31:24.000+02:00","2026-03-03T12:40:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,Obsolete,BDD,DSI","55.0" +"284390018","309489719","vtdsibpgs3.sanef-rec.fr","","00:50:56:9c:ef:d2","10.45.1.174","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 40 0e b3 d6 4a 89-59 fc 75 25 ef 2b 8e c2","No Asset Tag","'+01:00","2026-01-06T16:12:10.000+02:00","cybsecope","Cloud Agent","ce12673a-6c4d-4541-bad9-cf7379504c1e","2024-12-05T13:41:16.000+02:00","2026-02-11T19:19:30.000+02:00","x86_64","2","SCA,VM,GAV","Recette,Linux Server,Cloud Agent,OS-LIN-SRV DYN,BDD-POS DYN,PATRIMOINE","139.0" +"186457322","236788723","vpemvgrid1.sanef.groupe","","00:50:56:98:14:19","192.168.100.134","fe80::250:56ff:fe98:1419","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","12014","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 18 95 87 91 62 e8 ae-fb b8 a7 90 97 33 30 c4","No Asset Tag","'+01:00","2025-06-03T10:52:46.000+02:00","root","Cloud Agent","47d1d836-0046-46a8-af82-d754165cac46","2023-09-06T10:20:05.000+02:00","2026-02-11T15:27:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,EMV,PCI Bunker EMV - VLAN Supervision/Admin,DEX","683.0" +"379376176","352802109","srdsiatmp1.sanef.groupe","","08:f1:ea:76:20:78","10.43.253.20","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31496","HPE U41 07/20/2023","CZJ95002KN","","'+01:00","2025-12-15T12:25:22.000+02:00","cybintsys","Cloud Agent","3afff1a8-62a3-4e81-a611-0f02125d4c10","2025-11-25T19:39:12.000+02:00","2026-02-03T16:37:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","325.0" +"160946714","214305484","lampoct1.sanef.groupe","","00:17:A4:77:08:90","10.42.40.140","fe80::217:a4ff:fe77:890","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G7 Server","24","2930","Intel(R) Xeon(R) CPU X5670 @ 2.93GHz","48298","","VCX000020F","","'+01:00","2022-06-20T11:45:34.000+02:00","cybadmsys","Cloud Agent","881f98f1-c501-4042-b9df-c64d6cd7a79a","2023-02-28T16:20:23.000+02:00","2025-11-14T06:06:33.000+02:00","x86_64","3","SCA,VM,GAV","Obsolete,DFIN,Cloud Agent,Linux Server,Satisf'aire,log4j,BDD-POS DYN,OS-LIN-SRV DYN","527.0" +"213853736","251126729","lamppea1","","00:17:A4:77:00:00, 00:17:A4:77:00:04","10.41.20.10,10.41.20.12,192.168.70.10","fe80::217:a4ff:fe77:0,fe80::217:a4ff:fe77:4","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32182","","VCX0000000","","'+01:00","2025-09-23T10:32:45.000+02:00","admpea07","Cloud Agent","59355bb3-2085-4d63-b9b5-39ca69986e8c","2024-02-05T20:00:29.000+02:00","2025-11-14T05:56:44.000+02:00","x86_64","2","SCA,VM,GAV","log4j,DEX,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server,Central péage,Obsolete","348.0" +"213859268","251132944","lampadp1","","00:17:A4:77:00:20, 00:17:A4:77:00:24","10.41.20.15,10.41.20.17,10.41.20.19,192.168.70.20","fe80::217:a4ff:fe77:20,fe80::217:a4ff:fe77:24","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32182","","VCX0000002","","'+01:00","2025-05-26T09:59:11.000+02:00","oracle","Cloud Agent","22052064-e40c-4332-b57d-e43591418bdc","2024-02-05T21:10:26.000+02:00","2025-11-14T05:52:10.000+02:00","x86_64","2","SCA,VM,GAV","DEX,OS-LIN-SRV DYN,Obsolete,BDD-POS DYN,Central péage,Cloud Agent,Linux Server,log4j","348.0" +"139144075","198259285","vadvpapp3","","00:50:56:AC:00:77","10.30.11.59","","Linux / Server","Red Hat Enterprise Linux Server 5.6","5.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","5963","","VMware-42 2c e1 b7 71 43 b6 86-3c 61 d3 c8 e9 b2 0a d3","No Asset Tag","'+01:00","2025-05-15T10:38:32.000+02:00","cybrecon","Cloud Agent","cee15a96-8f06-4018-8103-839770b1fdb4","2022-09-07T12:13:13.000+02:00","2025-11-14T05:42:31.000+02:00","x86_64","2","SCA,VM,GAV","DEX,ServersInCyberark,log4j,Obsolete,ADV-U,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,Gestion commerciale,VRF_INCONNUE","350.0" +"137349545","197589746","vairtom1.sanef.groupe","","00:50:56:AC:00:43","10.42.40.134","","Linux / Server","Red Hat Enterprise Linux Server 5.8","5.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","12010","","VMware-56 4d d2 69 8c da 52 b9-43 4d 37 e7 3f b1 4b 3d","No Asset Tag","'+01:00","2023-01-13T12:17:05.000+02:00","cybreconcile","Cloud Agent","21f35f97-dc8b-4b3d-8771-4434127a33cc","2022-08-30T17:17:45.000+02:00","2025-11-14T05:39:04.000+02:00","x86_64","3","SCA,VM,GAV","Obsolete,Aires,Production,VRF_AIRES_DC,Satisf'aire,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,DFIN,ServersInCyberark,log4j,BDD-POS DYN","525.0" +"113463686","181096708","vadvpapp1","","00:50:56:AC:00:06","10.30.11.51","","Linux / Server","Red Hat Enterprise Linux Server 5.6","5.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","5963","","VMware-42 2c 75 05 0f 51 69 51-a5 35 f7 07 ab ac 41 95","No Asset Tag","'+01:00","2025-05-15T10:05:04.000+02:00","cybrecon","Cloud Agent","92d7bf22-b54e-474d-86da-56329c4ef959","2022-02-14T16:25:37.000+02:00","2025-11-14T05:30:02.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Gestion commerciale,Production,Sans,VRF_INCONNUE,DEX,ADV-U,Cloud Agent,Obsolete,Linux Server,log4j","349.0" +"130580382","192830726","lamtpfe1.sanef.groupe","","00:17:A4:77:14:CA","10.45.11.222","fe80::217:a4ff:fe77:14ca","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G8 Server","32","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","64422","","CZ3232T6J5","","'+01:00","2025-06-11T15:43:01.000+02:00","cybsupapp","Cloud Agent","e985d185-db61-458a-850a-d6f7f5ba3130","2022-07-07T10:57:53.000+02:00","2025-11-14T05:26:57.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,Obsolete,log4j,BDD-POS DYN,MID-APACHE-TOMCAT DYN,DEX,XFB,Recette,Exploitation IT","352.0" +"160941710","214301549","lamppea2","","00:17:A4:77:00:10, 00:17:A4:77:00:14","10.41.20.11,10.41.20.13,10.41.20.14,192.168.70.11","fe80::217:a4ff:fe77:10,fe80::217:a4ff:fe77:14","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32183","","VCX0000001","","'+01:00","2025-09-23T09:59:26.000+02:00","cybreconcile","Cloud Agent","5bf45439-5714-47de-9d06-81c61813cc39","2023-02-28T15:30:58.000+02:00","2025-11-14T05:18:28.000+02:00","x86_64","2","SCA,VM,GAV","DEX,log4j,Cloud Agent,Linux Server,BDD-POS DYN,Obsolete,Central péage,OS-LIN-SRV DYN","348.0" +"213858623","251128418","lampadp2","","00:17:A4:77:00:30, 00:17:A4:77:00:34","10.41.20.16,10.41.20.18,192.168.70.21","fe80::217:a4ff:fe77:30,fe80::217:a4ff:fe77:34","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32055","","VCX0000003","","'+01:00","2025-05-26T09:18:36.000+02:00","cybreconcile","Cloud Agent","67f8269a-3b2b-474b-9adf-76419084d59e","2024-02-05T20:21:26.000+02:00","2025-11-14T05:17:32.000+02:00","x86_64","2","SCA,VM,GAV","Central péage,log4j,Obsolete,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,BDD-POS DYN","348.0" +"130580114","192828848","lamrsip1","","00:17:A4:77:00:40, 00:17:A4:77:00:44","10.43.254.10,10.43.254.12,192.168.70.30","fe80::217:a4ff:fe77:40,fe80::217:a4ff:fe77:44","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","48295","","VCX0000004","","'+01:00","2025-10-09T11:49:09.000+02:00","cybastapp","Cloud Agent","97a0e7ef-d966-4d51-971d-564193fba1ea","2022-07-07T10:47:06.000+02:00","2025-11-14T04:40:47.000+02:00","x86_64","2","SCA,VM,GAV","VRF_LEGACY,Obsolete,DEX,OS-LIN-SRV DYN,BDD-POS DYN,MID-APACHE-TOMCAT DYN,Central péage,log4j,Cloud Agent,Linux Server,Péage,Recette","348.0" +"154878292","208504014","nac.sanef.fr","","","10.44.2.100","","/ Unidentified","UNKNOWN","","Unidentified / Unidentified","Unidentified","","","","","","","","'+01:00","","","Cloud Agent","9bca7598-3d2b-458d-9b2f-f5daf301e1f7","2023-01-10T16:49:15.000+02:00","2025-03-13T06:20:03.000+02:00","x64","2","SCA,VM,GAV","Cloud Agent,Linux Server","0.0" diff --git a/inputs/AI_Asset_List_sanef-km1_20260422 (2).csv b/inputs/AI_Asset_List_sanef-km1_20260422 (2).csv new file mode 100644 index 0000000..23a75fd --- /dev/null +++ b/inputs/AI_Asset_List_sanef-km1_20260422 (2).csv @@ -0,0 +1,5001 @@ +"Asset ID","Host ID","Asset Name","NetBIOS Name","MAC Address","IPV4 Address","IPV6 Address","Operating System Category","Operating System","Operating System Version","Hardware Category","Hardware","CPU Count","CPU Speed (MHz)","CPU Description","Total Memory (MB)","BIOS Description","BIOS Serial Number","BIOS Asset Tag","Timezone","Last System Boot","Last Logged On User","Inventory Source","Agent ID","Inventory Created On","Inventory Last Updated On","Architecture","CriticalityScore","Modules","Tags","TruRisk Score" +"346650733","339058456","PCB25843.sanef.groupe","PCB25843","F8:ED:FC:AB:F1:CE","192.168.1.11,10.101.243.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CRL","","'+02:00","2026-04-20T08:31:59.000+02:00","SANEF\DUFOURQ","Cloud Agent","cf91d6ed-4b0d-406f-9810-ead02c55402d","2025-07-29T15:08:10.000+02:00","2026-04-22T11:24:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"196660269","242432306","vpbooosea2.sanef.groupe","","00:50:56:90:b5:d7","10.41.22.136","fe80::250:56ff:fe90:b5d7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 77 7a 5c d6 e7 55-8d b3 4c 3e 11 ef e3 ef","No Asset Tag","'+02:00","2026-04-07T15:17:37.000+02:00","cybreconcile","Cloud Agent","22ea8bf7-5f22-47a1-a02a-8a0b44fc5b91","2023-10-31T18:19:57.000+02:00","2026-04-22T11:19:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,FreeFlow,OS-LIN-SRV DYN,Flux Libre,flux_libre","330.0" +"344869190","338496195","PCB21309.sanef.groupe","PCB21309","D0:AD:08:0C:8D:0B","10.101.243.58","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GJH","","'+02:00","2026-04-14T11:36:03.000+02:00","SANEF\ragelle","Cloud Agent","9de04ab6-8553-46b7-9afe-7e08734bfc44","2025-07-24T17:16:08.000+02:00","2026-04-22T11:18:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"230365978","258597324","ls-vemars-ouest","LS-VEMARS-OUEST","00:50:56:90:A6:16","10.41.2.119","fe80::8944:b7fb:76ef:ad28","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 d1 b6 63 fd 98 0c-76 a4 e6 a4 7d b1 5f 58","NoAssetTag","'+02:00","2026-03-04T15:03:45.000+02:00","svpadmin","Cloud Agent","31ec2c36-e7c1-4324-933c-6aba1bb854bd","2024-04-16T15:45:23.000+02:00","2026-04-22T11:18:05.000+02:00","64-Bit","4","SCA,VM,PM,GAV","High,Production,Péage,SVP,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX","680.0" +"361952346","345521644","PCB24197.sanef.groupe","PCB24197","30:E3:A4:D5:F5:C5","10.255.3.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5192YLY","","'+02:00","2026-03-30T15:25:41.000+02:00","SANEF\lothg","Cloud Agent","cf047bae-dac1-4042-9083-3ed278b64f2c","2025-09-22T13:21:40.000+02:00","2026-04-22T11:17:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","257.0" +"292523826","315076953","vpsimaexp2.sanef.groupe","","00:50:56:90:87:1e, 52:54:00:94:2c:6b","10.30.10.130,192.168.122.1","fe80::15e:a51:8c8b:ddfd","Linux / Server","The CentOS Project CentOS 8.1 (1911)","8.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3941","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e9 13 5e 4f b0 a9-0e e5 c3 62 4a f8 00 fc","No Asset Tag","'+02:00","2025-11-27T13:51:58.000+02:00","cybexpapp","Cloud Agent","d1988b13-f451-461f-9eb0-596894d852d3","2025-01-15T17:40:50.000+02:00","2026-04-22T11:17:10.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server","238.0" +"248469383","288180801","MTO22331.sanef.groupe","MTO22331","D0:AD:08:A3:7C:67","10.200.40.25","fe80::65da:b401:894b:150c","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6345) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502Z02","","'+02:00","2026-04-16T05:36:45.000+02:00","SANEF\meteonewsW11","Cloud Agent","6836f30c-9714-43f0-a163-56cbec452409","2024-07-04T13:33:27.000+02:00","2026-04-22T11:16:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"236930843","266497636","SVP20940.sanef-int.adds","SVP20940","BC:0F:F3:87:6F:9C","10.106.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LKV","","'+02:00","2026-04-14T08:39:55.000+02:00","Superviseur","Cloud Agent","24374048-050c-4eea-9a20-4c044f79bfbd","2024-05-15T17:24:31.000+02:00","2026-04-22T11:16:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"194005729","241200204","vvaflgsys1.sanef-rec.fr","","00:50:56:9c:37:85","10.45.7.168","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 62 29 12 cc 53 ce-71 ba f5 29 9b 33 1b 0d","No Asset Tag","'+02:00","2026-03-09T10:07:17.000+02:00","cybsupsys","Cloud Agent","c797811c-5f5a-4122-81bc-107e2387d4dc","2023-10-18T11:07:13.000+02:00","2026-04-22T11:16:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,Recette,flux_libre,Flux Libre","143.0" +"402455023","362026627","PCB18632.sanef.groupe","PCB18632","38:CA:84:DB:E6:8A","10.4.31.91","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WCZ","","'+02:00","2026-04-16T10:45:29.000+02:00","SANEF\TOUVEREY-ext","Cloud Agent","35f3c983-e73b-469f-96e4-b5970a4341e0","2026-02-19T18:48:05.000+02:00","2026-04-22T11:51:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"130588548","192836202","vmamrstg1","","00:50:56:82:4B:5E, 00:50:56:82:69:20, 00:50:56:82:0C:DF","10.33.16.10,10.32.16.10,10.32.16.17,10.32.16.18,10.30.16.10,10.30.16.17,10.30.16.18","fe80::250:56ff:fe82:4b5e,fe80::250:56ff:fe82:6920,fe80::250:56ff:fe82:cdf","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a5 3e 1a cc c0 8a-9b 8a f5 2d 87 49 4e 3d","No Asset Tag","'+02:00","2025-10-09T11:38:43.000+02:00","cybexpapp","Cloud Agent","7bb33190-4842-4833-89d2-ef36edd44bd7","2022-07-07T12:03:44.000+02:00","2026-04-22T11:15:13.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,SSTG,OS-LIN-SRV DYN,DEX,Obsolete,Sans,Trafic,Recette,Cloud Agent,Linux Server,VRF_INCONNUE","699.0" +"354639273","342479604","vpdsiasaf1.sanef.groupe","","00:50:56:90:31:5a, b2:2c:a3:11:f1:e1, b6:c5:71:61:e3:86","192.168.19.8,10.88.0.1","fe80::b02c:a3ff:fe11:f1e1,fe80::b4c5:71ff:fe61:e386","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 18 f1 f2 d9 9f 21-1d 7b b0 2f ea 0a 2b 23","No Asset Tag","'+02:00","2026-03-24T10:57:41.000+02:00","cybsupsys","Cloud Agent","05c67cdb-9eb6-4732-b336-1b3a5a338677","2025-08-26T15:03:25.000+02:00","2026-04-22T11:14:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","144.0" +"227708214","257227446","ls-laon","LS-LAON","00:50:56:90:C5:D0","10.41.2.48","fe80::12f6:1fc:b4b7:81dc","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 9c e4 4f 03 0c 8f-9b cb da 5e 66 14 30 1b","NoAssetTag","'+02:00","2026-03-03T12:05:18.000+02:00","svpadmin","Cloud Agent","4c5cde77-e133-40bc-a09e-2c786e8577c3","2024-04-05T11:05:36.000+02:00","2026-04-22T11:13:48.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Production,Péage,High,SVP,Cloud Agent,Windows Server,DEX","508.0" +"131406665","193426321","vpexparep1.sanef.groupe","","00:50:56:82:5f:2e","10.41.40.19","fe80::3882:f0f2:73c8:f3d0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d e3 1b d8 76 df b7-50 2a d2 6e 2e cf be d8","No Asset Tag","'+02:00","2026-01-21T17:41:02.000+02:00","cybreconcile","Cloud Agent","2a48840b-99bb-4e7e-9381-de183fb8456e","2022-07-13T10:52:22.000+02:00","2026-04-22T11:13:17.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Production,eReport,Cloud Agent,Linux Server,VRF_TRAFIC_DC","210.0" +"204123362","246220794","vpbotbtsd1.sanef.groupe","","00:50:56:90:26:9b","10.41.23.27","fe80::250:56ff:fe90:269b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e1 e2 cb 27 f7 af-5b 9a d7 aa 01 13 03 56","No Asset Tag","'+02:00","2026-04-16T09:56:24.000+02:00","cybreconcile","Cloud Agent","a5ac4389-1c0d-447e-98fd-8d8e7813c9c9","2023-12-13T19:24:32.000+02:00","2026-04-22T11:13:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,FreeFlow","337.0" +"323162176","329803515","PCB23720.sanef.groupe","PCB23720","C8:6E:08:45:1B:A9","10.255.2.206,10.82.165.71","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H31","","'+02:00","2026-04-08T17:32:24.000+02:00","SANEF\FIOREV","Cloud Agent","9c74ee56-4133-4a84-88c5-a9a6e8366ea8","2025-05-09T11:17:49.000+02:00","2026-04-22T11:13:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"295952448","317393322","vpvsaasia2","","00:50:56:94:73:30","10.44.2.201","fe80::250:56ff:fe94:7330","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 ab ae 1f bb 23 47-54 83 36 3a 8f 25 bf 3a","No Asset Tag","'-04:00","2026-02-02T12:37:52.000+02:00","tbaad","Cloud Agent","cfc98c51-d86e-4590-b98c-102ab201162a","2025-01-29T12:18:42.000+02:00","2026-04-22T11:13:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0" +"320292015","328638452","PCB23594.sanef.groupe","PCB23594","C8:6E:08:88:FD:D3","10.255.1.194","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB4","","'+02:00","2026-04-20T08:31:29.000+02:00","SANEF\guilbertcl","Cloud Agent","af6fb503-8736-463e-a613-9e6b398e15d7","2025-04-28T16:34:29.000+02:00","2026-04-22T11:12:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"183965866","235215633","vmamrmet2","","00:50:56:82:67:F0, 00:50:56:82:42:10, 00:50:56:82:07:E1","10.45.4.151,10.45.2.151,10.45.3.151","fe80::250:56ff:fe82:67f0,fe80::250:56ff:fe82:4210,fe80::250:56ff:fe82:7e1","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 84 26 ae 6d 9b-c0 d7 e4 a0 b7 13 78 52","No Asset Tag","'+02:00","2025-10-09T11:39:08.000+02:00","root","Cloud Agent","84233946-88dd-45d5-888e-6d9ad37c4526","2023-08-22T13:03:52.000+02:00","2026-04-22T11:12:29.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Obsolete,DEX,MIVISU,log4j","878.0" +"193621646","240986858","vpbocs4as2.sanef.groupe","","00:50:56:90:d1:09","10.41.22.9","fe80::250:56ff:fe90:d109","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 5a c4 2d 26 e0 f4-e8 5f c4 3c 26 0c a7 cc","No Asset Tag","'+02:00","2026-04-01T21:58:56.000+02:00","cybreconcile","Cloud Agent","cea903fb-fb33-4e40-a78d-f3ced159bd18","2023-10-16T13:31:56.000+02:00","2026-04-22T11:12:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,flux_libre,FreeFlow,OS-LIN-SRV DYN,Production","331.0" +"239623460","271648233","SVP20972.sanef-int.adds","SVP20972","BC:0F:F3:87:66:6E","10.132.4.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LM1","","'+02:00","2026-04-22T06:53:26.000+02:00","Superviseur","Cloud Agent","f20526ec-f000-4ccb-b797-823f0b7603fa","2024-05-27T17:05:37.000+02:00","2026-04-22T11:12:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"129339728","191948317","sppeaanvr10","SPPEAANVR10","D4:F5:EF:50:80:E5","10.41.7.109","fe80::6047:3cad:b2d9:5a8f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DV9","","'+02:00","2026-04-06T22:12:03.000+02:00","Administrateur","Cloud Agent","84c375ec-b766-42cc-a6b6-b2af919daee6","2022-06-27T14:58:55.000+02:00","2026-04-22T11:11:53.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Sans,Exploitation,OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR","511.0" +"352998720","341693269","PCB17804.sanef.groupe","PCB17804","28:C5:D2:9E:3E:32","10.255.2.196,10.255.2.235","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3J","","'+02:00","2026-04-13T20:55:01.000+02:00","SANEF\lacroixi","Cloud Agent","9171483b-1fcb-4af6-a2de-9bf8d1de0493","2025-08-20T09:57:26.000+02:00","2026-04-22T10:38:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"139158019","198270644","vmampsxt1","","00:50:56:82:6C:1A, 00:50:56:82:78:82, 00:50:56:82:3A:E9","10.41.40.30,10.41.40.34,10.43.4.30,10.43.40.30","fe80::250:56ff:fe82:6c1a,fe80::250:56ff:fe82:7882,fe80::250:56ff:fe82:3ae9","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 05 0b 89 c3 eb de-0d e3 a8 e1 0e 4a 54 b4","No Asset Tag","'+02:00","2023-01-12T01:48:29.000+02:00","cybreconcile","Cloud Agent","10b2836a-1caa-4515-b53e-7d5cb5467814","2022-09-07T14:33:57.000+02:00","2026-04-22T11:11:28.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,Sextan,DEX,Production,Trafic,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,Obsolete","699.0" +"295368261","317190257","vvpeaabst3.sanef-rec.fr","","00:50:56:9c:3b:0a","10.45.10.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c de 43 23 21 2f 31-fc 6b e2 de 55 4d 8c a8","No Asset Tag","'+02:00","2026-03-10T10:01:59.000+02:00","cybsupapp","Cloud Agent","1d147632-02e4-4e6c-b4d3-d15d33be5555","2025-01-28T18:14:56.000+02:00","2026-04-22T11:11:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent,BOOST","140.0" +"130582850","192832077","vmamrgtc2","","00:50:56:82:7D:66, 00:50:56:82:07:63, 00:50:56:82:6A:AF","10.45.3.161,10.45.3.163,10.45.4.161,10.45.2.161,10.45.2.163","fe80::250:56ff:fe82:7d66,fe80::250:56ff:fe82:763,fe80::250:56ff:fe82:6aaf","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 03 1b b4 15 d0 7a-05 7e 5f fb bf 72 e0 31","No Asset Tag","'+02:00","2025-10-09T12:05:15.000+02:00","cybadmsys","Cloud Agent","fe8956e8-cc60-44ed-93e2-95a307f07f07","2022-07-07T11:12:20.000+02:00","2026-04-22T11:11:24.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,log4j,Obsolete,MIVISU,Recette,Sans,Trafic,DEX,VRF_INCONNUE,OS-LIN-SRV DYN","876.0" +"381588691","353599262","PCB22440.sanef.groupe","PCB22440","D0:AD:08:A7:28:5D","10.219.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM5","","'+02:00","2026-03-29T09:12:19.000+02:00","SANEF\lambertl","Cloud Agent","45ef763a-7fad-4ae9-87b4-5ec9581aa023","2025-12-04T10:42:21.000+02:00","2026-04-22T11:11:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"180754668","233062720","MTR-2G1CXM3","MTR-2G1CXM3","A4:BB:6D:95:65:70","10.100.32.210","fe80::227d:8b4:61cd:fd12","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","2G1CXM3","","'+02:00","2026-04-22T02:32:55.000+02:00","Skype","Cloud Agent","c9741fc3-7e46-400e-98b3-a6846c640501","2023-07-31T16:56:47.000+02:00","2026-04-22T11:10:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"231859805","259509938","vrcybapsm1.recette.adds","VRCYBAPSM1","00:50:56:9C:F0:7B","10.45.11.99","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 20 7e 27 0e 86 fc-f4 5c 32 47 a6 2e 75 57","NoAssetTag","'+02:00","2026-04-16T11:43:51.000+02:00","RECETTE\BP01481","Cloud Agent","744ad525-ea67-48da-a957-e1d5c5bc051f","2024-04-23T18:07:01.000+02:00","2026-04-22T11:10:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Recette","44.0" +"409023782","364788937","vibotaapm1.sanef.groupe","","00:50:56:90:b8:1f","10.41.23.143","fe80::250:56ff:fe90:b81f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 6e f9 5e ec 09 b9-3e 79 59 f7 ec b8 2c 41","No Asset Tag","'+02:00","2026-03-17T11:24:22.000+02:00","cybreconcile","Cloud Agent","d317fd6d-41de-45f0-b603-2b4ddaf50e25","2026-03-17T11:25:23.000+02:00","2026-04-22T11:09:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,log4j,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Flux Libre,Production","141.0" +"374169822","350494751","PCV18544.sanef-int.adds","PCV18544","30:13:8B:6C:5B:4F","10.5.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473SZ","","'+02:00","2026-04-16T10:56:34.000+02:00","Operateur","Cloud Agent","8fdeb10d-18ea-4406-b433-fa2ab269b341","2025-11-04T17:11:35.000+02:00","2026-04-22T11:09:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"180108924","232626124","vrrauaapp1.sanef-rec.fr","","00:50:56:9c:08:6c","10.45.9.231","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f3 f0 6e 7f d0 d4-00 4c ef 10 4f 7e 47 ba","No Asset Tag","'+02:00","2026-04-21T11:55:01.000+02:00","cybadmsys","Cloud Agent","5ca517d7-929e-4f09-8fee-edbbbc6f41a7","2023-07-26T18:19:32.000+02:00","2026-04-22T11:09:11.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,OS-LIN-SRV DYN,ASUR","72.0" +"399025769","360946609","PCB21114.sanef.groupe","PCB21114","E4:60:17:CB:7B:6D","10.101.243.160,192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764CX","","'+02:00","2026-03-31T09:27:14.000+02:00","SANEF\NAKHONEVONGSAKD-ext","Cloud Agent","403cae0b-968f-4b5c-be37-3dc155fa0580","2026-02-10T09:30:54.000+02:00","2026-04-22T10:58:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"241525484","276502495","vpvsaaafl1.sanef.groupe","","00:50:56:90:45:45","10.42.16.85","fe80::250:56ff:fe90:4545","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 b2 c1 38 2f d8 a4-1c 11 56 ea 3c 71 cb 82","No Asset Tag","'+02:00","2026-02-03T11:47:12.000+02:00","tbaad","Cloud Agent","e0cba33a-5464-467a-8be6-0bbb288c670c","2024-06-04T11:16:43.000+02:00","2026-04-22T11:08:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Linux Server,Cloud Agent","52.0" +"128618682","191427839","ls-setques","LS-SETQUES","00:50:56:90:76:E8","10.106.18.20","fe80::bed4:4651:5cf:1890","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 01 89 32 54 a9 49-08 36 24 2d 59 1b 80 f2","NoAssetTag","'+02:00","2026-03-03T10:47:11.000+02:00","svpadmin","Cloud Agent","498a137a-f305-43cd-ae2e-02070f45c521","2022-06-21T16:24:08.000+02:00","2026-04-22T11:08:35.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,Haute,Production,Péage,High,VRF_INCONNUE,Windows Server,OS-WIN-SRV DYN,SVP,Cloud Agent","635.0" +"335714568","336779950","vrdatafrt1.sanef-rec.fr","","00:50:56:9c:83:76","192.168.40.115","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c2 78 9b 72 94 09-bf 19 40 9d 8a 3c 7d 6b","No Asset Tag","'+02:00","2026-04-20T10:38:48.000+02:00","root","Cloud Agent","097fd4df-1bf5-4aed-ab5a-87ec60e2de2d","2025-06-23T16:58:58.000+02:00","2026-04-22T11:07:37.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","152.0" +"175950695","229618442","vvbocs4ci1.sanef-rec.fr","","00:50:56:9c:37:2d","10.45.6.3","fe80::250:56ff:fe9c:372d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c be 0a b0 f1 5e 5e-ea 6a fe 73 5b 41 85 e4","No Asset Tag","'+02:00","2026-03-11T16:02:37.000+02:00","cybsupsys","Cloud Agent","63aa44d5-fbe8-4b22-b643-4e984c0b6104","2023-06-26T16:42:59.000+02:00","2026-04-22T11:07:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Recette","336.0" +"349797065","340136519","vpodaboem3.sanef.groupe","","52:54:00:3d:a8:66, 52:54:00:ad:d4:bb, 52:54:00:1a:17:e6","10.42.15.101,10.42.15.103,10.42.15.104,192.168.17.5,192.168.17.130","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-07-31T08:56:17.000+02:00","oracle","Cloud Agent","15a33704-1218-4419-b52e-21f40487c096","2025-08-07T14:49:20.000+02:00","2026-04-22T11:07:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","339.0" +"195071010","241703493","vpbocrsap1.sanef.groupe","","00:50:56:90:71:93","10.41.22.13","fe80::250:56ff:fe90:7193","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 00 d0 64 ae e0 2c-b0 0f dd 9e 31 1d a6 a8","No Asset Tag","'+02:00","2026-04-01T22:04:13.000+02:00","cybreconcile","Cloud Agent","227888cb-7d76-4544-b9e0-11c380a98427","2023-10-24T08:02:17.000+02:00","2026-04-22T11:07:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,Flux Libre,flux_libre,FreeFlow","337.0" +"197783947","243071942","vplpeanvr1","VPLPEANVR1","00:50:56:82:55:21","10.117.1.11","fe80::7633:abf9:5270:5922","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 ad 78 7e 2a 0f 64-c8 d8 a4 89 f7 95 50 75","NoAssetTag","'+02:00","2026-03-03T12:45:30.000+02:00","Administrateur","Cloud Agent","639a0289-1c1f-410c-b2cb-8af9af17e58b","2023-11-07T10:38:22.000+02:00","2026-04-22T11:07:07.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,NVR,Production,Exploitation","508.0" +"233980699","260820419","ls-la-neuvillette","LS-LA-NEUVILLET","00:50:56:90:BA:7C","10.41.2.55","fe80::5de5:3954:c852:7414","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 db de 0c da 94 33-c1 21 56 78 d5 9b 38 54","NoAssetTag","'+02:00","2026-03-03T11:48:13.000+02:00","svpadmin","Cloud Agent","057ea6ce-ea75-46ce-9814-6196ccacc59c","2024-05-03T10:38:42.000+02:00","2026-04-22T11:07:03.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Production,Péage,SVP,High,VRF_PEAGE_DC","507.0" +"129336589","191945990","vpdaoalic1.sanef.groupe","VPDAOALIC1","00:50:56:82:F8:F7","10.30.10.59","fe80::353f:27f3:8e01:bdc1","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 ce 18 93 83 96 57-74 83 55 9f 21 db 35 10","NoAssetTag","'+02:00","2026-04-13T12:06:55.000+02:00","Administrateur","Cloud Agent","16117019-fa69-4b16-9011-2bde61ac21cc","2022-06-27T14:18:21.000+02:00","2026-04-22T11:06:54.000+02:00","64-Bit","3","SCA,VM,PM,GAV","ELEC,DEX,Production,Low,Logiciels,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Basse","64.0" +"209200389","248989099","VPAPTAPSH1.sanef.groupe","VPAPTAPSH1","00:50:56:9C:7F:3C","10.46.33.9","fe80::aeb2:2d71:1a21:55a4","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.3930) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 1c c5 25 91 30 e1 8e-83 a2 6f 1e be 6c 8d a1","NoAssetTag","'+02:00","2025-06-16T14:23:03.000+02:00","SANEF\TRON","Cloud Agent","6614a090-a219-4a63-8459-7857ab30a4e0","2024-01-12T16:13:06.000+02:00","2026-04-22T11:06:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"322597044","329578375","PCS22825.sanef-int.adds","PCS22825","D0:AD:08:A3:E6:60","10.100.13.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3476) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YQW","","'+02:00","2026-02-18T18:34:18.000+02:00","user_stl","Cloud Agent","9533de13-42df-4914-8f7d-ea2255f69fea","2025-05-07T11:36:53.000+02:00","2026-04-22T11:06:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","343.0" +"218502735","253210495","viosapquo1.sanef.groupe","","00:50:56:90:5a:44","10.100.16.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 f2 8e be 55 ad fe-e6 88 8d cc 59 f3 c5 51","No Asset Tag","'+02:00","2026-02-19T15:45:05.000+02:00","cybadmroot","Cloud Agent","e95202a1-eb90-4277-a712-a8862f9b648e","2024-02-28T15:03:52.000+02:00","2026-04-22T11:06:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,Péage","141.0" +"407354446","364050078","PCB24122.sanef.groupe","PCB24122","48:EA:62:CC:0C:48","10.5.31.49,10.100.39.148","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V73","","'+02:00","2026-04-17T16:27:28.000+02:00","SANEF\hennechart","Cloud Agent","15daf258-80ff-439a-a405-638ec1b92ddd","2026-03-10T12:42:33.000+02:00","2026-04-22T11:06:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"139158024","198270620","vmampsxt2","","00:50:56:82:77:D6, 00:50:56:82:34:57, 00:50:56:82:30:7E","10.41.40.31,10.43.40.31,10.43.4.31","fe80::250:56ff:fe82:77d6,fe80::250:56ff:fe82:3457,fe80::250:56ff:fe82:307e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 91 fb 5b cb 7f 86-3e 56 f5 cd 77 f3 57 ec","No Asset Tag","'+02:00","2023-05-31T07:04:09.000+02:00","cybreconcile","Cloud Agent","0d8914c4-4d68-4530-8886-bbdb7c9420e2","2022-09-07T14:34:34.000+02:00","2026-04-22T11:32:18.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_TRAFIC_DC,OS-LIN-SRV DYN,Sextan,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server,DEX,Trafic,Production,Obsolete","699.0" +"193617668","240981755","vibocs4as2.sanef.groupe","","00:50:56:90:7c:d5","10.41.22.73","fe80::250:56ff:fe90:7cd5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f5 ec 2b 7b 8c 2c-52 8a af 2e 25 d3 19 5f","No Asset Tag","'+02:00","2026-03-16T16:12:26.000+02:00","cybsupibm","Cloud Agent","960ccdc0-4836-4d1d-abce-d382d6537655","2023-10-16T12:49:07.000+02:00","2026-04-22T11:05:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,Cloud Agent,Linux Server,ServersInCyberark,OS-LIN-SRV DYN,Flux Libre","141.0" +"367872200","347959464","PCB18731.sanef.groupe","PCB18731","58:1C:F8:E9:BE:6B","10.205.0.36,192.168.1.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CT8","","'+02:00","2026-04-02T09:59:41.000+02:00","SANEF\botte","Cloud Agent","0f57b8c6-cd8e-4826-952b-d82d8e8f2555","2025-10-13T10:02:43.000+02:00","2026-04-22T11:58:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"361981752","345525135","PCB17944.sanef.groupe","PCB17944","84:69:93:E1:5A:DF","10.200.30.10,10.200.31.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG21724BX","","'+02:00","2026-04-20T17:42:29.000+02:00","SANEF\meillon","Cloud Agent","2a672673-0297-4a97-8649-e26c9143e3dd","2025-09-22T13:55:32.000+02:00","2026-04-22T10:45:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"345046416","338587371","PCB20639.sanef.groupe","PCB20639","58:1C:F8:EA:53:E4","192.168.1.192,10.255.2.243","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DS8","","'+02:00","2026-04-11T09:43:45.000+02:00","SANEF\MONTES","Cloud Agent","4f55844a-b3c7-4420-a688-a6405c79e533","2025-07-25T12:02:34.000+02:00","2026-04-22T11:07:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","333.0" +"398226015","360576954","PCB23677.sanef.groupe","PCB23677","C8:6E:08:89:0A:8A","192.168.1.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7L","","'+02:00","2026-04-20T15:39:06.000+02:00","SANEF\MANTELET","Cloud Agent","28d68b3f-e946-4020-a00a-562e954b1b8f","2026-02-06T11:47:29.000+02:00","2026-04-22T11:04:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"392620270","358316603","VRSIGAFRT1","","00:50:56:9c:95:f8","10.45.2.30","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 9f d5 6a 2a 5e f9-44 65 bf 9d 87 fb 80 e4","No Asset Tag","'+02:00","2026-02-05T16:20:10.000+02:00","cybsupapp","Cloud Agent","8d3fa3dd-efb7-49a7-be36-fb674f82e453","2026-01-16T11:07:44.000+02:00","2026-04-22T11:11:27.000+02:00","x86_64","3","SCA,VM,PM,GAV","Recette,SIG,OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","209.0" +"322039953","329338054","PCB21283.sanef.groupe","PCB21283","D0:AD:08:0C:7D:FE","10.4.30.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.02.03","5CG3440GJW","","'+02:00","2026-03-28T09:29:23.000+02:00","SANEF\copin","Cloud Agent","01562024-b40f-4bfc-854e-581566a71c68","2025-05-05T15:08:30.000+02:00","2026-04-22T11:03:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"221320256","254243756","vpboojump1.sanef.groupe","VPBOOJUMP1","00:50:56:90:9B:93","10.41.22.148","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 29 7a f0 2b b4 b9-7b e4 7a 10 07 5e 18 7a","NoAssetTag","'+02:00","2026-04-07T14:35:31.000+02:00","SANEF\ndead","Cloud Agent","a40050e0-a8fb-4241-a5ba-fcd7b1f654d5","2024-03-11T11:04:02.000+02:00","2026-04-22T11:03:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,flux_libre,FreeFlow,Cloud Agent,Windows Server,Production,Flux Libre","251.0" +"191424031","239727602","vibooaboo1.sanef.groupe","","00:50:56:90:46:2d","10.41.22.202","fe80::250:56ff:fe90:462d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 51 f3 e9 df 6e dc-ae 9f c0 29 18 dc 87 02","No Asset Tag","'+02:00","2026-03-17T15:35:43.000+02:00","cybsupemo","Cloud Agent","634cc72d-dc9c-440e-b3a6-903fce7680e1","2023-10-04T17:56:01.000+02:00","2026-04-22T11:03:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,Production,flux_libre,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","142.0" +"320081168","328605106","PCB23667.sanef.groupe","PCB23667","C8:6E:08:97:E0:BE","10.255.4.212,10.255.4.178","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L3Y","","'+02:00","2026-04-13T09:49:51.000+02:00","SANEF\mulette","Cloud Agent","249301d1-71a5-4430-9945-8f5fc571f088","2025-04-28T11:08:48.000+02:00","2026-04-22T11:10:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"193617840","240981756","vpbocs4as1.sanef.groupe","","00:50:56:90:ff:70","10.41.22.8","fe80::250:56ff:fe90:ff70","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 9f 64 ec 68 d3 ef-1e 56 f5 62 bf aa f4 22","No Asset Tag","'+02:00","2026-04-01T21:57:40.000+02:00","cyblecibm","Cloud Agent","28b031bd-a7eb-41c0-8723-e914f54013b2","2023-10-16T12:48:26.000+02:00","2026-04-22T11:10:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Production,FreeFlow,Flux Libre","331.0" +"213849160","251124644","sppeaanvr6","SPPEAANVR6","98:F2:B3:2C:CF:60","10.41.7.105","fe80::4263:e49d:815a:74b4","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLV","","'+02:00","2026-04-15T10:19:48.000+02:00","Administrateur","Cloud Agent","f768bc65-4e30-411f-b4c6-c79825c00701","2024-02-05T19:26:12.000+02:00","2026-04-22T11:02:49.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR","523.0" +"321001260","328905407","PCB23614.sanef.groupe","PCB23614","C8:6E:08:8A:3F:CC","10.255.4.206","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6K","","'+02:00","2026-03-31T09:04:55.000+02:00","SANEF\COGET","Cloud Agent","d76ab477-20ce-442b-9383-cc4be1902871","2025-04-30T14:37:45.000+02:00","2026-04-22T11:43:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"397149291","360233116","vrtrabwaz1.sanef-rec.fr","","00:50:56:9c:e7:8b","10.45.2.122","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 17 40 34 86 d1 1d-3c 88 67 37 0c 23 a0 61","No Asset Tag","'+02:00","2026-02-03T15:02:51.000+02:00","cybadmsys","Cloud Agent","57f46af5-a757-4507-9732-85f9416913e8","2026-02-03T15:03:11.000+02:00","2026-04-22T11:02:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Waze,DSI,Recette,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-NGINX DYN,BDD-ELA DYN","141.0" +"350537152","340464312","PCB25820.sanef.groupe","PCB25820","F8:ED:FC:AB:12:18","10.101.243.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVB","","'+02:00","2026-04-14T09:31:51.000+02:00","SANEF\PINHO","Cloud Agent","69c887e1-8d3c-41bf-a73f-3fd76ad630bb","2025-08-11T12:10:38.000+02:00","2026-04-22T11:12:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"225456379","256081081","vpssiandes1.sanef.groupe","VPSSIANDES1","00:50:56:82:E4:9F","192.168.162.80","fe80::abae:eaa2:a3ba:de4e","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","4095","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 2f 94 e7 46 32 cf-4e 17 6b ba da 12 23 26","NoAssetTag","'+02:00","2026-04-15T10:00:24.000+02:00","SANEF\kmoad-ext","Cloud Agent","5007963b-35d1-4095-b63f-6786f9e9de93","2024-03-26T12:48:19.000+02:00","2026-04-22T11:01:45.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Gestion_PKI,DSI,TAG-SRVEXPOSEINTERNET,Production,OS-WIN-SRV DYN,Critical,Cloud Agent,Windows Server","0.0" +"215222543","251728636","ls-yerville","LS-YERVILLE","00:50:56:90:73:B7","10.41.2.87","fe80::9f75:800f:7c14:cb0a","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 60 ed eb 36 dd 11-d7 78 dd fc fc b9 2a d8","NoAssetTag","'+02:00","2026-02-17T15:32:18.000+02:00","svpadmin","Cloud Agent","2fffc18b-88c6-4b1f-bb11-0969ce62ea8f","2024-02-12T16:15:55.000+02:00","2026-04-22T11:01:17.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Production,Péage,DEX,Haute,High,VRF_PEAGE_DC","635.0" +"395373817","359431292","PCB21088.sanef.groupe","PCB21088","D0:AD:08:AA:50:A1","192.168.1.3,10.101.243.140","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M1","","'+02:00","2026-04-09T15:11:00.000+02:00","SANEF\AFIFI-ext","Cloud Agent","748fab57-8fc8-465e-aa10-07d2842a94e1","2026-01-27T17:19:11.000+02:00","2026-04-22T10:57:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"319342781","328391943","PCB23620.sanef.groupe","PCB23620","C8:6E:08:8A:45:2B","10.100.39.83,10.255.3.168","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6Z","","'+02:00","2026-03-30T08:44:41.000+02:00","SANEF\DUTRIAU","Cloud Agent","1188feb3-e825-45dd-9cea-f728ef3bd97e","2025-04-25T10:27:22.000+02:00","2026-04-22T11:00:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"353299227","341953317","srlogbels1.sanef-rec.fr","","20:67:7c:e6:8d:70","10.45.15.166","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31368","HPE U41 07/14/2022","CZJ84600RS","","'+02:00","2026-02-02T17:49:49.000+02:00","cybintsys","Cloud Agent","ed621be3-cd42-4c0f-951f-29c2db90c7d6","2025-08-21T12:18:21.000+02:00","2026-04-22T11:00:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN","66.0" +"296277825","317660427","REX21548.sanef-int.adds","REX21548","D0:AD:08:A3:E6:DB","10.100.91.81","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQ8","","'+02:00","2026-03-24T12:58:47.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","d2464cc3-7733-4048-80ca-69eb3d62c2cd","2025-01-30T17:58:06.000+02:00","2026-04-22T11:00:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"370705148","349069563","PCB16326.sanef.groupe","PCB16326","58:6C:25:2B:1B:05","10.205.0.111,192.168.1.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.04.02","5CG13363T5","","'+02:00","2026-03-30T09:01:02.000+02:00","SANEF\lebourhis","Cloud Agent","e4431fb3-c976-4bae-8ca1-ac73b202c5b7","2025-10-22T13:38:55.000+02:00","2026-04-22T11:00:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"379860536","353007563","DAI22945.sanef-int.adds","DAI22945","28:C5:C8:41:A2:87","10.155.70.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC4271YWB","","'+02:00","2026-03-13T13:45:37.000+02:00","DAIUSER","Cloud Agent","c40eb43e-45ef-4364-807b-2bc92c4514ad","2025-11-27T18:29:38.000+02:00","2026-04-22T11:00:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"356604589","343405611","PCB22733.sanef.groupe","PCB22733","E4:60:17:C5:08:5F","10.220.31.61,10.255.2.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GW","","'+02:00","2026-04-01T08:56:10.000+02:00","doriane.petit@sapn.fr","Cloud Agent","b7010b1e-5201-4e59-ad83-44f881cb65ae","2025-09-03T13:47:15.000+02:00","2026-04-22T11:00:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"323163331","329802410","PCB20836.sanef.groupe","PCB20836","C8:6E:08:49:2D:BB","10.255.2.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H48","","'+02:00","2026-04-16T09:15:58.000+02:00","SANEF\demol","Cloud Agent","f7a6ae45-5ace-41e5-8a00-7d0b5be29867","2025-05-09T11:04:10.000+02:00","2026-04-22T11:00:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"322021427","329320571","PCB22839.sanef.groupe","PCB22839","D0:AD:08:A3:7B:CF","10.89.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW2","8CC3502YW2","'+02:00","2026-04-09T10:58:39.000+02:00","SANEF\chodorge","Cloud Agent","9e59b1a4-7377-406e-92d1-5c66813db021","2025-05-05T11:42:31.000+02:00","2026-04-22T11:04:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"340717645","336792510","PCB21097.sanef.groupe","PCB21097","E4:60:17:CA:30:14","10.255.2.183,192.168.1.67","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M0","","'+02:00","2026-04-16T08:25:02.000+02:00","SANEF\BADRI-ext","Cloud Agent","d7cea546-aa30-44b8-9ec5-249a7df9c698","2025-07-10T10:46:39.000+02:00","2026-04-22T11:00:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","240.0" +"223167444","255071206","ls-ormes","LS-ORMES","00:50:56:90:13:DA","10.22.3.20","fe80::95dc:5e9a:35ef:4cec","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a1 07 21 54 ce 85-b1 17 76 02 a8 b2 b0 04","NoAssetTag","'+02:00","2026-02-19T16:25:54.000+02:00","svpadmin","Cloud Agent","d47d34be-aa0e-4ead-9eeb-785a82124719","2024-03-18T16:13:24.000+02:00","2026-04-22T10:59:54.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,SVP,Haute,Production,Péage,High","635.0" +"167744583","224051603","vppciaquo1.sanef.groupe","","00:50:56:82:b0:c3","10.100.16.7","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 0a db 33 18 00 31-85 ee aa f6 39 56 64 14","No Asset Tag","'+02:00","2026-01-29T16:14:16.000+02:00","cybreconcile","Cloud Agent","03dd0271-a066-49a4-b810-02d4a3549e2a","2023-04-24T15:01:14.000+02:00","2026-04-22T10:59:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,3PAR","142.0" +"318424837","328042212","vrameakfk1.sanef-rec.fr","","00:50:56:9c:c4:6a","10.45.2.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d4 f5 49 4e da 8d-98 48 7e af d0 57 37 53","No Asset Tag","'+02:00","2026-04-20T09:29:43.000+02:00","cybsupapp","Cloud Agent","0fc3c02f-b771-4d49-8ef4-7a25ef38c735","2025-04-22T14:33:15.000+02:00","2026-04-22T10:59:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Amelie,Recette,OS-LIN-SRV DYN","48.0" +"343140417","337789917","PCB20717.sanef.groupe","PCB20717","58:1C:F8:EA:66:40","10.255.1.215,10.255.1.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CS4","","'+02:00","2026-04-03T09:21:47.000+02:00","SANEF\BAILLOT","Cloud Agent","f32d46e9-9a0c-4f7f-8e49-a8ab2131755b","2025-07-18T14:16:26.000+02:00","2026-04-22T11:35:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"270805290","300127172","SVP21067.sanef-int.adds","SVP21067","D0:AD:08:A3:7B:32","10.22.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX7","","'+02:00","2026-04-21T14:15:07.000+02:00","Superviseur","Cloud Agent","65f03322-08e4-486b-80cc-75aac36409a3","2024-10-08T12:19:25.000+02:00","2026-04-22T10:58:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"271067968","300276606","SVP21039.sanef-int.adds","SVP21039","D0:AD:08:A3:7C:C2","10.182.6.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYD","","'+02:00","2026-04-18T10:18:30.000+02:00","Superviseur","Cloud Agent","1ddc47ac-c067-40ec-ac0f-2f60635a098c","2024-10-09T16:11:26.000+02:00","2026-04-22T11:28:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"227715620","257227449","ls-st-witz","LS-ST-WITZ","00:50:56:90:86:64","10.41.2.23","fe80::4600:7820:c9b7:5f78","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a6 e9 15 14 d9 f0-88 03 2f b6 c6 db e5 57","NoAssetTag","'+02:00","2026-03-04T10:46:52.000+02:00","svpadmin","Cloud Agent","53a48627-2957-433d-a32c-8c64097ebf14","2024-04-05T11:05:45.000+02:00","2026-04-22T10:58:31.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,VRF_PEAGE_DC,Production,Péage,High,DEX","508.0" +"353723925","342061133","PCB20698.sanef.groupe","PCB20698","BC:0F:F3:3D:58:B4","10.101.243.169","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224CT2","","'+02:00","2026-04-20T14:21:17.000+02:00","SANEF\proly","Cloud Agent","dea67318-f1bb-4cb4-ae92-8478c123fd20","2025-08-22T11:24:23.000+02:00","2026-04-22T11:49:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"377386658","352033413","PCV21074.sanef-int.adds","PCV21074","D0:AD:08:A3:7C:C9","10.106.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YY4","","'+02:00","2025-12-09T17:05:06.000+02:00","Operateur","Cloud Agent","42beac30-7f80-4c91-9d33-0c815bc2fa84","2025-11-18T11:16:18.000+02:00","2026-04-22T10:58:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"340053174","336780155","vppwdapod2.sanef.groupe","","00:50:56:94:ad:ab","10.44.1.201","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 4a 37 e9 9b ea 21-a3 99 f3 77 a9 17 30 1e","No Asset Tag","'+02:00","2026-01-07T11:18:29.000+02:00","cybreconcile","Cloud Agent","b251eede-5a9f-4dca-91b2-ca4b548ab442","2025-07-08T10:16:06.000+02:00","2026-04-22T10:58:03.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD,Production","330.0" +"193979918","241187013","vpburaaov1.sanef.groupe","VPBURAAOV1","00:50:56:9C:F8:67, 00:50:56:9C:29:C6","192.168.212.34,10.205.0.2","fe80::5834:ed7b:9857:836f,fe80::6cab:ada:fca1:a136","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 1c ad 2c bc b1 54 5f-f4 77 34 de 1a 89 cf 09","NoAssetTag","'+02:00","2026-03-19T11:55:38.000+02:00","SANEF.GROUPE\atrad@sanef.com","Cloud Agent","38d0f6d8-38ff-488f-91c6-e3670f7b747c","2023-10-18T09:07:27.000+02:00","2026-04-22T10:57:55.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,VPN,Compte & Acces,Cloud Agent,Windows Server,High,TAG-SRVEXPOSEINTERNET,Production,Haute","130.0" +"323178109","329810569","PCB23736.sanef.groupe","PCB23736","6C:0B:5E:EE:83:7A","10.205.0.205,10.5.31.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4Y","","'+02:00","2026-03-31T15:19:16.000+02:00","SANEF\WAMBEKE","Cloud Agent","87c684a7-415e-43eb-8986-5c2302b9c4ef","2025-05-09T12:49:05.000+02:00","2026-04-22T11:38:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","145.0" +"303906796","322171226","vrdepaapp1.sanef-rec.fr","","00:50:56:9c:66:a4","10.45.13.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 5f 6d 29 e6 4f 92-1f a9 bb b3 58 54 7b 1f","No Asset Tag","'+02:00","2026-01-15T16:42:52.000+02:00","cybsupapp","Cloud Agent","4c109497-abf2-404a-9f8b-924ba90a89fc","2025-02-27T19:22:22.000+02:00","2026-04-22T10:57:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion dépanneurs,Linux Server,Cloud Agent,Recette,MID-NGINX DYN,OS-LIN-SRV DYN","142.0" +"128588879","191407358","ls-boulogne","LS-BOULOGNE","00:50:56:90:D3:E5","10.41.2.103","fe80::1a3e:c2c6:5d8b:e4dd","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 2d bd 1e 2f 1d 44-4b 23 16 91 2b 98 98 ea","NoAssetTag","'+02:00","2026-03-23T16:17:29.000+02:00","svpadmin","Cloud Agent","85c9118f-a3f2-4338-9538-8efd30add52c","2022-06-21T10:53:37.000+02:00","2026-04-22T10:57:50.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Haute,SVP,Windows Server,High,Production,Péage,Cloud Agent,DEX,VRF_PEAGE_DC","633.0" +"364994659","346736918","PCV21586.sanef-int.adds","PCV21586","D0:AD:08:A3:7B:4F","10.117.3.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YRS","","'+02:00","2026-04-07T20:36:01.000+02:00","Operateur","Cloud Agent","77afe91e-2ef5-453c-b28a-d58635881c34","2025-10-02T16:26:46.000+02:00","2026-04-22T10:57:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"255916763","294877285","vpcybacpm1.sanef.groupe","VPCYBACPM1","00:50:56:90:22:67","10.44.1.164","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 97 60 4f 2b af dd-7e 17 42 79 19 a3 d8 61","NoAssetTag","'+02:00","2026-03-23T16:07:31.000+02:00","admcybs05604","Cloud Agent","3619ec40-b3a9-4d51-81df-07204324e1fc","2024-08-05T15:24:15.000+02:00","2026-04-22T10:57:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,CyberArk","65.0" +"318364496","328015777","PCB22929.sanef.groupe","PCB22929","D0:AD:08:A7:28:26","10.105.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJX","8CC3502YJX","'+02:00","2026-04-21T09:40:04.000+02:00","SANEF\batko","Cloud Agent","81e9e879-b136-4bee-b1a4-840e84fb3157","2025-04-22T09:44:09.000+02:00","2026-04-22T10:57:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"395535068","359520750","vrsigaags1.sanef-rec.fr","","00:50:56:9c:fb:29","10.45.2.34","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","96044","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 35 eb b0 06 e8 f7-3c 0b b7 24 dc 5e 8d 60","No Asset Tag","'+02:00","2026-02-25T13:38:54.000+02:00","cybsupapp","Cloud Agent","6e83ddb8-2fde-4e1e-979a-38b727b186e6","2026-01-28T11:51:07.000+02:00","2026-04-22T10:57:28.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,MID-APACHE-TOMCAT DYN,Recette,Cloud Agent,OS-LIN-SRV DYN,Linux Server","215.0" +"409462641","364910388","vplogbels1","","00:50:56:94:27:14","10.44.7.39","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 72 af 1d 51 93 ac-40 c3 18 44 d2 07 46 77","No Asset Tag","'+02:00","2026-04-07T11:55:21.000+02:00","cybsecope","Cloud Agent","0ac27646-c8f6-4b55-bb66-f82ddbab5b1a","2026-03-18T12:16:49.000+02:00","2026-04-22T10:57:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"417984887","368437277","PCB23660.sanef.groupe","PCB23660","6C:0B:5E:EE:BC:40","10.101.243.94","fe80::f6ed:7250:b1fa:f13b","Windows / Client","Microsoft Windows 11 Enterprise (Insider Preview Build 26200)","11","Computers / Unidentified","Computers","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L3Z","","'+02:00","2026-04-22T09:47:29.000+02:00","","Cloud Agent","f96fab3e-bbcc-4b99-951a-60b387b4eafa","2026-04-22T09:52:05.000+02:00","2026-04-22T10:57:22.000+02:00","64 bits","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"354586794","342450032","PCB18087.sanef.groupe","PCB18087","64:D6:9A:1D:39:72","192.168.1.116","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HTR","","'+02:00","2026-04-15T14:10:50.000+02:00","SANEF\SIMON","Cloud Agent","85b45694-a6b4-49ba-8aca-ed6d52ded037","2025-08-26T10:55:25.000+02:00","2026-04-22T10:57:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"238501960","269491573","ls-st-gibrien","LS-ST-GIBRIEN","00:50:56:90:29:EE","10.41.2.70","fe80::50f2:f3da:1356:b34e","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 fb 04 48 e4 12 1d-48 d4 87 8f 14 22 6c a0","NoAssetTag","'+02:00","2026-03-03T16:33:59.000+02:00","svpadmin","Cloud Agent","df0c6f79-82ce-403f-94a5-0764df04e3fc","2024-05-22T12:25:15.000+02:00","2026-04-22T10:57:07.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Péage,OS-WIN-SRV DYN,Cloud Agent,Windows Server","508.0" +"175948080","229616156","vvbotreco1.sanef-rec.fr","","e6:ea:cc:9f:a8:6b, 00:50:56:9c:51:3a, 12:69:54:7c:50:22, 66:f1:af:ae:1a:cf, c6:ae:dc:5f:1c:de, 36:39:49:ce:59:27","10.45.6.135,10.89.0.1","fe80::e4ea:ccff:fe9f:a86b,fe80::250:56ff:fe9c:513a,fe80::1069:54ff:fe7c:5022,fe80::64f1:afff:feae:1acf,fe80::c4ae:dcff:fe5f:1cde,fe80::3439:49ff:fece:5927","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 2b c6 b8 67 f4 1c-fd bc ed 09 20 f9 90 7f","No Asset Tag","'+02:00","2026-03-12T17:22:15.000+02:00","kapschsysuser","Cloud Agent","38c2e411-c71f-45ae-acae-5daa52a15ffd","2023-06-26T16:19:30.000+02:00","2026-04-22T10:57:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,Recette,FreeFlow,flux_libre","142.0" +"379117183","352758771","PSX18691.sanef-int.adds","PSX18691","30:13:8B:6C:79:F6","10.100.40.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WR","","'+02:00","2025-12-01T13:01:08.000+02:00","UserSextan","Cloud Agent","a607270a-d084-44ad-be08-7c83fc9fe185","2025-11-25T12:22:41.000+02:00","2026-04-22T10:57:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"324640354","330317950","PCB23725.sanef.groupe","PCB23725","C8:6E:08:48:DD:11","10.205.0.107,10.255.3.250","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2F","","'+02:00","2026-03-30T09:31:43.000+02:00","SANEF\rochette","Cloud Agent","1d75d04f-8a32-41e4-bbe4-ce78d3cf28d0","2025-05-14T09:54:46.000+02:00","2026-04-22T10:56:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"321551581","329072946","PCB22823.sanef.groupe","PCB22823","D0:AD:08:A3:E6:9E","10.8.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQL","8CC3502YQL","'+02:00","2026-03-29T05:04:34.000+02:00","SANEF\negele","Cloud Agent","d596068b-10c9-45a3-b7b3-d0517d5cd190","2025-05-02T10:20:01.000+02:00","2026-04-22T10:56:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"415580155","367518622","SVP21613.sanef-int.adds","SVP21613","D0:AD:08:A4:4E:49","10.252.2.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711KF","","'+02:00","2026-01-26T15:47:44.000+02:00","Admin","Cloud Agent","c03e829e-743a-4442-9ad6-fa297c6ceb8a","2026-04-13T22:03:04.000+02:00","2026-04-22T10:56:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"356270805","343238244","PCB21108.sanef.groupe","PCB21108","E4:60:17:CB:E7:10","192.168.8.235","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764F5","","'+02:00","2026-04-15T12:26:14.000+02:00","SANEF\CISSE-ext","Cloud Agent","8dae42fd-d993-4d05-a952-27f22831d254","2025-09-02T10:30:28.000+02:00","2026-04-22T11:41:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"383961082","354727417","PCB21524.sanef.groupe","PCB21524","D0:AD:08:A3:7B:2C","10.139.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.18.10","8CC3502YXH","","'+02:00","2026-04-19T17:32:27.000+02:00","SANEF\brun","Cloud Agent","72fc6d72-b968-4983-9dd7-c78aec277e5d","2025-12-15T12:18:10.000+02:00","2026-04-22T10:56:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"188895648","238252322","lpgesanas1.sanef.groupe","LPGESANAS1","02:D0:2F:70:24:7B, EE:50:33:80:00:08, EE:50:33:80:00:05","169.254.1.16,10.43.1.66,10.46.30.5,10.46.30.11,10.46.30.12,10.46.30.13,10.46.30.14,10.46.30.15","fe80::2329:7faf:51fe:5024,fe80::7db:2c41:b88d:ca78,fe80::7514:f7d8:cced:343","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Computers / Server","HPE Synergy 480 G10 Server","32","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","65223","HPE I44","VCGCIOJ000","","'+02:00","2026-01-26T11:08:52.000+02:00","Administrateur","Cloud Agent","da761171-24d2-41ba-b23f-fb94e65ba56c","2023-09-20T11:03:28.000+02:00","2026-04-22T10:56:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DFS","348.0" +"229361884","257999675","vpsupacen1.sanef.groupe","","00:50:56:8d:f7:2f","10.44.5.99","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 07 75 63 a4 b8 eb-7b da 58 0b 66 9a fe fc","No Asset Tag","'+02:00","2026-03-30T10:14:48.000+02:00","cybreconcile","Cloud Agent","7dd688ec-3925-434e-99cc-5fb2cb56ea12","2024-04-11T15:33:08.000+02:00","2026-04-22T10:56:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,MID-NGINX DYN,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","147.0" +"324333089","330196639","PCB18634.sanef.groupe","PCB18634","64:D6:9A:74:73:EF","10.205.0.99,192.168.1.69","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WD0","","'+02:00","2026-04-03T11:52:54.000+02:00","SANEF\CONTREIRAS","Cloud Agent","6b63bb09-6cbf-4ff1-9b0e-b8a4a0bbe3c1","2025-05-13T09:41:49.000+02:00","2026-04-22T11:36:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"214502631","251415990","vipeaabst2.sanef.groupe","","00:50:56:90:d6:99","10.41.29.54","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31887","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 dd 4a 01 cf c9 73-00 f2 23 5c 48 14 bc 74","No Asset Tag","'+02:00","2026-03-19T11:07:03.000+02:00","cybintsys","Cloud Agent","16ba225b-3ebd-4d20-94b3-681bca23e83d","2024-02-08T14:29:40.000+02:00","2026-04-22T10:55:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,flux_libre,OS-LIN-SRV DYN,MID-NGINX DYN,ServersInCyberark,Production,FreeFlow,Cloud Agent,Linux Server,DSI,BOOST","138.0" +"382503949","354000669","PCB22291.sanef.groupe","PCB22291","D0:AD:08:A3:7C:BB","10.252.42.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYL","8CC3502YYL","'+02:00","2026-03-29T09:12:01.000+02:00","SANEF\chevreau","Cloud Agent","a644fb3e-37b1-49cf-9bd5-aa8a0702e502","2025-12-08T15:12:54.000+02:00","2026-04-22T10:55:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"139158036","198270705","vmampsxt3","","00:50:56:82:48:7B, 00:50:56:82:2F:B3, 00:50:56:82:60:FD","10.43.4.32,10.43.40.32,10.41.40.32","fe80::250:56ff:fe82:487b,fe80::250:56ff:fe82:2fb3,fe80::250:56ff:fe82:60fd","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 8f 04 7b 29 62 51-77 87 c2 cf 93 91 e2 58","No Asset Tag","'+02:00","2025-12-11T15:55:16.000+02:00","cybreconcile","Cloud Agent","3f1d4ed6-923d-4649-a944-e6c72d8fc086","2022-09-07T14:35:22.000+02:00","2026-04-22T10:55:35.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,log4j,DEX,OS-LIN-SRV DYN,Sextan,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,Production,Trafic,Linux Server,Cloud Agent","699.0" +"205781540","247056237","vpbocaprx1.sanef.groupe","","00:50:56:90:74:89","192.168.21.195","fe80::250:56ff:fe90:7489","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f7 cb 90 98 b5 11-3f d7 f2 04 60 73 60 0e","No Asset Tag","'+02:00","2026-04-01T22:02:40.000+02:00","root","Cloud Agent","21d995fb-3719-4d8d-aa67-d163aafa15f8","2023-12-22T18:22:14.000+02:00","2026-04-22T10:55:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,flux_libre,FreeFlow,Flux Libre,Production","66.0" +"303886597","322164389","vrdepbels1.sanef-rec.fr","","00:50:56:9c:9d:7a","10.45.13.69","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 95 98 f1 c2 2e db-e4 64 6d f5 d1 af d9 fe","No Asset Tag","'+02:00","2026-01-15T16:11:41.000+02:00","cybsupapp","Cloud Agent","34249e96-671f-43b7-935d-f5a5d28b93ca","2025-02-27T17:39:09.000+02:00","2026-04-22T10:55:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion dépanneurs,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-ELA DYN,Recette","141.0" +"320507201","328732650","PCB23631.sanef.groupe","PCB23631","6C:0B:5E:ED:A2:32","10.152.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4X","","'+02:00","2026-04-21T10:25:55.000+02:00","SANEF\LELIEVRED","Cloud Agent","207d15d0-9737-465e-ae72-8e6147ffe292","2025-04-29T15:20:38.000+02:00","2026-04-22T11:39:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"323178938","329814436","PCB17649.sanef.groupe","PCB17649","D0:AD:08:E4:D1:4C","10.101.243.86","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVF","","'+02:00","2026-04-21T14:51:48.000+02:00","SANEF\DURANVILLE","Cloud Agent","49613b8a-3495-4617-a8ed-a0c64a5962cc","2025-05-09T13:21:00.000+02:00","2026-04-22T10:54:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"322598693","329584566","PCB23650.sanef.groupe","PCB23650","C8:6E:08:8A:45:17","10.205.0.49,192.168.1.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5G","","'+02:00","2026-04-16T15:11:21.000+02:00","SANEF\gillet","Cloud Agent","57e28164-f907-4962-8ca6-bca0bd878b3f","2025-05-07T12:45:00.000+02:00","2026-04-22T10:54:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"412395439","366137236","PCB20705.sanef.groupe","PCB20705","BC:0F:F3:3D:58:C0","10.101.243.63","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224CT5","","'+02:00","2026-04-09T11:41:55.000+02:00","SANEF\mesdon-ext","Cloud Agent","33695284-96ce-493b-9018-cd4de5a2cd14","2026-03-30T13:59:40.000+02:00","2026-04-22T10:54:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"374402796","350604076","PCB18077.sanef.groupe","PCB18077","38:CA:84:52:09:18","10.205.0.180,10.200.31.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG2376HRP","","'+02:00","2026-04-04T09:13:12.000+02:00","SANEF\BENAYACHE","Cloud Agent","546e1919-5447-470a-b007-60d9d766406d","2025-11-05T13:19:36.000+02:00","2026-04-22T12:03:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"370464427","348915117","PCB21110.sanef.groupe","PCB21110","E4:60:17:C4:EC:CB","10.205.0.198,192.168.1.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H3","","'+02:00","2026-04-15T10:48:41.000+02:00","SANEF\RAFFEI-ext","Cloud Agent","ee9f8e76-7ef9-4a49-bfde-c191f7214ba2","2025-10-21T17:16:41.000+02:00","2026-04-22T10:54:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"225965686","256326011","vrsvpasan2","VRSVPASAN2","00:50:56:9C:65:22","10.45.9.169","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c ae 93 39 e2 a2 7d-25 dd bf e1 9d c7 f0 71","NoAssetTag","'+02:00","2026-02-17T15:10:14.000+02:00","svpadmin","Cloud Agent","0f6de576-7932-44c0-9b4e-07a10629c3cb","2024-03-28T12:15:29.000+02:00","2026-04-22T10:53:58.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Recette,Péage,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX","513.0" +"354679518","342495237","vpechaetl1.sanef.groupe","","00:50:56:90:13:ae","10.42.16.141","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 61 ad e4 e1 c4 e6-50 86 97 42 1a 06 6a c4","No Asset Tag","'+02:00","2026-03-27T16:31:11.000+02:00","cybexpapp","Cloud Agent","593594e4-9804-4fe4-802a-adfb88685958","2025-08-26T17:08:59.000+02:00","2026-04-22T10:53:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","144.0" +"349167459","339865423","PCB22723.sanef.groupe","PCB22723","D0:AD:08:AA:4F:D8","10.220.31.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DK","","'+02:00","2026-04-21T08:46:40.000+02:00","salima.berkani@sapn.fr","Cloud Agent","2cf862a6-7bc3-4332-a4b4-16b7c772dc1f","2025-08-05T10:59:29.000+02:00","2026-04-22T10:54:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"173355077","227828424","vvboomocr1.sanef-rec.fr","","00:50:56:9c:34:ff","10.45.6.72","fe80::250:56ff:fe9c:34ff","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a1 4b 9f 48 e9 62-7c b2 8e c5 d8 29 5e 86","No Asset Tag","'+02:00","2026-03-12T11:22:06.000+02:00","cybsupsys","Cloud Agent","760759b1-6518-417e-ab86-e7506e32e626","2023-06-07T10:48:55.000+02:00","2026-04-22T10:53:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Cloud Agent,Linux Server,Flux Libre,FreeFlow","335.0" +"370758189","349072009","PCB21293.sanef.groupe","PCB21293","30:F6:EF:A3:92:CE","10.255.3.130","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKR","","'+02:00","2026-04-14T07:47:58.000+02:00","SANEF\chanat","Cloud Agent","2636ca73-4706-4d06-96d7-c6a5f3b7110f","2025-10-22T13:48:19.000+02:00","2026-04-22T10:53:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"344378834","338329338","PCB18033.sanef.groupe","PCB18033","38:CA:84:52:F8:99","10.101.243.222","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HS7","","'+02:00","2026-04-02T10:34:33.000+02:00","SANEF\DOLIQUE","Cloud Agent","8a1a8c6d-890c-4569-b3cc-9d3403883358","2025-07-23T12:22:20.000+02:00","2026-04-22T10:53:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"212726115","250631962","PCB18008.sanef.groupe","PCB18008","C0:18:03:85:61:7B","10.200.40.24","fe80::9a49:41a:ba46:2d03","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.13.00","8CC206174W","","'+02:00","2026-03-17T02:19:56.000+02:00","SANEF\PCI-SAPN","Cloud Agent","b9919e34-fd72-4ee2-89b7-f49494cde694","2024-01-30T14:33:09.000+02:00","2026-04-22T10:53:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"298442394","319181985","vpameapmv2.sanef.groupe","","00:50:56:8f:67:12, 00:50:56:8f:c6:bd","10.44.201.4,10.44.201.5,172.16.255.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","11729","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 0f c5 37 86 2e 75 2d-f8 cf 44 ad a0 21 cc 8d","No Asset Tag","'+02:00","2026-03-18T14:16:03.000+02:00","cybreconcile","Cloud Agent","f8fe228c-2645-47c2-a24b-e13d254312ad","2025-02-07T10:24:08.000+02:00","2026-04-22T10:53:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,TAG-MIVISUPMV,TAG-SIC","140.0" +"227211624","256872749","ls-vallee-somme","LS-VALLEE-SOMME","00:50:56:90:22:55","10.41.2.30","fe80::3d6a:4dd7:caa4:c5a3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 0d 94 96 0b 53 58-98 a2 9e 3c 8f 1b 64 40","NoAssetTag","'+02:00","2026-03-04T12:34:32.000+02:00","svpadmin","Cloud Agent","33260931-f680-4f64-a147-8f0a732a4b89","2024-04-03T11:27:35.000+02:00","2026-04-22T10:53:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,High,Production,Péage","508.0" +"350018634","340230698","PCB25807.sanef.groupe","PCB25807","28:95:29:1E:73:00","10.101.243.214,192.168.1.129","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSH","","'+02:00","2026-04-14T11:08:11.000+02:00","SANEF\ROQUEJOFFRE","Cloud Agent","33e6720f-18d7-4bee-b3ae-8907f73882b6","2025-08-08T12:14:35.000+02:00","2026-04-22T10:53:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","52.0" +"408858542","364702778","PCB21122.sanef.groupe","PCB21122","E4:60:17:CB:E6:57","10.101.243.43,192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764G5","","'+02:00","2026-04-09T14:56:34.000+02:00","SANEF\MOUSSAO-ext","Cloud Agent","6f3dde22-38f1-4c5e-8fb2-e307f13d1a97","2026-03-16T18:53:35.000+02:00","2026-04-22T10:52:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"377749981","352186177","vrdsiahax2.sanef-rec.fr","","00:50:56:9c:e2:54","192.168.19.197","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c9 8b 2e f0 a5 15-25 c9 53 68 f9 ba b8 7d","No Asset Tag","'+02:00","2026-02-04T19:26:12.000+02:00","root","Cloud Agent","5c007b24-47c5-4afe-ab4d-683b7016bb91","2025-11-19T15:05:28.000+02:00","2026-04-22T10:52:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,DMZ,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","329.0" +"366892020","347534122","vrpatbsip1.sanef.groupe","","00:50:56:9c:59:c3","10.43.255.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6d 29 5c a0 81 a1-77 aa 6c 2e dd 19 c7 8f","No Asset Tag","'+02:00","2026-04-07T14:24:42.000+02:00","cybsupapp","Cloud Agent","3c25e3ab-a99d-4d69-8049-c2f141f32163","2025-10-09T12:26:18.000+02:00","2026-04-22T10:52:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","60.0" +"186261448","236709465","ls-spare-etv","LS-SPARE-ETV","00:50:56:82:65:D8","10.152.2.252","fe80::5371:34a3:f025:e494","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 5d 6e be 15 5c ad-59 b3 ec c8 f6 52 a8 56","NoAssetTag","'+02:00","2026-02-16T11:21:46.000+02:00","gare","Cloud Agent","70a900ad-1676-434d-80ed-4cdfb3b7e542","2023-09-05T17:39:58.000+02:00","2026-04-22T10:52:42.000+02:00","64-Bit","4","SCA,VM,GAV","DEX,SVP,Péage,Cloud Agent,OS-WIN-SRV DYN","683.0" +"345639528","338892309","PCB24139.sanef.groupe","PCB24139","F8:ED:FC:AB:02:59","10.101.243.61","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTY","","'+02:00","2026-04-20T09:43:56.000+02:00","SANEF\LEVYSANDERS","Cloud Agent","c905ff7c-b029-4f51-9679-b3271dc61ff6","2025-07-28T12:42:31.000+02:00","2026-04-22T11:04:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"366152124","347225549","vpsicapol1.sanef.groupe","","00:50:56:8f:b1:82","10.44.200.132","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 0f fd b6 35 ab 48 ae-a8 6d c7 9e 39 2a 84 34","No Asset Tag","'+02:00","2026-03-18T14:15:58.000+02:00","cybreconcile","Cloud Agent","d79638ce-e667-4ec9-bfff-2a76a06d6dc1","2025-10-07T17:43:35.000+02:00","2026-04-22T10:52:37.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Centreon,TAG-SIA,Linux Server,Cloud Agent","285.0" +"334967788","334372216","PCB24090.sanef.groupe","PCB24090","08:B4:D2:2C:64:10","10.155.31.8,10.255.3.149","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437H","","'+02:00","2026-04-22T07:57:42.000+02:00","SANEF\SMIS","Cloud Agent","b4f23953-fabc-41bf-88a6-fd9df3304bb2","2025-06-20T12:05:25.000+02:00","2026-04-22T10:52:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"321970327","329310192","PCB21276.sanef.groupe","PCB21276","30:F6:EF:A3:EF:EE","10.4.31.55,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJF","","'+02:00","2026-04-21T08:04:26.000+02:00","SANEF\CAPITAINE","Cloud Agent","00d54ec1-50f1-4dcc-9748-bb3acbc35e2c","2025-05-05T09:31:43.000+02:00","2026-04-22T10:33:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","153.0" +"143625406","201026504","vpemvantp2.sanef.groupe","","00:50:56:82:32:aa","192.168.100.133","fe80::250:56ff:fe82:32aa","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 09/21/2015","VMware-42 02 33 c0 84 b1 d7 cf-d7 b9 40 d5 02 3f 34 cd","No Asset Tag","'+02:00","2024-09-11T10:18:20.000+02:00","root","Cloud Agent","34f7059e-9f6e-4ac9-99e0-c8efd0309db3","2022-10-11T17:43:44.000+02:00","2026-04-22T10:52:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,EMV,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Supervision/Admin,DEX,BDD-POS DYN","107.0" +"322389621","329448864","PCB23565.sanef.groupe","PCB23565","C8:6E:08:88:E9:7E","10.200.31.65,192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4K","","'+02:00","2026-03-30T10:15:58.000+02:00","SANEF\COIMBRA","Cloud Agent","87fd4865-8227-48e2-b090-b9391a98f567","2025-05-06T14:01:25.000+02:00","2026-04-22T11:54:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"137331600","197583171","vpairahtp1.sanef.groupe","","00:50:56:82:e0:c4","10.42.40.136","fe80::250:56ff:fe82:e0c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 72 4e 68 04 83 7e-58 b6 7b d5 ca 9f 17 59","No Asset Tag","'+02:00","2026-01-20T16:45:09.000+02:00","cybreconcile","Cloud Agent","56fa8823-0386-4790-8b91-3d896b270b3a","2022-08-30T15:47:32.000+02:00","2026-04-22T10:51:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_AIRES_DC,Production,VISIONAIRE,DSG,Cloud Agent,Linux Server,OS-LIN-SRV DYN","208.0" +"320968472","328889238","PCB24031.sanef.groupe","PCB24031","6C:0B:5E:F8:D8:76","10.2.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF6","","'+02:00","2026-03-31T07:18:41.000+02:00","SANEF\claudel","Cloud Agent","ecb64354-3fed-47f9-843c-dff11ff9e57b","2025-04-30T13:15:44.000+02:00","2026-04-22T10:51:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"238724130","269608771","vpbotarep1.sanef.groupe","","00:50:56:90:8d:5d","10.41.23.28","fe80::250:56ff:fe90:8d5d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c1 91 ba 08 ed 99-f7 2c 35 90 ca 0c 84 06","No Asset Tag","'+02:00","2026-04-21T09:42:10.000+02:00","cybreconcile","Cloud Agent","c6093b94-cfd4-4f0e-a877-2643ba5a1570","2024-05-23T09:07:48.000+02:00","2026-04-22T11:49:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","141.0" +"378283970","352415582","PCV20962.sanef-int.adds","PCV20962","BC:0F:F3:87:6F:8E","10.210.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LL9","","'+02:00","2026-04-16T16:08:02.000+02:00","Operateur","Cloud Agent","6f0c159b-6ba8-4afd-a1f7-6ad735d47004","2025-11-21T12:35:34.000+02:00","2026-04-22T10:51:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"406548815","363699006","vrboeacst1.recette.adds","VRBOEACST1","00:50:56:9C:62:EF","10.45.6.195","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 95 51 0e 28 95 5e-d2 58 ce c0 40 6e 91 47","NoAssetTag","'+02:00","2026-03-06T18:06:38.000+02:00","Administrateur","Cloud Agent","a5432457-2af3-44ad-8954-917c43b8f073","2026-03-06T16:09:28.000+02:00","2026-04-22T10:51:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Recette,Péage,OS-WIN-SRV DYN,Cloud Agent","252.0" +"412683112","366360381","PCB25824.sanef.groupe","PCB25824","F8:ED:FC:AB:02:3D","10.101.243.122","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT9","","'+02:00","2026-04-07T17:54:56.000+02:00","SANEF\GINISTYTANI","Cloud Agent","9c804060-bc9f-460a-ba38-e1a7c0bc3e1b","2026-03-31T16:22:58.000+02:00","2026-04-22T11:54:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"354676610","342490002","vpdsiarad2.sanef.groupe","","00:50:56:94:21:0f","10.44.5.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 ef 2e e0 26 26 f3-ff 9b df c2 a7 54 5d 8a","No Asset Tag","'+02:00","2026-03-24T11:02:46.000+02:00","cybsupsys","Cloud Agent","92dcb81c-7828-431a-bb3d-fa959e0012eb","2025-08-26T16:07:05.000+02:00","2026-04-22T10:50:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Radius,Production,OS-LIN-SRV DYN","152.0" +"129356148","191961893","vphrqanvr1","VPHRQANVR1","00:50:56:82:D2:7A","10.137.3.11","fe80::3574:8853:34d7:ed8f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 19 d3 fe 08 c9 c4-f9 4c 7e 09 e0 02 f2 8f","NoAssetTag","'+02:00","2026-03-12T13:28:14.000+02:00","Administrateur","Cloud Agent","75ffaeef-6e1e-4705-815d-86d7f32ac31e","2022-06-27T18:03:20.000+02:00","2026-04-22T10:50:58.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,Exploitation,Production,Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_INCONNUE,NVR","508.0" +"193226489","240735961","vpbocs4ci1.sanef.groupe","","00:50:56:90:6e:15","10.41.22.5","fe80::250:56ff:fe90:6e15","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","92112","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 1e 89 b0 76 c1 7b-6a 8e 22 88 02 10 4d cb","No Asset Tag","'+02:00","2026-04-01T21:45:11.000+02:00","cybreconcile","Cloud Agent","3cdf60b5-1dc5-41a8-a2d3-c561cd8fa947","2023-10-13T13:29:39.000+02:00","2026-04-22T10:50:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server","332.0" +"211396220","250074202","vrpeaabst2.sanef-rec.fr","","00:50:56:9c:3e:65","10.45.10.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 8a 5d 9f 66 81 57-f5 aa 2c af 74 79 ad 91","No Asset Tag","'+02:00","2026-02-18T10:32:29.000+02:00","cybadmsys","Cloud Agent","ff752b7b-dfd0-4567-9c80-a7d1a8f826c5","2024-01-23T16:35:20.000+02:00","2026-04-22T11:59:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,DSI,MID-NGINX DYN,BOOST,Cloud Agent,Linux Server","141.0" +"148436350","204914682","vrexpbtex1","","00:50:56:82:09:ce","10.45.2.226","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","31889","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 ca d0 16 1b 0c 4e-87 84 fd 26 39 0c 54 49","No Asset Tag","'+02:00","2026-04-15T15:32:58.000+02:00","cybadmsys","Cloud Agent","8b1511b6-7b10-4895-96d6-efc9bafc4f15","2022-11-17T19:47:18.000+02:00","2026-04-22T10:50:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,Transports Exceptionnels","27.0" +"304663556","322548088","vpdsiacol1.sanef.groupe","","00:50:56:94:78:19","10.44.6.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3633","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 aa 0b 3c 84 76 53-22 9a bc 46 16 89 ec c8","No Asset Tag","'+02:00","2026-02-10T12:02:50.000+02:00","cybreconcile","Cloud Agent","3b9bb29c-fce6-4c73-9004-d11afc152a84","2025-03-03T17:41:39.000+02:00","2026-04-22T11:06:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Collecte,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"213124947","250790137","vpbckangw2","","00:50:56:90:38:e1","192.168.18.53","fe80::250:56ff:fe90:38e1","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e5 42 78 14 7e ac-70 23 d5 d7 f9 a5 1e ae","No Asset Tag","'+02:00","2026-02-03T16:26:24.000+02:00","tbaad-ext","Cloud Agent","fe53c135-a3e3-4b9e-8799-d5a69e262ece","2024-02-01T12:19:29.000+02:00","2026-04-22T10:50:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","53.0" +"395334739","359414322","PCB20609.sanef.groupe","PCB20609","58:1C:F8:E9:A6:FB","10.101.243.127,192.168.1.196","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3G","","'+02:00","2026-03-30T11:18:30.000+02:00","SANEF\VERGNAUD","Cloud Agent","0f329e0a-ce6e-456f-b694-88b5d741c3d0","2026-01-27T14:19:28.000+02:00","2026-04-22T10:46:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"335485295","334622705","PCB24179.sanef.groupe","PCB24179","24:FB:E3:F3:0A:AF","10.209.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XC","","'+02:00","2026-03-30T09:06:06.000+02:00","SANEF\tournatory","Cloud Agent","40772507-43e6-4745-b597-a03cb0134483","2025-06-23T12:19:35.000+02:00","2026-04-22T10:50:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"401234526","361776900","PCV18679.sanef-int.adds","PCV18679","30:13:8B:6C:79:B9","10.100.7.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473W4","","'+02:00","2026-02-17T18:10:13.000+02:00","Operateur","Cloud Agent","a2a0be15-127a-4adc-ab23-670338f574bd","2026-02-17T16:18:12.000+02:00","2026-04-22T10:50:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"269374554","299251942","vpa14agtc1","VPA14AGTC1","00:50:56:90:6A:E9","10.41.19.70","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 15 e1 c8 00 32 86-50 45 f2 f8 ae 27 73 9c","NoAssetTag","'+02:00","2026-03-31T12:27:57.000+02:00","admin_gtc","Cloud Agent","9a47fa77-6baf-416a-8ce5-56ef15658077","2024-10-01T15:38:08.000+02:00","2026-04-22T10:50:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,OS-WIN-SRV DYN","331.0" +"376422961","351518009","vpcybapsp2.sanef.groupe","","00:50:56:9c:ad:ff","10.44.1.75","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 88 13 5d fe e4 76-36 ee ef c2 c2 2c f3 fe","No Asset Tag","'+02:00","2026-03-25T09:37:27.000+02:00","cybreconcile","Cloud Agent","fc4dde3c-a938-418c-83c2-b9580dca77de","2025-11-13T17:22:02.000+02:00","2026-04-22T10:50:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,Production,CyberArk","152.0" +"399388387","361109979","vpemvgrid1.sanef.groupe","","00:50:56:98:14:19","192.168.100.134","fe80::250:56ff:fe98:1419","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12014","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 bb 96 25 25 31 2f-51 61 f2 c8 80 9b 2f f4","No Asset Tag","'+02:00","2026-02-23T13:42:54.000+02:00","oracle","Cloud Agent","b3ab440e-70fb-464c-a39e-732fe598b29c","2026-02-11T16:29:42.000+02:00","2026-04-22T10:49:53.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Supervision/Admin","675.0" +"228724304","257679746","vpbocarep1.sanef.groupe","","00:50:56:90:4d:3f","10.41.22.15","fe80::250:56ff:fe90:4d3f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 eb d4 a9 d7 76 f8-6e 5d 1f c0 70 0a ff 91","No Asset Tag","'+02:00","2026-04-01T15:24:47.000+02:00","root","Cloud Agent","963196f6-3330-423e-a96d-169fbf6bd5f9","2024-04-09T15:45:58.000+02:00","2026-04-22T10:49:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","141.0" +"372711388","349852385","PCB24347.sanef.groupe","PCB24347","00:72:EE:22:38:3C","10.255.3.194","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YGT","","'+02:00","2026-04-17T09:09:00.000+02:00","SANEF\TATINCLAUX","Cloud Agent","25c1afa9-17b2-4e44-8d14-3a3c96c32c1f","2025-10-29T15:44:14.000+02:00","2026-04-22T10:49:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"406509483","363684781","PCB24062.sanef.groupe","PCB24062","10:B6:76:93:FA:D1","10.5.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YJ7","","'+02:00","2026-04-17T13:07:28.000+02:00","SANEF\DELSUC","Cloud Agent","5e5e12e4-a6cd-43fd-9ece-76b05296451e","2026-03-06T13:38:03.000+02:00","2026-04-22T10:49:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"231599326","259376530","ls-vallee-nievre","LS-VALLEE-NIEVR","00:50:56:90:B3:B7","10.41.2.97","fe80::813e:a8f8:4d01:6b37","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 13 c3 af 21 35 30-e2 49 41 84 12 6a 7b 86","NoAssetTag","'+02:00","2026-03-04T12:18:38.000+02:00","svpadmin","Cloud Agent","e69cc6e2-effc-40f0-91df-486707c17d69","2024-04-22T16:28:06.000+02:00","2026-04-22T10:49:09.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_PEAGE_DC,High,SVP,Production,Péage,DEX,Cloud Agent,Windows Server","681.0" +"356654578","343428640","PCB21706.sanef.groupe","PCB21706","D0:AD:08:AA:50:37","10.220.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HM","","'+02:00","2026-04-01T07:36:16.000+02:00","anne-sophie.lemercier@sapn.fr","Cloud Agent","50ae1406-42fc-40a3-92f5-2615d5dbaa7f","2025-09-03T17:41:20.000+02:00","2026-04-22T10:49:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"347441583","339169259","PCB20735.sanef.groupe","PCB20735","BC:0F:F3:3D:58:AB","10.101.243.116","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224CSX","","'+02:00","2026-04-21T14:29:04.000+02:00","SANEF\DUQUIN","Cloud Agent","744305cb-b692-4a7d-81a2-745a5faa3386","2025-07-30T14:28:15.000+02:00","2026-04-22T10:49:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"370357368","348862836","PCB22712.sanef.groupe","PCB22712","D0:AD:08:AA:50:41","10.220.31.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764HY","","'+02:00","2026-04-14T08:56:57.000+02:00","walid.guerza@sapn.fr","Cloud Agent","96b5de3f-9b8a-45d1-9aac-09229fd7ec7b","2025-10-21T08:49:07.000+02:00","2026-04-22T11:30:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"355126754","342723643","PCB20734.sanef.groupe","PCB20734","58:1C:F8:E9:F6:97","10.205.0.88,192.168.0.159","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DQB","","'+02:00","2026-04-21T09:44:40.000+02:00","SANEF\LEMMET","Cloud Agent","8e9b3df0-0066-4537-bf42-2e141ff67676","2025-08-28T10:13:19.000+02:00","2026-04-22T11:25:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"129733729","192230947","PCB18431.sanef.groupe","PCB18431","84:69:93:E1:0A:25","10.200.31.31","fe80::22bc:ebc0:e08d:60d0","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.08.11","5CG21724KC","","'+02:00","2026-04-22T09:26:26.000+02:00","SANEF\martinkovic","Cloud Agent","a3ff98f7-3146-4e08-9fce-f4923d2abbdc","2022-06-30T09:13:04.000+02:00","2026-04-22T10:48:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"356636844","343426186","PCB24225.sanef.groupe","PCB24225","70:15:FB:7E:20:AC","10.205.0.127,192.168.1.88","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYY","","'+02:00","2026-04-14T07:41:49.000+02:00","SANEF\HAMZA-ext","Cloud Agent","422033b3-9e0a-448f-8de0-9ce13039afb9","2025-09-03T17:09:56.000+02:00","2026-04-22T10:48:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","331.0" +"324955368","330451240","PCB23751.sanef.groupe","PCB23751","6C:0B:5E:EE:93:54","10.5.31.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4X","","'+02:00","2026-03-30T17:16:48.000+02:00","SANEF\MICHELOT","Cloud Agent","a4efa506-b477-42c3-b4c7-2c3640996ab3","2025-05-15T11:17:01.000+02:00","2026-04-22T10:48:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"363277770","346047538","SVP22612.sanef-int.adds","SVP22612","D0:AD:08:A4:73:B5","10.1.1.18","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764D5","","'+02:00","2026-03-21T07:01:00.000+02:00","Superviseur","Cloud Agent","c80bf15d-77f8-4476-a876-f5d21342901a","2025-09-26T14:56:10.000+02:00","2026-04-22T10:48:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"411843487","365824440","vpgrnangx1.sanf.groupe","","00:50:56:90:c3:b8","10.41.20.86","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 a1 09 cb 55 e4 13-15 d3 2f 2f 4f 03 93 0f","No Asset Tag","'+02:00","2026-04-07T15:57:21.000+02:00","cybreconcile","Cloud Agent","5379e72b-39b4-49d6-9e9e-853d210ec86d","2026-03-27T12:18:22.000+02:00","2026-04-22T10:48:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,MID-NGINX DYN,BDD-POS DYN","65.0" +"263390489","297610057","vpexpbtex1","","00:50:56:90:c0:39","10.41.40.26","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 62 82 88 d0 ee 44-e9 67 ea 57 98 11 a4 d9","No Asset Tag","'+02:00","2026-01-27T12:14:47.000+02:00","cybadmsys","Cloud Agent","6af103f5-23a9-41b0-b8c6-8f835ca4a28d","2024-09-05T16:32:37.000+02:00","2026-04-22T10:48:01.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,Transports Exceptionnels,Production","140.0" +"304604398","322521242","vrpeabbst1","","00:50:56:9c:39:61","192.168.31.13","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 90 7c 63 5e 53 f5-1f 9c aa fc be ca 40 80","No Asset Tag","'+02:00","2026-02-18T18:42:45.000+02:00","cybastapp","Cloud Agent","0da30718-32bf-4ba7-9e42-831875d498e0","2025-03-03T12:50:05.000+02:00","2026-04-22T10:47:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,MID-NGINX DYN,Péage,Cloud Agent,Linux Server","142.0" +"273997305","302200542","vpbocjump1.sanef.groupe","VPBOCJUMP1","00:50:56:90:4E:C6","10.41.22.14","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 d5 9e 3a c2 55 4a-9f ef 42 ba 70 05 51 7f","NoAssetTag","'+02:00","2026-04-01T15:55:36.000+02:00","Administrateur","Cloud Agent","79efa878-79e9-4043-8c06-798f6d8de1b8","2024-10-23T15:55:14.000+02:00","2026-04-22T12:03:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","flux_libre,Cloud Agent,Production,Flux Libre,OS-WIN-SRV DYN","349.0" +"129310619","191930679","vpburaimp1.sanef.groupe","VPBURAIMP1","00:50:56:82:31:51","10.30.12.147","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 be 29 55 87 52 53-34 0f cb 94 95 28 5a 1e","NoAssetTag","'+02:00","2026-04-20T06:00:17.000+02:00","SANEF.GROUPE\PIGEON","Cloud Agent","d8b66d69-4009-4740-94b2-52c6c9e0d830","2022-06-27T11:20:41.000+02:00","2026-04-22T12:03:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,BDD-POS DYN,Production,VRF_INCONNUE,DSI,OS-WIN-SRV DYN,PaperCut,Cloud Agent,Windows Server","350.0" +"225426807","256065280","ls-meru","LS-MERU","00:50:56:90:20:16","10.41.2.89","fe80::cd7b:17c7:490a:9263","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 79 e5 50 c4 8c 7a-44 87 79 e1 a4 8e e2 e2","NoAssetTag","'+02:00","2026-03-02T10:17:44.000+02:00","svpadmin","Cloud Agent","98cfc7fd-743b-4651-9a8c-482ec37609ce","2024-03-26T10:41:35.000+02:00","2026-04-22T10:47:39.000+02:00","64-Bit","4","SCA,VM,PM,GAV","High,Péage,DEX,VRF_PEAGE_DC,OS-WIN-SRV DYN,SVP,Production,Cloud Agent,Windows Server","508.0" +"378066936","352311408","vrlogakib1.sanef-rec.fr","","00:50:56:9c:38:fd","10.45.15.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c af 39 c1 9f 41 cf-cc 46 d1 e9 26 d7 32 33","No Asset Tag","'+02:00","2026-04-01T11:10:02.000+02:00","cybintsys","Cloud Agent","327e1c61-7538-444e-a0f4-3c22fa18c725","2025-11-20T14:34:39.000+02:00","2026-04-22T10:47:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Elasticsearch,Recette,Linux Server,OS-LIN-SRV DYN,Cloud Agent","141.0" +"269850043","299451570","SVP21073.sanef-int.adds","SVP21073","D0:AD:08:A7:28:6C","10.5.20.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLC","","'+02:00","2026-04-12T09:44:53.000+02:00","Superviseur","Cloud Agent","cc5869a3-9629-4f5b-8038-5575acd97c17","2024-10-03T11:19:23.000+02:00","2026-04-22T10:47:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"238538628","269507760","SVP20953.sanef-int.adds","SVP20953","BC:0F:F3:87:6F:81","10.132.5.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLF","","'+02:00","2026-04-18T06:41:18.000+02:00","Superviseur","Cloud Agent","7100f7c1-31a8-437a-aeaf-3893bf186c99","2024-05-22T14:36:32.000+02:00","2026-04-22T10:47:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"387141599","356493099","vmdtrac10.recette.adds","VMDTRAC10","00:50:56:9C:C9:C1","10.45.17.12","fe80::a2a0:c1c0:1627:9e2","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c bf b3 a5 97 c4 3d-22 35 75 0d 3e f7 80 68","NoAssetTag","'+02:00","2026-04-16T01:06:11.000+02:00","supwindev","Cloud Agent","c533cc81-fe77-4524-9726-bafdab001d4f","2025-12-31T11:02:03.000+02:00","2026-04-22T10:47:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"225427710","256064630","ls-montreuil-bpv","LS-MONTREUIL-BP","00:50:56:90:EC:6E","10.22.1.20","fe80::caf3:d509:159d:c2e","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 63 d2 fa 00 79 42-14 36 dc d7 15 ad bd 4e","NoAssetTag","'+02:00","2026-03-02T11:25:49.000+02:00","svpadmin","Cloud Agent","cd64bc0e-6090-4468-b0cd-3d9e1a053e08","2024-03-26T10:34:19.000+02:00","2026-04-22T10:47:23.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Production,High,Péage,SVP","508.0" +"357880804","343909156","PCB18746.sanef.groupe","PCB18746","BC:0F:F3:3D:68:50","10.255.1.209,10.100.39.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSC","","'+02:00","2026-04-16T08:59:44.000+02:00","SANEF\DURIEUX","Cloud Agent","5acbb098-c2d5-4f1e-b220-b34d78905577","2025-09-08T15:02:02.000+02:00","2026-04-22T11:51:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"395321155","359405551","PCB21099.sanef.groupe","PCB21099","E4:60:17:CA:3F:CD","10.205.0.133,10.172.239.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L1","","'+02:00","2026-04-20T11:20:27.000+02:00","SANEF\glokpor-ext","Cloud Agent","cd918eba-de32-4621-8353-3f7d88721a3c","2026-01-27T12:44:52.000+02:00","2026-04-22T11:05:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"322014450","329321017","PCB22437.sanef.groupe","PCB22437","D0:AD:08:A7:27:C6","10.11.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKZ","8CC3502YKZ","'+02:00","2026-04-16T12:34:35.000+02:00","SANEF\negele","Cloud Agent","858e0385-c9df-464b-84a3-8d1374378e29","2025-05-05T11:49:36.000+02:00","2026-04-22T10:47:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"378055243","352306883","vpdsiahap3.sanef.groupe","","00:50:56:90:c5:fa","192.168.19.144","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 97 fc c2 b8 0c 7e-f6 b5 af 0c 61 d8 ad 2b","No Asset Tag","'+02:00","2025-11-20T13:34:06.000+02:00","cybintsys","Cloud Agent","c5dde6fe-987d-4bdb-8ceb-b9b0c2ae9450","2025-11-20T13:35:25.000+02:00","2026-04-22T10:47:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0" +"196660267","242432304","vpboobsql2.sanef.groupe","","00:50:56:90:b3:02","10.41.22.134","fe80::250:56ff:fe90:b302","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ce 59 56 16 2c 22-65 32 42 14 2c 26 84 20","No Asset Tag","'+02:00","2026-04-07T11:46:42.000+02:00","cybreconcile","Cloud Agent","7dc6ec33-0e00-4be0-9fb2-f511617b86bc","2023-10-31T18:19:55.000+02:00","2026-04-22T10:47:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,FreeFlow,Production,flux_libre","334.0" +"361948001","345511607","PCB17789.sanef.groupe","PCB17789","D0:AD:08:8A:60:45","10.101.243.216","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4G","","'+02:00","2026-04-20T09:27:48.000+02:00","SANEF\MIRDAS","Cloud Agent","8a2b74b4-67ca-4a90-aac0-d16e883ac2d1","2025-09-22T11:38:59.000+02:00","2026-04-22T10:47:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","248.0" +"249342100","288692146","vrameapmv1.sanef-rec.fr","","00:50:56:9c:b9:3e","10.45.2.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c bb 59 92 e1 aa 18-03 0e af 7e 87 b5 cc 1b","No Asset Tag","'+02:00","2026-04-21T10:27:54.000+02:00","cybsecope","Cloud Agent","05bbc933-a556-453b-9f7f-bd557bcd68f6","2024-07-08T17:16:22.000+02:00","2026-04-22T11:50:52.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,MIVISU","35.0" +"383235630","354362153","PCB18011.sanef.groupe","PCB18011","C0:18:03:85:64:BD","10.200.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206174S","8CC206174S","'+02:00","2026-03-30T22:04:04.000+02:00","SANEF\laine","Cloud Agent","eaa142ae-eb3f-4407-aa98-0a81b6c62407","2025-12-11T12:54:09.000+02:00","2026-04-22T11:28:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"218323011","252975059","vibooangx1.sanef.groupe","","00:50:56:90:71:74","10.41.22.210","fe80::250:56ff:fe90:7174","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 07 30 0f f5 c4 62-77 36 26 4f bd 90 cd 12","No Asset Tag","'+02:00","2026-03-16T10:30:25.000+02:00","cyblecemo","Cloud Agent","bcb8fffd-18e8-49e4-82f8-b497091a040a","2024-02-26T15:44:06.000+02:00","2026-04-22T10:46:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,ServersInCyberark,Flux Libre,Production,flux_libre,OS-LIN-SRV DYN,FreeFlow,MID-NGINX DYN","141.0" +"322362730","329442018","PCB23701.sanef.groupe","PCB23701","6C:0B:5E:EE:BC:C1","10.200.31.72","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L74","","'+02:00","2026-04-17T10:15:45.000+02:00","SANEF\DUPAYS","Cloud Agent","d78f1807-5d18-4190-85d0-3e84127f5c4b","2025-05-06T12:50:19.000+02:00","2026-04-22T11:29:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"323177560","329814989","PCB22889.sanef.groupe","PCB22889","D0:AD:08:A3:E7:8B","10.152.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMT","8CC3502YMT","'+02:00","2026-03-28T15:06:12.000+02:00","SANEF\roberte","Cloud Agent","a03e5e8f-9492-4206-9f5c-ee8cd1631f68","2025-05-09T13:33:07.000+02:00","2026-04-22T10:46:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"320120950","328616627","PCB23558.sanef.groupe","PCB23558","C8:6E:08:97:E0:A0","10.205.0.117,10.255.2.198","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L42","","'+02:00","2026-04-20T09:04:12.000+02:00","SANEF\LEBON","Cloud Agent","7f93d5b6-9367-4a91-bb39-64a0e8350777","2025-04-28T12:52:40.000+02:00","2026-04-22T10:58:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"299322920","319723155","MTR-DBD4804","MTR-DBD4804","6C:3C:8C:50:F1:27","10.219.32.200","fe80::b43:4f2c:5c6d:2f81","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","DBD4804","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","0adde508-d88e-422f-8028-3a3ca64b6745","2025-02-11T11:04:57.000+02:00","2026-04-22T10:46:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"196663725","242433778","vpbooangx1.sanef.groupe","","00:50:56:90:8b:75","10.41.22.147","fe80::250:56ff:fe90:8b75","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 5a 08 bf 7c 15 ff-c6 77 73 1c 71 3f d7 52","No Asset Tag","'+02:00","2026-04-07T11:44:54.000+02:00","cybreconcile","Cloud Agent","dc64af1f-5e04-4377-9ece-46ead1446236","2023-10-31T18:38:48.000+02:00","2026-04-22T10:46:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Production,flux_libre,Cloud Agent,Linux Server","329.0" +"359802333","344907561","vrpeahbst1.sanef-rec.fr","","00:50:56:9c:8a:e8","192.168.31.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c e4 3c bb 93 a4 3d-cb 11 9e 0b ee 2c 91 f3","No Asset Tag","'+02:00","2026-04-08T11:05:10.000+02:00","root","Cloud Agent","bc9760af-f453-400d-a64a-5ca2536ef0a6","2025-09-15T15:57:45.000+02:00","2026-04-22T10:45:58.000+02:00","x86_64","4","SCA,VM,GAV","flux_libre,TAG-SED,TAG-SRVEXPOSEINTERNET,Recette,FreeFlow,Flux Libre,OS-LIN-SRV DYN,Linux Server,Cloud Agent","132.0" +"340145305","336514116","PCB17786.sanef.groupe","PCB17786","28:C5:D2:9F:C3:79","10.205.0.6,192.168.1.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3M","","'+02:00","2026-04-20T08:59:21.000+02:00","SANEF\FERCHAUD","Cloud Agent","9c4b32dc-eb9a-4684-9fb0-b64feb82f170","2025-07-08T15:36:55.000+02:00","2026-04-22T11:48:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"382418907","353976182","PCB25865.sanef.groupe","PCB25865","28:95:29:1B:32:03","10.205.0.16,192.168.1.127","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSZ","","'+02:00","2026-04-20T09:39:42.000+02:00","SANEF\DUMOLLARD","Cloud Agent","f1f85402-82e1-4b4b-9051-3e2a2f159d82","2025-12-08T11:12:22.000+02:00","2026-04-22T10:45:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"390363422","357624956","PBM20982.sanef-int.adds","PBM20982","00:18:9E:A9:88:00, BC:0F:F3:88:FD:37","192.168.63.100,10.200.50.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LMC","","'+02:00","2026-04-16T12:11:57.000+02:00","Operateur","Cloud Agent","4aaacfa3-4381-4f21-8335-2b7cb1e4a47e","2026-01-10T05:11:43.000+02:00","2026-04-22T10:45:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","347.0" +"320134630","328623085","PCB23543.sanef.groupe","PCB23543","6C:0B:5E:EC:DD:1F","10.202.31.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9H","","'+02:00","2026-03-30T10:56:10.000+02:00","SANEF\drancourt","Cloud Agent","2618ba77-5932-46b1-96c0-c017aa93a2ee","2025-04-28T14:07:07.000+02:00","2026-04-22T10:45:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"363863295","346360786","PCV18547.sanef-int.adds","PCV18547","30:13:8B:6C:57:CC","10.152.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473SS","","'+02:00","2026-04-07T16:45:23.000+02:00","Operateur","Cloud Agent","717d1732-70f0-41de-8e19-a81ba306a8e4","2025-09-29T12:20:19.000+02:00","2026-04-22T10:45:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"374966006","350891080","PCB22466.sanef.groupe","PCB22466","00:E0:4C:78:68:07","10.101.243.203,192.168.1.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVY","","'+02:00","2026-04-16T09:30:32.000+02:00","SANEF\COSIALLS","Cloud Agent","0424fbb1-4a17-4719-80f5-712122b9faac","2025-11-07T16:02:33.000+02:00","2026-04-22T11:26:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"231528363","259280856","ls-aumale-est","LS-AUMALE-EST","00:50:56:90:C3:A3","10.41.2.20","fe80::8c9d:a8b3:aece:62e9","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 fd 73 d8 4a 73 8d-4b dd 95 74 45 49 61 84","NoAssetTag","'+02:00","2026-03-23T12:01:57.000+02:00","svpadmin","Cloud Agent","7e1b750d-9c54-49ec-9de0-695cc2e2b935","2024-04-22T11:03:55.000+02:00","2026-04-22T10:45:28.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,VRF_PEAGE_DC,High,OS-WIN-SRV DYN,Production,Péage,SVP,Cloud Agent,Windows Server","504.0" +"363043551","345952489","PCB16374.sanef.groupe","PCB16374","74:3A:F4:CB:23:5C","10.255.3.196,10.255.3.192","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","64758","HP U21 Ver. 02.16.00","8CC327145G","","'+02:00","2026-03-30T10:03:11.000+02:00","SANEF\OCTAU","Cloud Agent","c049b6ba-4a76-4892-8faf-9822698fe928","2025-09-25T17:57:10.000+02:00","2026-04-22T10:53:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"189172820","238405709","vvpeaarcv1.sanef-rec.fr","","00:50:56:9c:45:ba","10.45.6.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 61 6f 3e 31 c1 79-c2 ac 1f 06 da a9 f8 45","No Asset Tag","'+02:00","2026-03-12T10:33:09.000+02:00","cybreconcile","Cloud Agent","4df11211-78c4-4dac-bc9f-fd7df91d89d4","2023-09-21T13:11:50.000+02:00","2026-04-22T10:45:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Recette,flux_libre","333.0" +"213849711","251124343","sppeaanvr23","SPPEAANVR23","20:67:7C:D6:45:75","10.41.7.122","fe80::254a:3dfa:cecd:d8cb","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ8380396","","'+02:00","2026-02-05T11:27:13.000+02:00","Administrateur","Cloud Agent","a118d752-2d3c-45f7-8111-f1657a762f00","2024-02-05T19:17:47.000+02:00","2026-04-22T10:45:10.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,NVR","523.0" +"320077906","328613176","PCB18072.sanef.groupe","PCB18072","38:CA:84:50:56:18","10.101.243.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HTQ","","'+02:00","2026-04-08T16:26:10.000+02:00","SANEF\SAUVIGNON","Cloud Agent","53c58b03-34e0-4ea5-aa4f-340f973e7a16","2025-04-28T12:14:36.000+02:00","2026-04-22T10:28:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","59.0" +"213849189","251125497","spemvalog1.sanef.groupe","","54:80:28:4e:67:5a","192.168.100.74","fe80::46c:6cb9:10b9:4392","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant DL380 G10 Server","32","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31829","HPE U30 08/06/2025","CZ28450153","","'+02:00","2026-01-19T17:20:57.000+02:00","root","Cloud Agent","14d73869-4e52-41ff-9546-b2ea4392cdfc","2024-02-05T19:36:04.000+02:00","2026-04-22T10:45:02.000+02:00","x86_64","4","SCA,VM,PM,GAV","Forescout,PCI Bunker EMV - VLAN Supervision/Admin,DSI,OS-LIN-SRV DYN,Splunk,Cloud Agent,Linux Server","673.0" +"139157052","198270704","vmamptd1.sanef.groupe","","00:50:56:82:5B:C6","10.41.40.165","fe80::250:56ff:fe82:5bc6","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 81 c7 66 1d 69-91 26 2c 88 c7 a1 34 9d","No Asset Tag","'+02:00","2025-09-29T15:02:30.000+02:00","cybreconcile","Cloud Agent","dbadc8c6-f389-483b-b396-cf73f4190b36","2022-09-07T14:36:49.000+02:00","2026-04-22T10:44:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,Obsolete,Production,Trafic,Traffic,Cloud Agent,Linux Server,VRF_TRAFIC_DC,OS-LIN-SRV DYN","692.0" +"362315090","345693011","PCB21351.sanef.groupe","PCB21351","D0:AD:08:AA:4F:F2","10.101.243.141","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FD","","'+02:00","2026-04-17T09:06:32.000+02:00","SANEF\FAOUAJI-ext","Cloud Agent","714c767e-b020-4e40-81ab-a90d61c7f643","2025-09-23T16:40:26.000+02:00","2026-04-22T12:03:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"198996312","243707595","vpisibtel1.sanef.groupe","VPISIBTEL1","00:50:56:9C:31:EF, 00:50:56:9C:14:06","10.41.40.123,10.41.6.188","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 1c 86 87 ba 61 6f 31-69 a5 0b b5 80 2f 55 08","NoAssetTag","'+02:00","2026-04-02T14:35:50.000+02:00","SANEF\DELCOUR","Cloud Agent","611b620c-c4f7-4589-a833-31304234a1e7","2023-11-14T19:19:00.000+02:00","2026-04-22T10:44:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","ISI-COM,OS-WIN-SRV DYN,DSI,Cloud Agent,Windows Server","337.0" +"141870951","199937297","vpbckacse1","VPBCKACSE1","00:50:56:82:F3:83","10.42.16.69","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","49151","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-56 4d 39 43 32 31 67 21-f0 aa b4 59 25 c8 d3 fb","NoAssetTag","'+02:00","2026-03-30T10:52:38.000+02:00","dcrad","Cloud Agent","a6910462-50f2-4c6f-aba0-584b632e78eb","2022-09-27T11:45:42.000+02:00","2026-04-22T10:44:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,BDD-SQL DYN,VRF_BACKUP_DC,Gestion SAUVEGARDE,Cloud Agent,Windows Server","350.0" +"238272359","269262153","vipeahbst1.sanef.groupe","","00:50:56:90:10:e3","192.168.31.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 de 88 b6 2b cd 2b-3c 44 43 0e b9 e9 28 23","No Asset Tag","'+02:00","2026-04-14T10:29:18.000+02:00","cybsecope","Cloud Agent","b46fa68f-ff5c-405c-bd2d-5cad329b7181","2024-05-21T14:50:12.000+02:00","2026-04-22T10:44:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,TAG-SRVEXPOSEINTERNET,flux_libre,Flux Libre,Cloud Agent,Linux Server,Recette","132.0" +"314908353","326677556","vrdsiasaf1","","f6:61:32:36:b7:b5, 00:50:56:9c:e5:c6, fe:33:26:30:9c:77","10.88.0.1,192.168.19.24","fe80::f8b1:5eff:fe68:216d,fe80::fc33:26ff:fe30:9c77","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3654","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c ac e5 79 a1 c0 a5-4a 99 9d 16 77 01 76 51","No Asset Tag","'+02:00","2026-04-20T17:49:21.000+02:00","cybadmroot","IP Scanner, Cloud Agent","ff0da179-fcc8-4758-8ed2-0b28c8518524","2025-04-09T16:45:51.000+02:00","2026-04-22T10:43:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Radius,Recette","248.0" +"157615760","210413258","vppintaels1.sanef.groupe","","00:50:56:82:56:38","10.46.39.15","fe80::250:56ff:fe82:5638","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 67 e6 ec 03 d8 ff-cd 63 a1 e6 58 67 72 c4","No Asset Tag","'+02:00","2026-02-25T10:47:56.000+02:00","cybadmbdd","Cloud Agent","7cf47c07-db57-42f5-85a7-946d89b050c1","2023-02-01T16:29:03.000+02:00","2026-04-22T10:43:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,VRF_INCONNUE,Gestion institutionnel,Cloud Agent,Linux Server","142.0" +"353038704","341751495","PCB20708.sanef.groupe","PCB20708","58:1C:F8:E9:44:54","10.205.0.19,192.168.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DT3","","'+02:00","2026-04-15T15:43:42.000+02:00","SANEF\lombard","Cloud Agent","5903ba25-cc73-4fce-9221-0bb1fc5bb657","2025-08-20T11:37:12.000+02:00","2026-04-22T10:43:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"308850037","323875092","vrdsibetc2.sanef-rec.fr","","00:50:56:9c:90:88","10.45.1.177","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c e6 68 6c 62 dc b0-23 8f 1c 27 bc e3 ba 97","No Asset Tag","'+02:00","2026-01-06T13:52:01.000+02:00","cybadmbdd","Cloud Agent","14801267-3beb-415f-9814-d19dfa280886","2025-03-17T18:36:36.000+02:00","2026-04-22T10:43:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD,Recette","141.0" +"139156976","198270451","vmamprdt1","","00:50:56:82:25:F8, 00:50:56:82:4B:AD, 00:50:56:82:09:77","10.43.4.70,10.41.40.70,10.41.40.72,10.41.40.73,10.43.40.70,10.43.40.72,10.43.40.73","fe80::250:56ff:fe82:25f8,fe80::250:56ff:fe82:4bad,fe80::250:56ff:fe82:977","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 ea be bd f8 2c 6f-19 ab 4a da 29 5a d0 7d","No Asset Tag","'+02:00","2024-02-13T14:07:37.000+02:00","cybreconcile","Cloud Agent","76dece7b-0c6b-4cc5-9b36-abc9e5c62828","2022-09-07T14:30:36.000+02:00","2026-04-22T10:43:09.000+02:00","x86_64","5","SCA,VM,PM,GAV","VRF_TRAFIC_DC,Production,Cloud Agent,Linux Server,log4j,MIVISU,Obsolete,OS-LIN-SRV DYN,Trafic,DEX","873.0" +"152255312","206859174","vpsasapil1.sanef.groupe","","00:50:56:82:dd:e9","10.41.32.20","fe80::250:56ff:fe82:dde9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7f 0d 6d e4 1d 96-c0 af 50 d0 23 ae 67 95","No Asset Tag","'+02:00","2026-03-25T16:10:58.000+02:00","cybreconcile","Cloud Agent","3ed9295c-e2c3-464f-875e-3a275e57972b","2022-12-16T15:39:51.000+02:00","2026-04-22T10:43:06.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,SAS,VRF_BURO_DC,OS-LIN-SRV DYN,Cloud Agent,Linux Server","92.0" +"201497726","244876565","vrtrabkme1.sanef-rec.fr","","00:50:56:9c:3f:de","10.45.10.66","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 25 ac b3 44 9b 92-e5 d1 d0 4c 93 54 c3 6a","No Asset Tag","'+02:00","2026-04-14T11:01:22.000+02:00","cybsecope","Cloud Agent","a7ed7b48-7fe5-4dda-b18c-f3fbe85dd2e0","2023-11-29T12:34:35.000+02:00","2026-04-22T11:58:50.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,Cloud Agent,Linux Server,MID-NGINX DYN,Masterparc,OS-LIN-SRV DYN","117.0" +"406279962","363583300","PCV20919.sanef-int.adds","PCV20919","30:13:8B:6C:5E:47","10.12.7.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q84","","'+02:00","2026-03-05T16:26:26.000+02:00","Operateur","Cloud Agent","fd819ce6-8ef9-45d0-822a-3207a59e8176","2026-03-05T15:40:52.000+02:00","2026-04-22T10:42:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"173355626","227827000","vvboobsql1.sanef-rec.fr","","00:50:56:9c:10:ac","10.45.6.68","fe80::250:56ff:fe9c:10ac","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 67 8f 66 4d 2f 26-d9 bf 06 b0 89 87 88 0a","No Asset Tag","'+02:00","2026-03-12T11:02:18.000+02:00","cybsupsys","Cloud Agent","27757c4b-5d68-4f2c-b905-3a12dbc66d1e","2023-06-07T10:31:40.000+02:00","2026-04-22T10:42:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Recette,flux_libre","144.0" +"362978365","345924982","PCB22708.sanef.groupe","PCB22708","E4:60:17:CB:E8:19","10.255.2.139,10.255.2.213","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.05.05","5CD34764DX","","'+02:00","2026-04-08T15:20:53.000+02:00","SANEF\GARMY-ext","Cloud Agent","1e5cc313-9233-4f13-b2af-93c226099c49","2025-09-25T12:39:04.000+02:00","2026-04-22T11:45:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"112576691","180430333","vpssiapki1.sanef.groupe","","52:54:00:4c:07:2e, 00:50:56:82:de:2e","192.168.122.1,10.30.10.157","fe80::7829:ca19:ffd9:5c41","Linux / Server","The CentOS Project CentOS Stream 8","","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7954","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 73 4f c5 4d dd f3-5a 0e 55 80 de 8d 4d 76","No Asset Tag","'+02:00","2025-02-18T11:12:27.000+02:00","root","Cloud Agent","41bf3f3e-26ff-4f0e-a179-38fd3d0af892","2022-02-07T12:17:45.000+02:00","2026-04-22T11:31:01.000+02:00","x86_64","2","SCA,VM,GAV","DSI,Linux Server,Outils prod (Monitoring, NMS, gestion de parc),Production,Gestion_PKI,Obsolete,Cloud Agent","41.0" +"411130803","365528397","vplogbels2","","00:50:56:94:9d:ba","10.44.7.40","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 04 5d 4b f2 6c 70-c3 2d c9 2d 77 df 67 ec","No Asset Tag","'+02:00","2026-04-07T12:00:16.000+02:00","cybsecope","Cloud Agent","f216911a-a924-4624-8ab1-f790e0861580","2026-03-24T17:15:48.000+02:00","2026-04-22T10:42:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-ELA DYN","66.0" +"320292420","328639451","PCB23595.sanef.groupe","PCB23595","C8:6E:08:8A:45:D5","192.168.1.12,10.205.0.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L7D","","'+02:00","2026-03-30T08:38:47.000+02:00","SANEF\murez","Cloud Agent","1f7eacbc-c07c-4501-9317-630cf5458cd6","2025-04-28T16:46:53.000+02:00","2026-04-22T10:41:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"354679096","342495682","vpechaetl4.sanef.groupe","","00:50:56:90:36:6c","10.42.16.144","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0b ee b6 64 c0 73-30 6e 16 d7 0f f0 bb f6","No Asset Tag","'+02:00","2026-02-12T16:12:05.000+02:00","cybsecope","Cloud Agent","a7123e67-8e4f-4bcd-a82f-1a6771ff4d57","2025-08-26T17:15:03.000+02:00","2026-04-22T10:41:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","145.0" +"250360594","289321218","SVP20959.sanef-int.adds","SVP20959","BC:0F:F3:87:66:66","10.200.2.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLY","","'+02:00","2026-01-30T09:22:22.000+02:00","Superviseur","Cloud Agent","61638ec1-9fd2-43eb-8585-3b18a94de2ac","2024-07-12T11:23:54.000+02:00","2026-04-22T11:06:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"379841430","353008348","vtdsiatmp1.sanef.groupe","","00:50:56:82:3a:d6","10.43.253.4","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 15 56 a7 e3 a7 24-c6 67 23 21 67 98 c5 76","No Asset Tag","'+02:00","2026-04-14T14:17:53.000+02:00","root","Cloud Agent","cf933cbc-f4d7-4fd2-8840-4d3d428abf86","2025-11-27T18:45:57.000+02:00","2026-04-22T11:00:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"360913777","345087474","PCB18736.sanef.groupe","PCB18736","BC:0F:F3:3D:68:37","10.4.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSG","","'+02:00","2026-04-07T10:19:13.000+02:00","SANEF\lhotelain","Cloud Agent","b9622c36-148c-4254-83f2-15adb6524f29","2025-09-18T10:54:50.000+02:00","2026-04-22T11:33:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"320047252","328598799","PCB24045.sanef.groupe","PCB24045","EC:4C:8C:C0:1A:61","10.255.4.211,10.255.4.217","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDJ","","'+02:00","2026-03-30T08:37:27.000+02:00","SANEF\HAVARD","Cloud Agent","8d6448fe-edd9-46a9-8b13-f58c6806ab46","2025-04-28T10:01:06.000+02:00","2026-04-22T10:41:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"382795575","354126727","PCB25814.sanef.groupe","PCB25814","28:95:29:22:5D:9E","10.252.42.155,10.255.2.190","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSB","","'+02:00","2026-04-16T21:19:02.000+02:00","SANEF\jardin","Cloud Agent","0bc2ed42-21e2-4a87-a49c-d63c2e65d571","2025-12-09T17:32:32.000+02:00","2026-04-22T11:00:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","331.0" +"331385324","333860818","vpmonaftp1.sanef.groupe","","00:50:56:90:7f:60","10.41.20.80","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 19 aa 94 6a 9b c1-e9 8f 8c 58 2e d0 b9 40","No Asset Tag","'+02:00","2025-11-20T16:13:29.000+02:00","cybreconcile","Cloud Agent","11292117-193f-4e71-860e-893257d74414","2025-06-06T09:58:55.000+02:00","2026-04-22T12:04:01.000+02:00","x86_64","2","SCA,VM,GAV","Production,EMV,OS-LIN-SRV DYN,Cloud Agent,Linux Server","332.0" +"386997086","356436525","vmdtrac04.recette.adds","VMDTRAC04","00:50:56:9C:69:F8","10.45.17.6","fe80::ff7b:5a6c:795:f666","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c c4 b2 1c f8 02 80-03 50 c0 49 74 84 ba 13","NoAssetTag","'+02:00","2026-04-16T17:35:45.000+02:00","supwindev","Cloud Agent","dc7a9140-3861-45f9-bc5f-4f86e8addf24","2025-12-30T17:04:57.000+02:00","2026-04-22T10:41:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"346581131","339053246","PCB21121.sanef.groupe","PCB21121","E4:60:17:CA:30:19","10.101.243.157,192.168.1.68","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MY","","'+02:00","2026-04-17T10:24:21.000+02:00","SANEF\NAFFETI-ext","Cloud Agent","6d8bf619-e8a5-4970-9492-28db1328f656","2025-07-29T14:38:16.000+02:00","2026-04-22T11:21:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","242.0" +"287513653","311426823","vpstlbtel1.sanef-int.adds","VPSTLBTEL1","00:50:56:90:EB:12","10.41.13.52","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3453) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 fd 8b 4a 92 54 ad-b3 c1 aa f0 e7 07 36 5d","NoAssetTag","'+02:00","2026-04-20T16:08:25.000+02:00","user_stl","Cloud Agent","70e767f6-66ea-4196-8255-0e322066dfe6","2024-12-19T10:44:40.000+02:00","2026-04-22T10:41:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,BDD-SQL DYN,Cloud Agent","346.0" +"387117872","356492878","vmdtrac08.recette.adds","VMDTRAC08","00:50:56:9C:0F:8C","10.45.17.10","fe80::4801:3c04:37ed:b08","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 6f a1 44 4f 03 17-7c 58 46 63 77 12 f9 86","NoAssetTag","'+02:00","2026-04-16T02:20:37.000+02:00","supwindev","Cloud Agent","6a30913b-5a84-4262-ac43-942feffb04f2","2025-12-31T10:56:58.000+02:00","2026-04-22T10:40:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"382446975","353976509","PCB25937.sanef.groupe","PCB25937","4C:CF:7C:0A:4C:3F","10.252.42.146","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222M","","'+02:00","2026-04-14T08:36:51.000+02:00","SANEF\liegeois","Cloud Agent","e5a6dff2-2ffd-4cf3-9d4c-3ecf8dfaca59","2025-12-08T11:14:53.000+02:00","2026-04-22T10:40:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"349162740","339873764","PCB21199.sanef.groupe","PCB21199","D0:AD:08:AA:50:60","10.220.31.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764JY","","'+02:00","2026-04-07T17:32:59.000+02:00","maxime.dore@sapn.fr","Cloud Agent","d9913abb-0a2f-449c-8a95-614e6f05c99e","2025-08-05T11:22:23.000+02:00","2026-04-22T11:34:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"342506007","337558498","PCB21096.sanef.groupe","PCB21096","D0:AD:08:AA:50:8A","10.205.0.91,10.101.243.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764L9","","'+02:00","2026-04-01T09:07:55.000+02:00","SANEF\GAUTIERJ-ext","Cloud Agent","aa42c157-3b7e-4ffb-a96f-17a5d16b2c47","2025-07-17T11:40:27.000+02:00","2026-04-22T10:40:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"318721619","328182820","PCB22933.sanef.groupe","PCB22933","D0:AD:08:A3:E7:A2","10.100.38.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YL7","8CC3502YL7","'+02:00","2026-04-14T15:53:31.000+02:00","SANEF\auclairp","Cloud Agent","930277ad-56aa-4847-a933-fe1f125d8e19","2025-04-23T11:26:13.000+02:00","2026-04-22T10:40:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"287936544","311537310","vrosapels1.sanef-rec.fr","","00:50:56:9c:3e:a7","10.45.9.71","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d6 80 bd e9 ea 0f-6d fc 5b 26 ce 3f bc 34","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","reboot","Cloud Agent","26000044-0bd2-432b-b647-8f734d7a09d3","2024-12-20T13:09:33.000+02:00","2026-04-22T10:40:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","142.0" +"160009590","212917304","PVP19957.sanef-int.adds","PVP19957","C4:00:AD:25:F4:32, C4:00:AD:25:F4:33","10.192.16.47,192.168.0.1","fe80::3694:9d30:f8ac:b889,fe80::cd8a:4ccd:a6cd:3ee1","Windows / Client","Microsoft Windows 10 Enterprise LTSC (1809 Build 17763.7678) 64-Bit","1809","Unidentified / Unidentified","Advantech","4","2400","Intel(R) Core(TM) i3-4330TE CPU @ 2.40GHz","8100","American Megatrends Inc. 4.6.5","To be filled by O.E.M.","ToBeFilledByO.E.M.","'+02:00","2026-04-01T09:44:04.000+02:00","admvoie","Cloud Agent","eb6386ff-1bee-4567-a527-95d3577990b4","2023-02-20T21:08:15.000+02:00","2026-04-22T10:40:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"346596772","339058454","PCB25844.sanef.groupe","PCB25844","F8:ED:FC:AB:02:D3","10.205.0.150,10.101.243.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVC","","'+02:00","2026-04-15T09:14:14.000+02:00","eolia.boufflers@bipandgo.com","Cloud Agent","56a4cde6-77e8-4b0a-9f1f-0cc3f7705728","2025-07-29T15:08:41.000+02:00","2026-04-22T11:31:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"156225794","209332073","vppintbweb1.sanef.groupe","","00:50:56:82:e5:f5","10.46.39.16","fe80::250:56ff:fe82:e5f5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","15760","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 b5 93 e7 22 ca 8a-cb 55 2d 85 89 c6 13 76","No Asset Tag","'+02:00","2026-02-23T15:32:16.000+02:00","cybreconcile","Cloud Agent","8244acf6-c516-4fe9-a1da-77d4b1abb84a","2023-01-20T15:10:06.000+02:00","2026-04-22T11:57:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,VRF_BURO_DC,Gestion institutionnel,Cloud Agent,Linux Server","144.0" +"358170685","344041759","vpdsiagrd1.sanef.groupe","","00:50:56:90:50:a9","192.168.19.100","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 0d d0 92 e3 ad f2-6b 12 7f eb 1a 34 a6 00","No Asset Tag","'+02:00","2026-04-15T15:43:37.000+02:00","root","Cloud Agent","173f0431-2687-4201-a8d1-bdb4cea1dbf9","2025-09-09T15:47:41.000+02:00","2026-04-22T10:40:08.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,DMZ,Linux Server,Cloud Agent,TAG-SRVEXPOSEINTERNET,DNS,OS-LIN-SRV DYN,MID-NGINX DYN","115.0" +"404732912","362922935","PCB21118.sanef.groupe","PCB21118","E4:60:17:CA:41:21","10.205.0.186,192.168.1.72","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KR","","'+02:00","2026-04-17T13:52:44.000+02:00","SANEF\ELWAFI-ext","Cloud Agent","aa1c04b6-b38d-49cd-8145-4f161fa65e76","2026-02-27T11:48:09.000+02:00","2026-04-22T10:40:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"321548577","329070728","PCB22351.sanef.groupe","PCB22351","D0:AD:08:A3:7C:C5","10.202.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YY9","8CC3502YY9","'+02:00","2026-03-29T09:13:17.000+02:00","SANEF\beaudouin","Cloud Agent","2585a931-1587-4918-ba89-264ed1c9cb69","2025-05-02T09:51:17.000+02:00","2026-04-22T10:40:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"372445056","349730968","PBM22807.sanef-int.adds","PBM22807","D0:AD:08:A7:27:E9","10.5.50.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YPN","","'+02:00","2026-04-13T10:37:10.000+02:00","Operateur","Cloud Agent","df979ecf-bb05-4142-a1d3-b42d6dfd247b","2025-10-28T16:20:27.000+02:00","2026-04-22T10:40:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"159244834","211843609","vpsasamic1.sanef.groupe","","00:50:56:82:e5:84","10.41.32.5","fe80::250:56ff:fe82:e584","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257421","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 cd 78 4d 4f 8a e3-1d 73 04 3c 11 19 0a df","No Asset Tag","'+02:00","2026-03-25T16:22:52.000+02:00","cybreconcile","Cloud Agent","30c1f6a2-779c-4e60-ac63-dadd36a9ca46","2023-02-14T16:13:31.000+02:00","2026-04-22T12:03:54.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,SAS,VRF_BURO_DC,log4j","504.0" +"322357044","329431162","PCS22781.sanef-int.adds","PCS22781","D0:AD:08:A3:E6:BB","10.5.13.100","fe80::424e:727:1009:3279","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YQT","","'+02:00","2026-03-12T10:58:14.000+02:00","user_stl","Cloud Agent","6258493e-2105-4d48-945c-2acd06d740b2","2025-05-06T11:19:53.000+02:00","2026-04-22T10:39:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","346.0" +"401496198","361788484","PCV20918.sanef-int.adds","PCV20918","30:13:8B:6C:5E:3C","10.100.7.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q7Y","","'+02:00","2026-02-17T18:13:17.000+02:00","Operateur","Cloud Agent","02e67f6b-b34e-4fdf-9fb1-e9d57df7744e","2026-02-17T18:23:11.000+02:00","2026-04-22T10:39:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"310050047","324427393","ls-loupershouse","LS-LOUPERSHOUSE","00:50:56:82:53:69","10.112.1.20","fe80::d380:5070:5af7:b55d","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 03 30 be a4 ad 4e-80 8b c4 02 6c ea 6c 5a","NoAssetTag","'+02:00","2026-03-05T10:33:35.000+02:00","svpadmin","Cloud Agent","a3d67199-ac5c-40d8-ad3c-12ecc8e798bc","2025-03-21T16:51:08.000+02:00","2026-04-22T10:39:37.000+02:00","64-Bit","4","SCA,VM,GAV","OS-WIN-SRV DYN,Péage,Cloud Agent,Production,SVP,High,DEX","678.0" +"240060233","273734483","OSA20929.sanef-int.adds","OSA20929","BC:0F:F3:87:70:B5","10.152.20.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMT","","'+02:00","2026-03-17T14:06:54.000+02:00","Superviseur","Cloud Agent","a778db53-49ac-4fe4-b8ba-4f83f3a311db","2024-05-29T12:00:28.000+02:00","2026-04-22T10:39:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"317401026","327603108","PCB21361.sanef.groupe","PCB21361","E4:60:17:C4:7B:A1","10.205.0.129,192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","2496","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764H7","","'+02:00","2026-03-30T09:18:42.000+02:00","SANEF\BOURASS-ext","Cloud Agent","e926db14-1e85-4f6a-9de4-e665ce00ea21","2025-04-17T14:44:14.000+02:00","2026-04-22T11:57:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"343643752","338035889","PCB20699.sanef.groupe","PCB20699","58:1C:F8:EB:78:19","10.101.243.70,192.168.1.143","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DR5","","'+02:00","2026-04-20T09:21:42.000+02:00","nathalie.courbe@sanef.com","Cloud Agent","acc4fb40-ac43-46a4-beeb-4222ab4b2630","2025-07-21T10:56:30.000+02:00","2026-04-22T11:55:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"130590138","192836895","vmamrsxt4","","00:50:56:82:26:F5, 00:50:56:82:4A:4D, 00:50:56:82:58:5D","10.33.16.63,10.32.16.63,10.30.16.63","fe80::250:56ff:fe82:26f5,fe80::250:56ff:fe82:4a4d,fe80::250:56ff:fe82:585d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3f bf 83 fb 25 5a-88 23 9d d6 d4 88 25 c3","No Asset Tag","'+02:00","2025-10-09T11:39:37.000+02:00","cybastsys","Cloud Agent","9b15cc9b-6b59-4550-92ee-de5298641343","2022-07-07T12:06:26.000+02:00","2026-04-22T10:38:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Sextan,Obsolete,VRF_INCONNUE","699.0" +"392444844","358235882","vrvpnaaov1.recette.adds","VRVPNAAOV1","00:50:56:9C:AA:8F, 00:50:56:9C:AC:C0","10.205.10.3,192.168.188.19","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 1c 16 e3 dc 7c 0b 98-c8 5a 1b c1 ef 37 0a e3","NoAssetTag","'+02:00","2026-02-16T17:58:15.000+02:00","recette.adds\b03987@recette","Cloud Agent","fa7f045d-b6ed-4d21-9a52-2e93217c6a81","2026-01-15T18:26:31.000+02:00","2026-04-22T10:38:56.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,High,TAG-SRVEXPOSEINTERNET,Compte & Acces,Haute,DSI","595.0" +"395097762","359308288","PCB20648.sanef.groupe","PCB20648","BC:0F:F3:3D:18:32","10.4.31.80","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRS","","'+02:00","2026-04-20T07:48:50.000+02:00","SANEF\robertf","Cloud Agent","7126cdc1-5e9c-4ae3-a1b1-3f5e2b4d4fef","2026-01-26T15:39:39.000+02:00","2026-04-22T10:38:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"378059947","352307186","vpdsiangx3.sanef.groupe","","00:50:56:90:1f:10","192.168.19.162","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 45 04 87 7a 05 98-b8 0c 0c ea 5d dd 84 30","No Asset Tag","'+02:00","2025-12-10T15:09:42.000+02:00","cybintsys","Cloud Agent","80c4f763-af58-4981-9202-a10bb6035dc3","2025-11-20T13:39:33.000+02:00","2026-04-22T11:52:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0" +"313114324","325676070","vraiiavid1.sanef.groupe","VRAIIAVID1","00:50:56:82:8C:8B","10.41.79.100","fe80::3972:b343:77e9:2074","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 4a 3d 9d 40 69 fb-93 50 c1 c6 f0 bf 0c 46","NoAssetTag","'+02:00","2026-02-16T16:58:15.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","3fa57a0c-0603-4a7f-b51d-0368278c6e17","2025-04-02T10:43:56.000+02:00","2026-04-22T11:07:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Péage,OS-WIN-SRV DYN,VRF_VIDEO,Recette,Cloud Agent","341.0" +"334752929","336779981","vrdataapp1.sanef-rec.fr","","00:50:56:9c:8c:9c","10.45.14.165","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 48 45 d3 3c 6c 25-84 c4 6d fc 6f 22 b5 59","No Asset Tag","'+02:00","2026-04-20T10:08:27.000+02:00","cybsupapp","Cloud Agent","644f99af-3c7a-4b65-aa36-f504e6c931a8","2025-06-19T16:49:55.000+02:00","2026-04-22T10:38:21.000+02:00","x86_64","3","SCA,VM,GAV","DATI,Recette,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","71.0" +"354633506","342477894","PCB20723.sanef.groupe","PCB20723","BC:0F:F3:3D:18:3E","10.101.243.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DQZ","","'+02:00","2026-04-21T08:01:50.000+02:00","SANEF\MARION","Cloud Agent","a43c7662-994d-4d3e-bb6b-d90e844185ad","2025-08-26T14:40:59.000+02:00","2026-04-22T08:49:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"412657468","366356238","SVP22873.sanef-int.adds","SVP22873","D0:AD:08:A3:7B:5A","10.252.12.201","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRG","","'+02:00","2026-03-31T15:16:34.000+02:00","Superviseur","Cloud Agent","07b5d09f-d203-4dcb-84c3-c1bc45bae4fc","2026-03-31T15:20:51.000+02:00","2026-04-22T10:38:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"368821229","348250691","PCB21299.sanef.groupe","PCB21299","D0:AD:08:0C:7D:FD","10.101.243.91","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK2","","'+02:00","2026-04-14T09:43:53.000+02:00","SANEF\CORDONNIER","Cloud Agent","18ff07ed-eb05-408c-8560-6639e0e0bc77","2025-10-15T14:18:29.000+02:00","2026-04-22T11:33:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"213853725","251126540","sppeaanvr16","SPPEAANVR16","D4:F5:EF:50:75:D0","10.41.7.115","fe80::4063:32fc:7d9b:ec7a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DV8","","'+02:00","2026-03-26T12:42:01.000+02:00","Administrateur","Cloud Agent","ff457dd0-ebdb-4aa0-ba35-f036ab2be964","2024-02-05T19:57:59.000+02:00","2026-04-22T10:38:06.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,NVR,DEX,Cloud Agent,Windows Server","523.0" +"321972468","329308235","vpintbweb2.sanef.groupe","","00:50:56:9c:ad:90","10.46.33.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c be 84 af 23 67 18-73 4c 71 63 63 67 d9 51","No Asset Tag","'+02:00","2026-02-24T12:22:48.000+02:00","cybreconcile","Cloud Agent","137bf765-a1cc-46d1-8e4e-17baba61d960","2025-05-05T09:03:07.000+02:00","2026-04-22T10:38:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Production,Gestion institutionnel,Linux Server,Cloud Agent","144.0" +"357143220","343656215","PCB18035.sanef.groupe","PCB18035","64:D6:9A:21:82:25","10.205.0.185,192.168.1.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HQZ","","'+02:00","2026-04-10T14:14:02.000+02:00","SANEF\KHELIFI-ext","Cloud Agent","8e6ce1d5-a880-41de-b80b-b916c4c90bc6","2025-09-05T14:17:14.000+02:00","2026-04-22T10:38:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"129345792","191952854","vpsecawin1.sanef.groupe","VPSECAWIN1","00:50:56:82:39:BE","10.30.10.60","fe80::8540:9f1:8b3e:d02e","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 94 dd 58 57 41 91-81 e9 35 a9 64 fe 67 a4","NoAssetTag","'+02:00","2026-02-09T11:02:25.000+02:00","Administrateur","Cloud Agent","465df7ea-2d51-42a0-a5c4-34d8785ffa9c","2022-06-27T16:07:02.000+02:00","2026-04-22T10:37:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,VRF_INCONNUE,Sécurité IT,OS-WIN-SRV DYN,DSI,SECOPS,Cloud Agent,Windows Server","346.0" +"374356809","350587947","PCB16337.sanef.groupe","PCB16337","50:81:40:B9:A1:60","10.200.31.75","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.04.02","5CG13363SX","","'+02:00","2026-04-08T18:23:00.000+02:00","SANEF\daoudi-frikel-ext","Cloud Agent","c36e0e96-a398-4772-b3d0-4ffe646ef753","2025-11-05T11:07:37.000+02:00","2026-04-22T10:37:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"221331665","254244502","ls-gauchy","LS-GAUCHY","00:50:56:90:09:8B","10.41.2.46","fe80::1525:7a:e35f:f0d0","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 a2 c7 33 40 eb 81-41 f8 d6 b3 c7 4b f3 82","NoAssetTag","'+02:00","2026-04-02T15:06:11.000+02:00","svpadmin","Cloud Agent","3c21c33b-0577-447b-b5d0-eb612ca96856","2024-03-11T11:13:09.000+02:00","2026-04-22T10:37:56.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,SVP,Péage,VRF_PEAGE_DC,Production,High,Haute,OS-WIN-SRV DYN,DEX","640.0" +"362042307","345551861","PCB24196.sanef.groupe","PCB24196","30:E3:A4:D6:80:F8","10.255.2.154,10.255.2.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKG","","'+02:00","2026-04-20T10:41:58.000+02:00","SANEF\machy","Cloud Agent","bd2a4937-898d-4489-9336-9c122b15edd6","2025-09-22T17:39:57.000+02:00","2026-04-22T10:38:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"171882719","226859038","vpdsiatse2.sanef.groupe","VPDSIATSE2","00:50:56:8D:0E:0C","10.44.2.44","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2800","INTEL(R) XEON(R) GOLD 6526Y","4095","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 0d 89 bf 7b af 91 4c-5e 17 fa 5f 8a ce 72 d7","NoAssetTag","'+02:00","2026-04-13T14:02:31.000+02:00","SANEF\ndead","Cloud Agent","ad4adcad-ef79-493b-9533-bf4124b63af8","2023-05-26T10:15:29.000+02:00","2026-04-22T11:59:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Rebond,OS-WIN-SRV DYN,Cloud Agent,Windows Server","250.0" +"236313681","264524364","vpemvagtw1.sanef.groupe","","00:50:56:98:1f:a9","192.168.101.110","fe80::250:56ff:fe98:1fa9","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 18 1a af b2 0d 22 1e-ce 36 4c fb bd 16 0a a1","No Asset Tag","'+02:00","2025-12-04T11:44:29.000+02:00","synchro","Cloud Agent","55a2a761-1ea4-412e-b400-d94e53c0632a","2024-05-13T15:52:33.000+02:00","2026-04-22T10:37:44.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17,PCI Bunker EMV,EMV,Production","504.0" +"321595147","329101495","PCB21573.sanef.groupe","PCB21573","D0:AD:08:A3:E6:CA","10.13.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YR3","8CC3502YR3","'+02:00","2026-04-08T10:53:23.000+02:00","SANEF\maginot","Cloud Agent","703c9995-55ca-440b-bb40-d28bab7715af","2025-05-02T16:08:44.000+02:00","2026-04-22T10:37:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"220360665","253837004","viosapels1.sanef.groupe","","00:50:56:90:10:e8","10.41.29.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 13 e5 68 eb 82 5a-c7 17 9e cd df 73 2a 0a","No Asset Tag","'+02:00","2026-02-19T11:42:02.000+02:00","cybadmbdd","Cloud Agent","d7dc4010-3276-4b1d-a984-28b5e9bc98ad","2024-03-06T14:10:51.000+02:00","2026-04-22T10:37:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Péage,DEX,Cloud Agent,Linux Server","141.0" +"379779221","352984437","spbckamag3.sanef.groupe","","04:bd:97:22:c5:b9, 04:bd:97:22:c5:b8","10.43.1.5,10.42.16.74","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP260706CC","Unknown","'+02:00","2025-12-02T17:55:29.000+02:00","cybsecope","Cloud Agent","cb460ae1-89cd-4dbc-b5d4-58eacfb9b891","2025-11-27T13:44:26.000+02:00","2026-04-22T10:37:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0" +"265688076","297448165","vpexpatex1.sanef.groupe","","00:50:56:90:91:60","10.41.40.25","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e8 75 8c 3f ac e7-38 1e 36 fc f3 00 00 ab","No Asset Tag","'+02:00","2026-01-27T12:14:44.000+02:00","root","Cloud Agent","841a123c-c7bc-4642-a6bb-ab32bd00aa4a","2024-09-16T11:44:59.000+02:00","2026-04-22T10:37:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Transports Exceptionnels","139.0" +"353304779","341953316","srlogbels2.sanef-rec.fr","","20:67:7c:e8:d1:14","10.45.15.167","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31496","HPE U41 07/14/2022","CZJ8470B2F","","'+02:00","2026-02-24T12:19:01.000+02:00","cybintsys","Cloud Agent","e298aece-c7bf-4023-a38e-b6217f6fad0e","2025-08-21T12:18:21.000+02:00","2026-04-22T10:37:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Elasticsearch,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","66.0" +"376166689","351397563","PCB18006.sanef.groupe","PCB18006","C0:18:03:85:64:C6","10.200.31.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206174H","8CC206174H","'+02:00","2026-04-02T09:24:14.000+02:00","SANEF\sta","Cloud Agent","1541bfe4-6de6-485e-a68d-9e7ae154a5f6","2025-11-12T16:24:30.000+02:00","2026-04-22T11:41:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"160247428","213434314","vpameaoct2","","00:50:56:82:2c:ab","10.41.40.131","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 02 22 9d 03 55 e0-68 f6 85 ed 20 e3 97 30","No Asset Tag","'+02:00","2026-01-21T10:44:49.000+02:00","cybreconcile","Cloud Agent","9baa3173-4108-4ce4-8d38-71640a319ce5","2023-02-22T16:45:55.000+02:00","2026-04-22T10:37:12.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,OCTAN,Cloud Agent,Linux Server,DEX,MID-APACHE-TOMCAT DYN","510.0" +"380544038","353288156","PCB16096.sanef.groupe","PCB16096","48:9E:BD:4B:90:C2","10.100.39.158","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.13.00","8CC129284W","","'+02:00","2026-04-01T08:41:19.000+02:00","SANEF\PSI","Cloud Agent","abe197a2-f160-4718-bd0a-3be692a1539c","2025-12-01T14:36:55.000+02:00","2026-04-22T10:37:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"376111395","351381036","PCB17984.sanef.groupe","PCB17984","C0:18:03:85:64:09","10.200.31.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC2061748","8CC2061748","'+02:00","2026-04-09T13:53:53.000+02:00","SANEF\GOMBART","Cloud Agent","e951b3b3-787a-4525-9655-2d3d827460f6","2025-11-12T13:37:37.000+02:00","2026-04-22T10:37:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"128594378","191410395","ls-courbes","LS-COURBES","00:50:56:90:57:96","10.41.2.47","fe80::71f1:fd75:4dac:6306","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 ce a3 87 0a 7b 8d-9c 15 fd a3 25 5e d1 5c","NoAssetTag","'+02:00","2026-04-02T11:55:27.000+02:00","svpadmin","Cloud Agent","7f8b6380-cd12-4880-bde4-63a1d62a106e","2022-06-21T11:44:40.000+02:00","2026-04-22T10:36:57.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,VRF_PEAGE_DC,Windows Server,Péage,Production,High,OS-WIN-SRV DYN,Haute","634.0" +"229387995","258011538","vpsupbmap1.sanef.groupe","","00:50:56:8d:2b:a5","10.44.5.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","9713","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d 16 ae 81 f5 62 d4-a5 dd 10 be 53 9d 02 31","No Asset Tag","'+02:00","2026-03-30T11:31:03.000+02:00","cybreconcile","Cloud Agent","e6412e32-9ce5-4e98-b321-4bfe6f05f37f","2024-04-11T17:28:44.000+02:00","2026-04-22T10:36:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","57.0" +"312270851","325486296","vrsvpaosap1","VRSVPAOSAP1","00:50:56:9C:A3:27","10.45.9.171","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 51 a0 1d 58 00 4a-6d 0e 0b a6 42 64 80 8c","NoAssetTag","'+02:00","2026-03-27T15:49:28.000+02:00","gare","Cloud Agent","488ae1ae-3556-4f35-948f-7dbede43810a","2025-03-31T16:09:25.000+02:00","2026-04-22T10:36:49.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,SVP,OS-WIN-SRV DYN","506.0" +"394534768","359062315","PCB23742.sanef.groupe","PCB23742","6C:0B:5E:EE:93:08","10.100.39.180","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4Q","","'+02:00","2026-04-17T11:05:24.000+02:00","SANEF\LEFEBVREE","Cloud Agent","ee56f3da-0002-4700-9072-08545c87560f","2026-01-23T12:43:44.000+02:00","2026-04-22T10:36:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"129354939","191958083","vburimp2.sanef.groupe","VBURIMP2","00:50:56:82:3F:E4","10.30.12.146","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24356)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 95 9b e1 c3 61 2d-b0 86 40 6e eb 0f e8 ba","NoAssetTag","'+01:00","2025-03-19T11:30:59.000+02:00","SANEF\atrad","Cloud Agent","e21b8df9-5dee-4ede-bdff-5a08b7981127","2022-06-27T17:22:53.000+02:00","2026-04-22T10:36:44.000+02:00","64 bits","2","SCA,VM,PM,GAV","DSI,Windows Server 2008,Cloud Agent,Production,Obsolete,OS-WIN-SRV DYN,Gestion IMPRESSION","348.0" +"409450683","364912286","PCB22306.sanef.groupe","PCB22306","60:45:2E:0F:59:A1","10.255.1.143","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJM","8CC3502YJM","'+02:00","2026-04-15T09:10:40.000+02:00","SANEF\vicquelins","Cloud Agent","ab7814ac-d8c0-4b45-ab62-7bcdbf600ff2","2026-03-18T12:23:25.000+02:00","2026-04-22T10:36:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"129006381","191708677","PCM13449.sanef.groupe","PCM13449","C8:D9:D2:33:53:BC","10.4.31.12","fe80::3112:c7c:5d24:184f","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.4046) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G4 Desktop","6","3000","Intel(R) Core(TM) i5-8500 CPU @ 3.00GHz","7971","HP Q01 Ver. 02.07.01","CZC924CX9C","CZC924CX9C","'+02:00","2025-04-15T12:03:54.000+02:00","SANEF\admin_astia","Cloud Agent","fd3722f7-0a2e-4719-933d-06812ed2fd3b","2022-06-24T10:46:57.000+02:00","2026-04-22T10:36:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Workstation","349.0" +"324680968","330336688","PCB23787.sanef.groupe","PCB23787","C8:6E:08:47:73:04","10.205.0.109,192.168.0.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3X","","'+02:00","2026-03-31T08:03:09.000+02:00","SANEF\pouplier","Cloud Agent","2e7baefa-b690-4d20-84ef-321dbf17f2d1","2025-05-14T12:14:40.000+02:00","2026-04-22T11:24:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"239823210","272569954","vpdsiasat2.sanef.groupe","","00:50:56:8d:01:12","10.44.2.133","","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","19793","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d a0 01 33 3d 8d 86-aa 11 8d 81 8d 5e 10 8b","No Asset Tag","'+02:00","2026-04-14T15:15:05.000+02:00","cybreconcile","Cloud Agent","c89ac5e5-e7bc-4aad-a699-734f852ac621","2024-05-28T12:53:15.000+02:00","2026-04-22T10:36:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,MID-APACHE-TOMCAT DYN,Production,Satellite","331.0" +"130582564","192832076","vmamrgtc1","","00:50:56:82:30:83, 00:50:56:82:29:fb, 00:50:56:82:68:ff","10.45.3.160,10.45.3.162,10.45.2.160,10.45.2.162,10.45.4.160","fe80::250:56ff:fe82:3083,fe80::250:56ff:fe82:29fb,fe80::250:56ff:fe82:68ff","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 fe 04 d3 c1 9c b5-c4 75 10 69 d5 71 e8 ca","No Asset Tag","'+02:00","2025-10-09T11:38:50.000+02:00","cybadmsys","Cloud Agent","e754412e-d12f-4949-b585-58087a9402e7","2022-07-07T11:11:35.000+02:00","2026-04-22T10:36:35.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,MIVISU,DEX,log4j,Recette,Sans,Trafic,Obsolete","876.0" +"228428106","257530557","ls-st-avold-b","LS-ST-AVOLD-B","00:50:56:90:A1:69","10.41.2.115","fe80::8501:ff7c:ee12:9eb4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 09 f7 67 94 f7 5e-85 bb 3e bf 9a 13 e8 ea","NoAssetTag","'+02:00","2026-03-03T15:40:34.000+02:00","svpadmin","Cloud Agent","4db07c90-e715-4ae2-8278-c455e96b33ff","2024-04-08T12:06:17.000+02:00","2026-04-22T10:36:34.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,High,Production,Péage,SVP,Cloud Agent,Windows Server,OS-WIN-SRV DYN","681.0" +"397469862","360372010","PCB24232.sanef.groupe","PCB24232","24:FB:E3:BE:98:F9","10.4.31.52,192.168.1.90","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M4V","","'+02:00","2026-03-30T18:45:50.000+02:00","SANEF\COUPE-ext","Cloud Agent","bfdc08d0-bf75-4e15-90fb-935f2ea28aed","2026-02-04T18:05:25.000+02:00","2026-04-22T12:02:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"326855610","331310287","PCB24039.sanef.groupe","PCB24039","6C:0B:5E:F8:C7:A9","10.205.0.171,10.100.39.111","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDC","","'+02:00","2026-04-21T18:13:25.000+02:00","SANEF\gontier","Cloud Agent","466f859f-6522-42bc-8ad7-a654b77dc5f8","2025-05-23T14:55:52.000+02:00","2026-04-22T11:34:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"230624333","258742190","vpsupapol2.sanef.groupe","","00:50:56:8d:b1:4d","10.44.5.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","1778","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 45 e4 e7 11 fe ad-01 3a 2d 47 a0 bb dd a6","No Asset Tag","'+02:00","2026-03-30T10:53:14.000+02:00","cybreconcile","Cloud Agent","ae71c630-7e3f-413a-a45e-9cbb00a602c6","2024-04-17T18:08:34.000+02:00","2026-04-22T10:36:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN,BDD-ELA DYN,MID-NGINX DYN,Cloud Agent,Linux Server","60.0" +"382795127","354123734","PCB25770.sanef.groupe","PCB25770","28:95:29:22:41:29","192.168.1.17,10.101.243.77","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT1","","'+02:00","2026-04-15T09:21:17.000+02:00","SANEF\MOUHLI-GHARBI","Cloud Agent","feb58dcd-cd37-41d7-84a7-4d6498af9d0c","2025-12-09T16:54:43.000+02:00","2026-04-22T12:03:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","243.0" +"389128701","357254093","PCB25902.sanef.groupe","PCB25902","C4:0F:08:B5:3B:50","10.255.2.132","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG534221M","","'+02:00","2026-04-10T13:52:57.000+02:00","SANEF\BONANSEA","Cloud Agent","2896ba9c-4e2e-403a-9137-57bc55a44533","2026-01-07T19:45:10.000+02:00","2026-04-22T10:35:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"377757145","352186178","vrdsiahax1.sanef-rec.fr","","00:50:56:9c:7b:57","192.168.19.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cf ae ac b0 86 9a-13 e5 31 18 b1 42 f9 66","No Asset Tag","'+02:00","2026-01-29T15:36:52.000+02:00","root","Cloud Agent","ca202fc2-fb1c-45f0-8d59-b042c1dce9b9","2025-11-19T15:03:26.000+02:00","2026-04-22T10:35:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","DMZ,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","329.0" +"411592329","365726895","vrsigbmut1.sanef-rec.fr","","52:54:00:bf:a0:1b, 96:f8:7c:9a:18:68, 52:54:00:bc:ab:3d","10.45.15.68,192.168.16.24,192.168.17.6","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","16","","AMD EPYC 9J15 32-Core Processor","129433","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:24:33.000+02:00","oracle","Cloud Agent","b93c44c7-52f4-49e4-9b52-07b9e1540c98","2026-03-26T12:42:47.000+02:00","2026-04-22T10:35:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN,ENV-REC","339.0" +"407987714","364299217","PCV18554.sanef-int.adds","PCV18554","30:13:8B:6C:5C:EE","10.210.7.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473T2","","'+02:00","2026-03-12T13:07:32.000+02:00","Operateur","Cloud Agent","6e478ead-2b8b-4df7-8c02-3f1b15d04a37","2026-03-12T13:25:42.000+02:00","2026-04-22T10:35:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"378966700","352687375","PSX18690.sanef-int.adds","PSX18690","30:13:8B:6C:5B:8A","10.100.40.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473VV","","'+02:00","2026-04-19T13:10:39.000+02:00","UserSextan","Cloud Agent","9346697d-a7cf-4eaf-b0c4-4bcebee98a12","2025-11-24T18:50:09.000+02:00","2026-04-22T10:35:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"296273892","317660426","REX21544.sanef-int.adds","REX21544","D0:AD:08:A3:7B:28","10.100.91.82","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXJ","","'+02:00","2026-03-24T15:51:53.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","2d468a8a-ba61-46a7-a4a8-12fc673dbe58","2025-01-30T17:59:09.000+02:00","2026-04-22T10:35:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"131269839","193319056","vpaiibcen1","","00:50:56:82:ad:1d","10.30.12.122","fe80::250:56ff:fe82:ad1d","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9837","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 69 4a 7c 68 92 64-c6 df 7d 32 79 3b be 83","No Asset Tag","'+02:00","2026-04-20T11:01:43.000+02:00","cybreconcile","Cloud Agent","8d2f6e58-7506-413d-bf6d-fe1037e6390a","2022-07-12T15:26:49.000+02:00","2026-04-22T10:35:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,DSI,Centreon,VRF_INCONNUE,Production,Linux Server,Outils prod (Monitoring, NMS, gestion de parc)","699.0" +"400644771","361581219","PCB18729.sanef.groupe","PCB18729","BC:0F:F3:3D:F7:EE","10.208.31.14,10.220.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224D42","","'+02:00","2026-04-20T08:47:07.000+02:00","SANEF\HERVIEUX","Cloud Agent","80c36f7b-5e24-49f4-acae-ddc6df6cdf48","2026-02-16T13:19:58.000+02:00","2026-04-22T12:02:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"347403825","339171828","PCB21102.sanef.groupe","PCB21102","E4:60:17:CA:2F:8D","10.205.0.92,192.168.1.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M7","","'+02:00","2026-04-02T09:07:43.000+02:00","SANEF\BENTALEB-ext","Cloud Agent","73495a91-05fd-49e1-af71-3ee56a071d1e","2025-07-30T14:48:55.000+02:00","2026-04-22T11:39:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","245.0" +"356059125","343124000","PCB20703.sanef.groupe","PCB20703","58:1C:F8:EA:66:31","10.101.243.82,192.168.1.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.13.01","5CG3224CSP","","'+02:00","2026-03-30T22:22:19.000+02:00","SANEF\lampin","Cloud Agent","274c2130-fcee-47f5-934b-fe20ad4b7cca","2025-09-01T14:02:31.000+02:00","2026-04-22T11:59:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"351067100","341030765","SVP22614.sanef-int.adds","SVP22614","D0:AD:08:A4:72:E8","10.82.5.29,169.254.85.51","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6649) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764DV","","'+02:00","2026-03-25T07:54:23.000+02:00","Superviseur","Cloud Agent","271c2173-4249-4720-b364-72ab02070b5b","2025-08-13T11:29:23.000+02:00","2026-04-22T10:34:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"129338598","191947425","vptraazen2.sanef.groupe","VPTRAAZEN2","00:50:56:82:43:A2","10.41.60.51","fe80::f546:1eb3:9fc2:b539","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 d6 a2 81 96 88 91-a6 55 88 37 c3 fe 21 82","NoAssetTag","'+02:00","2026-02-12T17:11:39.000+02:00","administrateur","Cloud Agent","710c3b79-2416-41ad-add8-cefad04f449c","2022-06-27T14:42:30.000+02:00","2026-04-22T11:44:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Enregistrement_COM,VRF_BURO,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,Outils transverses,Production","258.0" +"413141837","366552051","PCB21317.sanef.groupe","PCB21317","D0:AD:08:AA:50:AD","10.4.31.78","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MF","","'+02:00","2026-04-14T17:52:25.000+02:00","SANEF\nowak-ext","Cloud Agent","c0722c92-7884-4173-a95f-aa78bc29dcf9","2026-04-02T15:25:29.000+02:00","2026-04-22T10:34:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"380788141","353378282","PCB22344.sanef.groupe","PCB22344","D0:AD:08:A3:E6:DC","10.252.42.131","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQ7","8CC3502YQ7","'+02:00","2026-04-18T20:41:04.000+02:00","SANEF\BABUS","Cloud Agent","5688a4e2-01bb-428d-8819-17b6feef5c88","2025-12-02T11:26:12.000+02:00","2026-04-22T10:34:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"366364463","347361807","MTR-5J775R3","MTR-5J775R3","90:8D:6E:8E:1D:C0","10.101.246.209","fe80::4304:b0fe:73e7:b92b","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","5J775R3","","'+02:00","2026-04-22T02:32:55.000+02:00","Skype","Cloud Agent","9f2965ec-8298-44a4-ba5e-6ccd06ae0e9e","2025-10-08T11:48:54.000+02:00","2026-04-22T10:34:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"350795419","340901851","PCB25832.sanef.groupe","PCB25832","28:95:29:1A:F7:5C","10.205.0.169,10.255.2.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTX","","'+02:00","2026-04-17T14:57:29.000+02:00","SANEF\KHERBAHACHACHE","Cloud Agent","6bc84919-f5cf-47cf-ad99-a09a7b306f3f","2025-08-12T12:00:02.000+02:00","2026-04-22T10:34:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"368890436","348257494","PCB17234.sanef.groupe","PCB17234","84:3A:5B:AA:22:5E","10.220.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T39 Ver. 01.16.00","5CG13365HZ","","'+02:00","2026-04-15T07:51:12.000+02:00","SANEF\guillet","Cloud Agent","d5a6e753-096f-47e5-8488-cbbd2b8e2f49","2025-10-15T15:35:06.000+02:00","2026-04-22T10:34:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"270620850","299995302","SVP21038.sanef-int.adds","SVP21038","D0:AD:08:A3:7B:38","10.152.2.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX3","","'+02:00","2026-04-13T15:36:38.000+02:00","Superviseur","Cloud Agent","d3d93db6-27cc-4379-84d0-f49e05a0c9b1","2024-10-07T16:54:41.000+02:00","2026-04-22T10:34:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"397950357","360470234","PCB20611.sanef.groupe","PCB20611","BC:0F:F3:3D:D7:DA","10.205.0.208,10.101.243.76","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQJ","","'+02:00","2026-04-03T09:07:57.000+02:00","SANEF\omahony","Cloud Agent","f92101d4-b94e-48cd-9937-68578c6568f1","2026-02-05T13:09:09.000+02:00","2026-04-22T11:25:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"350779189","340862368","PCB25799.sanef.groupe","PCB25799","28:95:29:1B:32:4E","10.205.0.82,192.168.1.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTB","","'+02:00","2026-04-16T15:26:05.000+02:00","marc.douis@bipandgo.com","Cloud Agent","5c88c9ab-8e78-4ff0-a07a-e1ac42252672","2025-08-12T10:51:54.000+02:00","2026-04-22T11:17:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"362607255","345801428","PCB25772.sanef.groupe","PCB25772","F8:ED:FC:AB:12:71","10.4.31.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVP","","'+02:00","2026-04-20T09:10:43.000+02:00","SANEF\bouche","Cloud Agent","a2600324-2974-48b1-b558-a33a3a6dfb2e","2025-09-24T13:52:27.000+02:00","2026-04-22T10:34:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"370439767","348900040","vmdtrac02.recette.adds","VMDTRAC02","00:50:56:9C:99:24","10.45.17.5","fe80::e012:8fec:9fa:6925","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 06 d2 00 39 6c c3-08 be 27 d0 95 f2 17 5e","NoAssetTag","'+02:00","2026-04-16T17:35:44.000+02:00","supwindev","Cloud Agent","5623f886-29f5-48d3-a1b9-40cafe9c5e35","2025-10-21T14:39:04.000+02:00","2026-04-22T10:34:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"305189609","322675309","vpsicardp1.sanef-int.adds","VPSICARDP1","00:50:56:94:AE:16","10.44.6.195","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4297) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 14 65 dd d4 bd 06 4a-17 74 96 4a 24 ac 65 00","NoAssetTag","'+02:00","2025-11-12T15:59:31.000+02:00","SANEF-INT\b03987","Cloud Agent","0dcf0db7-9e11-482d-a1ad-c2f2bf321f3a","2025-03-04T16:34:10.000+02:00","2026-04-22T10:34:24.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Production,MIVISU,Cloud Agent,OS-WIN-SRV DYN","868.0" +"380043837","353070318","DAI22947.sanef-int.adds","DAI22947","28:C5:C8:41:A2:86","10.207.70.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC4271YWC","","'+02:00","2025-12-11T12:54:03.000+02:00","DAIUSER","Cloud Agent","983068fd-f0fb-473c-9844-ba5d9f29a81d","2025-11-28T12:38:06.000+02:00","2026-04-22T10:34:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"234569455","262099083","vrechatre1.sanef-rec.fr","","00:50:56:9c:f0:7a","10.45.11.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 72 3c 45 55 1f 05-e3 f8 1c 54 2a bc f0 74","No Asset Tag","'+02:00","2026-03-25T12:20:47.000+02:00","cybadmsys","Cloud Agent","4bbf0e2b-df4d-49e9-a1ec-52be59ab5310","2024-05-06T12:58:52.000+02:00","2026-04-22T10:34:14.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,TALEND,Cloud Agent,Linux Server","215.0" +"358425181","344141354","PCB21204.sanef.groupe","PCB21204","D0:AD:08:AA:50:61","10.202.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JZ","","'+02:00","2026-04-02T08:27:08.000+02:00","SANEF\becquet","Cloud Agent","edfc8ec3-5de0-4fb7-b436-909b951378bf","2025-09-10T11:37:19.000+02:00","2026-04-22T10:34:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"130330682","192653555","VPPEAAIPH1.sanef.groupe","VRPEAAIPH1","00:50:56:90:AE:60","10.45.9.50","","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 10 d0 84 31 c1 7f f4-46 f2 8d 8a 6f 3b 39 e9","NoAssetTag","'+02:00","2025-10-13T15:44:39.000+02:00","RECETTE\b03987","Cloud Agent","5a544233-117f-4756-9706-a5670742cf0d","2022-07-05T13:39:45.000+02:00","2026-04-22T10:34:07.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Production,Péage,DSI,VRF_INCONNUE,Alpha,Cloud Agent,Windows Server,Workstation,Obsolete","697.0" +"324421657","330227927","PCB23775.sanef.groupe","PCB23775","6C:0B:5E:EE:83:6C","10.5.31.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4B","","'+02:00","2026-03-31T09:36:14.000+02:00","SANEF\paul","Cloud Agent","b7d30ca0-fe1b-4c4f-8649-d9d035e954ac","2025-05-13T14:26:34.000+02:00","2026-04-22T11:31:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","147.0" +"131401795","193422093","lamaprac1.sanef.groupe","","00:17:A4:77:0C:B8, 00:17:A4:77:0C:B4, 00:17:A4:77:0C:B0, 00:17:A4:77:0C:BC","192.168.17.120,10.43.4.130,169.254.104.213,10.41.40.50,10.41.40.51,10.41.40.59,10.43.40.50","fe80::217:a4ff:fe77:cb8,fe80::217:a4ff:fe77:cb4,fe80::217:a4ff:fe77:cb0,fe80::217:a4ff:fe77:cbc","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ35002DJ","","'+02:00","2024-06-04T14:00:14.000+02:00","cybreconcile","Cloud Agent","a6bf3a46-ae5a-4539-ab4c-a30e626174c3","2022-07-13T10:09:09.000+02:00","2026-04-22T10:33:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,DEX,Sextan,Obsolete,log4j,VRF_TRAFIC_DC,Production,Trafic,Sans","692.0" +"381903284","353724211","PCB22312.sanef.groupe","PCB22312","D0:AD:08:A3:7C:69","10.252.42.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZX","","'+02:00","2026-03-30T07:04:53.000+02:00","SANEF\berbara","Cloud Agent","6b7b47d9-0ebf-4fb4-8951-619423fc9b22","2025-12-05T13:28:46.000+02:00","2026-04-22T10:33:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"313110685","325672444","vraiiavid2.sanef.groupe","VRAIIAVID2","00:50:56:82:73:AB","10.41.79.101","fe80::605c:5deb:7300:3b47","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2500","Intel(R) Xeon(R) CPU E5-2640 0 @ 2.50GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 48 62 63 d0 e7 dd-34 a5 72 ff 0a 7a 4e ec","NoAssetTag","'+02:00","2026-02-16T18:35:13.000+02:00","SANEF.GROUPE\tbaad-ext@sanef.com","Cloud Agent","d4cac81e-8574-4b09-bda6-21baecfb35b8","2025-04-02T09:57:45.000+02:00","2026-04-22T11:29:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Péage,VRF_VIDEO,Recette,OS-WIN-SRV DYN,Cloud Agent","339.0" +"364984841","346727843","PCV21523.sanef-int.adds","PCV21523","D0:AD:08:A3:E6:CE","10.87.14.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YSN","","'+02:00","2026-04-15T20:01:36.000+02:00","Operateur","Cloud Agent","306455ba-cca1-4ee6-8ee4-a985c5ec378e","2025-10-02T15:33:42.000+02:00","2026-04-22T10:33:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"381711057","353639420","spbckamag8.sanef.groupe","","6c:29:d2:30:51:04, 6c:29:d2:30:51:05","10.42.16.103,10.43.1.41","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192294","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3P","Unknown","'+02:00","2025-12-04T18:02:10.000+02:00","root","Cloud Agent","b33873db-0da1-43e7-9af7-ce8570252f12","2025-12-04T17:34:56.000+02:00","2026-04-22T10:33:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0" +"223439899","255202978","ls-abbeville-nord","LS-ABBEVILLE-NO","00:50:56:90:F1:65","10.182.6.20","fe80::5a01:eeb6:bef6:5074","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 f4 66 71 f6 79 1d-6c ba fa 03 72 9a 89 af","NoAssetTag","'+02:00","2026-02-17T11:36:24.000+02:00","svpadmin","Cloud Agent","39b3ae09-7926-4c85-ac97-58b3bde4771a","2024-03-19T18:10:05.000+02:00","2026-04-22T10:33:46.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,SVP,Péage,Cloud Agent,Windows Server,High,DEX","508.0" +"411392831","365636868","OSA20987.sanef-int.adds","OSA20987","BC:0F:F3:87:70:A3","10.100.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LMQ","","'+02:00","2026-04-14T12:58:28.000+02:00","Superviseur","Cloud Agent","903cafc6-5ce7-4bc8-b2f5-6ebbd0a8e940","2026-03-25T16:20:25.000+02:00","2026-04-22T10:33:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"322341389","329422314","PCB22912.sanef.groupe","PCB22912","D0:AD:08:A3:E6:5F","10.149.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQX","8CC3502YQX","'+02:00","2026-04-13T15:08:45.000+02:00","SANEF\fialkowski","Cloud Agent","d05e0804-63d6-4191-8634-2e9482d8ebf8","2025-05-06T09:45:46.000+02:00","2026-04-22T10:33:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"397923227","360470619","PCB21090.sanef.groupe","PCB21090","E4:60:17:CA:40:27","10.205.0.231,192.168.1.80","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764MM","","'+02:00","2026-04-17T15:33:25.000+02:00","SANEF\SLAMA-ext","Cloud Agent","5c828d65-24e5-408d-87e1-0726d5cd8356","2026-02-05T13:12:17.000+02:00","2026-04-22T10:33:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"223188722","255081330","ls-beaumont","LS-BEAUMONT","00:50:56:90:17:24","10.112.3.20","fe80::e0c1:b4ce:df4:51d1","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 c6 3a 91 1c 02 55-4d 3f 39 0f 5b f5 31 77","NoAssetTag","'+02:00","2026-04-02T10:37:51.000+02:00","svpadmin","Cloud Agent","eec432e4-5fcc-40e3-99d5-7e018b0eb3c3","2024-03-18T18:17:53.000+02:00","2026-04-22T10:33:31.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN,High,Production,Péage","509.0" +"407162519","363957723","vrpctatsf2.recette.adds","VRPCTATSF2","00:50:56:9C:86:22","10.45.13.198","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","65535","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 31 e3 6e 23 88 2d-65 e7 cd 76 63 f3 da 8d","NoAssetTag","'+02:00","2026-03-09T16:28:52.000+02:00","Administrator","Cloud Agent","102df9c4-ada5-46ac-aead-aa686922876c","2026-03-09T16:32:28.000+02:00","2026-04-22T10:33:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","253.0" +"383506473","354490601","PCB17787.sanef.groupe","PCB17787","D0:AD:08:8A:40:F7","10.100.39.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y4B","","'+02:00","2026-04-15T08:48:12.000+02:00","SANEF\ferrel","Cloud Agent","aee48f8d-ee48-4a25-8a61-ff16eaf10697","2025-12-12T17:19:38.000+02:00","2026-04-22T10:33:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"320968788","328823985","PCB24044.sanef.groupe","PCB24044","EC:4C:8C:C6:1A:24","10.205.0.92,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDG","","'+02:00","2026-04-20T08:25:42.000+02:00","SANEF\BARREIRA","Cloud Agent","97e18297-656f-4dc9-ac89-f85846722f84","2025-04-30T12:12:19.000+02:00","2026-04-22T10:33:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"354600307","342464674","PCB20700.sanef.groupe","PCB20700","BC:0F:F3:3D:08:E8","10.101.243.65","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.20.00","5CG3224DQK","","'+02:00","2026-04-20T09:10:58.000+02:00","robin.mignot@sanef.com","Cloud Agent","51aafeb8-8449-4a82-9ab7-368a474d1625","2025-08-26T12:24:05.000+02:00","2026-04-22T11:51:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"343089288","337765210","PCB20716.sanef.groupe","PCB20716","58:1C:F8:EA:00:79","10.101.243.125,10.255.4.251","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3Z","","'+02:00","2026-04-15T17:17:21.000+02:00","SANEF\LEGOURRIEREC","Cloud Agent","b43c106c-ee80-46e6-a05c-7608bd3f1962","2025-07-18T10:23:57.000+02:00","2026-04-22T11:26:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"372963503","349961268","PSX18558.sanef-int.adds","PSX18558","30:13:8B:6C:5B:78","10.100.40.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TH","","'+02:00","2026-02-17T16:15:27.000+02:00","UserSextan","Cloud Agent","e47f8b0e-8e64-4ac2-b7ef-a6f17fc6c045","2025-10-30T14:02:37.000+02:00","2026-04-22T10:32:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"186249269","236697336","ls-spare-eco","LS-SPARE-ECO","00:50:56:82:11:9E","10.4.2.253","fe80::50f4:ac3e:5ab1:1c97","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 2e 5e ce 74 bc 1f-9e 88 09 f5 12 58 b5 26","NoAssetTag","'+02:00","2026-02-16T10:36:12.000+02:00","gare","Cloud Agent","d855f860-d647-4734-b1b8-927d9c1edfb0","2023-09-05T16:07:44.000+02:00","2026-04-22T10:32:56.000+02:00","64-Bit","4","SCA,VM,GAV","OS-WIN-SRV DYN,Péage,DEX,SVP,Cloud Agent","681.0" +"340176500","336524040","PCB21287.sanef.groupe","PCB21287","30:F6:EF:A3:FE:85","10.205.0.134,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKH","","'+02:00","2026-04-20T09:09:43.000+02:00","SANEF\FRARMA","Cloud Agent","400e3e29-7cb6-46dd-afdb-d2510b825a8c","2025-07-08T16:47:10.000+02:00","2026-04-22T11:21:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"321562826","329077094","PCB23679.sanef.groupe","PCB23679","6C:0B:5E:EE:A3:3B","10.105.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBX","","'+02:00","2026-03-31T07:31:09.000+02:00","SANEF\VERET","Cloud Agent","6744b22a-d7fa-4795-bbb5-3241e15d3879","2025-05-02T11:24:44.000+02:00","2026-04-22T10:32:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"390278077","357581169","PCB23709.sanef.groupe","PCB23709","C8:6E:08:88:FD:8D","10.255.3.218,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8Q","","'+02:00","2026-03-30T22:04:26.000+02:00","SANEF\HARDY","Cloud Agent","f4cc953c-2f2c-4bdb-b134-498a4c954738","2026-01-09T18:34:41.000+02:00","2026-04-22T11:43:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"173073664","227646812","vdbocjump1.recette.adds","VDBOCJUMP1","00:50:56:9C:B2:06","10.45.8.3","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c ea 14 1d 7d 6d d5-dd cf 67 59 18 59 44 34","NoAssetTag","'+02:00","2026-04-13T16:54:28.000+02:00","RECETTE\ap01072","Cloud Agent","151d07cb-b55c-4807-a820-28731e5d429e","2023-06-05T14:24:31.000+02:00","2026-04-22T12:01:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Recette,OS-WIN-SRV DYN,Flux Libre,Cloud Agent,Windows Server,flux_libre","256.0" +"347834883","339384743","PCB24026.sanef.groupe","PCB24026","EC:4C:8C:C0:1A:6B","10.205.0.166,10.255.2.215","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDH","","'+02:00","2026-03-30T09:43:20.000+02:00","SANEF\BOYADJIAN","Cloud Agent","82ef07bb-546c-4545-87d6-cbd6079d5bc6","2025-07-31T11:37:05.000+02:00","2026-04-22T10:32:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"204326479","246307064","vpcybapsm4.sanef-int.adds","VPCYBAPSM4","00:50:56:82:03:D2","10.44.1.73","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 02 4a be 22 aa ad 74-25 a1 7d 86 e9 7b a1 bd","NoAssetTag","'+02:00","2026-03-26T08:54:14.000+02:00","kmoad-ext","Cloud Agent","76e208ba-f603-49b7-a277-4261fbfa65cb","2023-12-14T16:26:36.000+02:00","2026-04-22T10:32:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,CyberArk","56.0" +"326134718","331288786","vposapapp1.sanef.groupe","","00:50:56:90:0c:7d","10.41.20.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","39952","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 71 17 72 e1 8f 01-2f b0 da 31 86 62 f6 bb","No Asset Tag","'+02:00","2026-03-04T07:39:03.000+02:00","cybreconcile","Cloud Agent","542cb2d0-bc99-41ff-ad1d-9179f9349ee4","2025-05-21T06:58:46.000+02:00","2026-04-22T10:32:12.000+02:00","x86_64","2","SCA,VM,GAV","Production,Péage,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","141.0" +"393290213","358585062","PCB22827.sanef.groupe","PCB22827","60:45:2E:0F:3E:FD","10.255.4.148","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKD","8CC3502YKD","'+02:00","2026-04-19T14:37:02.000+02:00","SANEF\poher","Cloud Agent","b1b1a168-4618-4dff-89e1-60ca23fdbf3a","2026-01-19T12:19:52.000+02:00","2026-04-22T10:32:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"222290141","254684659","vibotcach1.sanef.groupe","","00:50:56:90:83:91","10.41.23.138","fe80::250:56ff:fe90:8391","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","13745","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 46 63 33 70 94 5a-1b fd bf 36 e5 9b 6f d8","No Asset Tag","'+02:00","2026-03-18T13:02:16.000+02:00","cybreconcile","Cloud Agent","613c7371-b7b2-4f1a-85eb-f895cb5a102e","2024-03-14T15:04:48.000+02:00","2026-04-22T10:32:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,flux_libre,FreeFlow,Production,Cloud Agent,Linux Server","140.0" +"228426057","257530556","ls-farebersviller","LS-FAREBERSVILL","00:50:56:90:62:5E","10.41.2.116","fe80::9aef:78a3:c424:bc0f","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 6b 4a 84 a6 a4 a3-ff d5 4d 03 fd 82 6a 34","NoAssetTag","'+02:00","2026-04-02T14:06:27.000+02:00","svpadmin","Cloud Agent","71424087-4260-42a8-aaaf-da0bc282fa68","2024-04-08T12:06:26.000+02:00","2026-04-22T10:32:00.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Péage,SVP,VRF_PEAGE_DC,Production,High,DEX","680.0" +"392590176","358313681","vrdsiaada1.recette.adds","VRDSIAADA1","00:50:56:9C:DA:47","10.45.0.144","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c b9 28 69 44 67 5f-b1 03 6d c6 d6 74 f3 fb","NoAssetTag","'+02:00","2026-04-20T16:11:34.000+02:00","RECETTE\a03987","Cloud Agent","69a9d751-9e52-4ef3-832d-99e288141cf9","2026-01-16T10:37:52.000+02:00","2026-04-22T10:31:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","52.0" +"305549366","322795680","vpgesbref1","","00:50:56:9c:b0:29","10.46.33.30","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f1 f8 ac 77 86 d1-87 e7 e6 08 00 3b 7d 31","No Asset Tag","'+02:00","2026-02-24T12:53:58.000+02:00","cybsecope","Cloud Agent","b787ffe4-7fd9-4005-b101-b8ca88e239c8","2025-03-05T19:51:45.000+02:00","2026-04-22T10:31:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Production,Linux Server,Cloud Agent,BDD","144.0" +"335004263","336780127","vrresardp1.recette.adds","VRRESARDP1","00:50:56:9C:78:05","10.45.8.163","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","4095","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 88 73 b3 94 23 6d-f4 43 eb 06 ef f2 7e d4","NoAssetTag","'+02:00","2026-04-21T00:30:22.000+02:00","Administrateur","Cloud Agent","525fb1c0-5e6c-4ef2-bf02-ce910310e284","2025-06-20T15:43:25.000+02:00","2026-04-22T10:31:50.000+02:00","64-Bit","2","SCA,VM,GAV","Cloud Agent,OS-WIN-SRV DYN,Radius,Recette","52.0" +"333991638","333993869","VRBURXBAN4.sanef.groupe","VRBURXBAN4","00:50:56:82:8A:02","10.30.4.4","fe80::ae8c:868a:cda4:f2f8","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 24 3a 2f a3 e9 67-0c d7 de b5 39 be 72 7c","NoAssetTag","'+02:00","2026-01-28T17:32:22.000+02:00","","Cloud Agent","5c86a922-4547-459a-bc79-42aa6a593381","2025-06-17T11:38:21.000+02:00","2026-04-22T10:31:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","347.0" +"367245149","347681437","DAI20950.sanef-int.adds","DAI20950","BC:0F:F3:87:6F:AF","10.100.70.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LLP","","'+02:00","2025-11-13T18:21:18.000+02:00","DAIUSER","Cloud Agent","a9941a36-3c7b-4650-b1b4-a82334490419","2025-10-10T14:40:21.000+02:00","2026-04-22T10:31:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"236303036","264488390","lpemvaste1","","00:17:a4:77:1c:48, 00:17:a4:77:1c:44","192.168.102.101,192.168.101.101","fe80::217:a4ff:fe77:1c48,fe80::217:a4ff:fe77:1c44","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000709","","'+02:00","2025-06-19T10:30:57.000+02:00","sanefmaj","Cloud Agent","c7591f06-e641-4961-aa38-3f79afcde08c","2024-05-13T14:57:35.000+02:00","2026-04-22T10:31:39.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,PCI Bunker EMV,EMV,PCI Bunker EMV - VLAN Stecard v17,Cloud Agent,Linux Server","668.0" +"324956494","330445994","PCB20659.sanef.groupe","PCB20659","58:1C:F8:E9:51:A1","10.255.2.225","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG3224DSM","","'+02:00","2026-03-30T08:48:54.000+02:00","SANEF\menardf","Cloud Agent","5d90b62b-4b5e-4e10-ac79-e83a41e8f70a","2025-05-15T10:37:09.000+02:00","2026-04-22T10:31:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"139157910","198270158","vmamphtp1.sanef.groupe","","00:50:56:82:6D:A2, 00:50:56:82:4A:D4, 00:50:56:82:76:04","10.41.40.35,10.41.40.37,10.41.40.38,10.43.40.35,10.43.4.35","fe80::250:56ff:fe82:6da2,fe80::250:56ff:fe82:4ad4,fe80::250:56ff:fe82:7604","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 78 5e 41 48 cd 66-58 8b 3e 5e c8 9e c5 ec","No Asset Tag","'+02:00","2024-02-13T13:59:34.000+02:00","cybreconcile","Cloud Agent","40de57c4-09f4-4a7d-9365-ecf0d6008fbd","2022-09-07T14:24:58.000+02:00","2026-04-22T10:31:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,Amelie,DEX,log4j,Trafic,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Production","349.0" +"367200068","347661226","PCB16430.sanef.groupe","PCB16430","E0:70:EA:C0:0D:10","10.100.39.40","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP ProBook 630 G8 Notebook","8","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.23.00","5CD14383YW","","'+02:00","2026-04-17T13:38:44.000+02:00","SANEF\SALUR-ext","Cloud Agent","a98a3c39-c0c8-4ddf-81bc-79b462d9af8f","2025-10-10T11:21:57.000+02:00","2026-04-22T11:52:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"176394880","229970025","vpdaibctc1","VPDAIBCTC1","00:50:56:90:C9:BA","10.41.70.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 0c ea f8 88 c9 a3-0c c9 67 e7 c3 0d 71 a2","NoAssetTag","'+02:00","2026-04-15T15:07:54.000+02:00","Administrateur","Cloud Agent","adc2e063-c3db-4fd2-98f4-8674b6bc2afa","2023-06-29T10:25:47.000+02:00","2026-04-22T10:31:16.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,DAI","484.0" +"176257351","229856102","PCB20674.sanef.groupe","PCB20674","BC:0F:F3:3D:28:16","10.205.0.87,10.26.1.115","fe80::b4a1:b642:2c3:534e","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.13.01","5CG3224DSP","","'+02:00","2026-04-20T09:01:11.000+02:00","SANEF\bacheletj","Cloud Agent","22b10833-62a3-4cd0-9728-cfa7b41fb54b","2023-06-28T15:00:19.000+02:00","2026-04-22T10:31:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"397921252","360471839","PCB18413.sanef.groupe","PCB18413","84:69:93:E1:8A:7F","10.101.243.146","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724CR","","'+02:00","2026-04-13T15:03:02.000+02:00","SANEF\MARGUIER","Cloud Agent","f50afb37-41ea-40d2-aef6-294b93bc3a89","2026-02-05T13:22:48.000+02:00","2026-04-22T10:31:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"180272387","232737900","MTR-1G1CXM3","MTR-1G1CXM3","A4:BB:6D:95:C7:24","10.100.32.209","fe80::e490:3854:1bf9:9664","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","1G1CXM3","","'+02:00","2026-04-22T02:33:18.000+02:00","Skype","Cloud Agent","8e57647b-4f93-48b9-bbc6-111a35c5365d","2023-07-27T17:51:00.000+02:00","2026-04-22T10:31:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"270583136","299979358","vpiadapki4.sanef-int.adds","VPIADAPKI4","00:50:56:9A:FB:78","10.44.3.13","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1a af fb 7d 14 5f b2-d5 c7 34 7e c6 1f a3 34","NoAssetTag","'+02:00","2026-03-23T13:04:01.000+02:00","SANEF-INT\A17402","Cloud Agent","53980d58-bdf2-4a52-9124-9104d28d2671","2024-10-07T14:44:16.000+02:00","2026-04-22T10:31:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Gestion_PKI,Production,DSI,OS-WIN-SRV DYN","253.0" +"357895561","343914997","PCB21137.sanef.groupe","PCB21137","48:EA:62:C3:70:61","10.101.243.111","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HW2","","'+02:00","2026-04-20T09:13:59.000+02:00","SANEF\THOUVENOT","Cloud Agent","c44ea5df-e795-4ef9-bc05-bb5637bcc6c0","2025-09-08T16:02:58.000+02:00","2026-04-22T11:34:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","333.0" +"364919240","346687626","PCV18560.sanef-int.adds","PCV18560","30:13:8B:6C:5B:5F","10.100.7.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TC","","'+02:00","2026-04-22T09:16:32.000+02:00","Operateur","Cloud Agent","078ab02d-953d-4dc0-b959-50be29dcc960","2025-10-02T10:03:54.000+02:00","2026-04-22T10:30:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"364961612","346701852","PCV21626.sanef-int.adds","PCV21626","D0:AD:08:A4:4E:4C","10.155.7.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711KJ","","'+02:00","2026-04-20T15:17:16.000+02:00","Operateur","Cloud Agent","05be2ac0-2987-4364-b6ae-ff1b7ceeea7a","2025-10-02T12:10:54.000+02:00","2026-04-22T10:30:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"411397277","365647003","PCB25769.sanef.groupe","PCB25769","F8:ED:FC:AB:F1:E0","10.255.3.208,10.101.243.166","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CS7","","'+02:00","2026-04-20T09:04:44.000+02:00","SANEF\MARTIN","Cloud Agent","4cd8d219-3c29-4c82-8b68-2991a15eb1ca","2026-03-25T17:38:34.000+02:00","2026-04-22T11:35:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"323213012","329817616","PCB23688.sanef.groupe","PCB23688","6C:0B:5E:EE:A3:94","10.5.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBS","","'+02:00","2026-04-20T08:33:42.000+02:00","SANEF\perardelle","Cloud Agent","a44d591d-4975-4793-b43b-b762d641b976","2025-05-09T14:12:30.000+02:00","2026-04-22T10:30:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"180099540","232621475","vdosapsrv1.sanef-rec.fr","","00:50:56:9c:8e:b5","10.45.9.66","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c e0 75 22 fd e2 d2-b7 6f 6f a8 05 e6 fe c7","No Asset Tag","'+02:00","2026-03-03T15:14:48.000+02:00","cybsupsys","Cloud Agent","c192df7b-6e91-4547-b0f1-e0e695a33d0a","2023-07-26T17:29:11.000+02:00","2026-04-22T10:30:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,DEX,Cloud Agent,Linux Server","140.0" +"372434228","349725324","PCB24185.sanef.groupe","PCB24185","10:B6:76:97:D4:E3","10.4.31.90","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLW","","'+02:00","2026-04-17T17:04:40.000+02:00","SANEF\demet-ext","Cloud Agent","77754d3b-0ef4-400f-a15d-475297b4c2e7","2025-10-28T15:11:40.000+02:00","2026-04-22T11:40:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"249286903","288667197","vrsvpasan3","VRSVPASAN3","00:50:56:9C:C3:BF","10.45.9.175","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c b4 8f 39 cb 1a be-0d 31 b3 bb 36 e1 e3 f6","NoAssetTag","'+02:00","2026-02-17T15:27:07.000+02:00","svpadmin","Cloud Agent","a5998af8-4925-44ea-8a8a-22e37cb37e7f","2024-07-08T12:33:14.000+02:00","2026-04-22T10:30:18.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Recette,SVP","500.0" +"223190130","255082708","OSA20934.sanef-int.adds","OSA20934","BC:0F:F3:87:6F:98","10.100.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LKY","","'+02:00","2026-04-09T08:30:39.000+02:00","Superviseur","Cloud Agent","dbc10f92-d610-4852-a179-01215657e6d3","2024-03-18T18:43:59.000+02:00","2026-04-22T11:45:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"321548463","329074484","PCB21535.sanef.groupe","PCB21535","D0:AD:08:A7:27:E2","10.4.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSP","8CC3502YSP","'+02:00","2026-03-29T09:12:46.000+02:00","SANEF\trevet","Cloud Agent","d28dc6ce-7e21-4e8c-886f-66175edb1f3b","2025-05-02T10:47:10.000+02:00","2026-04-22T11:55:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"165493903","221784823","vrdsiatse1.recette.adds","VRDSIATSE1","00:50:56:82:B5:25","10.45.7.39","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 9b 11 67 df 1d ce-e1 d7 8d 01 19 6a 4a af","NoAssetTag","'+02:00","2026-03-25T15:04:13.000+02:00","RECETTE\b03987","Cloud Agent","756cced4-e515-4cae-a668-829bb6811dfd","2023-04-05T16:05:59.000+02:00","2026-04-22T12:02:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","AgileTime,Recette,DRH,OS-WIN-SRV DYN,Cloud Agent,Windows Server","249.0" +"174238444","228465462","sppeaanvr22","SPPEAANVR22","20:67:7C:D8:04:71","10.41.7.121","fe80::2083:cdc6:4167:4de0","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ83804D4","","'+02:00","2026-02-06T13:09:32.000+02:00","Administrateur","Cloud Agent","6541813f-8a1d-4874-ae0a-3b72090bbdf0","2023-06-13T11:55:39.000+02:00","2026-04-22T10:30:10.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,NVR,Cloud Agent,Windows Server","523.0" +"403878605","362597201","PCV20917.sanef-int.adds","PCV20917","30:13:8B:6C:60:26","10.100.7.69","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q80","","'+02:00","2026-02-17T13:10:35.000+02:00","Operateur","Cloud Agent","3c9526fa-ed46-4426-bcb1-45cb20489ffa","2026-02-24T17:58:20.000+02:00","2026-04-22T10:30:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"311198745","331288572","vrgawagtw1.sanef-rec.fr","","00:50:56:9c:f9:9b","192.168.19.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c c5 ca c7 c2 fe 3c-05 b5 fa 43 02 8b 07 ea","No Asset Tag","'+02:00","2026-02-11T13:15:26.000+02:00","root","Cloud Agent","f2df81d0-fd0d-4e6d-8293-2d347f1fffc5","2025-03-26T20:03:06.000+02:00","2026-04-22T12:01:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Plateforme d'échange,Recette,Linux Server,Cloud Agent","58.0" +"343130510","337790143","PCB23638.sanef.groupe","PCB23638","6C:0B:5E:ED:82:07","10.152.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L75","","'+02:00","2026-04-20T08:58:11.000+02:00","SANEF\DONASCIMENTO","Cloud Agent","015dae00-7347-42c5-b7fe-e46336148280","2025-07-18T14:19:22.000+02:00","2026-04-22T10:44:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"327519043","333625855","vpgeobody1.sanef.groupe","VPGEOBODY1","00:50:56:90:CB:A2","10.41.40.171","fe80::1d43:83e0:d130:7fb2","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.18993) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 06 1e 10 6f ea d9-34 b7 13 54 26 6c 95 c7","NoAssetTag","'+02:00","2025-12-18T14:37:05.000+02:00","VPGEOBODY1\CYBSUPAPP","Cloud Agent","662e6d27-f3ab-4091-a0e2-0fcec5655f2e","2025-05-27T11:14:20.000+02:00","2026-04-22T10:29:55.000+02:00","64-Bit","2","SCA,VM,GAV","Obsolete,VRF_TRAFIC_DC,Trafic,Production,Cloud Agent,Géolocalisation,BDD-POS DYN,OS-WIN-SRV DYN","351.0" +"271287627","300466130","SVP21056.sanef-int.adds","SVP21056","D0:AD:08:A3:7B:60","10.106.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWX","","'+02:00","2026-04-16T05:02:09.000+02:00","Superviseur","Cloud Agent","92b8b64a-874a-4171-88c4-e1b8b793bd9d","2024-10-10T15:57:01.000+02:00","2026-04-22T12:00:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"159378661","211975851","VRNMSATSE1","VRNMSATSE1","00:50:56:82:D9:D4","10.43.253.5","fe80::ce5d:60d3:7bb4:3870","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 26 1c 7c b0 2a 2c-ef 34 15 40 53 08 65 35","NoAssetTag","'+02:00","2026-04-13T09:40:32.000+02:00","Administrateur","Cloud Agent","6a3be782-ee9b-40ca-bb8b-a972e8c683d9","2023-02-15T15:21:53.000+02:00","2026-04-22T10:29:53.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,DSI,OS-WIN-SRV DYN,Recette,U2000","498.0" +"139156912","198270160","vmampgtc2","","00:50:56:82:2C:BA, 00:50:56:82:1A:8B, 00:50:56:82:54:84","10.41.40.86,10.41.40.87,10.43.4.86,10.43.40.86,10.43.40.87","fe80::250:56ff:fe82:2cba,fe80::250:56ff:fe82:1a8b,fe80::250:56ff:fe82:5484","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 71 54 08 b5 2e bc-ae be e6 6f 45 96 49 92","No Asset Tag","'+02:00","2025-10-08T11:58:20.000+02:00","cybreconcile","Cloud Agent","d152cb18-e02a-415b-8806-c7afdf242069","2022-09-07T14:23:35.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MIVISU,Trafic,VRF_TRAFIC_DC,Production,Cloud Agent,Linux Server,log4j,Obsolete,DEX","876.0" +"269338854","299222837","vtdsiaquo1.sanef-rec.fr","","00:50:56:90:cb:e0","10.100.16.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 25 7e df 61 65 15-97 23 d2 66 c7 88 34 f4","No Asset Tag","'+02:00","2026-01-06T14:03:16.000+02:00","cybsecope","Cloud Agent","b1250051-e4ae-40d9-9a85-43cbe7743c73","2024-10-01T11:14:57.000+02:00","2026-04-22T10:29:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,OS-LIN-SRV DYN,BDD-ELA DYN,Linux Server,Cloud Agent","141.0" +"322326438","329422562","PCB23586.sanef.groupe","PCB23586","C8:6E:08:8A:51:01","10.205.0.152,172.20.10.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7S","","'+02:00","2026-04-21T10:52:42.000+02:00","SANEF\chaventres","Cloud Agent","d3212d34-1663-468b-b982-e19df46ff312","2025-05-06T09:49:33.000+02:00","2026-04-22T10:29:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"128593762","191409560","ls-chateau-thierry","LS-CHATEAU-THIE","00:50:56:90:24:45","10.41.2.58","fe80::f71f:7715:e547:2bfe","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 fa 71 c0 52 9a 22-6c ef c5 ef 8c 7e d6 a0","NoAssetTag","'+02:00","2026-03-24T12:51:42.000+02:00","svpadmin","Cloud Agent","569e56c1-7a4e-4fc9-ba76-92a029d74c9d","2022-06-21T11:27:23.000+02:00","2026-04-22T11:51:20.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,SVP,OS-WIN-SRV DYN,Production,Péage,High,Windows Server,Cloud Agent,VRF_PEAGE_DC","507.0" +"128622563","191429560","ls-st-omer2","LS-ST-OMER2","00:50:56:90:B2:E7","10.41.2.36","fe80::4280:cdd1:bfe3:dad7","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 20 2c 27 49 fb 5f-b5 6f 1e ee 78 ca 6a 0d","NoAssetTag","'+02:00","2026-03-04T10:33:03.000+02:00","svpadmin","Cloud Agent","a6ae2fa5-f672-43a4-86fc-98793da16e43","2022-06-21T16:56:49.000+02:00","2026-04-22T10:29:19.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,OS-WIN-SRV DYN,Windows Server,VRF_PEAGE_DC,VRF_INCONNUE,DEX,High,Péage,Production,Cloud Agent,Haute","635.0" +"295291112","317082444","vpvsaasic2","","00:50:56:8f:13:64","10.44.200.105","fe80::250:56ff:fe8f:1364","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 00 68 0b 72 0b fa-4d 1a 61 c2 af fb 06 33","No Asset Tag","'+02:00","2026-03-18T14:17:29.000+02:00","reboot","Cloud Agent","34934209-83bd-499c-90d8-93c76d3e8618","2025-01-28T12:10:02.000+02:00","2026-04-22T10:29:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIC,TAG-SIA,Cloud Agent,Linux Server","52.0" +"344395322","338350024","PCB20640.sanef.groupe","PCB20640","BC:0F:F3:3D:08:FA","10.205.0.142,10.101.243.87","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG3224DS6","","'+02:00","2026-04-20T12:37:52.000+02:00","SANEF\DEBREVERN","Cloud Agent","ce39423e-7628-40f0-8fde-55b1a54e60c5","2025-07-23T14:48:58.000+02:00","2026-04-22T11:08:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"321066786","328926383","PCB18754.sanef.groupe","PCB18754","BC:0F:F3:3D:08:C1","10.4.31.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQL","","'+02:00","2026-04-01T08:32:18.000+02:00","SANEF\MARTINEZA","Cloud Agent","14764d67-742f-4427-984d-d14c6f2f32fb","2025-04-30T17:00:23.000+02:00","2026-04-22T10:29:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"201103950","244676640","PCM20931.sanef.groupe","GTC20931","BC:0F:F3:87:6F:8C","10.78.210.20","fe80::4996:10fd:b964:8967","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.3570) 64-Bit","22H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LL7","","'+02:00","2026-04-21T15:29:11.000+02:00","SANEF\ADELINE","Cloud Agent","2648a895-cc00-4788-8f3c-64de76a38d91","2023-11-27T11:53:57.000+02:00","2026-04-22T10:29:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"395594796","359535533","PCB23624.sanef.groupe","PCB23624","C8:6E:08:8A:3C:2F","10.255.4.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5T","","'+02:00","2026-04-20T16:17:35.000+02:00","SANEF\MOULINS","Cloud Agent","0c5a5dca-4995-4ac1-8932-21dd482a2f13","2026-01-28T14:32:14.000+02:00","2026-04-22T11:36:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"238271861","269259134","ls-abbeville-est","LS-ABBEVILLE-ES","00:50:56:90:7E:72","10.41.2.98","fe80::db:ba35:af87:b24a","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 b0 10 18 d2 42 91-12 2a fb ec 8e 58 5a c9","NoAssetTag","'+02:00","2026-03-23T10:05:13.000+02:00","svpadmin","Cloud Agent","b2a25060-8525-4562-bbfd-1ec6b722b6a7","2024-05-21T14:23:07.000+02:00","2026-04-22T11:38:44.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,SVP,Péage,OS-WIN-SRV DYN","507.0" +"322590821","329576098","PCB18400.sanef.groupe","PCB18400","84:69:93:E1:2A:49","10.101.243.85","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724L1","","'+02:00","2026-03-30T12:29:16.000+02:00","SANEF\PACE","Cloud Agent","7d82208c-038a-436c-8fa6-63e39d99f7d9","2025-05-07T11:07:50.000+02:00","2026-04-22T11:43:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"129476951","192043843","vrbipbdec1.sanef.groupe","VRBIPBDEC1","00:50:56:82:F2:6A","10.45.13.163","fe80::387f:db6c:a7bb:6249","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 8d f7 03 30 d7 3d-2f 0b 58 5a ee 11 0b aa","NoAssetTag","'+02:00","2026-02-24T12:36:53.000+02:00","SANEF.GROUPE\tbaad-ext@sanef.com","Cloud Agent","5e8a7776-387c-46b2-a847-b96798868426","2022-06-28T14:40:58.000+02:00","2026-04-22T10:28:32.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Gestion commerciale,Cloud Agent,Windows Server,Recette,BDD-SQL DYN,OS-WIN-SRV DYN,DFIN,INSIDE,VRF_INCONNUE","504.0" +"319423559","328419616","PCB24047.sanef.groupe","PCB24047","EC:4C:8C:C0:25:6A","10.255.4.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDF","","'+02:00","2026-04-14T15:23:02.000+02:00","SANEF\DEFRANCQUEVILLE","Cloud Agent","d31b6a78-4b4a-490e-a27c-95b1d04a1af7","2025-04-25T15:23:15.000+02:00","2026-04-22T10:56:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","148.0" +"322101765","329334784","PCB23647.sanef.groupe","PCB23647","6C:0B:5E:EC:DD:05","10.200.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8H","","'+02:00","2026-03-28T18:30:51.000+02:00","SANEF\HAMMADI","Cloud Agent","5d32f982-7bff-4ae0-9330-d01764f2fea0","2025-05-05T14:33:59.000+02:00","2026-04-22T10:20:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"305487413","322754062","PCB22629.sanef.groupe","PCB22629","D0:AD:08:AA:4F:DF","10.107.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DS","","'+02:00","2026-04-09T08:53:04.000+02:00","SANEF\pichard","Cloud Agent","fa51fb2a-ac76-4402-bd0b-381f45087c39","2025-03-05T11:36:06.000+02:00","2026-04-22T10:28:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","50.0" +"143622225","201025557","vpemvaldap1.sanef.groupe","","00:50:56:82:0b:a2","192.168.100.127","fe80::250:56ff:fe82:ba2","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 d2 4d cb d3 26 9f-c2 1c 8b 6d 00 9b 1c fb","No Asset Tag","'+02:00","2024-09-05T11:43:35.000+02:00","root","IP Scanner, Cloud Agent","2228916e-04d4-4923-adbc-66783544dec8","2022-10-11T17:32:31.000+02:00","2026-04-22T11:54:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,BDD-POS DYN,PCI Bunker EMV - VLAN Supervision/Admin,Cloud Agent,Linux Server,VRF_INCONNUE,PCI Bunker EMV,EMV,DEX","287.0" +"174238482","228465676","sppeaanvr24","SPPEAANVR24","98:F2:B3:27:4D:B4","10.41.7.123","fe80::58d4:4d8e:9dbe:e699","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LM0","","'+02:00","2026-02-05T15:05:02.000+02:00","Administrateur","Cloud Agent","55f51f0d-5dcb-47eb-ae9d-4d40338f5f09","2023-06-13T11:58:24.000+02:00","2026-04-22T10:28:03.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,NVR,DEX","523.0" +"173084373","227657349","vdbocbsap1.sanef-rec.fr","","00:50:56:9c:5e:98","10.45.6.39","fe80::250:56ff:fe9c:5e98","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","515467","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 60 80 7d 55 e4 1e-03 07 99 46 7f 09 0b 9d","No Asset Tag","'+02:00","2026-03-11T10:05:08.000+02:00","cybsecope","Cloud Agent","f565c704-8967-4b19-9576-bc489230516a","2023-06-05T16:08:32.000+02:00","2026-04-22T10:27:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Flux Libre,Recette,flux_libre,Cloud Agent,Linux Server","141.0" +"191424454","239728562","vibooaori2.sanef.groupe","","00:50:56:90:ef:9f","10.41.22.209","fe80::250:56ff:fe90:ef9f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 36 fb e6 64 84 b1-4f fa 64 cd 12 1e c4 6e","No Asset Tag","'+02:00","2026-03-16T10:46:53.000+02:00","cybsupemo","Cloud Agent","dff34fb2-5ab0-4ac9-8202-27b31c5f9d7d","2023-10-04T18:05:31.000+02:00","2026-04-22T10:27:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,flux_libre,OS-LIN-SRV DYN,Production,Flux Libre","140.0" +"322344604","329425104","PCB23799.sanef.groupe","PCB23799","6C:0B:5E:EE:93:85","10.200.31.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3F","","'+02:00","2026-03-30T09:54:59.000+02:00","SANEF\DOREE","Cloud Agent","c98b2267-2c24-43ae-b558-1ce73ad358d8","2025-05-06T10:14:04.000+02:00","2026-04-22T11:58:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"175043726","229008771","vpaiiacol1.sanef.groupe","","00:50:56:82:80:08","10.30.11.130","fe80::250:56ff:fe82:8008","Linux / Server","The CentOS Project CentOS 8.2 (2004)","8.2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3939","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 71 a8 76 99 38 10-5a 56 59 67 16 e7 ea ba","No Asset Tag","'+02:00","2024-10-24T08:39:04.000+02:00","cybadmsys","Cloud Agent","27f4df5b-d678-4a76-854f-e96720e739b1","2023-06-19T18:42:15.000+02:00","2026-04-22T10:27:45.000+02:00","x86_64","2","SCA,VM,GAV","Collecte,Obsolete,DSI,Cloud Agent,Linux Server","59.0" +"379334198","352776055","PCB20602.sanef.groupe","PCB20602","BC:0F:F3:3B:D9:25","10.200.31.80","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3P","","'+02:00","2026-04-03T09:14:06.000+02:00","SANEF\vincents","Cloud Agent","0daf4d52-c0a7-4c1e-969b-0b8a2bc79df1","2025-11-25T15:00:39.000+02:00","2026-04-22T10:20:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"377767567","352193679","PCV20828.sanef-int.adds","PCV20828","30:13:8B:6C:5B:FF","10.12.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q88","","'+02:00","2026-04-21T12:59:57.000+02:00","Operateur","Cloud Agent","4fafe561-ebaf-488a-851c-429e4dfa0f5e","2025-11-19T16:07:06.000+02:00","2026-04-22T10:27:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"387187542","356515207","vmdgest05.recette.adds","VMDGEST05","00:50:56:9C:61:97","10.45.17.135","fe80::82eb:9019:7ac7:4de3","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c e3 2c 7e c8 b4 25-da 41 fc aa 93 da 4f 23","NoAssetTag","'+02:00","2026-04-16T01:34:48.000+02:00","supwindev","Cloud Agent","aa9ff005-bdf3-4b9b-b1ed-11f910feb697","2025-12-31T16:16:45.000+02:00","2026-04-22T10:27:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"359136877","344907763","vprpaangx1.sanef.groupe","","00:50:56:90:a1:66","10.42.0.140","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 a2 e9 6d fd 0c 29-e5 7e e7 75 40 a7 ce d9","No Asset Tag","'+02:00","2026-02-25T15:24:43.000+02:00","cybreconcile","Cloud Agent","17465e5f-6624-458b-8686-1f2032631037","2025-09-12T10:01:58.000+02:00","2026-04-22T11:34:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Péage,MID-NGINX DYN","140.0" +"322061860","329333296","PCB21278.sanef.groupe","PCB21278","30:F6:EF:A3:FE:80","192.168.1.29,10.205.0.112","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3440GJS","","'+02:00","2026-04-03T09:45:42.000+02:00","SANEF\chobriat","Cloud Agent","fbc5aa5f-1258-4b2d-b078-6a8b01f4e468","2025-05-05T14:16:00.000+02:00","2026-04-22T10:27:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"197037005","242639198","vpbckmcse2","VPBCKMCSE2","00:50:56:98:43:1E","192.168.109.5","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8027) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24575","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 18 76 bd 9d d6 d2 33-81 03 03 1a 33 0d 42 1d","NoAssetTag","'+02:00","2026-03-10T10:51:26.000+02:00","Administrator","Cloud Agent","d31c5900-e5df-4445-a5f2-b8c3bd6da3b0","2023-11-02T15:37:27.000+02:00","2026-04-22T11:02:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,BDD-SQL DYN,Gestion SAUVEGARDE,PCI Bunker EMV","347.0" +"335429142","","PCB21284.sanef.groupe","PCB21284","30:F6:EF:A6:93:C0","10.255.1.225","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK7","","'+02:00","2026-04-20T16:31:45.000+02:00","SANEF\BESNARD","Cloud Agent","086667bb-02d5-4a86-b0ea-55acc450ec40","2025-06-23T09:58:53.000+02:00","2026-04-22T10:27:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129450969","192026711","vpradbtef1.sanef.groupe","VPRADBTEF1","00:50:56:82:34:0C, 00:50:56:82:77:FC","10.41.91.41,10.41.91.42","fe80::4812:1b2c:3b43:dc2d,fe80::a730:5ed3:3712:4426","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16383","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 43 b3 18 4c d3 2e-02 c8 07 e0 0b c6 a8 4e","NoAssetTag","'+02:00","2026-04-13T09:41:29.000+02:00","Administrateur","Cloud Agent","d9dacd91-5c4b-4b12-abeb-39f6a3e24174","2022-06-28T10:46:37.000+02:00","2026-04-22T11:59:37.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,VRF_INCONNUE,BDD-SQL DYN,OS-WIN-SRV DYN,Production,Cloud Agent,Windows Server,TAIT","370.0" +"160244154","213434437","vpameaoct1","","00:50:56:82:43:9a","10.41.40.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 3a 23 80 47 a1 c1-ef 4d 30 55 c6 7c 7b 40","No Asset Tag","'+02:00","2026-01-21T10:59:29.000+02:00","cybreconcile","Cloud Agent","16907c14-62ff-4640-aee8-6b8cbf3f91db","2023-02-22T16:34:38.000+02:00","2026-04-22T11:38:05.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OCTAN,OS-LIN-SRV DYN,DEX","511.0" +"204587145","246439792","MTR-CBD4804","MTR-CBD4804","6C:3C:8C:56:3C:0A","10.209.32.200","fe80::c1d4:acb4:c070:d24a","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","CBD4804","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","5da89508-59f0-46df-af36-55326403cffc","2023-12-15T23:07:03.000+02:00","2026-04-22T10:27:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"363228698","346032420","PCB18496.sanef.groupe","PCB18496","D0:AD:08:A4:72:D5","10.205.0.27,192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FB","","'+02:00","2026-04-01T09:02:48.000+02:00","SANEF\gaillard-ext","Cloud Agent","0672bb9d-ea4b-4a96-91a0-bb63a6834708","2025-09-26T11:54:59.000+02:00","2026-04-22T10:26:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"377741241","352184805","PCV21507.sanef-int.adds","PCV21507","D0:AD:08:A3:7B:2B","10.12.7.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YXF","","'+02:00","2026-04-02T06:22:44.000+02:00","Operateur","Cloud Agent","b3dfad45-6cb8-486e-9272-dc978660e283","2025-11-19T14:48:29.000+02:00","2026-04-22T10:26:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"309350005","324171921","SVP21504.sanef-int.adds","SVP21504","D0:AD:08:A7:27:AB","10.5.2.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTF","","'+02:00","2026-04-22T07:11:00.000+02:00","Superviseur","Cloud Agent","14b435e5-4f67-4fa7-b864-c5b75f0ecac5","2025-03-19T16:14:47.000+02:00","2026-04-22T10:26:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"128614031","191424524","ls-nordausques","LS-NORDAUSQUES","00:50:56:90:B1:22","10.41.2.35","fe80::a019:9ca3:ec73:2ce3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 aa d5 90 51 c3 49-8d 1a e8 cd 86 84 fd 13","NoAssetTag","'+02:00","2026-03-02T12:33:28.000+02:00","svpadmin","Cloud Agent","83afc5fb-ea9e-49d9-8483-cc5aeffd6fb4","2022-06-21T15:42:13.000+02:00","2026-04-22T10:26:40.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,High,Péage,Production,DEX,Haute,Cloud Agent,OS-WIN-SRV DYN,Windows Server,SVP","634.0" +"223174845","255074776","ls-fresnes","LS-FRESNES","00:50:56:90:80:6E","10.142.2.20","fe80::930f:3940:f50a:f897","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 bf 76 4c 2b e5 2f-06 70 9d cd 1f 5c 45 98","NoAssetTag","'+02:00","2026-03-24T15:09:14.000+02:00","svpadmin","Cloud Agent","1f955a70-b294-480b-926f-c465a8f0a259","2024-03-18T16:52:24.000+02:00","2026-04-22T10:26:40.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,High,Péage,Production,DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN","507.0" +"236303035","264488388","lpemvaste2","","00:17:a4:77:1c:50, 00:17:a4:77:1c:4c","192.168.102.102,192.168.101.102","fe80::217:a4ff:fe77:1c50,fe80::217:a4ff:fe77:1c4c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070A","","'+02:00","2025-08-20T02:42:51.000+02:00","root","Cloud Agent","48a4db20-c5cf-4cec-8d1c-5a586d74072c","2024-05-13T14:57:35.000+02:00","2026-04-22T11:50:45.000+02:00","x86_64","4","SCA,VM,PM,GAV","PCI Bunker EMV,EMV,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17","679.0" +"231861643","259509287","vrcybapvwa1","VRCYBAPVWA1","00:50:56:9C:6E:6C","10.45.11.131","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 0e 70 68 5c 6b c1-67 31 37 52 c2 22 30 4a","NoAssetTag","'+02:00","2026-04-16T11:11:44.000+02:00","Administrator","Cloud Agent","fe3ea62a-3548-479e-b516-f335a3c8b96b","2024-04-23T18:01:23.000+02:00","2026-04-22T10:26:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN","12.0" +"392410566","358213495","vdpataels1.sanef-rec.fr","","00:50:56:9c:a9:de","10.45.9.131","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 50 06 29 fa 6b 92-c6 b7 68 76 36 60 9e 1f","No Asset Tag","'+02:00","2026-04-07T10:20:27.000+02:00","cybadmsys","Cloud Agent","6260bc0c-2644-4456-b0b2-c7744bfea354","2026-01-15T15:04:43.000+02:00","2026-04-22T11:45:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DFIN,ISIS","61.0" +"358116950","344015507","PCV22847.sanef-int.adds","PCV22847","D0:AD:08:A7:27:E6","10.100.7.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YPW","","'+02:00","2026-04-21T12:58:40.000+02:00","Operateur","Cloud Agent","af6edd4c-909e-4151-9e9d-9aacad400220","2025-09-09T12:02:39.000+02:00","2026-04-22T10:26:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"364967263","346712040","PCB21583.sanef.groupe","PCB21583","D0:AD:08:A3:E6:5D","10.5.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQN","8CC3502YQN","'+02:00","2026-04-20T13:47:49.000+02:00","SANEF\glod","Cloud Agent","83240509-74da-42f8-83b3-e6979ed695df","2025-10-02T13:44:14.000+02:00","2026-04-22T10:26:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"240378938","274668324","vibocaprx1.sanef.groupe","","00:50:56:90:14:09","192.168.21.227","fe80::250:56ff:fe90:1409","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 09 69 37 21 af 7e-b7 22 39 52 4b ba 8d 2d","No Asset Tag","'+02:00","2026-03-16T10:41:18.000+02:00","cybreconcile","Cloud Agent","0c5bac1a-0aea-4f6f-9867-7b2c9a202087","2024-05-30T10:36:42.000+02:00","2026-04-22T11:40:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,flux_libre,FreeFlow,Flux Libre,Production","144.0" +"412386089","366130708","PCB22719.sanef.groupe","PCB22719","D0:AD:08:AA:50:5D","10.208.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JV","","'+02:00","2026-04-08T10:52:10.000+02:00","SANEF\roulot","Cloud Agent","8d5f7c89-ad16-486d-87d5-8f6ea76920f4","2026-03-30T13:11:21.000+02:00","2026-04-22T10:26:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"364461654","346502400","PCV21511.sanef-int.adds","PCV21511","D0:AD:08:A7:27:B9","10.217.26.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YND","","'+02:00","2026-04-13T06:51:08.000+02:00","Operateur","Cloud Agent","e615c282-4078-40bb-a12c-85a057f7b8b7","2025-09-30T16:48:26.000+02:00","2026-04-22T10:26:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"186523049","236835850","vpiadawdc3.sanef-int.adds","VPIADAWDC3","00:50:56:9A:D8:9E","10.44.3.6","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1a 32 1c df f4 dd a7-4e 2c a3 85 6f 36 35 03","NoAssetTag","'+02:00","2026-03-24T11:51:57.000+02:00","SANEF-INT\A17402","Cloud Agent","d8fdf8e7-e633-4faa-a7f5-54609464b7bb","2023-09-06T15:59:17.000+02:00","2026-04-22T11:45:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,AD","250.0" +"160222392","213244072","vrsupbmap1.sanef.groupe","","00:50:56:82:b1:ad","10.45.0.198","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 82 1d c5 cf 36 0f-7b 06 b7 a8 c8 f9 f4 74","No Asset Tag","'+02:00","2026-03-11T11:25:54.000+02:00","cybadmsys","Cloud Agent","4fe54dac-8a51-4245-8075-07d26fb341f3","2023-02-22T13:03:42.000+02:00","2026-04-22T10:26:10.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,DSI,flux_libre,Flux Libre,Production","288.0" +"208784156","248752400","vibotatsp1.sanef.groupe","","00:50:56:90:f4:eb","10.41.23.144","fe80::250:56ff:fe90:f4eb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 35 6b 1e ea d8 f9-74 c2 b6 f3 29 18 a7 c8","No Asset Tag","'+02:00","2026-03-18T10:30:12.000+02:00","root","Cloud Agent","d4710f92-cb1c-44d5-953b-527a94b38c0a","2024-01-10T13:43:46.000+02:00","2026-04-22T10:26:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","140.0" +"408007431","364324874","PCB18443.sanef.groupe","PCB18443","70:A8:D3:85:B8:EE","10.205.0.16,172.20.10.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724L9","","'+02:00","2026-04-20T09:19:26.000+02:00","SANEF\hammadou-ext","Cloud Agent","f3b4ee29-93e2-496f-83e9-131a5d4c499f","2026-03-12T17:17:50.000+02:00","2026-04-22T11:04:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"370158037","348777008","PCB21112.sanef.groupe","PCB21112","E4:60:17:CB:7C:8F","10.205.0.141,192.168.8.219","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764F3","","'+02:00","2026-04-16T14:16:47.000+02:00","SANEF\FELOUAT-ext","Cloud Agent","a749b150-fb9d-426d-b31e-edc02ac4476a","2025-10-20T12:42:03.000+02:00","2026-04-22T11:12:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"321058844","328926997","PCB23758.sanef.groupe","PCB23758","6C:0B:5E:EE:83:82","10.105.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H44","","'+02:00","2026-03-30T12:18:37.000+02:00","SANEF\BIGAND","Cloud Agent","e2c426e9-5ac6-41d2-8054-50d19c566841","2025-04-30T17:08:16.000+02:00","2026-04-22T10:25:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"213850235","251125958","sppeaanvr11","SPPEAANVR11","D4:F5:EF:50:56:4D","10.41.7.110","fe80::3639:b9ea:5a49:ec64","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DVB","","'+02:00","2026-02-03T11:07:05.000+02:00","Administrateur","Cloud Agent","6dc6ccce-0687-40ab-ad35-a709772c1ebd","2024-02-05T19:47:01.000+02:00","2026-04-22T10:25:36.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN,DEX","523.0" +"363889479","346366629","PCB21608.sanef.groupe","PCB21608","D0:AD:08:A4:4D:B1","10.12.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JY","8CC34711JY","'+02:00","2026-04-20T12:59:10.000+02:00","SANEF\schmitto","Cloud Agent","a7e39a88-b787-4172-bd6e-f9d4fa55dd31","2025-09-29T13:34:08.000+02:00","2026-04-22T10:25:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"139157943","198270298","vmampmet2","","00:50:56:82:2B:88, 00:50:56:82:21:85, 00:50:56:82:66:C4","10.41.40.78,10.41.40.79,10.43.40.78,10.43.40.79,10.43.4.78","fe80::250:56ff:fe82:2b88,fe80::250:56ff:fe82:2185,fe80::250:56ff:fe82:66c4","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 70 9d 87 5f df 23-cb 06 4c 49 6e b6 8d 73","No Asset Tag","'+02:00","2024-02-14T14:14:42.000+02:00","cybreconcile","Cloud Agent","72fb8c0b-b87a-4c72-b45e-7de93f23ecf1","2022-09-07T14:28:06.000+02:00","2026-04-22T11:51:58.000+02:00","x86_64","5","SCA,VM,PM,GAV","Production,Obsolete,VRF_TRAFIC_DC,OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,log4j,Trafic,MIVISU","878.0" +"197806642","243075126","nvr-spare-sen","NVR-SPARE-SEN","00:50:56:82:1A:CB","10.100.7.252","fe80::7528:d7bc:a9a5:421a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 45 02 72 5f 3f 0e-c8 a3 5c 8b d7 30 bb 82","NoAssetTag","'+02:00","2026-01-28T15:18:36.000+02:00","Administrateur","Cloud Agent","5b15fe79-3ccc-4ba6-9687-d3908f115a35","2023-11-07T11:15:53.000+02:00","2026-04-22T10:25:25.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,NVR","523.0" +"287937932","311537311","vrosapels2.sanef-rec.fr","","00:50:56:9c:33:b0","10.45.9.72","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f2 57 d9 e5 2c 78-d1 5e b5 e1 ad e9 62 81","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","reboot","Cloud Agent","d6e43cba-b9c2-4040-8c1e-b517722e33ce","2024-12-20T13:09:32.000+02:00","2026-04-22T10:25:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server","142.0" +"365237392","346827582","PCV22900.sanef-int.adds","PCV22900","D0:AD:08:A3:E7:8C","10.100.7.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YMW","","'+02:00","2026-03-30T09:56:49.000+02:00","Operateur","Cloud Agent","ee7ca3e0-a218-487d-b893-f9f04f90170c","2025-10-03T14:31:50.000+02:00","2026-04-22T11:15:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"127940862","190974340","vpemvatse2.sanef.groupe","VPEMVATSE2","00:50:56:82:49:D5","192.168.100.123","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 a4 61 29 10 06 99-4f d7 9c e4 b7 e0 d1 77","NoAssetTag","'+02:00","2025-10-14T10:04:09.000+02:00","VPEMVATSE2\dumont","Cloud Agent","274335d6-9183-4540-b028-84a6b45731cb","2022-06-15T09:27:03.000+02:00","2026-04-22T10:25:17.000+02:00","64-Bit","4","SCA,VM,PM,GAV","PCI Bunker EMV - VLAN Supervision/Admin,DEX,OS-WIN-SRV DYN,Sans,DMZ,Production,Windows Server,PCI Bunker EMV,EMV,Cloud Agent","695.0" +"399595897","361209935","PCB21071.sanef.groupe","PCB21071","D0:AD:08:A3:E6:AF","10.100.39.126","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMK","","'+02:00","2026-04-09T20:51:50.000+02:00","SANEF\alvesa","Cloud Agent","3cc04e9e-9ff1-4f2b-b046-c0b8d1b590ce","2026-02-12T13:03:30.000+02:00","2026-04-22T11:48:19.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Workstation,Cloud Agent,Forescout","493.0" +"113584905","181185075","vpdecasas8.sanef.groupe","","00:50:56:82:21:8d","10.30.11.156","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2200","Intel(R) Xeon(R) CPU E5-4660 v4 @ 2.20GHz","257964","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 aa 81 37 79 5d 13-9b 16 72 cf 17 10 38 43","No Asset Tag","'+02:00","2026-03-25T11:53:14.000+02:00","cybreconcile","Cloud Agent","c9cc1609-7e02-495f-bd01-409cde65e06e","2022-02-15T15:08:08.000+02:00","2026-04-22T12:02:12.000+02:00","x86_64","3","SCA,VM,PM,GAV","Production,VRF_INCONNUE,SAS,OS-LIN-SRV DYN,ServersInCyberark,Cloud Agent,Linux Server,Obsolete,DSI","71.0" +"345675238","338901927","PCB23559.sanef.groupe","PCB23559","C8:6E:08:88:F0:59","10.205.0.7,10.255.4.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5L","","'+02:00","2026-04-08T09:08:46.000+02:00","SANEF\TOUTAIN","Cloud Agent","7140e411-40b8-4ba0-a178-a0cd89d029c2","2025-07-28T14:24:34.000+02:00","2026-04-22T11:43:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"363225908","346028426","PCV18682.sanef-int.adds","PCV18682","30:13:8B:6C:79:90","10.100.7.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473W0","","'+02:00","2026-04-22T06:59:23.000+02:00","Operateur","Cloud Agent","f3a193d0-b64c-4cf5-ab64-f00121aaf051","2025-09-26T11:09:26.000+02:00","2026-04-22T10:25:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"175948102","229616407","vppatbsip1.sanef.groupe","","00:50:56:82:9d:b6","10.42.40.10","fe80::875:558:2c8f:990d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63886","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 04 53 a7 0b 19 47-f5 65 cd a9 59 b7 1c d6","No Asset Tag","'+02:00","2026-04-16T16:09:23.000+02:00","cybreconcile","Cloud Agent","238ba139-c4ff-4e05-88e4-315c0d456ba9","2023-06-26T16:20:40.000+02:00","2026-04-22T11:51:20.000+02:00","x86_64","4","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,ISIS,Cloud Agent,Linux Server,TAG-SRVEXPOSEINDIRECT,DFIN","113.0" +"175415700","229250370","vvbocharg2.sanef-rec.fr","","00:50:56:9c:f6:5c","10.45.6.8","fe80::250:56ff:fe9c:f65c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 2a 02 73 5d 71 89-fe 0d 0a 73 4e f7 43 d3","No Asset Tag","'+02:00","2026-03-09T11:12:28.000+02:00","cybsupsys","Cloud Agent","0bc8a46d-7335-4c96-b45d-aa680d71c021","2023-06-22T11:01:56.000+02:00","2026-04-22T11:54:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,MID-APACHE-TOMCAT DYN,Flux Libre","142.0" +"363309467","346059428","vrdsiaadg1.recette.adds","VRDSIAADG1","00:50:56:9C:E1:2C","10.45.16.3","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 48 ed 70 3e fe 85-da ce 3a de 2b f2 86 c4","NoAssetTag","'+02:00","2026-04-20T17:26:12.000+02:00","Administrateur","Cloud Agent","32b78cc6-7488-469c-87c9-d6ebc99b0fd2","2025-09-26T16:52:26.000+02:00","2026-04-22T10:24:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Recette,AD,OS-WIN-SRV DYN,Cloud Agent","52.0" +"220106403","253726787","OSA20952.sanef-int.adds","OSA20952","BC:0F:F3:87:6F:A1","10.12.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LKT","","'+02:00","2026-04-09T13:01:40.000+02:00","Superviseur","Cloud Agent","43f1dd4c-384d-4b20-8cf3-91aff7f053c4","2024-03-05T13:39:12.000+02:00","2026-04-22T11:39:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"382798622","354134334","PCB22283.sanef.groupe","PCB22283","D0:AD:08:A3:7D:00","10.252.42.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZD","8CC3502YZD","'+02:00","2026-04-21T08:17:39.000+02:00","SANEF\perrinse","Cloud Agent","ff748616-80f7-4902-8567-87361dee16d6","2025-12-09T18:40:03.000+02:00","2026-04-22T11:49:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"295300195","317119406","vpvsaasic1","","00:50:56:8f:35:45","10.44.200.104","fe80::250:56ff:fe8f:3545","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 55 23 06 2b d2 c0-fa ed 85 7f 9a 6f 7c 07","No Asset Tag","'+02:00","2026-02-02T13:02:56.000+02:00","root","Cloud Agent","75424e16-2fee-4d17-a073-6dc653ef1520","2025-01-28T14:30:58.000+02:00","2026-04-22T10:24:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,TAG-SIC,TAG-SIA","52.0" +"324140248","","PCB18113.sanef.groupe","PCB18113","64:D6:9A:1D:2B:A3","10.205.0.181,192.168.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSX","","'+02:00","2026-04-13T10:32:34.000+02:00","SANEF\HENRYS","Cloud Agent","126dea48-482f-4cc8-90ca-662f20f50a43","2025-05-12T16:52:36.000+02:00","2026-04-22T10:24:13.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"363969483","346387491","vptrabmut1.sanef.groupe","","52:54:00:7d:a0:29, 52:54:00:43:7d:b5, 52:54:00:63:38:b5","192.168.17.6,10.41.40.230,10.41.40.232,10.41.40.234,10.41.40.235,192.168.17.133","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-26T15:52:24.000+02:00","oracle","Cloud Agent","2c191b39-4c8b-4d5e-8fbe-40599367b65b","2025-09-29T16:50:18.000+02:00","2026-04-22T10:38:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Production,BDD,MID-APACHE-TOMCAT DYN","339.0" +"240208314","274077840","vpbooardp1.sanef.groupe","VPBOOARDP1","00:50:56:90:5D:3B","10.44.6.131","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 da b6 a1 1e 8b 9e-96 a8 c6 ec ef e6 32 17","NoAssetTag","'+02:00","2026-04-07T10:51:44.000+02:00","SANEF\ndead","Cloud Agent","2ece3099-539b-4a4f-9e8f-e7a0f7f07b04","2024-05-29T17:37:25.000+02:00","2026-04-22T10:24:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,Production,flux_libre,OS-WIN-SRV DYN,Cloud Agent,Windows Server","250.0" +"191424299","239728327","vibooaori1.sanef.groupe","","00:50:56:90:bf:0a","10.41.22.208","fe80::250:56ff:fe90:bf0a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1c a2 e3 a1 9a 47-e2 48 00 9c a6 34 16 5f","No Asset Tag","'+02:00","2026-03-16T10:43:53.000+02:00","cybsupemo","Cloud Agent","c017ef11-d65e-4155-8681-9c96b9abfea1","2023-10-04T18:03:36.000+02:00","2026-04-22T10:23:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","142.0" +"333168741","333625858","vrvidanvr2.recette.adds","VRVIDANVR2","00:50:56:9C:1E:AC","10.45.7.102","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 96 54 b2 e1 93 38-96 5d 51 21 53 e7 d3 ea","NoAssetTag","'+02:00","2026-01-05T10:23:38.000+02:00","Administrateur","Cloud Agent","d04c8fe4-d3a9-4ba0-9544-f7102dae68f6","2025-06-13T12:29:56.000+02:00","2026-04-22T12:01:27.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,OS-WIN-SRV DYN,Cloud Agent,Recette","519.0" +"366063141","347188660","PCB24144.sanef.groupe","PCB24144","80:C0:1E:16:60:C0","10.101.243.84,10.255.1.206","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook X G1i Notebook","8","2200","Intel(R) Core(TM) Ultra 7 258V","32241","HP X90 Ver. 01.01.07","5CG5112759","","'+02:00","2026-04-13T11:14:02.000+02:00","SANEF\CHAIX","Cloud Agent","39645925-df68-41bc-b265-8ce832ffeda4","2025-10-07T11:52:47.000+02:00","2026-04-22T11:41:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"355464746","342872821","PBM22810.sanef-int.adds","PBM22810","D0:AD:08:A7:28:53","10.100.50.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YP5","","'+02:00","2026-04-07T15:43:54.000+02:00","Operateur","Cloud Agent","683a340d-5d44-4327-b769-2d4b89cda980","2025-08-29T14:32:51.000+02:00","2026-04-22T10:23:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"383183107","354341140","PCB25895.sanef.groupe","PCB25895","C4:0F:08:F2:7D:A3","10.255.4.171","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534221R","","'+02:00","2026-04-14T08:43:31.000+02:00","SANEF\WALTER","Cloud Agent","2c1e9a11-83f4-4f93-ab01-e036445e00e9","2025-12-11T10:03:08.000+02:00","2026-04-22T12:01:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","330.0" +"335441959","334612886","vtdsiatmp4.sanef.groupe","","00:50:56:9c:4f:67","10.43.253.7","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 91 dc 94 43 2e bb-81 8e bf 75 ee 1e 93 2e","No Asset Tag","'+02:00","2026-04-14T14:37:24.000+02:00","root","Cloud Agent","8866e5e5-d66b-4ac4-9800-a8e3525be2c1","2025-06-23T10:44:00.000+02:00","2026-04-22T10:23:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","test_rhel9,Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"213847569","251124491","sppeaanvr5","SPPEAANVR5","F4:03:43:3E:DA:5F","10.41.7.104","fe80::f4e2:1bb2:d154:d8bc","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLX","","'+02:00","2026-01-28T15:57:25.000+02:00","Administrateur","Cloud Agent","7b23fdbe-178d-40fa-9fd9-a9e478ff42e4","2024-02-05T19:20:56.000+02:00","2026-04-22T10:23:31.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,NVR","509.0" +"384791163","355167261","PCB16089.sanef.groupe","PCB16089","48:9E:BD:4B:90:F7","10.100.39.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129283H","8CC129283H","'+02:00","2026-04-01T08:25:35.000+02:00","SANEF\psi","Cloud Agent","645af519-f12f-4c60-a14d-4b7d30d22afe","2025-12-18T13:48:58.000+02:00","2026-04-22T10:23:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"364163892","346466171","PCB21584.sanef.groupe","PCB21584","D0:AD:08:A3:7B:D2","10.5.30.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVW","8CC3502YVW","'+02:00","2026-03-28T09:13:40.000+02:00","SANEF\dumas","Cloud Agent","e36b6a73-98fb-491a-a4e8-7cc461aa2856","2025-09-30T11:06:26.000+02:00","2026-04-22T10:23:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"372122822","349584353","vppciamft1.sanef.groupe","","00:50:56:86:f9:ac","192.168.101.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 06 9b be e3 fd be 93-2f 5f 46 bd 01 4a fd 3d","No Asset Tag","'+02:00","2025-06-10T14:29:29.000+02:00","root","Cloud Agent","a8669d13-053b-4aa8-9e3f-b23f852d9a05","2025-10-27T13:56:29.000+02:00","2026-04-22T10:23:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","334.0" +"193226459","240735722","vibocs4ci1.sanef.groupe","","00:50:56:90:e0:2c","10.41.22.69","fe80::250:56ff:fe90:e02c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","92112","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c7 20 18 e4 be 9f-46 22 ff d7 3f b9 28 3c","No Asset Tag","'+02:00","2026-03-16T16:13:00.000+02:00","root","Cloud Agent","5a870b8a-94dc-4da1-83f6-46abced9cf6d","2023-10-13T13:27:19.000+02:00","2026-04-22T11:58:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,flux_libre,Flux Libre","143.0" +"131275076","193321025","vpaiiapol6","","00:50:56:82:80:89","10.40.2.40","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ca 4d 52 2a c3 ed-d6 0e 34 dd 06 91 ee f3","No Asset Tag","'+02:00","2024-06-05T14:32:22.000+02:00","cybadmsys","Cloud Agent","c557d007-c6ac-4eb6-8413-cddc52b3e53f","2022-07-12T15:48:39.000+02:00","2026-04-22T10:23:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,Centreon,DSI,BDD-POS DYN,BDD-SQL DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,Sans,Production,Outils prod (Monitoring, NMS, gestion de parc),Obsolete","462.0" +"129356503","191963822","vpsaaanvr1","VPSAAANVR1","00:50:56:82:91:E0","10.117.2.11","fe80::dff1:76c0:14af:311d","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 27 28 19 a3 c1 b0-6d 34 5b b9 89 48 44 7c","NoAssetTag","'+02:00","2026-03-02T14:20:06.000+02:00","Administrateur","Cloud Agent","5e21a4af-3ded-402d-a109-2ee0b217b2d8","2022-06-27T18:17:35.000+02:00","2026-04-22T11:54:29.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Production,Exploitation,VRF_INCONNUE,DEX","508.0" +"178201254","231275965","ls-hochfelden-ouest","LS-HOCHFELDEN-O","00:50:56:90:91:0A","10.41.2.114","fe80::d55e:1578:a803:55c3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 31 20 c9 b9 35 c3-04 9f db bb 1c 43 2f ed","NoAssetTag","'+02:00","2026-04-02T15:20:26.000+02:00","svpadmin","Cloud Agent","5c1359d2-657f-46f8-99fe-287ab3e2332a","2023-07-12T15:48:20.000+02:00","2026-04-22T11:56:17.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,DEX,OS-WIN-SRV DYN,SVP","680.0" +"362017413","345539808","PCB24097.sanef.groupe","PCB24097","10:B6:76:95:8B:95","10.202.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYP","","'+02:00","2026-04-21T08:59:09.000+02:00","SANEF\PILLOND","Cloud Agent","892a989d-f542-4754-a633-33efcbc16502","2025-09-22T15:49:44.000+02:00","2026-04-22T10:23:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"348983322","341472430","PCB18102.sanef.groupe","PCB18102","38:CA:84:52:F8:8C","10.205.0.183,10.101.243.123","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRJ","","'+02:00","2026-04-20T14:55:46.000+02:00","SANEF\HALLAK","Cloud Agent","f8781a99-2474-4189-bb76-9220c19dc330","2025-08-18T11:54:30.000+02:00","2026-04-22T11:48:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"365792814","347053025","vpdatafrt1.sanef.groupe","","00:50:56:90:37:c5","192.168.40.99","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 32 5c c2 b4 f2 1d-01 04 cc 83 de 99 f6 de","No Asset Tag","'+02:00","2026-01-27T15:49:10.000+02:00","cybreconcile","Cloud Agent","9deacc13-d798-41ec-b0ca-7638a295b0b5","2025-10-06T10:46:20.000+02:00","2026-04-22T11:47:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent","141.0" +"167745827","224050667","vpmetaquo1.sanef.groupe","","00:50:56:82:bd:67","10.100.16.5","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 be 69 76 a2 c5 c6-cd a1 17 01 56 e8 4b 59","No Asset Tag","'+02:00","2026-01-29T15:52:00.000+02:00","cybreconcile","Cloud Agent","e45a9a3d-9c60-4b85-a734-9a4c7f17a71d","2023-04-24T14:45:11.000+02:00","2026-04-22T11:47:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DSI,Cloud Agent,Linux Server,3PAR","142.0" +"281019346","305755499","PCB21331.sanef.groupe","PCB21331","D0:AD:08:AA:50:AE","10.202.31.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MG","","'+02:00","2026-04-14T14:55:27.000+02:00","SANEF\noelm","Cloud Agent","35d7fcce-9f7d-4b63-9a4c-cee14df0a8ec","2024-11-21T13:45:46.000+02:00","2026-04-22T10:29:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"397215782","360255955","PCB24338.sanef.groupe","PCB24338","10:B6:76:95:8B:BC","10.4.31.72","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZY","","'+02:00","2026-04-07T09:22:42.000+02:00","SANEF\champy","Cloud Agent","021e003d-b67a-4f9b-8052-928e29d1e6e3","2026-02-03T18:58:21.000+02:00","2026-04-22T10:22:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"364969640","346712263","PCV21516.sanef-int.adds","PCV21516","D0:AD:08:A3:E7:2F","10.100.7.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YTR","","'+02:00","2026-03-29T02:20:29.000+02:00","Operateur","Cloud Agent","6a08887d-2a4a-47c7-857d-40ef7c1a64b1","2025-10-02T13:47:39.000+02:00","2026-04-22T11:51:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"381719252","353650440","VRBURXBAN6.sanef.groupe","VRBURXBAN6","00:50:56:82:11:D9","10.30.4.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 89 79 06 a6 f9 11-ea 35 02 a7 19 cc 53 14","NoAssetTag","'+02:00","2026-04-15T08:59:07.000+02:00","","Cloud Agent","4043910d-6a8c-4b06-8518-79ce684141ff","2025-12-04T18:49:29.000+02:00","2026-04-22T10:22:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"370394464","348882264","PCB21159.sanef.groupe","PCB21159","F0:20:FF:9B:0A:CD","10.205.0.158,192.168.1.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HV3","","'+02:00","2026-04-16T14:05:06.000+02:00","SANEF\gaspards","Cloud Agent","e8b80660-6360-4691-b10c-471732e01bad","2025-10-21T11:44:47.000+02:00","2026-04-22T10:22:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"236872619","266140980","vpechatre4.sanef.groupe","","00:50:56:90:e7:4f","10.42.16.136","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7d 1c 93 aa ac dd-d9 02 10 09 ba 24 9e 4d","No Asset Tag","'+02:00","2025-11-18T16:03:15.000+02:00","cybreconcile","Cloud Agent","4668f5d0-df8d-4488-89d9-af1275a5aa73","2024-05-15T12:24:05.000+02:00","2026-04-22T11:54:57.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,TALEND,Production,Cloud Agent,Linux Server","208.0" +"334993487","","PCB24116.sanef.groupe","PCB24116","C8:58:B3:0B:5B:F3","10.255.1.223","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6J","","'+02:00","2026-04-18T21:18:30.000+02:00","SANEF\BROCHOT","Cloud Agent","52d0909f-35df-4777-b8d3-3884b8ad3bfd","2025-06-20T15:04:05.000+02:00","2026-04-22T10:22:40.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"355211523","342758565","PCB20714.sanef.groupe","PCB20714","58:1C:F8:EA:65:F5","10.255.3.234,10.205.0.160","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224CSQ","","'+02:00","2026-04-10T10:36:27.000+02:00","SANEF\BEEHAREE","Cloud Agent","1587ef44-d11d-49ac-8b6f-cc33526e4a23","2025-08-28T15:44:26.000+02:00","2026-04-22T11:46:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"128519851","191357881","ls-beauvais-nord","LS-BEAUVAIS-NOR","00:50:56:90:35:FC","10.41.2.91","fe80::148:3589:905c:1a7d","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 c5 f4 58 c0 34 bd-c4 a7 4c 0a 02 08 d5 ba","NoAssetTag","'+02:00","2026-03-23T15:33:17.000+02:00","svpadmin","Cloud Agent","f49e83c7-e21d-4f03-8e06-69c7ff9e40cd","2022-06-20T18:08:47.000+02:00","2026-04-22T10:22:29.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_PEAGE_DC,SVP,OS-WIN-SRV DYN,Cloud Agent,DEX,Production,High,Péage,Windows Server","507.0" +"202413303","245310749","vrameasxt3.sanef-rec.fr","","00:50:56:9c:14:8b, 00:50:56:9c:39:30","10.45.4.62,10.45.2.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 86 19 b0 fe 39 4c-c1 f0 ac 35 71 b1 a2 30","No Asset Tag","'+02:00","2026-04-20T15:20:56.000+02:00","cybadmsys","Cloud Agent","fb7b130d-8e2f-429c-939f-a07d0fa2cfd4","2023-12-04T17:29:51.000+02:00","2026-04-22T11:56:41.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","95.0" +"408021532","364319420","PCB21068.sanef.groupe","PCB21068","D0:AD:08:A3:7B:39","10.100.39.168","fe80::4ff9:db25:473a:b9ea","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.21.00","8CC3502YV6","","'+02:00","2026-03-30T16:54:59.000+02:00","SANEF\PSI","Cloud Agent","42054544-0fd5-4c47-9bdc-d80780361f39","2026-03-12T16:22:02.000+02:00","2026-04-22T10:22:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"316480701","327280954","PCB9998.sanef.groupe","PCB9998","3C:52:82:4F:19:B5","10.4.31.15","fe80::81bc:b82a:fe03:dd98","Windows / Client","Microsoft Windows 7 Enterprise (6.1 SP1 Build 7601.24544)","6.1","Computers / Desktop","HP EliteDesk 800 G3 Desktop","4","3201","Intel(R) Core(TM) i5-6500 CPU @ 3.20GHz","8071","HP P01 Ver. 02.07","CZC74589GB","CZC74589GB","'+02:00","2025-11-20T10:32:48.000+02:00","SANEF\pctsanef","Cloud Agent","216e6922-de9e-454b-8a0f-d285be1f7507","2025-04-15T12:25:32.000+02:00","2026-04-22T10:22:21.000+02:00","64 bits","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"129362237","191964726","vphdnanvr1","VPHDNANVR1","00:50:56:82:1F:72","10.147.1.10","fe80::6ccf:223b:6020:6040","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 cb b1 a3 4a 8c c5-05 09 82 49 83 36 ef 13","NoAssetTag","'+02:00","2026-03-17T14:04:37.000+02:00","Administrateur","Cloud Agent","7fdd04d7-73dd-4760-af3b-f358a02000d4","2022-06-27T18:34:13.000+02:00","2026-04-22T11:58:47.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,DEX,Exploitation,Production,NVR,OS-WIN-SRV DYN","508.0" +"321554503","329081443","PCB21066.sanef.groupe","PCB21066","D0:AD:08:A3:7C:CA","10.139.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YY5","8CC3502YY5","'+02:00","2026-03-28T09:11:28.000+02:00","SANEF\verhulstf","Cloud Agent","761408d4-b694-411f-9b51-e73ab827ebcc","2025-05-02T12:19:41.000+02:00","2026-04-22T11:05:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"351146339","341063799","VRBURXBAN10.sanef.groupe","VRBURXBAN10","00:50:56:82:B7:D9","10.30.4.10","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 f7 8b ce fb c7 69-52 3e 18 ef 16 e1 de 1f","NoAssetTag","'+02:00","2026-04-15T10:15:17.000+02:00","SANEF\BILLARD-ext","Cloud Agent","759c3c1c-16f4-42c7-87b3-f107da04a51c","2025-08-13T17:28:24.000+02:00","2026-04-22T10:22:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","351.0" +"323153594","329804022","PCB22851.sanef.groupe","PCB22851","D0:AD:08:A7:28:2B","10.219.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJR","","'+02:00","2026-04-10T12:48:29.000+02:00","SANEF\lambertl","Cloud Agent","460abfb5-fb6e-4a19-92a3-07e186b42375","2025-05-09T11:23:30.000+02:00","2026-04-22T10:22:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"358926256","344346980","PCB24226.sanef.groupe","PCB24226","10:B6:76:95:8B:B0","10.89.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZK","","'+02:00","2026-04-10T14:00:27.000+02:00","SANEF\couvreur","Cloud Agent","40fbcb08-228b-4b23-87eb-429003c64927","2025-09-11T18:05:34.000+02:00","2026-04-22T10:22:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","253.0" +"414925193","367241504","SVP22876.sanef-int.adds","SVP22876","D0:AD:08:A7:27:CB","10.142.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.21.00","8CC3502YL1","","'+02:00","2026-04-18T09:34:53.000+02:00","Superviseur","Cloud Agent","780acbb8-a46f-45d5-b0e0-560538703ef4","2026-04-10T12:04:57.000+02:00","2026-04-22T10:22:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"294135637","316159330","vradvangx1.sanef-rec.fr","","00:50:56:9c:1d:06","192.168.20.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7696","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d3 be 42 6a 65 f4-d8 e7 02 31 3c 8d b4 35","No Asset Tag","'+02:00","2026-02-18T15:32:01.000+02:00","root","Cloud Agent","8feb517e-05d5-42e2-8b25-112def6329c1","2025-01-22T13:33:18.000+02:00","2026-04-22T10:22:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,ADV-U,Recette","54.0" +"305108644","322677327","PCB22663.sanef.groupe","PCB22663","D0:AD:08:AA:4F:D1","10.107.31.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DB","","'+02:00","2026-04-13T09:04:21.000+02:00","SANEF\vare","Cloud Agent","2aab1725-8f0c-4fd5-8abb-006393bad0bf","2025-03-04T17:01:28.000+02:00","2026-04-22T10:21:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"155037339","208611641","ls-saverne","LS-SAVERNE","00:50:56:90:4A:20","10.41.2.112","fe80::e3f:f085:f701:2a38","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a3 f2 31 85 43 ea-10 53 73 dc d8 07 84 eb","NoAssetTag","'+02:00","2026-03-03T10:03:26.000+02:00","svpadmin","Cloud Agent","108e8d5e-3e71-4e3e-84c4-15e88cba307a","2023-01-11T20:12:38.000+02:00","2026-04-22T11:56:04.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,High,Production,Péage,VRF_PEAGE_DC,OS-WIN-SRV DYN,SVP,Cloud Agent,Windows Server","681.0" +"358140645","344038672","vrdsibarc1.sanef-rec.fr","","00:50:56:9c:e6:6a","10.45.15.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a4 e1 44 00 0e 2f-83 ae a4 21 0c 33 0e 58","No Asset Tag","'+02:00","2026-04-20T15:37:16.000+02:00","cybsupapp","Cloud Agent","acc111a7-8e4c-48cb-aa3b-74104257f29c","2025-09-09T15:12:14.000+02:00","2026-04-22T11:53:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,BDD,Recette,Linux Server,Cloud Agent,BDD-POS DYN","152.0" +"397475889","360376396","vmmvscdem3.sanef-int.adds","VMMVSCDEM3","00:50:56:90:55:8C","10.41.7.237","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 9c 12 f2 32 d8 c5-77 a2 45 8d 02 aa dc 48","NoAssetTag","'+02:00","2026-04-02T16:07:05.000+02:00","Operateur","Cloud Agent","903617c9-4561-42fa-afed-d77d58f61ac1","2026-02-04T18:57:53.000+02:00","2026-04-22T10:21:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"188071336","237782793","MTR-5Q3J8Y3","MTR-5Q3J8Y3","6C:3C:8C:3D:5C:52","10.12.32.202","fe80::6967:3d23:bb54:958b","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","5Q3J8Y3","","'+02:00","2026-04-22T02:33:05.000+02:00","Skype","Cloud Agent","226c1142-9d1f-4352-991b-9a96e1563686","2023-09-15T11:28:46.000+02:00","2026-04-22T10:21:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"195401077","241773075","vpbotrssm2.sanef.groupe","","00:50:56:90:56:56","10.41.23.9","fe80::250:56ff:fe90:5656","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 72 d8 03 18 55 c7-ad 9e 33 08 c8 c7 fe 77","No Asset Tag","'+02:00","2026-04-21T11:17:35.000+02:00","cybreconcile","Cloud Agent","c165f7bf-9fb6-4f01-8d85-f785caab184e","2023-10-24T23:34:18.000+02:00","2026-04-22T11:49:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Production","139.0" +"395080589","359295982","MIO22284.sanef-int.adds","MIO22284","D0:AD:08:A3:7C:F9","10.200.40.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YZH","","'+02:00","2026-04-19T14:56:51.000+02:00","Operateur","Cloud Agent","5385de83-6c3d-4ed6-8566-4e6bd05086c3","2026-01-26T13:34:18.000+02:00","2026-04-22T10:21:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"204376373","246340955","MTR-BBD4804","MTR-BBD4804","6C:3C:8C:56:39:4F","10.154.32.200","fe80::9292:85d5:c373:e914","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","BBD4804","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","d8fd5c76-5a1b-44fa-9a7f-00b481d8a66c","2023-12-14T22:50:59.000+02:00","2026-04-22T10:21:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"131401680","193422309","lampasu1.sanef.groupe","","00:17:A4:77:08:E8, 00:17:A4:77:08:EC","10.41.40.190,10.41.40.192,10.41.40.194,10.43.4.193,169.254.155.254","fe80::217:a4ff:fe77:8e8,fe80::217:a4ff:fe77:8ec","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","4","2500","Intel(R) Xeon(R) CPU E5-2609 v2 @ 2.50GHz","32069","HP I31 01/22/2018","VCX000020P","","'+02:00","2025-08-12T11:10:07.000+02:00","cybreconcile","Cloud Agent","d4bf24ea-0482-46c9-a9b4-644bdcf9bb95","2022-07-13T10:13:42.000+02:00","2026-04-22T10:21:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,Production,Exploitation,Sans,ServersInCyberark,OS-LIN-SRV DYN,Obsolete,DSI,log4j,Cloud Agent,Linux Server","528.0" +"230369388","258598753","ls-clermont-en-arg","LS-CLERMONT-EN-","00:50:56:90:7E:11","10.41.2.107","fe80::9fe9:7065:d0b1:e4ff","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 f9 f6 fe d1 5b b7-cd bc 03 08 38 08 76 41","NoAssetTag","'+02:00","2026-03-24T12:31:31.000+02:00","svpadmin","Cloud Agent","67b82724-0428-473f-8c02-94fbbeafa70a","2024-04-16T15:59:12.000+02:00","2026-04-22T10:21:23.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,Péage","679.0" +"130335698","192656718","VPAIIAPVD5.sanef.groupe","VPAIIAPVD5","00:50:56:82:48:23","10.41.11.19","fe80::9c95:1217:69bb:fbc3","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 f0 9b 56 29 32 21-7e 29 9c f7 e8 cd 6f ff","NoAssetTag","'+02:00","2025-06-04T16:55:27.000+02:00","SANEF\dewilde","Cloud Agent","7d5cc352-af1c-4d76-a0b5-a7fab193ebe2","2022-07-05T14:37:10.000+02:00","2026-04-22T10:21:20.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,NVR,DEX,Workstation,Sans,Exploitation,Production,VRF_INCONNUE,Obsolete","518.0" +"175414997","229251321","vvbocmedi2.sanef-rec.fr","","00:50:56:9c:87:9b","10.45.6.9","fe80::250:56ff:fe9c:879b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c fa 7b 56 cf 71 32-3c eb bb 3b 8f a3 66 b2","No Asset Tag","'+02:00","2026-03-09T11:47:14.000+02:00","cybsupsys","Cloud Agent","d1ed673e-21bf-4d0f-b1e0-95fab51d8e62","2023-06-22T11:09:16.000+02:00","2026-04-22T10:21:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN,FreeFlow,Flux Libre","337.0" +"331378739","333860817","vrmonaftp1.sanef-rec.fr","","00:50:56:9c:30:c7","10.45.14.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 47 e3 1b ba 61 28-5b b8 9a 64 74 90 36 cc","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","reboot","Cloud Agent","763903e4-d4e7-4ca6-b374-d0441c6a28ef","2025-06-06T09:46:24.000+02:00","2026-04-22T10:21:12.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,EMV","332.0" +"395319668","359409516","PCB25942.sanef.groupe","PCB25942","C4:0F:08:B3:29:A0","10.255.2.214,10.255.2.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222C","","'+02:00","2026-04-22T09:08:33.000+02:00","SANEF\SACHOT","Cloud Agent","4272f1e2-0401-45a1-9c1a-b17cdd001099","2026-01-27T13:25:38.000+02:00","2026-04-22T10:21:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"230083469","258396524","vdechatal3.recette.adds","VDECHATAL3","00:50:56:9C:13:68","10.45.11.200","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","65535","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 9e bd c8 20 de 15-7b 39 63 d8 3a 5a 3f 2e","NoAssetTag","'+02:00","2026-03-25T12:00:24.000+02:00","Administrateur","Cloud Agent","fbafa337-0be3-4ec8-8f0b-699d059583be","2024-04-15T12:29:47.000+02:00","2026-04-22T10:20:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,BDD-SQL DYN,Recette","333.0" +"223171074","255073048","ls-courcy","LS-COURCY","00:50:56:90:B7:84","10.22.2.20","fe80::3073:5175:d6c3:12f3","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 c4 00 7b 3a 17 68-42 3a 77 34 e1 61 01 a3","NoAssetTag","'+02:00","2026-03-05T15:02:10.000+02:00","svpadmin","Cloud Agent","a2c882ab-4fd2-4efe-bf26-c75381d64382","2024-03-18T16:33:17.000+02:00","2026-04-22T10:20:57.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,SVP,OS-WIN-SRV DYN,DEX,Péage,Haute,High","635.0" +"239875267","272842734","PCB22769.sanef.groupe","PCB22769","D0:AD:08:A7:27:D0","10.100.39.118","fe80::c642:c493:e79b:f026","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKY","","'+02:00","2026-04-08T13:41:49.000+02:00","SANEF\brequel","Cloud Agent","cb3e95c7-33a5-43ec-98db-a3710c2f3e79","2024-05-28T17:33:49.000+02:00","2026-04-22T10:20:56.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Workstation,Forescout","684.0" +"225058556","255954595","ls-amiens-sud","LS-AMIENS-SUD","00:50:56:90:81:FB","10.132.2.20","fe80::1fe9:a1a7:cd79:3cb4","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 f1 98 a5 bc 4d 24-6e 34 e4 ef 7b f2 95 dd","NoAssetTag","'+02:00","2026-02-19T12:32:57.000+02:00","svpadmin","Cloud Agent","5ebfb637-283b-4f8d-b4f0-cd52acdcf612","2024-03-25T11:47:13.000+02:00","2026-04-22T10:20:53.000+02:00","64-Bit","5","SCA,VM,PM,GAV","High,Haute,Péage,SVP,Production,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","635.0" +"358822881","344256478","PCB18062.sanef.groupe","PCB18062","38:CA:84:52:F8:A4","10.101.243.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSH","","'+02:00","2026-04-20T11:49:13.000+02:00","SANEF\BAHET","Cloud Agent","6027f0f8-1014-4b68-910f-e5664ca9cccb","2025-09-11T11:11:01.000+02:00","2026-04-22T10:20:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"329815109","332420304","PCB23655.sanef.groupe","PCB23655","C8:6E:08:88:FD:BA","10.255.2.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBT","","'+02:00","2026-04-14T09:52:28.000+02:00","muriel.foucu@sapn.fr","Cloud Agent","1cb2c445-c6f8-4ba5-b441-1e5a1693df0a","2025-06-03T15:26:17.000+02:00","2026-04-22T10:20:43.000+02:00","64-Bit","2","SCA,VM,GAV","Workstation,Cloud Agent","251.0" +"395905873","359675952","vpnapamed1.sanef.groupe","","00:50:56:90:4f:bd","10.100.16.9","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 e1 af 9c 87 94 f4-b8 f4 f3 2b 33 73 dc e6","No Asset Tag","'+02:00","2026-01-29T18:34:20.000+02:00","cybreconcile","Cloud Agent","bf23870f-082d-4f25-a572-a62b1992f590","2026-01-29T18:17:16.000+02:00","2026-04-22T11:35:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","Quorum,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","336.0" +"209599636","249215479","vpbotarmq2.sanef.groupe","","00:50:56:90:38:06","10.41.23.23","fe80::250:56ff:fe90:3806","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 9a ec 2b 1f 4b e8-84 2a b4 51 03 06 01 be","No Asset Tag","'+02:00","2026-04-21T11:47:46.000+02:00","cybadmsys","Cloud Agent","d084200a-8e4c-44b1-9123-34e14f6717cd","2024-01-15T13:34:46.000+02:00","2026-04-22T10:20:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,FreeFlow,flux_libre,Production","141.0" +"207904430","248272120","viaflbsta1.sanef.groupe","VIAFLBSTA1","00:50:56:9C:8D:DF","10.46.34.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c ae 2e 5c 54 b0 90-e5 c2 3c d0 03 d3 40 c5","NoAssetTag","'+02:00","2026-03-19T16:01:57.000+02:00","Administrateur","Cloud Agent","5263cb60-f1cc-4516-b1ef-58b980884157","2024-01-05T10:55:49.000+02:00","2026-04-22T11:49:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,BDD-SQL DYN,Flux Libre,OS-WIN-SRV DYN,FreeFlow","257.0" +"324426868","330231872","PCB20832.sanef.groupe","PCB20832","6C:0B:5E:EE:A3:29","10.5.31.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H35","","'+02:00","2026-03-30T12:25:32.000+02:00","SANEF\BRANCOURT","Cloud Agent","6d0e9d93-e2ab-4306-8cdc-55a489c27498","2025-05-13T14:53:00.000+02:00","2026-04-22T10:59:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"236555919","265282309","nvr-spare-tqx","NVR-SPARE-TQX","00:50:56:82:18:C6","10.1.27.251","fe80::ccab:f6c9:7cd5:aad0","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 b0 8c 6c fe 45 4b-27 00 96 ac 2b e3 36 cb","NoAssetTag","'+02:00","2026-01-28T15:24:05.000+02:00","Administrateur","Cloud Agent","6a744aea-c93e-46a4-a30e-78344d97cfd7","2024-05-14T14:37:12.000+02:00","2026-04-22T10:20:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN","348.0" +"320480375","328723998","PCB23568.sanef.groupe","PCB23568","C8:6E:08:88:E2:94","10.205.0.125,192.168.1.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5V","","'+02:00","2026-04-02T11:04:34.000+02:00","SANEF\ALLEGRE","Cloud Agent","93cd563e-5891-4466-a2f8-0dcf4517c863","2025-04-29T13:47:18.000+02:00","2026-04-22T10:20:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"327512345","331624013","PCB23577.sanef.groupe","PCB23577","C8:6E:08:8A:45:D0","10.205.0.58,192.168.1.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBF","","'+02:00","2026-03-30T09:18:05.000+02:00","SANEF\LEMAIRE","Cloud Agent","289f3b03-488a-4ea6-a7d0-b5badc738a37","2025-05-27T09:54:11.000+02:00","2026-04-22T10:20:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"358173066","344042678","PCB24167.sanef.groupe","PCB24167","DC:90:09:E1:1A:59","10.205.0.147,10.255.4.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG52136X8","","'+02:00","2026-03-30T10:56:37.000+02:00","SANEF\STIRN","Cloud Agent","be5d95b2-0b4d-48d0-880e-533e743b34fc","2025-09-09T15:54:57.000+02:00","2026-04-22T12:02:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"367219018","347672154","PBM20984.sanef-int.adds","PBM20984","BC:0F:F3:88:FD:3E","10.100.50.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LM9","","'+02:00","2026-04-08T14:02:28.000+02:00","Operateur","Cloud Agent","efa0eb42-3963-4b96-9e26-5eef1668192c","2025-10-10T12:44:22.000+02:00","2026-04-22T11:28:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"378358100","352442063","PSX18703.sanef-int.adds","PSX18703","30:13:8B:6C:5C:09","10.200.40.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WV","","'+02:00","2026-04-22T05:01:32.000+02:00","UserSextan","Cloud Agent","d69d3211-9fec-4797-907c-b9ee8f8e2325","2025-11-21T17:27:14.000+02:00","2026-04-22T10:20:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"305487492","322759720","PCB22640.sanef.groupe","PCB22640","D0:AD:08:AA:4F:D3","10.107.31.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DD","","'+02:00","2026-04-01T07:03:16.000+02:00","SANEF\POTDEVIN","Cloud Agent","37e0776f-82b6-47c4-9313-f75a988be371","2025-03-05T12:20:59.000+02:00","2026-04-22T10:20:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"128609803","191420973","ls-la-veuve-mourmelon","LS-LA-VEUVE-MOU","00:50:56:90:A2:FF","10.41.2.72","fe80::10be:27a0:7769:e103","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 90 53 4c 98 57 23-da 2d c9 48 fd 85 fb ec","NoAssetTag","'+02:00","2026-03-04T16:04:45.000+02:00","svpadmin","Cloud Agent","38e1d6ea-6b54-4eba-9179-6925155ded62","2022-06-21T14:44:21.000+02:00","2026-04-22T11:55:24.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,SVP,OS-WIN-SRV DYN,Windows Server,High,Péage,Production,DEX,VRF_PEAGE_DC","507.0" +"391648857","357934418","vmmvscdem1.sanef-int.adds","VMMVSCDEM1","00:50:56:90:A5:3D","10.41.7.235","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 5d 7f c6 a4 77 92-e2 15 5d 28 97 18 e1 50","NoAssetTag","'+02:00","2026-02-02T17:47:41.000+02:00","uservideo","Cloud Agent","423c9358-4751-479e-bea5-f26411f22f38","2026-01-13T12:59:49.000+02:00","2026-04-22T10:19:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"218330049","252975223","vpagtaweb1.sanef.groupe","VPAGTAWEB1","00:50:56:9C:E9:64","10.46.33.22","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c a2 89 1c b0 12 3a-62 cc d1 a8 0a d0 0c c8","NoAssetTag","'+02:00","2026-02-24T16:40:43.000+02:00","Administrateur","Cloud Agent","3bee6b1c-e85a-40b4-a7d1-cb3062e5f306","2024-02-26T15:48:56.000+02:00","2026-04-22T11:54:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,AgileTime,Windows Server,DRH,Cloud Agent","253.0" +"241549584","276516748","vpvsaaahz2.sanef.groupe","","00:50:56:9c:0d:eb","192.168.18.80","fe80::250:56ff:fe9c:deb","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c ef a5 9c cc 09 a8-e8 ee 76 b6 32 81 ca ea","No Asset Tag","'+02:00","2026-02-04T13:39:00.000+02:00","tbaad-ext","Cloud Agent","ed68b9ed-6e4b-4348-aa33-fc4c57d3f8cd","2024-06-04T12:46:47.000+02:00","2026-04-22T11:44:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"407377442","364056617","vpbckmcse1","VPBCKMCSE1","00:50:56:98:75:8F","192.168.109.4","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8027) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24575","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 18 3f d4 e1 cf 86 01-c3 af 9f 0b fa b9 b4 8f","NoAssetTag","'+02:00","2026-03-10T14:27:12.000+02:00","Administrator","Cloud Agent","7b21a439-724d-45b5-a84a-4ad1f35677c7","2026-03-10T13:55:07.000+02:00","2026-04-22T10:19:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,VRF_INCONNUE,Gestion SAUVEGARDE,PCI Bunker EMV,BDD-SQL DYN","347.0" +"165442546","221733692","vppataels1","","00:50:56:82:26:e6","10.42.40.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 fa 07 a0 61 4c dd-cb 35 30 c6 b4 63 2f fc","No Asset Tag","'+02:00","2026-04-02T14:23:50.000+02:00","cybadmsys","Cloud Agent","17645695-a79d-4089-a9d9-4b1021e0c9b7","2023-04-05T11:10:12.000+02:00","2026-04-22T10:19:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,DFIN,Cloud Agent,Linux Server,ISIS","66.0" +"139155574","198270091","vampsychtp1.sanef.groupe","","00:50:56:82:08:63","10.41.40.102","fe80::250:56ff:fe82:863","Linux / Server","Red Hat Enterprise Linux Server 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 de e9 ce 1c 20 7e-77 be 84 8e 7a 72 3a fb","No Asset Tag","'+02:00","2023-12-21T15:54:07.000+02:00","cybreconcile","Cloud Agent","3b2d3777-cf64-459e-87b6-e977684cbe5b","2022-09-07T14:20:37.000+02:00","2026-04-22T11:45:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,DEX,VRF_TRAFIC_DC,Production,Patrimoine","524.0" +"335495684","334630311","PCB24170.sanef.groupe","PCB24170","DC:90:09:E1:CF:DF","10.255.1.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XM","","'+02:00","2026-03-28T09:28:09.000+02:00","SANEF\locquard","Cloud Agent","96083f98-bc0e-432f-89e8-08be88859df1","2025-06-23T13:19:47.000+02:00","2026-04-22T10:19:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"380799479","353392213","PCV21522.sanef-int.adds","PCV21522","D0:AD:08:A3:E6:B8","10.152.7.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YRD","","'+02:00","2026-04-02T10:44:29.000+02:00","Operateur","Cloud Agent","5d833995-f892-46ae-a6e7-569a87104b22","2025-12-02T13:41:20.000+02:00","2026-04-22T12:00:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"364978252","346720465","PCV21058.sanef-int.adds","PCV21058","D0:AD:08:A3:E7:2A","10.100.7.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YXQ","","'+02:00","2026-01-22T14:00:33.000+02:00","Operateur","Cloud Agent","990d6c28-5f98-400c-b698-a61f85394e7d","2025-10-02T15:02:08.000+02:00","2026-04-22T11:43:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"352603936","341602737","PCB25862.sanef.groupe","PCB25862","28:95:29:1A:E6:77","10.205.0.20,192.168.1.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW5","","'+02:00","2026-04-21T11:35:06.000+02:00","SANEF\LAUNE","Cloud Agent","12652ab7-70a3-4064-bb7c-96a1394b51bb","2025-08-19T14:44:02.000+02:00","2026-04-22T11:52:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","57.0" +"322043434","329330025","PCB23641.sanef.groupe","PCB23641","6C:0B:5E:ED:A2:59","10.200.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4P","","'+02:00","2026-04-16T08:56:36.000+02:00","SANEF\crevel","Cloud Agent","e9fc5232-dc83-4e37-bf87-81d7ee62ae10","2025-05-05T13:31:58.000+02:00","2026-04-22T10:19:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"377809009","352213444","vpdsiangx1.sanef.groupe","","00:50:56:90:a8:30","192.168.19.160","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 16 6a c4 ab e8 0d-aa 1c be 7d a0 14 54 7a","No Asset Tag","'+02:00","2026-04-13T14:25:03.000+02:00","cybreconcile","Cloud Agent","40de4338-c22b-46aa-90ac-1e8b80ec5800","2025-11-19T18:56:10.000+02:00","2026-04-22T10:19:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","329.0" +"347776899","339369664","PCB18043.sanef.groupe","PCB18043","38:CA:84:52:19:5A","10.101.243.105","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.18.00","5CG2376HT8","","'+02:00","2026-04-09T16:04:40.000+02:00","SANEF\lopezl","Cloud Agent","cae67689-20ce-4c3d-81a2-6499b68ca0a4","2025-07-31T10:07:06.000+02:00","2026-04-22T10:19:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"399338908","361094808","PCB16447.sanef.groupe","PCB16447","DC:21:48:FE:84:36","10.205.0.136,10.0.11.53","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","8","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15664","HP T72 Ver. 01.22.00","5CD1438400","","'+02:00","2026-04-14T09:39:42.000+02:00","SANEF\CHAMPY-ext","Cloud Agent","4e4a9936-ff7a-4f6c-84dd-8f2eb6d76196","2026-02-11T13:56:12.000+02:00","2026-04-22T11:09:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"404163179","362715216","PCB18621.sanef.groupe","PCB18621","64:D6:9A:74:74:03","10.205.0.32,10.255.4.246","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDJ","","'+02:00","2026-04-15T15:23:55.000+02:00","SANEF\benbouslah-ext","Cloud Agent","68ebacb0-9b5f-4064-885b-bd757bc74e53","2026-02-25T16:06:04.000+02:00","2026-04-22T11:44:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"335905349","336780143","vrrpnangx1.sanef-rec.fr","","00:50:56:9c:4f:9c","10.45.14.229","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a8 de 8a 4a f7 76-92 5c 50 9e 49 ab 6d d4","No Asset Tag","'+02:00","2026-02-23T10:35:27.000+02:00","cybsecope","Cloud Agent","2ad21bec-0e15-48d3-ba8d-ce21d0af3547","2025-06-24T11:02:57.000+02:00","2026-04-22T10:18:58.000+02:00","x86_64","2","SCA,VM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Péage,Linux Server,Cloud Agent","140.0" +"342140592","337420805","PCB24321.sanef.groupe","PCB24321","10:B6:76:93:FA:98","10.200.31.54","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YGD","","'+02:00","2026-04-15T10:21:37.000+02:00","SANEF\Mediouni-ext","Cloud Agent","6118be24-a103-4594-811e-0f56c129fe39","2025-07-16T08:49:04.000+02:00","2026-04-22T10:18:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"370646430","348979218","PCB21346.sanef.groupe","PCB21346","E4:60:17:CA:40:F9","10.205.0.34,192.168.1.55","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LS","","'+02:00","2026-04-01T06:44:46.000+02:00","SANEF\godefroyg","Cloud Agent","7bc2edeb-70f9-4d20-a74c-52bade35bdbe","2025-10-22T06:58:24.000+02:00","2026-04-22T10:18:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"407049273","363914030","PCB23593.sanef.groupe","PCB23593","C8:6E:08:8A:3C:2A","10.255.3.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5W","","'+02:00","2026-04-07T16:21:45.000+02:00","SANEF\ottevaere","Cloud Agent","32afbc12-abd6-45ab-a9af-910bd56335f9","2026-03-09T09:13:19.000+02:00","2026-04-22T10:18:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"130588628","192836893","vmamrsxt3","","00:50:56:82:60:09, 00:50:56:82:12:4D, 00:50:56:82:23:4D","10.33.16.62,10.32.16.62,10.30.16.62","fe80::250:56ff:fe82:6009,fe80::250:56ff:fe82:124d,fe80::250:56ff:fe82:234d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7d e6 2b 46 18 6d-cc 34 58 02 61 87 44 84","No Asset Tag","'+02:00","2025-10-09T11:39:38.000+02:00","cybexpapp","Cloud Agent","0d432158-cbf2-44af-a96b-158976ac6f3d","2022-07-07T12:05:53.000+02:00","2026-04-22T11:58:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Obsolete,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sans,Trafic,Recette,log4j,MID-APACHE-TOMCAT DYN,Sextan","699.0" +"340186410","336523816","PCB21298.sanef.groupe","PCB21298","64:4E:D7:49:1A:A2","10.152.30.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3440GKT","","'+02:00","2026-03-30T07:58:18.000+02:00","SANEF\vermeersch","Cloud Agent","4aa6d1b3-67c8-43c9-aca8-94609508f437","2025-07-08T16:43:15.000+02:00","2026-04-22T11:50:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"165477473","221770801","vrdsiawsus1.recette.adds","VRDSIAWSUS1","00:50:56:82:43:79","10.45.0.163","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 02 a1 32 2b 33 04 93-24 26 d6 19 0a c6 55 01","NoAssetTag","'+02:00","2026-04-15T11:27:28.000+02:00","RECETTE\b03987","Cloud Agent","4b089775-6ecd-4a1d-97f3-669be854518a","2023-04-05T14:38:53.000+02:00","2026-04-22T10:18:41.000+02:00","64-Bit","2","VM,GAV","DSI,BDD-SQL DYN,OS-WIN-SRV DYN,Recette,WSUS,Cloud Agent","232.0" +"295835229","317388750","vpngwasia1","","00:50:56:94:77:7d","10.44.2.196","fe80::250:56ff:fe94:777d","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 fd 85 a2 bc 8d 35-8a 61 7b 87 bb e6 14 b2","No Asset Tag","'+02:00","2026-02-02T16:44:55.000+02:00","tbaad","Cloud Agent","9f3dadeb-d99e-40cb-9749-876934fc2c26","2025-01-29T11:30:35.000+02:00","2026-04-22T10:18:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server","53.0" +"129343396","191950529","sppeaanvr9","SPPEAANVR9","98:F2:B3:27:4D:65","10.41.7.108","fe80::577d:d7e8:b662:eb21","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLS","","'+02:00","2026-02-02T15:45:53.000+02:00","Administrateur","Cloud Agent","488e3989-b588-4739-a3da-f01f6228516e","2022-06-27T15:34:38.000+02:00","2026-04-22T10:18:36.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,DEX,OS-WIN-SRV DYN,NVR,Windows Server,Cloud Agent,Sans,Production,Exploitation","523.0" +"211399224","250073992","vrpeabbst2.sanef-rec.fr","","00:50:56:9c:b1:be","10.45.10.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 85 d0 cd af 0d a8-00 69 b7 36 f7 38 2b 47","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","cybadmsys","Cloud Agent","ecfe5959-6a9e-49ab-a7b9-d042ddf918bf","2024-01-23T16:34:55.000+02:00","2026-04-22T11:54:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","DSI,Péage,BOOST,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN","141.0" +"169723549","225427800","vpdsiagit1.sanef.groupe","","00:50:56:82:a9:a3","10.30.11.216","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 3a 4b 2f 86 5f 03-22 a8 d0 1a 85 58 5f 55","No Asset Tag","'+02:00","2026-01-29T10:27:50.000+02:00","cybexpapp","Cloud Agent","69ea2e8a-9170-42ac-bdfb-3ecc80d170bc","2023-05-10T11:56:17.000+02:00","2026-04-22T11:50:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,CVS","140.0" +"324947687","330448380","vpstlbhis1.sanef-int.adds","VPSTLBHIS1","00:50:56:90:0F:AB","10.41.13.54","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3453) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 85 29 16 b8 41 f9-de 32 2d 00 68 14 99 86","NoAssetTag","'+02:00","2025-06-24T10:56:40.000+02:00","admin_stl","Cloud Agent","9acdbf2a-be42-4838-a23e-94df262b30ee","2025-05-15T09:38:37.000+02:00","2026-04-22T11:49:33.000+02:00","64-Bit","2","SCA,VM,GAV","Systel,Production,Cloud Agent,BDD-SQL DYN,OS-WIN-SRV DYN","346.0" +"183949377","235204371","vmamdpmv1","","00:50:56:82:18:5B","10.45.2.128","fe80::250:56ff:fe82:185b","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7c a1 fd 72 70 8d-57 f4 c1 96 c8 2a d1 cc","No Asset Tag","'+02:00","2025-10-08T13:43:04.000+02:00","cybexpapp","Cloud Agent","50ab478b-ce5c-4f6e-a556-5021d0b0d58d","2023-08-22T12:03:22.000+02:00","2026-04-22T11:53:01.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,MIVISU,Obsolete","867.0" +"378865939","352656721","PCB25827.sanef.groupe","PCB25827","28:95:29:1A:F1:C1","10.255.3.207,192.168.1.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVM","","'+02:00","2026-04-14T01:34:22.000+02:00","SANEF\SCHEMBRI","Cloud Agent","5cd6cc75-0e7e-48d8-bde5-5a425b1a00db","2025-11-24T13:29:41.000+02:00","2026-04-22T12:03:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"180099331","232620255","vrrauaast1.sanef-rec.fr","","00:50:56:9c:d9:be, 00:50:56:9c:05:31","10.45.9.227,10.45.5.33","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 06 b5 77 3b a8 49-0b 7a 92 6c 8b de 96 aa","No Asset Tag","'+02:00","2026-04-21T14:27:18.000+02:00","cybadmsys","Cloud Agent","6ea8fff9-b501-435a-bbbc-b252b4b77110","2023-07-26T17:16:56.000+02:00","2026-04-22T10:18:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,OS-LIN-SRV DYN,DSI,Cloud Agent,Linux Server","201.0" +"160222343","213244601","vrsupbcen1.sanef.groupe","","00:50:56:82:6e:11","10.45.0.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 07 e0 e6 17 72 3e-f2 47 c7 28 72 d1 af 72","No Asset Tag","'+02:00","2026-03-11T13:10:16.000+02:00","cybadmsys","Cloud Agent","3cb2591d-3ba7-4f13-9492-fe0c05ad5fcf","2023-02-22T13:06:10.000+02:00","2026-04-22T11:51:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,DSI,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Centreon","288.0" +"346615227","339059982","PCB25845.sanef.groupe","PCB25845","28:95:29:22:5D:DA","10.101.243.99,192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT2","","'+02:00","2026-04-20T09:00:24.000+02:00","SANEF\DEFOSSE","Cloud Agent","6d30bd4b-f9fe-4ed0-b3be-141d2745608f","2025-07-29T15:20:33.000+02:00","2026-04-22T11:52:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","333.0" +"138994697","198163433","RSMIRAU1","","10:60:4B:9C:57:E4, 10:60:4B:9C:57:DC","10.41.40.202,10.43.4.202","fe80::1260:4bff:fe9c:57e4,fe80::1260:4bff:fe9c:57dc","Linux / Server","Red Hat Enterprise Linux Server 6.3","6.3","Computers / Server","HPE ProLiant DL360 G7 Server","8","2400","Intel(R) Xeon(R) CPU E5620 @ 2.40GHz","7858","HP P68 05/05/2011","CZJ24400DR","","'+02:00","2025-06-10T15:52:29.000+02:00","cybsupapp","Cloud Agent","6ab0aef7-5896-4bab-9b42-24f63f46107c","2022-09-06T12:34:31.000+02:00","2026-04-22T10:18:11.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,OS-LIN-SRV DYN,DSI,Obsolete,VRF_INCONNUE,ServersInCyberark,Cloud Agent,Linux Server,Production,Exploitation","522.0" +"363318959","346060213","vrsamaext1.recette.adds","VRSAMAEXT1","00:50:56:9C:72:0C","192.168.10.3","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c a4 79 99 ba 96 84-19 93 6f 48 9f 90 64 35","NoAssetTag","'+02:00","2026-04-15T13:35:21.000+02:00","RECETTE\b03987","Cloud Agent","83876750-e173-4a4d-a7fc-837cc90fac62","2025-09-26T17:03:12.000+02:00","2026-04-22T10:18:10.000+02:00","64-Bit","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,Cloud Agent,OS-WIN-SRV DYN","479.0" +"240163727","273864824","LS-BOULAY-PSB","LS-BOULAY-PSB","20:67:7C:E7:54:94","10.92.10.21","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Computers / Server","HPE ProLiant ML350 G10 Server","6","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","15914","HPE U41","CZJ8470B2H","","'+02:00","2026-03-05T12:00:32.000+02:00","gare","Cloud Agent","4aa38478-8607-46a1-a6ae-9eeb8eb9b6e7","2024-05-29T14:02:03.000+02:00","2026-04-22T11:55:26.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Haute,Production,OS-WIN-SRV DYN,Péage,Cloud Agent,VRF_PEAGE_DC,VRF_BACKUP_DC,High","876.0" +"234568952","262085964","vrechatre3.sanef-rec.fr","","00:50:56:9c:b9:4f","10.45.11.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 7f d6 67 4a 43 36-82 22 54 0f 10 94 eb 6c","No Asset Tag","'+02:00","2026-03-25T13:39:53.000+02:00","cybadmsys","Cloud Agent","31668934-7f52-4255-ba90-da54b19172a6","2024-05-06T12:42:21.000+02:00","2026-04-22T10:18:02.000+02:00","x86_64","3","SCA,VM,PM,GAV","Recette,TALEND,OS-LIN-SRV DYN,Cloud Agent,Linux Server","221.0" +"139158116","198270707","vmampsxt4","","00:50:56:82:17:A2, 00:50:56:82:38:61, 00:50:56:82:61:C3","10.43.40.33,10.41.40.33,10.43.4.33","fe80::250:56ff:fe82:17a2,fe80::250:56ff:fe82:3861,fe80::250:56ff:fe82:61c3","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 5f 5a 21 87 08-cc 4f 12 18 2b 59 23 ba","No Asset Tag","'+02:00","2024-11-06T21:15:53.000+02:00","cybreconcile","Cloud Agent","41ed86ae-1ab0-4c15-b2a0-1a63aaadb290","2022-09-07T14:36:03.000+02:00","2026-04-22T11:57:02.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,VRF_TRAFIC_DC,DEX,Obsolete,log4j,Production,Trafic","699.0" +"303906738","322166974","vpdsismtp1.sanef.groupe","","00:50:56:9c:52:31","192.168.19.35,192.168.19.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7696","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 3e e5 84 98 21 b6-d6 b8 ae 6a bd 09 14 06","No Asset Tag","'+02:00","2026-04-09T12:31:59.000+02:00","cybsecope","Cloud Agent","f68793dc-d81e-4c88-b8e0-4044c40554d4","2025-02-27T18:09:30.000+02:00","2026-04-22T11:47:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,TAG-SRVEXPOSEINTERNET,EXCHANGE,Production","132.0" +"338803303","","PCB21521.sanef.groupe","PCB21521","D0:AD:08:A3:E0:AE","10.100.39.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK3","","'+02:00","2026-04-15T12:50:51.000+02:00","SANEF\piotf","Cloud Agent","abc5e9a8-1fbd-4391-97d0-ed7febb0c695","2025-07-03T09:56:01.000+02:00","2026-04-22T10:17:56.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"165610538","221971339","vpameatra1.sanef.groupe","","00:50:56:82:73:2e","192.168.40.20","fe80::250:56ff:fe82:732e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 92 ce 9d 33 0d 0e-76 91 d2 15 d8 8d 62 e6","No Asset Tag","'+02:00","2026-04-15T10:05:10.000+02:00","cybreconcile","Cloud Agent","e527400e-fa04-45e6-914d-8b1af9fba2fb","2023-04-06T12:22:04.000+02:00","2026-04-22T10:17:34.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,DEX,OS-LIN-SRV DYN,Production,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,Cloud Agent,Linux Server","132.0" +"344320163","338308514","PCB20713.sanef.groupe","PCB20713","BC:0F:F3:3B:C9:F2","10.101.243.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D46","","'+02:00","2026-04-07T17:22:30.000+02:00","SANEF\yvert","Cloud Agent","a4c1d01a-3fe5-4d22-b576-c670ab00b92d","2025-07-23T10:04:12.000+02:00","2026-04-22T11:04:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"244968772","286215492","MTO21618.sanef.groupe","MTO21618","D0:AD:08:A4:4D:AF","10.89.31.7","fe80::ae10:6d62:8e37:7f85","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6199) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K3","","'+02:00","2026-03-04T11:52:52.000+02:00","SANEF\meteonewsW11","Cloud Agent","11282fcf-9cde-42f9-b2d1-973b15f0473f","2024-06-19T09:13:13.000+02:00","2026-04-22T12:01:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"356882850","343535435","PCB22517.sanef.groupe","PCB22517","E4:60:17:C5:07:BA","10.205.0.114,192.168.1.87","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GS","","'+02:00","2026-04-01T07:57:51.000+02:00","stephanie.dutacq@sapn.fr","Cloud Agent","11b5365a-2039-48b5-83ea-3aeb9610705d","2025-09-04T14:40:23.000+02:00","2026-04-22T11:48:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"305242753","322686741","PCB18491.sanef.groupe","PCB18491","D0:AD:08:AA:50:45","10.107.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764J2","","'+02:00","2026-04-14T07:02:10.000+02:00","SANEF\dambrevilles","Cloud Agent","54424453-cc10-4d39-b3ae-3303964de2ee","2025-03-04T18:51:09.000+02:00","2026-04-22T11:59:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"191127169","239553778","vpiadapki2.sanef-int.adds","VPIADAPKI2","00:50:56:9A:8E:DC","10.44.3.11","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1a b7 8b 85 ce 4a 26-8d 96 ff 0d 76 0c 37 ac","NoAssetTag","'+02:00","2026-03-24T14:49:02.000+02:00","SANEF-INT\A17402","Cloud Agent","10007022-2138-4b68-aca2-360ae8fe7ac3","2023-10-03T11:49:46.000+02:00","2026-04-22T10:17:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,Gestion_PKI,Cloud Agent,Windows Server","253.0" +"318405583","328028344","PCB23762.sanef.groupe","PCB23762","C8:6E:08:45:1B:AE","10.255.3.165","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2B","","'+02:00","2026-04-20T08:13:21.000+02:00","SANEF\LEVAGUERESSE","Cloud Agent","c75fc1ef-7bff-465c-a9e3-eeef81e9b588","2025-04-22T12:18:35.000+02:00","2026-04-22T11:58:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"130360055","192671645","vpppeaasvp1","VPPPEAASVP1","00:50:56:82:BB:94","10.41.29.11","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 e4 5f 75 14 c1 df-cb f3 40 f9 18 32 61 33","NoAssetTag","'+02:00","2026-02-19T13:05:12.000+02:00","SANEF-INT\b03987","Cloud Agent","d350fce0-cdba-4b71-bfc3-fa34648c4042","2022-07-05T17:33:40.000+02:00","2026-04-22T12:04:04.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,Haute,SVP,Recette,Péage,High,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN","634.0" +"395825841","359643460","VRAIRAHTP2","","00:50:56:9c:e7:1c","10.45.1.103","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 45 c1 34 37 27 d0-15 0c 45 3c 97 d0 d6 d6","No Asset Tag","'+02:00","2026-02-05T17:21:20.000+02:00","cybintsys","Cloud Agent","4ca0a099-f07f-42f4-967e-d964de9cc715","2026-01-29T12:20:23.000+02:00","2026-04-22T11:58:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,OS-LIN-SRV DYN,Linux Server,MID-NGINX DYN","139.0" +"372123651","349584354","vppciagtw1.sanef.groupe","","00:50:56:86:e6:08","192.168.105.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 06 ca 03 b6 92 21 00-01 ff e6 c6 ae e6 1b b5","No Asset Tag","'+02:00","2025-07-21T16:40:09.000+02:00","root","Cloud Agent","f56ee2eb-ffb7-4fef-934b-e486ad36bf19","2025-10-27T13:54:20.000+02:00","2026-04-22T11:56:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","333.0" +"197021705","242625488","MTR-CQ3J8Y3","MTR-CQ3J8Y3","6C:3C:8C:3D:5E:49","10.203.32.200","fe80::e165:e42c:a790:8729","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","CQ3J8Y3","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","57ce3233-1c03-4585-96bd-e4b07a7c576b","2023-11-02T13:54:46.000+02:00","2026-04-22T11:18:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"374115560","350463348","PCB21295.sanef.groupe","PCB21295","D0:AD:08:0C:6D:8E","10.1.31.1,10.255.1.145","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GKG","","'+02:00","2026-04-22T07:44:17.000+02:00","rodrigue.marques@sanef.com","Cloud Agent","6e979370-5a38-49e0-a628-d3979e25723d","2025-11-04T12:30:42.000+02:00","2026-04-22T10:17:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"141441506","199670184","vpbckacse2","VPBCKACSE2","00:50:56:82:58:88","10.42.16.70","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","49151","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 02 09 13 8e 01 1b f5-ef 97 37 81 bc 57 da 6c","NoAssetTag","'+02:00","2026-03-30T10:29:10.000+02:00","Administrator","Cloud Agent","e337cff1-0435-4f0a-8e5e-59f567513635","2022-09-23T10:49:11.000+02:00","2026-04-22T10:17:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,BDD-SQL DYN,VRF_BACKUP_DC,OS-WIN-SRV DYN,Cloud Agent,Windows Server","351.0" +"380784580","353377233","PCB18230.sanef.groupe","PCB18230","5C:60:BA:59:EC:D7","10.100.39.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y8Z","8CC2250Y8Z","'+02:00","2026-04-20T12:56:25.000+02:00","SANEF\guilluy","Cloud Agent","685b35a4-73fb-44ee-a8d2-a85f404943e6","2025-12-02T11:18:19.000+02:00","2026-04-22T10:16:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"341899839","337304876","PCB21527.sanef.groupe","PCB21527","D0:AD:08:A3:7B:5F","10.209.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWY","8CC3502YWY","'+02:00","2026-04-20T19:00:00.000+02:00","SANEF\leonard","Cloud Agent","4a36d3a3-6dd6-44da-99a1-9344da15f710","2025-07-15T10:02:22.000+02:00","2026-04-22T10:16:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"280792658","305600068","PCB21337.sanef.groupe","PCB21337","D0:AD:08:AA:50:BF","10.202.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764N0","","'+02:00","2026-04-06T09:18:37.000+02:00","SANEF\becquetv","Cloud Agent","e1ad1007-ef44-44cc-9b16-58b975be18b5","2024-11-20T12:12:48.000+02:00","2026-04-22T10:16:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"173357493","227829060","vvbooaori1.sanef-rec.fr","","00:50:56:9c:37:83","10.45.6.79","fe80::250:56ff:fe9c:3783","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 19 cb 03 85 c0 a7-a8 dd bf e6 55 b5 91 e8","No Asset Tag","'+02:00","2026-03-12T11:43:45.000+02:00","podman_app","Cloud Agent","9b7e7cf0-343a-44f4-8a57-947a81ee0c3b","2023-06-07T10:53:31.000+02:00","2026-04-22T12:00:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","140.0" +"382721458","354098156","spbckmmag2.sanef.groupe","","04:bd:97:3e:68:b4","192.168.109.9","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C240 M5 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","31534","Cisco Systems, Inc. C240M5.4.3.2g.0.0515250954 05/15/2025","WZP25500WKY","Unknown","'+02:00","2025-12-09T13:29:34.000+02:00","root","Cloud Agent","fe8e0cdb-dc07-4295-8fdc-ab368b2ff599","2025-12-09T12:50:44.000+02:00","2026-04-22T11:39:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","328.0" +"383422407","354449836","PCV22822.sanef-int.adds","PCV22822","D0:AD:08:A3:7D:BB","10.27.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YNN","","'+02:00","2026-04-17T15:48:36.000+02:00","Operateur","Cloud Agent","87f8fec0-8d0a-4522-9463-31140b3a9367","2025-12-12T10:14:32.000+02:00","2026-04-22T11:07:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"175949260","229617190","vvbotarep1.sanef-rec.fr","","00:50:56:9c:fd:ec","10.45.6.140","fe80::250:56ff:fe9c:fdec","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 45 5d 19 e3 bf 42-83 28 d6 3a 84 43 0a 86","No Asset Tag","'+02:00","2026-03-12T15:18:59.000+02:00","cybreconcile","Cloud Agent","e382a969-d1de-4f96-84ca-249a19b63936","2023-06-26T16:30:00.000+02:00","2026-04-22T12:02:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,FreeFlow,flux_libre,Flux Libre","329.0" +"326648225","331288789","vpvsampci2","","00:50:56:86:09:5e","192.168.109.15","fe80::250:56ff:fe86:95e","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 6b 63 3d e5 6e 51-34 20 ee fa 34 b4 63 b3","No Asset Tag","'+02:00","2026-02-02T12:26:36.000+02:00","tbaad","Cloud Agent","b5809d2d-36ec-44f7-b02d-72d7b3211eb9","2025-05-22T17:21:07.000+02:00","2026-04-22T11:55:13.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent","52.0" +"241575082","276534362","vrdepaast1.sanef-rec.fr","","00:50:56:9c:d1:ef","10.45.13.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3664","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c f0 51 af e8 1a ae-3d df 78 87 80 4f b0 e8","No Asset Tag","'+02:00","2026-01-15T16:39:32.000+02:00","cybastsys","Cloud Agent","d3bbea99-fd05-45b1-b063-1ed639f99e63","2024-06-04T15:16:09.000+02:00","2026-04-22T11:50:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","144.0" +"213849842","251124346","spboomcla1.sanef.groupe","","5c:ba:2c:60:ae:c0","10.41.22.143","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95787","HPE U30 07/20/2023","CZ22410FKD","","'+02:00","2026-04-07T09:43:49.000+02:00","cybreconcile","Cloud Agent","0bc1bab5-67be-4531-a686-14b7644b08ec","2024-02-05T19:17:09.000+02:00","2026-04-22T11:56:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,FreeFlow,Flux Libre,Production,Cloud Agent,Linux Server","337.0" +"353262715","341935606","PCB18074.sanef.groupe","PCB18074","64:D6:9A:1D:2B:CB","10.101.243.30,10.0.0.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG2376HSS","","'+02:00","2026-04-15T09:01:30.000+02:00","SANEF\LHOMMEO","Cloud Agent","5a6bf9b9-5e43-4e8c-8a2c-5833370d104a","2025-08-21T09:53:44.000+02:00","2026-04-22T10:16:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","240.0" +"232016361","259578151","ls-charmont","LS-CHARMONT","00:50:56:90:93:E4","10.41.2.66","fe80::9556:1f56:3275:77d6","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 93 c7 56 9d c6 fe-f2 e8 e2 f4 c9 ad 53 7b","NoAssetTag","'+02:00","2026-03-24T12:06:02.000+02:00","svpadmin","Cloud Agent","c524706b-a53c-480a-99ce-a195f11e89a7","2024-04-24T09:21:10.000+02:00","2026-04-22T10:16:13.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,VRF_PEAGE_DC,High,DEX,OS-WIN-SRV DYN,Péage,SVP,Production","507.0" +"175919695","229595373","vpaiiapol10","","00:50:56:82:62:ed","10.30.12.130","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7820","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 57 9e a1 3d 32 8e-43 cf b5 a6 a0 8d 2c 2f","No Asset Tag","'+02:00","2024-06-06T16:22:14.000+02:00","cybreconcile","Cloud Agent","1644939b-679d-4342-a633-4cf639c86cdc","2023-06-26T12:26:01.000+02:00","2026-04-22T11:43:25.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,BDD-ELA DYN,BDD-SQL DYN,Centreon,Obsolete,MID-APACHE-TOMCAT DYN,DSI,MID-NGINX DYN","82.0" +"129337968","191946280","ls-yvetot","LS-YVETOT","00:50:56:90:A0:8D","10.41.2.86","fe80::111e:a59c:c6:ac2","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 eb 26 1d b7 ce ee-aa ae 62 03 59 0f 39 d1","NoAssetTag","'+02:00","2026-03-04T16:11:55.000+02:00","svpadmin","Cloud Agent","a34f84a6-65e2-4720-b4cb-dc7f1faca2af","2022-06-27T14:23:41.000+02:00","2026-04-22T10:16:11.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,High,Péage,Production,VRF_PEAGE_DC,SVP,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Haute","629.0" +"129355489","191960136","vpcotanvr1","VPCOTANVR1","00:50:56:82:29:22","10.217.36.10","fe80::272b:138:a256:e659","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 71 1e 27 fc 1d 7f-25 63 01 00 59 d9 1c a9","NoAssetTag","'+02:00","2026-02-16T16:15:16.000+02:00","Administrateur","Cloud Agent","b14cf4af-71ba-4732-b412-148acec05ef5","2022-06-27T17:55:03.000+02:00","2026-04-22T10:16:10.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Production,Exploitation,VRF_INCONNUE,NVR","508.0" +"322650851","329610124","PCB23754.sanef.groupe","PCB23754","C8:6E:08:48:DC:D0","10.255.3.138,10.255.3.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H26","","'+02:00","2026-03-30T09:16:30.000+02:00","SANEF\DESSENNE","Cloud Agent","685089f1-5b13-4673-9ff2-8b488e946305","2025-05-07T16:47:37.000+02:00","2026-04-22T09:51:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"167744458","224051351","vpgesaquo1.sanef.groupe","","00:50:56:82:ee:fa","10.100.16.6","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 bb c5 f5 be d4 74-24 70 0e fa 80 22 ca 2e","No Asset Tag","'+02:00","2026-01-29T12:04:55.000+02:00","cybreconcile","Cloud Agent","7af802e0-6711-4b9f-8be4-201679e24cac","2023-04-24T14:58:05.000+02:00","2026-04-22T11:51:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,Quorum,3PAR","142.0" +"383250509","354378659","PCB22349.sanef.groupe","PCB22349","D0:AD:08:A3:E7:97","10.252.42.149","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM9","8CC3502YM9","'+02:00","2026-04-13T07:06:50.000+02:00","SANEF\ravier","Cloud Agent","8d499e56-5c5f-4422-8d74-1dd71515ce66","2025-12-11T15:46:51.000+02:00","2026-04-22T11:19:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"241563624","276522522","vpvsaages2.sanef.groupe","","00:50:56:9c:02:61","10.42.16.83","fe80::250:56ff:fe9c:261","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c f9 3d e3 54 b3 61-09 4d 38 db 1e 3e 2d 7d","No Asset Tag","'+02:00","2026-02-04T15:59:26.000+02:00","tbaad-ext","Cloud Agent","0daeaf3f-26f3-41e5-9a42-41fbd8198ed2","2024-06-04T13:53:01.000+02:00","2026-04-22T11:55:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"415447090","367469151","PCB17502.sanef.groupe","PCB17502","70:A8:D3:85:73:FC","10.100.39.116,10.255.2.220","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG21724NZ","","'+02:00","2026-04-20T10:22:54.000+02:00","SANEF\DAHLKE","Cloud Agent","1b471fec-e0d8-48bb-96cf-b1ef0580a087","2026-04-13T11:52:15.000+02:00","2026-04-22T11:14:24.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Workstation,Forescout","677.0" +"410850412","365479897","PCB18618.sanef.groupe","PCB18618","38:CA:84:DB:E6:B1","10.4.30.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WD3","","'+02:00","2026-03-31T08:19:38.000+02:00","SANEF\digbeu-ext","Cloud Agent","ce190a82-1ade-4722-8476-2aca0b273c91","2026-03-24T11:08:27.000+02:00","2026-04-22T10:15:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"138994660","198163269","RMILRAU1","","10:60:4B:9C:27:DC, 10:60:4B:9C:27:E0","10.43.4.201,10.41.40.201","fe80::1260:4bff:fe9c:27dc,fe80::1260:4bff:fe9c:27e0","Linux / Server","Red Hat Enterprise Linux Server 6.3","6.3","Computers / Server","HPE ProLiant DL360 G7 Server","8","2400","Intel(R) Xeon(R) CPU E5620 @ 2.40GHz","7857","HP P68 05/05/2011","CZJ24400HL","","'+02:00","2023-04-26T18:33:37.000+02:00","cybreconcile","Cloud Agent","7800337f-f123-481e-b26b-807801c6d492","2022-09-06T12:31:09.000+02:00","2026-04-22T10:15:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,ASUR,Obsolete,OS-LIN-SRV DYN,Cloud Agent,Linux Server,log4j,Production,Exploitation,VRF_INCONNUE","524.0" +"130588882","192836205","vmamrsxt1","","00:50:56:82:73:93, 00:50:56:82:2E:73, 00:50:56:82:69:1E","10.33.16.60,10.30.16.60,10.32.16.60","fe80::250:56ff:fe82:7393,fe80::250:56ff:fe82:2e73,fe80::250:56ff:fe82:691e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a6 8e eb 83 91 b8-d0 69 ec a5 7a d6 f9 b7","No Asset Tag","'+02:00","2025-10-09T11:39:32.000+02:00","cybexpapp","Cloud Agent","12d97d2c-e53a-486e-8273-da5ef8c65d95","2022-07-07T12:04:45.000+02:00","2026-04-22T11:59:28.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sextan,DEX,Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE,log4j,Recette,Sans,Trafic","699.0" +"351157832","341068665","VRBURXBAN7.sanef.groupe","VRBURXBAN7","00:50:56:82:BB:00","10.30.4.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 02 09 cd c4 c1 da 76-71 5b 04 58 ab 61 fe a5","NoAssetTag","'+02:00","2026-04-15T13:37:50.000+02:00","","Cloud Agent","8622926d-0132-41d8-b7bd-c18061af592e","2025-08-13T18:16:10.000+02:00","2026-04-22T10:15:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"346258649","339006015","PCB25847.sanef.groupe","PCB25847","28:95:29:1A:FE:87","10.205.0.5,192.168.1.57","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV9","","'+02:00","2026-04-16T09:37:21.000+02:00","alexandre.beauge@sanef.com","Cloud Agent","5264de20-143e-4da0-b203-d25e3bf8dc99","2025-07-29T12:38:36.000+02:00","2026-04-22T11:48:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"317343007","327571264","nvr-spare-alb","NVR-SPARE-ALB","00:50:56:90:F2:FD","10.252.17.254","fe80::7095:3fc5:75e6:3265","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 10 ff 10 68 f6 38 46-78 2e 56 4d 6c 51 9e a7","NoAssetTag","'+02:00","2026-02-25T12:04:14.000+02:00","Administrateur","Cloud Agent","6147de41-9ae1-4334-b021-5a991c331d04","2025-04-17T08:45:10.000+02:00","2026-04-22T10:15:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,Péage","245.0" +"327525060","","PCB23536.sanef.groupe","PCB23536","6C:0B:5E:EE:A3:9A","10.100.39.114","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9Q","","'+02:00","2026-04-20T09:46:54.000+02:00","SANEF\groum","Cloud Agent","bc393008-de61-460e-af4c-1dce3e2ef6ba","2025-05-27T11:52:42.000+02:00","2026-04-22T10:15:23.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321548725","329078771","PCB23652.sanef.groupe","PCB23652","C8:6E:08:89:0A:A3","10.255.3.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB6","","'+02:00","2026-04-15T14:06:46.000+02:00","SANEF\LIVENAIS","Cloud Agent","42e5949f-6586-4405-8885-c6c3eb8ee07d","2025-05-02T11:49:48.000+02:00","2026-04-22T11:54:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"171734767","226770082","lragtbpla1.sanef.groupe","","3e:33:fb:a0:00:a5, 3e:33:fb:a0:00:a4","10.45.1.227","fe80::3c33:fbff:fea0:a5,fe80::3c33:fbff:fea0:a4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63887","HPE I44 06/13/2025","VCGBW5200K","/n/Bios Asset Tag :","'+02:00","2026-02-23T17:19:46.000+02:00","oracle","Cloud Agent","8911252f-42b8-4a22-aa5b-fd12d7f3c2e8","2023-05-25T11:20:04.000+02:00","2026-04-22T10:15:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,AgileTime,DRH","339.0" +"148429963","223597160","vppatbcao1.sanef.groupe","VPPATBCAO1","00:50:56:82:D2:04","10.41.50.12","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-56 4d 5f 9d 99 48 14 99-c8 44 f7 cf 43 73 2a a7","NoAssetTag","'+02:00","2026-04-15T13:07:05.000+02:00","SANEF\ndead","Cloud Agent","5a73015a-cbba-4e60-a781-c3c171ceddd0","2022-11-17T19:02:47.000+02:00","2026-04-22T11:47:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,BDD-SQL DYN,Administration_MS","203.0" +"327577343","333860585","vrdsibetc3.sanef-rec.fr","","00:50:56:bf:85:20","10.100.16.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 3f e1 47 4c e6 87 c6-8f a5 dc 27 b2 4d 00 02","No Asset Tag","'+02:00","2026-01-06T13:53:56.000+02:00","cybadmbdd","Cloud Agent","aad2d7ad-d15c-4b5e-92a4-94921c6b4541","2025-05-27T15:24:08.000+02:00","2026-04-22T12:03:53.000+02:00","x86_64","2","SCA,VM,GAV","BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","141.0" +"159249333","211845831","vpsasactr1.sanef.groupe","","00:50:56:82:e1:6d","10.41.32.6","fe80::250:56ff:fe82:e16d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","128400","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7e 68 66 a1 6c aa-c6 3a e1 d6 dc 9c 09 7e","No Asset Tag","'+02:00","2026-03-25T16:02:01.000+02:00","cybreconcile","Cloud Agent","af6606fc-6a57-4b19-8632-834a308f2af4","2023-02-14T16:35:03.000+02:00","2026-04-22T10:15:07.000+02:00","x86_64","3","SCA,VM,PM,GAV","SAS,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,VRF_BURO_DC,BDD-POS DYN","93.0" +"213855690","251126730","lampdec1.sanef.groupe","","00:17:A4:77:14:E6","10.30.13.140","fe80::217:a4ff:fe77:14e6","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G8 Server","24","2000","Intel(R) Xeon(R) CPU E5-2620 0 @ 2.00GHz","48262","","CZ3232T6EL","","'+02:00","2024-09-17T10:37:46.000+02:00","cybadmbdd","Cloud Agent","156d7940-47a5-496d-a3fd-08a5a9f1150e","2024-02-05T20:01:30.000+02:00","2026-04-22T10:15:01.000+02:00","x86_64","3","SCA,VM,GAV","log4j,Cloud Agent,Linux Server,BusinessObjects,BDD-POS DYN,OS-LIN-SRV DYN,Obsolete,DFIN","529.0" +"335897723","336780141","vrrpaangx1.sanef-rec.fr","","00:50:56:9c:16:d2","10.45.14.227","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 1d 78 01 8c 4a d0-cd 00 26 9a 79 43 18 d9","No Asset Tag","'+02:00","2026-02-23T10:33:33.000+02:00","cybsupcar","Cloud Agent","44586578-1757-4548-b297-a52e315c4347","2025-06-24T10:23:46.000+02:00","2026-04-22T11:52:20.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Péage,MID-NGINX DYN,Linux Server,Cloud Agent","140.0" +"195074577","241703494","vvbocrsap1.sanef-rec.fr","","00:50:56:9c:55:c1","10.45.6.12","fe80::250:56ff:fe9c:55c1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c7 15 4c 32 fc 78-29 df 68 ce e2 c0 b1 ca","No Asset Tag","'+02:00","2026-03-10T10:11:12.000+02:00","cybsupsys","Cloud Agent","704b4548-7fc8-49e9-ae47-baa62e733487","2023-10-24T08:03:31.000+02:00","2026-04-22T10:14:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server,Flux Libre","334.0" +"404429706","362844343","PCB25818.sanef.groupe","PCB25818","28:95:29:22:6B:31","10.255.1.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CST","","'+02:00","2026-04-14T08:14:27.000+02:00","SANEF\HERVALET","Cloud Agent","dff09f1f-8855-4053-9cbe-c960455e1307","2026-02-26T17:29:22.000+02:00","2026-04-22T11:56:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"354366742","342354079","PCB20638.sanef.groupe","PCB20638","58:1C:F8:EB:40:42","10.205.0.130,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224CT9","","'+02:00","2026-03-31T19:53:12.000+02:00","astrid.dohou@sanef.com","Cloud Agent","0d76f518-6ffc-4ba6-a342-e1ff36e79e3b","2025-08-25T14:35:35.000+02:00","2026-04-22T10:14:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"406013806","363470533","PCM18569.sanef-int.adds","PCR18569","30:13:8B:6C:5B:B2","10.45.13.200","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473TP","","'+02:00","2026-03-19T16:24:59.000+02:00","UserPCT","Cloud Agent","e7c20ba6-38b2-4eb2-83f2-9ca31c79b341","2026-03-04T16:40:08.000+02:00","2026-04-22T11:57:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"373789062","350330628","PSX18689.sanef-int.adds","PSX18689","30:13:8B:6C:5E:56","10.12.40.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473W7","","'+02:00","2026-01-16T16:56:41.000+02:00","UserSextan","Cloud Agent","b065b30b-ba32-47ef-8830-e79499516bc8","2025-11-03T12:14:50.000+02:00","2026-04-22T11:23:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"342013503","337351895","PCB21113.sanef.groupe","PCB21113","E4:60:17:CA:30:73","10.255.3.227","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M8","","'+02:00","2026-04-02T09:44:23.000+02:00","SANEF\PERELLO-ext","Cloud Agent","e69eaa69-a48e-459a-95d7-c8ea2f157eb8","2025-07-15T17:13:42.000+02:00","2026-04-22T10:14:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"322374316","329449367","PCB23687.sanef.groupe","PCB23687","6C:0B:5E:EE:A3:58","10.200.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBL","","'+02:00","2026-03-30T08:56:35.000+02:00","SANEF\avinin","Cloud Agent","b0ccb98a-2481-4c5d-a9da-111bb07910dc","2025-05-06T14:06:59.000+02:00","2026-04-22T10:14:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"175461662","229280306","vvbotreco2.sanef-rec.fr","","56:ed:ae:09:e6:94, ea:fc:6a:70:d1:2c, 6e:70:e9:cb:2e:8a, c2:94:47:eb:4b:a0, 00:50:56:9c:93:d3, 02:b2:4d:b0:18:d0","10.45.6.155,10.89.0.1","fe80::54ed:aeff:fe09:e694,fe80::e8fc:6aff:fe70:d12c,fe80::6c70:e9ff:fecb:2e8a,fe80::c094:47ff:feeb:4ba0,fe80::250:56ff:fe9c:93d3,fe80::b2:4dff:feb0:18d0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f8 f4 f9 b9 d3 44-08 9f 36 b4 e3 36 1c 85","No Asset Tag","'+02:00","2026-03-10T15:11:05.000+02:00","cybreconcile","Cloud Agent","47dac430-a3d2-4dc3-84c3-2d5c3ea604fd","2023-06-22T16:50:06.000+02:00","2026-04-22T12:01:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Recette,flux_libre","140.0" +"350533261","340461433","PCB25828.sanef.groupe","PCB25828","28:95:29:1A:FE:C8","10.205.0.98,192.168.1.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT5","","'+02:00","2026-04-18T20:19:45.000+02:00","SANEF\GUENAND","Cloud Agent","f89eb558-97a3-4515-8ae6-937cbdf9d335","2025-08-11T11:41:21.000+02:00","2026-04-22T11:53:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"360522982","344983043","PCB18640.sanef.groupe","PCB18640","38:CA:84:DB:E6:DD","10.200.31.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDY","","'+02:00","2026-04-20T14:02:05.000+02:00","SANEF\SEGUIN","Cloud Agent","fb98fccf-c986-4390-a059-0853dd5780ce","2025-09-17T14:01:07.000+02:00","2026-04-22T10:13:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"399698917","361244581","PCV20889.sanef-int.adds","PCV20889","30:13:8B:6C:60:82","10.100.7.61","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q7W","","'+02:00","2026-03-30T15:08:57.000+02:00","Operateur","Cloud Agent","652ea2d4-e87f-4e13-ab57-d412f7864d66","2026-02-12T19:04:38.000+02:00","2026-04-22T10:13:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"130586805","192835988","vmamrdif1.sanef.groupe","","00:50:56:82:0C:04","10.45.2.25","fe80::250:56ff:fe82:c04","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 b7 da fe 38 e7 af-c5 f8 4a 09 65 33 bf 74","No Asset Tag","'+02:00","2025-10-09T11:37:48.000+02:00","root","Cloud Agent","4b4cc9e0-1393-4bd2-a872-473ff5d2607f","2022-07-07T11:59:30.000+02:00","2026-04-22T11:47:26.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,VRF_INCONNUE,BDD-POS DYN,OS-LIN-SRV DYN,DEX,Sextan,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,log4j,Trafic,Recette,Sans","696.0" +"334495487","336780139","vrdsiarad1.sanef-rec.fr","","00:50:56:9c:41:8f","10.45.14.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 8f e8 03 a0 cd 70-bf 12 f0 4b 25 5b 2c a1","No Asset Tag","'+02:00","2026-04-20T16:55:11.000+02:00","cybadmroot","Cloud Agent","091c8c68-abea-443f-8477-5cece3743e9f","2025-06-18T17:35:29.000+02:00","2026-04-22T10:13:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette,Radius","66.0" +"162519244","216734613","RSMIWDC1.sanef.groupe","RSMIWDC1","00:50:56:82:50:83","10.30.22.30","fe80::4c9d:c820:8775:1571","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 f1 c1 fd b2 81 c3-e5 6a 2b a8 22 d4 77 99","NoAssetTag","'+02:00","2026-02-25T10:47:44.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","02433872-6f9c-469f-8a5d-7bcd902f7912","2023-03-13T16:47:21.000+02:00","2026-04-22T10:13:36.000+02:00","64-Bit","5","SCA,VM,PM,GAV","AD,DSI,Cloud Agent,Windows Server,Critical,OS-WIN-SRV DYN","845.0" +"411158635","365551022","vplogakib1","","00:50:56:94:f3:0c","10.44.7.37","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 21 fe ed f3 95 c5-06 92 34 c4 70 65 6c 79","No Asset Tag","'+02:00","2026-04-15T10:55:05.000+02:00","cybintsys","Cloud Agent","8cf0a59b-7c48-4da0-bde5-d939c657fd99","2026-03-24T19:05:08.000+02:00","2026-04-22T10:13:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","103.0" +"175950696","229618441","vvbocharg1.sanef-rec.fr","","00:50:56:9c:8d:a8","10.45.6.4","fe80::250:56ff:fe9c:8da8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 84 e2 ba e7 23 1b-f3 1f e2 1c 6e 37 fe e6","No Asset Tag","'+02:00","2026-03-11T16:01:47.000+02:00","cybsupsys","Cloud Agent","79393a41-1ae4-4e20-a725-73faabdf17bf","2023-06-26T16:42:59.000+02:00","2026-04-22T11:56:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Cloud Agent,Linux Server,Flux Libre,MID-APACHE-TOMCAT DYN,Recette,OS-LIN-SRV DYN","142.0" +"396850110","360089022","PCB18614.sanef.groupe","PCB18614","38:CA:84:DB:E6:E4","10.106.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDF","","'+02:00","2026-04-13T13:00:05.000+02:00","SANEF\DISTINGUIN","Cloud Agent","3c994821-e79f-4deb-a477-8463801c2103","2026-02-02T13:24:34.000+02:00","2026-04-22T11:46:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"176395364","229973827","vpdaibana1","VPDAIBANA1","00:50:56:90:75:F4","10.41.70.20","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 64 2e 5d 70 d7 a9-70 2b d6 5c 4e a3 bc 0d","NoAssetTag","'+02:00","2026-04-15T11:04:00.000+02:00","ecoad-ext","Cloud Agent","80b5a9e3-a70d-4edf-8e31-d543e27cb0b4","2023-06-29T11:07:46.000+02:00","2026-04-22T10:13:28.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-POS DYN,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,DAI","352.0" +"305488465","322759721","PCB18483.sanef.groupe","PCB18483","D0:AD:08:AA:50:15","10.107.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GJ","","'+02:00","2026-04-06T13:03:08.000+02:00","SANEF\cambay","Cloud Agent","0505e19b-2c65-4141-b84b-b7d6a4b93591","2025-03-05T12:21:51.000+02:00","2026-04-22T10:13:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"378308167","352424268","PSX18702.sanef-int.adds","PSX18702","30:13:8B:6C:5D:48","10.100.40.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WL","","'+02:00","2026-04-19T12:49:58.000+02:00","UserSextan","Cloud Agent","9490eb13-b688-4a7d-849c-503110446069","2025-11-21T14:07:03.000+02:00","2026-04-22T10:13:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"378055027","352307187","vpdsiangx4.sanef.groupe","","00:50:56:90:b6:c0","192.168.19.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 58 e0 f3 49 5a cd-a1 4b 62 d7 2f 21 93 33","No Asset Tag","'+02:00","2025-11-20T13:40:09.000+02:00","root","Cloud Agent","7be8f63a-d7f7-49bc-956a-d6f883f75240","2025-11-20T13:41:29.000+02:00","2026-04-22T12:00:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","330.0" +"176109783","229744363","MTR-D1DSNT3","MTR-D1DSNT3","00:15:5D:42:DA:45, 90:8D:6E:93:CB:A9","172.19.80.1,10.2.32.201","fe80::4647:b54f:4158:f318,fe80::c5a2:db25:7e4:4d26","Windows / Client","Microsoft Windows 10 IoT Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","1992","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","D1DSNT3","","'+02:00","2026-04-22T02:32:44.000+02:00","Skype","Cloud Agent","21c0029e-682b-4175-8674-aac80e782b3d","2023-06-27T17:07:59.000+02:00","2026-04-22T10:13:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"400732597","361612568","PCV20864.sanef-int.adds","PCV20864","30:13:8B:6C:5B:EA","10.5.7.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q8D","","'+02:00","2026-02-18T11:40:07.000+02:00","Operateur","Cloud Agent","cdff5af6-a14c-4cc0-82cb-12e410a4fc96","2026-02-16T18:31:14.000+02:00","2026-04-22T11:05:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"351067078","341029049","PCB25808.sanef.groupe","PCB25808","F8:ED:FC:AB:02:4A","10.101.243.71","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVV","","'+02:00","2026-04-14T09:39:53.000+02:00","SANEF\BENHADDOU","Cloud Agent","c4f4693a-bb85-46be-a9c0-fb94d35d4bae","2025-08-13T11:13:59.000+02:00","2026-04-22T09:34:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"130588848","192836203","vmamrrdt1","","00:50:56:82:0C:6D, 00:50:56:82:09:BB","10.45.2.185,10.45.2.189,10.45.2.190,10.45.2.191,10.45.2.193,10.45.3.185,10.45.3.189,10.45.3.190,10.45.3.191,10.45.3.193","fe80::250:56ff:fe82:c6d,fe80::250:56ff:fe82:9bb","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 40 aa b1 b8 96 ee-ca 32 05 82 2c 6a be 61","No Asset Tag","'+02:00","2025-10-09T11:38:41.000+02:00","cybexpapp","Cloud Agent","8fb0d821-c304-4c9d-9bc4-1bea5285db80","2022-07-07T12:03:10.000+02:00","2026-04-22T11:49:27.000+02:00","x86_64","5","SCA,VM,PM,GAV","DEX,log4j,OS-LIN-SRV DYN,Obsolete,Trafic,Sans,Recette,VRF_INCONNUE,MIVISU,Cloud Agent,Linux Server","873.0" +"173079542","227655711","vdbocmedi1.sanef-rec.fr","","00:50:56:9c:2e:2f","10.45.6.37","fe80::250:56ff:fe9c:2e2f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d2 43 f7 d2 cf b3-01 ce 33 e0 9a 55 5d a6","No Asset Tag","'+02:00","2026-03-11T10:03:59.000+02:00","ibmsysuser","Cloud Agent","56d77215-91cc-4a3c-a9d7-1115975bdce9","2023-06-05T15:51:34.000+02:00","2026-04-22T10:12:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre,OS-LIN-SRV DYN","333.0" +"318377516","328022255","PCB22843.sanef.groupe","PCB22843","D0:AD:08:A3:E6:DA","10.107.31.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQQ","8CC3502YQQ","'+02:00","2026-03-24T15:20:11.000+02:00","SANEF\bocquetp","Cloud Agent","51d78c3f-b88b-4061-af9f-efe4c28236f0","2025-04-22T10:57:41.000+02:00","2026-04-22T11:58:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"407337019","364036786","MAC16761","MAC16761","be:74:3d:d4:10:06","10.255.1.178,192.168.1.63","2a01:cb0c:82e4:9d00:5df:fd0d:fbbc:a62e,2a01:cb0c:82e4:9d00:1c29:7e9:901f:c0f8,fe80::437:dcc1:5ddc:d184","Mac / Client","Apple macOS Tahoe (26.4)","26.4","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFF94DDQ05P","","'+02:00","2026-03-26T10:51:00.000+02:00","Sylvain.DAVROU","Cloud Agent","0e51b99e-2b91-4e5b-a65b-0f9e4da0bfdc","2026-03-10T11:00:05.000+02:00","2026-04-22T10:12:52.000+02:00","arm64_M1","2","SCA,VM,PM,GAV","Cloud Agent,MID-NGINX DYN,BDD-POS DYN","64.0" +"294384825","316468985","vptrabwaz1.sanef.groupe","","00:50:56:90:eb:a7","10.41.40.124","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 81 00 bc 47 3a d7-67 52 ba 14 24 0f 77 35","No Asset Tag","'+02:00","2026-01-21T15:15:10.000+02:00","cybintsys","Cloud Agent","4716d04a-9ddd-447e-b8d4-7fe20ca5c32f","2025-01-23T13:48:18.000+02:00","2026-04-22T11:49:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,BDD-ELA DYN,OS-LIN-SRV DYN","142.0" +"322126626","329347477","PCB21593.sanef.groupe","PCB21593","60:45:2E:10:9D:2F","10.255.2.234","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS6","8CC3502YS6","'+02:00","2026-03-29T09:11:36.000+02:00","SANEF\GUHRING","Cloud Agent","2ee97cac-697b-4702-8cbe-39cb31335717","2025-05-05T16:22:20.000+02:00","2026-04-22T10:12:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"189179496","238409385","vvpeaarcv2.sanef-rec.fr","","00:50:56:9c:2e:91","10.45.6.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c b9 78 20 06 79 a2-ad 17 ca 6a 65 ff ff 78","No Asset Tag","'+02:00","2026-03-09T13:04:38.000+02:00","cybreconcile","Cloud Agent","8358e818-71b8-4b64-8f6d-38275e33642f","2023-09-21T13:59:29.000+02:00","2026-04-22T11:38:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN,Recette,flux_libre,Flux Libre","336.0" +"177828430","231012596","vpdsiatse1.sanef-int.adds","VPDSIATSE1","00:50:56:8D:32:9D","10.44.2.40","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2800","INTEL(R) XEON(R) GOLD 6526Y","4095","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 0d 9f b7 18 ff cd 73-59 96 c3 b2 35 93 4a 02","NoAssetTag","'+02:00","2026-04-13T11:35:39.000+02:00","SANEF-INT\B05604","Cloud Agent","65be929f-e674-4a81-a807-cba2973cee83","2023-07-10T10:30:01.000+02:00","2026-04-22T10:12:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Rebond","246.0" +"238296972","269274161","lpemvbpemv4.sanef.groupe","","00:17:a4:77:1c:94, 00:17:a4:77:1c:24, 00:17:a4:77:1c:20","169.254.17.11,172.16.0.118,192.168.103.118,192.168.101.118,192.168.101.148","fe80::217:a4ff:fe77:1c94,fe80::217:a4ff:fe77:1c24,fe80::217:a4ff:fe77:1c20","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","CZ255300JN","","'+02:00","2025-10-08T16:33:15.000+02:00","grid","Cloud Agent","bffc7a43-eac3-4dbb-8f25-1cd79473640b","2024-05-21T16:48:50.000+02:00","2026-04-22T10:12:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,EMV,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17,Production","684.0" +"407771009","364205182","splogbels4","","d4:f5:ef:39:84:5d","10.44.7.44","fe80::d6f5:efff:fe39:845d","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G10 Server","16","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","31493","HPE U30 08/06/2025","CZ2051091W","","'+02:00","2026-03-27T16:25:40.000+02:00","cybintsys","Cloud Agent","560222bd-b1c6-49c2-99a3-59a8d298040d","2026-03-11T18:30:30.000+02:00","2026-04-22T11:55:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Cloud Agent,OS-LIN-SRV DYN,Linux Server,Production,BDD-ELA DYN","152.0" +"332880170","333625720","vpagtaftp1.sanef.groupe","VPAGTAFTP1","00:50:56:82:D2:66","10.46.33.20","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 4a 31 18 3b bd 68-fe ef 97 cf 6b aa f4 42","NoAssetTag","'+02:00","2026-03-26T15:01:27.000+02:00","SANEF\tbead","Cloud Agent","0b581902-f4aa-4d41-bead-26382e2b591a","2025-06-12T12:02:48.000+02:00","2026-04-22T11:48:57.000+02:00","64-Bit","2","SCA,VM,GAV","OS-WIN-SRV DYN,Cloud Agent","59.0" +"165730508","236955949","vrvidavsc2.recette.adds","VRVIDAVSC2","00:50:56:9C:0F:43","10.45.7.100","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1c b0 f5 ee d5 3d 72-b2 c6 fe d3 19 f5 13 fe","NoAssetTag","'+02:00","2026-01-05T15:04:23.000+02:00","RECETTE\ndessoye","Cloud Agent","f8fe790f-1387-41a7-9b0a-46977dcba96f","2023-04-07T10:40:06.000+02:00","2026-04-22T12:02:13.000+02:00","64-Bit","3","SCA,VM,GAV","OS-WIN-SRV DYN,DEX,NVR,Cloud Agent,Recette","517.0" +"323186398","329818130","PCB23770.sanef.groupe","PCB23770","6C:0B:5E:EE:B3:F8","10.3.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4V","","'+02:00","2026-04-20T07:18:09.000+02:00","SANEF\russoj","Cloud Agent","dbfe840f-5a7b-4c85-b766-bdb994242d6e","2025-05-09T14:22:24.000+02:00","2026-04-22T10:12:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"360834094","345069350","vrrauafrt1.sanef-rec.fr","","00:50:56:9c:5c:ed, 00:50:56:9c:18:ff","10.45.9.235,10.45.5.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c c1 ae b8 80 17 13-bd 2a a6 c7 93 d4 cc 41","No Asset Tag","'+02:00","2026-04-21T15:17:32.000+02:00","cybadmsys","Cloud Agent","bfe3f61e-251b-4f25-b3ea-8df35e5bfaa0","2025-09-18T07:47:18.000+02:00","2026-04-22T11:58:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","47.0" +"380802560","353385274","PCB17971.sanef.groupe","PCB17971","C0:18:03:85:64:0A","10.100.39.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC2061747","8CC2061747","'+02:00","2026-04-16T05:00:14.000+02:00","SANEF\chaves","Cloud Agent","997d96d2-754f-42b0-9359-31dde9cb6d3d","2025-12-02T12:45:57.000+02:00","2026-04-22T12:01:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"194984819","241652733","vpbotbsql1.sanef.groupe","VPBOTBSQL1","00:50:56:90:0B:08, 02:E5:04:1E:05:EE","10.41.23.12,169.254.1.116","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 10 10 78 4a 09 f6 53-49 2b 3b 1c b7 d8 7b 6d","NoAssetTag","'+02:00","2026-04-21T15:46:07.000+02:00","SANEF\ndead","Cloud Agent","dd33cb73-139d-4169-9695-e512ea181f7f","2023-10-23T17:39:53.000+02:00","2026-04-22T10:11:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,FreeFlow,Flux Libre,Cloud Agent,Windows Server,flux_libre,Production","254.0" +"322648531","329616868","PCS22776.sanef-int.adds","PCS22776","D0:AD:08:A3:E7:A6","10.152.13.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YL3","","'+02:00","2026-04-01T09:59:59.000+02:00","user_stl","Cloud Agent","6d7e9ff0-e896-4a9d-abf0-9fc27f072c14","2025-05-07T17:42:16.000+02:00","2026-04-22T11:53:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","346.0" +"314663097","326546973","vpdsiakib1.sanef.groupe","","00:50:56:94:87:c4","10.44.5.165","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 41 44 1c 7d d8 ce-ca 45 1e 1f 74 cc 25 3f","No Asset Tag","'+02:00","2026-02-10T10:24:43.000+02:00","cybreconcile","Cloud Agent","fc28a327-5742-4f5b-a645-7c184930d7a0","2025-04-08T17:03:59.000+02:00","2026-04-22T11:51:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server","140.0" +"321551175","329071331","PCB22814.sanef.groupe","PCB22814","D0:AD:08:A3:E6:D9","10.103.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQP","8CC3502YQP","'+02:00","2026-04-19T13:02:45.000+02:00","SANEF\swaertvaeger","Cloud Agent","e76ce93d-3d9c-4758-ab01-a6d117fd0300","2025-05-02T09:56:24.000+02:00","2026-04-22T10:11:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"375600264","351158513","DAI20967.sanef-int.adds","DAI20967","BC:0F:F3:88:FD:3A","10.100.70.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LM6","","'+02:00","2025-11-13T18:31:22.000+02:00","DAIUSER","Cloud Agent","45122d92-2740-4359-b113-3f379d50dc9f","2025-11-10T16:58:50.000+02:00","2026-04-22T10:11:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"199138445","243767693","vptchagtc2","VPTCHAGTC2","00:50:56:82:02:1D","10.41.19.46","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 ae 23 2c ba ff e0-6d 80 d3 b4 97 56 0f 70","NoAssetTag","'+02:00","2026-03-24T15:57:38.000+02:00","admin_gtc","Cloud Agent","3fc2ad16-d593-4fc3-b8d1-398a93e3dc45","2023-11-15T13:19:31.000+02:00","2026-04-22T11:39:10.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,BDD-SQL DYN,GTC,DEX,OS-WIN-SRV DYN","831.0" +"270790245","300117334","SVP21041.sanef-int.adds","SVP21041","D0:AD:08:A7:28:13","10.154.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK4","","'+02:00","2026-04-20T05:08:24.000+02:00","Superviseur","Cloud Agent","633bd512-1b3d-421d-bef3-b9c739645c53","2024-10-08T10:24:40.000+02:00","2026-04-22T12:03:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"387115105","356492877","vmdtrac09.recette.adds","VMDTRAC09","00:50:56:9C:37:63","10.45.17.11","fe80::fd80:245e:2758:9f76","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 1e c5 6c 18 d7 a6-8b 40 88 de 2b c5 2f 84","NoAssetTag","'+02:00","2026-04-16T02:50:52.000+02:00","supwindev","Cloud Agent","089ed4c8-d023-47c3-861b-72d9f3bd1598","2025-12-31T10:57:02.000+02:00","2026-04-22T10:11:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"320612891","328743971","PCB23637.sanef.groupe","PCB23637","6C:0B:5E:EE:A3:46","10.5.31.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBR","","'+02:00","2026-04-13T10:46:42.000+02:00","SANEF\floquets","Cloud Agent","f21ebfcb-df2f-4a79-9ffd-1f69ae802d4c","2025-04-29T17:09:21.000+02:00","2026-04-22T11:37:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"332233886","","PCB21174.sanef.groupe","PCB21174","F0:20:FF:9A:A7:D1","10.255.4.220","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HV8","","'+02:00","2026-04-13T13:22:45.000+02:00","SANEF\VINCENT","Cloud Agent","8473c510-32b3-4349-8dc4-039018c66011","2025-06-10T10:49:13.000+02:00","2026-04-22T10:11:14.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"169599230","225349571","vrpeaabst1","","ba:f3:68:f1:12:88, 00:50:56:9c:19:a2","10.88.0.1,192.168.31.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8c ba 46 dd f6 5c-87 b2 62 4e 52 99 23 2d","No Asset Tag","'+02:00","2026-02-18T10:30:01.000+02:00","cybastapp","Cloud Agent","e860f3f8-0fb1-47d1-a9bf-03ee4de3146c","2023-05-09T15:02:28.000+02:00","2026-04-22T11:56:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,DMZ,BOOST,Cloud Agent,Linux Server,DSI,Péage,OS-LIN-SRV DYN","327.0" +"159252140","211849458","vpsasawrk1.sanef.groupe","","00:50:56:82:97:37","10.41.32.10","fe80::250:56ff:fe82:9737","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 5a 6d 3c 43 b4 c2-31 62 2c 0b 7c 39 7a 2d","No Asset Tag","'+02:00","2026-03-25T16:03:56.000+02:00","cybreconcile","Cloud Agent","54c2b156-2f0e-4b01-8fbb-36327c43c9b1","2023-02-14T17:09:43.000+02:00","2026-04-22T11:57:34.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,VRF_BURO_DC,OS-LIN-SRV DYN,BDD-POS DYN,SAS,Cloud Agent,Linux Server","93.0" +"191765853","239933428","vragtatse2.recette.adds","VRAGTATSE2","00:50:56:9C:43:55","10.45.1.229","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c f1 8f 94 76 6c e2-ae 62 d0 6a 98 bb 18 ab","NoAssetTag","'+02:00","2026-02-23T16:35:48.000+02:00","RECETTE\B07185","Cloud Agent","32a897e3-a0fa-42bd-9af9-df9b07fe5271","2023-10-06T12:05:08.000+02:00","2026-04-22T10:11:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DRH,OS-WIN-SRV DYN,Cloud Agent,Windows Server,AgileTime,Recette","254.0" +"373797096","350330421","MacBook-Pro.sanef.groupe","MACBOOK-PRO-4","3e:ac:d0:93:0f:7e","192.168.1.115,10.204.70.141","fe80::189a:9816:1487:3816","Mac / Client","Apple macOS Tahoe (26.3.1)","26.3","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFF76D2Q05N","","'+02:00","2026-04-18T11:28:00.000+02:00","julien.pointillart","Cloud Agent","fc100b8f-172c-4195-a427-59ed1ae155da","2025-11-03T12:13:15.000+02:00","2026-04-22T10:11:01.000+02:00","arm64_M1","2","SCA,VM,PM,GAV","Cloud Agent","63.0" +"188895660","238252323","lpgesanas2.sanef.groupe","LPGESANAS2","02:E3:AB:43:6D:CF, 3E:33:FB:A0:00:05, 3E:33:FB:A0:00:09","169.254.2.74,10.46.30.6,10.46.30.10,10.43.1.67","fe80::5106:3f7d:2c33:4fcc,fe80::12b:5f13:aea1:d222,fe80::125:5db5:8ab1:33ca","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Computers / Server","HPE Synergy 480 G10 Server","32","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","65223","HPE I44","VCGBW52000","","'+02:00","2026-01-29T11:31:54.000+02:00","Administrateur","Cloud Agent","43814114-511e-429b-ad01-d7e92d7a00b0","2023-09-20T11:03:53.000+02:00","2026-04-22T10:10:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DFS,Cloud Agent,Windows Server","348.0" +"396161645","359784957","vmdtrac14.recette.adds","VMDTRAC14","00:50:56:9C:8A:5B","10.45.17.16","fe80::e691:fe78:141b:944b","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 27 e4 59 ee 77 1f-ca 4e 41 63 b3 62 20 99","NoAssetTag","'+02:00","2026-04-16T17:37:32.000+02:00","supwindev","Cloud Agent","5609fda0-844d-4131-b11f-aa3a87779c64","2026-01-30T18:37:03.000+02:00","2026-04-22T11:46:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"280788729","305600067","PCB21325.sanef.groupe","PCB21325","D0:AD:08:AA:50:9D","10.220.31.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LX","","'+02:00","2026-04-01T10:43:25.000+02:00","SANEF\graveleaun","Cloud Agent","3b048d80-d65c-464a-aca5-2ae1be469108","2024-11-20T12:11:55.000+02:00","2026-04-22T11:14:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","146.0" +"281406923","305953568","vtpataels1.sanef-rec.fr","","00:50:56:9c:b6:b3","10.45.9.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c7 9a 4d 53 0c 32-65 e0 44 6f f3 07 80 1d","No Asset Tag","'+02:00","2026-04-14T16:00:43.000+02:00","cybsecope","Cloud Agent","fe05b703-706a-4324-ae6c-0952a9bc8caa","2024-11-22T11:14:25.000+02:00","2026-04-22T10:10:30.000+02:00","x86_64","2","VM,PM,GAV","Recette,Patrimoine,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","65.0" +"366064116","347186417","PCB25784.sanef.groupe","PCB25784","F8:ED:FC:AB:02:99","10.5.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVH","","'+02:00","2026-04-15T11:40:40.000+02:00","SANEF\vengadassalame","Cloud Agent","c95c8ebe-4671-404d-92e9-3e0909414d95","2025-10-07T11:37:09.000+02:00","2026-04-22T10:59:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","147.0" +"387155302","356516515","vmdtrac13.recette.adds","VMDTRAC13","00:50:56:9C:D4:00","10.45.17.15","fe80::b111:bf7e:14b6:6bfa","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 69 3d 81 69 88 4e-f3 4e 49 6c a6 69 8f f7","NoAssetTag","'+02:00","2026-04-16T17:37:04.000+02:00","supwindev","Cloud Agent","61ebeb29-2896-429c-a953-e90bdc01c05e","2025-12-31T16:27:50.000+02:00","2026-04-22T11:34:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"364982225","346726315","PCB22263.sanef.groupe","PCB22263","D0:AD:08:A7:27:DC","10.5.30.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YST","","'+02:00","2026-04-21T15:01:59.000+02:00","SANEF\bregoli","Cloud Agent","0c59da4a-9f6f-4b2b-a91b-08c0a472e050","2025-10-02T15:20:28.000+02:00","2026-04-22T10:10:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"175416002","229251780","vvbocs4as2.sanef-rec.fr","","00:50:56:9c:0b:6b","10.45.6.10","fe80::250:56ff:fe9c:b6b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 12 88 ad 5a c9 fd-2b 42 24 7c e1 69 48 a2","No Asset Tag","'+02:00","2026-03-09T11:36:12.000+02:00","cybsupsys","Cloud Agent","962f14d5-aa5d-453f-9736-a87f28712b1f","2023-06-22T11:15:17.000+02:00","2026-04-22T10:10:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Recette,Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN","142.0" +"227199088","256869360","ls-athies","LS-ATHIES","00:50:56:90:78:37","10.41.2.51","fe80::eeea:5484:4cf4:108f","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 5d 0e c3 d1 39 ae-1a 7c 58 cd 16 76 03 27","NoAssetTag","'+02:00","2026-04-02T09:43:27.000+02:00","svpadmin","Cloud Agent","5bb309bc-6e4d-4e91-9d19-5a2bd380a8c1","2024-04-03T10:42:00.000+02:00","2026-04-22T11:57:46.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,SVP,High,Péage","507.0" +"324401372","330231590","PCB20833.sanef.groupe","PCB20833","6C:0B:5E:EE:A3:0D","10.5.31.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H32","","'+02:00","2026-03-31T16:19:22.000+02:00","SANEF\callec","Cloud Agent","ecd75740-cbe4-490b-accd-366d7c0063a8","2025-05-13T14:48:16.000+02:00","2026-04-22T10:10:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"249841179","288937560","vpbocardp1.sanef.groupe","VPBOCARDP1","00:50:56:90:36:0F","10.44.6.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 ce 76 21 21 94 98-74 9e 9b f3 6c d1 59 d2","NoAssetTag","'+02:00","2026-04-01T10:36:13.000+02:00","SANEF\ndead","Cloud Agent","93e9065a-e8e9-438f-b169-e61b8c59bdb1","2024-07-10T17:46:18.000+02:00","2026-04-22T10:09:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,flux_libre,Cloud Agent","245.0" +"130588308","192835991","vmamrhtp2","","00:50:56:82:6A:A5, 00:50:56:82:47:9D, 00:50:56:82:4A:25","10.33.16.51,10.30.16.51,10.30.16.54,10.30.16.55,10.30.16.56,10.32.16.51,10.32.16.54,10.32.16.55,10.32.16.56","fe80::250:56ff:fe82:6aa5,fe80::250:56ff:fe82:479d,fe80::250:56ff:fe82:4a25","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 4b 5e e6 a2 bd cc-12 db 6d 7c 85 60 a4 9d","No Asset Tag","'+02:00","2025-10-09T11:55:07.000+02:00","cybexpapp","Cloud Agent","577d5ed6-0449-42c4-b1d6-54d920fc49a4","2022-07-07T12:00:59.000+02:00","2026-04-22T11:31:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Cloud Agent,Linux Server,DEX,VRF_INCONNUE,Obsolete,Amelie","349.0" +"131403992","193422091","lamaprac2.sanef.groupe","","00:17:A4:77:10:30, 00:17:A4:77:10:2C, 00:17:A4:77:10:24, 00:17:A4:77:10:28","10.43.40.52,192.168.17.121,10.41.40.52,10.41.40.53,10.43.4.132,169.254.214.18","fe80::217:a4ff:fe77:1030,fe80::217:a4ff:fe77:102c,fe80::217:a4ff:fe77:1024,fe80::217:a4ff:fe77:1028","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DH","","'+02:00","2025-10-06T11:06:39.000+02:00","cybadmbdd","Cloud Agent","ce87a0f9-a504-4146-9a16-6a37638d429f","2022-07-13T10:10:23.000+02:00","2026-04-22T11:59:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,OS-LIN-SRV DYN,log4j,VRF_TRAFIC_DC,Sans,Trafic,Production","351.0" +"292150349","314800832","ls-spare-tqx","LS-SPARE-TQX","00:50:56:82:B1:FE","10.4.2.252","fe80::6b41:6b3c:ae09:56ae","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 3f 94 27 77 d5 aa-62 a0 85 e0 f2 11 b0 36","NoAssetTag","'+02:00","2026-02-16T14:13:46.000+02:00","gare","Cloud Agent","86a31016-7c98-475d-aea0-da188fbafc34","2025-01-14T10:26:44.000+02:00","2026-04-22T11:33:59.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Péage,SVP,OS-WIN-SRV DYN","680.0" +"216883440","252316001","vpaflgsys1.sanef.groupe","","00:50:56:9c:b2:c4","10.46.34.8","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 49 a9 85 65 58 62-44 16 76 34 12 cc c7 e7","No Asset Tag","'+02:00","2026-04-01T10:04:25.000+02:00","cybsupapp","Cloud Agent","53dcd2a6-a9b8-4b6a-bd86-653e7a553ef0","2024-02-19T12:34:56.000+02:00","2026-04-22T11:33:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,flux_libre,Cloud Agent,Linux Server,Flux Libre","143.0" +"320444685","328709020","PCB24029.sanef.groupe","PCB24029","6C:0B:5E:F8:D8:8B","10.100.39.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDL","","'+02:00","2026-04-20T10:05:36.000+02:00","SANEF\BLANCHOT","Cloud Agent","dd065323-22b7-4363-8641-3a69d11eebaa","2025-04-29T11:17:33.000+02:00","2026-04-22T10:54:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"242127639","276920601","vpvsaaiad2","","00:50:56:9a:20:fb","10.44.0.105","fe80::250:56ff:fe9a:20fb","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a ff 99 15 58 8c 88-35 5e 93 3a 9d 82 57 2d","No Asset Tag","'-04:00","2026-02-04T18:09:39.000+02:00","tbaad-ext","Cloud Agent","7f232d97-39f9-4718-a716-f12f7b69e0aa","2024-06-06T15:32:26.000+02:00","2026-04-22T10:56:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"397495753","360376399","vmmvscdem4.sanef-int.adds","VMMVSCDEM4","00:50:56:90:90:97","10.41.7.238","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 9c fa 06 87 56 c5-0a ea b7 df c7 1d 9b e0","NoAssetTag","'+02:00","2026-02-05T12:59:34.000+02:00","Operateur","Cloud Agent","ca96ab59-e33d-4372-93a9-a8bc4053ba6f","2026-02-04T18:58:37.000+02:00","2026-04-22T10:09:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"131405505","193423067","rmila150.sanef.groupe","","A0:D3:C1:FB:60:28","10.30.11.42","fe80::a2d3:c1ff:fefb:6028","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant DL360p G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","64386","HP P71 05/21/2018","CZJ429008S","","'+02:00","2025-10-22T09:42:22.000+02:00","cybexpapp","Cloud Agent","16d71e28-4c81-4b1f-be5d-590341dfacf0","2022-07-13T10:22:07.000+02:00","2026-04-22T10:31:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,Production,Sans,VRF_INCONNUE,Obsolete,OS-LIN-SRV DYN,log4j,DEX,Central péage,ServersInCyberark,Cloud Agent,Linux Server","346.0" +"417983498","368438752","MTO22918.sanef.groupe","MTO22918","60-45-2E-11-62-C8, 60-45-2E-11-62-C9, D0-AD-08-A3-7B-E7, 62-45-2E-11-62-C8, 60-45-2E-11-62-CC","10.252.4.7","fe80::1c7f:c169:2354:6c42","Windows / Client","Microsoft Windows 11 Enterprise (Insider Preview Build 26200)","11","Computers / Unidentified","Computers","","","","","","8CC3502YVJ","","'+02:00","","","Cloud Agent","2aef0277-ab6f-41f7-b587-ecd0feeeebc8","2026-04-22T10:09:31.000+02:00","2026-04-22T11:55:30.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"376333333","351479848","PCB24092.sanef.groupe","PCB24092","C8:58:B3:34:29:D4","10.205.0.44,192.168.1.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M6S","","'+02:00","2026-04-16T08:55:09.000+02:00","SANEF\saidani-ext","Cloud Agent","59c64de1-23d7-4552-af68-5c91b83f3971","2025-11-13T11:19:00.000+02:00","2026-04-22T10:09:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"364174784","346468694","PCV18551.sanef-int.adds","PCV18551","30:13:8B:6C:58:C4","10.152.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473T7","","'+02:00","2026-02-23T10:24:02.000+02:00","Operateur","Cloud Agent","68c49748-f12c-4783-af66-3f80a59b3cf9","2025-09-30T11:18:52.000+02:00","2026-04-22T10:09:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"324329964","330197568","PCB18617.sanef.groupe","PCB18617","64:D6:9A:74:70:E8","10.4.31.74,192.168.1.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDB","","'+02:00","2026-03-30T17:12:18.000+02:00","SANEF\mathieu","Cloud Agent","ddfe41d6-895f-4d9c-998c-2e1dc7dda92c","2025-05-13T09:54:36.000+02:00","2026-04-22T11:40:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"362737044","345821231","PCB17878.sanef.groupe","PCB17878","70:A8:D3:85:C5:EB","192.168.1.196","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG217247P","","'+02:00","2026-04-22T09:10:40.000+02:00","SANEF\valdegamberi","Cloud Agent","09be7180-eb17-48d4-8fed-1385099a1b81","2025-09-24T16:51:22.000+02:00","2026-04-22T10:09:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"324324774","330196892","PCB18615.sanef.groupe","PCB18615","38:CA:84:DB:E6:CA","10.4.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDH","","'+02:00","2026-04-17T13:28:22.000+02:00","SANEF\zabajewski","Cloud Agent","c9e5544a-a263-474f-86d8-d8bca3598134","2025-05-13T09:46:03.000+02:00","2026-04-22T11:51:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"207907268","248274035","vpaflbsta1.sanef.groupe","VPAFLBSTA1","00:50:56:9C:54:C9","10.46.34.4","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 7f e6 41 c1 7f a6-73 ad 2e bb 19 34 52 3c","NoAssetTag","'+02:00","2026-04-01T15:07:21.000+02:00","Administrateur","Cloud Agent","51f7c157-2957-456c-8edd-853703367264","2024-01-05T11:20:10.000+02:00","2026-04-22T10:09:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,flux_libre,BDD-SQL DYN,OS-WIN-SRV DYN,Flux Libre,FreeFlow,Cloud Agent,Windows Server","254.0" +"371887041","349552432","PCB22449.sanef.groupe","PCB22449","D0:AD:08:A3:E6:CD","10.105.31.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSK","8CC3502YSK","'+02:00","2026-04-14T09:42:00.000+02:00","SANEF\delahaye","Cloud Agent","d712f0b7-8404-4eb0-a761-84d2665ea949","2025-10-27T08:51:17.000+02:00","2026-04-22T10:09:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"282888814","313088162","vrdsiagit1.sanef-rec.fr","","00:50:56:9c:44:d5","10.45.7.229","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 01 ac 23 c6 f6 6a-52 07 e7 92 59 43 f0 9d","No Asset Tag","'+02:00","2025-12-10T17:07:56.000+02:00","root","Cloud Agent","29eef19b-47bf-4321-b9d0-5f5954622254","2024-11-28T11:04:17.000+02:00","2026-04-22T11:42:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Recette,GitLab,Linux Server,Cloud Agent","141.0" +"381854279","353709866","PCB22280.sanef.groupe","PCB22280","D0:AD:08:A3:7B:DC","10.252.42.141","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVQ","8CC3502YVQ","'+02:00","2026-04-09T10:18:41.000+02:00","SANEF\fontained","Cloud Agent","d1f5a865-0e09-42ab-8796-93a63055ea81","2025-12-05T10:34:07.000+02:00","2026-04-22T11:33:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"208624727","248644832","vibotrssm2.sanef.groupe","","00:50:56:90:69:c2","10.41.23.153","fe80::250:56ff:fe90:69c2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 21 65 d0 bb f0 bc-fa 79 45 bc 6f 83 c7 fa","No Asset Tag","'+02:00","2026-03-18T16:38:50.000+02:00","cybreconcile","Cloud Agent","b6c6fa77-f6ed-44e3-a92d-9467175a1d35","2024-01-09T18:19:50.000+02:00","2026-04-22T11:59:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Production,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Cloud Agent,Linux Server,flux_libre","139.0" +"323156235","329793780","PCB22314.sanef.groupe","PCB22314","D0:AD:08:A3:7B:E4","10.200.30.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZR","8CC3502YZR","'+02:00","2026-03-30T09:34:21.000+02:00","SANEF\breval","Cloud Agent","838182af-fb6c-491f-86c2-424d3aed026a","2025-05-09T09:32:44.000+02:00","2026-04-22T10:08:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"380798367","353383553","PCB17968.sanef.groupe","PCB17968","C0:18:03:85:61:62","10.100.39.157","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206175K","8CC206175K","'+02:00","2026-04-06T22:46:47.000+02:00","SANEF\PSI","Cloud Agent","8c2d1305-36e4-484e-b775-0e69cc5fc308","2025-12-02T12:27:47.000+02:00","2026-04-22T10:08:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"321578354","329094786","PCB22325.sanef.groupe","PCB22325","D0:AD:08:A3:7C:BD","10.207.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYK","8CC3502YYK","'+02:00","2026-04-07T13:04:09.000+02:00","SANEF\belloc","Cloud Agent","14032de5-179b-4306-8757-a301d6afb305","2025-05-02T15:01:59.000+02:00","2026-04-22T10:08:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"271509896","300534723","PCM16040.sanef.groupe","PCM16040","48:9E:BD:4B:90:39","10.200.61.6","fe80::209c:af45:5765:904e","Windows / Client","Microsoft Windows 10 Enterprise (20H2 Build 19042.746)","20H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129285J","8CC129285J","'+02:00","2026-02-19T11:19:34.000+02:00","SANEF\opessarts","Cloud Agent","33953a53-0949-4911-a82a-32138461c342","2024-10-11T10:01:01.000+02:00","2026-04-22T10:08:27.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","685.0" +"272326721","300954740","vvbotaapm2.sanef-rec.fr","","2a:6b:d6:c3:8a:75, 00:50:56:9c:73:de, 7a:3c:ba:2d:1a:de, 2e:4a:5a:df:b9:7d, 4a:80:9b:0e:a8:dd, ba:51:e4:e5:73:f8, 32:b0:53:b2:af:ef","10.45.6.157,10.89.0.1","fe80::286b:d6ff:fec3:8a75,fe80::250:56ff:fe9c:73de,fe80::783c:baff:fe2d:1ade,fe80::2c4a:5aff:fedf:b97d,fe80::4880:9bff:fe0e:a8dd,fe80::b851:e4ff:fee5:73f8,fe80::30b0:53ff:feb2:afef","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 22 b4 ed d0 bb 55-bd c6 34 0a 12 17 3a 11","No Asset Tag","'+02:00","2026-03-10T10:48:23.000+02:00","kapschsysuser","Cloud Agent","2e9b3aa9-4441-49d9-a57b-d87526c3176f","2024-10-15T12:09:05.000+02:00","2026-04-22T11:46:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","142.0" +"332353560","333860644","vpameakfk1.sanef.groupe","","00:50:56:90:04:1c","10.41.41.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 b3 9d 5a d9 91 de-49 0d d0 9b 5b 6b 02 07","No Asset Tag","'+02:00","2025-10-29T11:27:17.000+02:00","cybadmbdd","Cloud Agent","51544ed6-bde3-4faa-b97f-31bb7e0d44f9","2025-06-10T16:29:00.000+02:00","2026-04-22T10:08:16.000+02:00","x86_64","4","SCA,VM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Sextan,Production","278.0" +"210040166","249438986","siboomcla1.sanef.groupe","","5c:ba:2c:61:34:d0","10.41.22.204","fe80::87:a7ad:d2b7:8033","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95780","HPE U30 07/20/2023","CZ22410FK8","","'+02:00","2026-03-16T12:58:26.000+02:00","cybsupemo","Cloud Agent","c8cf4951-9272-4efe-9a0a-53b3b1d1ed4d","2024-01-17T12:56:03.000+02:00","2026-04-22T12:01:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN","337.0" +"305327615","322689789","PCB22628.sanef.groupe","PCB22628","D0:AD:08:AA:50:0D","10.107.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764G8","","'+02:00","2026-04-21T11:38:01.000+02:00","SANEF\petriaux","Cloud Agent","c353ba5c-5606-4e4d-9bb3-447be80e8959","2025-03-04T19:28:59.000+02:00","2026-04-22T11:51:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"225055358","255954594","ls-jules-verne","LS-JULES-VERNE","00:50:56:90:AD:45","10.132.5.20","fe80::a0cb:a872:d8e0:358f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 ed bf a3 fc 33 04-92 97 48 4a c5 88 4d 25","NoAssetTag","'+02:00","2026-03-03T11:35:55.000+02:00","svpadmin","Cloud Agent","d80565ac-361a-4fbd-88b9-6807b8848589","2024-03-25T11:49:15.000+02:00","2026-04-22T10:07:59.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Production,SVP,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,High,Haute,Péage","635.0" +"201283026","244756870","PCB18081.sanef.groupe","PCB18081","38:CA:84:52:67:75","10.100.39.234","fe80::f92d:1025:3bc0:7302","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG2376HR9","","'+02:00","2026-04-22T08:40:01.000+02:00","SANEF\AMATO","Cloud Agent","fe39d4fa-cf05-41ea-a777-46807b62b3bb","2023-11-28T10:21:03.000+02:00","2026-04-22T11:35:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"297474042","318646029","OSA22819.sanef-int.adds","OSA22819","D0:AD:08:A3:E6:AE","10.209.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQH","","'+02:00","2026-04-17T08:47:28.000+02:00","Superviseur","Cloud Agent","169fb878-5224-4ceb-bb39-4d206dffcd47","2025-02-04T10:22:49.000+02:00","2026-04-22T11:56:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"377802815","352206901","PCB25888.sanef.groupe","PCB25888","4C:CF:7C:0A:5C:62","10.252.42.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534221F","","'+02:00","2026-04-14T08:41:41.000+02:00","SANEF\MAURICE","Cloud Agent","0c319727-8354-4ee4-b76b-17ec0fff1170","2025-11-19T17:41:01.000+02:00","2026-04-22T10:07:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","331.0" +"214115359","251250678","MTR-6Q3J8Y3","MTR-6Q3J8Y3","6C:3C:8C:3D:5C:53","10.6.32.200","fe80::a007:e93a:ab37:6ad9","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","6Q3J8Y3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","3048119f-bfc2-4bb5-a368-5fa76779b849","2024-02-07T00:53:21.000+02:00","2026-04-22T10:07:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"168303463","224523362","PCB15685.sanef.groupe","PCB15685","DC:1B:A1:EE:A6:83","10.100.39.162,192.168.1.203","fe80::dc3c:89ad:8516:2a84","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G7 Notebook","8","2208","Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz","7961","HP S70 Ver. 01.01.06","5CG0415494","","'+02:00","2026-04-15T09:07:19.000+02:00","SANEF\HASNAOUI-ext","Cloud Agent","d1440b14-a635-4d31-8170-ef714a95e052","2023-04-28T12:42:24.000+02:00","2026-04-22T10:07:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320047241","328597898","PCB22913.sanef.groupe","PCB22913","D0:AD:08:A7:27:B5","10.139.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNH","8CC3502YNH","'+02:00","2026-04-08T16:22:07.000+02:00","SANEF\leclercqfr","Cloud Agent","97837b52-f2b0-48a6-a0db-02a6d95f9f1c","2025-04-28T09:49:57.000+02:00","2026-04-22T10:07:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"374708992","350744324","PCV18564.sanef-int.adds","PCV18564","30:13:8B:6C:5B:48","10.5.7.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TF","","'+02:00","2026-03-15T18:11:43.000+02:00","Operateur","Cloud Agent","de4e0881-debd-44a1-8c6f-92574bc1899b","2025-11-06T16:36:32.000+02:00","2026-04-22T11:06:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"323212275","329820454","PCB23587.sanef.groupe","PCB23587","6C:0B:5E:ED:A2:33","10.100.39.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4Q","","'+02:00","2026-04-17T18:32:15.000+02:00","SANEF\SVAY","Cloud Agent","2a9c65c3-0051-4218-8ef5-7c1ae92563eb","2025-05-09T14:52:39.000+02:00","2026-04-22T10:07:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","144.0" +"186260446","236704966","vvafljump1.recette.adds","VVAFLJUMP1","00:50:56:9C:D7:C9","10.45.8.131","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c a4 aa 33 7b 91 c5-e8 a0 cc 13 78 f2 fd 3c","NoAssetTag","'+02:00","2026-04-22T01:00:50.000+02:00","RECETTE\B03987","Cloud Agent","3c291609-9875-430d-a6c1-748edb1289ee","2023-09-05T17:23:14.000+02:00","2026-04-22T10:07:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,FreeFlow,Recette,OS-WIN-SRV DYN,BDD-SQL DYN,flux_libre,Flux Libre","257.0" +"322331213","329420220","PCB21275.sanef.groupe","PCB21275","D0:AD:08:0C:6D:6C","10.4.31.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GJL","","'+02:00","2026-04-16T08:15:20.000+02:00","SANEF\hemery","Cloud Agent","40e37670-53db-46ae-bce9-b2003b5fa4ce","2025-05-06T09:23:25.000+02:00","2026-04-22T10:07:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"324031877","","PCB20687.sanef.groupe","PCB20687","BC:0F:F3:3B:B9:82","10.200.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3C","","'+02:00","2026-04-08T14:07:45.000+02:00","SANEF\lebourg","Cloud Agent","c3cc36bf-1a84-437e-9aad-dab0e3effe99","2025-05-12T12:00:20.000+02:00","2026-04-22T10:07:09.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"129336695","191946450","VPPATBL2R1.sanef.groupe","VPPATBL2R1","00:50:56:82:09:40","10.42.40.13","fe80::7c04:8771:dc55:13c0","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-56 4d ea a0 4e d1 96 45-91 ba ed 21 e7 e6 7f 00","NoAssetTag","'+02:00","2026-01-22T11:28:17.000+02:00","SANEF\delcour","Cloud Agent","52dba2b0-1cac-4ff0-ba0b-4502a18b5d12","2022-06-27T14:28:34.000+02:00","2026-04-22T10:07:08.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,L2R,DFIN,Patrimoine,OS-WIN-SRV DYN,VRF_PATRIMOINE_DC,Production","509.0" +"318969382","328233350","MTR-CJRTL64","MTR-CJRTL64","D0:46:0C:95:30:6A","10.108.32.201","fe80::8c6d:584a:2e5d:ef45","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","CJRTL64","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","4f62a4fb-6b93-47f3-9c97-ec1bd57efb59","2025-04-23T21:07:30.000+02:00","2026-04-22T10:07:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"240046093","273674969","SVP20974.sanef-int.adds","SVP20974","BC:0F:F3:87:6F:A2","10.142.2.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.10.04","8CC3290LMP","","'+02:00","2026-04-22T07:57:34.000+02:00","Superviseur","Cloud Agent","7a967986-2152-4436-bbcf-3d9510d61c36","2024-05-29T10:36:24.000+02:00","2026-04-22T11:52:06.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Cloud Agent,Workstation","686.0" +"392818522","358345782","vrdsialab1.sanef-rec.fr","","00:50:56:9c:c1:6d, f6:b2:59:e4:24:8c","10.45.16.35,172.28.0.1","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 03 94 48 e5 29 52-01 30 01 ad a1 7d a9 ae","No Asset Tag","'+02:00","2026-03-12T12:45:36.000+02:00","egret","Cloud Agent","47369580-1000-4a85-9a51-601646181033","2026-01-16T16:53:03.000+02:00","2026-04-22T11:01:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,Recette","144.0" +"382417790","353964318","PCB25867.sanef.groupe","PCB25867","F8:ED:FC:AB:02:61","10.252.42.129","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVK","","'+02:00","2026-04-20T09:38:20.000+02:00","SANEF\RIVA","Cloud Agent","c3607099-274e-458e-89cc-29e2901396d5","2025-12-08T09:50:04.000+02:00","2026-04-22T10:07:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"378067606","352316852","PCV22450.sanef-int.adds","PCV22450","D0:AD:08:A3:E6:BA","10.217.36.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YQB","","'+02:00","2026-03-20T19:59:37.000+02:00","Operateur","Cloud Agent","b1d90c42-5502-468d-a558-ffbab45a64ed","2025-11-20T15:31:41.000+02:00","2026-04-22T10:58:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"378054296","352301512","PCV21555.sanef-int.adds","PCV21555","D0:AD:08:A3:7B:55","10.209.7.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YRM","","'+02:00","2026-04-17T08:54:18.000+02:00","Operateur","Cloud Agent","13998a87-b23c-426b-9ee6-ac32499e6619","2025-11-20T12:42:22.000+02:00","2026-04-22T11:58:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"348824677","339744813","PCB24013.sanef.groupe","PCB24013","44:A3:BB:95:D2:BF","10.205.0.120,10.255.1.203","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","Dell Latitude 7350 Notebook","14","1700","Intel(R) Core(TM) Ultra 7 165U","32213","Dell Inc. 1.15.1","85VTX64","","'+02:00","2026-04-17T09:30:46.000+02:00","SANEF\TOUZOT","Cloud Agent","436f70fb-fd01-4410-a95b-fff57a72c3d7","2025-08-04T10:13:18.000+02:00","2026-04-22T11:54:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"246261768","286964920","MTO22332.sanef.groupe","MTO22332","D0:AD:08:A7:27:DD","10.202.31.10","fe80::818c:7b45:e9d:65f9","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.4037) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSX","","'+02:00","2025-04-24T10:54:42.000+02:00","SANEF\meteonewsW11","Cloud Agent","9486e58b-500a-4b95-8a89-f92369afb16f","2024-06-25T10:48:54.000+02:00","2026-04-22T10:06:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"295110908","316903631","vpngwasic1","","00:50:56:8f:2a:08","10.44.200.100","fe80::250:56ff:fe8f:2a08","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 8c 8c 10 61 a3 3e-2c 38 cd e7 ed a9 d2 17","No Asset Tag","'+02:00","2026-02-02T17:06:04.000+02:00","root","Cloud Agent","be9b172d-c0d6-47a0-bea9-380445f251fc","2025-01-27T16:06:15.000+02:00","2026-04-22T11:24:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,TAG-SIA,TAG-SIC","53.0" +"365863055","347087251","vpresardp2.sanef-int.adds","VPRESARDP2","00:50:56:94:AB:05","10.44.7.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 14 89 16 80 06 41 9e-c5 d0 d7 73 15 c2 d6 7f","NoAssetTag","'+02:00","2025-11-12T15:59:32.000+02:00","b03987@sanef-int","Cloud Agent","9e14b2e8-0c07-4984-857d-3fa6ed6a4d9a","2025-10-06T15:43:27.000+02:00","2026-04-22T10:06:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Production,Radius,Cloud Agent","346.0" +"196660167","242432943","vpbooaori2.sanef.groupe","","00:50:56:90:d4:76","10.41.22.140","fe80::250:56ff:fe90:d476","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7e 22 57 82 fd 6c-88 dc d8 6c 06 55 0b f5","No Asset Tag","'+02:00","2026-04-07T15:15:07.000+02:00","cybreconcile","Cloud Agent","a4da858e-2083-4d84-a008-757940e37101","2023-10-31T18:27:14.000+02:00","2026-04-22T10:06:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Flux Libre,flux_libre,Cloud Agent,Linux Server,FreeFlow","335.0" +"131270365","193318815","vpaiiarda1.sanef.groupe","","00:50:56:82:51:9f","10.30.10.75","fe80::250:56ff:fe82:519f","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7982","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 fe 90 65 4f 1d 60-a9 51 72 cc dc 3b ac 2e","No Asset Tag","'+02:00","2024-09-10T09:40:14.000+02:00","cybreconcile","Cloud Agent","e4ad2df0-22c5-4f84-b526-6ac743d97f59","2022-07-12T15:25:26.000+02:00","2026-04-22T11:58:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,Cloud Agent,Linux Server,Production,Obsolete,VRF_INCONNUE,Rebond","53.0" +"218315519","252974484","viboobquo1.sanef.groupe","","00:50:56:90:97:24","10.100.16.11","fe80::250:56ff:fe90:9724","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 d4 4f 35 f5 f9 fe-7a 3e 58 29 08 a1 76 e6","No Asset Tag","'+02:00","2026-03-16T11:16:12.000+02:00","cybreconcile","Cloud Agent","2359e7a8-4ea6-44bd-b7ce-16fc12a4d629","2024-02-26T15:32:46.000+02:00","2026-04-22T11:46:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre","141.0" +"374439355","350622031","SMI18193.sanef.groupe","SMI18193","00:90:FB:76:F9:E5","10.100.40.222","","Windows / Client","Microsoft Windows 10 Enterprise LTSC 2019 (1809 Build 17763.3887) 64-Bit","1809","Unidentified / Unidentified","Advantech Default_string","8","3601","Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz","32678","American Megatrends Inc. R1.00.E0C.DP01","Default string","Defaultstring","'+02:00","2026-04-16T17:14:07.000+02:00","eyevis","Cloud Agent","37fb137f-b733-43dd-b6f7-0fe39c434bd6","2025-11-05T15:53:08.000+02:00","2026-04-22T10:06:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","355.0" +"380072288","353084949","PCB23573.sanef.groupe","PCB23573","6C:0B:5E:EE:DC:64","10.202.31.18,10.220.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L58","","'+02:00","2026-04-19T17:02:32.000+02:00","SANEF\dasilvac","Cloud Agent","059d0cee-58ae-4c88-9fe3-3722f32b2e32","2025-11-28T15:13:11.000+02:00","2026-04-22T10:06:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"363025279","345948973","PCV20827.sanef-int.adds","PCV20827","30:13:8B:6C:56:1C","10.100.7.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q86","","'+02:00","2026-04-21T22:02:11.000+02:00","Operateur","Cloud Agent","8ba66b19-1ebd-43ae-ab46-454a2d2bb83d","2025-09-25T16:58:24.000+02:00","2026-04-22T10:06:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"339877892","336780154","vppwdahap2.sanef.groupe","","00:50:56:94:f7:20","10.44.1.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3665","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 51 10 8c b1 aa 1e-7d 56 dd 98 cc d3 28 5d","No Asset Tag","'+02:00","2026-01-07T11:28:26.000+02:00","cybreconcile","Cloud Agent","c7543c65-896a-409a-8810-a647189f369d","2025-07-07T17:43:19.000+02:00","2026-04-22T11:56:22.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,BDD","331.0" +"129931386","192382346","vmampgis3.sanef.groupe","VMAMPGIS3","00:50:56:82:58:7C","10.41.40.107","fe80::f9e4:a388:57bc:431b","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21563) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 f2 9c df 71 99 3b-91 8f 63 b7 f7 f7 d4 d5","NoAssetTag","'+02:00","2024-11-07T12:45:00.000+02:00","SANEF.GROUPE\delcour","Cloud Agent","4a99a93f-59db-4dd6-a4bd-0cd46ce82599","2022-07-01T08:58:40.000+02:00","2026-04-22T10:05:55.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Production,Obsolete,DEX,GIS,Cloud Agent,Windows Server,VRF_TRAFIC_DC,Patrimoine","521.0" +"372939353","349951976","PCB22840.sanef.groupe","PCB22840","D0:AD:08:A3:7D:C2","10.154.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKS","8CC3502YKS","'+02:00","2026-04-20T21:01:12.000+02:00","SANEF\frobert","Cloud Agent","78405a6e-5669-4707-899b-ebcf5635a2fd","2025-10-30T12:30:35.000+02:00","2026-04-22T10:05:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"320134680","328625929","PCB23544.sanef.groupe","PCB23544","6C:0B:5E:EE:DC:C6","10.205.0.44,10.100.39.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6F","","'+02:00","2026-04-16T17:02:55.000+02:00","SANEF\RIVIEREF","Cloud Agent","53f14bad-330d-4e5c-a03b-8eba28ddb6b8","2025-04-28T14:43:25.000+02:00","2026-04-22T10:05:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"362206490","345649267","PCB22459.sanef.groupe","PCB22459","F0:20:FF:9A:DF:17","10.255.2.212","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.07.00","5CG3501HV7","","'+02:00","2026-04-01T04:42:32.000+02:00","SANEF\BARAT","Cloud Agent","7e35bdad-77a8-4911-b603-cdf741197281","2025-09-23T10:20:57.000+02:00","2026-04-22T10:05:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"285274690","309490336","SVP22867.sanef-int.adds","SVP22867","D0:AD:08:A7:28:4C","10.212.36.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YP6","","'+02:00","2026-04-21T14:33:43.000+02:00","Superviseur","Cloud Agent","0cf2dfb8-4a32-479b-a593-10c8738d20cf","2024-12-09T18:39:10.000+02:00","2026-04-22T10:05:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"329229740","","PCB21095.sanef.groupe","PCB21095","E4:60:17:CA:3F:37","10.255.2.241","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LH","","'+02:00","2026-04-08T08:34:59.000+02:00","SANEF\ALOUEKE-ext","Cloud Agent","a59ade0f-3aa1-4e9f-af36-b10f369e1957","2025-06-02T15:25:41.000+02:00","2026-04-22T10:05:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321997482","329316066","PCB23612.sanef.groupe","PCB23612","6C:0B:5E:ED:A2:12","10.200.30.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L47","","'+02:00","2026-03-28T09:27:27.000+02:00","SANEF\chauffour","Cloud Agent","cd8d6a3d-ca8a-4dc8-b808-bbb9f1bea267","2025-05-05T10:41:09.000+02:00","2026-04-22T10:05:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"322005587","329312674","PCB23767.sanef.groupe","PCB23767","6C:0B:5E:EE:B3:93","10.13.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4C","","'+02:00","2026-03-31T09:21:31.000+02:00","SANEF\sinnes","Cloud Agent","42cab750-a809-48d8-a672-f3a2fe9bd2ff","2025-05-05T10:03:08.000+02:00","2026-04-22T10:05:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"358892330","344328747","PCB24244.sanef.groupe","PCB24244","24:FB:E3:CD:06:36","10.99.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M64","","'+02:00","2026-04-20T13:32:43.000+02:00","SANEF\NOWAK","Cloud Agent","eae54b3a-0985-46d6-8126-aff47751051a","2025-09-11T15:15:42.000+02:00","2026-04-22T11:18:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"399074773","360968875","vtdsibpgs2.sanef-rec.fr","","00:50:56:9c:6f:a2","10.45.1.173","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d4 af 7e cb cc 73-0b c7 2c ff ba f7 84 f8","No Asset Tag","'+02:00","2026-03-11T11:25:24.000+02:00","root","Cloud Agent","8ca1a11f-9165-460c-b7db-2593c97ade73","2026-02-10T12:46:31.000+02:00","2026-04-22T11:01:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","PATRIMOINE,Linux Server,OS-LIN-SRV DYN,Cloud Agent,BDD-POS DYN,Recette","144.0" +"411132159","365523556","PCB24245.sanef.groupe","PCB24245","C8:58:B3:34:29:93","10.255.2.169,10.255.2.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M69","","'+02:00","2026-04-20T10:54:34.000+02:00","SANEF\THIL","Cloud Agent","34f9a0de-2788-431e-b904-cabf0a77a374","2026-03-24T16:39:44.000+02:00","2026-04-22T10:05:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"175564471","229349435","vvbotatvv2.sanef-rec.fr","","be:7a:55:25:e7:92, 6e:43:48:cb:e2:1a, 00:50:56:9c:cd:e1","10.89.0.1,10.45.6.167","fe80::bc7a:55ff:fe25:e792,fe80::6c43:48ff:fecb:e21a,fe80::250:56ff:fe9c:cde1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 88 d4 32 31 8a 91-29 87 2a 7e 46 60 c6 16","No Asset Tag","'+02:00","2026-03-10T12:17:09.000+02:00","cybreconcile","Cloud Agent","d46e8ae6-c69f-4fd7-b681-2e8c53bafb0a","2023-06-23T12:02:56.000+02:00","2026-04-22T11:45:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,FreeFlow,Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,flux_libre","141.0" +"322391623","329450900","PCB23633.sanef.groupe","PCB23633","6C:0B:5E:EE:BC:89","10.2.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7W","","'+02:00","2026-04-20T14:08:55.000+02:00","SANEF\lacour","Cloud Agent","599cd9c3-d4ef-4780-8f79-3dfb5791e2c7","2025-05-06T14:17:07.000+02:00","2026-04-22T10:05:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"279153754","304713612","vrdecasas3.sanef.groupe","","00:50:56:82:9e:6b","10.45.1.6","fe80::250:56ff:fe82:9e6b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d4 c2 ec 31 d8 d7-55 0e 43 0b 2b cf 47 06","No Asset Tag","'+02:00","2026-03-23T11:57:06.000+02:00","cybsupsys","Cloud Agent","493fd2a6-8277-49c0-83bf-acb2d49090da","2024-11-14T15:54:04.000+02:00","2026-04-22T10:04:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,BDD-POS DYN,OS-LIN-SRV DYN","139.0" +"369610774","348496345","PCB18101.sanef.groupe","PCB18101","38:CA:84:52:E8:5E","10.200.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSN","","'+02:00","2026-03-31T19:49:40.000+02:00","laura.dubos@sapn.fr","Cloud Agent","7da15f98-67b7-4126-aa0f-d25510e842a7","2025-10-17T15:10:12.000+02:00","2026-04-22T11:43:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"350002387","340224291","PCB25850.sanef.groupe","PCB25850","28:95:29:1B:32:67","10.255.3.185","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW1","","'+02:00","2026-03-19T14:41:14.000+02:00","SANEF\TONNOIR","Cloud Agent","e49c33d1-257b-497a-ba73-d22eb98dc7e5","2025-08-08T10:50:28.000+02:00","2026-04-22T10:04:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"342524098","337582298","PCB21281.sanef.groupe","PCB21281","30:F6:EF:A5:EB:28","10.101.243.232,10.255.4.222","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJQ","","'+02:00","2026-04-21T09:02:02.000+02:00","SANEF\PARET","Cloud Agent","55490448-06a4-4604-a553-a22da834bb8d","2025-07-17T13:35:46.000+02:00","2026-04-22T11:57:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"344751012","338445084","PCB20709.sanef.groupe","PCB20709","58:1C:F8:EB:77:C4","192.168.1.87","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DQP","","'+02:00","2026-04-07T09:40:37.000+02:00","SANEF\WATREMEZ","Cloud Agent","389b6157-a490-4b5a-9953-d372df6aefed","2025-07-24T10:17:38.000+02:00","2026-04-22T11:51:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"395543997","359520554","vrsigaptl1.sanef-rec.fr","","00:50:56:9c:fd:ee","10.45.2.33","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 3d 88 ae a6 e0 f3-92 9e cb 94 f4 dc fd 09","No Asset Tag","'+02:00","2026-02-25T13:43:10.000+02:00","cybsupapp","Cloud Agent","aae97ad2-7cfe-461a-a34d-3d5053bc39e6","2026-01-28T11:49:58.000+02:00","2026-04-22T11:49:10.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,Recette,SIG,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-APACHE-TOMCAT DYN","217.0" +"163770271","218816308","vptraatai2.sanef.groupe","VPTRAATAI2","00:50:56:82:B7:CA","10.41.60.52","fe80::457:ab94:ec4a:bd13","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 d1 d3 17 b3 be b3-ba a1 f4 2c f7 f4 e0 a6","NoAssetTag","'+02:00","2026-02-12T17:09:29.000+02:00","administrateur","Cloud Agent","9c5e9f31-83a2-45be-a598-7dff191c72b4","2023-03-21T16:52:14.000+02:00","2026-04-22T11:46:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Outils transverses,OS-WIN-SRV DYN,DEX,Enregistrement_COM,Cloud Agent,Windows Server","258.0" +"318712993","328171399","PCB22928.sanef.groupe","PCB22928","D0:AD:08:A3:7B:3E","10.1.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV1","8CC3502YV1","'+02:00","2026-03-29T09:13:08.000+02:00","SANEF\pereira","Cloud Agent","56e1c7cd-cfed-4af0-a094-8bbae85cde16","2025-04-23T10:07:34.000+02:00","2026-04-22T10:03:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"319394905","328419254","PCB23741.sanef.groupe","PCB23741","6C:0B:5E:EE:93:7A","10.4.30.14,10.4.31.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7462) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H51","","'+02:00","2026-04-21T08:11:17.000+02:00","SANEF\dessoye","Cloud Agent","36425c90-6ab0-44c1-a2ea-c2498047c040","2025-04-25T15:21:28.000+02:00","2026-04-22T10:03:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"143793491","201145998","vrintbweb2.sanef.groupe","","00:50:56:82:83:8f","10.45.1.196","fe80::250:56ff:fe82:838f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 f4 51 81 c1 24 1b-be b4 cd d4 fb b0 4a fa","No Asset Tag","'+02:00","2026-02-23T13:33:18.000+02:00","cybadmsys","Cloud Agent","cd070384-a015-4313-8a18-5e498034d13c","2022-10-12T18:26:56.000+02:00","2026-04-22T12:00:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,BDD-POS DYN,OS-LIN-SRV DYN,VRF_INCONNUE,Cloud Agent,Linux Server","334.0" +"361915686","345507041","PCB24249.sanef.groupe","PCB24249","24:FB:E3:BE:98:E4, 0A:00:27:00:00:06","10.208.31.8,169.254.58.81","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M63","","'+02:00","2026-04-21T08:19:37.000+02:00","SANEF\portaz","Cloud Agent","9866ed10-f01f-4cec-99bc-fc088ac701b8","2025-09-22T10:50:31.000+02:00","2026-04-22T10:03:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"363887034","346364338","PCV21567.sanef-int.adds","PCV21567","D0:AD:08:A3:E7:20","10.152.7.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YXY","","'+02:00","2026-04-20T14:11:26.000+02:00","Operateur","Cloud Agent","11f1e574-8ff6-4c22-a24d-eb3d7d9a3aa9","2025-09-29T13:04:59.000+02:00","2026-04-22T11:37:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"382409868","353964136","PCB25781.sanef.groupe","PCB25781","F8:ED:FC:AB:F1:D4","10.252.42.132","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CS8","","'+02:00","2026-04-13T08:32:12.000+02:00","SANEF\riffard","Cloud Agent","38a8a7d0-fa35-4e31-87cb-377392d1adbd","2025-12-08T09:46:33.000+02:00","2026-04-22T10:03:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","331.0" +"151113330","206059871","PCM15848.sanef.groupe","PCM15848","6C:02:E0:BB:9A:AF","10.100.40.210","fe80::fb5a:da77:7379:ad04","Windows / Client","Microsoft Windows 10 Enterprise (21H2 Build 19044.2604) 64-Bit","21H2","Computers / Notebook","HP EIiteBook 830 G7 Notebook","8","2208","Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz","7965","HP S70 Ver. 01.03.02","5CG1011GFW","","'+02:00","2023-08-17T11:59:47.000+02:00","SANEF\cascales","Cloud Agent","fb85eaf5-2cf2-45af-beb4-901e513d1f54","2022-12-08T12:34:36.000+02:00","2026-04-22T11:21:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","350.0" +"382417791","353964319","PCB25780.sanef.groupe","PCB25780","F8:ED:FC:AB:F1:F8","10.252.42.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVJ","","'+02:00","2026-04-20T09:10:22.000+02:00","SANEF\belgasmi","Cloud Agent","41af39f4-bf42-4b17-af1a-ae1b1a7778bd","2025-12-08T09:50:13.000+02:00","2026-04-22T10:03:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","335.0" +"129356109","191960837","vpctvanvr1","VPCTVANVR1","00:50:56:82:E9:F6","10.1.6.12","fe80::1c16:85d1:e59c:4210","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 0c 8f 30 b8 7b c1-a5 d7 c8 a2 9a 92 05 70","NoAssetTag","'+02:00","2026-03-24T13:46:20.000+02:00","Administrateur","Cloud Agent","ba829cd9-520c-4f57-bf21-ded3ccf00dc7","2022-06-27T17:57:04.000+02:00","2026-04-22T10:03:13.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Cloud Agent,Windows Server,Production,Exploitation,OS-WIN-SRV DYN,VRF_INCONNUE,DEX","508.0" +"334380244","334124571","PCB24110.sanef.groupe","PCB24110","48:EA:62:C8:93:1A","10.104.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6G","","'+02:00","2026-03-29T09:28:52.000+02:00","pascal.fournet@sanef.com","Cloud Agent","c397af7e-fbeb-4f0d-a835-e822dd04d968","2025-06-18T10:35:01.000+02:00","2026-04-22T11:51:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"370402310","348888173","PCB24325.sanef.groupe","PCB24325","10:B6:76:93:FA:B6","10.4.31.66","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YHC","","'+02:00","2026-04-20T08:58:15.000+02:00","SANEF\decampp","Cloud Agent","2cbed9e3-97bd-4d63-b048-7a8854869a2b","2025-10-21T12:54:12.000+02:00","2026-04-22T10:03:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","668.0" +"377809988","352213955","vpdsiangx2.sanef.groupe","","00:50:56:90:09:4a","192.168.19.161","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 1e 47 82 d6 0c 90-43 35 b8 c5 d5 49 9e e0","No Asset Tag","'+02:00","2026-04-13T14:28:28.000+02:00","cybreconcile","Cloud Agent","f1f66d97-cb1c-45c1-bce7-3174862cb0ab","2025-11-19T18:59:11.000+02:00","2026-04-22T12:01:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production","329.0" +"208777986","248746837","vibotapps2.sanef.groupe","","00:50:56:90:1d:96","10.41.23.137","fe80::250:56ff:fe90:1d96","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48013","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 94 04 c8 9e 5c 19-48 57 ca 74 4f e4 a8 ac","No Asset Tag","'+02:00","2026-03-17T11:29:49.000+02:00","cybreconcile","Cloud Agent","cc4bb2b8-2c99-41b0-813e-3f01a5645dd0","2024-01-10T12:58:35.000+02:00","2026-04-22T11:48:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,FreeFlow,Cloud Agent,Linux Server","141.0" +"357896652","343916086","vprpsangx1.sanef.groupe","","00:50:56:90:06:8c","10.41.20.25","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 fe 7a 14 54 29 cb-a3 e6 3a ee b0 34 f9 9c","No Asset Tag","'+02:00","2026-02-25T15:35:39.000+02:00","cybreconcile","Cloud Agent","2031410a-7022-4386-a664-ea11cab03d86","2025-09-08T16:15:13.000+02:00","2026-04-22T12:00:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,Péage,Production","140.0" +"319172684","328319440","MTR-3LRTL64","MTR-3LRTL64","D0:46:0C:95:2F:28","10.101.246.204","fe80::8b74:b626:90b6:ef8f","Windows / Client","Microsoft Windows 11 IoT Enterprise (22H2 Build 22621.6060) 64-Bit","22H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","3LRTL64","","'+02:00","2026-04-22T02:32:47.000+02:00","Skype","Cloud Agent","0c9300af-933c-4757-9ffb-631114a2052b","2025-04-24T16:13:34.000+02:00","2026-04-22T11:25:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"238482775","269481978","ls-cote-picarde","LS-COTE-PICARDE","00:50:56:90:47:FE","10.41.2.99","fe80::c7dd:1f5d:741d:df28","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 36 50 5a 11 9c f1-fc 06 61 b5 a3 d6 e5 0d","NoAssetTag","'+02:00","2026-03-24T11:38:54.000+02:00","svpadmin","Cloud Agent","2c446709-963e-485f-a88f-44da425592b2","2024-05-22T10:59:10.000+02:00","2026-04-22T11:24:16.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Péage,SVP,Cloud Agent,Windows Server","506.0" +"324698955","330493463","vpgawamft1.sanef.groupe","","00:50:56:90:b3:a6","10.42.16.15,10.42.16.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1b e7 6e 16 15 0f-90 06 de 1b c5 d5 0c 74","No Asset Tag","'+02:00","2026-03-19T15:43:25.000+02:00","cybexpapp","Cloud Agent","7a6f02f3-0895-4742-848b-1602f842ebb0","2025-05-14T14:11:29.000+02:00","2026-04-22T10:58:47.000+02:00","x86_64","2","SCA,VM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","146.0" +"320452039","328710856","PCB22930.sanef.groupe","PCB22930","D0:AD:08:A3:E7:8E","10.149.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMN","8CC3502YMN","'+02:00","2026-04-21T15:08:53.000+02:00","SANEF\BOUVIERS","Cloud Agent","f6f4ddb4-30df-4c70-9c3c-f01bb12ee929","2025-04-29T11:37:18.000+02:00","2026-04-22T10:02:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"196660522","242432946","vpboomocr1.sanef.groupe","","00:50:56:90:3d:93","10.41.22.138","fe80::250:56ff:fe90:3d93","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3664","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 25 2e 6b e5 7a 60-79 50 1b 9d 3e f5 42 16","No Asset Tag","'+02:00","2026-04-07T16:01:15.000+02:00","cybadmroot","Cloud Agent","e6a968e9-e277-454a-a0d0-626b7279ee29","2023-10-31T18:27:14.000+02:00","2026-04-22T11:54:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,ServersInCyberark,flux_libre,OS-LIN-SRV DYN,Production,Flux Libre,Cloud Agent,Linux Server","336.0" +"407940862","364290035","PCV18546.sanef-int.adds","PCV18546","30:13:8B:6C:5C:83","10.210.7.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473T0","","'+02:00","2026-04-09T17:04:38.000+02:00","Operateur","Cloud Agent","311d5e2b-4fb6-44ef-8987-ba17ba71b474","2026-03-12T11:53:39.000+02:00","2026-04-22T10:02:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"141340202","199609318","vpbckaadm1","VPBCKAADM1","00:50:56:8D:33:B7","10.44.2.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 0d b4 46 ce 9e ea 3a-cd 4f 8b 89 01 f5 da 64","NoAssetTag","'+02:00","2026-02-03T13:46:44.000+02:00","Administrateur","Cloud Agent","6e0401ec-f0fd-4d8b-95ef-301d3ef4a8e0","2022-09-22T16:37:43.000+02:00","2026-04-22T10:02:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Gestion SAUVEGARDE","346.0" +"357841979","343886392","PCB24203.sanef.groupe","PCB24203","10:B6:76:97:D4:A5","10.100.39.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YJW","","'+02:00","2026-04-14T08:30:14.000+02:00","SANEF\CHAMPION-ext","Cloud Agent","13ce5d36-2ec8-4558-95c1-ddbb4c97872a","2025-09-08T11:20:01.000+02:00","2026-04-22T10:02:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"342249673","337459772","PCB23719.sanef.groupe","PCB23719","C8:6E:08:47:0B:53","10.205.0.103,10.0.0.65","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460H3N","","'+02:00","2026-04-21T07:46:02.000+02:00","SANEF\durmarque","Cloud Agent","d66aa7b2-75eb-4df6-97f0-196adc91644e","2025-07-16T14:46:47.000+02:00","2026-04-22T10:02:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"340063685","336780158","lpamebrac2.sanef.groupe","","3e:33:fb:a0:00:f1, 3e:33:fb:a0:00:ed","10.43.4.139,10.41.41.111,10.41.41.115","fe80::3c33:fbff:fea0:f1,fe80::3c33:fbff:fea0:ed","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63822","HPE I44 06/13/2025","VCGBW52014","/n/Bios Asset Tag :","'+02:00","2025-11-20T11:16:01.000+02:00","cybreconcile","Cloud Agent","cde7c92e-3baa-4fcd-8dd5-d076d06fed26","2025-07-08T10:21:20.000+02:00","2026-04-22T11:45:54.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,OS-LIN-SRV DYN,Amelie,Production,Cloud Agent","335.0" +"230624144","258742189","vpsupapol3.sanef.groupe","","00:50:56:8d:0f:61","10.44.5.105","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","1778","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 01 97 6d b8 39 77-d1 38 9d 2f e4 52 82 94","No Asset Tag","'+02:00","2026-03-30T11:03:58.000+02:00","cybreconcile","Cloud Agent","0e5dcde3-eb25-459e-b3d3-9b65a36b1545","2024-04-17T18:08:36.000+02:00","2026-04-22T11:27:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","66.0" +"304687011","322548349","PCB17652.sanef.groupe","PCB17652","D0:AD:08:8A:60:AB","10.107.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y52","","'+02:00","2026-04-20T11:22:27.000+02:00","SANEF\delsarte","Cloud Agent","048bdd8c-e3a8-4d1f-9d88-ce58c3805f55","2025-03-03T17:45:20.000+02:00","2026-04-22T10:01:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"128143034","191077225","VPSSIAPKI3","VPSSIAPKI3","00:50:56:82:2D:66","192.168.90.72","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 97 21 0a bc 10 ff-9b 14 56 f0 fd bd 5c 48","NoAssetTag","'+02:00","2026-04-15T14:22:44.000+02:00","SANEF.GROUPE\tbaad-ext@sanef.com","Cloud Agent","3b67b1e2-a6e5-4b4c-87c1-a1f5e99b873d","2022-06-16T11:59:24.000+02:00","2026-04-22T11:30:52.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,OS-WIN-SRV DYN,Windows Server,Cloud Agent,TAG-SRVEXPOSEINTERNET,DMZ,Production,Sans,Sécurité IT,DSI,Gestion_PKI","24.0" +"158198255","210926887","vpdsiaumds1","","00:50:56:82:84:3a","192.168.18.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7696","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 64 33 40 32 68 07-fe d2 af c0 d9 78 99 20","No Asset Tag","'+02:00","2026-01-29T11:54:35.000+02:00","cybreconcile","Cloud Agent","1c49e4cf-d9a6-4534-9b4a-82b7aaf7ac1b","2023-02-06T13:40:20.000+02:00","2026-04-22T11:29:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,DSI,VCENTER,OS-LIN-SRV DYN","140.0" +"376646340","351624062","PCV21571.sanef-int.adds","PCV21571","D0:AD:08:A3:E6:BD","10.12.7.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YSC","","'+02:00","2026-03-23T18:02:22.000+02:00","Operateur","Cloud Agent","e83d2ccd-4fa6-4f18-a84d-577e09acf58d","2025-11-14T14:39:16.000+02:00","2026-04-22T10:01:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"129474881","192042964","vamrsycapp2.sanef.groupe","VAMRSYCAPP2","00:50:56:82:13:16","10.45.2.22","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24130)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","32768","Phoenix Technologies LTD 6.00","VMware-42 02 5d cb a3 79 d5 f7-2f 24 4a d0 f5 5d c1 18","NoAssetTag","'+01:00","2025-07-18T23:24:51.000+02:00","Administrateur","Cloud Agent","d165627e-7316-4a22-bada-157827eaa36d","2022-06-28T14:27:33.000+02:00","2026-04-22T11:31:54.000+02:00","64 bits","3","SCA,VM,PM,GAV","DEX,Windows Server 2008,Obsolete,Patrimoine,Sans,Recette,VRF_INCONNUE,Cloud Agent,Windows Server,OS-WIN-SRV DYN,SIG","527.0" +"344777514","338451627","PCB18105.sanef.groupe","PCB18105","64:D6:9A:21:82:AC","10.255.4.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HT5","","'+02:00","2026-04-14T18:21:10.000+02:00","SANEF\GAYN","Cloud Agent","1bfac866-f582-4558-9e2d-832ebb97f2ab","2025-07-24T11:11:07.000+02:00","2026-04-22T12:02:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"343989065","338199585","PCB21105.sanef.groupe","PCB21105","D0:AD:08:AA:50:7C","10.205.0.90,10.101.243.195","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764KV","","'+02:00","2026-04-01T08:56:08.000+02:00","SANEF\SOBOLEWSKI-ext","Cloud Agent","06533a5b-4538-48c1-8d71-14507689d0d3","2025-07-22T14:46:58.000+02:00","2026-04-22T11:45:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"295268950","317053652","PCB22963.sanef.groupe","PCB22963","6C:0B:5E:5C:1A:BD","10.100.39.31","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","2688","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4433DPB","","'+02:00","2026-04-22T08:04:36.000+02:00","SANEF\BILLARD-ext","Cloud Agent","64bfa9da-b8a3-463c-928f-5b7b8c27ecc4","2025-01-28T11:13:50.000+02:00","2026-04-22T12:04:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","241.0" +"207904238","248272332","vpaflbdwh1.sanef.groupe","VPAFLBDWH1","00:50:56:9C:0C:C1","10.46.34.6","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","65535","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 40 ba 1a 46 a0 d8-97 a8 9f ae f9 e1 39 72","NoAssetTag","'+02:00","2026-04-01T15:04:52.000+02:00","Administrateur","Cloud Agent","f84c829c-e866-4fa7-877f-764a0baaf773","2024-01-05T10:56:52.000+02:00","2026-04-22T10:00:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Production,flux_libre,BDD-SQL DYN,Cloud Agent,Windows Server,FreeFlow,Flux Libre","252.0" +"214011840","251196911","OSA20949.sanef-int.adds","OSA20949","BC:0F:F3:88:FD:39","10.100.20.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LM7","","'+02:00","2026-04-21T20:59:08.000+02:00","Superviseur","Cloud Agent","2931dd30-3a19-4326-939b-7e8d50166256","2024-02-06T11:58:30.000+02:00","2026-04-22T10:00:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"414697998","367164746","PCB18110.sanef.groupe","PCB18110","64:D6:9A:1D:39:A4","10.101.243.110,192.168.1.230","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.23.00","5CG2376HTD","","'+02:00","2026-04-14T22:39:08.000+02:00","SANEF\samir.kecili-ext","Cloud Agent","afec88ab-6969-45b3-ad94-4bba1d3cf355","2026-04-09T17:54:23.000+02:00","2026-04-22T11:13:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"331039777","333860583","vrameahtp1.sanef-rec.fr","","00:50:56:9c:58:38, 00:50:56:9c:91:5c","10.45.4.50,10.45.2.50,10.45.2.52,10.45.2.53,10.45.2.54,10.45.2.55","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d0 3b 2f e9 cd 48-3c 44 a6 6f 73 62 4d 10","No Asset Tag","'+02:00","2026-04-02T16:26:08.000+02:00","cybintsys","Cloud Agent","5a65a923-f1a4-4bf8-a3b6-2f0a5b3748a5","2025-06-05T08:32:31.000+02:00","2026-04-22T11:55:24.000+02:00","x86_64","4","SCA,VM,GAV","Sextan,Recette,OS-LIN-SRV DYN,MID-NGINX DYN,DEX,Linux Server,Cloud Agent","284.0" +"377784871","352196223","PCB25946.sanef.groupe","PCB25946","C4:0F:08:B2:7E:33","10.255.1.152,10.255.1.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534221B","","'+02:00","2026-04-21T10:43:57.000+02:00","SANEF\makaia","Cloud Agent","b926e870-14c6-4970-940b-c377a2127430","2025-11-19T16:18:15.000+02:00","2026-04-22T10:11:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","335.0" +"320284533","328628715","PCB24035.sanef.groupe","PCB24035","EC:4C:8C:C0:1A:39","10.205.0.40,192.168.1.171","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDR","","'+02:00","2026-03-31T08:07:06.000+02:00","SANEF\willem","Cloud Agent","f3db2a13-bfd8-4682-8134-fb160fca4796","2025-04-28T15:10:21.000+02:00","2026-04-22T10:16:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"320080778","328605105","PCB23517.sanef.groupe","PCB23517","C8:6E:08:88:E2:B2","10.255.3.160","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L73","","'+02:00","2026-04-08T12:00:36.000+02:00","SANEF\WAGNERO","Cloud Agent","5c57b466-336b-4437-b8c8-67976d82e64f","2025-04-28T11:09:48.000+02:00","2026-04-22T12:00:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"405651420","363317254","PCB23636.sanef.groupe","PCB23636","6C:0B:5E:ED:72:FC","10.101.243.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4R","","'+02:00","2026-04-16T08:34:53.000+02:00","SANEF\medaci","Cloud Agent","f897054a-93f4-4715-9578-b8d02b96ee3a","2026-03-03T10:33:17.000+02:00","2026-04-22T10:00:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"389544206","357337205","PCB21320.sanef.groupe","PCB21320","D0:AD:08:AA:50:80","10.202.31.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KZ","","'+02:00","2026-04-10T08:42:42.000+02:00","Sophie.hemery@sapn.fr","Cloud Agent","f155c5e4-657b-4e16-8c43-e6b81cff80fb","2026-01-08T11:48:32.000+02:00","2026-04-22T10:00:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"320061853","328602648","PCB22934.sanef.groupe","PCB22934","D0:AD:08:A3:7B:3D","10.139.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV2","8CC3502YV2","'+02:00","2026-04-10T14:46:56.000+02:00","SANEF\leclercqfr","Cloud Agent","437c1500-824e-41e3-890e-8b706f693bd0","2025-04-28T10:48:45.000+02:00","2026-04-22T09:59:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"320971878","328895475","PCB23646.sanef.groupe","PCB23646","C8:6E:08:8A:3C:34","10.205.0.163,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4V","","'+02:00","2026-03-30T12:10:38.000+02:00","SANEF\DUCONSEIL","Cloud Agent","3c24974e-eb3b-4437-8f8d-30ad790708e0","2025-04-30T13:44:26.000+02:00","2026-04-22T11:35:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"323177281","329807899","PCB23738.sanef.groupe","PCB23738","6C:0B:5E:EE:A3:62","10.5.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2Z","","'+02:00","2026-04-22T08:50:03.000+02:00","SANEF\buczkowski","Cloud Agent","51ff6a6b-845b-48b0-acb2-9fd5feddd400","2025-05-09T12:15:54.000+02:00","2026-04-22T11:44:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"129304117","191925465","LAMPSAS1.sanef.groupe","LAMPSAS1","00:17:A4:77:14:EA","10.30.10.145","fe80::58be:8eb5:320f:60ef","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19573) 64-Bit","6.3","Computers / Server","HPE ProLiant BL460c G8 Server","24","2500","Intel(R) Xeon(R) CPU E5-2640 0 @ 2.50GHz","98269","HP I31","CZJ42903SG","","'+02:00","2026-01-20T12:15:07.000+02:00","LAMPSAS1\CYBADMSYS","Cloud Agent","fdf08f06-becd-4f78-863c-6f4dc0cd87f9","2022-06-27T09:55:56.000+02:00","2026-04-22T09:59:42.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-SQL DYN,log4j,DSI,Finances Comptabilité / Consolidation,Production,SAS,VRF_INCONNUE,Cloud Agent,Windows Server,Obsolete,OS-WIN-SRV DYN","535.0" +"114204409","181635177","lamaprac4.sanef.groupe","","00:17:A4:77:10:3A, 00:17:A4:77:10:42, 00:17:A4:77:10:36, 00:17:A4:77:10:3E","10.43.4.136,169.254.242.4,10.43.40.56,10.41.40.56,10.41.40.57,192.168.17.123","fe80::217:a4ff:fe77:103a,fe80::217:a4ff:fe77:1042,fe80::217:a4ff:fe77:1036,fe80::217:a4ff:fe77:103e","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DG","","'+02:00","2025-10-08T15:12:32.000+02:00","cybastapp","Cloud Agent","cc6d440d-dc99-48e3-afcc-84d6e1697c1c","2022-02-21T14:47:16.000+02:00","2026-04-22T11:48:15.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Obsolete,Haute,Trafic,Sans,Production,Cloud Agent,DEX,OS-LIN-SRV DYN,Sextan,Linux Server,VRF_TRAFIC_DC","879.0" +"358919587","344336582","PCB18493.sanef.groupe","PCB18493","D0:AD:08:AA:50:0E","10.101.243.168","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764G9","","'+02:00","2026-04-16T17:47:35.000+02:00","SANEF\DAMEZ-ext","Cloud Agent","c65cedbc-d35f-4650-931f-7a14f70717a3","2025-09-11T16:40:59.000+02:00","2026-04-22T10:19:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"137331581","197582940","vpairatom1.sanef.groupe","","00:50:56:82:54:15","10.42.40.135","fe80::250:56ff:fe82:5415","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d c6 e7 7d d5 52 2d-df 8a 92 09 b5 75 f3 13","No Asset Tag","'+02:00","2026-01-20T17:08:53.000+02:00","cybreconcile","Cloud Agent","8079b5ee-91f7-4d2d-ad3f-3ffbacb536ee","2022-08-30T15:45:52.000+02:00","2026-04-22T11:44:05.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_AIRES_DC,Production,VISIONAIRE,DSG,OS-LIN-SRV DYN","210.0" +"310532594","324633202","PCB17803.sanef.groupe","PCB17803","28:C5:D2:9F:C4:3C","10.205.0.85,192.168.1.28","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4C","","'+02:00","2026-03-30T09:37:52.000+02:00","SANEF\SANCTUSSY-ext","Cloud Agent","eab36701-4e41-4136-a031-c5e94fc9f800","2025-03-24T13:28:56.000+02:00","2026-04-22T10:54:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"377730248","352179527","PCV21152.sanef-int.adds","PCV21152","D0:AD:08:A3:7B:EE","10.12.7.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YVG","","'+02:00","2026-03-30T07:33:24.000+02:00","Operateur","Cloud Agent","86411316-20e3-4046-beb1-efac50406e61","2025-11-19T13:42:33.000+02:00","2026-04-22T09:59:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"378018869","352286612","PCB23702.sanef.groupe","PCB23702","C8:6E:08:8A:45:C1","10.255.1.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L83","","'+02:00","2026-04-07T12:31:52.000+02:00","SANEF\perrinc","Cloud Agent","05540da9-3704-4a26-9199-03363780ea78","2025-11-20T10:43:57.000+02:00","2026-04-22T11:41:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"187965585","237724684","MTR-7Q3J8Y3","MTR-7Q3J8Y3","6C:3C:8C:3D:5C:62","10.11.32.200","fe80::f45e:d9cf:658d:9972","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.10.0","7Q3J8Y3","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","7093e708-8c3d-4d8a-86e1-cca73efb11e0","2023-09-14T22:09:34.000+02:00","2026-04-22T09:59:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"372192071","349615262","PCB24209.sanef.groupe","PCB24209","10:B6:76:95:8B:A9","10.99.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZB","","'+02:00","2026-04-15T14:05:39.000+02:00","SANEF\BAILLY","Cloud Agent","5215affe-7496-4eb9-804f-1caf7951d918","2025-10-27T18:37:37.000+02:00","2026-04-22T09:59:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"238501906","269490999","vibotapps1.sanef.groupe","","00:50:56:90:0b:f3","10.41.23.136","fe80::250:56ff:fe90:bf3","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f4 3f cf 82 a3 92-bb 86 76 de a1 6b bd e7","No Asset Tag","'+02:00","2026-03-17T11:13:35.000+02:00","cybadmroot","Cloud Agent","8a264ccc-f947-4bd7-a824-0b94f380bd44","2024-05-22T12:19:05.000+02:00","2026-04-22T11:46:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","140.0" +"361928844","345508985","REX21539.sanef-int.adds","REX21539","D0:AD:08:A3:7B:CB","10.12.91.81","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW6","","'+02:00","2026-04-02T16:12:49.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","f89b0a31-e1f8-4244-a658-5fee5a9c9b2e","2025-09-22T11:09:23.000+02:00","2026-04-22T09:58:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"243225301","280557946","MTO22898.sanef.groupe","MTO22898","D0:AD:08:A3:E7:25","10.152.31.31","fe80::520d:d552:4704:2969","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.2428) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTP","","'+02:00","2026-04-01T14:50:33.000+02:00","SANEF\meteonewsW11","Cloud Agent","765b662f-ffb6-4b55-aa27-bba098a4c874","2024-06-11T15:28:45.000+02:00","2026-04-22T11:40:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"334994056","","PCB24079.sanef.groupe","PCB24079","08:B4:D2:2A:05:35","10.255.1.217","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437Q","","'+02:00","2026-04-21T12:22:04.000+02:00","SANEF\lazrek-ext","Cloud Agent","6fdcd730-fb33-4d34-8c47-e9583abde50d","2025-06-20T14:54:04.000+02:00","2026-04-22T09:58:49.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"131275232","193320762","vpaiiapol4","","00:50:56:82:66:07","10.30.12.128","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 f8 a6 89 02 81 7e-81 e6 9e f3 aa e1 26 31","No Asset Tag","'+02:00","2024-06-04T14:25:32.000+02:00","cybadmsys","Cloud Agent","54648c63-aabb-4fb8-a46f-812b36bc707a","2022-07-12T15:46:44.000+02:00","2026-04-22T11:39:40.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,Outils prod (Monitoring, NMS, gestion de parc),Sans,Production,Centreon,Cloud Agent,Linux Server,Obsolete,VRF_INCONNUE","82.0" +"241539604","276514044","vpvsaaafz1.sanef.groupe","","00:50:56:90:46:9a","192.168.18.78","fe80::250:56ff:fe90:469a","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 c6 5b 4b 7b fa 21-eb 83 ac 6a ce fc 8a 09","No Asset Tag","'+02:00","2026-02-04T12:19:48.000+02:00","tbaad","Cloud Agent","96356976-305b-4ed0-939b-7dd7c5bb0fc5","2024-06-04T12:22:32.000+02:00","2026-04-22T11:52:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"324418064","330226734","PCB20824.sanef.groupe","PCB20824","6C:0B:5E:EE:93:17","10.5.31.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3G","","'+02:00","2026-04-08T08:38:15.000+02:00","SANEF\beghin","Cloud Agent","ef194ff2-7f24-4c21-9713-929f024b8a77","2025-05-13T14:14:20.000+02:00","2026-04-22T09:58:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"416426637","367815128","PCB18191.sanef.groupe","PCB18191","64:4E:D7:0F:F2:7C","10.255.1.201,10.100.39.90","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD3295RYH","","'+02:00","2026-04-21T16:35:58.000+02:00","SANEF\SALUR-ext","Cloud Agent","f28b7c6e-8e00-4556-ab22-4f316d2c2d15","2026-04-16T11:45:24.000+02:00","2026-04-22T09:58:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"363856796","346347618","PCV22836.sanef-int.adds","PCV22836","D0:AD:08:A3:7B:35","10.152.7.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YV7","","'+02:00","2026-04-18T12:01:36.000+02:00","Operateur","Cloud Agent","c60f39cf-14af-4380-bbbb-10e0c9847da1","2025-09-29T10:52:56.000+02:00","2026-04-22T09:58:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"320461965","328712807","PCB23663.sanef.groupe","PCB23663","6C:0B:5E:EE:EC:11","10.105.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L67","","'+02:00","2026-04-13T18:58:44.000+02:00","SANEF\DEBLOCK","Cloud Agent","7454cada-cf10-4111-bdf3-73ff50e4bf13","2025-04-29T11:59:42.000+02:00","2026-04-22T09:58:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"181718030","233677871","vrsvpasap1","VRSVPASAP1","00:50:56:9C:59:5F","10.45.9.167","fe80::ac8f:f1ea:fa5b:1a3a","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 32 ff 5e 99 bb 41-8f 0f d6 55 a6 f0 06 fd","NoAssetTag","'+02:00","2026-02-17T15:31:47.000+02:00","gare","Cloud Agent","ea8f128c-8acf-4efd-92aa-fbefacfb71d2","2023-08-07T12:17:14.000+02:00","2026-04-22T11:40:30.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP","501.0" +"354650363","342479605","vpdsiasaf2.sanef.groupe","","d6:b8:e4:b9:10:87, ce:74:ea:04:3a:03, 00:50:56:90:e0:5d","10.88.0.1,192.168.19.9","fe80::d4b8:e4ff:feb9:1087,fe80::cc74:eaff:fe04:3a03","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3654","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 37 7d df 6f 8b 51-fc 8b fb 03 1c 3c 2a 09","No Asset Tag","'+02:00","2026-03-24T11:26:05.000+02:00","cybsupsys","Cloud Agent","8412c1c3-7f0d-4706-8013-12195e7a40d9","2025-08-26T15:04:36.000+02:00","2026-04-22T11:51:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","144.0" +"175112254","229075254","vvbotbsql1.recette.adds","VVBOTBSQL1","00:50:56:9C:5B:D9","10.45.6.131","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 33 07 0e 95 f5 40-de 2d 85 8e 08 97 81 27","NoAssetTag","'+02:00","2026-03-12T11:33:27.000+02:00","RECETTE\b03987","Cloud Agent","1f336311-753c-42c2-918b-11392f02e8b5","2023-06-20T09:21:46.000+02:00","2026-04-22T09:58:01.000+02:00","64-Bit","2","VM,GAV","BDD-SQL DYN,flux_libre,OS-WIN-SRV DYN,Flux Libre,Cloud Agent,FreeFlow,Recette","252.0" +"326582596","","PCB20726.sanef.groupe","PCB20726","58:1C:F8:E9:A7:00","10.255.3.224","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2N","","'+02:00","2026-04-20T08:23:53.000+02:00","SANEF\LUQUE","Cloud Agent","c09551c2-aa5a-4273-9b53-35a6b3f4e69b","2025-05-22T14:18:44.000+02:00","2026-04-22T09:58:01.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"365189729","346810517","PCV22828.sanef-int.adds","PCV22828","D0:AD:08:A3:7D:C9","10.100.7.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YKP","","'+02:00","2026-04-07T16:50:35.000+02:00","Operateur","Cloud Agent","8a2e7b1d-58ba-40d2-a3b0-73354dfd9775","2025-10-03T11:06:15.000+02:00","2026-04-22T09:57:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"375550014","351130845","PCB21505.sanef.groupe","PCB21505","D0:AD:08:A3:7B:40","10.5.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXP","8CC3502YXP","'+02:00","2026-04-20T14:26:40.000+02:00","SANEF\bartiaux","Cloud Agent","1355b31b-bd58-4b0b-baf7-f18017087116","2025-11-10T12:11:18.000+02:00","2026-04-22T09:57:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"322034706","329331841","PCB23674.sanef.groupe","PCB23674","C8:6E:08:8A:3F:BD","10.205.0.59,192.168.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5Q","","'+02:00","2026-03-31T09:13:45.000+02:00","SANEF\dufourc","Cloud Agent","2d5a040f-4eaa-4560-8ec2-95e55ab9259f","2025-05-05T13:57:08.000+02:00","2026-04-22T09:57:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"269822805","299449552","vragtatse3.recette.adds","VRAGTATSE3","00:50:56:9C:C9:12","10.45.1.231","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","32767","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 90 46 f0 01 44 0c-45 80 15 6c 8c dc d7 42","NoAssetTag","'+02:00","2026-03-03T15:14:45.000+02:00","sos","Cloud Agent","e5ac836a-c0fe-47cf-8a71-86a526194ef6","2024-10-03T10:47:04.000+02:00","2026-04-22T09:57:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Recette","256.0" +"249819387","288930684","vraptapsh1.recette.adds","VRAPTAPSH1","00:50:56:9C:F5:6C","10.45.10.228","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 82 ff e5 84 4c b6-5d d9 09 f6 8e c0 8a 3a","NoAssetTag","'+02:00","2026-03-03T15:14:40.000+02:00","RECETTE\b03987","Cloud Agent","22f3d660-330f-4d88-b1b0-c14c0e4ca740","2024-07-10T16:08:48.000+02:00","2026-04-22T11:42:32.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,SHAREPOINT,Recette","376.0" +"322326539","329428047","PCB23555.sanef.groupe","PCB23555","C8:6E:08:8A:50:C0","10.255.1.191,10.255.1.226","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBP","","'+02:00","2026-04-03T16:22:59.000+02:00","SANEF\michel","Cloud Agent","ec38214c-4f92-4e9d-992c-321931dfbd72","2025-05-06T10:47:02.000+02:00","2026-04-22T09:27:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"213857752","251129293","sptrabenr1.sanef.groupe","SPTRABENR1","08:F1:EA:7E:BC:4C, 08:F1:EA:7E:BC:4E","10.41.60.40,169.254.148.36","fe80::c4a8:2f0f:49fd:9012,fe80::fd44:913d:6474:9424","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Computers / Server","HPE ProLiant DL360 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16042","HPE U32","CZJ01203FQ","","'+02:00","2026-02-25T14:25:52.000+02:00","SANEF.GROUPE\ndead@sanef","Cloud Agent","30d6284b-8953-4875-a99d-4080616ae4fd","2024-02-05T20:34:19.000+02:00","2026-04-22T09:57:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Enregistrement_COM,DEX,OS-WIN-SRV DYN,BDD-SQL DYN","255.0" +"236266412","264400190","ls-amiens-ouest","LS-AMIENS-OUEST","00:50:56:90:DB:87","10.41.2.95","fe80::5b68:2ee8:941f:ed62","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 01 2b 16 7d ea 8b-d8 7d 66 bc 79 62 56 b3","NoAssetTag","'+02:00","2026-03-23T11:11:06.000+02:00","svpadmin","Cloud Agent","52a90464-c3e5-4feb-bea6-737af9a46b5f","2024-05-13T12:41:59.000+02:00","2026-04-22T11:29:41.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Péage,SVP,VRF_PEAGE_DC,High,Production","507.0" +"349447362","339999510","PCB25840.sanef.groupe","PCB25840","F8:ED:FC:AA:D5:8D","10.5.31.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSM","","'+02:00","2026-04-14T08:29:41.000+02:00","SANEF\larcher","Cloud Agent","a0241f59-af14-4a51-b44d-50770369ad00","2025-08-06T10:53:55.000+02:00","2026-04-22T11:35:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"221316812","254242657","ls-arsy","LS-ARSY","00:50:56:90:ED:14","10.41.2.27","fe80::bd60:d9a:d99:d938","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a9 4c cc 78 07 3f-b8 2f 65 f3 b1 c8 bf b5","NoAssetTag","'+02:00","2026-02-17T11:02:34.000+02:00","svpadmin","Cloud Agent","0bf7012a-4e42-49be-a9a7-2bf37b38b8cd","2024-03-11T10:54:48.000+02:00","2026-04-22T11:33:27.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Péage,VRF_PEAGE_DC,High,Haute,Production,SVP,Cloud Agent,Windows Server","634.0" +"324636772","330317454","PCB17799.sanef.groupe","PCB17799","D0:AD:08:0C:7D:6E","10.200.31.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y42","","'+02:00","2026-04-15T10:45:02.000+02:00","SANEF\OLMO","Cloud Agent","0ce18ddc-9f83-4832-826f-1acc7657077e","2025-05-14T09:47:42.000+02:00","2026-04-22T11:56:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"173085471","227658931","vvboojump1.recette.adds","VVBOOJUMP1","00:50:56:9C:44:37","10.45.8.35","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 1b 93 5c 77 49 67-55 ca e4 0f 49 9e 9b b8","NoAssetTag","'+02:00","2026-03-09T10:13:19.000+02:00","Administrateur","Cloud Agent","ccb453e0-8b20-451f-a3ef-83a203d1aadb","2023-06-05T16:29:34.000+02:00","2026-04-22T09:56:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Recette,flux_libre","251.0" +"391149540","357847899","vmddops01.recette.adds","VMDDOPS01","00:50:56:9C:67:BD","10.45.17.67","fe80::70f8:8b63:91d3:43ad","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 43 33 84 6b 92 fd-19 0f f0 7d 63 ee a6 77","NoAssetTag","'+02:00","2026-04-16T17:36:20.000+02:00","supwindev","Cloud Agent","e80435b9-e9a5-4d8b-a097-c87dae33ee7a","2026-01-12T19:02:28.000+02:00","2026-04-22T09:56:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"395060526","359285323","MIO22878.sanef-int.adds","MIO22878","D0:AD:08:A7:28:4D","10.12.40.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YPD","","'+02:00","2026-02-03T17:40:44.000+02:00","Operateur","Cloud Agent","bd6b7dc7-1994-4ddd-a064-9614a2e35383","2026-01-26T11:47:38.000+02:00","2026-04-22T09:56:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"228697918","257670138","vvbocasec1","","00:50:56:9c:27:8f","10.45.6.14","fe80::250:56ff:fe9c:278f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 49 1f 8e c9 09 9c-0e c4 3e 15 c0 98 a2 4d","No Asset Tag","'+02:00","2026-03-11T15:52:36.000+02:00","cybsecope","Cloud Agent","930af021-95b8-4dde-8621-f7b4b89e54b8","2024-04-09T14:13:08.000+02:00","2026-04-22T11:41:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN","141.0" +"385738268","355836246","PCB18061.sanef.groupe","PCB18061","38:CA:84:52:F8:3A","10.101.243.173","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HRR","","'+02:00","2026-04-20T12:35:09.000+02:00","SANEF\OUAMMOU","Cloud Agent","f7589431-6d0f-4e49-bcf8-52822dbed860","2025-12-23T11:16:56.000+02:00","2026-04-22T11:32:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"130586766","192835849","lamarrac2.sanef.groupe","","00:17:A4:77:0C:7C, 00:17:A4:77:0C:74, 00:17:A4:77:0C:70, 00:17:A4:77:0C:78","10.45.3.101,10.45.5.3,169.254.120.200,10.45.2.102,10.45.2.103,10.45.5.19","fe80::217:a4ff:fe77:c7c,fe80::217:a4ff:fe77:c74,fe80::217:a4ff:fe77:c70,fe80::217:a4ff:fe77:c78","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ32903SJ","","'+02:00","2026-02-25T16:10:32.000+02:00","root","Cloud Agent","7e2d8833-dcbb-465a-971d-e9bab8ca47a1","2022-07-07T11:56:14.000+02:00","2026-04-22T09:56:31.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,Obsolete,Sans,Trafic,Recette,Sextan,Cloud Agent,Linux Server,DEX,OS-LIN-SRV DYN,VRF_INCONNUE","693.0" +"131407949","193425885","vpaiiapol9","","00:50:56:82:05:74","10.30.12.129","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 d4 e1 7c 78 61 16-bf 7c e7 39 5a 03 30 a6","No Asset Tag","'+02:00","2024-06-06T11:44:26.000+02:00","cybreconcile","Cloud Agent","7ab828f1-6a6d-463d-bb63-22f925fff320","2022-07-13T10:49:27.000+02:00","2026-04-22T11:45:06.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,DSI,MID-APACHE-TOMCAT DYN,BDD-ELA DYN,BDD-POS DYN,BDD-SQL DYN,MID-NGINX DYN,Centreon,VRF_INCONNUE,Outils prod (Monitoring, NMS, gestion de parc),Sans,Production","462.0" +"241562936","276524405","vpvsaagez1","","00:50:56:9c:32:9d","192.168.18.75","fe80::250:56ff:fe9c:329d","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 3c 0e 6b c2 82 a7-9b 3f 38 e5 9e 1f 61 89","No Asset Tag","'+02:00","2026-02-04T16:17:24.000+02:00","tbaad","Cloud Agent","f7737ced-5ff5-472b-b284-24939729a6b2","2024-06-04T13:59:35.000+02:00","2026-04-22T11:28:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"233075560","260341158","ls-fresnes-en-woevre","LS-FRESNES-EN-W","00:50:56:90:85:38","10.41.2.78","fe80::e009:b7a2:df6a:89e","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 61 1d c4 1d 10 5d-6c 28 59 91 68 f6 b6 1c","NoAssetTag","'+02:00","2026-04-02T14:40:35.000+02:00","svpadmin","Cloud Agent","bbda46f9-0e74-4cf2-b0b2-8e581e450ede","2024-04-29T13:06:31.000+02:00","2026-04-22T11:24:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,SVP,Production,Péage,High,VRF_PEAGE_DC","507.0" +"241531310","276507273","vpvsaaafl2.sanef.groupe","","00:50:56:90:27:24","10.42.16.86","fe80::250:56ff:fe90:2724","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 7a c2 fd 69 79 c2-be f1 88 47 2e 46 1d 7d","No Asset Tag","'+02:00","2026-02-04T11:52:09.000+02:00","tbaad-ext","Cloud Agent","1c018fe9-244b-414e-90a5-b24fce8caa78","2024-06-04T11:39:07.000+02:00","2026-04-22T10:59:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"324358337","330210524","PCB18711.sanef.groupe","PCB18711","58:1C:F8:E9:C0:B9","10.205.0.106,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224D3N","","'+02:00","2026-03-29T09:23:11.000+02:00","SANEF\menissier","Cloud Agent","3e7e3d58-28e2-40b3-bc2f-560152ab5cc4","2025-05-13T11:38:37.000+02:00","2026-04-22T11:37:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"343092142","337768593","PCB23730.sanef.groupe","PCB23730","C8:6E:08:47:8B:CD","10.101.243.104,10.255.4.225","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2M","","'+02:00","2026-03-29T21:29:16.000+02:00","syl.demarquay@sanef.com","Cloud Agent","18f67fdc-8537-4a24-b933-f2183f288790","2025-07-18T11:00:01.000+02:00","2026-04-22T11:05:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"411849639","365824822","vpgrsangx1.sanef.groupe","","00:50:56:90:0f:2e","10.41.20.85","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 09 74 7b 39 d0 d4-96 e9 14 4a 79 ca 3b 7e","No Asset Tag","'+02:00","2026-04-07T15:49:03.000+02:00","cybreconcile","Cloud Agent","26288a73-39be-4247-a117-243ff9321bc3","2026-03-27T12:21:28.000+02:00","2026-04-22T11:50:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-NGINX DYN,BDD-POS DYN","65.0" +"321999185","329311107","PCB21145.sanef.groupe","PCB21145","D0:AD:08:A3:E7:22","10.29.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTZ","8CC3502YTZ","'+02:00","2026-04-19T18:38:51.000+02:00","SANEF\zeimet","Cloud Agent","15a70b99-4615-4ab1-b1f3-834f3736503e","2025-05-05T09:44:25.000+02:00","2026-04-22T09:56:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"209161378","248966234","vibotreco1.sanef.groupe","","00:50:56:90:9b:e5","10.41.23.139","fe80::250:56ff:fe90:9be5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 ec cd c6 d3 40 12-1e cf b4 3d 27 b3 9d d6","No Asset Tag","'+02:00","2026-03-18T15:10:27.000+02:00","cybreconcile","Cloud Agent","bf13b879-30b9-4164-bd94-22c98344237e","2024-01-12T11:59:05.000+02:00","2026-04-22T09:56:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre","140.0" +"321980901","329312315","PCB23756.sanef.groupe","PCB23756","6C:0B:5E:EE:93:8D","10.13.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3W","","'+02:00","2026-03-31T15:11:08.000+02:00","SANEF\saladin","Cloud Agent","4dc224e2-21e1-4248-9efe-7440e79b3a44","2025-05-05T10:00:15.000+02:00","2026-04-22T11:27:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"314655310","326546335","vpdsibels2.sanef.groupe","","00:50:56:94:96:34","10.44.5.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","31888","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 60 40 b3 ee 11 5c-9c b0 f2 d9 86 56 4b fb","No Asset Tag","'+02:00","2026-02-10T11:05:28.000+02:00","cybadmbdd","Cloud Agent","f427b4d3-0ec6-4dc6-8995-9c381ee2a225","2025-04-08T16:55:59.000+02:00","2026-04-22T11:14:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production,BDD","140.0" +"128614531","191424692","ls-phalsbourg","LS-PHALSBOURG","00:50:56:90:6A:E6","10.41.2.111","fe80::8777:c6b0:e85b:247d","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 10 8f f4 f2 11 ec-c1 3d af 6d d1 17 67 02","NoAssetTag","'+02:00","2026-03-02T12:54:51.000+02:00","svpadmin","Cloud Agent","daa74d10-73c9-487e-aec4-05ef2f17feab","2022-06-21T15:46:51.000+02:00","2026-04-22T09:55:55.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Windows Server,SVP,OS-WIN-SRV DYN,VRF_PEAGE_DC,Péage,High,Production,Cloud Agent,DEX,Haute","634.0" +"313690077","326069856","vpdsibpmm1.sanef.groupe","","00:50:56:94:00:f8","10.44.5.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","15761","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 7f b4 d5 3b 1c 62-e2 1c 90 22 30 75 98 36","No Asset Tag","'+02:00","2026-02-10T11:05:12.000+02:00","cybreconcile","Cloud Agent","5b8204f5-bd25-4913-ae45-f144b7e8f7fe","2025-04-04T10:33:58.000+02:00","2026-04-22T11:52:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,BDD","139.0" +"322071111","329340612","PCB23747.sanef.groupe","PCB23747","C8:6E:08:49:2D:E3","10.205.0.137,192.168.1.53","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3H","","'+02:00","2026-03-28T09:26:02.000+02:00","SANEF\BOULET","Cloud Agent","24c8466d-d55e-4678-9b2c-d746fd8f7b6b","2025-05-05T15:30:00.000+02:00","2026-04-22T11:50:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"347908376","339417274","PCB18052.sanef.groupe","PCB18052","38:CA:84:52:39:D8","10.101.243.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HV1","","'+02:00","2026-03-31T08:21:22.000+02:00","SANEF\GRAFFAGNINO","Cloud Agent","08878819-cf05-4152-982c-63643b9cfce6","2025-07-31T16:12:59.000+02:00","2026-04-22T09:55:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","251.0" +"383528725","354493243","vptrabtpv1.sanef.groupe","VPTRABTPV1","00:50:56:82:A1:00","10.41.40.11","fe80::61a8:e208:f63e:36b9","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","Phoenix Technologies LTD 6.00","VMware-42 02 2e ba 6a a9 f6 8f-a8 ed 35 96 a4 aa f5 60","NoAssetTag","'+02:00","2026-01-20T12:03:57.000+02:00","Administrateur","Cloud Agent","583438c6-68df-4fe0-af91-15a14bd7d529","2025-12-12T18:00:34.000+02:00","2026-04-22T11:25:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-POS DYN,Cloud Agent,OS-WIN-SRV DYN","339.0" +"407781441","364215505","PCV18676.sanef-int.adds","PCV18676","30:13:8B:6C:7A:16","10.209.7.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473WT","","'+02:00","2026-03-11T21:06:11.000+02:00","Operateur","Cloud Agent","96046d38-f933-4d82-959b-c3016b260a71","2026-03-11T20:27:56.000+02:00","2026-04-22T09:55:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"402455407","362027513","PCB24239.sanef.groupe","PCB24239","C8:58:B3:34:17:05","10.205.0.148,10.255.2.214","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M51","","'+02:00","2026-04-14T09:14:36.000+02:00","SANEF\allali-ext","Cloud Agent","cb42fdcb-158e-4abd-9400-263b323b2eef","2026-02-19T19:02:23.000+02:00","2026-04-22T10:26:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"320970310","328891976","PCB23662.sanef.groupe","PCB23662","C8:6E:08:8A:45:26","10.255.4.157","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L65","","'+02:00","2026-04-21T11:06:31.000+02:00","SANEF\dewarlez","Cloud Agent","8b6d2e46-766b-448a-96c7-b081c10beaf0","2025-04-30T13:38:17.000+02:00","2026-04-22T09:55:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"223163371","255070310","ls-herquelingue","LS-HERQUELINGUE","00:50:56:90:D5:BF","10.132.3.20","fe80::c9d7:798e:11c8:fd32","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 93 9b c3 66 41 d7-5d 6c 3e 56 ce 9f 95 d0","NoAssetTag","'+02:00","2026-03-05T15:33:01.000+02:00","svpadmin","Cloud Agent","c70ab170-f2f6-4a2f-a754-c607a33efafc","2024-03-18T16:00:35.000+02:00","2026-04-22T09:54:59.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,Péage,Haute,High,Production,OS-WIN-SRV DYN,SVP,Cloud Agent,Windows Server","636.0" +"130588736","192836894","vmamrsxt2","","00:50:56:82:38:AC, 00:50:56:82:10:63, 00:50:56:82:35:7E","10.30.16.61,10.32.16.61,10.33.16.61","fe80::250:56ff:fe82:38ac,fe80::250:56ff:fe82:1063,fe80::250:56ff:fe82:357e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8d bf ac 8d f7 1f-af c6 c5 0a 46 ec 9b a7","No Asset Tag","'+02:00","2025-10-09T11:39:35.000+02:00","cybexpapp","Cloud Agent","fedd9208-8c4b-45e2-bec4-4424ba542a92","2022-07-07T12:05:18.000+02:00","2026-04-22T11:50:14.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Cloud Agent,Linux Server,log4j,VRF_INCONNUE,OS-LIN-SRV DYN,DEX,Obsolete,Sextan","699.0" +"225744238","256215595","ls-taissy","LS-TAISSY","00:50:56:90:39:80","10.82.17.20","fe80::ad2c:f83:e94f:98ac","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 ee db c7 fa 59 78-eb 47 93 5b e3 79 f2 17","NoAssetTag","'+02:00","2026-03-04T11:02:22.000+02:00","svpadmin","Cloud Agent","dcfd009f-0895-4690-844e-94f268d5b336","2024-03-27T14:16:22.000+02:00","2026-04-22T09:54:54.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Production,Péage,High,SVP,Cloud Agent,Windows Server","508.0" +"334429377","334153252","PCB24118.sanef.groupe","PCB24118","48:EA:62:C8:93:DD","10.104.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V71","","'+02:00","2026-04-13T07:58:57.000+02:00","SANEF\MIDA","Cloud Agent","80a3e06e-9c2c-4d76-be3f-8b685a8b0759","2025-06-18T14:30:52.000+02:00","2026-04-22T11:23:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"323150669","329795187","PCB21288.sanef.groupe","PCB21288","30:F6:EF:A3:FE:62","10.205.0.83,10.255.3.162","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKQ","","'+02:00","2026-04-15T20:25:11.000+02:00","SANEF\garcia","Cloud Agent","d00be938-3ca3-49a1-8639-d3ad6ddd15a3","2025-05-09T09:48:07.000+02:00","2026-04-22T11:04:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"379735235","352966403","PCB17655.sanef.groupe","PCB17655","F0:20:FF:9A:8C:EC","10.205.0.104,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HW3","","'+02:00","2026-04-21T09:14:31.000+02:00","SANEF\SENEGAS","Cloud Agent","84aec5f4-acb5-4a26-b43b-904a34cd65f2","2025-11-27T10:40:44.000+02:00","2026-04-22T09:54:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"332364676","333860645","vpameakfk2.sanef.groupe","","00:50:56:90:62:fb","10.41.41.41","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 64 2f ce 71 ca b3-79 bb ce 4b f5 6f 33 2e","No Asset Tag","'+02:00","2025-10-29T11:31:29.000+02:00","cybadmbdd","Cloud Agent","5451e375-b869-4489-86d7-b19519650c27","2025-06-10T16:31:40.000+02:00","2026-04-22T10:55:46.000+02:00","x86_64","4","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","278.0" +"388102188","356872571","PCB24240.sanef.groupe","PCB24240","C8:58:B3:12:EA:C6","10.255.2.202,10.255.2.237","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.04.01","5CD5085GHP","","'+02:00","2026-03-04T11:21:44.000+02:00","SANEF\bartiaux","Cloud Agent","d67932b4-0169-4557-93da-cd2045416cea","2026-01-05T11:20:04.000+02:00","2026-04-22T10:50:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"352581103","341591227","PCB25851.sanef.groupe","PCB25851","F8:ED:FC:AA:A5:50","10.101.242.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSS","","'+02:00","2026-04-14T07:56:38.000+02:00","SANEF\CARBONNAUX","Cloud Agent","3f32a228-0392-4d16-9d9e-400cfc7c4147","2025-08-19T12:30:35.000+02:00","2026-04-22T09:54:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"356281593","343240103","vpdsiadep1.sanef.groupe","","00:50:56:94:aa:b4","10.44.6.5","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","9684","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 8f 6e c6 cc c9 bb-c2 9f 14 db 5f fa 0c 8e","No Asset Tag","'+02:00","2026-02-10T12:07:18.000+02:00","cybadmroot","Cloud Agent","459ae527-bb2c-4372-8da8-8020e6694172","2025-09-02T10:54:05.000+02:00","2026-04-22T11:27:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,NextCloud,Production,Linux Server,Cloud Agent","332.0" +"321090803","328938512","PCB21179.sanef.groupe","PCB21179","F0:20:FF:9B:08:F2","10.205.0.31,192.168.1.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVS","","'+02:00","2026-04-20T09:31:32.000+02:00","SANEF\rondeau","Cloud Agent","f00b4c32-bb5a-4f26-bd31-7d9fb2f13a38","2025-04-30T20:46:11.000+02:00","2026-04-22T11:42:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"389643535","357460667","PCB21107.sanef.groupe","PCB21107","D0:AD:08:AA:50:95","10.205.0.43,10.101.243.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764LN","","'+02:00","2026-04-03T11:30:49.000+02:00","SANEF\consejo-ext","Cloud Agent","406541ab-9228-45a8-aeca-73af663e28bd","2026-01-08T18:44:42.000+02:00","2026-04-22T11:29:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"320073836","328604714","PCB24028.sanef.groupe","PCB24028","6C:0B:5E:F8:F7:B2","10.101.243.64","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4502HF1","","'+02:00","2026-04-21T09:04:52.000+02:00","SANEF\DREUX","Cloud Agent","94bc38bc-7f1a-4c93-bc11-92a57f0033a3","2025-04-28T11:06:31.000+02:00","2026-04-22T11:56:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"383464215","354471589","PCV21512.sanef-int.adds","PCV21512","D0:AD:08:A3:7B:69","10.1.6.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YWK","","'+02:00","2026-01-05T21:07:47.000+02:00","Operateur","Cloud Agent","f3b58bb5-a682-4327-979f-b52da7d18f51","2025-12-12T14:02:48.000+02:00","2026-04-22T09:53:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"184274823","235418455","vpsimaapi1","","00:50:56:82:09:8a","10.41.20.30","fe80::583f:dea5:8ddc:2bec","Linux / Server","The CentOS Project CentOS 7.4 (1708)","7.4","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7984","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 88 e4 f4 8d 79 b0-18 b6 c7 6b ad 9a b1 4f","No Asset Tag","'+02:00","2025-02-24T16:01:53.000+02:00","cybreconcile","Cloud Agent","9e4e4ac7-3f61-4a3e-bf90-933107c8f924","2023-08-24T12:18:59.000+02:00","2026-04-22T11:53:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,BDD-POS DYN,FreeFlow,log4j,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,Obsolete","343.0" +"184256628","235404729","vpcybapvwa2","VPCYBAPVWA2","00:50:56:82:57:9F","10.44.1.101","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","Phoenix Technologies LTD 6.00","VMware-42 02 d7 e9 13 e0 8e 4c-ee d7 a3 72 69 d9 90 dd","NoAssetTag","'+02:00","2026-03-24T10:20:57.000+02:00","Administrator","Cloud Agent","5bc01f3a-d326-41f3-af33-1d94835b1b84","2023-08-24T10:03:45.000+02:00","2026-04-22T09:53:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","CyberArk,DSI,OS-WIN-SRV DYN,Cloud Agent,Windows Server","65.0" +"374170362","350492704","PCV21625.sanef-int.adds","PCV21625","D0:AD:08:A4:4D:BA","10.5.7.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711JN","","'+02:00","2026-04-19T21:02:46.000+02:00","Operateur","Cloud Agent","ecbe38f2-6e42-4ccd-ba46-764b2b9dbca5","2025-11-04T16:50:01.000+02:00","2026-04-22T09:53:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"358637191","344173500","PCB17767.sanef.groupe","PCB17767","F0:20:FF:9A:FB:82","10.255.1.151","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVG","","'+02:00","2026-04-22T07:58:26.000+02:00","SANEF\HUEN","Cloud Agent","2e489da1-1759-480c-9993-f96d8553f560","2025-09-10T16:09:05.000+02:00","2026-04-22T11:46:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"408011773","364319419","PCB20620.sanef.groupe","PCB20620","BC:0F:F3:3D:F7:D6","10.200.31.79","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DSN","","'+01:00","2026-04-14T22:39:45.000+02:00","SANEF\tamboura","Cloud Agent","76b62eb4-3c67-449a-b570-a6a939db609b","2026-03-12T16:23:59.000+02:00","2026-04-22T09:53:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"227259072","256900169","OSA20936.sanef-int.adds","OSA20936","BC:0F:F3:87:6F:9D","10.5.20.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LKW","","'+02:00","2026-04-20T13:55:26.000+02:00","Superviseur","Cloud Agent","5418f775-14e2-4f21-8f08-62d1aa0aad34","2024-04-03T15:11:24.000+02:00","2026-04-22T09:53:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"325240938","","PCB20610.sanef.groupe","PCB20610","58:1C:F8:E9:51:47","10.255.4.219","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DS4","","'+02:00","2026-03-30T13:41:07.000+02:00","Matheo.MAUCORT@sanef.com","Cloud Agent","49cc29fb-1f19-42bc-91c4-61fe22217e66","2025-05-16T15:09:14.000+02:00","2026-04-22T09:53:25.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"139157311","198270449","vmamprdt2","","00:50:56:82:4d:83, 00:50:56:82:73:0e, 00:50:56:82:1e:cc","10.41.40.71,10.41.40.74,10.41.40.75,10.43.40.71,10.43.40.74,10.43.40.75,10.43.4.71","fe80::250:56ff:fe82:4d83,fe80::250:56ff:fe82:730e,fe80::250:56ff:fe82:1ecc","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3a 36 7c ea da 33-d1 92 df 39 0a 2d 2f 32","No Asset Tag","'+02:00","2024-02-14T14:45:03.000+02:00","cybreconcile","Cloud Agent","2390c953-cec7-401c-9d98-461499419684","2022-09-07T14:31:30.000+02:00","2026-04-22T09:53:24.000+02:00","x86_64","5","SCA,VM,PM,GAV","Obsolete,VRF_TRAFIC_DC,Trafic,log4j,DEX,Cloud Agent,Linux Server,Production,MIVISU,OS-LIN-SRV DYN","873.0" +"378056718","352302029","PCV21556.sanef-int.adds","PCV21556","D0:AD:08:A3:7B:43","10.209.7.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YS5","","'+02:00","2026-04-20T20:57:16.000+02:00","Operateur","Cloud Agent","b2b434f6-99a6-42f6-8105-0bc266760f5c","2025-11-20T12:50:31.000+02:00","2026-04-22T09:53:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"244023476","283221410","MTO22447.sanef.groupe","MTO22447","D0:AD:08:A3:7B:4E","10.103.31.10","fe80::e871:8c4:e1d5:26da","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6060) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRV","","'+02:00","2026-04-02T14:01:24.000+02:00","SANEF\meteonewsW11","Cloud Agent","df618932-b813-42f4-8bd6-8b43d9f4f427","2024-06-14T15:54:54.000+02:00","2026-04-22T11:31:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"383465193","354470820","PCB22320.sanef.groupe","PCB22320","D0:AD:08:A3:7B:E3","10.252.42.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZS","8CC3502YZS","'+02:00","2026-03-29T09:12:19.000+02:00","SANEF\bellaton","Cloud Agent","69920b08-f41b-4dd2-8672-059f117a9639","2025-12-12T13:57:43.000+02:00","2026-04-22T10:33:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"314334821","326364429","PCB18630.sanef.groupe","PCB18630","38:CA:84:DB:E6:51","10.4.31.87","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WDC","","'+02:00","2026-04-20T08:59:37.000+02:00","SANEF\RIJO-ext","Cloud Agent","d4f2121d-cbfb-4a6d-99e5-74eeca5ecfd7","2025-04-07T09:47:27.000+02:00","2026-04-22T11:00:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"358126652","344033176","PCB24093.sanef.groupe","PCB24093","70:15:FB:7E:44:A6","10.101.243.37,10.255.3.198","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZD","","'+02:00","2026-04-16T09:18:11.000+02:00","SANEF\ALTINBASAK-ext","Cloud Agent","df23b5f7-5c87-442d-ac30-0f1343fb31ce","2025-09-09T14:06:45.000+02:00","2026-04-22T11:43:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"322118634","329345003","PCB21270.sanef.groupe","PCB21270","D0:AD:08:0C:8D:15","10.4.31.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJV","","'+02:00","2026-04-21T16:08:31.000+02:00","SANEF\puffay","Cloud Agent","af6fc953-6365-45e7-8baf-2bb999fc9b13","2025-05-05T16:02:19.000+02:00","2026-04-22T11:13:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","254.0" +"382992167","354208654","vrpeabrac2.sanef-rec.fr","","52:54:00:54:39:20, 9a:53:a6:01:38:c3, 52:54:00:bf:eb:9c","192.168.17.5,192.168.16.24,10.45.15.37","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","64413","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-07T15:41:12.000+02:00","oracle","Cloud Agent","9821a6e3-ac73-475b-b388-35462434174b","2025-12-10T12:11:02.000+02:00","2026-04-22T12:03:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN","339.0" +"305247249","322678526","PCB18482.sanef.groupe","PCB18482","D0:AD:08:AA:4F:E6","10.107.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764F0","","'+02:00","2026-04-02T08:32:42.000+02:00","SANEF\bouvierd","Cloud Agent","485bb439-d209-454e-8438-291a267aa0c9","2025-03-04T17:15:53.000+02:00","2026-04-22T09:52:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"416487289","367845342","vrzbxaapp1.sanef-rec.fr","","00:50:56:9c:25:44","10.45.15.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 64 2f 45 34 33 f8-91 16 9d bd 35 38 8b cb","No Asset Tag","'+02:00","2026-04-16T17:07:58.000+02:00","cybintsys","Cloud Agent","25db37e5-6c59-40dc-8a3d-c58d87cf3053","2026-04-16T17:08:17.000+02:00","2026-04-22T11:38:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","66.0" +"320920854","328810161","PCB23654.sanef.groupe","PCB23654","C8:6E:08:88:FD:CE","10.205.0.55,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8M","","'+02:00","2026-03-28T10:49:35.000+02:00","SANEF\poos","Cloud Agent","18a9d321-328e-419a-a100-96c446b2765f","2025-04-30T10:03:12.000+02:00","2026-04-22T09:52:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"382436600","353976508","PCB25815.sanef.groupe","PCB25815","F8:ED:FC:AB:02:9A","10.252.42.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTG","","'+02:00","2026-04-13T12:53:37.000+02:00","SANEF\ETIENNE","Cloud Agent","7bb52d5a-de47-4750-8198-fc9acb11aa9f","2025-12-08T11:14:47.000+02:00","2026-04-22T10:57:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","330.0" +"322363728","329442834","PCB23773.sanef.groupe","PCB23773","C8:6E:08:49:2E:0B","10.205.0.49,192.168.1.68","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4M","","'+02:00","2026-04-10T07:39:48.000+02:00","SANEF\zahzouh","Cloud Agent","d37a2a82-6121-4d95-b0f4-f6f3e12c1d67","2025-05-06T12:54:53.000+02:00","2026-04-22T09:52:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"344364139","338329864","PCB18034.sanef.groupe","PCB18034","38:CA:84:52:F8:74","10.101.243.97","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSB","","'+02:00","2026-04-22T07:58:33.000+02:00","SANEF\HEURTEBISE","Cloud Agent","baea6410-b62a-4070-8379-9ca4fbc8ee84","2025-07-23T12:24:13.000+02:00","2026-04-22T09:52:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","143.0" +"382990199","354209251","vrpeabrac1.sanef-rec.fr","","52:54:00:0c:48:7e, 52:54:00:d5:33:4b, 1a:08:40:51:70:fb","10.45.15.36,192.168.17.5,192.168.16.24","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","64413","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:43:49.000+02:00","oracle","Cloud Agent","8ea1a893-c52b-45dd-aca0-8e8e3a787bfc","2025-12-10T12:11:44.000+02:00","2026-04-22T11:43:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0" +"349750444","340113666","PCB24205.sanef.groupe","PCB24205","10:B6:76:97:D4:AE","10.4.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YK5","","'+02:00","2026-04-21T08:08:54.000+02:00","SANEF\BERRIOT-ext","Cloud Agent","53921c51-e175-4f95-8944-121a05fce742","2025-08-07T10:47:25.000+02:00","2026-04-22T09:52:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"324455640","330242564","PCB23777.sanef.groupe","PCB23777","6C:0B:5E:EE:B3:09","10.5.30.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3P","","'+02:00","2026-03-29T11:36:05.000+02:00","SANEF\boulland","Cloud Agent","91341f18-c490-4196-865e-5fa089c492f3","2025-05-13T16:21:31.000+02:00","2026-04-22T11:57:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"370420720","348902679","PCB22468.sanef.groupe","PCB22468","D0:AD:08:E4:A1:17","10.200.31.83","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.05.21","5CG3501HWH","","'+02:00","2026-03-30T08:48:41.000+02:00","SANEF\sanson","Cloud Agent","5c3dd3ca-09e3-4343-bc62-67c5376bd520","2025-10-21T15:09:36.000+02:00","2026-04-22T11:11:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"137339569","197584629","vptraagas1","","00:50:56:82:05:5d","10.41.40.150","fe80::250:56ff:fe82:55d","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 66 78 f5 41 da e3-68 15 1c ce 99 bf 0c c9","No Asset Tag","'+02:00","2025-01-16T11:16:46.000+02:00","cybadmsys","Cloud Agent","76d7296f-4d35-4c0b-b317-0602fb796e2a","2022-08-30T16:11:51.000+02:00","2026-04-22T09:51:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Exploitation,Production,DEX,OS-LIN-SRV DYN,Obsolete,VRF_TRAFIC_DC,Gaspar","517.0" +"382728208","354100586","PCB24065.sanef.groupe","PCB24065","08:B4:D2:2A:09:5E","10.205.0.94,192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506438W","","'+02:00","2026-04-16T09:13:40.000+02:00","SANEF\benaissa-ext","Cloud Agent","3ba9f11c-f960-448a-95bb-40147c5e168f","2025-12-09T13:13:41.000+02:00","2026-04-22T11:42:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","242.0" +"412358345","366106323","PCB18119.sanef.groupe","PCB18119","64:D6:9A:21:81:DF","10.101.243.155,10.255.4.224","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T39 Ver. 01.12.00","5CG2376HS0","","'+02:00","2026-04-07T15:40:54.000+02:00","SANEF\ZAARI","Cloud Agent","9f5c9aeb-14e4-427b-a202-73651dc4e30d","2026-03-30T09:21:28.000+02:00","2026-04-22T11:29:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"359801548","344907765","vrcybapsp1.sanef-rec.fr","","00:50:56:9c:27:27","10.45.11.103","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3654","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9c d3 87 0e c5 1c-1f 79 4e 63 20 02 3d 82","No Asset Tag","'+02:00","2026-04-16T11:21:29.000+02:00","cybreconcile","Cloud Agent","67758aed-02ba-4179-ab10-9b51b3787577","2025-09-15T15:54:53.000+02:00","2026-04-22T11:52:20.000+02:00","x86_64","2","SCA,VM,GAV","Recette,Linux Server,Cloud Agent,CyberArk,OS-LIN-SRV DYN","66.0" +"143625427","201026716","vpemvaldap2.sanef.groupe","","00:50:56:82:51:0c","192.168.100.128","fe80::250:56ff:fe82:510c","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 09/21/2015","VMware-42 02 9c 59 10 65 fe cb-d8 4b 37 07 c2 47 70 33","No Asset Tag","'+02:00","2025-06-03T11:06:33.000+02:00","root","Cloud Agent","d3575692-9abd-4cfe-8bf1-b4ee8afa001a","2022-10-11T17:44:53.000+02:00","2026-04-22T09:51:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,DEX,BDD-POS DYN,PCI Bunker EMV - VLAN Supervision/Admin,VRF_INCONNUE,Cloud Agent,Linux Server,Obsolete","107.0" +"241859199","276775641","vpdsiawik1.sanef.groupe","","00:50:56:9c:a3:a4","192.168.31.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 9c f5 a8 72 94 b0-56 cb 50 f9 c6 65 94 22","No Asset Tag","'+02:00","2026-04-13T11:20:26.000+02:00","cybreconcile","Cloud Agent","f44f74c6-1b54-40d2-abb1-8238f56a3f8c","2024-06-05T16:19:37.000+02:00","2026-04-22T11:44:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DocuWiki,Production","67.0" +"322342951","329432201","PCS22792.sanef-int.adds","PCS22792","D0:AD:08:A3:E6:DE","10.12.13.100","fe80::71f7:1be5:1e38:78a7","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YQC","","'+02:00","2026-02-18T18:47:43.000+02:00","user_stl","Cloud Agent","fd4c5b6d-60ba-4ad9-a65d-682f7eeb0d56","2025-05-06T11:30:18.000+02:00","2026-04-22T11:37:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","346.0" +"322598573","329577160","PCB21628.sanef.groupe","PCB21628","D0:AD:08:A3:7B:5C","10.4.31.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRK","8CC3502YRK","'+02:00","2026-04-21T07:58:36.000+02:00","SANEF\cardinale","Cloud Agent","75ca9f9c-8c71-46a4-9765-0d23d9d423b7","2025-05-07T11:21:14.000+02:00","2026-04-22T11:34:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"303928250","322166975","vpdsismtp2.sanef.groupe","","00:50:56:9c:a0:a8","192.168.19.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 00 68 5b 39 44 33-bc 21 52 75 63 7b 5c 22","No Asset Tag","'+02:00","2026-04-08T11:53:27.000+02:00","cybsecope","Cloud Agent","3e6b3e9e-bc4f-47d7-a791-9aca43d21382","2025-02-27T18:09:58.000+02:00","2026-04-22T11:48:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,OS-LIN-SRV DYN,Linux Server,Cloud Agent,EXCHANGE,Production","132.0" +"190511242","239173148","vibotbquo1.sanef-int.adds","VIBOTBQUO1","00:50:56:90:40:FD","10.100.16.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 94 9b 1d 02 6d 24-15 c9 c2 7b 1e fc 50 1b","NoAssetTag","'+02:00","2026-03-18T11:44:58.000+02:00","SANEF\ndead","Cloud Agent","0da1037a-061e-45c4-ae92-fca1c116ba07","2023-09-29T11:57:03.000+02:00","2026-04-22T09:50:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,OS-WIN-SRV DYN,flux_libre,Cloud Agent,Windows Server","256.0" +"373866362","350361990","PSX18688.sanef-int.adds","PSX18688","30:13:8B:6C:79:4C","10.12.40.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473VY","","'+02:00","2026-01-13T09:39:02.000+02:00","UserSextan","Cloud Agent","413a701c-07a6-483c-b49a-3a54342b7d45","2025-11-03T16:25:47.000+02:00","2026-04-22T09:50:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"200012633","244159298","vppeaabst2.sanef.groupe","","00:50:56:90:0c:39","10.41.20.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 77 fd f2 0c 9c 7d-53 62 bf db 8b fa a2 df","No Asset Tag","'+02:00","2026-04-16T14:46:56.000+02:00","cybreconcile","Cloud Agent","10a98a33-ca7c-49b4-b122-44d54db84dfb","2023-11-20T18:32:46.000+02:00","2026-04-22T09:50:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,flux_libre,Flux Libre,TAG-SRVEXPOSEINDIRECT,FreeFlow,Production","485.0" +"322331256","329422563","PCB23800.sanef.groupe","PCB23800","C8:6E:08:47:0C:02","10.205.0.4,192.168.0.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4N","","'+02:00","2026-04-20T16:54:15.000+02:00","SANEF\lefebvremi","Cloud Agent","514cff40-0345-4805-ba39-e43b74a3e02b","2025-05-06T09:48:46.000+02:00","2026-04-22T11:47:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"320931046","328811910","PCB22787.sanef.groupe","PCB22787","D0:AD:08:A3:E7:91","10.149.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMF","8CC3502YMF","'+02:00","2026-04-20T14:13:54.000+02:00","SANEF\dauchez","Cloud Agent","c304ea5b-e11e-472f-a1ae-6edcffc92a3d","2025-04-30T10:21:19.000+02:00","2026-04-22T09:50:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"324654124","330319322","PCB20667.sanef.groupe","PCB20667","58:1C:F8:E9:50:E8","10.255.2.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224DSY","","'+02:00","2026-04-13T10:12:35.000+02:00","SANEF\DUMONTM","Cloud Agent","62e1d0eb-e611-43c5-a402-1f5d8be262b7","2025-05-14T10:05:37.000+02:00","2026-04-22T09:50:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"354947020","342628143","PCB25777.sanef.groupe","PCB25777","F8:ED:FC:AB:02:72","10.101.243.83","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTQ","","'+02:00","2026-04-14T08:53:48.000+02:00","SANEF\GUILLOCHON","Cloud Agent","fd426fed-b697-468b-89d0-65ac63eec8c0","2025-08-27T16:52:53.000+02:00","2026-04-22T11:07:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"382416807","353964317","PCB25853.sanef.groupe","PCB25853","28:95:29:1A:F1:A8","10.255.4.189","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW7","","'+02:00","2026-04-13T22:12:36.000+02:00","SANEF\vagnon","Cloud Agent","107c6e39-7f8c-4233-a128-8642c11b0fa6","2025-12-08T09:49:34.000+02:00","2026-04-22T10:58:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","331.0" +"130346127","192664642","VMAMPWEB1.sanef.groupe","VMAMPWEB1","02:B9:3C:27:74:C9, 00:50:56:90:11:F0","169.254.2.244,10.41.40.111,10.41.40.113","fe80::88c7:ff94:1117:d134,fe80::fd9d:cd61:39ca:5304","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 10 94 01 a9 35 ea 17-5d e7 36 59 38 30 b2 a9","NoAssetTag","'+02:00","2024-02-13T14:07:57.000+02:00","SANEF.GROUPE\tbead","Cloud Agent","9c85f8e4-448f-409f-b1f8-d47fa5324a3a","2022-07-05T15:50:41.000+02:00","2026-04-22T09:50:23.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Production,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Obsolete,Patrimoine,DEX,VRF_TRAFIC_DC,SIG","537.0" +"222529119","254800462","vppatakib1.sanef.groupe","","00:50:56:90:59:ba","10.42.40.15","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 6f fd 1c cd de 1f-ce 83 16 7d ad c6 7e 9f","No Asset Tag","'+02:00","2026-04-09T16:12:53.000+02:00","cybadmbdd","Cloud Agent","83451f3c-6805-458b-979e-1fb6ffcd2068","2024-03-15T12:10:59.000+02:00","2026-04-22T11:18:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","PATRIMOINE,DFIN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","57.0" +"184089794","235299816","vpcybapsm2.sanef.groupe","VPCYBAPSM2","00:50:56:82:33:57","10.44.1.69","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","Phoenix Technologies LTD 6.00","VMware-42 02 4e 3f c4 5c 21 f4-3a f1 68 7b 6d 41 af 17","NoAssetTag","'+02:00","2026-03-24T10:19:18.000+02:00","SANEF-INT\CYBP01481","Cloud Agent","2015b96b-e6e7-455a-86c1-5e284adf255b","2023-08-23T09:27:47.000+02:00","2026-04-22T09:50:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","CyberArk,DSI,OS-WIN-SRV DYN,Cloud Agent,Windows Server","246.0" +"183457732","234863518","vtdsibpgs1.sanef-rec.fr","","00:50:56:9c:77:7e","10.45.1.167","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c b6 7b 71 22 01 84-ec fe 04 26 bf 3b 4f 17","No Asset Tag","'+02:00","2026-01-06T15:54:48.000+02:00","cybsecope","Cloud Agent","ec852b1a-f855-46a4-88ae-903b37921bed","2023-08-18T17:11:51.000+02:00","2026-04-22T11:53:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,PATRIMOINE","141.0" +"236895900","266301960","vpvpnarad2","","02:42:9c:2f:9f:bb, b6:47:fe:27:d8:89, 00:50:56:90:40:f5","172.17.0.1,192.168.19.7","fe80::42:9cff:fe2f:9fbb,fe80::b447:feff:fe27:d889,fe80::250:56ff:fe90:40f5","Linux / Server","Red Hat Enterprise Linux 8.3","8.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 2a 03 6f bc c2 e7-10 f6 d6 6c 6e 29 9c e9","No Asset Tag","'+02:00","2026-02-24T12:31:12.000+02:00","cybsupsys","Cloud Agent","db63d141-d056-4287-9e53-31930fdb766e","2024-05-15T14:46:02.000+02:00","2026-04-22T11:36:13.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,GEMALTO,VPN,Radius,DSI","207.0" +"381698913","353634169","spbckamag7.sanef.groupe","","6c:29:d2:30:51:dc, 6c:29:d2:30:51:dd","10.42.16.101,10.43.1.9","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192295","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3G","Unknown","'+02:00","2025-12-04T17:01:36.000+02:00","root","Cloud Agent","de6ae98a-1867-41a0-98a2-043a932172c8","2025-12-04T16:39:03.000+02:00","2026-04-22T11:28:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"408839040","364697527","PCB18007.sanef.groupe","PCB18007","60:DD:8E:EE:03:E0","10.255.3.4","fe80::25d4:dc37:3a0d:29ef","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.25.00","8CC206174T","","'+02:00","2026-04-14T22:50:48.000+02:00","SANEF\Mediouni-ext","Cloud Agent","3012903e-c8eb-4b0f-8e9b-ac5a413cc459","2026-03-16T17:55:30.000+02:00","2026-04-22T09:50:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","237.0" +"130586812","192835992","vmamrhtp1","","00:50:56:82:00:63, 00:50:56:82:1F:DC, 00:50:56:82:46:63","10.32.16.50,10.30.16.50,10.30.16.57,10.30.16.59,10.33.16.50","fe80::250:56ff:fe82:63,fe80::250:56ff:fe82:1fdc,fe80::250:56ff:fe82:4663","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d3 dc 26 d6 b0 47-13 65 44 3c 3c 1d b0 59","No Asset Tag","'+02:00","2025-10-09T11:37:38.000+02:00","cybexpapp","Cloud Agent","946a2d3a-0f88-464a-986b-a92a377b8afd","2022-07-07T12:00:23.000+02:00","2026-04-22T11:45:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,DEX,log4j,Amelie,Obsolete,Sans,Trafic,Recette,VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN","349.0" +"128614292","191424818","ls-plateau","LS-PLATEAU","00:50:56:90:3C:39","10.41.2.83","fe80::b7cb:1019:15c3:43b1","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 ad 97 ac 62 7a 6d-11 46 1d a1 fd db 02 b3","NoAssetTag","'+02:00","2026-03-02T15:04:17.000+02:00","svpadmin","Cloud Agent","cebda2d7-ab45-45b2-8276-68eb9a1c9336","2022-06-21T15:49:46.000+02:00","2026-04-22T11:08:04.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,Cloud Agent,Haute,Production,Péage,High,DEX,VRF_PEAGE_DC,OS-WIN-SRV DYN,Windows Server","635.0" +"376693686","351648052","PCB20683.sanef.groupe","PCB20683","58:1C:F8:EA:53:8F","10.255.3.201,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DS1","","'+02:00","2026-04-17T09:10:18.000+02:00","SANEF\FALEYRAS-SEVELE","Cloud Agent","3a8e6072-7754-4748-bcef-250421c6013d","2025-11-14T17:42:08.000+02:00","2026-04-22T09:49:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"320491264","328732388","PCB23698.sanef.groupe","PCB23698","6C:0B:5E:EC:3E:27","10.6.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8C","","'+02:00","2026-04-16T07:52:00.000+02:00","SANEF\neimer","Cloud Agent","d3670d04-6136-4dc3-a259-720e46b52114","2025-04-29T15:19:49.000+02:00","2026-04-22T09:49:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"343661247","338037186","PCB21354.sanef.groupe","PCB21354","E4:60:17:C4:EC:F8","10.220.31.54,10.255.4.220","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HZ","","'+02:00","2026-04-02T09:01:59.000+02:00","chaima.fakkake@sapn.fr","Cloud Agent","d60075e0-7cb1-4859-9023-39f5de62702b","2025-07-21T11:09:17.000+02:00","2026-04-22T11:33:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"383948228","354712737","PCB22337.sanef.groupe","PCB22337","D0:AD:08:A3:7B:41","10.252.42.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS8","8CC3502YS8","'+02:00","2026-03-29T09:13:54.000+02:00","SANEF\mohamadi","Cloud Agent","4fdf0e17-6a8d-4d74-bf2f-9209c5e8fa47","2025-12-15T10:25:50.000+02:00","2026-04-22T09:49:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"333994544","333992320","PCB24131.sanef.groupe","PCB24131","08:B4:D2:2E:D5:1F","10.205.0.17,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6Y","","'+02:00","2026-04-22T07:30:37.000+02:00","SANEF\cousin","Cloud Agent","b4dc53da-aebd-4b82-bd34-6a04e9263aee","2025-06-17T11:26:46.000+02:00","2026-04-22T09:49:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"191660245","239874257","sibocbsap2.sanef.groupe","","88:e9:a4:75:25:08","10.41.22.76","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL560 G10 Server","144","2600","Intel(R) Xeon(R) Gold 6240L CPU @ 2.60GHz","4127749","HPE U34 07/20/2023","CZ22420F50","","'+02:00","2026-03-16T16:22:43.000+02:00","cybastapp","Cloud Agent","af2ca818-f1c9-4b0c-a5c2-33213852a9bb","2023-10-05T21:48:59.000+02:00","2026-04-22T09:49:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Production,Flux Libre","337.0" +"324670706","330328738","PCB20679.sanef.groupe","PCB20679","BC:0F:F3:3B:D9:5D","10.100.39.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3J","","'+02:00","2026-04-20T08:46:30.000+02:00","SANEF\LEFEBVREC","Cloud Agent","2726c25b-7c6b-44f7-980b-ec4594419818","2025-05-14T11:10:37.000+02:00","2026-04-22T11:59:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","143.0" +"413950453","366887050","PCB23798.sanef.groupe","PCB23798","6C:0B:5E:EE:B3:6B","10.13.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4Z","","'+02:00","2026-04-17T08:40:53.000+02:00","SANEF\SAINT-DIZIER","Cloud Agent","d75b17dd-360b-471f-b4f8-c469088b031f","2026-04-07T08:02:05.000+02:00","2026-04-22T11:55:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"130590027","192837854","vdameassl1.sanef.groupe","","00:50:56:82:f1:1a","10.43.255.45","fe80::f672:80e6:59b3:f788","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2b b7 30 78 5e 8a-ad a8 29 5f 73 57 24 cb","No Asset Tag","'+02:00","2026-04-20T15:24:04.000+02:00","cybexpapp","Cloud Agent","a5692cec-00b3-4117-a659-3b436eaa851d","2022-07-07T12:12:12.000+02:00","2026-04-22T09:38:36.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,VRF_INCONNUE,DEX,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","268.0" +"281049216","","PCB22530.sanef.groupe","PCB22530","E4:60:17:CB:F4:E9","172.16.208.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JL","","'+02:00","2026-04-06T14:11:40.000+02:00","SANEF\sardinha","Cloud Agent","7ed4a3bd-44e8-45e0-aba5-78081c613f9e","2024-11-21T17:21:42.000+02:00","2026-04-22T09:49:06.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"362249908","345661801","PCB24074.sanef.groupe","PCB24074","24:FB:E3:CF:FD:4A","10.205.0.67,10.202.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5162X3T","","'+02:00","2026-04-15T08:14:50.000+02:00","SANEF\rivard","Cloud Agent","0a97331c-c82b-462c-b382-71c645ed578c","2025-09-23T11:45:52.000+02:00","2026-04-22T10:30:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"175464814","229282552","vvbotatst3.sanef-rec.fr","","00:50:56:9c:ba:92","10.45.6.161","fe80::250:56ff:fe9c:ba92","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7696","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 97 75 e5 1f ac c9-75 c6 00 62 09 fb 2d e9","No Asset Tag","'+02:00","2026-03-10T12:00:04.000+02:00","cybreconcile","Cloud Agent","475dd744-3781-4643-97b0-8ce87c3e0672","2023-06-22T17:17:41.000+02:00","2026-04-22T11:55:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Recette,Flux Libre,flux_libre,Cloud Agent,Linux Server","334.0" +"402351359","361981115","PCB18094.sanef.groupe","PCB18094","64:D6:9A:1D:39:0E","10.255.3.183,192.168.1.120","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HTH","","'+02:00","2026-04-14T12:10:51.000+02:00","SANEF\MAJERUS","Cloud Agent","6ef9a191-413d-48a1-b810-3f85d6d129bc","2026-02-19T11:27:48.000+02:00","2026-04-22T09:49:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"238272367","269262155","vipeabbst2.sanef.groupe","","00:50:56:90:ce:4e","10.41.29.56","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 fc 3a 2e ef 88 c6-05 2a 0d ba 91 ec 80 aa","No Asset Tag","'+02:00","2026-03-19T11:10:15.000+02:00","cybintsys","Cloud Agent","391e4720-a981-4d5b-bb7e-ebb0db648bb9","2024-05-21T14:51:21.000+02:00","2026-04-22T11:02:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,Cloud Agent,Linux Server,FreeFlow","141.0" +"223166642","255070312","ls-haudricourt","LS-HAUDRICOURT","00:50:56:90:72:A8","10.132.4.20","fe80::3d8e:ef30:d61b:87ca","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 b8 b0 c2 d8 96 1f-7c 78 70 87 69 f6 18 07","NoAssetTag","'+02:00","2026-03-24T16:07:41.000+02:00","svpadmin","Cloud Agent","8c6fd665-ea25-4a14-a2e8-7febb3fcff8d","2024-03-18T16:02:00.000+02:00","2026-04-22T11:41:26.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,SVP,Péage,Haute,High,Cloud Agent,Windows Server","633.0" +"341032622","336926772","vrpatbcao1.recette.adds","VRPATBCAO1","00:50:56:9C:19:23","10.45.10.195","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 68 e6 c5 5e 67 7f-60 27 69 00 df 7f 28 01","NoAssetTag","'+02:00","2026-04-07T15:31:00.000+02:00","Administrateur","Cloud Agent","7e4a0e85-f52e-4c97-8096-28936f2f77fa","2025-07-11T10:50:32.000+02:00","2026-04-22T11:34:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Administration_MS,DSI,Recette,BDD-SQL DYN,OS-WIN-SRV DYN","246.0" +"201783484","245012499","vrameastg2","","00:50:56:9c:17:d8, 00:50:56:9c:bb:2e","10.45.2.11,10.45.4.11","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c fc 36 79 54 6c ba-ca 12 cd 69 db a2 8b 97","No Asset Tag","'+02:00","2026-04-21T11:03:11.000+02:00","cybadmsys","Cloud Agent","be788eb3-66f5-44eb-a642-ec84a40a79e1","2023-11-30T16:16:30.000+02:00","2026-04-22T11:44:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","47.0" +"356275330","343235595","PCB18042.sanef.groupe","PCB18042","38:CA:84:52:39:1F","10.101.243.55","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HV5","","'+02:00","2026-04-21T14:39:13.000+02:00","SANEF\HERROUIN-ORANGE","Cloud Agent","7b1b8777-3fa4-4df9-b252-1776e3b39049","2025-09-02T10:01:55.000+02:00","2026-04-22T11:47:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"279155823","304713613","vrdecasas2.sanef.groupe","","00:50:56:82:7f:e4","10.45.1.5","fe80::250:56ff:fe82:7fe4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2b 63 fb 72 01 f6-47 5d 14 e5 e3 22 ca 28","No Asset Tag","'+02:00","2026-03-23T11:55:09.000+02:00","cybadmsys","Cloud Agent","4b70bd06-8ae2-45da-baee-f2f13c404985","2024-11-14T15:53:41.000+02:00","2026-04-22T11:30:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","54.0" +"388368806","357006395","PCB17647.sanef.groupe","PCB17647","F0:20:FF:9A:19:F6","10.205.0.54,192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVP","","'+02:00","2026-04-20T09:22:13.000+02:00","SANEF\guiheux","Cloud Agent","316865bc-811b-46a5-aa48-1666b689265d","2026-01-06T13:10:14.000+02:00","2026-04-22T11:54:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"202869826","245559410","viosapapp1.sanef.groupe","","00:50:56:90:3e:29","10.41.29.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 c9 cc 4b d1 aa 40-5e d3 90 16 07 fd 9b 1b","No Asset Tag","'+02:00","2026-02-16T11:43:08.000+02:00","cybadmbdd","Cloud Agent","c53e3b0e-dbdb-44c5-837b-aeab50fdfe98","2023-12-06T19:43:12.000+02:00","2026-04-22T12:01:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,Péage","140.0" +"356625275","343406227","PCB21098.sanef.groupe","PCB21098","D0:AD:08:AA:50:03","10.220.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FY","","'+02:00","2026-03-31T08:56:59.000+02:00","David.chaventre@sapn.fr","Cloud Agent","17f845a8-23a9-4532-8879-11b64ee37811","2025-09-03T13:51:36.000+02:00","2026-04-22T11:24:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"240051824","273691428","ls-bouville","LS-BOUVILLE","00:50:56:90:5A:4B","10.252.12.200","fe80::c8dc:5997:49f0:2241","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 10 19 0c 6b 75 8e 0f-e2 b1 a0 f4 c0 e9 42 75","NoAssetTag","'+02:00","2026-03-05T12:17:20.000+02:00","svpadmin","Cloud Agent","e05ddd1f-b450-4f53-b13d-b6466eaaa8c3","2024-05-29T11:02:01.000+02:00","2026-04-22T09:48:20.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Péage,OS-WIN-SRV DYN,SVP,Cloud Agent,Windows Server","508.0" +"175412357","229249002","vvbocs4ci2.sanef-rec.fr","","00:50:56:9c:28:55","10.45.6.7","fe80::250:56ff:fe9c:2855","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7d d4 67 db 36 a4-b2 20 38 1b 76 a4 90 b8","No Asset Tag","'+02:00","2026-03-09T11:21:57.000+02:00","cybsupsys","Cloud Agent","e5198541-430d-44e4-bc45-e454d68ee3b3","2023-06-22T10:40:04.000+02:00","2026-04-22T11:00:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,FreeFlow,Cloud Agent,Linux Server","143.0" +"376636656","351625364","PCB18260.sanef.groupe","PCB18260","5C:60:BA:59:E5:FA","10.200.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y9C","8CC2250Y9C","'+02:00","2026-04-01T08:51:49.000+02:00","SANEF\JOULAIN","Cloud Agent","deacb4c6-082b-4ace-86e5-a992d493d012","2025-11-14T14:51:33.000+02:00","2026-04-22T11:53:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"176097843","229734619","vvbooaboo2.sanef-rec.fr","","00:50:56:9c:38:43","10.45.6.77","fe80::250:56ff:fe9c:3843","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7696","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 31 06 3a 3d 3d 43-73 bb 58 b6 5b 60 c1 05","No Asset Tag","'+02:00","2026-03-10T17:14:03.000+02:00","cybsupsys","Cloud Agent","75335249-80f8-47bc-98d0-ea1d1ccf6fe1","2023-06-27T15:28:32.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow","140.0" +"362256073","345665238","PCB24200.sanef.groupe","PCB24200","30:E3:A4:D6:80:FD","10.255.1.132","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKP","","'+02:00","2026-04-20T14:05:43.000+02:00","SANEF\LEJOLLIOT","Cloud Agent","07c1fd99-abb0-4ec3-8461-c5984210231a","2025-09-23T12:18:21.000+02:00","2026-04-22T09:47:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"213849721","251124345","specmadpr2.sanef-int.adds","SPECMADPR2","08:F1:EA:76:B0:70","10.44.2.42","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Computers / Server","HPE ProLiant ML350 G10 Server","1","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","32297","HPE U41","CZJ95002KQ","","'+02:00","2026-01-26T15:07:25.000+02:00","Damon","Cloud Agent","a11eb395-9529-436a-b49e-2e917ebe89e6","2024-02-05T19:19:51.000+02:00","2026-04-22T09:47:41.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,BDD-SQL DYN,OS-WIN-SRV DYN,SCCM","521.0" +"356624693","343405612","PCB17805.sanef.groupe","PCB17805","28:C5:D2:9E:3E:C8","10.255.4.175,10.255.4.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4J","","'+02:00","2026-04-16T09:10:21.000+02:00","SANEF\DELATRE","Cloud Agent","e799e6cb-4b59-4a77-a6dc-421008c6ccba","2025-09-03T13:46:46.000+02:00","2026-04-22T10:27:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"175460796","229280307","vvbotcach2.sanef-rec.fr","","ce:99:89:14:9f:e6, 00:50:56:9c:91:57, 52:ea:5f:a9:20:e6, 9e:33:db:81:69:e3, 0a:e7:2e:8c:32:81, 9a:44:a6:b3:90:86, 6e:f1:e1:71:87:fe, ce:f6:b2:09:40:ae, fe:81:27:e9:b3:11","10.45.6.154,10.89.0.1","fe80::cc99:89ff:fe14:9fe6,fe80::250:56ff:fe9c:9157,fe80::50ea:5fff:fea9:20e6,fe80::9c33:dbff:fe81:69e3,fe80::8e7:2eff:fe8c:3281,fe80::9844:a6ff:feb3:9086,fe80::6cf1:e1ff:fe71:87fe,fe80::ccf6:b2ff:fe09:40ae,fe80::fc81:27ff:fee9:b311","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c8 1c 08 b4 fb 22-19 5e 0c bf ea d6 cd 38","No Asset Tag","'+02:00","2026-03-10T13:14:04.000+02:00","cybreconcile","Cloud Agent","659cee55-a9c2-4202-937d-3d0bf3b1a279","2023-06-22T16:51:38.000+02:00","2026-04-22T11:37:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,Recette,flux_libre,FreeFlow","140.0" +"324936733","330448379","vpstlbtel2.sanef-int.adds","VPSTLBTEL2","00:50:56:90:E3:08","10.41.13.53","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3453) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 78 e5 58 3d 04 8a-71 cc 17 a9 f6 4e 23 b9","NoAssetTag","'+02:00","2026-03-04T18:03:19.000+02:00","user_stl","Cloud Agent","ac8bd201-be19-424b-8d8a-0a1ac1de7456","2025-05-15T09:18:16.000+02:00","2026-04-22T11:46:07.000+02:00","64-Bit","2","SCA,VM,GAV","Systel,Production,Cloud Agent,BDD-SQL DYN,OS-WIN-SRV DYN","346.0" +"324439316","330242095","PCB23790.sanef.groupe","PCB23790","C8:6E:08:49:2D:A7","10.255.2.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H49","","'+02:00","2026-04-17T11:05:54.000+02:00","SANEF\micheln","Cloud Agent","a2469ff1-c6a5-4834-87fb-28e2a152e6da","2025-05-13T16:17:51.000+02:00","2026-04-22T09:47:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"269834129","299451295","SVP21060.sanef-int.adds","SVP21060","D0:AD:08:A3:7B:63","10.5.20.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWP","","'+02:00","2026-04-19T17:31:48.000+02:00","Superviseur","Cloud Agent","e91a7580-665c-430a-86ac-5520d854646b","2024-10-03T11:15:43.000+02:00","2026-04-22T09:47:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"322014778","329317303","PCB23727.sanef.groupe","PCB23727","C8:6E:08:48:C3:E9","10.205.0.39,192.168.1.75","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2N","","'+02:00","2026-04-13T14:12:10.000+02:00","SANEF\TOULOTTE","Cloud Agent","27873774-c9ed-4e36-85f5-13dcadeb0909","2025-05-05T10:53:37.000+02:00","2026-04-22T11:37:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","143.0" +"356632998","343419674","PCB17943.sanef.groupe","PCB17943","84:69:93:E1:89:9D","10.101.243.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724BQ","","'+02:00","2026-03-30T12:13:17.000+02:00","SANEF\DAVIDB","Cloud Agent","d9abb653-3806-4902-a953-542aaea19f91","2025-09-03T16:21:01.000+02:00","2026-04-22T10:18:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"312827606","325605227","vpgawgtw1.sanef.groupe","","00:50:56:90:64:a2","192.168.19.67,192.168.19.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0f fb 4d 00 1c 82-1c 5b c8 be 84 eb 2c 4f","No Asset Tag","'+02:00","2026-03-17T17:09:54.000+02:00","root","Cloud Agent","4dc116ec-ca5a-49b6-be94-dcba58afe9db","2025-04-01T16:29:23.000+02:00","2026-04-22T11:04:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","144.0" +"370189451","348792427","PCB25783.sanef.groupe","PCB25783","28:95:29:22:6B:6D","10.205.0.62,10.255.1.193","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSN","","'+02:00","2026-04-13T10:17:29.000+02:00","SANEF\ROCHE","Cloud Agent","ab3446a1-b0f4-4bf8-b7b6-cc28ce5ae7a2","2025-10-20T15:16:19.000+02:00","2026-04-22T11:44:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"332979745","333625721","vpsimaxsr1","VPSIMAXSR1","00:50:56:82:76:7E","192.168.230.31","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 93 38 f6 f5 1e 1d-10 bd 54 71 f4 2f 25 e1","NoAssetTag","'+02:00","2026-04-15T10:55:31.000+02:00","Administrateur","Cloud Agent","469e2ea9-7853-40a6-93ed-485d9331f141","2025-06-12T19:32:09.000+02:00","2026-04-22T09:46:31.000+02:00","64-Bit","4","SCA,VM,GAV","Cloud Agent,OS-WIN-SRV DYN,DEX,TAG-SRVEXPOSEINTERNET,XFB","24.0" +"280843816","305646175","PCB22511.sanef.groupe","PCB22511","D0:AD:08:AA:50:83","10.208.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L2","","'+02:00","2026-04-09T18:58:03.000+02:00","SANEF\nuyens","Cloud Agent","1e21d414-c732-4c3e-9a44-b18aee3c33c5","2024-11-20T18:41:58.000+02:00","2026-04-22T09:46:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"378363780","352445448","PSX18699.sanef-int.adds","PSX18699","30:13:8B:6C:5D:BE","10.200.40.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WG","","'+02:00","2026-04-14T13:01:27.000+02:00","UserSextan","Cloud Agent","891b8700-975a-476a-a6f6-3fd82ff69416","2025-11-21T18:18:54.000+02:00","2026-04-22T09:46:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"269936877","299502490","vragtatse1.recette.adds","VRAGTATSE1","00:50:56:9C:4B:EB","10.45.1.228","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c e3 6d 4b 6a 41 7a-f0 cf 93 be cb ca 75 75","NoAssetTag","'+02:00","2026-02-23T16:30:40.000+02:00","sos","Cloud Agent","5f44db17-6553-4751-bc6e-e8d3995af033","2024-10-03T19:50:53.000+02:00","2026-04-22T11:07:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,Recette","255.0" +"228421026","257494831","ls-chamant2","LS-CHAMANT2","00:50:56:90:18:39","10.41.2.25","fe80::857:ad43:2d18:2172","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 e3 5c 02 fd 31 6a-9d a8 89 8a e3 d2 b2 a0","NoAssetTag","'+02:00","2026-04-02T11:40:58.000+02:00","svpadmin","Cloud Agent","f3ffdfd5-e59a-46fd-b38e-d3c921a135ea","2024-04-08T11:15:56.000+02:00","2026-04-22T11:27:06.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,Péage,Production,High,VRF_PEAGE_DC,DEX","507.0" +"212764598","250647971","viaflperf1.sanef.groupe","","00:50:56:90:31:5e","192.168.22.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 db f0 ae 7a 40 aa-16 6d c0 a1 34 ab a0 52","No Asset Tag","'+02:00","2026-03-19T17:17:57.000+02:00","cybreconcile","Cloud Agent","b4c016af-9f63-4366-ae08-328deead2f01","2024-01-30T18:29:54.000+02:00","2026-04-22T11:53:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server,Production","142.0" +"221414626","254284745","vposapels2.sanef.groupe","","00:50:56:90:f9:15","10.41.20.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63887","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ab 73 a3 7d d0 1e-3f e5 88 b0 bf 5d fd fa","No Asset Tag","'+02:00","2026-02-26T12:41:06.000+02:00","cybadmsys","Cloud Agent","920d01ab-2f0d-419c-90ac-a814f489997e","2024-03-11T18:23:25.000+02:00","2026-04-22T11:28:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","DEX,Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production","144.0" +"324382600","330212480","PCB21312.sanef.groupe","PCB21312","30:F6:EF:A3:E3:82","10.205.0.66,10.255.4.196","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKB","","'+02:00","2026-04-20T10:03:35.000+02:00","SANEF\BERGERE","Cloud Agent","221490b8-17d4-4753-bdaa-5f28284f260a","2025-05-13T11:55:22.000+02:00","2026-04-22T09:46:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"416893750","367956474","vrzbxaprx2.sanef-rec.fr","","00:50:56:9c:de:1b","10.45.15.208","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3654","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 45 da d6 aa e0 cf-89 72 1b 4a ad 0c e0 f7","No Asset Tag","'+02:00","2026-04-16T12:36:02.000+02:00","cybintsys","Cloud Agent","62023821-1f5c-487c-869b-1db00aff7e86","2026-04-17T16:50:53.000+02:00","2026-04-22T09:46:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"320925287","328813405","PCB22773.sanef.groupe","PCB22773","D0:AD:08:A3:E7:A4","10.199.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLB","8CC3502YLB","'+02:00","2026-04-01T14:50:21.000+02:00","SANEF\kotula","Cloud Agent","6f1c157e-8264-4156-95ca-3ae3e154e3fb","2025-04-30T10:41:49.000+02:00","2026-04-22T09:45:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"317575147","327677038","PCB23781.sanef.groupe","PCB23781","6C:0B:5E:EE:A3:15","10.1.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H40","","'+02:00","2026-04-02T14:47:33.000+02:00","SANEF\HERROU","Cloud Agent","6c67249b-181f-4bbe-b42f-ca135ab941b3","2025-04-18T11:18:29.000+02:00","2026-04-22T11:19:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"322392766","329448179","PCB23629.sanef.groupe","PCB23629","6C:0B:5E:ED:A2:4B","10.200.30.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L88","","'+02:00","2026-03-30T18:25:05.000+02:00","SANEF\spruyt","Cloud Agent","77c9fe33-5296-487b-bdc1-31b980ace844","2025-05-06T13:51:14.000+02:00","2026-04-22T12:03:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"383456003","354466610","vpbotakpi1.sanef.groupe","","00:50:56:90:30:ef","10.41.23.30","fe80::250:56ff:fe90:30ef","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 9d 32 f3 bf 13 7f-b6 1e 57 c8 72 bd b3 18","No Asset Tag","'+02:00","2026-04-21T10:16:47.000+02:00","root","Cloud Agent","8884854a-42e2-4da4-bbf2-118f4d9d6f53","2025-12-12T13:08:00.000+02:00","2026-04-22T11:32:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","138.0" +"287954932","311552199","vrosapquo1.sanef-rec.fr","","00:50:56:90:21:62","10.100.16.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7696","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 d0 0a 2e 94 88 a6-92 48 b4 ac 8d ce 1a e0","No Asset Tag","'+02:00","2026-02-16T16:21:43.000+02:00","cybintsys","Cloud Agent","4daaa297-2dae-4663-83ef-ff78eb122691","2024-12-20T16:03:16.000+02:00","2026-04-22T11:37:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Péage","142.0" +"335498006","334626548","PCB24168.sanef.groupe","PCB24168","6C:0B:5E:FA:64:FB","10.1.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG45107MV","","'+02:00","2026-04-22T07:57:06.000+02:00","SANEF\MARGOT","Cloud Agent","b00f29e6-ab8a-45d1-89e9-a2ca71a0884d","2025-06-23T13:01:10.000+02:00","2026-04-22T11:46:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"342493696","337558317","PCB17764.sanef.groupe","PCB17764","28:C5:D2:9F:C4:32","10.255.3.200","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y4Y","","'+02:00","2026-04-20T09:19:05.000+02:00","SANEF\DUFOUR","Cloud Agent","547f1f78-8112-4325-9fc3-ad254ecbad2a","2025-07-17T11:36:54.000+02:00","2026-04-22T11:49:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","257.0" +"175464703","229281780","vvbotarmq2.sanef-rec.fr","","8e:75:d4:ea:8a:13, ce:41:d0:99:97:2d, 00:50:56:9c:38:22, 8e:42:e1:89:23:73, ce:b5:c5:81:2b:f3, e6:02:b2:64:d1:3f","10.45.6.156,10.89.0.1","fe80::8c75:d4ff:feea:8a13,fe80::cc41:d0ff:fe99:972d,fe80::250:56ff:fe9c:3822,fe80::8c42:e1ff:fe89:2373,fe80::ccb5:c5ff:fe81:2bf3,fe80::e402:b2ff:fe64:d13f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 42 8e 55 99 ed 07-4b d7 16 8e 87 8d 2a f0","No Asset Tag","'+02:00","2026-03-10T11:11:19.000+02:00","cybreconcile","Cloud Agent","b254d0ab-cce8-41d1-a5b2-08d923fb4726","2023-06-22T17:09:38.000+02:00","2026-04-22T11:38:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,flux_libre,Recette,Flux Libre","140.0" +"324673028","330322273","PCB20650.sanef.groupe","PCB20650","BC:0F:F3:3D:D7:35","10.100.39.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQD","","'+02:00","2026-04-07T10:14:16.000+02:00","SANEF\MACHADOF","Cloud Agent","15964aaa-e0b4-4f77-bdd1-cd521e5ed075","2025-05-14T10:25:49.000+02:00","2026-04-22T11:32:38.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Workstation,Cloud Agent,Forescout","292.0" +"333160313","","PCB24037.sanef.groupe","PCB24037","6C:0B:5E:F8:E7:4D","10.255.1.208,10.105.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDS","","'+02:00","2026-04-07T09:08:34.000+02:00","SANEF\ducrocq","Cloud Agent","f6611963-5c84-455b-8bfe-f4c5e46dcdc5","2025-06-13T11:31:48.000+02:00","2026-04-22T09:45:04.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"311159768","330493472","vrosapkib1.sanef-rec.fr","","00:50:56:9c:69:75","10.45.9.73","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5a c3 59 a2 79 00-c7 92 48 57 11 fd 3a 9a","No Asset Tag","'+02:00","2026-02-16T11:13:38.000+02:00","cybsecope","Cloud Agent","eb2ff29b-686b-42f6-89ee-6ef7d53596e8","2025-03-26T17:24:27.000+02:00","2026-04-22T11:49:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,Recette","58.0" +"211148562","249951676","vpbotaapm1.sanef.groupe","","00:50:56:90:70:f7, a2:19:f5:d7:54:80, 6e:3a:41:f6:71:f9","10.41.23.25,10.89.0.1","fe80::250:56ff:fe90:70f7,fe80::a019:f5ff:fed7:5480,fe80::6c3a:41ff:fef6:71f9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1c 3a c4 ba eb 22-a7 69 07 ce d9 f8 c1 df","No Asset Tag","'+02:00","2026-04-16T11:59:37.000+02:00","cybreconcile","Cloud Agent","f4cafacf-be16-46f1-95e5-3fc235f24cb3","2024-01-22T16:37:41.000+02:00","2026-04-22T11:17:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,flux_libre,Production,log4j","337.0" +"330692278","333625849","vdrepapbi1.recette.adds","VDREPAPBI1","00:50:56:9C:AB:85","10.45.7.170","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","65535","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 64 01 97 0e 1c 2c-2e 53 b5 03 ee 5c b3 e0","NoAssetTag","'+02:00","2026-03-17T12:15:25.000+02:00","Administrateur","Cloud Agent","6682e61a-88ba-42ae-9d81-b07a220b0d6e","2025-06-04T10:20:37.000+02:00","2026-04-22T11:28:44.000+02:00","64-Bit","2","SCA,VM,GAV","PowerBI,OS-WIN-SRV DYN,Cloud Agent,Recette","61.0" +"331142306","","PCB23692.sanef.groupe","PCB23692","6C:0B:5E:EE:A3:6C","10.101.243.118","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBQ","","'+02:00","2026-04-21T13:47:09.000+02:00","SANEF\GALLIGANI","Cloud Agent","3c2e872f-efb0-44c0-bd4b-838432fe61f8","2025-06-05T14:11:32.000+02:00","2026-04-22T09:44:30.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"176398964","229973932","vpdaibana2","VPDAIBANA2","00:50:56:90:BC:A7","10.41.70.21","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 92 e2 4e 3f ec dd-c7 40 06 a4 7e 9f 74 4c","NoAssetTag","'+02:00","2026-04-16T10:14:26.000+02:00","ecoad-ext","Cloud Agent","fae75f43-e8f7-4767-8c84-b24022e7cadb","2023-06-29T11:09:42.000+02:00","2026-04-22T09:44:29.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,DAI","352.0" +"231862030","259510243","vrcybapvwa2","VRCYBAPVWA2","00:50:56:9C:CF:C5","10.45.11.132","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 6a 1d 94 66 87 ae-00 79 b4 1d b1 b7 97 74","NoAssetTag","'+02:00","2026-04-16T11:06:25.000+02:00","Administrator","Cloud Agent","da4e978e-35d7-47ee-bc41-455419bc42bd","2024-04-23T18:08:30.000+02:00","2026-04-22T09:44:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Recette,OS-WIN-SRV DYN","12.0" +"399973106","361323512","PCB22296.sanef.groupe","PCB22296","D0:AD:08:A3:7D:E7","10.152.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYT","","'+02:00","2026-04-08T15:59:32.000+02:00","SANEF\belier","Cloud Agent","416f7d39-40b5-40a2-b318-764435090480","2026-02-13T11:09:11.000+02:00","2026-04-22T09:44:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"377517554","352084301","PCB24218.sanef.groupe","PCB24218","10:B6:76:95:8B:BB","10.100.39.94","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZX","","'+02:00","2026-04-20T15:22:46.000+02:00","SANEF\KUREK","Cloud Agent","de39b5b2-4322-4b97-a864-6eeca84a7567","2025-11-18T18:07:01.000+02:00","2026-04-22T09:44:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"208784479","248752401","vibotasim1.sanef.groupe","","00:50:56:90:1f:84","10.41.23.156","fe80::250:56ff:fe90:1f84","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 96 01 67 53 72 c4-2b dc dc 02 45 eb f4 c1","No Asset Tag","'+02:00","2026-03-18T10:13:13.000+02:00","cybreconcile","Cloud Agent","fb0e72e8-aded-416c-b660-261bdf842dae","2024-01-10T13:43:44.000+02:00","2026-04-22T11:23:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,FreeFlow,flux_libre,Flux Libre","141.0" +"334971811","","MAC15905","MAC15905","a0:78:17:60:a9:0a","10.255.1.18","fe80::c77:5fc0:61c5:eb23","Mac / Client","Apple macOS Tahoe (26.3.1)","26.3","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFDX09HQ05N","","'+02:00","2026-03-29T14:41:53.000+02:00","Julien.CASTRESSAINTMARTIN","Cloud Agent","392aae5f-bb27-46c0-8966-24ab6202b939","2025-06-20T12:55:58.000+02:00","2026-04-22T09:43:52.000+02:00","arm64_M1","2","GAV","Cloud Agent","0.0" +"356915896","343535525","PCB18028.sanef.groupe","PCB18028","38:CA:84:52:09:05","10.101.243.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSC","","'+02:00","2026-03-31T15:53:53.000+02:00","hugo.neivaferreira@sanef.com","Cloud Agent","aa1370f2-a8ea-41cb-9b24-2e857ccce033","2025-09-04T15:42:00.000+02:00","2026-04-22T11:22:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"165493476","221784822","vriadapki2.recette.adds","VRIADAPKI2","00:50:56:82:1C:13","10.45.0.136","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 91 a7 0c af e2 43-14 5d 5e e9 ca 12 51 dd","NoAssetTag","'+02:00","2026-04-21T13:38:16.000+02:00","RECETTE\A05604","Cloud Agent","28cf6407-7bd9-49f5-965b-d848f7e9ca5f","2023-04-05T16:05:29.000+02:00","2026-04-22T11:32:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Gestion_PKI,Recette","230.0" +"295273598","317083541","vpdepaapp1.sanef.groupe","","00:50:56:90:ec:98","10.41.40.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 66 3d ef bb 75 ab-4e 20 b2 12 90 56 84 7a","No Asset Tag","'+02:00","2026-01-21T16:30:26.000+02:00","cybreconcile","Cloud Agent","b198f1a2-82fc-49d5-beff-3418a84e57b2","2025-01-28T12:18:30.000+02:00","2026-04-22T10:58:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,Production","140.0" +"347124460","339144373","PCB18041.sanef.groupe","PCB18041","64:D6:9A:1D:39:CC","10.205.0.154,10.207.2.246","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HT1","","'+02:00","2026-04-22T08:38:00.000+02:00","SANEF\SILVERT-ext","Cloud Agent","dbeceb51-7da4-4724-accc-280a2bf99c82","2025-07-30T10:27:51.000+02:00","2026-04-22T11:50:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"409523114","364925410","PCB23608.sanef.groupe","PCB23608","C8:6E:08:88:FD:51","10.205.0.29,10.255.3.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5P","","'+02:00","2026-04-16T10:32:55.000+02:00","SANEF\DALMOLIN","Cloud Agent","f094a69c-3f1d-42c4-af95-981568fec492","2026-03-18T14:54:08.000+02:00","2026-04-22T11:23:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"162617883","216919483","VRBURXBAN8.sanef.groupe","VRBURXBAN8","00:50:56:82:F8:33","10.30.4.8","fe80::ff5d:1c2d:9620:4b99","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 91 2d 5b 8c c0 a5-7a b8 e7 d0 df f6 d2 ec","NoAssetTag","'+02:00","2026-04-21T11:51:36.000+02:00","SANEF\BILLARD-ext","Cloud Agent","42628449-cf59-4bcf-856e-873806b51575","2023-03-14T13:59:03.000+02:00","2026-04-22T09:43:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","348.0" +"326335081","","PCB21127.sanef.groupe","PCB21127","E4:60:17:C5:07:1F","10.255.3.221","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HG","","'+02:00","2026-04-01T09:16:25.000+02:00","SANEF\BOURMOU-ext","Cloud Agent","07bd0a25-ac65-48df-af75-d7b8e397f675","2025-05-21T16:15:40.000+02:00","2026-04-22T09:43:15.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"371884493","349554080","PCB17064.sanef.groupe","PCB17064","DC:21:48:9C:69:54","10.255.1.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","8","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.06.03","5CD1431R1W","","'+02:00","2026-03-29T09:30:41.000+02:00","SANEF\DWORACZEK","Cloud Agent","747685fc-7ed2-46be-b1ea-32935c9ace18","2025-10-27T09:12:39.000+02:00","2026-04-22T11:29:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"351409873","341166564","VRBURXBAN2.sanef.groupe","VRBURXBAN2","00:50:56:82:8D:DC","10.30.4.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 be 29 0d ab 03 8f-49 a9 00 7f 10 e0 98 e1","NoAssetTag","'+02:00","2026-04-21T11:08:27.000+02:00","","Cloud Agent","322d53a3-87ff-4fff-babc-d9b58820e60a","2025-08-14T15:26:07.000+02:00","2026-04-22T09:43:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","350.0" +"387139793","356492715","vmdtrac12.recette.adds","VMDTRAC12","00:50:56:9C:BB:27","10.45.17.14","fe80::780d:e6c9:7935:6665","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 4f f9 a9 28 18 c4-8d 69 47 45 f3 8d 3d aa","NoAssetTag","'+02:00","2026-04-16T17:36:05.000+02:00","supwindev","Cloud Agent","84585cba-cbe9-441e-bb4c-48da2ffa7e26","2025-12-31T10:55:05.000+02:00","2026-04-22T09:43:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"231863508","259513855","vrcybacpm1.sanef-rec.fr","VRCYBACPM1","00:50:56:9C:6B:50","10.45.11.67","fe80::c481:5526:59fd:e494","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c d9 3a 8d 3b 63 2a-b7 58 0d 85 0f d9 5e 31","NoAssetTag","'+02:00","2026-04-15T16:08:02.000+02:00","Administrator","Cloud Agent","2da285c5-1968-4081-a7ec-4a9bc998cf16","2024-04-23T18:43:25.000+02:00","2026-04-22T09:43:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN","12.0" +"379119003","352759559","PSX18695.sanef-int.adds","PSX18695","30:13:8B:6C:5D:73","10.100.40.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473W6","","'+02:00","2026-04-19T13:23:55.000+02:00","UserSextan","Cloud Agent","f269e86c-9772-4306-a70b-4736cd12e533","2025-11-25T12:26:44.000+02:00","2026-04-22T09:42:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"395117158","359312619","PCB18629.sanef.groupe","PCB18629","38:CA:84:DB:E6:F1","10.4.31.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WDT","","'+02:00","2026-04-17T20:48:03.000+02:00","SANEF\prevot","Cloud Agent","0e7b1db6-ec2c-4a3c-900f-defa73f3077f","2026-01-26T16:37:45.000+02:00","2026-04-22T09:42:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","336.0" +"234568691","262079565","vrechatre2.sanef-rec.fr","","00:50:56:9c:ff:de","10.45.11.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 32 85 b3 6a 36 a8-f5 e9 8e 02 f7 2b cb 10","No Asset Tag","'+02:00","2026-03-25T13:17:02.000+02:00","cybadmsys","Cloud Agent","6bde38f9-f7ad-4c00-85a8-36beeaab7df9","2024-05-06T12:36:30.000+02:00","2026-04-22T09:42:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,TALEND","217.0" +"323988926","","PCB23689.sanef.groupe","PCB23689","C8:6E:08:8A:51:06","10.205.0.193,192.168.1.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8N","","'+02:00","2026-04-21T11:24:25.000+02:00","SANEF\quantin","Cloud Agent","7b19065c-ca3e-43bc-944b-956bf5ab18b8","2025-05-12T10:09:49.000+02:00","2026-04-22T09:42:28.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"352994824","341706644","PCM22309.sanef.groupe","PCM22309","D0:AD:08:A3:7D:E5","10.252.14.15","fe80::f47d:97fb:630:ef4d","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYZ","","'+02:00","2026-02-25T09:47:02.000+02:00","SANEF\GOUT-ext","Cloud Agent","0dc9fa60-d0c2-4ecd-8530-121d8774046b","2025-08-20T10:14:19.000+02:00","2026-04-22T11:30:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"332295040","333860643","vpameakfq1.sanef.groupe","","00:50:56:90:62:92","10.100.16.21","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","5681","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e1 e9 91 f4 4a 8f-b8 31 a2 d8 e7 01 2a 63","No Asset Tag","'+02:00","2025-10-29T11:46:08.000+02:00","cybreconcile","Cloud Agent","0ba58b85-0cc2-4263-abfb-18692205ac40","2025-06-10T14:22:25.000+02:00","2026-04-22T11:37:50.000+02:00","x86_64","4","SCA,VM,GAV","Linux Server,Cloud Agent,Sextan,Production,OS-LIN-SRV DYN","278.0" +"307154463","323299961","PCB21171.sanef.groupe","PCB21171","D0:AD:08:E4:C1:60","192.168.1.230,10.205.0.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HWB","","'+02:00","2026-04-15T16:00:46.000+02:00","SANEF\szpigiel","Cloud Agent","f6d8cb26-b18b-4162-a789-c34aa817125a","2025-03-11T17:00:09.000+02:00","2026-04-22T11:50:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"190479231","239156296","vpecmapss1.sanef-int.adds","VPECMAPSS1","00:50:56:8D:B3:FE","10.44.2.36","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-56 4d fa a7 67 09 68 75-81 3a 41 00 40 bd 48 d2","NoAssetTag","'+02:00","2026-02-23T09:55:48.000+02:00","SANEF-INT\b03987","Cloud Agent","0faebcb6-12df-4725-9f5a-198c856fbae4","2023-09-29T08:56:51.000+02:00","2026-04-22T09:41:54.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,BDD-SQL DYN,SCCM,Cloud Agent,Windows Server,DSI","504.0" +"366118896","347201619","PCB24143.sanef.groupe","PCB24143","80:C0:1E:15:A6:44","10.101.243.130,192.168.1.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook X G1i Notebook","8","2200","Intel(R) Core(TM) Ultra 7 258V","32241","HP X90 Ver. 01.01.07","5CG5112754","","'+02:00","2026-04-20T09:31:54.000+02:00","SANEF\debauge","Cloud Agent","f520c0cd-0f98-4f73-8a44-af98994af430","2025-10-07T13:30:37.000+02:00","2026-04-22T12:03:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"291945704","314534777","vpdaibctc2","VPDAIBCTC2","00:50:56:90:40:53","10.41.70.11","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 76 d9 25 24 77 ca-89 0c 0a 9c 65 e6 29 18","NoAssetTag","'+02:00","2026-04-16T16:15:08.000+02:00","Administrateur","Cloud Agent","32ecbe33-f510-47bb-a602-4de37110e091","2025-01-13T11:26:35.000+02:00","2026-04-22T09:41:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,BDD-POS DYN,OS-WIN-SRV DYN","235.0" +"340753145","336818891","SVP21708.sanef-int.adds","SVP21708","D0:AD:08:A2:AE:5B","10.82.0.248","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","16016","HP V74 Ver. 01.05.05","5CD34764FS","","'+02:00","2026-03-17T12:01:00.000+02:00","Superviseur","Cloud Agent","28858ecd-1889-4d16-a838-1c4ffbe1ede4","2025-07-10T13:47:33.000+02:00","2026-04-22T09:41:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"112571236","180424755","vmrgmao7.sanef.groupe","VMRGMAO7","00:50:56:82:61:86","10.43.255.15","","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21013) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 65 fe 25 53 63 29-7b 3b 61 3e 88 a3 b4 89","NoAssetTag","'+02:00","2026-03-03T15:14:44.000+02:00","SANEF\VANWYNSBERGHE","Cloud Agent","26714801-570a-4058-937a-1e743c199724","2022-02-07T11:19:48.000+02:00","2026-04-22T09:41:35.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Obsolete,Windows Server,Cloud Agent,DSI,OS-WIN-SRV DYN,VRF_INCONNUE,COSWIN","517.0" +"173084420","227656196","vdbocsman1.sanef-rec.fr","","00:50:56:9c:eb:ee","10.45.6.38","fe80::250:56ff:fe9c:ebee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c ce 2d 5c dd 36 8f-71 60 71 45 22 04 76 90","No Asset Tag","'+02:00","2026-03-10T10:22:32.000+02:00","cybadmbdd","Cloud Agent","813a675e-eaf7-44bd-a290-c4894857ae76","2023-06-05T15:56:38.000+02:00","2026-04-22T11:24:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,FreeFlow","334.0" +"395298641","359403738","PCB20618.sanef.groupe","PCB20618","BC:0F:F3:3D:28:5D","10.101.243.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DS9","","'+02:00","2026-03-25T10:09:07.000+02:00","SANEF\CORMERAIS","Cloud Agent","e212ff45-2c4b-4dcf-9616-79389a18e745","2026-01-27T12:26:59.000+02:00","2026-04-22T11:01:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"393273466","358566980","PCB21198.sanef.groupe","PCB21198","D0:AD:08:AA:50:A9","10.220.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M9","","'+02:00","2026-04-08T15:22:41.000+02:00","Marie.DONAT@sapn.fr","Cloud Agent","a44c9b71-83f5-4d7a-a5b4-1c2c1132a43e","2026-01-19T09:51:14.000+02:00","2026-04-22T11:46:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"175948571","229617188","vvbotbtsd1.sanef-rec.fr","","02:41:67:e4:3b:ed, 2e:fa:be:db:1c:f8, 52:d8:68:2d:9a:48, 8e:c8:a4:02:5d:40, ee:9b:02:11:12:7d, 00:50:56:9c:1f:30, b2:2f:5a:a5:4f:d8, f6:87:00:c4:0a:9f, b6:17:1d:64:31:df, 36:56:d2:92:f6:cf, ba:0d:fe:6c:39:64","10.45.6.139,10.89.0.1","fe80::41:67ff:fee4:3bed,fe80::2cfa:beff:fedb:1cf8,fe80::50d8:68ff:fe2d:9a48,fe80::8cc8:a4ff:fe02:5d40,fe80::ec9b:2ff:fe11:127d,fe80::250:56ff:fe9c:1f30,fe80::b02f:5aff:fea5:4fd8,fe80::f487:ff:fec4:a9f,fe80::b417:1dff:fe64:31df,fe80::3456:d2ff:fe92:f6cf,fe80::b80d:feff:fe6c:3964","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c b8 91 d0 d5 c4 33-17 bd 50 00 6f 9a 7d ad","No Asset Tag","'+02:00","2026-03-12T16:23:25.000+02:00","cybreconcile","Cloud Agent","5cf7bbf8-42a1-4971-a80f-3c5db5c78d12","2023-06-26T16:30:04.000+02:00","2026-04-22T11:27:53.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,flux_libre,Recette","142.0" +"322101853","329345002","PCB23651.sanef.groupe","PCB23651","C8:6E:08:8A:3C:07","10.200.31.71,10.255.4.141","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6M","","'+02:00","2026-03-30T17:51:59.000+02:00","SANEF\audoynaud","Cloud Agent","891e6304-73ec-4f28-be7f-e7ac25431454","2025-05-05T15:59:23.000+02:00","2026-04-22T11:38:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"407131864","363955154","vrpctatsf1.recette.adds","VRPCTATSF1","00:50:56:9C:04:39","10.45.13.196","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","131071","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 8b ca 9d d9 ef fa-19 87 0e 67 42 85 1b 64","NoAssetTag","'+02:00","2026-03-09T16:00:10.000+02:00","Administrator","Cloud Agent","e754a9b1-08b0-46d0-a304-3ce6cf475b1f","2026-03-09T16:04:00.000+02:00","2026-04-22T11:28:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","253.0" +"335470917","334615702","PCB24177.sanef.groupe","PCB24177","24:FB:E3:F3:0A:4D","10.203.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XF","","'+02:00","2026-03-30T12:04:24.000+02:00","SANEF\DUBOISF","Cloud Agent","7dd3c763-8695-4c08-83ab-f8b1c7bd112d","2025-06-23T11:12:01.000+02:00","2026-04-22T11:00:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"191624499","239854413","VRPATBL2R1.recette.adds","VRPATBL2R1","00:50:56:9C:4C:5A","10.45.10.131","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","32767","Phoenix Technologies LTD 6.00","VMware-42 1c 26 1e 30 7e 44 e6-96 15 d3 23 17 d4 d7 59","NoAssetTag","'+02:00","2026-04-08T16:15:13.000+02:00","recette.adds\SBP01862@recette","Cloud Agent","89c57ff6-17ab-4156-89a5-6f9e5a8ff5af","2023-10-05T17:15:37.000+02:00","2026-04-22T11:35:15.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DFIN,L2R,OS-WIN-SRV DYN,Recette","367.0" +"340414768","","PCB17794.sanef.groupe","PCB17794","28:C5:D2:9E:44:E5","10.101.243.221,10.255.1.206","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y43","","'+02:00","2026-04-15T14:11:34.000+02:00","SANEF\GALLAIS","Cloud Agent","885919f8-573b-4b96-b0a7-e9c7172642c2","2025-07-09T11:44:56.000+02:00","2026-04-22T09:41:06.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"322005791","329314332","PCB23642.sanef.groupe","PCB23642","C8:6E:08:8A:58:0E","10.205.0.77,192.168.1.30","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7Q","","'+02:00","2026-04-20T08:41:33.000+02:00","SANEF\amaranthe","Cloud Agent","42a2e3e8-d909-415c-92b5-35f41d61c2dc","2025-05-05T10:16:18.000+02:00","2026-04-22T11:25:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"323205153","329824071","vpgawamft2.sanef.groupe","","00:50:56:90:3d:96","10.42.16.17","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e5 4a 4a aa 88 3a-5d bb 57 53 ab 3e 7d b7","No Asset Tag","'+02:00","2026-02-12T15:49:59.000+02:00","cybreconcile","Cloud Agent","afc19412-f025-444a-9f53-4263b507df01","2025-05-09T15:24:02.000+02:00","2026-04-22T10:20:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","142.0" +"377507123","352079657","PCB24046.sanef.groupe","PCB24046","6C:0B:5E:F8:D8:DA","10.149.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDK","","'+02:00","2026-03-29T17:08:59.000+02:00","SANEF\BLANC","Cloud Agent","6cf2df55-88c9-4bdc-8138-1a873258329a","2025-11-18T17:10:45.000+02:00","2026-04-22T09:40:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"346242039","339004849","PCB25861.sanef.groupe","PCB25861","28:95:29:1B:40:59","10.101.243.48,10.255.3.187","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVD","","'+02:00","2026-04-14T08:40:05.000+02:00","SANEF\BOYERCHAMMARD","Cloud Agent","733cac01-96c8-4b77-a9e1-de2459577df7","2025-07-29T12:30:59.000+02:00","2026-04-22T09:40:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"374692768","350733652","PCB22506.sanef.groupe","PCB22506","D0:AD:08:AA:4F:C5","10.208.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764CY","","'+02:00","2026-04-01T09:08:28.000+02:00","SANEF\treton","Cloud Agent","bc038960-2d2d-437a-bedc-28597f254102","2025-11-06T15:07:55.000+02:00","2026-04-22T09:40:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"339094295","336780150","vpecmardp1.sanef-int.adds","VPECMARDP1","00:50:56:94:95:1D","10.44.6.227","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 14 6b 48 db 0a c9 8b-72 49 c1 e1 ae 72 e8 db","NoAssetTag","'+02:00","2026-02-23T09:51:29.000+02:00","Administrateur","Cloud Agent","cba11268-64a6-426f-ac1f-9a90e92a916a","2025-07-04T10:45:45.000+02:00","2026-04-22T09:40:02.000+02:00","64-Bit","2","SCA,VM,GAV","Cloud Agent,OS-WIN-SRV DYN","345.0" +"376647924","351625620","PCV21553.sanef-int.adds","PCV21553","D0:AD:08:A3:7B:53","10.12.7.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YRN","","'+02:00","2026-03-20T01:11:02.000+02:00","Operateur","Cloud Agent","77e1c5c4-81d2-4b64-ac56-b98c86560d31","2025-11-14T14:54:08.000+02:00","2026-04-22T09:39:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"366884514","347537076","vrpataels1.sanef.groupe","","00:50:56:82:96:c5","10.43.255.22","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 fa 90 b2 b5 0c 4f-dd 7e e0 1a 8c 11 f2 21","No Asset Tag","'+02:00","2026-03-31T11:25:48.000+02:00","cybastsys","Cloud Agent","f13ef54f-555f-491a-a2f2-4ba0372319f4","2025-10-09T12:49:47.000+02:00","2026-04-22T11:07:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN","255.0" +"352438899","341572028","PCB25849.sanef.groupe","PCB25849","F8:ED:FC:AA:95:9D","10.101.243.172","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSW","","'+02:00","2026-04-20T09:29:34.000+02:00","SANEF\MARS","Cloud Agent","8430323a-0821-42e8-a8d2-e0a520d12634","2025-08-19T09:47:40.000+02:00","2026-04-22T10:59:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","59.0" +"358634791","344169679","VMMDAIC1.sanef-int.adds","VMMDAIC1","00:50:56:90:7C:85","10.41.70.250","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 9b ad 45 e3 94 66-d2 97 22 27 20 f8 fe e8","NoAssetTag","'+02:00","2026-04-16T16:42:14.000+02:00","DAIUSER","Cloud Agent","1729c81a-3499-4fd4-80e2-00965b8b78ee","2025-09-10T15:37:50.000+02:00","2026-04-22T09:39:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"213848992","251124342","srtrabgas1.sanef.groupe","","50:65:f3:6e:90:04","10.45.1.66","fe80::5265:f3ff:fe6e:9004","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL160 G9 Server","8","3000","Intel(R) Xeon(R) CPU E5-2623 v3 @ 3.00GHz","47830","HP U20 08/29/2024","CZ264901HZ","","'+02:00","2026-01-13T16:00:27.000+02:00","cybsecope","Cloud Agent","197d25c3-7ab3-4332-b0d9-0574a5bb5581","2024-02-05T19:20:11.000+02:00","2026-04-22T11:08:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Gaspar,DEX","507.0" +"311171805","330493461","vrgawamft1.sanef-rec.fr","","00:50:56:9c:95:57","10.45.14.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d1 e1 af 6c 3f da-69 f6 24 76 4c 7f 27 47","No Asset Tag","'+02:00","2026-02-11T11:47:00.000+02:00","root","Cloud Agent","52e66d02-c804-4d11-b693-4f48cda50a88","2025-03-26T18:36:28.000+02:00","2026-04-22T11:27:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Plateforme d'échange,Recette,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","59.0" +"165485951","221778780","vriadapki3.recette.adds","VRIADAPKI3","00:50:56:82:2C:76","10.45.0.137","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 d1 12 fd 86 93 63-38 f2 39 e0 6e 47 a8 7b","NoAssetTag","'+02:00","2026-04-20T15:59:18.000+02:00","Administrateur","Cloud Agent","0f554755-f9ed-4346-b321-aba646da120f","2023-04-05T15:31:18.000+02:00","2026-04-22T11:31:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Gestion_PKI,DSI,Recette,OS-WIN-SRV DYN","230.0" +"346728573","339070705","PCB25859.sanef.groupe","PCB25859","28:95:29:1B:32:71","10.205.0.73,192.168.1.236","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV5","","'+02:00","2026-04-15T08:48:39.000+02:00","SANEF\sissoko","Cloud Agent","a329ac64-0499-4d44-a136-0e0f1d2f161a","2025-07-29T17:07:59.000+02:00","2026-04-22T11:54:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"342188071","337429972","PCB21082.sanef.groupe","PCB21082","E0:C2:64:59:D7:9C","10.205.0.108,192.168.0.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD336NWFD","","'+02:00","2026-04-17T13:37:03.000+02:00","fred.polomack-ext@sanef.com","Cloud Agent","99871ba0-2d81-4ab7-93e0-11baba5687c6","2025-07-16T10:14:41.000+02:00","2026-04-22T11:25:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"150015500","205336038","PCB17214.sanef.groupe","PCB17214","50:81:40:B8:5F:46","10.4.31.68","fe80::83bf:c53c:a206:f14d","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.19.00","5CG13365JN","","'+02:00","2026-04-02T09:31:36.000+02:00","SANEF\leclercqh","Cloud Agent","a5f72c82-347f-4aef-9c89-e804135a16fa","2022-11-30T11:30:14.000+02:00","2026-04-22T10:58:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,VRF_INCONNUE","350.0" +"331437541","","PCB21160.sanef.groupe","PCB21160","F0:20:FF:9A:ED:4A","10.255.3.216","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HWG","","'+02:00","2026-04-22T09:21:59.000+02:00","SANEF\VIVIER","Cloud Agent","166ce361-e0ec-445f-a0aa-3f5e15d8d89c","2025-06-06T14:50:16.000+02:00","2026-04-22T09:39:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"385548399","355733594","PCB24208.sanef.groupe","PCB24208","10:B6:76:97:D4:B8","10.4.31.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKH","","'+02:00","2026-04-14T09:49:16.000+02:00","SANEF\kubiak-ext","Cloud Agent","6dec3e21-d59c-4b44-a5fd-2e88bbeaa07f","2025-12-22T12:54:51.000+02:00","2026-04-22T11:09:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"240161242","273850183","SVP20958.sanef-int.adds","SVP20958","BC:0F:F3:88:FD:3F","10.192.12.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LM4","","'+02:00","2026-04-21T08:26:36.000+02:00","Superviseur","Cloud Agent","c8cfc561-3a08-4ac1-b74b-1adedc8c59c3","2024-05-29T13:43:43.000+02:00","2026-04-22T11:23:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"383452162","354460837","vibotakpi1.sanef.groupe","","00:50:56:90:9e:23","10.41.23.146","fe80::250:56ff:fe90:9e23","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 f3 7b a7 73 58 8d-8e 29 5e aa 27 9c 75 db","No Asset Tag","'+02:00","2026-03-19T12:33:01.000+02:00","cybreconcile","Cloud Agent","93bf39d1-da0d-4937-ad7a-b1dd2d75a698","2025-12-12T11:34:52.000+02:00","2026-04-22T11:27:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Linux Server,OS-LIN-SRV DYN,Cloud Agent","138.0" +"322401949","329478770","PCB23599.sanef.groupe","PCB23599","C8:6E:08:8A:45:49","10.205.0.136,192.168.1.121","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8B","","'+02:00","2026-04-08T13:29:11.000+02:00","SANEF\PIOT","Cloud Agent","1dabf4b8-a27b-414f-9108-664ec5f5526b","2025-05-06T16:42:37.000+02:00","2026-04-22T11:14:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"129308577","191928808","vpaiiafsso1.sanef.groupe","VPAIIAFSSO1","00:50:56:82:2E:55","10.30.11.2","fe80::d8e9:555a:c54:bb6c","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","Phoenix Technologies LTD 6.00","VMware-56 4d 51 20 68 59 be 79-3b cd f7 66 2d d8 b0 88","NoAssetTag","'+02:00","2026-02-26T13:06:02.000+02:00","VPAIIAFSSO1\CYBADMSYS","Cloud Agent","db54025f-0a89-43db-8c14-bffd9949d045","2022-06-27T10:52:28.000+02:00","2026-04-22T09:38:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,Production,Sécurité IT,Sans,VRF_INCONNUE,FSSO,Obsolete","348.0" +"322003769","329311108","PCB23696.sanef.groupe","PCB23696","6C:0B:5E:EE:EC:3B","10.100.39.165","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6L","","'+02:00","2026-03-29T09:30:10.000+02:00","sylvain.Georges@sanef.com","Cloud Agent","0c2d226c-207e-4975-83ff-474632146fb7","2025-05-05T09:46:30.000+02:00","2026-04-22T11:01:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"397495752","360376398","vmmvsccad4.sanef-int.adds","VMMVSCCAD4","00:50:56:90:8A:D9","10.41.7.234","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 35 ca 74 e2 93 97-42 00 8e 83 e7 f0 e8 7c","NoAssetTag","'+02:00","2026-02-05T12:58:31.000+02:00","Operateur","Cloud Agent","5c13da18-5b32-4c03-94c8-f594c07b7cf1","2026-02-04T18:57:07.000+02:00","2026-04-22T11:20:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"329426618","","MTR-4J775R3","MTR-4J775R3","90:8D:6E:8E:1D:3C","10.101.246.203","","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","4J775R3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","a2667693-7c3e-45a3-87e6-3a800a48ee79","2025-06-02T20:57:40.000+02:00","2026-04-22T09:38:23.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"329737832","","MTR-JH775R3","MTR-JH775R3","90:8D:6E:8E:1C:73","10.101.246.202","fe80::fac1:3201:a69e:1e26","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","JH775R3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","30a134f3-f687-42ce-8401-d91dfc5c241b","2025-06-03T10:37:35.000+02:00","2026-04-22T09:38:14.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"223163472","255070062","ls-coutevroult","LS-COUTEVROULT","00:50:56:90:EF:00","10.1.1.12","fe80::bf74:e7ad:817a:6cfc","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 96 c7 8b c7 02 f3-20 ce e6 25 0f d9 43 89","NoAssetTag","'+02:00","2026-03-05T15:46:11.000+02:00","svpadmin","Cloud Agent","feeffa5f-a95c-4aba-8d0a-878fb8be2178","2024-03-18T15:56:16.000+02:00","2026-04-22T09:38:10.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Péage,OS-WIN-SRV DYN,DEX,SVP,High,Cloud Agent,Windows Server","682.0" +"399337159","361082798","PCB24224.sanef.groupe","PCB24224","70:15:FB:7E:44:8D","10.205.0.16,192.168.1.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZP","","'+02:00","2026-04-20T08:59:53.000+02:00","SANEF\kaczor-ext","Cloud Agent","f03b105a-f967-4c64-bd7d-24d4a2478370","2026-02-11T12:12:25.000+02:00","2026-04-22T09:37:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"379846586","353006855","spbckamag2.sanef.groupe","","04:bd:97:23:06:20, 04:bd:97:23:06:21","10.42.16.75,10.43.1.36","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191547","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP26080HGP","Unknown","'+02:00","2025-11-27T20:26:54.000+02:00","cybsecope","Cloud Agent","86f212c8-4bd0-48b2-93ef-be55f3c829bd","2025-11-27T18:17:58.000+02:00","2026-04-22T11:19:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0" +"176400087","229974599","vpdaibana5","VPDAIBANA5","00:50:56:90:5D:A7","10.41.70.24","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 b7 dd 15 7b 2a 5a-e8 d6 36 e4 f9 46 5c 1b","NoAssetTag","'+02:00","2026-04-16T15:50:25.000+02:00","ecoad-ext","Cloud Agent","9c11cf6e-df39-48ba-b625-97e08010356c","2023-06-29T11:19:15.000+02:00","2026-04-22T11:25:53.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DAI,BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX","353.0" +"324683544","330336087","PCB17795.sanef.groupe","PCB17795","28:C5:D2:9F:C3:DD","10.255.3.188,10.255.3.210","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4W","","'+02:00","2026-04-14T10:04:43.000+02:00","SANEF\GHENIM","Cloud Agent","2ac529af-2e05-4552-9d10-cb5e61dfd335","2025-05-14T12:10:04.000+02:00","2026-04-22T10:48:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"379351234","352792433","PCV22438.sanef-int.adds","PCV22438","D0:AD:08:A7:27:EA","10.210.67.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YPL","","'+02:00","2026-03-03T09:57:56.000+02:00","Operateur","Cloud Agent","ad80cdd4-9663-47a3-b973-3be975b1f6d1","2025-11-25T17:23:39.000+02:00","2026-04-22T11:22:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"143622556","201025275","vpemvantp1.sanef.groupe","","00:50:56:82:2a:4c","192.168.100.132","fe80::250:56ff:fe82:2a4c","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 89 b6 e3 0b e8 e6-23 9d 7d 15 4e 3d da 8a","No Asset Tag","'+02:00","2024-09-04T15:19:33.000+02:00","lamhajeb-ext","Cloud Agent","ca5b415c-1d52-4ab0-b23f-9feaa2cb77af","2022-10-11T17:31:05.000+02:00","2026-04-22T11:29:49.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,Obsolete,VRF_INCONNUE,PCI Bunker EMV - VLAN Supervision/Admin,Cloud Agent,Linux Server,BDD-POS DYN","107.0" +"222335936","254699859","OSA20946.sanef-int.adds","OSA20946","BC:0F:F3:87:70:BB","10.12.20.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.10.04","8CC3290LN1","","'+02:00","2026-04-10T21:02:30.000+02:00","Superviseur","Cloud Agent","1feabc0b-7789-4eae-91e1-8d2dea7000f7","2024-03-14T17:25:12.000+02:00","2026-04-22T09:37:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"378318758","352427009","PSX18694.sanef-int.adds","PSX18694","30:13:8B:6C:76:C4","10.100.40.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WM","","'+02:00","2025-11-24T15:53:05.000+02:00","UserSextan","Cloud Agent","306df3b8-d1a4-4775-ad91-ace8ae0afc10","2025-11-21T14:40:43.000+02:00","2026-04-22T09:37:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"186883762","237060620","MTR-HQ3J8Y3","MTR-HQ3J8Y3","6C:3C:8C:3D:5E:36","10.105.32.200","fe80::75be:6bd2:8e8:563d","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","HQ3J8Y3","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","96282038-5b24-4ccc-a8f3-8ad956a77773","2023-09-08T14:20:14.000+02:00","2026-04-22T11:15:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"128622406","191429388","ls-st-omer","LS-ST-OMER","00:50:56:90:53:F8","10.41.2.37","fe80::2e09:f2c2:455a:9f48","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 f9 bb 5c 1c 53 af-5f 1a 72 ad 4d 71 c5 5f","NoAssetTag","'+02:00","2026-03-04T10:00:46.000+02:00","svpadmin","Cloud Agent","0f2de34f-dcfa-4d4a-85a1-ac1e78682616","2022-06-21T16:54:14.000+02:00","2026-04-22T09:36:59.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,VRF_PEAGE_DC,Windows Server,High,Péage,Production,SVP,OS-WIN-SRV DYN,DEX","681.0" +"321527933","329071330","PCB23744.sanef.groupe","PCB23744","6C:0B:5E:EE:A3:16","10.152.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H34","","'+02:00","2026-04-16T08:12:22.000+02:00","SANEF\tournand","Cloud Agent","15b5bdd7-3f1a-4628-8598-fd9581906b58","2025-05-02T09:57:12.000+02:00","2026-04-22T09:36:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"150933985","205970251","VPAIIAVCL2.sanef.groupe","VPAIIAVCL2","00:50:56:82:E5:66","10.41.11.21","fe80::40d9:5a2e:a5a5:cc32","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 96 78 d6 5a 61 f4-23 fc 92 da ac d2 12 00","NoAssetTag","'+02:00","2026-03-11T13:01:01.000+02:00","SANEF\durmarque","Cloud Agent","59f6b042-4f2e-44d2-b4b4-21d14d0c0367","2022-12-07T17:23:22.000+02:00","2026-04-22T11:29:40.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,VRF_INCONNUE,Workstation,NVR,Obsolete","523.0" +"329750376","","MTR-JF1CXM3","MTR-JF1CXM3","A4:BB:6D:95:91:AD","10.101.246.206","fe80::ca6:e03d:589d:a96b","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","JF1CXM3","","'+02:00","2026-04-22T02:32:55.000+02:00","Skype","Cloud Agent","1db55fe1-0fd4-405d-9113-ac6c9c34865f","2025-06-03T12:38:30.000+02:00","2026-04-22T09:36:41.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"327537152","","PCB20747.sanef.groupe","PCB20747","58:1C:F8:EA:C6:17","192.168.1.109,169.254.47.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CT1","","'+02:00","2026-04-16T16:51:08.000+02:00","SANEF\daunou","Cloud Agent","ee958b76-1853-4f98-b90b-a5905593210e","2025-05-27T12:05:25.000+02:00","2026-04-22T09:36:32.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"210022570","249438985","siboomcla2.sanef.groupe","","5c:ba:2c:1c:94:60","10.41.22.205","fe80::5811:2d9b:7a24:7d54","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95788","HPE U30 07/20/2023","CZ22410FK7","","'+02:00","2026-03-16T13:13:13.000+02:00","cybsupemo","Cloud Agent","c21d0a6d-555b-4861-9119-c3a0f4dcc6d2","2024-01-17T12:55:00.000+02:00","2026-04-22T11:33:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,flux_libre","337.0" +"266513879","297933107","vpecmbsql3.sanef.groupe","VPECMBSQL3","00:50:56:90:0F:58","10.44.5.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 17 fe b5 a6 84 48-2a 09 c7 25 4a 2c b7 bb","NoAssetTag","'+02:00","2026-01-27T10:44:51.000+02:00","Administrateur","Cloud Agent","f340a3f1-42c3-42ac-85b3-a814ca5fd7b2","2024-09-19T16:55:10.000+02:00","2026-04-22T09:36:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent","344.0" +"398248431","360587807","vpdsibetc1.sanef.groupe","","00:50:56:9c:f8:44","10.44.5.131","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c e9 f7 4b 0b 4e a2-06 28 85 8d e6 77 db d2","No Asset Tag","'+02:00","2026-02-11T18:42:39.000+02:00","cybadmbdd","Cloud Agent","7f04098c-1b4e-488c-9826-bbe36367c07b","2026-02-06T12:48:58.000+02:00","2026-04-22T11:50:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,Production","141.0" +"238271912","269259607","vipeaabst1.sanef.groupe","","00:50:56:90:e8:7d","10.41.29.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 5e 6c 94 44 53 a2-1c 58 69 50 e8 f3 ad 3c","No Asset Tag","'+02:00","2026-03-19T10:22:55.000+02:00","cybintsys","Cloud Agent","d87bd183-869a-42bf-82c0-228dd283014d","2024-05-21T14:30:01.000+02:00","2026-04-22T11:37:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,DSI,Flux Libre","141.0" +"376415144","351514141","vipeaarcv1.sanef.groupe","","00:50:56:90:be:56","10.41.29.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 2d 62 a0 05 c7 c3-63 b2 3e 5c 98 bd 4d d0","No Asset Tag","'+02:00","2026-03-19T15:05:55.000+02:00","cybreconcile","Cloud Agent","6824db21-9e8a-41ee-98b6-da91fca300c5","2025-11-13T16:39:51.000+02:00","2026-04-22T11:05:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,MID-NGINX DYN,flux_libre,log4j,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Flux Libre,Production,FreeFlow","334.0" +"139156941","198270159","vmamphtp2.sanef.groupe","","00:50:56:82:75:3B, 00:50:56:82:4E:8C, 00:50:56:82:06:1D","10.41.40.36,10.41.40.39,10.41.40.40,10.41.40.41,10.43.4.36,10.43.40.36,10.43.40.39","fe80::250:56ff:fe82:753b,fe80::250:56ff:fe82:4e8c,fe80::250:56ff:fe82:61d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 87 d0 59 1b 5f 6f-07 1c c6 e7 14 00 7e 0e","No Asset Tag","'+02:00","2025-10-08T15:50:31.000+02:00","cybreconcile","Cloud Agent","950d952c-913d-4f60-89ad-24963c92f040","2022-09-07T14:26:01.000+02:00","2026-04-22T11:19:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,VRF_TRAFIC_DC,Obsolete,Production,Trafic,Amelie","349.0" +"238297816","269274162","lpemvbpemv2.sanef.groupe","","00:17:a4:77:1c:68, 00:17:a4:77:1c:98, 00:17:a4:77:1c:64","169.254.8.81,172.16.0.105,192.168.103.105,192.168.101.105,192.168.101.145","fe80::217:a4ff:fe77:1c68,fe80::217:a4ff:fe77:1c98,fe80::217:a4ff:fe77:1c64","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","PWARU%%LM333IZ","","'+02:00","2026-01-25T23:27:02.000+02:00","root","Cloud Agent","d4a07993-1fa2-45b1-9fa5-a160ba803fc7","2024-05-21T16:48:50.000+02:00","2026-04-22T11:35:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,Production,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17,Cloud Agent,Linux Server","682.0" +"294119824","316124809","vpvsaarec2.sanef.groupe","","00:50:56:9c:65:9b","10.42.16.84","fe80::250:56ff:fe9c:659b","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c fe dd 01 df 68 3f-9f 0d 28 bc 7a 70 7d 1f","No Asset Tag","'+02:00","2026-02-05T13:13:32.000+02:00","tbaad","Cloud Agent","51b00c2e-edd7-4d16-a176-83bdeab2a2d8","2025-01-22T11:43:10.000+02:00","2026-04-22T12:01:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0" +"210406652","249580391","lremvaste1","","00:17:a4:77:1c:28, 00:17:a4:77:1c:2c","192.168.108.114,192.168.107.114","fe80::217:a4ff:fe77:1c28,fe80::217:a4ff:fe77:1c2c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","31879","HP I36 07/18/2022","VCX0000705","","'+02:00","2025-12-02T11:47:45.000+02:00","lamhajeb-ext","Cloud Agent","1b52413a-1e4d-46c5-8179-a64404b83b63","2024-01-18T14:17:38.000+02:00","2026-04-22T09:35:44.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,EMV,PCI Bunker EMV - VLAN Stecard V17 Recette","491.0" +"212748468","250644352","vpbooarep2.sanef.groupe","","00:50:56:90:8f:73","10.41.22.146","fe80::250:56ff:fe90:8f73","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 0a 92 da 66 4b 41-1b 07 52 eb 31 0b 9a 09","No Asset Tag","'+02:00","2026-04-07T12:00:35.000+02:00","cybadmroot","Cloud Agent","4d9fbb90-492c-42fc-83e2-cdb4de0813f9","2024-01-30T17:21:46.000+02:00","2026-04-22T11:38:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server,FreeFlow,ServersInCyberark,Production","140.0" +"119198010","191556755","vpdsiawsus1","VPDSIAWSUS1","00:50:56:82:92:FF","192.168.18.4","fe80::820c:cb93:ba68:92d0","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 7c 98 96 cc 53 df-9a 07 61 3d 1c b5 54 8d","NoAssetTag","'+02:00","2026-04-15T15:18:13.000+02:00","kmoad-ext","Cloud Agent","a77ea24f-21a4-476a-854f-886159937d56","2022-04-01T10:18:28.000+02:00","2026-04-22T09:35:33.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,DSI,BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,TAG-SRVEXPOSEINTERNET,WSUS","0.0" +"186459705","236788724","spcybabkp1","SPCYBABKP1","D4:F5:EF:39:81:A6","10.44.1.36","fe80::6c0c:43a5:1fdd:ca26","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Computers / Server","HPE ProLiant DL380 G10 Server","16","3193","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","32425","HPE U30","CZ2051091R","","'+02:00","2026-03-23T11:53:39.000+02:00","administrateur","Cloud Agent","55fbec37-e5a7-4089-a58b-c886a81a5711","2023-09-06T10:19:29.000+02:00","2026-04-22T09:35:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,CyberArk,Cloud Agent,Windows Server","242.0" +"366599196","347401133","PCB20633.sanef.groupe","PCB20633","58:1C:F8:EA:44:B7","10.205.0.132,192.168.1.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DRN","","'+02:00","2026-04-02T17:33:52.000+02:00","SANEF\martyleridant","Cloud Agent","a583220f-2649-4503-8b50-76dd248e82c3","2025-10-08T16:54:35.000+02:00","2026-04-22T11:31:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"360033209","","PCB18756.sanef.groupe","PCB18756","BC:0F:F3:3D:38:44","10.200.30.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DR8","","'+02:00","2026-03-30T09:07:19.000+02:00","SANEF\fontainea","Cloud Agent","df5b3b5e-1f4b-4289-ac76-b8b86ba590c2","2025-09-16T13:49:27.000+02:00","2026-04-22T09:35:14.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"367949395","347995265","PCB23579.sanef.groupe","PCB23579","C8:6E:08:8A:40:58","10.255.1.158","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6C","","'+02:00","2026-04-08T08:20:55.000+02:00","SANEF\HOUPLAIN","Cloud Agent","28609e06-ec8a-48db-8d92-3d8ec77402f1","2025-10-13T15:36:28.000+02:00","2026-04-22T09:35:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"186259544","236704965","vvafljump2.recette.adds","VVAFLJUMP2","00:50:56:9C:6D:9F","10.45.8.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 66 49 97 21 09 89-b2 b4 41 2c fe 94 94 23","NoAssetTag","'+02:00","2026-04-22T01:00:45.000+02:00","Administrateur","Cloud Agent","8e9a8e68-7af7-4018-906f-5ab357e618b3","2023-09-05T17:21:14.000+02:00","2026-04-22T09:35:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,flux_libre,BDD-SQL DYN,OS-WIN-SRV DYN,Recette,Flux Libre,FreeFlow","253.0" +"409762886","365046718","PCB22715.sanef.groupe","PCB22715","E4:60:17:CB:E7:65","10.205.0.86,172.28.199.165","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764G6","","'+02:00","2026-04-16T16:04:56.000+02:00","SANEF\MOUTAOUAKIL-ext","Cloud Agent","4afb9398-a2e1-42c9-802b-d6d723171ede","2026-03-19T17:17:59.000+02:00","2026-04-22T09:34:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-POS DYN,Workstation,Cloud Agent","247.0" +"395268286","359387214","DAI18696.sanef-int.adds","DAI18696","30:13:8B:6C:58:15","10.100.70.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.05.01","CZC44473VX","","'+02:00","2026-03-25T12:23:19.000+02:00","DAIUSER","Cloud Agent","a213ac0e-8a84-4405-9f49-75fd7f7db98e","2026-01-27T10:44:57.000+02:00","2026-04-22T09:34:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"129355044","191958657","vpabnanvr1","VPABNANVR1","00:50:56:82:03:FD","10.187.6.10","fe80::d80a:4c23:8a33:dc7f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 1b a2 c7 48 26 de-7e 75 13 c9 d2 63 99 0f","NoAssetTag","'+02:00","2026-03-31T12:43:11.000+02:00","Administrateur","Cloud Agent","fa4d5fd6-8180-44dd-9132-de66ed912c70","2022-06-27T17:32:56.000+02:00","2026-04-22T09:34:45.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,OS-WIN-SRV DYN,DEX,NVR,Production,Exploitation,Cloud Agent,Windows Server","508.0" +"378049638","352306110","vpdsiahap4.sanef.groupe","","00:50:56:90:b1:b1","192.168.19.145","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 a4 1e 78 01 ee 72-08 15 55 ca 9a 49 05 89","No Asset Tag","'+02:00","2025-12-10T15:09:42.000+02:00","cybintsys","Cloud Agent","de87e680-eb6e-4b1e-a78c-e09ce7005235","2025-11-20T13:31:08.000+02:00","2026-04-22T11:29:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"340740272","336808249","PCB21359.sanef.groupe","PCB21359","E4:60:17:CA:3F:FA","10.205.0.100,192.168.68.116","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L0","","'+02:00","2026-04-07T16:08:42.000+02:00","SANEF\LIGIER-ext","Cloud Agent","8105c7d0-8259-4fcc-9eb9-281df4983085","2025-07-10T12:18:40.000+02:00","2026-04-22T11:34:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"407940473","364292118","splogbels2","","40:5b:7f:e1:ac:78","10.44.7.43","fe80::425b:7fff:fee1:ac78","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G11 Server","32","","INTEL(R) XEON(R) SILVER 4514Y","31586","HPE 2.50 04/22/2025","CZ2D3C0G31","","'+02:00","2026-03-27T16:17:38.000+02:00","cybintsys","Cloud Agent","b523ded9-6eff-429f-8655-ce7b008f4657","2026-03-12T12:08:05.000+02:00","2026-04-22T11:42:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN","152.0" +"318689107","328168117","PCB22894.sanef.groupe","PCB22894","D0:AD:08:A7:27:AC","10.209.31.6","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTB","8CC3502YTB","'+02:00","2026-04-19T21:58:53.000+02:00","SANEF\fourmy","Cloud Agent","8b69e612-ad5d-430d-9347-e1e98b562335","2025-04-23T09:31:53.000+02:00","2026-04-22T09:34:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"331434867","","PCB17802.sanef.groupe","PCB17802","28:C5:D2:9E:3E:91","10.255.3.199","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3T","","'+02:00","2026-04-20T09:16:52.000+02:00","SANEF\pierrepont","Cloud Agent","5c64def2-305b-4ae0-8ff1-d7f3f10fa575","2025-06-06T13:54:20.000+02:00","2026-04-22T09:34:16.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"358107596","344011310","PCB22621.sanef.groupe","PCB22621","E4:60:17:C5:0A:0D","10.205.0.139,192.168.1.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764J8","","'+02:00","2026-04-07T09:08:59.000+02:00","SANEF\BAISSAS-ext","Cloud Agent","0aca4085-83e0-4ed5-827f-ad1415344358","2025-09-09T11:24:32.000+02:00","2026-04-22T09:34:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"291118836","313951221","PCB20921.sanef.groupe","PCB20921","5C:28:86:C0:58:AA","10.4.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","Dell Latitude 7350 Notebook","14","1700","Intel(R) Core(TM) Ultra 7 165U","32213","Dell Inc. 1.12.0","45VTX64","","'+02:00","2026-04-16T10:42:37.000+02:00","SANEF\bideondo","Cloud Agent","a2538818-e294-4a9f-8a59-8218a59bb34b","2025-01-09T12:04:41.000+02:00","2026-04-22T11:42:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"392827254","358345584","PCB18728.sanef.groupe","PCB18728","58:1C:F8:E9:C0:C8","10.255.2.203,10.255.2.202","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3T","","'+02:00","2026-04-03T09:03:56.000+02:00","SANEF\MAZOUZ","Cloud Agent","6fa68d0d-4b89-4341-b8f0-cb6c8d73127e","2026-01-16T16:49:57.000+02:00","2026-04-22T10:53:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"130346274","192664922","VMAMPWEB2.sanef.groupe","VMAMPWEB2","02:3D:DD:2E:28:C5, 00:50:56:90:F6:D2","169.254.1.82,10.41.40.112,10.41.40.114","fe80::2039:b533:eb8d:5a16,fe80::e86b:bba:af54:270b","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 10 ab 11 90 38 72 96-42 f0 e9 3d fb b7 ea 42","NoAssetTag","'+02:00","2024-02-14T14:45:29.000+02:00","VMAMPWEB2\CYBSECOPE","Cloud Agent","6ff045a0-cd11-4b92-92ed-527b498c3d92","2022-07-05T15:53:52.000+02:00","2026-04-22T09:33:56.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,VRF_TRAFIC_DC,OS-WIN-SRV DYN,Obsolete,Production,Patrimoine,SIG,Cloud Agent,Windows Server","537.0" +"399667072","361243015","PCV20830.sanef-int.adds","PCV20830","30:13:8B:6C:60:45","10.100.7.53","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q82","","'+02:00","2026-02-17T18:01:58.000+02:00","Operateur","Cloud Agent","bddb31d9-7015-4477-ba7c-9fb20133aa19","2026-02-12T18:34:07.000+02:00","2026-04-22T11:25:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"376638224","351625365","PCB18270.sanef.groupe","PCB18270","C8:CB:9E:81:17:AD","10.255.3.190,10.255.3.203","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y97","8CC2250Y97","'+02:00","2026-03-30T09:44:58.000+02:00","SANEF\hammadia","Cloud Agent","61d6936a-f22c-47e0-91ed-aee56a5b8e61","2025-11-14T14:51:16.000+02:00","2026-04-22T11:26:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"397486515","360368249","PCB20622.sanef.groupe","PCB20622","BC:0F:F3:3D:68:61","10.220.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.15.02","5CG3224CSH","","'+02:00","2026-04-21T08:06:26.000+02:00","SANEF\ATMANI","Cloud Agent","bd66100d-4520-470f-928e-7077667a835e","2026-02-04T17:24:38.000+02:00","2026-04-22T11:40:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"241863974","276777350","SVP22762.sanef-int.adds","SVP22762","D0:AD:08:A7:28:60","10.209.20.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLR","","'+02:00","2026-04-18T13:05:16.000+02:00","Superviseur","Cloud Agent","8834fb9d-adb3-4d9f-b85c-d146da6494ef","2024-06-05T16:26:59.000+02:00","2026-04-22T09:33:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"195792930","241929201","vpbotreco2.sanef.groupe","","00:50:56:90:d2:5d","10.41.23.19","fe80::250:56ff:fe90:d25d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 b8 38 f4 43 ea 75-23 8f 5e ef 9f 47 e0 84","No Asset Tag","'+02:00","2026-04-16T14:13:14.000+02:00","cybreconcile","Cloud Agent","3b9a017c-694d-4156-b17c-42a71c740a9f","2023-10-26T11:37:58.000+02:00","2026-04-22T10:58:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre","141.0" +"215213259","251724782","ls-beautot","LS-BEAUTOT","00:50:56:90:DA:F4","10.41.2.88","fe80::b055:abba:828a:f685","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c8 06 80 55 3b 58-ad 54 19 49 36 e2 c3 7c","NoAssetTag","'+02:00","2026-04-02T10:48:30.000+02:00","svpadmin","Cloud Agent","d123d0c9-ab32-4e85-a097-9611a64c840f","2024-02-12T15:25:07.000+02:00","2026-04-22T09:33:37.000+02:00","64-Bit","4","SCA,VM,PM,GAV","High,VRF_PEAGE_DC,Production,VRF_BACKUP_DC,Péage,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,SVP","507.0" +"405479460","363237095","vmmgtctchc1.sanef-int.adds","VMMGTCTCHC1","00:50:56:90:F0:6C","10.41.19.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 a4 cb 58 a9 25 ea-7c 70 6f 23 b5 03 2c 94","NoAssetTag","'+02:00","2026-04-02T13:38:27.000+02:00","admin_gtc","Cloud Agent","79994ea4-03f0-4cdf-a870-2ca3288bb72c","2026-03-02T17:46:23.000+02:00","2026-04-22T09:33:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","343.0" +"205606145","246966123","vvbocaprx1.sanef-rec.fr","","00:50:56:9c:fb:60","192.168.22.3","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 96 b7 47 17 66 e2-40 be cf 40 2a 15 b4 5b","No Asset Tag","'+02:00","2026-03-10T10:14:35.000+02:00","cybsupsys","Cloud Agent","281b8add-6df6-428a-aeac-fb4bdc00d3d4","2023-12-21T20:05:47.000+02:00","2026-04-22T11:38:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Recette,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre","335.0" +"188271995","237903345","MTR-G1DSNT3","MTR-G1DSNT3","90:8D:6E:92:4E:B5","10.104.32.200","fe80::5ec5:7cc7:98ba:293c","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","G1DSNT3","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","e49c011a-371c-4dd7-85c5-d9ad3f9022c3","2023-09-16T18:55:49.000+02:00","2026-04-22T09:33:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"129315687","191934840","vpaiia8770.sanef.groupe","VPAIIA8770","00:50:56:82:64:BD","10.41.60.135","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","6143","Phoenix Technologies LTD 6.00","VMware-42 02 ba 5d 80 a2 21 f4-52 a9 1f 57 39 cb 2e fd","NoAssetTag","'+02:00","2026-01-27T14:52:45.000+02:00","Admin_Nextiraone","Cloud Agent","05499784-b8fb-4cdb-9dd4-8795608cd591","2022-06-27T12:08:07.000+02:00","2026-04-22T09:33:16.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Basse,Production,Téléphonie,Low,DSI,OPENTOUCH,Cloud Agent,Windows Server,VRF_INCONNUE","510.0" +"379570961","352896458","PCV18549.sanef-int.adds","PCV18549","30:13:8B:6C:5C:34","10.209.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TK","","'+02:00","2026-04-17T08:47:28.000+02:00","Operateur","Cloud Agent","11fb4b85-ec09-4941-a688-448d80eedb85","2025-11-26T16:44:15.000+02:00","2026-04-22T09:33:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"267399590","298447748","SVP21062.sanef-int.adds","SVP21062","D0:AD:08:A7:28:25","10.142.3.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJW","","'+02:00","2026-04-22T05:39:23.000+02:00","Superviseur","Cloud Agent","8343947f-8844-4aef-ba7f-fe65ca93a4f1","2024-09-24T13:55:45.000+02:00","2026-04-22T09:32:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"339814656","336780130","vrpatbl2r3.sanef-rec.fr","","00:50:56:9c:e9:e1","10.45.10.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5e 5f 2e fb 54 47-32 c3 18 8a e7 f1 cb 68","No Asset Tag","'+02:00","2026-04-08T12:31:52.000+02:00","cybsecope","Cloud Agent","bd717c73-dcb2-42f1-b414-d1bbf77a60b7","2025-07-07T12:40:40.000+02:00","2026-04-22T11:31:46.000+02:00","x86_64","3","SCA,VM,GAV","Linux Server,Cloud Agent,Recette,BDD-POS DYN,L2R,OS-LIN-SRV DYN","216.0" +"241533000","276509051","vpvsaaahp2.sanef.groupe","","00:50:56:9c:67:25","10.42.16.87","fe80::250:56ff:fe9c:6725","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c c8 69 60 5c c6 26-c6 55 85 cc 68 d9 06 4a","No Asset Tag","'+02:00","2026-02-04T13:20:50.000+02:00","tbaad-ext","Cloud Agent","e2fe25e9-9955-4368-ad32-ff54b16be948","2024-06-04T11:57:09.000+02:00","2026-04-22T11:04:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"369207325","348325466","PCB23598.sanef.groupe","PCB23598","6C:0B:5E:EE:93:73","10.8.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L41","","'+02:00","2026-03-28T12:59:26.000+02:00","gaetan.schwaller@sanef.com","Cloud Agent","ca96df67-fb58-4e99-b3b8-3be365c8b78c","2025-10-16T07:09:51.000+02:00","2026-04-22T11:10:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"127861129","190912033","VPBURADHCP1.sanef.groupe","VPBURADHCP1","00:50:56:82:55:EB","10.30.12.142","fe80::4cad:f3cd:9fec:337d","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-56 4d 1d 90 58 a4 a8 18-ad bc 1f 26 5b 95 3a 9f","NoAssetTag","'+02:00","2026-03-30T15:05:17.000+02:00","SANEF.GROUPE\bmiad-ext@sanef.com","Cloud Agent","22f7afb2-8981-4675-a887-250a4fb07178","2022-06-14T15:51:48.000+02:00","2026-04-22T11:20:35.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DHCP,Production,Windows Server,Critical,Cloud Agent,High,OS-WIN-SRV DYN,VRF_INCONNUE","848.0" +"187333435","237343292","MTR-F1DSNT3","MTR-F1DSNT3","90:8D:6E:92:52:1E","10.13.32.200","fe80::2f9e:9f26:bdd8:30da","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","F1DSNT3","","'+02:00","2026-04-22T02:32:56.000+02:00","Skype","Cloud Agent","2fd68197-0770-4939-86e3-2e28f19dd07c","2023-09-11T22:02:20.000+02:00","2026-04-22T09:32:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"395894144","359663970","PCB25894.sanef.groupe","PCB25894","C4:0F:08:B4:39:D5","10.255.4.173","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222R","","'+02:00","2026-04-15T16:30:22.000+02:00","SANEF\dewilde","Cloud Agent","c22782e6-63c2-4111-ae3e-7a8dc0cc96e1","2026-01-29T15:49:47.000+02:00","2026-04-22T09:32:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","253.0" +"368453794","348146988","vppixbams2.sanef-int.adds","VPPIXBAMS2","00:50:56:90:68:0F","10.41.17.11","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 ef a8 d1 9f 33 1d-4b e8 62 b9 c8 e6 f7 d2","NoAssetTag","'+02:00","2026-02-11T15:17:58.000+02:00","b03987@sanef-int","Cloud Agent","e7e92ec1-5ec8-4b82-996f-62eb3c29e61c","2025-10-14T17:08:01.000+02:00","2026-04-22T09:32:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,BDD-POS DYN","346.0" +"333991857","333987938","PCB24125.sanef.groupe","PCB24125","48:EA:62:C8:93:2B","10.104.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6F","","'+02:00","2026-03-31T09:45:37.000+02:00","SANEF\auquiere","Cloud Agent","f8ab77f3-c5ea-456b-a783-67f1243cdcdd","2025-06-17T10:49:48.000+02:00","2026-04-22T10:51:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"360043312","344907767","vrtrabmut1.sanef-rec.fr","","52:54:00:ea:79:1f, 42:19:7e:d4:9b:a4, 52:54:00:39:27:bc","192.168.17.4,192.168.16.24,10.45.15.4","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","48139","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:57:32.000+02:00","oracle","Cloud Agent","30c83049-dcfa-4fc5-875c-e07b656fa40e","2025-09-16T15:15:32.000+02:00","2026-04-22T09:32:27.000+02:00","x86_64","2","SCA,VM,GAV","ORACLE,Recette,Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0" +"403264772","362438704","PCB25778.sanef.groupe","PCB25778","F8:ED:FC:AB:02:1F","10.100.39.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVS","","'+02:00","2026-04-21T11:08:37.000+02:00","SANEF\YOBOULUGEZ","Cloud Agent","ac91ca81-a675-4333-bf44-fd3469a121f8","2026-02-23T13:35:07.000+02:00","2026-04-22T11:27:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"130588099","192835847","vamrsychtp1.sanef.groupe","","00:50:56:82:6F:63","10.45.2.23","fe80::250:56ff:fe82:6f63","Linux / Server","Red Hat Enterprise Linux Server 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 0c f2 5b e6 50 1d-c4 77 7e 11 1e f7 84 ea","No Asset Tag","'+02:00","2025-02-04T10:47:28.000+02:00","cybexpapp","Cloud Agent","cacd808b-cfc7-4ace-9f0f-2d2a6d0896cf","2022-07-07T11:58:05.000+02:00","2026-04-22T11:19:52.000+02:00","x86_64","3","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Patrimoine,Sans,Recette,SIG,VRF_INCONNUE,Obsolete","525.0" +"376076712","351360676","PCB17985.sanef.groupe","PCB17985","C0:18:03:85:61:71","10.200.30.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.13.00","8CC2061752","","'+02:00","2026-04-09T08:04:04.000+02:00","SANEF\gauvreau","Cloud Agent","3fa9dc34-edf7-4e05-b58d-3184d609d919","2025-11-12T10:42:46.000+02:00","2026-04-22T09:31:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"193606163","240976273","vibocs4as1.sanef.groupe","","00:50:56:90:4b:56","10.41.22.72","fe80::250:56ff:fe90:4b56","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 b3 9d 45 c1 b3 06-4e 3b 9a a5 4c d2 f9 a7","No Asset Tag","'+02:00","2026-03-16T16:11:20.000+02:00","cybsupibm","Cloud Agent","d4d5e555-5327-402f-9c71-f08ab8b17d2f","2023-10-16T12:03:22.000+02:00","2026-04-22T10:41:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ServersInCyberark,Flux Libre,flux_libre,Production,Cloud Agent,Linux Server,FreeFlow","141.0" +"300889362","320656720","OSA22767.sanef-int.adds","OSA22767","D0:AD:08:A7:28:28","10.209.20.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJQ","","'+02:00","2026-04-17T08:54:07.000+02:00","Superviseur","Cloud Agent","a32c879f-ed6f-4b43-a5ce-0883c3ddb013","2025-02-18T13:39:37.000+02:00","2026-04-22T11:19:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"185292892","236052811","vproibgtc1","VPROIBGTC1","00:50:56:82:4E:8D","10.41.19.10","fe80::8b92:d20e:5b74:a67f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 31 56 81 4b 18 f4-7c 3b 7c 8a 8f 33 f2 e4","NoAssetTag","'+02:00","2026-03-23T12:42:50.000+02:00","admin_gtc","Cloud Agent","0c090484-4aff-492e-ad2b-e1ad66d82464","2023-08-30T15:20:27.000+02:00","2026-04-22T10:58:28.000+02:00","64-Bit","5","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Windows Server,OS-WIN-SRV DYN,GTC,DEX,Trafic,Haute,High,Production","634.0" +"372648273","349818624","vpsamaext1.sanef-int.adds","VPSAMAEXT1","00:50:56:90:D1:3A","192.168.10.11","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4297) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 00 83 ac 2c 26 89-bf 9f ab 0b 3f 00 34 ef","NoAssetTag","'+02:00","2025-11-12T11:05:03.000+02:00","SANEF-INT\b03987","IP Scanner, Cloud Agent","42773da1-e822-4007-a3df-83a83800b046","2025-10-29T10:18:47.000+02:00","2026-04-22T09:31:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Production","346.0" +"128152928","191086094","VMPKI2.sanef.groupe","VMPKI2","00:50:56:82:26:28","10.30.10.147","fe80::995c:8dcd:6a9:a100","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 d7 2b d0 79 f5 ab-d7 f4 e1 2a a2 2f f6 b2","NoAssetTag","'+02:00","2026-03-12T21:55:48.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","ae165fdf-1fd5-4c5d-adfb-d51376f44c25","2022-06-16T13:09:22.000+02:00","2026-04-22T11:08:22.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Windows Server,VRF_INCONNUE,DSI,Production,Sécurité IT,Gestion_PKI,High,Critical,Cloud Agent","612.0" +"375477015","351124093","PCB23520.sanef.groupe","PCB23520","6C:0B:5E:EE:CC:B5","10.202.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5J","","'+02:00","2026-04-12T14:38:15.000+02:00","SANEF\lepecq","Cloud Agent","09767f60-ec34-4582-8b42-55236bd17805","2025-11-10T11:15:10.000+02:00","2026-04-22T09:30:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"404678116","362912971","vrpctbams2.recette.adds","VRPCTBAMS2","00:50:56:9C:6A:02","10.45.13.197","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c b8 f6 9b bf 39 51-42 0b 9f b8 0d 32 b5 55","NoAssetTag","'+02:00","2026-03-03T15:16:05.000+02:00","Administrator","Cloud Agent","4949f175-9f4a-4beb-af1e-e2fed7e749ee","2026-02-27T10:16:49.000+02:00","2026-04-22T09:30:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN","252.0" +"379713036","352959816","PCB22286.sanef.groupe","PCB22286","D0:AD:08:A3:7C:F8","10.252.42.130","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZK","8CC3502YZK","'+02:00","2026-04-21T05:28:58.000+02:00","SANEF\saint-sorny","Cloud Agent","2428ae36-2aaa-4417-a4bd-a7ca11c5ec3a","2025-11-27T09:17:39.000+02:00","2026-04-22T09:30:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"322014696","329325194","PCB23628.sanef.groupe","PCB23628","C8:6E:08:88:FD:B5","10.255.3.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9W","","'+02:00","2026-04-20T07:52:40.000+02:00","SANEF\DUMONTF","Cloud Agent","6f2a6a21-a6ca-45c7-9797-ef6633b00c93","2025-05-05T12:32:51.000+02:00","2026-04-22T11:21:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"346030468","338984118","PCB17774.sanef.groupe","PCB17774","D0:AD:08:0C:7D:4D","10.205.0.89,10.101.243.81","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3X","","'+02:00","2026-04-22T08:43:55.000+02:00","bastien.raina@sapn.fr","Cloud Agent","b61e4f16-dbdb-4def-bb52-e5af943c6fa4","2025-07-29T09:38:17.000+02:00","2026-04-22T11:39:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"376611618","351608640","PBM22800.sanef-int.adds","PBM22800","D0:AD:08:A3:E7:2E","10.12.50.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YTW","","'+02:00","2026-04-02T14:54:50.000+02:00","Operateur","Cloud Agent","bf8662a1-bc71-4566-92d5-7babc7ecb476","2025-11-14T12:22:31.000+02:00","2026-04-22T09:30:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"373758364","350324415","PCB24195.sanef.groupe","PCB24195","10:B6:76:8A:F3:7F","10.8.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLT","","'+02:00","2026-04-20T15:01:27.000+02:00","SANEF\fraulob","Cloud Agent","15605755-127f-4df1-bf3c-11ba4b0a344e","2025-11-03T11:16:11.000+02:00","2026-04-22T09:30:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"240162557","273864821","SVP20956.sanef-int.adds","SVP20956","BC:0F:F3:87:6F:88","10.22.1.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLC","","'+02:00","2026-04-22T05:02:16.000+02:00","Superviseur","Cloud Agent","5fa9d325-9f14-483c-9178-6239fa478f43","2024-05-29T14:02:02.000+02:00","2026-04-22T09:30:01.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Workstation,Forescout","686.0" +"318938690","328215453","PCB22911.sanef.groupe","PCB22911","D0:AD:08:A3:7B:ED","10.108.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVF","8CC3502YVF","'+02:00","2026-03-28T16:05:32.000+02:00","SANEF\ehret","Cloud Agent","8428aee9-b08f-4984-86f5-70304b38473b","2025-04-23T17:22:28.000+02:00","2026-04-22T09:30:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"230114750","258416507","vvbotatst4.recette.adds","VVBOTATST4","00:50:56:9C:81:B0","10.45.6.162","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 59 4d 23 31 ef 65-c2 93 b5 90 fc be a3 07","NoAssetTag","'+02:00","2026-03-10T12:05:56.000+02:00","Administrateur","Cloud Agent","a7689d6b-1702-4fd3-b1a7-a50117d2745f","2024-04-15T15:13:45.000+02:00","2026-04-22T09:30:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Recette","258.0" +"284156129","308364146","SVP22864.sanef-int.adds","SVP22864","D0:AD:08:A7:27:C1","10.112.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMZ","","'+02:00","2026-04-17T05:33:14.000+02:00","Superviseur","Cloud Agent","5ab99886-4f8a-4864-8b3d-d6114dba01d1","2024-12-04T17:09:01.000+02:00","2026-04-22T09:29:48.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","685.0" +"130359075","192671247","vppeaaexp1","VPPEAAEXP1","00:50:56:82:3B:5D","10.41.21.15","fe80::ee7c:54b9:c1a6:3255","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2594","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","10240","Phoenix Technologies LTD 6.00","VMware-42 02 d3 81 67 5e b9 5f-8e 16 3f b5 ba 7c 43 fd","NoAssetTag","'+02:00","2026-02-26T15:34:11.000+02:00","Administrateur","Cloud Agent","225bb261-dd86-4e8f-8cf5-8b3a006ca809","2022-07-05T17:25:47.000+02:00","2026-04-22T09:29:47.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Cloud Agent,Windows Server,Péage,VRF_PEAGE_DC,OS-WIN-SRV DYN,DEX,Production","673.0" +"319196125","328319441","MTR-2KRTL64","MTR-2KRTL64","D0:46:0C:95:2C:9F","10.101.246.200","fe80::2c24:db8e:64c0:562e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","2KRTL64","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","c888fd44-0f94-4010-be5a-1fec54ba15cd","2025-04-24T16:14:17.000+02:00","2026-04-22T09:29:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"378058864","352313878","PCB22288.sanef.groupe","PCB22288","D0:AD:08:A3:7C:F6","10.200.31.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZP","8CC3502YZP","'+02:00","2026-04-22T04:57:26.000+02:00","SANEF\mechineaup","Cloud Agent","73987bff-8613-4084-9823-566479f1cd87","2025-11-20T14:58:52.000+02:00","2026-04-22T09:29:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"320477208","328721870","PCB24019.sanef.groupe","PCB24019","6C:0B:5E:F8:D8:D9","10.100.39.127","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF5","","'+02:00","2026-04-15T13:35:41.000+02:00","SANEF\HENQUINEZ","Cloud Agent","8622585b-879b-4491-bb32-80cdf656f485","2025-04-29T13:30:48.000+02:00","2026-04-22T11:30:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"195796370","241931295","vpbotapps2.sanef.groupe","","00:50:56:90:83:1a","10.41.23.15","fe80::250:56ff:fe90:831a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7a e8 f5 ed a9 da-9f ba 9c e2 b2 ea b3 f4","No Asset Tag","'+02:00","2026-04-16T11:04:07.000+02:00","cybreconcile","Cloud Agent","5966ce31-ac30-4dab-bd4a-9c6f908666f7","2023-10-26T11:59:09.000+02:00","2026-04-22T11:16:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Flux Libre,flux_libre,Production","141.0" +"412381024","366123126","PCB18709.sanef.groupe","PCB18709","58:1C:F8:EB:3F:CF","10.205.0.11,192.168.1.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224CRS","","'+02:00","2026-04-21T08:08:50.000+02:00","SANEF\boudjatit-ext","Cloud Agent","7c0d9008-4283-4496-be6b-6bbd7a6cb613","2026-03-30T11:45:15.000+02:00","2026-04-22T11:21:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"340063684","336780157","lpamebrac1.sanef.groupe","","ee:50:33:80:00:90, ee:50:33:80:00:8c","10.43.4.138,10.41.41.110,10.41.41.114,10.41.41.118","fe80::ec50:33ff:fe80:90,fe80::ec50:33ff:fe80:8c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63822","HPE I44 06/13/2025","VCGCIOJ00L","/n/Bios Asset Tag :","'+02:00","2025-11-19T15:02:39.000+02:00","cybreconcile","Cloud Agent","4579ea91-d9dc-4a08-96e1-64538e06b070","2025-07-08T10:21:16.000+02:00","2026-04-22T11:23:24.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,Amelie","335.0" +"195792948","241929532","vpbotreco3.sanef.groupe","","00:50:56:90:fe:07","10.41.23.20","fe80::250:56ff:fe90:fe07","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37934","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 3f 96 41 bb c3 ba-0f 2b 55 5e 03 95 57 72","No Asset Tag","'+02:00","2026-04-16T14:43:36.000+02:00","cybreconcile","Cloud Agent","38a94212-add9-4f23-a636-ec8a78fefca2","2023-10-26T11:39:01.000+02:00","2026-04-22T11:21:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,Production,flux_libre,FreeFlow","141.0" +"195798232","241931296","vpbotapps1.sanef.groupe","","00:50:56:90:20:d6","10.41.23.14","fe80::250:56ff:fe90:20d6","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48013","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c3 80 01 f1 a1 19-c7 71 bd 66 db 88 44 03","No Asset Tag","'+02:00","2026-04-16T10:57:27.000+02:00","cybreconcile","Cloud Agent","cd6b5702-76f4-42b4-bd7d-c780ca442252","2023-10-26T11:59:07.000+02:00","2026-04-22T11:30:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,FreeFlow,flux_libre","140.0" +"246263460","286957595","vraptbjup1","","00:50:56:9c:68:1f","10.45.10.163","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 73 71 b0 27 0c f4-da e4 3a 1a 03 d0 f9 22","No Asset Tag","'+02:00","2026-03-23T12:26:07.000+02:00","cybadmsys","Cloud Agent","d49a03b3-702f-4f64-9629-4074ab9b2665","2024-06-25T09:57:21.000+02:00","2026-04-22T11:35:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent,BDD,Recette,DSI","65.0" +"191422143","239727391","vibooosea1.sanef.groupe","","00:50:56:90:d0:d2","10.41.22.200","fe80::250:56ff:fe90:d0d2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 60 1e 2d 60 a3 9f-25 e1 a1 e1 07 6a f6 13","No Asset Tag","'+02:00","2026-03-17T16:23:43.000+02:00","cybreconcile","Cloud Agent","4fc0b10a-d5c0-4440-8e54-b5a86c892f55","2023-10-04T17:50:33.000+02:00","2026-04-22T11:31:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,FreeFlow,Flux Libre,Cloud Agent,Linux Server,Production","141.0" +"223188899","255081188","ls-chamant","LS-CHAMANT","00:50:56:90:D9:3F","10.142.3.20","fe80::6c8e:7198:837b:9d82","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 65 8e f1 4e f0 b8-9b ea 19 92 44 b5 42 47","NoAssetTag","'+02:00","2026-03-05T12:44:09.000+02:00","svpadmin","Cloud Agent","6eb4930d-0d47-4e5c-b8fe-5faaa85d229b","2024-03-18T18:16:08.000+02:00","2026-04-22T11:20:18.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,SVP,Péage,Haute,High,Production,Cloud Agent,Windows Server","640.0" +"323216445","329822505","PCB23771.sanef.groupe","PCB23771","6C:0B:5E:EE:93:6D","10.5.31.60","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H5C","","'+02:00","2026-04-03T09:56:50.000+02:00","SANEF\poudras","Cloud Agent","1faf0476-5866-4eba-bf9a-94f2a2fb34f6","2025-05-09T15:14:04.000+02:00","2026-04-22T09:28:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"395126369","359320782","PCB20606.sanef.groupe","PCB20606","BC:0F:F3:3D:68:2B","10.205.0.101,10.4.31.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSD","","'+02:00","2026-04-22T08:33:54.000+02:00","SANEF\lambert","Cloud Agent","fb5fe05c-3616-4e69-bb14-158e359cd63e","2026-01-26T18:28:52.000+02:00","2026-04-22T10:39:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","351.0" +"186524683","236837691","vpiadawdc4.sanef-int.adds","VPIADAWDC4","00:50:56:9A:8B:A2","10.44.3.7","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1a 12 fb 5e e9 b1 6e-0d e3 d2 81 a1 4c 96 b8","NoAssetTag","'+02:00","2026-03-23T15:30:19.000+02:00","SANEF-INT\A17402","Cloud Agent","efb70f52-00dd-46d1-afb1-9b8f984dc9d6","2023-09-06T16:17:11.000+02:00","2026-04-22T11:17:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,OS-WIN-SRV DYN,AD","250.0" +"354672880","342490001","vpdsiarad1.sanef.groupe","","00:50:56:94:27:ba","10.44.5.195","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 14 6a 29 aa 1d 18 c4-2e 88 c9 f2 81 5a 1c c0","No Asset Tag","'+02:00","2026-03-24T10:54:33.000+02:00","cybsupsys","Cloud Agent","b96d30e4-ca8d-4182-919d-ff2042485f53","2025-08-26T16:06:56.000+02:00","2026-04-22T11:20:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Radius,Production,Linux Server,Cloud Agent","152.0" +"322656204","329610125","PCB23755.sanef.groupe","PCB23755","6C:0B:5E:EE:93:2B","10.5.31.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H41","","'+02:00","2026-04-17T18:31:27.000+02:00","SANEF\floquet","Cloud Agent","8a57273c-3908-41c2-8f7b-3d3c2cf0da4f","2025-05-07T16:46:33.000+02:00","2026-04-22T09:27:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"377717881","352168080","vdpatbsip1.sanef-rec.fr","","00:50:56:9c:0c:0c","10.45.9.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 2a 35 aa d2 3c b2-c8 27 37 20 22 c4 2d 34","No Asset Tag","'+02:00","2026-04-07T10:38:58.000+02:00","sipat","Cloud Agent","213e9236-7d67-4ff2-9606-768952003ad5","2025-11-19T12:07:59.000+02:00","2026-04-22T11:55:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","65.0" +"321023093","328907271","PCB24034.sanef.groupe","PCB24034","EC:4C:8C:C0:25:88","10.205.0.78,192.168.1.69","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDY","","'+02:00","2026-04-13T08:15:32.000+02:00","SANEF\love","Cloud Agent","111b7098-547a-4c29-9057-42601c170252","2025-04-30T15:01:17.000+02:00","2026-04-22T11:34:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"378007417","352289574","PCB21273.sanef.groupe","PCB21273","D0:AD:08:0C:8D:08","10.205.0.37,192.168.1.105","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GJZ","","'+02:00","2026-04-14T14:43:30.000+02:00","SANEF\ZEROUALI","Cloud Agent","4e111736-7c70-4efe-b6bc-a3f796e198f6","2025-11-20T11:22:23.000+02:00","2026-04-22T11:59:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"219821714","253603316","ls-srom-bpv","LS-SROM-BPV","00:50:56:90:40:2C","10.212.26.201","fe80::3bca:2f5f:25b7:8172","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3193","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 10 db 76 9a d1 fa c1-30 00 94 8f 39 42 de 42","NoAssetTag","'+02:00","2026-03-03T12:34:57.000+02:00","svpadmin","Cloud Agent","9673d92a-a712-4bb6-8f98-436ab9c49b98","2024-03-04T11:55:04.000+02:00","2026-04-22T09:27:06.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,SVP,VRF_PEAGE_DC,High,Péage,Production,Cloud Agent","508.0" +"127861191","190912614","VPBURADHCP2.sanef.groupe","VPBURADHCP2","00:50:56:82:62:12","10.30.12.42","fe80::ac7a:6971:1df6:6e87","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 b6 f0 60 c3 43 59-8a f1 69 36 77 44 67 35","NoAssetTag","'+02:00","2026-04-01T14:15:33.000+02:00","SANEF.GROUPE\bmiad-ext@sanef.com","Cloud Agent","ac945445-ce19-41ad-baa8-56e357d0cd22","2022-06-14T15:59:03.000+02:00","2026-04-22T09:26:43.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Windows Server,VRF_INCONNUE,OS-WIN-SRV DYN,Critical,DHCP,High,Cloud Agent,Production,Réseaux et Télécom","848.0" +"208776231","248746835","vibotarmq1.sanef.groupe","","00:50:56:90:b2:64","10.41.23.141","fe80::250:56ff:fe90:b264","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 89 39 6b 48 96 4c-d8 bc aa 1f cb 1a f6 db","No Asset Tag","'+02:00","2026-03-17T11:49:24.000+02:00","cybreconcile","Cloud Agent","0c4f3d39-21bb-4068-b9ab-68be3541b623","2024-01-10T12:58:43.000+02:00","2026-04-22T10:48:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,FreeFlow,flux_libre,Flux Libre,OS-LIN-SRV DYN","141.0" +"411102519","365542324","PCB25944.sanef.groupe","PCB25944","C4:0F:08:B4:3A:25","10.255.1.168","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342227","","'+02:00","2026-04-17T09:04:24.000+02:00","SANEF\THOMASAU","Cloud Agent","21a38149-7faf-4224-8dd2-b19a0d395e9f","2026-03-24T16:14:54.000+02:00","2026-04-22T11:27:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"196663142","242432307","vpboobsql1.sanef.groupe","","00:50:56:90:0a:8a","10.41.22.133,10.41.22.145","fe80::250:56ff:fe90:a8a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 53 ab fa da 5a 83-0a 5a 28 98 b3 be b8 b4","No Asset Tag","'+02:00","2026-04-07T12:26:31.000+02:00","cybreconcile","Cloud Agent","7ba6ea7c-6f04-46d4-aa2e-b54aa3838cd1","2023-10-31T18:19:55.000+02:00","2026-04-22T11:34:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Flux Libre,flux_libre,Production","334.0" +"356292342","343241127","vrdsiadep1.sanef-rec.fr","","00:50:56:9c:26:44","10.45.7.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 36 54 65 18 a0 e6-ad 53 24 7d 33 6f d7 ba","No Asset Tag","'+02:00","2026-04-14T11:11:13.000+02:00","cybroasys","Cloud Agent","356f6da7-2195-4d61-bc91-762e197d3a0e","2025-09-02T11:03:45.000+02:00","2026-04-22T11:37:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent","331.0" +"335928595","336780144","vrrpsangx1.sanef-rec.fr","","00:50:56:9c:5b:78","10.45.14.228","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9b a2 72 85 7c 69-27 91 bd 43 a6 92 ba 7e","No Asset Tag","'+02:00","2026-02-23T10:50:21.000+02:00","cybintsys","Cloud Agent","f23ce48a-cce3-452a-961c-1b6c0f8158e7","2025-06-24T10:58:05.000+02:00","2026-04-22T10:59:36.000+02:00","x86_64","2","SCA,VM,GAV","Péage,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server","140.0" +"347738945","339369663","MTO21619.sanef.groupe","MTO21619","D0:AD:08:A4:4E:4B","10.199.31.2","fe80::f51c:e07f:3783:c4b2","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.2428) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711KG","","'+02:00","2026-04-07T13:16:23.000+02:00","SANEF\meteonewsW11","Cloud Agent","b2b1ff9a-d257-4c39-895e-02bdd6f9d040","2025-07-31T10:07:37.000+02:00","2026-04-22T09:25:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"355147671","342736431","PMS20971.sanef-int.adds","PMS20971","BC:0F:F3:87:6F:90","10.44.201.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LL3","","'+02:00","2026-04-20T16:12:36.000+02:00","SANEF-INT\solagnac","Cloud Agent","70350a4b-026a-4b44-8a19-418d646921a4","2025-08-28T12:06:04.000+02:00","2026-04-22T09:25:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,TAG-CAPIV,TAG-SIC,Workstation,Cloud Agent","349.0" +"373868890","350360157","VMMVSCC2.sanef-int.adds","VMMVSCC2","00:50:56:90:16:D1","10.41.7.251","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 69 f7 72 58 e9 e7-66 50 ac c1 f6 2b 3f ff","NoAssetTag","'+02:00","2026-04-16T16:49:40.000+02:00","UserPCT","Cloud Agent","89ed0f46-000a-4da5-8b7b-7d91687a72e0","2025-11-03T16:06:40.000+02:00","2026-04-22T09:25:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"392480138","358246420","vrvpnaaov2.recette.adds","VRVPNAAOV2","00:50:56:9C:CA:FF, 00:50:56:9C:38:34","192.168.188.20,10.205.10.4","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 1c 5b 14 bc df a0 6c-55 78 f7 73 4e 2e c4 ee","NoAssetTag","'+02:00","2026-02-16T16:30:36.000+02:00","recette.adds\SBP01336@recette","Cloud Agent","e61ac537-e955-435a-b06d-06c5643b81c4","2026-01-15T19:49:30.000+02:00","2026-04-22T09:25:32.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,High,TAG-SRVEXPOSEINTERNET,Compte & Acces,Haute,DSI","595.0" +"130590699","192838403","vrameaoct1.sanef.groupe","","00:50:56:82:06:1f","10.45.2.80","fe80::250:56ff:fe82:61f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 91 24 d3 33 d0 86-74 d4 63 bd 71 07 c5 8c","No Asset Tag","'+02:00","2026-01-14T11:19:29.000+02:00","delcour","Cloud Agent","69ca43f0-8e14-4a5d-9390-b03fcbb5cf70","2022-07-07T12:14:57.000+02:00","2026-04-22T11:37:37.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,OS-LIN-SRV DYN,OCTAN,MID-APACHE-TOMCAT DYN,VRF_INCONNUE,Recette","510.0" +"382506671","354005588","PCB22323.sanef.groupe","PCB22323","D0:AD:08:A3:7C:FE","10.252.42.148","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ9","8CC3502YZ9","'+02:00","2026-03-29T09:12:23.000+02:00","SANEF\nlom","Cloud Agent","3373091a-4fe2-4d35-aef7-de13bfd7531f","2025-12-08T15:54:16.000+02:00","2026-04-22T09:25:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"280843592","305646174","PCB22510.sanef.groupe","PCB22510","D0:AD:08:AA:50:84","10.208.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L3","","'+02:00","2026-04-22T08:12:11.000+02:00","SANEF\mocklyn","Cloud Agent","340a51c7-38e5-47e8-99e6-fa257366fb7b","2024-11-20T18:42:19.000+02:00","2026-04-22T12:02:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"324685105","330335438","PCB20743.sanef.groupe","PCB20743","58:1C:F8:EA:54:11","10.255.4.203,10.206.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DSC","","'+02:00","2026-04-13T10:36:10.000+02:00","SANEF\brongniart","Cloud Agent","7c619410-99c3-4135-a9e2-b1f0ab54188d","2025-05-14T12:02:14.000+02:00","2026-04-22T11:44:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","59.0" +"331119694","","PCB21177.sanef.groupe","PCB21177","D0:AD:08:E4:A1:8A","10.101.243.174","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HW9","","'+02:00","2026-04-14T17:23:44.000+02:00","SANEF\ROUVEL","Cloud Agent","00cf2620-22d3-4875-be60-bf1933c1d5ba","2025-06-05T11:55:17.000+02:00","2026-04-22T09:24:41.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"417348859","368155740","PCB20721.sanef.groupe","PCB20721","58:1C:F8:EB:3F:ED","10.101.243.18,192.168.2.132","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224CRX","","'+02:00","2026-04-20T10:52:05.000+02:00","SANEF\goumidi-ext","Cloud Agent","da0e3219-4136-4d58-9226-93c307b76c83","2026-04-20T09:07:09.000+02:00","2026-04-22T11:29:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"414070005","366934358","vpdsiasta2","VPDSIASTA2","00:50:56:90:C3:17","192.168.19.5","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","4095","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 4b 1a 43 1a 86 a4-73 0d 57 dd 41 be d0 83","NoAssetTag","'+02:00","2026-04-08T11:40:37.000+02:00","SANEF-INT\b03987","Cloud Agent","c74ddede-22d4-47da-b7f3-1e2a207d7fdc","2026-04-07T16:14:15.000+02:00","2026-04-22T09:24:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","245.0" +"216910714","252328115","vppeaabst3.sanef.groupe","","00:50:56:90:e3:b2","10.41.20.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 28 89 8d ba 81 f2-cf bf d5 9e ee c5 98 8c","No Asset Tag","'+02:00","2026-04-01T14:32:09.000+02:00","root","Cloud Agent","97b2d5d3-9e23-444a-b621-4dde2406819f","2024-02-19T14:51:50.000+02:00","2026-04-22T11:23:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,MID-NGINX DYN","327.0" +"401525321","361781537","PCV20872.sanef-int.adds","PCV20872","30:13:8B:6C:58:90","10.100.7.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q7X","","'+02:00","2026-02-17T17:19:37.000+02:00","Operateur","Cloud Agent","70ee4747-576a-45d3-8b38-a99c6b499b5f","2026-02-17T17:22:54.000+02:00","2026-04-22T09:24:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"329216178","","PCB21109.sanef.groupe","PCB21109","E4:60:17:CA:2F:6A","192.168.1.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764M2","","'+02:00","2026-04-20T09:41:43.000+02:00","SANEF\MANOUBA-ext","Cloud Agent","e64e25cf-fea3-4061-81d9-9094a95ca75d","2025-06-02T15:28:56.000+02:00","2026-04-22T09:24:11.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"176407089","229980116","vvbotbsql2.recette.adds","VVBOTBSQL2","00:50:56:9C:54:77","10.45.6.151","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 53 33 6e ce c3 e9-d6 54 d4 56 62 3b 08 6c","NoAssetTag","'+02:00","2026-03-10T12:47:12.000+02:00","RECETTE\b03987","Cloud Agent","8ef0a755-60c5-4dbc-8858-bfc5c3418d6a","2023-06-29T12:15:23.000+02:00","2026-04-22T11:21:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Windows Server,BDD-SQL DYN,Recette,OS-WIN-SRV DYN,flux_libre,FreeFlow","258.0" +"129933839","192383567","vampsycapp1.sanef.groupe","VAMPSYCAPP1","00:50:56:82:3B:B1","10.41.40.100","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24130)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","32768","Phoenix Technologies LTD 6.00","VMware-42 02 78 25 f9 51 27 d7-8c 62 04 e5 36 57 7f ae","NoAssetTag","'+01:00","2023-01-12T09:27:59.000+02:00","administrateur","Cloud Agent","0dbe825b-a6ef-4355-a084-d97c3fc92f50","2022-07-01T09:22:25.000+02:00","2026-04-22T09:24:05.000+02:00","64 bits","3","SCA,VM,PM,GAV","Windows Server 2008,Production,Sans,Patrimoine,Cloud Agent,Windows Server,MID-APACHE-TOMCAT DYN,SIG,DEX,OS-WIN-SRV DYN,Obsolete,VRF_TRAFIC_DC","530.0" +"200710325","244490967","vppeahbst1.sanef.groupe","","00:50:56:90:5f:20","192.168.31.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 24 00 49 92 a6 38-67 0d 23 53 6e bd 74 64","No Asset Tag","'+02:00","2026-04-02T06:52:57.000+02:00","root","Cloud Agent","a87f553d-d953-4403-97c1-3f7efa4e73bb","2023-11-24T12:50:45.000+02:00","2026-04-22T09:23:54.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,FreeFlow,Flux Libre,flux_libre","132.0" +"382419017","353968245","PCB25800.sanef.groupe","PCB25800","F8:ED:FC:AB:02:02","10.205.0.24,10.252.42.153","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW2","","'+02:00","2026-04-20T15:16:17.000+02:00","SANEF\NASRALLAH","Cloud Agent","59bdf40b-a40e-43d0-9651-07f80a56a2cd","2025-12-08T10:12:20.000+02:00","2026-04-22T09:23:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"185591823","236237663","sppeaanvr27","SPPEAANVR27","D4:F5:EF:A6:65:95","10.41.7.126","fe80::86e3:1c9e:f2fe:2879","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ23300BQ9","","'+02:00","2026-02-09T11:14:09.000+02:00","Administrateur","Cloud Agent","a063ab9c-a5d5-4f50-88f8-44b9cbdc1e56","2023-09-01T10:04:47.000+02:00","2026-04-22T09:23:22.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN","523.0" +"384021056","354746955","PCV22833.sanef-int.adds","PCV22833","D0:AD:08:A3:E7:94","10.1.6.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YMM","","'+02:00","2026-02-26T17:37:30.000+02:00","Operateur","Cloud Agent","25bdbb4d-3ca7-42db-998f-52aac7f365a8","2025-12-15T15:24:08.000+02:00","2026-04-22T09:23:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"354362166","342354846","PCB20719.sanef.groupe","PCB20719","BC:0F:F3:3D:18:F4","10.4.31.70","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DSW","","'+02:00","2026-04-20T23:44:48.000+02:00","SANEF\EGRET","Cloud Agent","185e9610-fa5a-4edd-90c4-609c3bd61cec","2025-08-25T14:42:39.000+02:00","2026-04-22T09:23:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"320286752","328630648","PCB23589.sanef.groupe","PCB23589","6C:0B:5E:EC:ED:3F","10.12.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8G","","'+02:00","2026-04-20T14:49:53.000+02:00","SANEF\hochlander","Cloud Agent","de9a12c2-7758-4c7c-bf3f-50ca080a3aa3","2025-04-28T15:28:41.000+02:00","2026-04-22T11:43:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"321605793","329101496","PCB23793.sanef.groupe","PCB23793","6C:0B:5E:EE:93:CC","10.202.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H43","","'+02:00","2026-04-10T10:07:38.000+02:00","SANEF\vernichon","Cloud Agent","080f01d2-dce0-409f-83d0-73ab1eb61a6f","2025-05-02T16:10:17.000+02:00","2026-04-22T11:15:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"195405316","241775894","vpbotangx1.sanef.groupe","","00:50:56:90:3d:0e","10.41.23.5","fe80::250:56ff:fe90:3d0e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11728","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 2e e4 cb 20 8b 22-8e 5b 7a e8 1c ff 15 a2","No Asset Tag","'+02:00","2026-04-16T10:09:04.000+02:00","cybreconcile","Cloud Agent","9a3c5563-a956-45ac-a79a-887c2907085d","2023-10-25T00:17:46.000+02:00","2026-04-22T11:34:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,flux_libre,FreeFlow","140.0" +"151063467","206019566","PCB16012.sanef.groupe","PCB16012","F4:4E:E3:C2:DB:D9","10.255.2.216","fe80::2e8:3b5f:7eaa:2101","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC1292851","8CC1292851","'+02:00","2026-03-17T02:19:45.000+02:00","SANEF\PCI-SAPN","Cloud Agent","7391519d-8ab9-4d3a-bec1-b3b4843ca9a6","2022-12-08T04:01:21.000+02:00","2026-04-22T09:22:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"339876040","","PCB17065.sanef.groupe","PCB17065","DC:21:48:FD:24:92","10.205.1.8,192.168.1.107","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","1","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15664","HP T72 Ver. 01.06.03","5CD1438406","","'+02:00","2026-03-29T09:23:37.000+02:00","SANEF\BARBIER-ext","Cloud Agent","75347681-098d-4d8b-8b8c-fed99f23ffcc","2025-07-07T16:52:45.000+02:00","2026-04-22T09:22:38.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"177128653","230500289","MTR-2Q3J8Y3","MTR-2Q3J8Y3","6C:3C:8C:3D:5C:59","10.200.32.207","fe80::a4b6:49f8:9a23:f58","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","2Q3J8Y3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","59dc24c5-cf6b-4faf-9d92-a626bd033272","2023-07-04T22:06:52.000+02:00","2026-04-22T09:22:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"176981288","230399402","MTR-4Q3J8Y3","MTR-4Q3J8Y3","6C:3C:8C:3D:5C:4E","10.200.32.206","fe80::93fd:e837:5c7f:880e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","4Q3J8Y3","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","952e7e22-2d76-44da-805d-b8baf72c105d","2023-07-03T22:57:23.000+02:00","2026-04-22T09:22:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"322062131","329336752","PCB21577.sanef.groupe","PCB21577","D0:AD:08:A3:E6:D1","10.3.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNX","8CC3502YNX","'+02:00","2026-03-28T09:13:17.000+02:00","SANEF\guinard","Cloud Agent","b6890b77-7aa8-4bbd-aa0b-bd584e0c30ec","2025-05-05T14:58:56.000+02:00","2026-04-22T09:22:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"308848238","323875091","vrdsibetc1.sanef-rec.fr","","00:50:56:9c:97:30","10.45.1.176","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c bc dc 81 c4 8f 8f-fe bb cb a3 b5 35 b3 1c","No Asset Tag","'+02:00","2026-01-06T13:16:38.000+02:00","cybadmbdd","Cloud Agent","f18ad314-5889-40df-84bc-da4e14f2e1dd","2025-03-17T18:36:34.000+02:00","2026-04-22T10:23:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,BDD,Recette","141.0" +"394284538","358964979","MIO22805.sanef-int.adds","MIO22805","D0:AD:08:A3:7B:68","10.100.40.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YWW","","'+02:00","2026-03-24T12:01:17.000+02:00","Operateur","Cloud Agent","19b3975e-a218-4e8c-981e-142440228fc7","2026-01-22T13:41:40.000+02:00","2026-04-22T09:21:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"244006598","283218500","MTO22783.sanef.groupe","MTO22783","D0:AD:08:A7:28:5E","10.107.31.10","fe80::cab7:e94c:b00b:a861","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6491) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM4","","'+02:00","2026-03-24T15:20:32.000+02:00","SANEF\meteonewsW11","Cloud Agent","b7c8136f-1466-4048-a664-f17e5a34069c","2024-06-14T14:23:56.000+02:00","2026-04-22T11:17:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"269860731","299466803","SVP21075.sanef-int.adds","SVP21075","D0:AD:08:A3:7C:CB","10.5.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YY2","","'+02:00","2026-04-20T16:13:27.000+02:00","Superviseur","Cloud Agent","71304c9c-aa02-4f23-8bde-db7ebe893a2d","2024-10-03T13:18:23.000+02:00","2026-04-22T09:21:17.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Cloud Agent,Workstation","686.0" +"130588872","192836204","vmamrstg2","","00:50:56:82:2B:DE, 00:50:56:82:7A:6C, 00:50:56:82:53:09","10.32.16.11,10.30.16.11,10.33.16.11","fe80::250:56ff:fe82:2bde,fe80::250:56ff:fe82:7a6c,fe80::250:56ff:fe82:5309","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f7 1e 5b 10 bc d9-1c a0 a7 e3 c8 b3 d1 ca","No Asset Tag","'+02:00","2025-10-09T11:39:29.000+02:00","cybexpapp","Cloud Agent","91d95ee7-0c3c-4d21-b9d3-ac7535dfc197","2022-07-07T12:04:10.000+02:00","2026-04-22T11:02:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,Sans,Trafic,Obsolete,Cloud Agent,Linux Server,SSTG,log4j,DEX,VRF_INCONNUE,OS-LIN-SRV DYN","699.0" +"334435348","336780124","vrdsiasaf2.sanef-rec.fr","","00:50:56:9c:30:bd, e6:86:b8:72:47:09, 22:74:c7:88:61:f8","192.168.19.25,10.88.0.1","fe80::e486:b8ff:fe72:4709,fe80::2074:c7ff:fe88:61f8","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cf 9d 42 d5 c9 83-0d a2 ce 1c ad 0f a7 bf","No Asset Tag","'+02:00","2026-04-20T17:36:47.000+02:00","cybadmroot","Cloud Agent","1f12e31f-8021-4ebc-9f9c-64539c39a30d","2025-06-18T14:36:16.000+02:00","2026-04-22T11:16:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Radius,Recette,OS-LIN-SRV DYN","66.0" +"350543270","340465068","PCB25816.sanef.groupe","PCB25816","28:95:29:1A:F1:99","192.168.1.81","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVZ","","'+02:00","2026-04-13T10:39:50.000+02:00","SANEF\THEVENINO","Cloud Agent","8544ace6-6c54-4e93-a1f5-f5947ad6fc85","2025-08-11T12:19:48.000+02:00","2026-04-22T11:13:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"373541986","350229080","PCB23676.sanef.groupe","PCB23676","6C:0B:5E:EE:DC:ED","10.219.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5Y","","'+02:00","2026-04-07T10:09:16.000+02:00","SANEF\beaucamp","Cloud Agent","8ede0d3e-9407-4d34-bee5-c434aea3d5aa","2025-11-02T09:45:51.000+02:00","2026-04-22T11:17:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"128594047","191410264","ls-hordain","LS-HORDAIN","00:50:56:90:AE:3D","10.142.1.20","fe80::dc88:56f4:5bd:f68f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a5 ae cd 37 88 3d-80 d0 35 d7 d5 26 7e be","NoAssetTag","'+02:00","2026-03-05T16:20:07.000+02:00","svpadmin","Cloud Agent","24fd069f-0efb-4cf7-a3f6-3952c19a3cac","2022-06-21T11:42:21.000+02:00","2026-04-22T09:20:38.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,SVP,Haute,High,Péage,Production,VRF_INCONNUE,DEX","635.0" +"222570163","254822434","vpdsiaads1.sanef.groupe","VPDSIAADS1","00:50:56:8D:26:85","10.44.2.166","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 0d cb 8a 38 6c a8 38-a8 e6 97 0c 1a 10 bb 6b","NoAssetTag","'+02:00","2026-01-19T11:24:36.000+02:00","SANEF\ndead","Cloud Agent","15cf5ecf-c679-4a96-8236-f46f10635bf9","2024-03-15T16:05:17.000+02:00","2026-04-22T09:20:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,AD,DSI","349.0" +"381242008","353494697","PCB18231.sanef.groupe","PCB18231","5C:60:BA:59:EC:D8","10.100.39.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.11.00","8CC2250Y94","","'+02:00","2026-04-02T20:59:48.000+02:00","SANEF\malaise","Cloud Agent","4069b313-4f5f-4ddb-93bb-f4b736101b38","2025-12-03T11:59:00.000+02:00","2026-04-22T09:20:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"384204424","354827057","PCB24192.sanef.groupe","PCB24192","10:B6:76:97:D4:C3","10.12.31.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKV","","'+02:00","2026-04-21T15:09:59.000+02:00","SANEF\prola","Cloud Agent","1ff5b2a8-6378-45d4-b4e6-fe4bb26738b0","2025-12-16T09:53:59.000+02:00","2026-04-22T09:19:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"164432571","222938066","PCM18235.sanef.groupe","GTC18235","5C:60:BA:59:EB:2F","10.4.210.20","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y83","8CC2250Y83","'+02:00","2026-04-01T11:37:52.000+02:00","gtc-client","Cloud Agent","c50d66e5-da7a-43bf-846b-cc36478f18a5","2023-03-27T16:06:25.000+02:00","2026-04-22T09:19:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","341.0" +"314384921","326407133","vrpwdamft1.sanef-rec.fr","","00:50:56:9c:a6:f8","10.45.14.99","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c eb 57 47 6b 95 2e-35 89 f1 f3 93 72 36 7f","No Asset Tag","'+02:00","2026-03-03T15:14:49.000+02:00","cybintsys","Cloud Agent","da618b04-5c5b-41b7-af12-4070a153957f","2025-04-07T15:27:16.000+02:00","2026-04-22T11:15:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","141.0" +"151119782","206064706","PCB16046.sanef.groupe","PCB16046","F4:4E:E3:B5:B4:C7","10.255.4.237","fe80::105e:e86b:5e8c:3d80","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC1292844","8CC1292844","'+02:00","2026-04-16T06:03:08.000+02:00","SANEF\PCI-SAPN","Cloud Agent","e034cb65-5725-4a1d-b3ea-7a0978955a71","2022-12-08T13:25:03.000+02:00","2026-04-22T09:19:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,VRF_INCONNUE","341.0" +"324673744","330329922","PCB23748.sanef.groupe","PCB23748","6C:0B:5E:EE:93:42","10.5.31.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H54","","'+02:00","2026-04-08T16:12:57.000+02:00","SANEF\vermersch","Cloud Agent","584980ae-a528-4e80-82d7-0ce747d71634","2025-05-14T11:22:51.000+02:00","2026-04-22T11:41:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"365862687","347089712","vppcmardp1.sanef-int.adds","VPPCMARDP1","00:50:56:94:59:F0","10.44.6.228","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 14 4c 0b 72 3b fc dc-88 fd e3 38 b6 df 6e ca","NoAssetTag","'+02:00","2025-09-25T17:39:43.000+02:00","Administrateur","Cloud Agent","9cb08c2e-2709-42c9-b8e1-02fe2d42f718","2025-10-06T16:00:07.000+02:00","2026-04-22T09:19:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","346.0" +"378081562","352327711","PCV21568.sanef-int.adds","PCV21568","D0:AD:08:A3:7C:CC","10.210.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YY3","","'+02:00","2026-04-21T20:59:56.000+02:00","Operateur","Cloud Agent","07e4dd59-b5f7-42f9-8eee-74eccd8664cf","2025-11-20T16:53:35.000+02:00","2026-04-22T11:24:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"393319958","358592292","VRVPNARAD2.recette.adds","VRVPNARAD2","00:50:56:9C:57:2E","10.45.14.137","fe80::5d01:71f5:3806:a503","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24241)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 1c 48 50 b9 78 ff 6c-72 93 79 f8 a0 74 6f fb","NoAssetTag","'+01:00","2026-01-19T14:10:17.000+02:00","recette.adds\A17904","Cloud Agent","be5196b7-8338-4a4c-9252-fddbb87544c4","2026-01-19T13:40:55.000+02:00","2026-04-22T09:18:50.000+02:00","64 bits","2","SCA,VM,PM,GAV","Obsolete,Windows Server 2008,Cloud Agent,OS-WIN-SRV DYN,Recette,Radius,DSI","358.0" +"343658306","338037179","PCB21079.sanef.groupe","PCB21079","64:4E:D7:B7:03:5C","10.220.31.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD336NWF7","","'+02:00","2026-04-16T10:36:45.000+02:00","SANEF\buchy","Cloud Agent","2f697bcb-43a2-4c90-b973-64dfcc2ed328","2025-07-21T11:10:04.000+02:00","2026-04-22T09:18:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"215213361","251725808","ls-fecamp","LS-FECAMP","00:50:56:90:52:F6","10.41.2.85","fe80::e219:a7df:edf5:b512","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 14 c0 3c e8 78 97-63 00 8b 0f 83 d0 ac f7","NoAssetTag","'+02:00","2026-04-02T14:17:53.000+02:00","svpadmin","Cloud Agent","b1ea819e-1f77-4091-be6a-1e5df02612de","2024-02-12T15:42:41.000+02:00","2026-04-22T09:18:45.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Péage,High,VRF_PEAGE_DC,VRF_BACKUP_DC,Production,SVP,DEX,OS-WIN-SRV DYN,Haute","633.0" +"340425872","","PCB21311.sanef.groupe","PCB21311","30:F6:EF:A6:94:01","10.205.0.126,192.168.0.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK8","","'+02:00","2026-04-22T09:06:34.000+02:00","SANEF\LAFANECHAIRE","Cloud Agent","597ce890-49fc-40d0-9670-2661d1d1ff27","2025-07-09T11:57:26.000+02:00","2026-04-22T09:18:33.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"174236004","228465185","sppeaanvr20","SPPEAANVR20","D4:F5:EF:8A:BB:C9","10.41.7.119","fe80::e171:d14e:2d1b:56e4","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ222807H5","","'+02:00","2026-02-24T11:30:13.000+02:00","admin_astia","Cloud Agent","17300772-663d-4f1b-8bad-30fae4ed503d","2023-06-13T11:52:27.000+02:00","2026-04-22T09:18:17.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN,DEX","524.0" +"327821307","","PCB23704.sanef.groupe","PCB23704","6C:0B:5E:ED:A2:5F","10.207.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4Y","","'+02:00","2026-04-14T13:51:35.000+02:00","SANEF\BOITHEAUVILLE","Cloud Agent","fe1c18be-3ef5-41d7-8e5e-5ac5948cecda","2025-05-28T16:03:17.000+02:00","2026-04-22T09:18:14.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"319344986","328395345","PCB22880.sanef.groupe","PCB22880","60:45:2E:11:61:2E","10.255.2.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLX","8CC3502YLX","'+02:00","2026-03-28T09:11:39.000+02:00","SANEF\bocquetp","Cloud Agent","063ac1c2-780d-48fb-a770-b118e659eae2","2025-04-25T11:01:08.000+02:00","2026-04-22T09:18:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"281019343","305755498","PCB21345.sanef.groupe","PCB21345","D0:AD:08:AA:50:35","10.202.31.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HK","","'+02:00","2026-04-02T08:26:31.000+02:00","SANEF\dutac","Cloud Agent","c0c93a6a-deef-4133-961f-222e4faeada3","2024-11-21T13:44:15.000+02:00","2026-04-22T10:58:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"245297076","286388417","MTO21617.sanef.groupe","MTO21617","D0:AD:08:A4:4D:B9","10.3.31.9","fe80::105d:ac51:2457:de8d","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5472) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JP","","'+02:00","2025-07-23T11:51:49.000+02:00","SANEF\meteonewsW11","Cloud Agent","bbd01cf1-9dca-4cbb-b927-3afbe82bf43a","2024-06-20T14:22:23.000+02:00","2026-04-22T09:18:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"128143157","191077229","VBURWDC2.sanef.groupe","VBURWDC2","00:50:56:82:52:8E","10.30.12.40","fe80::7014:70a5:68c4:26e6","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 15 6d 18 25 c8 17-e4 1a 7e 5c 79 e4 2a c1","NoAssetTag","'+02:00","2026-02-25T10:47:44.000+02:00","SANEF.GROUPE\ndead@sanef","Cloud Agent","e5142ccb-feb7-4072-80fe-75d764f1522e","2022-06-16T12:02:00.000+02:00","2026-04-22T10:55:23.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Critical,DSI,OS-WIN-SRV DYN,VRF_INCONNUE,Cloud Agent,AD,Windows Server,High,Sécurité IT,Production","834.0" +"323214900","329825072","vpgawagtw2.sanef.groupe","","00:50:56:90:af:75","192.168.19.69","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 a2 a7 3f 9c c9 45-93 6b dc 19 a0 61 18 92","No Asset Tag","'+02:00","2026-02-12T15:49:52.000+02:00","cybreconcile","Cloud Agent","eec93e93-8c18-4f5d-97cd-042afbb897d4","2025-05-09T15:39:10.000+02:00","2026-04-22T11:17:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Production,OS-LIN-SRV DYN","142.0" +"417998396","368435201","PCV21151.sanef-int.adds","PCV21151","D0-AD-08-A3-E7-29","10.209.7.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","8CC3502YXR","","'+02:00","","","Cloud Agent","9a24cbb6-9061-4b89-99b8-00751bbd1207","2026-04-22T09:17:40.000+02:00","2026-04-22T09:17:39.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"195878803","241974731","vpbotapps3.sanef.groupe","","00:50:56:90:76:49","10.41.23.16","fe80::250:56ff:fe90:7649","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 20 59 d5 ce 99 14-bc 60 18 a2 3f 67 4d d4","No Asset Tag","'+02:00","2026-04-16T11:25:45.000+02:00","cybreconcile","Cloud Agent","9aba982e-6ce9-477c-95e1-4033af8e070f","2023-10-26T22:36:47.000+02:00","2026-04-22T11:07:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,flux_libre,Production,FreeFlow","337.0" +"337904983","335605077","PCB21313.sanef.groupe","PCB21313","30:F6:EF:A5:F8:CF","10.255.4.185,10.255.4.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK9","","'+02:00","2026-04-20T08:32:43.000+02:00","SANEF\COLLIN","Cloud Agent","affba782-03e0-4234-9b6b-6f6b9c064530","2025-07-01T11:23:51.000+02:00","2026-04-22T11:06:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"228081514","257333517","MTR-JBD4804","MTR-JBD4804","6C:3C:8C:56:3C:4A","10.220.32.201","fe80::1acf:5ea8:e80c:bdf6","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","JBD4804","","'+02:00","2026-04-22T02:32:49.000+02:00","Skype","Cloud Agent","3581fabd-55ef-4925-bfb9-339dccff1dc7","2024-04-06T12:23:10.000+02:00","2026-04-22T09:17:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"195865806","241965090","MTR-3Q3J8Y3","MTR-3Q3J8Y3","6C:3C:8C:3D:5C:58","10.106.32.200","fe80::ea2d:4fb:fbdf:7e55","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","3Q3J8Y3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","e62ae7ef-28bc-4d33-855c-a3594c109ef1","2023-10-26T19:30:32.000+02:00","2026-04-22T09:17:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"417984458","368435200","PCB17963.sanef.groupe","PCB17963","70-A8-D3-85-75-E2, 70-A8-D3-85-75-E5, 84-69-93-E1-1A-AA, 70-A8-D3-85-75-E1","10.252.4.9","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045)","22H2","Computers / Unidentified","Computers","","","","","","5CG217247C","","'+02:00","","","Cloud Agent","e6994c46-1d84-4097-97a4-5c1e7f76f3d8","2026-04-22T09:17:05.000+02:00","2026-04-22T09:17:04.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"239805777","272494035","SVP20943.sanef-int.adds","SVP20943","BC:0F:F3:87:6F:A8","10.22.3.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLT","","'+02:00","2026-04-21T08:20:05.000+02:00","Superviseur","Cloud Agent","3068eda4-2f1d-43a5-9df6-af04d67d164f","2024-05-28T11:14:33.000+02:00","2026-04-22T09:17:01.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Cloud Agent,Workstation","686.0" +"131405384","193423787","vmzeus.sanef.groupe","","00:50:56:AC:00:D4","192.168.230.23","fe80::250:56ff:feac:d4","Linux / Server","The CentOS Project CentOS 6.3","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 2c bf eb 40 21 87 89-83 89 7e f9 55 05 97 8d","No Asset Tag","'+02:00","2023-01-12T08:58:29.000+02:00","cybreconcile","Cloud Agent","cf37f0d2-c026-4734-905d-405ee885e85c","2022-07-13T10:28:24.000+02:00","2026-04-22T11:25:17.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Cloud Agent,Linux Server,VRF_INCONNUE,TAG-SRVEXPOSEINDIRECT,DMZ,Trafic,Sans,Production,DEX,ServersInCyberark,log4j,Obsolete","704.0" +"335459248","334613200","PCB24106.sanef.groupe","PCB24106","48:EA:62:C8:93:55","10.1.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V70","","'+02:00","2026-04-10T12:11:12.000+02:00","SANEF\marteau","Cloud Agent","2f75d5ff-cd0c-4461-aedf-80f5947b44a3","2025-06-23T10:46:40.000+02:00","2026-04-22T11:17:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"398238102","360591179","vpdsibetc3.sanef.groupe","","00:50:56:9c:5c:2d","10.100.16.23","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 4f f3 e2 f9 ae f4-7c 6e c7 6a 08 df 0f fc","No Asset Tag","'+02:00","2026-02-11T18:52:14.000+02:00","cybadmbdd","Cloud Agent","abe171ad-3577-40ab-94e5-0b1c840ae86f","2026-02-06T13:31:16.000+02:00","2026-04-22T11:11:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","141.0" +"408850859","364704148","PCB18738.sanef.groupe","PCB18738","BC:0F:F3:3B:C9:EB","10.4.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D41","","'+02:00","2026-04-22T08:20:56.000+02:00","SANEF\gayr","Cloud Agent","7c5319b6-0b1a-4725-ac9b-8a8330bb8a4b","2026-03-16T19:15:13.000+02:00","2026-04-22T09:16:50.000+02:00","64-Bit","2","SCA,VM,GAV","Cloud Agent,Workstation","251.0" +"221336958","254247420","ls-maurepas","LS-MAUREPAS","00:50:56:90:05:0A","10.41.2.31","fe80::d9c:cf42:1198:8884","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 5b d4 aa 6d e3 7d-f2 67 88 9c 2b 38 35 5f","NoAssetTag","'+02:00","2026-03-02T10:22:14.000+02:00","svpadmin","Cloud Agent","062722b3-56c4-4ec6-a95a-0b374e4c9efc","2024-03-11T11:40:39.000+02:00","2026-04-22T09:16:48.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,SVP,Haute,DEX,VRF_PEAGE_DC,Production,High,Péage","635.0" +"213853706","251126285","spasuagsm2","","5c:ed:8c:3f:33:fc, 5c:ed:8c:3f:33:fd","10.41.40.207,10.43.4.207","fe80::5eed:8cff:fe3f:33fc,fe80::5eed:8cff:fe3f:33fd","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31672","HPE U32 07/14/2022","CZJ81900F1","","'+02:00","2025-06-16T15:47:42.000+02:00","cybastapp","Cloud Agent","8800916c-6443-4be9-8689-6b6841ddca21","2024-02-05T19:50:23.000+02:00","2026-04-22T11:03:48.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,MID-NGINX DYN,Cloud Agent,Linux Server,DSI,Obsolete,ASUR","524.0" +"127865511","190913856","VPAIIADNS1","VPAIIADNS1","00:50:56:82:7C:B9","192.168.2.20","fe80::94b8:1537:fac0:f118","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 90 78 52 3a f8 28-15 96 cf 41 4b 81 3f dc","NoAssetTag","'+02:00","2026-04-15T10:24:17.000+02:00","Administrateur","Cloud Agent","de3fe0bf-bfc9-43a5-a8d2-7a44d3b2f4cc","2022-06-14T16:17:10.000+02:00","2026-04-22T09:16:33.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Critical,Windows Server,OS-WIN-SRV DYN,DNS,High,TAG-SRVEXPOSEINTERNET,Production,Reseau & Telecom,DMZ,SED,Réseaux et Télécom,VRF_INCONNUE,Haute,Cloud Agent","0.0" +"395567531","359520752","vrsigaapp2.sanef-rec.fr","","00:50:56:9c:bc:3e","10.45.2.32","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c a3 8f 33 b2 56 99-1b 87 72 b5 4a ca 23 3a","No Asset Tag","'+02:00","2026-02-05T16:26:02.000+02:00","cybsupapp","Cloud Agent","7803e67a-7128-4ff4-beab-7e22ae0aeed1","2026-01-28T11:52:38.000+02:00","2026-04-22T11:24:25.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent","214.0" +"322379733","329453940","PCB22789.sanef.groupe","PCB22789","D0:AD:08:A3:E7:A8","10.1.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YL6","8CC3502YL6","'+02:00","2026-02-28T14:40:56.000+02:00","SANEF\bastienn","Cloud Agent","f0d2cee4-a97d-4b57-a631-61c1f4eafe16","2025-05-06T14:48:58.000+02:00","2026-04-22T09:16:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"227708370","257227447","ls-bonsecours","LS-BONSECOURS","00:50:56:90:E7:B6","10.41.2.24","fe80::b109:f1d3:21e8:dabf","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 85 63 5d ff a0 fe-d8 59 d4 19 07 c2 45 6c","NoAssetTag","'+02:00","2026-03-05T11:34:28.000+02:00","svpadmin","Cloud Agent","117617fd-0217-4dc2-a8c4-fedc56965743","2024-04-05T11:06:13.000+02:00","2026-04-22T09:15:35.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,VRF_PEAGE_DC,Péage,Production,SVP,High","508.0" +"296278413","317659764","REX21552.sanef-int.adds","REX21552","D0:AD:08:A3:E6:B6","10.100.91.80","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSH","","'+02:00","2026-03-31T22:45:15.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","598d7f7d-1e0b-40d3-ba3d-2f2538340d10","2025-01-30T17:51:34.000+02:00","2026-04-22T09:15:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"382445576","353976183","PCB25864.sanef.groupe","PCB25864","28:95:29:1A:FE:B9","10.255.2.190,10.255.2.183","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTM","","'+02:00","2026-04-17T08:24:03.000+02:00","SANEF\BRAUNV","Cloud Agent","f0528872-5c6d-4221-ad1c-e1fe116a087e","2025-12-08T11:12:31.000+02:00","2026-04-22T11:25:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","256.0" +"395087644","359305705","MIO22295.sanef-int.adds","MIO22295","D0:AD:08:A3:7D:E6","10.12.40.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YZ0","","'+02:00","2026-03-20T01:27:05.000+02:00","Operateur","Cloud Agent","6e35eb93-f268-4c85-828f-5335b7a537fc","2026-01-26T15:17:55.000+02:00","2026-04-22T09:15:14.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","686.0" +"368962198","348265321","PCB16110.sanef.groupe","PCB16110","50:81:40:B9:E0:84","10.220.31.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.22.00","5CG13363Y8","","'+02:00","2026-03-29T16:25:25.000+02:00","catherine.balland@sapn.fr","Cloud Agent","b8c5699f-6b44-4e22-a74e-2398ccc2bdaf","2025-10-15T16:41:45.000+02:00","2026-04-22T11:24:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","59.0" +"280845992","305646178","PCB22508.sanef.groupe","PCB22508","D0:AD:08:AA:50:98","10.202.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LR","","'+02:00","2026-04-14T12:57:07.000+02:00","SANEF\linsey","Cloud Agent","c104ecf3-de33-4d0b-b93d-7810c1af8c52","2024-11-20T18:41:56.000+02:00","2026-04-22T09:14:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"384053776","354760696","PCB21704.sanef.groupe","PCB21704","E4:60:17:CB:7C:99","10.205.0.105,10.255.2.230","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764GK","","'+02:00","2026-04-21T10:28:13.000+02:00","SANEF\demant-ext","Cloud Agent","e3a0aeec-aaf8-410a-8f4f-a6dc117c0cc1","2025-12-15T17:31:56.000+02:00","2026-04-22T11:19:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","240.0" +"292527147","315087804","VMXATR","VMXATR","00:50:56:82:50:8D","10.30.4.16","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5909) 64-Bit","23H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 20 e7 74 46 31 95-e3 ff 71 96 fe 53 33 cd","NoAssetTag","'+02:00","2025-10-24T11:51:17.000+02:00","SANEF\TRON","Cloud Agent","bfd3345d-2f6a-43dc-b5a1-7e3bd0940e2c","2025-01-15T19:13:56.000+02:00","2026-04-22T09:14:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"411855378","365824048","vpgraangx1.sanef.groupe","","00:50:56:90:8b:59","10.42.0.142","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 44 42 cd fa c0 bd-a4 c6 96 d6 0c 4a 13 af","No Asset Tag","'+02:00","2026-04-07T11:36:53.000+02:00","cybreconcile","Cloud Agent","a9b653c5-ab52-447c-95ce-7d1bf7895047","2026-03-27T12:14:02.000+02:00","2026-04-22T11:10:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,BDD-POS DYN","65.0" +"335450613","","PCB21363.sanef.groupe","PCB21363","D0:AD:08:AA:50:10","10.100.39.187","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GC","","'+02:00","2026-04-01T09:35:46.000+02:00","SANEF\NGATCHUINKOM-ext","Cloud Agent","4d5881d0-651a-4f0c-9706-d4bb4ddd0926","2025-06-23T10:02:38.000+02:00","2026-04-22T09:14:07.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"349735151","340111943","vrechbetl1.sanef-rec.fr","","00:50:56:9c:90:9a","10.45.11.205","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c bf da b2 9d 19 a5-a9 78 ff 0a 0c 62 87 03","No Asset Tag","'+02:00","2026-03-03T15:14:41.000+02:00","cybadmbdd","Cloud Agent","b09b590c-0132-4260-96f1-1ebd72a613ef","2025-08-07T10:26:35.000+02:00","2026-04-22T10:29:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,MID-NGINX DYN,BDD-POS DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","341.0" +"331182695","","PCB23554.sanef.groupe","PCB23554","6C:0B:5E:EC:3E:26","10.255.4.209,10.209.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9L","","'+02:00","2026-04-09T10:01:53.000+02:00","SANEF\cozettea","Cloud Agent","1aca768a-c5eb-41f2-b348-00dbdd4bed07","2025-06-05T15:42:42.000+02:00","2026-04-22T09:13:45.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"379762503","352976791","spbckamag4.sanef.groupe","","04:bd:97:22:cb:7c, 04:bd:97:22:cb:7d","10.42.16.76,10.43.1.37","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP260706B5","Unknown","'+02:00","2025-12-29T10:04:17.000+02:00","root","Cloud Agent","cb4430b2-9f67-42d2-95fa-e8725944b59e","2025-11-27T12:50:22.000+02:00","2026-04-22T11:26:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","330.0" +"163883347","219041521","vpppeaanvr1.sanef.groupe","VPPPEAANVR1","00:50:56:82:05:DB","10.41.79.50","fe80::ea49:724c:109e:bc32","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8146) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 13 c7 7b 8b f0 b9-33 dc 79 96 2b 02 c7 51","NoAssetTag","'+02:00","2026-01-08T17:00:26.000+02:00","SANEF\administrateur","Cloud Agent","2d3e48dd-065d-4e8f-8075-d5f73c8aef00","2023-03-22T15:00:58.000+02:00","2026-04-22T09:13:21.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN,DEX","510.0" +"240210698","274093899","vpbotardp1.sanef.groupe","VPBOTARDP1","00:50:56:90:85:F3","10.44.6.133","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3091) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 10 8f 5f de 7a 6c-45 1a fb 03 18 8b 22 60","NoAssetTag","'+02:00","2026-04-21T09:53:49.000+02:00","SANEF\ndead","Cloud Agent","5194e5a1-81d0-41f6-9b85-b4792dd37e37","2024-05-29T18:00:12.000+02:00","2026-04-22T09:13:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,Production,flux_libre,Flux Libre","344.0" +"326661934","331288841","vpvsampci1","","00:50:56:86:a6:2f","192.168.109.14","fe80::250:56ff:fe86:a62f","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 15 bb e6 f2 ce 4f-d9 ca da c3 6d 16 08 1e","No Asset Tag","'-04:00","2026-02-02T11:43:11.000+02:00","tbaad","Cloud Agent","6a2f41d1-c22e-4da7-bb28-e4f6c4561178","2025-05-22T17:19:59.000+02:00","2026-04-22T11:23:50.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server","52.0" +"326550094","","PCB18056.sanef.groupe","PCB18056","64:D6:9A:21:81:A8","10.255.1.192","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.19.00","5CG2376HRM","","'+02:00","2026-04-13T10:00:23.000+02:00","SANEF\BOUGAM-ext","Cloud Agent","055130cb-0f8f-488f-b864-f754878df337","2025-05-22T10:02:15.000+02:00","2026-04-22T09:13:11.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"387454382","356650111","PCB21205.sanef.groupe","PCB21205","D0:AD:08:AA:50:5C","10.220.31.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764JT","","'+02:00","2026-04-01T08:44:44.000+02:00","maryse.guchez@sapn.fr","Cloud Agent","400536d4-c796-4106-8311-84de2cb7e0ea","2026-01-02T13:06:17.000+02:00","2026-04-22T09:13:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"397490169","360376397","vmmvscdem5.sanef-int.adds","VMMVSCDEM5","00:50:56:90:EB:7A","10.41.7.239","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 07 51 05 bb f3 44-3a bd 9d cf 3c 2d 39 62","NoAssetTag","'+02:00","2026-02-05T12:59:37.000+02:00","Operateur","Cloud Agent","9f2d31c5-772a-41ca-b8db-bd3a42852b90","2026-02-04T18:58:42.000+02:00","2026-04-22T09:12:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"360465499","","PCB18488.sanef.groupe","PCB18488","D0:AD:08:AA:4F:ED","10.101.243.209","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764F7","","'+02:00","2026-04-15T12:11:36.000+02:00","SANEF\BLOMMAERS-ext","Cloud Agent","e76b5923-2e91-4a35-9a71-956b4522a53f","2025-09-17T10:45:14.000+02:00","2026-04-22T09:12:52.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"324041162","","PCB17959.sanef.groupe","PCB17959","84:69:93:E1:1A:90","10.205.0.131,10.200.31.68","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG217247K","","'+02:00","2026-03-31T09:01:17.000+02:00","nathalie.lucas@sapn.fr","Cloud Agent","ca82a0cc-a870-494d-8b13-e75433c08688","2025-05-12T13:11:51.000+02:00","2026-04-22T09:12:48.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"328573634","","PCB17653.sanef.groupe","PCB17653","D0:AD:08:E4:A1:34","10.101.243.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HV4","","'+02:00","2026-04-20T08:47:20.000+02:00","SANEF\OAKES","Cloud Agent","ced63ed6-a7e7-471f-8679-1cc5febfaeaf","2025-05-30T09:55:17.000+02:00","2026-04-22T09:12:41.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129846416","192318805","sppeaanvr3","SPPEAANVR3","98:F2:B3:2C:DF:09","10.41.7.102","fe80::a4c6:8217:b153:8c44","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLY","","'+02:00","2026-01-28T12:15:03.000+02:00","Administrateur","Cloud Agent","90f603c1-a753-449e-bfb5-91d6ff4dc81f","2022-06-30T18:33:47.000+02:00","2026-04-22T09:12:31.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,NVR,Production,Exploitation,Sans","523.0" +"198004081","243188362","vrsvpadev1","VRSVPADEV1","00:50:56:9C:7D:D4","10.45.9.180","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 10 24 8c 61 cd 65-6d 43 c9 56 52 4a 65 02","NoAssetTag","'+02:00","2026-03-03T15:14:41.000+02:00","gare","Cloud Agent","6c7de17f-5c05-474d-871b-ad1245e31e84","2023-11-08T11:42:17.000+02:00","2026-04-22T09:12:15.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Windows Server,BDD-SQL DYN,OS-WIN-SRV DYN,SVP","669.0" +"350890895","340948388","PCB22716.sanef.groupe","PCB22716","D0:AD:08:AA:50:4C","10.220.31.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764J9","","'+02:00","2026-04-01T08:43:46.000+02:00","SANEF\guchez","Cloud Agent","84c2f600-f690-4655-835c-75165cdaf134","2025-08-12T17:01:40.000+02:00","2026-04-22T09:12:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"128614386","191424347","ls-noeux-les-mines","LS-NOEUX-LES-MI","00:50:56:90:27:A2","10.41.2.52","fe80::4269:744d:a98c:4b49","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 59 a8 af 2d 2d 0c-13 7c f0 c1 bc 81 f1 39","NoAssetTag","'+02:00","2026-03-02T12:08:29.000+02:00","svpadmin","Cloud Agent","f0f12919-02a0-441f-a4a2-01003b840f00","2022-06-21T15:39:44.000+02:00","2026-04-22T09:12:06.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,SVP,VRF_PEAGE_DC,OS-WIN-SRV DYN,Production,Péage,High,Windows Server,DEX","508.0" +"359192054","","PCB20651.sanef.groupe","PCB20651","58:1C:F8:EB:78:B4","10.255.4.208","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG3224D39","","'+02:00","2026-04-02T12:13:00.000+02:00","SANEF\leclercqm","Cloud Agent","3e4e785c-d4ac-41bb-b17d-8ed6ba0eb7ff","2025-09-12T15:30:46.000+02:00","2026-04-22T09:11:58.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"129304240","191926060","LPDECABI42.sanef.groupe","LPDECABI42","00:17:A4:77:14:C6","10.30.11.131","","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19460) 64-Bit","6.3","Computers / Server","HPE ProLiant BL460c G8 Server","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","32733","HP I31","CZJ30503GB","","'+02:00","2025-10-08T14:46:34.000+02:00","LPDECABI42\CYBSUPAPP","Cloud Agent","21efd861-7420-47ea-ad04-071c401a0eec","2022-06-27T10:05:46.000+02:00","2026-04-22T11:21:29.000+02:00","64-Bit","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,TAG-SRVEXPOSEINDIRECT,BusinessObjects,DFIN,Obsolete,VRF_INCONNUE","701.0" +"324980888","","PCB17797.sanef.groupe","PCB17797","28:C5:D2:9E:44:C7","10.200.31.18,10.255.3.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3L","","'+02:00","2026-04-21T08:56:59.000+02:00","SANEF\cloarec","Cloud Agent","479a2dc4-3b0d-48ba-b74b-04f900e3553e","2025-05-15T12:11:21.000+02:00","2026-04-22T09:11:41.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"284376210","","SVP22888.sanef-int.adds","SVP22888","D0:AD:08:A3:7D:BE","10.92.11.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNL","","'+02:00","2026-04-19T10:23:39.000+02:00","Superviseur","Cloud Agent","577bf64e-243b-42d2-8773-a85e6b5b02c9","2024-12-05T12:52:08.000+02:00","2026-04-22T09:11:40.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"216433861","252120323","vipeabbst3.sanef.groupe","","00:50:56:90:54:5a","10.41.29.57","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 49 8a d6 d3 ea cd-8d 24 21 de 81 e6 be a2","No Asset Tag","'+02:00","2026-03-19T11:29:37.000+02:00","cybsecope","Cloud Agent","5fc11800-9ca1-4f11-af69-552f915f6a7c","2024-02-16T15:41:51.000+02:00","2026-04-22T11:10:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,Production,flux_libre,ServersInCyberark,FreeFlow","141.0" +"381245853","353496449","PCB22342.sanef.groupe","PCB22342","D0:AD:08:A7:27:D4","10.252.42.139","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YT4","8CC3502YT4","'+02:00","2026-04-09T10:30:55.000+02:00","SANEF\roiret","Cloud Agent","f999fc07-4134-4674-b952-a0110722b6ac","2025-12-03T12:13:52.000+02:00","2026-04-22T09:11:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"379088425","352746595","PCB25877.sanef.groupe","PCB25877","4C:CF:7C:0A:5C:48","10.252.42.143","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534223T","","'+02:00","2026-04-21T09:33:38.000+02:00","SANEF\bruchet","Cloud Agent","4fd2cf28-055d-4817-94cb-bae73b9bf718","2025-11-25T10:04:24.000+02:00","2026-04-22T11:51:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"323157321","329798940","PCB22893.sanef.groupe","PCB22893","D0:AD:08:A3:7B:D1","10.189.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVX","8CC3502YVX","'+02:00","2026-03-31T08:10:22.000+02:00","SANEF\muckem","Cloud Agent","05aa9501-9f4a-45eb-9d6b-ca3d80192d33","2025-05-09T10:30:27.000+02:00","2026-04-22T09:11:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"321549896","329078653","PCB23643.sanef.groupe","PCB23643","C8:6E:08:88:F0:90","10.255.3.156,10.255.3.152","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6W","","'+02:00","2026-03-30T09:54:35.000+02:00","boris.lembicz@sapn.fr","Cloud Agent","cebc1943-ff69-471f-9f19-9c6c22b6b486","2025-05-02T11:46:20.000+02:00","2026-04-22T11:14:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"170566947","226000752","GTC-CLIENT1.sanef.groupe","VPTCHCGTC1","00:50:56:82:B6:9F","10.41.19.50","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 63 34 22 b1 29 7f-48 17 ff 28 0e c8 db e9","NoAssetTag","'+02:00","2026-04-01T11:18:49.000+02:00","gtc-client","Cloud Agent","cfffb368-8304-4f1b-a65b-0412668901d6","2023-05-17T11:48:29.000+02:00","2026-04-22T09:11:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","347.0" +"178991227","231837430","vpsasawrk3.sanef.groupe","","00:50:56:9c:08:ff","10.41.32.12","fe80::250:56ff:fe9c:8ff","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 05 9f ea 75 e2 6c-6f 45 41 2c 6a bc 29 63","No Asset Tag","'+02:00","2026-03-25T16:06:58.000+02:00","cybreconcile","Cloud Agent","c455e000-b143-4198-bc50-41b8f3799add","2023-07-18T15:56:36.000+02:00","2026-04-22T11:17:48.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,DSI,SAS","86.0" +"232513887","259823391","lrpeabsip1.sanef-rec.fr","","3e:33:fb:a0:00:b8","10.45.1.35","fe80::3c33:fbff:fea0:b8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200Q","/n/Bios Asset Tag :","'+02:00","2026-02-23T10:43:04.000+02:00","cybintsys","Cloud Agent","16c30fdc-aad2-4abe-b866-621ec7a92981","2024-04-26T11:53:58.000+02:00","2026-04-22T11:20:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Péage","336.0" +"395038420","359284786","MIO22267.sanef-int.adds","MIO22267","D0:AD:08:A3:7B:C7","10.200.40.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.19.01","8CC3502YW5","","'+02:00","2026-04-19T14:51:01.000+02:00","Operateur","Cloud Agent","8cf0dc27-1b83-4a4d-99c1-a5c9a75d20e5","2026-01-26T11:38:44.000+02:00","2026-04-22T11:55:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"327559932","","PCB23540.sanef.groupe","PCB23540","C8:6E:08:8A:40:8A","192.168.1.200,169.254.188.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L63","","'+02:00","2026-04-21T09:17:15.000+02:00","SANEF\CAITTE","Cloud Agent","68550df3-3a5d-48f1-844c-f40d722db25c","2025-05-27T13:59:40.000+02:00","2026-04-22T09:10:44.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"379103170","352748171","PCB25885.sanef.groupe","PCB25885","4C:CF:7C:0A:5C:7B","10.252.42.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534223H","","'+02:00","2026-04-14T08:05:30.000+02:00","SANEF\bellet","Cloud Agent","907d2529-3bcb-4a9a-8c2f-83f09779c2a9","2025-11-25T10:20:13.000+02:00","2026-04-22T09:10:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"296257160","317657677","REX21541.sanef-int.adds","REX21541","D0:AD:08:A7:28:54","10.45.11.237","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YP4","","'+02:00","2025-05-16T09:27:30.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","bc46f105-30dc-4d56-9d74-e2a0f4468eae","2025-01-30T17:20:24.000+02:00","2026-04-22T09:10:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"228420904","257495029","ls-hochfelden","LS-HOCHFELDEN","00:50:56:90:84:20","10.41.2.117","fe80::6dad:fe0a:3482:80d","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 e1 6b cb 61 e8 d0-4a 82 59 89 c2 02 7c 7e","NoAssetTag","'+02:00","2026-03-05T15:48:41.000+02:00","svpadmin","Cloud Agent","f46daa1b-a5c3-41f1-8cc7-0eae8a3d7969","2024-04-08T11:18:02.000+02:00","2026-04-22T09:10:00.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP","681.0" +"236870596","266161822","ls-st-jean","LS-ST-JEAN","00:50:56:90:19:C7","10.41.2.62","fe80::7080:49e1:cf62:4676","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 5c f6 b4 59 9e 0c-6e 0b 62 10 2a 85 e7 6b","NoAssetTag","'+02:00","2026-03-03T16:48:24.000+02:00","svpadmin","Cloud Agent","75835a7e-e99e-4a1b-ac93-939d8880d29c","2024-05-15T12:42:31.000+02:00","2026-04-22T09:09:36.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,High,VRF_PEAGE_DC,Péage,SVP,Production","508.0" +"179784561","232376102","vrrauaast2.sanef-rec.fr","","00:50:56:9c:03:d4, 00:50:56:9c:a4:69","10.45.5.34,10.45.9.228","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d6 e4 19 48 87 58-5b 91 7b f4 22 fb c8 99","No Asset Tag","'+02:00","2026-04-21T14:58:28.000+02:00","cybadmsys","Cloud Agent","bf537a6e-e375-4a41-8cb1-b512a6fd1cbc","2023-07-24T19:12:46.000+02:00","2026-04-22T10:56:41.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,ASUR","71.0" +"329730033","332369428","MTR-7PXF2L3","MTR-7PXF2L3","A4:BB:6D:90:96:E2","10.101.246.201","fe80::c70b:ea6e:6653:2b42","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","7PXF2L3","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","cf7eae23-e981-4165-b89f-3d1d7d70742d","2025-06-03T10:13:33.000+02:00","2026-04-22T09:09:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"176096529","229734620","vvboobsql2.sanef-rec.fr","","00:50:56:9c:3a:17","10.45.6.74","fe80::250:56ff:fe9c:3a17","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 0f db ff 24 76 e2-92 43 4b 58 88 1e af ff","No Asset Tag","'+02:00","2026-03-09T16:09:08.000+02:00","cybsupsys","Cloud Agent","220147c2-7bda-4a8b-83c1-437f7ba4e560","2023-06-27T15:28:32.000+02:00","2026-04-22T11:20:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette,flux_libre,FreeFlow,Flux Libre","141.0" +"307146663","323298427","PCB21170.sanef.groupe","PCB21170","F0:20:FF:9A:8B:84","192.168.1.126,10.205.0.173","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HV6","","'+02:00","2026-04-22T08:15:02.000+02:00","SANEF\garnier","Cloud Agent","d6d3d709-bdc5-48ea-b37b-984b80ffd154","2025-03-11T16:38:46.000+02:00","2026-04-22T10:53:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"374190918","350496844","PCV18543.sanef-int.adds","PCV18543","30:13:8B:6C:57:43","10.5.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473T3","","'+02:00","2026-04-15T09:34:48.000+02:00","Operateur","Cloud Agent","5d792689-76e6-4044-9a71-0cbdc36188c5","2025-11-04T17:40:34.000+02:00","2026-04-22T09:08:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"226169190","256425652","ls-la-vallee","LS-LA-VALLEE","00:50:56:90:F2:33","10.41.2.45","fe80::29a9:bfbe:46ba:f0d0","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 66 5f ba 6b d0 4b-d7 20 1d 8a d3 f3 d8 11","NoAssetTag","'+02:00","2026-03-03T12:22:17.000+02:00","svpadmin","Cloud Agent","5a0ae3f9-bbaa-4b46-bae1-248c13109181","2024-03-29T10:49:12.000+02:00","2026-04-22T11:46:03.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Windows Server,Cloud Agent,OS-WIN-SRV DYN,High,VRF_PEAGE_DC,Production,Péage","508.0" +"129846548","192316250","sppeaanvr2","SPPEAANVR2","20:67:7C:D8:A2:41","10.41.7.101","fe80::9734:59fd:14c5:3624","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","1","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ921047N","","'+02:00","2026-01-28T11:27:31.000+02:00","Administrateur","Cloud Agent","35fff773-5b22-4e85-8438-2331c3e1b018","2022-06-30T18:24:54.000+02:00","2026-04-22T09:08:23.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,Sans,Production,VRF_INCONNUE,OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR","522.0" +"280811046","305627373","PCB21347.sanef.groupe","PCB21347","D0:AD:08:AA:50:BB","10.202.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6783) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764MW","","'+02:00","2026-04-07T09:08:09.000+02:00","SANEF\gondouinf","Cloud Agent","80d38452-582b-4505-9239-bcf8069c713c","2024-11-20T15:34:14.000+02:00","2026-04-22T09:08:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"359743599","","PCB24086.sanef.groupe","PCB24086","0A:00:27:00:00:03, 24:FB:E3:33:7B:3F","169.254.63.90,10.155.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5062RDX","","'+02:00","2026-04-15T17:04:41.000+02:00","SANEF\ADELINE","Cloud Agent","59e88ad2-8628-4a1a-a3ee-239b2403600d","2025-09-15T11:47:34.000+02:00","2026-04-22T09:08:17.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"194981963","241651145","vpbotrssm1.sanef.groupe","VPBOTRSSM1","00:50:56:90:B9:48","10.41.23.8","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 ef 24 70 41 65 21-be 85 e7 29 de 83 2f 7d","NoAssetTag","'+02:00","2026-04-21T10:46:02.000+02:00","SANEF\ndead","Cloud Agent","27ef7d29-08af-4c3c-8085-6f7f62faa571","2023-10-23T17:17:45.000+02:00","2026-04-22T09:08:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Windows Server,OS-WIN-SRV DYN,FreeFlow,Production,flux_libre","249.0" +"249813575","288925764","lrdsibrac1.sanef-rec.fr","","3e:33:fb:a0:00:c8, 3e:33:fb:a0:00:c4","10.45.5.19,10.45.7.9","fe80::3c33:fbff:fea0:c8,fe80::3c33:fbff:fea0:c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200U","/n/Bios Asset Tag :","'+02:00","2026-03-04T18:18:50.000+02:00","cybintsys","Cloud Agent","fe98673a-1142-4e55-a5ce-b95cc2fcc706","2024-07-10T15:12:02.000+02:00","2026-04-22T11:23:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ORACLE,Recette,Cloud Agent,Linux Server","146.0" +"320288653","328639923","PCB23664.sanef.groupe","PCB23664","6C:0B:5E:EE:BC:59","10.100.39.113","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L81","","'+02:00","2026-03-31T08:57:52.000+02:00","SANEF\DERIMAY","Cloud Agent","84c74f97-1ad7-43b0-91e2-9c19e8f56f40","2025-04-28T16:55:19.000+02:00","2026-04-22T11:55:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"322391768","329447575","PCB23699.sanef.groupe","PCB23699","6C:0B:5E:EF:D2:CB","10.220.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBY","","'+02:00","2026-03-30T19:06:09.000+02:00","SANEF\LEGRAND","Cloud Agent","8a2d5a75-1840-4160-9e4d-25872d9394ad","2025-05-06T13:39:08.000+02:00","2026-04-22T11:24:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"130318092","192644345","VPAIIAVCL1.sanef.groupe","VPAIIAVCL1","00:50:56:82:7F:0D","10.41.11.20","fe80::d18b:f8f1:98e9:5498","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 9c 7e 58 ef b1 ba-70 78 f3 e5 3b 52 82 72","NoAssetTag","'+02:00","2025-06-04T10:25:48.000+02:00","SANEF\ecoad-ext","Cloud Agent","f66e55cc-84d1-4e72-9e01-742f03698e36","2022-07-05T11:29:05.000+02:00","2026-04-22T09:08:00.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,Sans,Production,DEX,NVR,Workstation,VRF_INCONNUE,Obsolete,Cloud Agent,Windows Server","523.0" +"377410288","352034394","vmddops03.recette.adds","VMDDOPS03","00:50:56:9C:17:50","10.45.17.69","fe80::62fa:e691:416e:f804","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 77 39 ae 90 d4-83 ce 11 e0 b6 ff 48 6a","NoAssetTag","'+02:00","2026-04-16T17:35:46.000+02:00","supwindev","Cloud Agent","03dffb7c-44b3-41fd-b06b-f6d644f7d68e","2025-11-18T11:24:39.000+02:00","2026-04-22T09:07:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","333.0" +"378083322","352321025","PCB17978.sanef.groupe","PCB17978","C0:18:03:85:64:C9","10.199.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206174B","","'+02:00","2026-04-07T13:16:57.000+02:00","SANEF\wach","Cloud Agent","7ec829ef-9eab-46f8-aa28-1d2fb5dfce53","2025-11-20T16:09:20.000+02:00","2026-04-22T09:07:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"294564327","316603854","vpdepbels1.sanef.groupe","","00:50:56:90:ee:47","10.41.40.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 bc d0 a9 7c f6 e0-74 e6 9e df e4 3a 9a 4b","No Asset Tag","'+02:00","2026-01-21T16:28:19.000+02:00","cybreconcile","Cloud Agent","4685b369-44e5-4653-ba6f-c714e07e16b9","2025-01-24T12:20:16.000+02:00","2026-04-22T11:20:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Elasticsearch,Production,BDD-ELA DYN,Linux Server,Cloud Agent","141.0" +"354689834","342495239","vpechaetl3.sanef.groupe","","00:50:56:90:40:ee","10.42.16.143","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0e 8b d3 7b 36 51-5f df bd 6a 12 84 de 48","No Asset Tag","'+02:00","2026-02-12T16:12:13.000+02:00","cybsecope","Cloud Agent","9cabca3d-8eb4-4b12-a929-f5ab6bff06e2","2025-08-26T17:09:56.000+02:00","2026-04-22T11:39:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","145.0" +"326865147","331310095","PCB24024.sanef.groupe","PCB24024","EC:4C:8C:C5:CD:B2","10.205.0.102,10.255.3.226","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF0","","'+02:00","2026-03-29T23:36:25.000+02:00","SANEF\daudeg","Cloud Agent","859d1125-928d-40e5-a476-e0e2ca34bd79","2025-05-23T14:51:33.000+02:00","2026-04-22T11:19:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"320261591","328627288","PCB23524.sanef.groupe","PCB23524","C8:6E:08:88:F0:9F","10.205.0.9,192.168.1.126","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9R","","'+02:00","2026-04-22T08:26:34.000+02:00","SANEF\DELOFFRE","Cloud Agent","acecf62a-04f2-4781-8613-dc5d800c0d17","2025-04-28T14:57:29.000+02:00","2026-04-22T09:07:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","146.0" +"329943602","","PCB23541.sanef.groupe","PCB23541","C8:6E:08:8A:45:CB","10.200.31.49,10.255.3.218","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5K","","'+02:00","2026-03-31T09:03:14.000+02:00","SANEF\deleauk","Cloud Agent","96f7977f-e837-4030-80c3-8964c327a6e3","2025-06-03T18:03:39.000+02:00","2026-04-22T09:06:57.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"374458503","350625447","PCB22718.sanef.groupe","PCB22718","D0:AD:08:AA:50:2C","10.208.31.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H8","","'+02:00","2026-04-01T09:10:43.000+02:00","SANEF\SAMIRI","Cloud Agent","db66b6e2-861c-47a4-916e-7f4816525195","2025-11-05T16:34:21.000+02:00","2026-04-22T11:49:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"324004548","","PCB18099.sanef.groupe","PCB18099","64:D6:9A:1D:39:36","192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.09.01","5CG2376HTM","","'+02:00","2026-03-30T09:23:40.000+02:00","SANEF\HENWOOD","Cloud Agent","3c67b826-3df2-418c-9f5e-31cb0a689b22","2025-05-12T11:47:31.000+02:00","2026-04-22T09:06:45.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"318433984","328044306","vrameakfk3.sanef-rec.fr","","00:50:56:9c:dc:24","10.45.2.42","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c fe 9f 88 82 15 48-40 9d 56 1f 19 b1 e2 67","No Asset Tag","'+02:00","2026-04-20T09:48:02.000+02:00","cybsupapp","Cloud Agent","fce6b33d-8765-4afe-b545-f94b0f73361c","2025-04-22T14:58:17.000+02:00","2026-04-22T10:53:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","48.0" +"325731383","","PCB18735.sanef.groupe","PCB18735","58:1C:F8:EB:79:6D","10.205.0.178,192.168.1.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DPX","","'+02:00","2026-04-03T10:10:16.000+02:00","SANEF\hoarau","Cloud Agent","62a15f89-5fc1-4f7f-913e-2424a879eea7","2025-05-19T14:39:00.000+02:00","2026-04-22T09:06:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"282000274","306448317","SVP22766.sanef-int.adds","SVP22766","D0:AD:08:A7:28:16","10.105.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK6","","'+02:00","2026-04-20T08:30:24.000+02:00","Superviseur","Cloud Agent","cc7cc59f-92cf-48f5-8967-e2bad2a56b49","2024-11-25T12:03:44.000+02:00","2026-04-22T09:06:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"281015704","305748072","PCB22507.sanef.groupe","PCB22507","D0:AD:08:AA:50:57","10.202.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JN","","'+02:00","2026-04-01T09:00:26.000+02:00","SANEF\lelievrer","Cloud Agent","43c20ce1-9c83-42df-8ea5-ad2e9beed3c2","2024-11-21T12:42:33.000+02:00","2026-04-22T10:29:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","146.0" +"378080679","352316650","PCV18674.sanef-int.adds","PCV18674","30:13:8B:6C:5E:50","10.209.7.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473W3","","'+02:00","2026-04-17T21:12:42.000+02:00","Operateur","Cloud Agent","0f9c2e5f-b8a0-4f17-9924-a0c713162b43","2025-11-20T15:26:21.000+02:00","2026-04-22T09:05:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"377804143","352206231","PCV21261.sanef-int.adds","PCV21261","D0:AD:08:1F:7E:DC","10.108.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3451GV2","","'+02:00","2025-11-19T16:58:51.000+02:00","Operateur","Cloud Agent","b1243376-82e1-417c-8083-3a40996f11f3","2025-11-19T17:31:53.000+02:00","2026-04-22T09:05:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"324759055","330493339","sppeaanvr31","SPPEAANVR31","8C:84:74:E5:DF:12","10.41.7.130","fe80::ac09:85a:2dfb:2b","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G11 Server","16","2600","INTEL(R) XEON(R) SILVER 4509Y","16142","HPE 2.48","CZ2D210MW7","","'+02:00","2026-02-10T10:14:53.000+02:00","Administrateur","Cloud Agent","c1144912-c24e-4f46-815a-adf018d2f6b6","2025-05-14T17:17:28.000+02:00","2026-04-22T09:05:31.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,OS-WIN-SRV DYN,Cloud Agent,Production","508.0" +"339876286","336780153","vppwdahap1.sanef.groupe","","00:50:56:94:ff:24","10.44.1.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3665","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 ec 9d 08 bd a5 59-6f 2d 6a 02 87 c0 89 b6","No Asset Tag","'+02:00","2026-01-07T11:25:09.000+02:00","cybreconcile","Cloud Agent","bb622005-9a99-443e-b3ef-5401b8c6f17e","2025-07-07T17:41:45.000+02:00","2026-04-22T11:29:16.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,Production,OS-LIN-SRV DYN,BDD","331.0" +"357852976","343892476","PCB22666.sanef.groupe","PCB22666","D0:AD:08:AA:50:1E","10.208.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764GT","","'+02:00","2026-04-15T16:11:31.000+02:00","SANEF\pennors","Cloud Agent","44a02470-c9be-4f9c-b929-5acaec563c74","2025-09-08T12:26:50.000+02:00","2026-04-22T09:04:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"327526036","","PCB23521.sanef.groupe","PCB23521","C8:6E:08:8A:50:BB","10.152.31.2,10.255.4.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9F","","'+02:00","2026-04-21T09:44:29.000+02:00","SANEF\sutran","Cloud Agent","630c53d0-11a8-4a60-80b5-5158c217a678","2025-05-27T11:56:39.000+02:00","2026-04-22T09:04:44.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"395909012","359672763","PCB25884.sanef.groupe","PCB25884","4C:CF:7C:0A:5C:3D","10.205.0.70,10.4.31.60","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534223L","","'+02:00","2026-04-22T08:31:07.000+02:00","SANEF\desimeur","Cloud Agent","3df311c8-9eae-442e-b79d-0cdf673407d8","2026-01-29T17:46:01.000+02:00","2026-04-22T10:32:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"327606224","","PCB20691.sanef.groupe","PCB20691","58:1C:F8:EB:6A:40","192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQ5","","'+02:00","2026-04-08T10:14:51.000+02:00","SANEF\MINARD-URBAN","Cloud Agent","76cac109-be4a-4af5-9380-21ff8332d5aa","2025-05-27T19:03:17.000+02:00","2026-04-22T09:04:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"374498072","350641565","PCB24348.sanef.groupe","PCB24348","10:B6:76:93:FA:C9","10.152.31.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YHZ","","'+02:00","2026-04-15T08:11:26.000+02:00","SANEF\NORMAND","Cloud Agent","ee5e3652-0cc6-4c6b-b947-9c11e29f68e5","2025-11-05T19:10:06.000+02:00","2026-04-22T11:32:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"334940270","334365195","PCB24066.sanef.groupe","PCB24066","10:B6:76:93:FA:A7","10.155.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YGW","","'+02:00","2026-04-20T11:53:56.000+02:00","SANEF\dores","Cloud Agent","cbdf40f4-b784-49fa-9af9-545c9d839f0a","2025-06-20T10:52:02.000+02:00","2026-04-22T11:27:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"159570303","212142030","vpintanfs1.sanef.groupe","","00:50:56:82:bb:7d, 02:42:ff:d0:be:e0","192.168.20.38,172.17.0.1","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 72 2e ee aa d4 a2-a3 a6 a5 13 14 d9 e6 ae","No Asset Tag","'+02:00","2026-02-24T12:10:54.000+02:00","cybexpapp","Cloud Agent","87fc443a-99ff-498f-96d5-6fdaecc421e7","2023-02-16T15:12:34.000+02:00","2026-04-22T11:20:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Gestion institutionnel","141.0" +"409490442","364922981","PCB22345.sanef.groupe","PCB22345","D0:AD:08:A7:27:E5","10.206.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSM","8CC3502YSM","'+02:00","2026-03-28T09:14:50.000+02:00","SANEF\letellier","Cloud Agent","1eca0c48-48ba-4adb-9d7b-b4e72ff43cbc","2026-03-18T14:21:52.000+02:00","2026-04-22T09:03:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"350781759","340860684","PCB25831.sanef.groupe","PCB25831","F8:ED:FC:AB:02:71","10.205.1.39,192.168.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CTS","","'+02:00","2026-04-09T22:25:31.000+02:00","SANEF\TUNORFE","Cloud Agent","1c37f4d0-e6d2-4a2c-a97e-5b46dfcda727","2025-08-12T10:48:17.000+02:00","2026-04-22T09:03:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"332273716","","PCB21175.sanef.groupe","PCB21175","D0:AD:08:E4:A1:FA","10.12.31.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","32408","HP V70 Ver. 01.03.00","5CG3501HVC","","'+02:00","2026-04-20T17:36:51.000+02:00","SANEF\DEJESUS","Cloud Agent","0a27d7a8-8482-4fd8-a23e-d2a2bbaf3804","2025-06-10T12:42:24.000+02:00","2026-04-22T09:03:03.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"347941250","339425714","vrlogbels2.sanef-rec.fr","","00:50:56:9c:67:bc","10.45.15.165","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c e0 69 ae 3d a8 19-1e 14 8b 09 04 6d 94 24","No Asset Tag","'+02:00","2026-01-21T17:53:23.000+02:00","cybintsys","Cloud Agent","bbe215d2-df89-4f91-9851-de6fa6dada2c","2025-07-31T17:25:49.000+02:00","2026-04-22T11:28:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,BDD-ELA DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"327537099","","PCB23512.sanef.groupe","PCB23512","C8:6E:08:88:FD:C4","192.168.1.195","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7C","","'+02:00","2026-03-30T14:07:24.000+02:00","SANEF\GIMENEZPEREZ","Cloud Agent","54ef4305-2c0b-417d-bfa8-7e3b14ebd9cd","2025-05-27T11:26:14.000+02:00","2026-04-22T09:02:50.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"410521998","365357635","PCV22458.sanef-int.adds","PCV22458","D0:AD:08:A3:E7:92","10.103.7.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YMD","","'+02:00","2026-03-23T09:44:54.000+02:00","Operateur","Cloud Agent","0fd025b7-3d43-4bf8-a793-c4919a92eb16","2026-03-23T09:48:25.000+02:00","2026-04-22T09:02:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"324722790","","PCB18115.sanef.groupe","PCB18115","64:D6:9A:21:81:BC","192.168.1.109","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.19.00","5CG2376HTX","","'+02:00","2026-04-03T08:16:39.000+02:00","SANEF\HENNION","Cloud Agent","7a125c3c-9b2d-4e8f-918e-31889c8a7a03","2025-05-14T16:11:20.000+02:00","2026-04-22T09:02:04.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"329804270","","PCB17642.sanef.groupe","PCB17642","28:C5:D2:9F:C3:10","10.100.39.132,10.255.4.203","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3R","","'+02:00","2026-04-16T07:58:13.000+02:00","SANEF\FERNANDESC","Cloud Agent","b29b8a94-9f95-46cc-8f16-b176c33416d8","2025-06-03T14:43:13.000+02:00","2026-04-22T09:01:59.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"385630145","355780299","PCB17645.sanef.groupe","PCB17645","D0:AD:08:E4:B1:D6","10.101.243.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HW0","","'+02:00","2026-04-21T09:28:59.000+02:00","SANEF\LAVANANT","Cloud Agent","1ee540f9-aede-441e-a68b-ea0e68a1c19c","2025-12-22T19:57:35.000+02:00","2026-04-22T10:56:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"138993195","198163941","PCB17877.sanef.groupe","PCB17877","70:A8:D3:85:C6:54","10.255.1.163","fe80::5f5c:56dd:c787:a247","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T37 Ver. 01.08.11","5CG217247W","","'+02:00","2026-04-22T08:05:23.000+02:00","SANEF\floquet","Cloud Agent","2edc15d6-4dce-481d-8f39-d47498a7dc1f","2022-09-06T12:41:03.000+02:00","2026-04-22T11:55:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Workstation","342.0" +"324698116","330343964","PCB23733.sanef.groupe","PCB23733","C8:6E:08:47:8B:D2","10.205.0.71,192.168.0.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2K","","'+02:00","2026-04-13T21:47:55.000+02:00","SANEF\dossantos","Cloud Agent","452b20ec-a5af-44e6-9686-5f7a1f781318","2025-05-14T13:37:20.000+02:00","2026-04-22T09:01:37.000+02:00","64-Bit","2","VM,PM,GAV","Workstation,Cloud Agent","153.0" +"322010592","329316391","PCB21144.sanef.groupe","PCB21144","D0:AD:08:A3:E7:24","10.2.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXT","8CC3502YXT","'+02:00","2026-03-28T09:11:31.000+02:00","SANEF\jacquetn","Cloud Agent","d5765317-52b8-41cd-b0e1-fa3ded6531a2","2025-05-05T10:42:41.000+02:00","2026-04-22T09:01:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"344816869","338463634","PCB17763.sanef.groupe","PCB17763","28:C5:D2:9E:44:E0","192.168.1.89,10.205.0.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4X","","'+02:00","2026-04-14T09:01:02.000+02:00","SANEF\FAVRIAU","Cloud Agent","6a4b03a9-941c-484c-984a-fdda1476811f","2025-07-24T12:44:53.000+02:00","2026-04-22T09:01:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"272737296","301239595","SVP21051.sanef-int.adds","SVP21051","D0:AD:08:A3:7B:6C","10.155.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWR","","'+02:00","2026-04-14T11:18:31.000+02:00","Superviseur","Cloud Agent","ee07a38b-9344-4767-b7e0-153cad7929b7","2024-10-17T08:16:23.000+02:00","2026-04-22T09:01:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"322004527","329320570","PCB23675.sanef.groupe","PCB23675","6C:0B:5E:EE:EC:0A","10.200.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6B","","'+02:00","2026-04-20T17:03:56.000+02:00","pascal.roussel2@sanef.com","Cloud Agent","02f757fd-783e-4cb1-93c3-db4b6a701977","2025-05-05T11:43:10.000+02:00","2026-04-22T11:46:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"408734457","364649408","PCB25786.sanef.groupe","PCB25786","28:95:29:1B:24:66","10.255.2.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVX","","'+02:00","2026-04-13T08:40:09.000+02:00","SANEF\BERNARDC","Cloud Agent","b5c50b3e-30d2-4797-8b53-9b01a5b3d5a0","2026-03-16T10:23:53.000+02:00","2026-04-22T11:31:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","244.0" +"249846543","288935029","vpa14bgtc1","VPA14BGTC1","00:50:56:90:84:2B","10.41.19.69,172.27.2.159","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 1e 66 3b 93 41 2d-64 88 43 75 14 87 93 49","NoAssetTag","'+02:00","2026-03-31T12:37:00.000+02:00","admin_gtc","Cloud Agent","d75591b2-cf35-484c-9c6a-c9a54fbd1509","2024-07-10T17:09:07.000+02:00","2026-04-22T09:00:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,BDD-SQL DYN,OS-WIN-SRV DYN","248.0" +"247101827","287402707","MTO21609.sanef.groupe","MTO21609","D0:AD:08:A4:4D:AC","10.6.31.2","fe80::b128:6c23:1ea7:cea3","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6649) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K6","","'+02:00","2026-03-03T12:27:55.000+02:00","SANEF\meteonewsW11","Cloud Agent","31faf8fc-b267-4745-b65d-0883da8558de","2024-06-28T17:07:41.000+02:00","2026-04-22T08:59:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"129362381","191965004","vpsdtanvr1","VPSDTANVR1","00:50:56:82:8E:7B","10.11.7.13","fe80::4345:c426:ab9e:2a37","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 6a ca b0 63 9c 36-70 e2 86 2b ee ba 1c 2b","NoAssetTag","'+02:00","2026-02-05T11:14:56.000+02:00","Administrateur","Cloud Agent","91d1e729-2294-4c0e-818c-7aec8830165e","2022-06-27T18:36:17.000+02:00","2026-04-22T08:59:36.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Exploitation,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,NVR","509.0" +"326655696","","PCB24015.sanef.groupe","PCB24015","44:67:52:1E:84:52","10.101.243.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","Dell Latitude 7350 Notebook","1","1700","Intel(R) Core(TM) Ultra 7 165U","32212","Dell Inc. 1.15.1","H4VTX64","","'+02:00","2026-04-15T16:55:52.000+02:00","SANEF\FISCHERE","Cloud Agent","d05bdcfe-3d64-499a-a0be-9a01a82b8cf8","2025-05-22T16:15:30.000+02:00","2026-04-22T08:59:33.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"373028956","349993406","PSX18565.sanef-int.adds","PSX18565","30:13:8B:6C:5B:1D","10.100.40.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473SX","","'+02:00","2026-02-17T21:59:17.000+02:00","UserSextan","Cloud Agent","1d98bacd-89c6-4503-bcf3-348befcd12be","2025-10-30T18:48:46.000+02:00","2026-04-22T08:59:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"325686787","","PCB18624.sanef.groupe","PCB18624","38:CA:84:DB:D6:E2","10.4.31.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDN","","'+02:00","2026-04-01T14:55:33.000+02:00","SANEF\paquotte","Cloud Agent","cbe900fc-8cec-4b3c-9f87-c5bac2e5062b","2025-05-19T11:00:47.000+02:00","2026-04-22T08:59:02.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"417401361","368224388","MTO18276.sanef.groupe","MTO18276","5C:60:BA:59:EC:E9","10.100.39.53","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.25.00","8CC2250Y8L","8CC2061746","'+02:00","2026-04-21T09:07:37.000+02:00","SANEF\MeteoNewsSanef","Cloud Agent","92b6306f-09aa-431b-ac9c-b849deabf233","2026-04-20T12:16:33.000+02:00","2026-04-22T08:58:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","238.0" +"255418106","294877252","lramebrac3.sanef-rec.fr","","ee:50:33:80:00:82, ee:50:33:80:00:7e","10.45.5.8,169.254.11.217,10.45.2.112,10.45.2.116,10.45.2.120","fe80::ec50:33ff:fe80:82,fe80::ec50:33ff:fe80:7e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00H","/n/Bios Asset Tag :","'+02:00","2026-04-20T12:16:41.000+02:00","grid","Cloud Agent","72e14ef1-7236-4778-866d-6419c0880148","2024-08-02T16:53:13.000+02:00","2026-04-22T11:29:43.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Amelie,Sextan,Cloud Agent,Linux Server,Recette","503.0" +"376650173","351631212","PCV18678.sanef-int.adds","PCV18678","30:13:8B:6C:5C:51","10.12.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473WN","","'+02:00","2026-04-10T21:02:44.000+02:00","Operateur","Cloud Agent","e6f2269a-7544-4c42-8fd5-cb5b7f8f68d5","2025-11-14T15:43:49.000+02:00","2026-04-22T08:58:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"209598658","249215489","vpbotarmq3.sanef.groupe","","00:50:56:90:c1:c7","10.41.23.24","fe80::250:56ff:fe90:c1c7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 ec 0a f2 ca 61 aa-fc 52 9a d3 14 48 f6 b8","No Asset Tag","'+02:00","2026-04-21T14:34:39.000+02:00","cybreconcile","Cloud Agent","baa70ac2-1a90-4737-ba4f-34229f425cc7","2024-01-15T13:34:51.000+02:00","2026-04-22T12:00:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,flux_libre,Production,FreeFlow","141.0" +"310544677","324630464","vptrabtpc1.sanef.groupe","VPTRABTPC1","00:50:56:82:77:46","10.41.40.10","fe80::c373:c2c2:5511:ce57","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","Phoenix Technologies LTD 6.00","VMware-42 02 23 c4 4e de 44 47-2e 36 5e 7b 62 3d 37 1c","NoAssetTag","'+02:00","2026-01-20T12:19:21.000+02:00","Administrateur","Cloud Agent","0d6aaa0e-febd-4d25-8f1d-7dded97a976b","2025-03-24T12:58:35.000+02:00","2026-04-22T11:05:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Trafic,Temps de parcours,Production,OS-WIN-SRV DYN,BDD-POS DYN","338.0" +"228734286","257688280","vvaflblog1.sanef-rec.fr","","00:50:56:9c:2b:2c","10.45.0.205","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c ba df 72 90 8c 32-ea a3 cf ee 99 52 00 1b","No Asset Tag","'+02:00","2026-03-11T15:11:28.000+02:00","cybadmsys","Cloud Agent","57b74fed-61c9-4fe5-81e5-eb3917cf2205","2024-04-09T17:25:46.000+02:00","2026-04-22T11:09:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server,Recette","144.0" +"322118778","329339586","PCB23729.sanef.groupe","PCB23729","C8:6E:08:45:1B:8B","10.100.39.134,10.255.4.192","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2W","","'+02:00","2026-03-29T19:45:30.000+02:00","SANEF\plaideux","Cloud Agent","4a6ce2f1-0bd0-4e2b-8250-64f7b6697017","2025-05-05T15:17:54.000+02:00","2026-04-22T11:18:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","143.0" +"139157827","198270294","vmampmet1","","00:50:56:82:1C:70, 00:50:56:82:23:B7, 00:50:56:82:62:FE","10.43.40.77,10.43.4.77,10.41.40.77","fe80::250:56ff:fe82:1c70,fe80::250:56ff:fe82:23b7,fe80::250:56ff:fe82:62fe","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 cd 32 c6 92 58 66-ac b8 8f fe 7e 41 74 68","No Asset Tag","'+02:00","2024-02-13T13:59:47.000+02:00","cybreconcile","Cloud Agent","5f4e0bb0-e430-423d-b645-a68c08edf4b4","2022-09-07T14:26:51.000+02:00","2026-04-22T11:17:03.000+02:00","x86_64","5","SCA,VM,PM,GAV","Obsolete,log4j,OS-LIN-SRV DYN,DEX,Production,Trafic,MIVISU,Cloud Agent,Linux Server,VRF_TRAFIC_DC","876.0" +"322000854","329315714","PCB22834.sanef.groupe","PCB22834","D0:AD:08:A7:27:B1","10.89.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPJ","8CC3502YPJ","'+02:00","2026-03-28T09:11:35.000+02:00","SANEF\porchet","Cloud Agent","44ed40be-e093-4931-81e4-d9474e408b33","2025-05-05T10:36:45.000+02:00","2026-04-22T08:56:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"280841848","305632826","PCB21341.sanef.groupe","PCB21341","E4:60:17:C5:06:84","192.168.1.13,10.205.0.115","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JX","","'+02:00","2026-04-06T07:54:37.000+02:00","SANEF\boissee","Cloud Agent","13146be3-4bc6-4895-ae7c-6f5b75d7e378","2024-11-20T16:32:55.000+02:00","2026-04-22T11:52:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"321605798","329101923","PCB21154.sanef.groupe","PCB21154","D0:AD:08:A3:7C:C8","10.89.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YY7","8CC3502YY7","'+02:00","2026-04-20T10:30:02.000+02:00","SANEF\zeimet","Cloud Agent","c24606af-fcca-422b-9819-6d9a0548af41","2025-05-02T16:13:09.000+02:00","2026-04-22T08:56:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","253.0" +"378316331","352425582","PSX18697.sanef-int.adds","PSX18697","30:13:8B:6C:5D:AD","10.100.40.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WQ","","'+02:00","2026-03-28T14:54:47.000+02:00","UserSextan","Cloud Agent","75f173c5-08f7-46af-b64b-5e5a69f20c90","2025-11-21T14:21:53.000+02:00","2026-04-22T10:58:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"340403894","","PCB21125.sanef.groupe","PCB21125","D0:AD:08:AA:50:26","10.205.0.75,10.101.243.185","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H2","","'+02:00","2026-04-20T09:00:15.000+02:00","SANEF\KAMAL-ext","Cloud Agent","d38b4469-ea3e-4a97-a0ad-048f0bfe584e","2025-07-09T10:52:15.000+02:00","2026-04-22T08:56:16.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"173083621","227654993","vdbocharg1.sanef-rec.fr","","00:50:56:9c:9a:ee","10.45.6.36","fe80::250:56ff:fe9c:9aee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7f ec 9f 0d f7 d5-c8 4d f3 a8 27 28 73 a2","No Asset Tag","'+02:00","2026-03-11T10:03:06.000+02:00","cybsecope","Cloud Agent","332ccdec-af18-42c5-b4f1-a1fb9b9af8f2","2023-06-05T15:43:25.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Flux Libre,FreeFlow,flux_libre,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN","338.0" +"165730592","236956158","vrvidanvr1.recette.adds","VRVIDANVR1","00:50:56:9C:EF:C7","10.45.7.101","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1c 35 95 a3 25 40 45-d8 8a e2 9f 4d 3b 18 62","NoAssetTag","'+02:00","2026-04-21T04:07:25.000+02:00","RECETTE\ndessoye","Cloud Agent","468e367f-109e-4970-a6e1-b2d8162da23b","2023-04-07T10:48:59.000+02:00","2026-04-22T08:56:10.000+02:00","64-Bit","3","SCA,VM,GAV","DEX,Recette,OS-WIN-SRV DYN,Cloud Agent,NVR","516.0" +"313413111","325877000","vrameaquo1.sanef-rec.fr","","00:50:56:90:79:9d","10.100.16.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 0a 4f fb 4e 75 c1-f0 d6 a2 6d 87 7d d7 98","No Asset Tag","'+02:00","2026-04-20T10:01:24.000+02:00","cybsecope","Cloud Agent","4972f0f9-3792-46dd-98ff-9a562b72cf27","2025-04-03T11:30:25.000+02:00","2026-04-22T09:28:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","14.0" +"213849175","251125116","sppeaanvr26","SPPEAANVR26","D4:F5:EF:A4:DE:BD","10.41.7.125","fe80::7320:e182:7ba7:c43a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","1","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ23300BQ8","","'+02:00","2026-02-09T10:11:16.000+02:00","Administrateur","Cloud Agent","f960e516-dd54-47fd-b75b-c2c5d1220f21","2024-02-05T19:31:19.000+02:00","2026-04-22T08:55:11.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR","523.0" +"304902203","322669825","vpalbanvr1","VPALBANVR1","00:50:56:90:DD:5B","10.252.17.10","fe80::361e:672c:ffe9:3b8e","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 10 e4 b9 2b 0a 24 a4-7a 8f 86 17 ce ec 5f 45","NoAssetTag","'+02:00","2026-02-25T12:32:05.000+02:00","Administrateur","Cloud Agent","186b87aa-07f8-4ebc-a6a9-d62497046cb3","2025-03-04T15:28:30.000+02:00","2026-04-22T08:55:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,Péage","246.0" +"335602324","","PCB24182.sanef.groupe","PCB24182","24:FB:E3:F3:BA:75","10.101.243.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136X6","","'+02:00","2026-04-20T08:57:57.000+02:00","SANEF\penicaud","Cloud Agent","15edac0b-b67e-4e7d-915e-ad2bd648393c","2025-06-23T14:55:47.000+02:00","2026-04-22T08:55:03.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"129345155","191951686","VPROIAGTC1","VPROIAGTC1","00:50:56:82:6D:4E","10.41.19.15","fe80::e8d1:e467:5e5c:623f","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 b2 7d 84 03 2b 27-6b 97 35 fb ed ab 6f a6","NoAssetTag","'+02:00","2026-04-01T15:14:01.000+02:00","GTC-ROISSY","Cloud Agent","7ad68bd7-b98b-41b7-a25f-df561738cabc","2022-06-27T15:50:24.000+02:00","2026-04-22T08:53:32.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,BDD-SQL DYN,Workstation,GTC,Haute,VRF_INCONNUE,High,Production,Trafic","865.0" +"191148215","239566992","vpiadapki3.sanef-int.adds","VPIADAPKI3","00:50:56:9A:04:53","10.44.3.12","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1a 69 d2 dc ad c5 18-88 bc 02 e3 15 24 ff 6e","NoAssetTag","'+02:00","2026-03-23T17:01:12.000+02:00","SANEF-INT\A17402","Cloud Agent","1a94eadf-cad9-4751-a4b1-a4346003656d","2023-10-03T13:38:00.000+02:00","2026-04-22T08:52:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,Cloud Agent,Windows Server,Gestion_PKI,OS-WIN-SRV DYN","253.0" +"240039974","273667505","ls-spare-beu","LS-SPARE-BEU","00:50:56:82:15:7B","10.212.33.254","fe80::3f86:1ead:ea5b:56d1","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 ec fb b8 f4 7e 8b-e2 72 f4 0d 9f 7a 73 ad","NoAssetTag","'+02:00","2026-03-03T12:43:44.000+02:00","gare","Cloud Agent","d3003f6d-da36-4797-93dd-81dfec9aee37","2024-05-29T10:27:55.000+02:00","2026-04-22T08:52:45.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,High,Haute,VRF_PEAGE_DC,VRF_BACKUP_DC,Production,SVP,Péage,OS-WIN-SRV DYN","854.0" +"360030418","","PCB18716.sanef.groupe","PCB18716","BC:0F:F3:3D:48:8F","10.200.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2V","","'+02:00","2026-04-20T08:50:40.000+02:00","SANEF\SOUVAY","Cloud Agent","e9810c4d-b1d0-42e5-b716-7168d5cd988b","2025-09-16T13:26:26.000+02:00","2026-04-22T08:51:23.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"177186810","230557588","vptchbgtc1","VPTCHBGTC1","00:50:56:82:80:DE","10.41.19.40","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8191","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 b6 10 61 39 05 b9-5e f5 46 9f a3 1e 4e 0b","NoAssetTag","'+02:00","2026-03-31T11:03:12.000+02:00","admin_gtc","Cloud Agent","c509c0e7-d8fa-459e-a6bf-730a3dcce650","2023-07-05T09:06:55.000+02:00","2026-04-22T08:51:13.000+02:00","64-Bit","5","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,GTC,DEX","623.0" +"130583019","192832806","vtexpbdech1.sanef.groupe","","00:50:56:82:32:78","10.45.14.163","fe80::250:56ff:fe82:3278","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f2 5c 11 c8 8e 2e-99 6a 47 bd 0c 40 bf e4","No Asset Tag","'+02:00","2026-03-03T15:15:34.000+02:00","delcour","Cloud Agent","8c9d3abb-5581-4975-bfd8-d8dd1837b75a","2022-07-07T11:28:24.000+02:00","2026-04-22T11:21:37.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,BDD-POS DYN,DECHETS,TAG-SRVEXPOSEINDIRECT,Obsolete,Patrimoine,Recette,VRF_INCONNUE","108.0" +"319353853","328407244","PCB22895.sanef.groupe","PCB22895","D0:AD:08:A3:7B:EB","10.107.30.16","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVD","8CC3502YVD","'+02:00","2026-03-28T09:11:42.000+02:00","SANEF\MATUSZAK","Cloud Agent","cd0d2f45-0365-4cb7-899e-6996f496e509","2025-04-25T13:01:20.000+02:00","2026-04-22T11:04:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"184091720","235300537","vpcybapsm1.sanef.groupe","VPCYBAPSM1","00:50:56:82:2C:FF","10.44.1.68","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 10 f7 02 88 cd 58-8e e0 a2 a1 5b 01 ed 81","NoAssetTag","'+02:00","2026-03-13T09:59:23.000+02:00","SANEF-INT\BP01481","Cloud Agent","294058fb-5e5e-4f9e-b93e-ac7fc7ea59d6","2023-08-23T09:37:28.000+02:00","2026-04-22T08:50:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,CyberArk,OS-WIN-SRV DYN","246.0" +"369633115","348514276","vmdtrac01.recette.adds","VMDTRAC01","00:50:56:9C:4E:D3","10.45.17.4","fe80::1bd8:9174:9592:22ed","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c fe 51 4e 90 67 49-a5 71 7a e9 20 7f 03 6b","NoAssetTag","'+02:00","2026-04-16T00:22:58.000+02:00","supwindev","Cloud Agent","bbc8aa7c-0df2-4531-a569-566d272bdfcb","2025-10-17T18:30:00.000+02:00","2026-04-22T08:50:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"357852646","343894987","PCB22714.sanef.groupe","PCB22714","D0:AD:08:AA:50:64","10.220.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764K2","","'+02:00","2026-04-22T08:43:41.000+02:00","SANEF\bazire","Cloud Agent","3cac8cd7-23f0-4c66-817c-3c177f10bab3","2025-09-08T12:57:11.000+02:00","2026-04-22T08:50:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"384812740","355178116","PCB25837.sanef.groupe","PCB25837","24:FB:E3:5D:13:4B","10.4.31.67","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.11","5CG5282CVQ","","'+02:00","2026-03-23T09:11:13.000+02:00","SANEF\crabs","Cloud Agent","033598d2-b289-4618-aa82-06983f059ebb","2025-12-18T15:09:33.000+02:00","2026-04-22T11:14:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"232288356","259713739","SVP20947.sanef-int.adds","SVP20947","BC:0F:F3:87:6F:97","10.1.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LL0","","'+02:00","2026-04-20T17:24:53.000+02:00","Superviseur","Cloud Agent","15fff1ad-1da3-4fe4-8819-ddb93ce3f138","2024-04-25T12:01:01.000+02:00","2026-04-22T08:50:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320087765","328609739","PCB22448.sanef.groupe","PCB22448","D0:AD:08:A3:7B:78","10.106.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV8","8CC3502YV8","'+02:00","2026-04-17T14:18:18.000+02:00","SANEF\ROBIQUET","Cloud Agent","67634070-6d9b-4955-b934-d289c1debf6e","2025-04-28T11:49:06.000+02:00","2026-04-22T08:50:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"186519288","236834522","vpiadawdc2.sanef-int.adds","VPIADAWDC2","00:50:56:9A:A1:58","10.44.3.5","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1a 70 1a f7 97 da 0e-2d 8b b0 3a ca 73 a3 0f","NoAssetTag","'+02:00","2026-03-24T15:32:13.000+02:00","SANEF-INT\A17402","Cloud Agent","3b466fd5-f9d1-487b-9042-fb9f04e5ce61","2023-09-06T15:43:33.000+02:00","2026-04-22T08:49:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,AD,DSI","250.0" +"362044576","345544867","PCB24094.sanef.groupe","PCB24094","10:B6:76:95:8B:A8","10.219.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ9","","'+02:00","2026-04-14T06:57:03.000+02:00","SANEF\MARTINR","Cloud Agent","fbe2a1ff-1f4c-4e83-9bf2-5dddbb05ca92","2025-09-22T16:35:30.000+02:00","2026-04-22T10:59:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","254.0" +"202866425","245557998","vipeaabst3.sanef.groupe","","00:50:56:90:12:e8","10.41.29.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e0 d3 a8 10 4d 30-d9 48 e3 c1 ce dd 54 4b","No Asset Tag","'+02:00","2026-03-19T12:12:01.000+02:00","cybreconcile","Cloud Agent","c0e868f2-650f-4170-8c54-2f5d9d4b0555","2023-12-06T19:16:31.000+02:00","2026-04-22T11:09:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DSI,BOOST,Cloud Agent,Linux Server","152.0" +"280830803","305634990","PCB21328.sanef.groupe","PCB21328","D0:AD:08:AA:50:93","10.202.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LL","","'+02:00","2026-04-02T08:28:34.000+02:00","SANEF\linseya","Cloud Agent","7d09c6f3-8a36-44ba-b611-db8a7482414f","2024-11-20T16:55:32.000+02:00","2026-04-22T11:15:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"270786601","300125042","SVP21042.sanef-int.adds","SVP21042","D0:AD:08:A7:28:14","10.152.20.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK7","","'+02:00","2026-03-13T06:10:42.000+02:00","Superviseur","Cloud Agent","49da32ca-20e4-4c67-82a4-7fee28f5f6f7","2024-10-08T11:52:19.000+02:00","2026-04-22T08:49:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"176400096","229974600","vpdaibana6","VPDAIBANA6","00:50:56:90:1B:C9","10.41.70.25","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 20 92 b2 a2 a5 1e-3a 2f 43 c5 86 79 01 39","NoAssetTag","'+02:00","2026-04-20T10:19:22.000+02:00","ecoad-ext","Cloud Agent","c8384645-53bb-428c-98e3-22a7d26d0619","2023-06-29T11:20:12.000+02:00","2026-04-22T08:49:17.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,BDD-POS DYN,DAI,DEX,OS-WIN-SRV DYN","358.0" +"399424731","361124643","SPBURADPI1","SPBURADPI1","20:67:7C:F1:F2:A0","10.101.242.9","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Computers / Server","HPE ProLiant DL360 G10 Server","8","2594","Intel(R) Xeon(R) Silver 4112 CPU @ 2.60GHz","16042","HPE U32","CZJ903090C","","'+02:00","2026-04-02T16:36:03.000+02:00","Administrateur","Cloud Agent","f0d28cbc-cdb0-47fa-b7d1-140c3a48e94c","2026-02-11T19:09:26.000+02:00","2026-04-22T08:48:54.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DSI,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,VRF_BURO,SCCM","91.0" +"272562374","301137591","SVP21045.sanef-int.adds","SVP21045","D0:AD:08:A3:7B:77","10.154.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX1","","'+02:00","2026-04-17T12:42:58.000+02:00","Superviseur","Cloud Agent","438891d5-0337-425b-a392-1b043980a03c","2024-10-16T12:03:42.000+02:00","2026-04-22T08:48:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"328593408","","PCB20745.sanef.groupe","PCB20745","58:1C:F8:EB:79:45","10.255.4.192","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2T","","'+02:00","2026-04-15T08:10:24.000+02:00","SANEF\heurgue","Cloud Agent","5dba075d-21b7-41d0-a12a-18eb3bc0fa46","2025-05-30T11:13:47.000+02:00","2026-04-22T08:48:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"236549943","265276980","vpechatre2.sanef.groupe","","00:50:56:90:2c:2e","10.42.16.134","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 48 20 ea b6 3a 83-1e dd 57 83 4f 65 64 33","No Asset Tag","'+02:00","2025-11-18T15:28:24.000+02:00","cybreconcile","Cloud Agent","795a8b92-3919-4704-9255-37eaf5049f65","2024-05-14T14:27:38.000+02:00","2026-04-22T11:23:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,TALEND","208.0" +"331161666","","PCB17778.sanef.groupe","PCB17778","28:C5:D2:9F:C3:6A","10.255.2.171","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3Q","","'+02:00","2026-04-20T08:25:59.000+02:00","SANEF\CAPRON","Cloud Agent","7b69fbbd-6b4a-43d0-87e1-4b1bbd597c08","2025-06-05T15:13:19.000+02:00","2026-04-22T08:48:05.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"197807916","243076074","nvr-spare-etv","NVR-SPARE-ETV","00:50:56:82:C1:E6","10.152.7.252","fe80::6c6c:919c:e531:6ba0","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 f1 84 9c e9 64 3c-50 4a 26 e9 a4 30 40 58","NoAssetTag","'+02:00","2026-01-28T12:50:40.000+02:00","Administrateur","Cloud Agent","fd3dfa9d-76ec-43cb-a898-50f8cd06b8ec","2023-11-07T11:28:24.000+02:00","2026-04-22T08:48:02.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,DEX,NVR","508.0" +"387189143","356515675","vmdgest01.recette.adds","VMDGEST01","00:50:56:9C:77:89","10.45.17.131","fe80::f839:6638:c52c:3ce6","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 6b b2 38 3e bf-58 2e 25 b9 2d 80 a7 fb","NoAssetTag","'+02:00","2026-04-16T01:35:51.000+02:00","supwindev","Cloud Agent","1b2d19d1-9fde-4ed4-88bb-e1b40669927e","2025-12-31T16:19:08.000+02:00","2026-04-22T08:47:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"370383934","348882263","PCB17801.sanef.groupe","PCB17801","D0:AD:08:0C:8D:19","10.200.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3N","","'+02:00","2026-04-16T09:12:35.000+02:00","SANEF\JOUATTE","Cloud Agent","e844a3e1-98a5-4558-87e2-785b0628920f","2025-10-21T11:48:35.000+02:00","2026-04-22T08:47:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"340144930","336514450","PCB17782.sanef.groupe","PCB17782","28:C5:D2:9F:C3:97","10.205.0.37,10.255.1.221","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y41","","'+02:00","2026-04-16T08:56:11.000+02:00","SANEF\GANIER","Cloud Agent","c9f8e13d-8cc9-4350-bf61-a519030fc68d","2025-07-08T15:40:28.000+02:00","2026-04-22T11:16:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"325248248","331288891","vposapkib1.sanef.groupe","","00:50:56:90:d2:21","10.41.20.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 65 6a 7f f9 9d e9-49 e9 27 e1 07 1e 65 fe","No Asset Tag","'+02:00","2026-02-25T17:17:08.000+02:00","cybsupsys","Cloud Agent","b8c5e342-d8c3-4e4b-9a54-a47044b97c84","2025-05-16T14:45:24.000+02:00","2026-04-22T11:19:49.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,Péage","144.0" +"372173101","349603607","PCB24201.sanef.groupe","PCB24201","30:E3:A4:D6:F7:45","10.255.4.248","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLN","","'+02:00","2026-04-20T10:28:01.000+02:00","SANEF\hopin","Cloud Agent","aea4e318-ee21-4b15-9861-a49f34c807b4","2025-10-27T16:59:01.000+02:00","2026-04-22T08:47:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"333995189","333995105","PCB24112.sanef.groupe","PCB24112","48:EA:62:C8:93:D1","10.105.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V72","","'+02:00","2026-04-03T07:30:21.000+02:00","SANEF\BRICOUTD","Cloud Agent","69d9863d-24b9-47f1-a6de-987aafded5f9","2025-06-17T11:53:24.000+02:00","2026-04-22T08:46:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"328617436","","PCB23582.sanef.groupe","PCB23582","C8:6E:08:8A:45:7B","10.205.0.20,192.168.1.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L77","","'+02:00","2026-04-08T15:14:01.000+02:00","SANEF\peron","Cloud Agent","69916d2d-c478-4c81-ae98-60f1de485dbc","2025-05-30T13:59:07.000+02:00","2026-04-22T08:46:45.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"187703359","237569912","lremvbremv2.sanef.groupe","","00:17:a4:77:1c:38, 00:17:a4:77:1c:3c","192.168.108.116,192.168.108.136,192.168.108.138,169.254.1.199,172.16.0.116","fe80::217:a4ff:fe77:1c38,fe80::217:a4ff:fe77:1c3c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000707","","'+02:00","2024-05-15T12:09:38.000+02:00","root","Cloud Agent","8066c65e-2e21-482d-afab-6cf60d6f3b18","2023-09-13T17:37:59.000+02:00","2026-04-22T11:07:34.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard V17 Recette,Cloud Agent,Linux Server,DEX","494.0" +"358642751","344172386","vpdsiawsus2.sanef-int.adds","VPDSIAWSUS2","00:50:56:8D:46:C9","10.44.2.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 0d 04 80 5b e6 7f 51-6d 32 22 32 f1 25 96 a9","NoAssetTag","'+02:00","2026-04-15T15:38:15.000+02:00","SANEF-INT\B07185","Cloud Agent","ae330ab8-116d-48d5-b574-94067f3e9d1a","2025-09-10T16:03:42.000+02:00","2026-04-22T08:46:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,WSUS,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent","233.0" +"152234120","206839618","vpecmbsql1.sanef-int.adds","VPECMBSQL1","00:0C:29:1B:93:CC","10.44.2.37","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","24575","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-56 4d e7 50 cc fc d2 38-8d cd e7 98 c6 1b 93 cc","NoAssetTag","'+02:00","2026-01-26T15:49:00.000+02:00","SANEF-INT\b03987","Cloud Agent","c1b0a7b8-cc1b-4149-8d78-7d2a689450eb","2022-12-16T10:57:08.000+02:00","2026-04-22T08:45:22.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,BDD-SQL DYN,SCCM","521.0" +"319330663","328390117","PCB22838.sanef.groupe","PCB22838","D0:AD:08:A3:7B:29","10.1.30.12","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXL","8CC3502YXL","'+02:00","2026-03-28T09:11:17.000+02:00","SANEF\vanacker","Cloud Agent","eb71e931-0890-408b-9a5b-c998c3e13cda","2025-04-25T10:10:32.000+02:00","2026-04-22T08:45:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"324358744","330212478","PCB22316.sanef.groupe","PCB22316","60:45:2E:0F:8E:30","10.255.3.146","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ2","8CC3502YZ2","'+02:00","2026-03-29T09:13:06.000+02:00","SANEF\gallaisf","Cloud Agent","ed880972-ed0f-467f-a377-de3bc825ef1e","2025-05-13T11:54:15.000+02:00","2026-04-22T08:45:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"240181789","273966129","SVP20977.sanef-int.adds","SVP20977","BC:0F:F3:88:FD:32","10.106.18.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMG","","'+02:00","2026-04-21T12:50:22.000+02:00","Superviseur","Cloud Agent","29af74a6-efae-4e12-9cdb-3107485e8a44","2024-05-29T15:28:08.000+02:00","2026-04-22T08:45:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"128134207","191071975","vpburaadfs2.sanef.groupe","VPBURAADFS2","00:50:56:82:37:68","10.30.12.15","fe80::c9d6:5763:e515:a94","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-56 4d 35 af 1d 95 2b 6f-4a fc eb f5 40 42 dd 22","NoAssetTag","'+02:00","2026-01-27T11:30:53.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","93895059-5d2e-4ca5-8cc2-082872b218db","2022-06-16T10:52:45.000+02:00","2026-04-22T08:44:52.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Haute,Windows Server,Critical,OS-WIN-SRV DYN,VRF_INCONNUE,AD,DSI,High,Compte & Acces,Production,Cloud Agent","845.0" +"324027359","","PCB20634.sanef.groupe","PCB20634","58:1C:F8:EB:79:13","10.100.39.66,192.168.1.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3W","","'+02:00","2026-04-20T14:54:58.000+02:00","SANEF\DELABROYE","Cloud Agent","201c9257-ed21-4c3d-b478-7686e44ef5b5","2025-05-12T12:47:51.000+02:00","2026-04-22T08:44:31.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"285212527","","SVP22869.sanef-int.adds","SVP22869","D0:AD:08:A7:27:BD","10.212.26.209","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN2","","'+01:00","2026-04-01T10:31:57.000+02:00","Superviseur","Cloud Agent","9829b9bd-2539-4f40-8e75-2c8cdd46a3b8","2024-12-09T13:54:34.000+02:00","2026-04-22T08:44:27.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331437535","","PCB23557.sanef.groupe","PCB23557","C8:6E:08:8A:45:35","10.101.243.90,192.168.1.84","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L64","","'+02:00","2026-04-02T14:12:51.000+02:00","SANEF\HUYNH","Cloud Agent","4b3b2ddc-ca8d-410d-8712-5af2ee16bdb4","2025-06-06T14:49:17.000+02:00","2026-04-22T08:44:17.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"409534543","364931497","PCB24230.sanef.groupe","PCB24230","70:15:FB:7E:20:D4","192.168.1.154,192.168.1.67","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYT","","'+02:00","2026-04-16T09:18:39.000+02:00","SANEF\josserand","Cloud Agent","c2217d45-aa31-4289-91d7-a36bb2c66a3a","2026-03-18T16:09:30.000+02:00","2026-04-22T08:44:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"223160633","255065731","OSA20932.sanef-int.adds","OSA20932","BC:0F:F3:87:66:69","10.100.20.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLX","","'+02:00","2026-04-16T21:01:04.000+02:00","Superviseur","Cloud Agent","c7ee695f-14df-43d6-9491-a95d5f24cfae","2024-03-18T15:24:35.000+02:00","2026-04-22T08:44:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"130583718","192833336","vdameasxt1","","00:50:56:82:7c:10, 66:f9:37:c3:7e:94, fe:90:fc:73:f5:6b, ee:ee:ee:ee:ee:ee","10.45.2.56,10.233.102.128,169.254.25.10","fe80::250:56ff:fe82:7c10,fe80::64f9:37ff:fec3:7e94,fe80::ecee:eeff:feee:eeee","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","3","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 53 e6 8b 2f b6 06-8f 26 29 fa 57 33 f6 e4","No Asset Tag","'+02:00","2025-10-08T13:43:03.000+02:00","cybreconcile","Cloud Agent","084596db-0cec-4dbf-82cb-d7db228164f0","2022-07-07T11:35:58.000+02:00","2026-04-22T11:00:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,BDD-POS DYN,VRF_INCONNUE","245.0" +"331425935","","PCB23535.sanef.groupe","PCB23535","6C:0B:5E:EE:A3:26","10.206.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB9","","'+02:00","2026-04-21T08:40:21.000+02:00","SANEF\defilippis","Cloud Agent","ba076ab9-ec40-4766-8ed6-479542cf52b7","2025-06-06T13:44:37.000+02:00","2026-04-22T08:43:39.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"376111505","351375871","PCB18012.sanef.groupe","PCB18012","C0:18:03:85:61:2D","10.200.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206174Y","8CC206174Y","'+02:00","2026-04-09T13:51:34.000+02:00","SANEF\bouvierar","Cloud Agent","8ba18419-e72b-4ffa-a4ce-b83db2a0af1d","2025-11-12T12:35:45.000+02:00","2026-04-22T09:23:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"377360245","352023467","PCB24335.sanef.groupe","PCB24335","10:B6:76:93:FA:9B","10.152.31.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YGH","","'+02:00","2026-04-20T07:59:24.000+02:00","SANEF\PRUVOTJ","Cloud Agent","c4bdb8d3-7a90-4f0a-90ae-91044f1ba8d9","2025-11-18T09:30:16.000+02:00","2026-04-22T08:43:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","254.0" +"324054990","","PCB23788.sanef.groupe","PCB23788","6C:0B:5E:EE:A3:C5","10.5.31.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4R","","'+02:00","2026-04-21T13:43:59.000+02:00","SANEF\cereser","Cloud Agent","80973cf4-7632-4c3d-9be8-eeaf0da895f2","2025-05-12T14:44:10.000+02:00","2026-04-22T08:43:08.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"255419684","294877149","lramebrac4.sanef-rec.fr","","3e:33:fb:a0:00:da, 3e:33:fb:a0:00:d6","10.45.5.9,169.254.28.85,10.45.2.113,10.45.2.117","fe80::3c33:fbff:fea0:da,fe80::3c33:fbff:fea0:d6","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW52010","/n/Bios Asset Tag :","'+02:00","2026-04-20T14:20:51.000+02:00","reboot","Cloud Agent","4e64c4bc-08ea-4237-bd14-c2fa87d29bb3","2024-08-02T16:53:15.000+02:00","2026-04-22T11:23:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Sextan,Recette,Amelie,OS-LIN-SRV DYN","503.0" +"331393040","","PCB21162.sanef.groupe","PCB21162","D0:AD:08:E9:07:8A","10.154.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HV1","","'+02:00","2026-04-20T11:47:07.000+02:00","SANEF\GONNET","Cloud Agent","c4bb4456-6ab0-418e-b5ee-481af210816d","2025-06-06T10:12:14.000+02:00","2026-04-22T08:42:43.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325943544","","PCB20727.sanef.groupe","PCB20727","BC:0F:F3:3D:28:10","10.255.1.180,10.200.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DST","","'+02:00","2026-03-30T18:46:40.000+02:00","SANEF\gascoin","Cloud Agent","faf88c88-4da2-4d70-ab4e-56a3f0c74967","2025-05-20T13:26:21.000+02:00","2026-04-22T08:42:29.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"370171321","348791253","PCB21200.sanef.groupe","PCB21200","D0:AD:08:AA:50:54","10.208.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JK","","'+02:00","2026-04-07T11:41:52.000+02:00","SANEF\aze","Cloud Agent","88b7bcef-5437-499b-ae94-75488d05b9a1","2025-10-20T14:57:37.000+02:00","2026-04-22T11:22:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"183438113","234851841","vpburbimp1.sanef.groupe","VPBURBIMP1","00:50:56:9C:88:27","10.46.31.70","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1c 63 f1 39 e8 09 1d-30 3d 7f c7 37 b0 02 6d","NoAssetTag","'+02:00","2026-01-27T13:24:13.000+02:00","SANEF\ndead","Cloud Agent","b54fdb66-5252-41fd-a659-60b0454a05bf","2023-08-18T14:30:22.000+02:00","2026-04-22T08:41:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","PaperCut,DSI,BDD-SQL DYN,Cloud Agent,Windows Server,OS-WIN-SRV DYN","342.0" +"333156387","","PCB24023.sanef.groupe","PCB24023","6C:0B:5E:F8:E7:06","192.168.1.13,10.105.31.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF2","","'+02:00","2026-04-14T14:04:40.000+02:00","SANEF\BERNAUX","Cloud Agent","1a717192-1794-42a2-8f77-7d6d47bcc536","2025-06-13T11:58:06.000+02:00","2026-04-22T08:40:54.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"318687698","328168621","PCB22442.sanef.groupe","PCB22442","D0:AD:08:A7:27:A9","10.104.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTD","8CC3502YTD","'+02:00","2026-04-21T11:40:58.000+02:00","SANEF\CERF","Cloud Agent","0dd0cc32-ca06-4ddf-bed9-6ba714977baf","2025-04-23T09:35:18.000+02:00","2026-04-22T11:49:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"280824387","305629318","PCB22514.sanef.groupe","PCB22514","D0:AD:08:AA:50:7D","10.220.31.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KW","","'+02:00","2026-04-01T08:57:24.000+02:00","SANEF\platelc","Cloud Agent","11dad274-4e23-43f6-8ef5-fc8bb9e9a47a","2024-11-20T15:52:51.000+02:00","2026-04-22T11:31:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"189946429","238855499","vibotrssm1","VIBOTRSSM1","00:50:56:90:99:3D","10.41.23.152","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 8e 39 38 b1 f2 9b-fe c1 43 15 5d a5 37 1a","NoAssetTag","'+02:00","2026-03-18T16:34:55.000+02:00","SANEF\ndead","Cloud Agent","080e93b7-1276-4212-a209-daee7ec6e930","2023-09-26T11:32:27.000+02:00","2026-04-22T08:40:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Production,FreeFlow,Flux Libre,flux_libre","335.0" +"317591666","327677223","PCB23783.sanef.groupe","PCB23783","6C:0B:5E:EE:93:18","10.108.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3D","","'+02:00","2026-04-15T15:10:18.000+02:00","SANEF\RIMBAULT","Cloud Agent","29404b02-3a06-4dd7-8faa-1eac257356ad","2025-04-18T11:20:51.000+02:00","2026-04-22T08:40:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"322106482","329345971","PCB23644.sanef.groupe","PCB23644","6C:0B:5E:EE:A3:6B","10.200.30.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBW","","'+02:00","2026-03-31T09:58:57.000+02:00","SANEF\FEGER","Cloud Agent","8dc187ac-c3dc-4abc-a5ba-91f21088c47c","2025-05-05T16:10:04.000+02:00","2026-04-22T08:40:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"326550236","","PCB23603.sanef.groupe","PCB23603","6C:0B:5E:EE:EC:12","192.168.1.11,10.100.39.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5Z","","'+02:00","2026-03-31T09:28:29.000+02:00","SANEF\DESCANNEVELLE","Cloud Agent","0ac6e328-36ff-4b66-a256-c53a93a85426","2025-05-22T11:13:09.000+02:00","2026-04-22T08:40:09.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"383959306","354726943","PCB20685.sanef.groupe","PCB20685","BC:0F:F3:3D:58:A3","10.202.31.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CT6","","'+02:00","2026-04-17T15:06:55.000+02:00","SANEF\gilletj","Cloud Agent","eecec7a7-c399-4b13-840b-eaab4fa82b59","2025-12-15T12:16:42.000+02:00","2026-04-22T08:40:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"329765681","","MTR-1PXF2L3","MTR-1PXF2L3","A4:BB:6D:90:A9:7A","10.101.246.207","fe80::339c:91:6c63:5d3e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","1PXF2L3","","'+02:00","2026-04-22T02:33:13.000+02:00","Skype","Cloud Agent","92ddccb6-8649-406a-bf06-ead508eb3f82","2025-06-03T12:58:25.000+02:00","2026-04-22T08:39:37.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"329760923","","MTR-3G1CXM3","MTR-3G1CXM3","A4:BB:6D:95:CA:CE","10.101.246.208","fe80::f286:b73a:cbf2:2a81","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","3G1CXM3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","84447e62-2001-4008-b849-e4a0a19721e1","2025-06-03T12:53:15.000+02:00","2026-04-22T08:39:37.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359135332","","PCB20689.sanef.groupe","PCB20689","58:1C:F8:EB:6A:31","10.255.1.175","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224D3S","","'+02:00","2026-03-29T20:56:09.000+02:00","SANEF\nion","Cloud Agent","415a6ede-5b56-4df9-aaf2-f76107fdac98","2025-09-12T10:18:51.000+02:00","2026-04-22T08:39:28.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"363314612","346060503","PCV18542.sanef-int.adds","PCV18542","30:13:8B:6C:5A:6F","10.152.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473T9","","'+02:00","2026-04-10T10:15:54.000+02:00","Operateur","Cloud Agent","3553bfa4-cb1b-4bf0-870a-bfc3ac29c2c5","2025-09-26T17:05:56.000+02:00","2026-04-22T08:39:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"387494428","356668957","MIO20985.sanef-int.adds","MIO20985","28:C5:C8:39:31:60","10.100.40.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.19.01","8CC3290LLV","","'+02:00","2026-03-16T15:07:23.000+02:00","Operateur","Cloud Agent","20df591d-8ff6-40c6-82b8-b531ba4a1eda","2026-01-02T17:36:45.000+02:00","2026-04-22T08:38:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"363859540","346360048","PCB21596.sanef.groupe","PCB21596","D0:AD:08:A7:27:B7","10.12.31.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNG","8CC3502YNG","'+02:00","2026-04-17T18:01:02.000+02:00","SANEF\FREMEAUX","Cloud Agent","c9dfcd75-ea50-42ec-b18c-bbfb87dd2443","2025-09-29T12:15:44.000+02:00","2026-04-22T08:38:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"324711439","","PCB23750.sanef.groupe","PCB23750","C8:6E:08:47:0B:B2","10.5.31.44,10.255.1.174","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H53","","'+02:00","2026-03-31T09:25:29.000+02:00","SANEF\thomas","Cloud Agent","a240cf96-bdfd-4b31-a77b-051ea4b12aef","2025-05-14T13:45:24.000+02:00","2026-04-22T08:38:21.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"374186576","350497883","PCV18557.sanef-int.adds","PCV18557","30:13:8B:6C:5D:0E","10.5.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","32473","HP U50 Ver. 03.03.11","CZC44473T6","","'+02:00","2026-03-26T22:04:04.000+02:00","Operateur","Cloud Agent","f0668b74-6009-4c0c-a4d8-317fcbe9c3a3","2025-11-04T17:50:11.000+02:00","2026-04-22T08:38:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"331393225","","PCB23515.sanef.groupe","PCB23515","C8:6E:08:88:F0:CC","10.205.0.81,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8F","","'+02:00","2026-04-10T18:33:05.000+02:00","SANEF\KAMOUN","Cloud Agent","eb854671-3674-4567-8024-d040593ce7b0","2025-06-06T10:07:51.000+02:00","2026-04-22T08:38:15.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"177183604","230557589","vptchagtc1","VPTCHAGTC1","00:50:56:82:AA:DE","10.41.19.45","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8191","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 2e ce cc af b3 ad-45 1f c1 42 d4 f3 e8 3f","NoAssetTag","'+02:00","2026-03-31T10:51:53.000+02:00","admin_gtc","Cloud Agent","48681b62-8530-47d9-a9fe-dab792d0fdaf","2023-07-05T09:06:33.000+02:00","2026-04-22T08:38:14.000+02:00","64-Bit","5","SCA,VM,PM,GAV","GTC,Cloud Agent,Windows Server,BDD-SQL DYN,OS-WIN-SRV DYN,DEX","831.0" +"130357913","192670921","vppeaaref1","VPPEAAREF1","00:50:56:82:4F:DA","10.41.2.230","fe80::b747:dde8:3426:8a96","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2594","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","10240","Phoenix Technologies LTD 6.00","VMware-42 02 68 22 6e 03 b8 9f-76 7e 6f 3c 79 01 71 67","NoAssetTag","'+02:00","2026-02-25T12:52:46.000+02:00","Administrateur","Cloud Agent","4165dc57-0372-4422-afe6-52f0a6745e53","2022-07-05T17:17:54.000+02:00","2026-04-22T08:37:53.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Production,High,Péage,Haute,DEX,OS-WIN-SRV DYN,VRF_PEAGE_DC,SVP,Cloud Agent,Windows Server","643.0" +"320434189","328701285","PCB22891.sanef.groupe","PCB22891","D0:AD:08:A7:27:DE","10.1.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSW","8CC3502YSW","'+02:00","2026-04-05T16:05:11.000+02:00","SANEF\bastienn","Cloud Agent","8c6afe10-f3ff-43e2-a8eb-37b0817083d2","2025-04-29T09:54:53.000+02:00","2026-04-22T08:37:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"393372827","358619752","PCB21340.sanef.groupe","PCB21340","E4:60:17:CA:3E:65","10.205.0.188,172.20.10.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MB","","'+02:00","2026-04-01T12:12:08.000+02:00","SANEF\corouge-ext","Cloud Agent","8462a6df-0b36-4f68-8c27-b7c5b387eaaf","2026-01-19T17:58:02.000+02:00","2026-04-22T11:16:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"152233312","206840494","vpiadaadm1.sanef-int.adds","VPIADAADM1","00:50:56:8D:23:90","10.44.2.164","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","32767","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 0d 78 03 2a 10 8c f4-85 38 e7 41 d4 6b fe fc","NoAssetTag","'+02:00","2026-04-15T17:25:49.000+02:00","SANEF-INT\B07185","Cloud Agent","6b639443-de9f-4590-8f39-d76aa6590d72","2022-12-16T11:10:24.000+02:00","2026-04-22T08:37:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DSI,VRF_INCONNUE,AD","338.0" +"337912529","","PCB21306.sanef.groupe","PCB21306","30:F6:EF:A6:93:F7","10.205.0.97,192.168.0.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJX","","'+02:00","2026-04-22T08:33:48.000+02:00","SANEF\gilot","Cloud Agent","1a1ff8b4-f87c-4889-9abb-8ccf713a3c64","2025-07-01T11:44:16.000+02:00","2026-04-22T08:37:20.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331197662","","PCB21172.sanef.groupe","PCB21172","F0:20:FF:9B:27:6F","10.255.1.172","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HW4","","'+02:00","2026-04-22T08:32:44.000+02:00","SANEF\LECOUTRE","Cloud Agent","e75e6a8c-790e-475f-8297-10a9a4a948af","2025-06-05T16:43:17.000+02:00","2026-04-22T08:37:01.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"352096727","341458295","PCB21093.sanef.groupe","PCB21093","D0:AD:08:AA:50:46","10.101.243.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764J3","","'+02:00","2026-04-15T08:26:20.000+02:00","SANEF\HUBERT-ext","Cloud Agent","40875f18-20f3-4005-ae88-afe801cdb9c2","2025-08-18T10:08:09.000+02:00","2026-04-22T08:36:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"330793253","","PCB21286.sanef.groupe","PCB21286","30:F6:EF:A5:F8:BB","10.205.0.28,192.168.1.81","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GJJ","","'+02:00","2026-04-16T12:54:43.000+02:00","SANEF\MAZETIER","Cloud Agent","78921bc1-1988-423e-bcef-35ea45e31ed2","2025-06-04T14:57:40.000+02:00","2026-04-22T08:36:12.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"395830937","359634979","PCB25948.sanef.groupe","PCB25948","4C:CF:7C:0A:3C:E9","10.205.0.122,192.168.1.59","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534221Q","","'+02:00","2026-04-17T11:27:41.000+02:00","SANEF\KEROAS","Cloud Agent","fdbb4951-909b-441a-bd8c-560c3a53dd51","2026-01-29T11:30:53.000+02:00","2026-04-22T08:36:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"377683971","352158041","PCV21615.sanef-int.adds","PCV21615","D0:AD:08:A4:4D:B0","10.197.12.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711K4","","'+02:00","2025-11-19T09:56:26.000+02:00","Operateur","Cloud Agent","7e6d9fe3-2a19-42b6-9cca-53b91ffad6fc","2025-11-19T10:28:54.000+02:00","2026-04-22T08:36:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"324023210","","PCB18751.sanef.groupe","PCB18751","BC:0F:F3:3D:48:20","192.168.1.33,10.5.30.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D36","","'+02:00","2026-04-21T09:41:55.000+02:00","SANEF\merenne","Cloud Agent","f8c32d61-8be9-4e38-b657-52f8f9f1f9c6","2025-05-12T10:47:14.000+02:00","2026-04-22T08:35:24.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"300882812","320632876","PCB22462.sanef.groupe","PCB22462","D0:AD:08:E9:37:5C","10.104.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HV0","","'+02:00","2026-04-17T07:54:19.000+02:00","SANEF\durbecq","Cloud Agent","0378436e-b335-4d07-93a8-3bcb5548a34d","2025-02-18T11:08:36.000+02:00","2026-04-22T08:35:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"376610054","351612491","PCV21580.sanef-int.adds","PCV21580","D0:AD:08:A3:7C:C6","10.12.7.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YY8","","'+02:00","2026-03-03T10:07:44.000+02:00","Operateur","Cloud Agent","b9085726-5e01-420d-b987-0e611373479c","2025-11-14T12:51:47.000+02:00","2026-04-22T08:35:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"175136490","229075061","vvbotrssm1.recette.adds","VVBOTRSSM1","00:50:56:9C:79:3A","192.168.21.164","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1c f4 3e 50 ab 0f cb-58 91 ce 9f 8e a7 ab bc","NoAssetTag","'+02:00","2026-03-12T11:44:23.000+02:00","RECETTE\b03987","Cloud Agent","17b0d537-7baa-4d30-be15-6fb57f79dab1","2023-06-20T12:41:04.000+02:00","2026-04-22T08:34:38.000+02:00","64-Bit","2","SCA,VM,GAV","Cloud Agent,OS-WIN-SRV DYN,flux_libre,Flux Libre,Recette,FreeFlow","247.0" +"325208536","","PCB20742.sanef.groupe","PCB20742","BC:0F:F3:3D:38:BB","10.200.31.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CS6","","'+02:00","2026-03-30T18:55:10.000+02:00","SANEF\wibault","Cloud Agent","afc31fb2-9014-4095-8d30-2ef82e213ffe","2025-05-16T12:19:12.000+02:00","2026-04-22T08:33:15.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"281447180","","PCB21349.sanef.groupe","PCB21349","D0:AD:08:AA:50:92","10.202.31.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LK","","'+02:00","2026-04-01T07:02:11.000+02:00","SANEF\guerrierc","Cloud Agent","92714763-54f8-48d7-be30-fa6c358ab4f0","2024-11-22T11:25:11.000+02:00","2026-04-22T08:32:45.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"358166523","344040947","PCV18552.sanef-int.adds","PCV18552","30:13:8B:6C:5D:39","10.100.7.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473ST","","'+02:00","2026-04-22T05:02:21.000+02:00","Operateur","Cloud Agent","bc7714db-222c-4b74-8010-497add61ba51","2025-09-09T15:40:56.000+02:00","2026-04-22T08:32:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"224249089","255705459","PCB20677.sanef.groupe","PCB20677","58:1C:F8:E9:76:7C","10.205.0.167,192.168.1.14","fe80::4642:78af:5af1:c340","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.13.01","5CG3224D2R","","'+02:00","2026-04-07T09:37:57.000+02:00","SANEF\ZHOU-ext","Cloud Agent","450895ef-740e-4096-8ea7-319af0df30a4","2024-03-22T12:24:49.000+02:00","2026-04-22T11:32:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"334719895","","PCB24075.sanef.groupe","PCB24075","08:B4:D2:2C:89:72","192.168.1.41,10.205.0.79","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506438S","","'+02:00","2026-04-20T09:11:24.000+02:00","SANEF\LAMHAJEB-ext","Cloud Agent","00673dfc-af7c-404a-91fb-3505bc5d5191","2025-06-19T14:21:54.000+02:00","2026-04-22T08:32:05.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"328633300","","PCB23703.sanef.groupe","PCB23703","C8:6E:08:88:FD:DD","192.168.0.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8K","","'+02:00","2026-04-20T12:11:21.000+02:00","SANEF\BERGER-MOLAGER","Cloud Agent","724ec26a-1449-462e-8383-1c1275609792","2025-05-30T15:17:20.000+02:00","2026-04-22T08:32:01.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"327790435","","PCB23575.sanef.groupe","PCB23575","C8:6E:08:88:F0:40","10.255.3.179,10.255.3.189","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L54","","'+02:00","2026-03-31T08:38:29.000+02:00","SANEF\riot","Cloud Agent","3f367bd4-6df3-4fd2-a3e8-3efcf06c89e3","2025-05-28T14:59:35.000+02:00","2026-04-22T08:31:19.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"231772330","259457242","ls-le-touquet","LS-LE-TOUQUET","00:50:56:90:29:CF","10.41.2.101","fe80::c6a9:6b2e:f39c:8c49","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 73 d2 b2 13 40 65-e5 4f e3 e4 31 10 05 4d","NoAssetTag","'+02:00","2026-03-04T16:33:57.000+02:00","svpadmin","Cloud Agent","c31f2e3a-b354-4b86-b4a1-95c8dedf2176","2024-04-23T10:07:26.000+02:00","2026-04-22T08:31:10.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Péage,Production,SVP,High,VRF_PEAGE_DC,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","681.0" +"309374866","324174322","vrdsiaazu1.recette.adds","VRDSIAAZU1","00:50:56:9C:F8:8A","10.45.0.140","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 89 23 15 cd fd 28-2a 58 65 05 0e b1 ea fb","NoAssetTag","'+02:00","2026-04-21T13:52:46.000+02:00","Administrateur","Cloud Agent","9576ac45-5430-4891-aa42-e621bacdacfa","2025-03-19T16:36:23.000+02:00","2026-04-22T08:31:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,BDD-SQL DYN,DSI,Recette,AD,OS-WIN-SRV DYN","243.0" +"360021614","","PCB18088.sanef.groupe","PCB18088","64:D6:9A:1D:2D:97","10.255.4.203,10.202.31.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG2376HSJ","","'+02:00","2026-04-09T14:10:58.000+02:00","estelle.pitette@sapn.fr","Cloud Agent","5f91ed0c-f747-4bf1-9ffe-fa3a30eded62","2025-09-16T12:40:46.000+02:00","2026-04-22T08:30:38.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"130587954","192835990","vmamrmet1","","00:50:56:82:2C:C1, 00:50:56:82:59:C6, 00:50:56:82:65:99","10.45.2.150,10.45.2.152,10.45.3.150,10.45.3.152,10.45.4.150","fe80::250:56ff:fe82:2cc1,fe80::250:56ff:fe82:59c6,fe80::250:56ff:fe82:6599","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 5b 39 52 6e fc 3f-66 9d f0 ed db db 06 a9","No Asset Tag","'+02:00","2025-10-09T11:39:04.000+02:00","cybadmsys","Cloud Agent","0c5baa2e-99a4-4a1d-9d82-87138a30c4f5","2022-07-07T12:01:27.000+02:00","2026-04-22T12:01:13.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Trafic,Recette,Sans,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,DEX,VRF_INCONNUE,MIVISU","878.0" +"329961623","","PCB23602.sanef.groupe","PCB23602","C8:6E:08:88:FD:24","10.152.31.11,10.255.4.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5C","","'+02:00","2026-04-09T17:57:35.000+02:00","SANEF\othman","Cloud Agent","005bcc15-1c64-4933-b123-024b5263a939","2025-06-03T17:21:31.000+02:00","2026-04-22T08:29:55.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"377391132","352028486","PCB24233.sanef.groupe","PCB24233","24:FB:E3:CD:06:4B","10.152.30.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M6T","","'+02:00","2026-03-29T09:29:10.000+02:00","SANEF\RINCY","Cloud Agent","f7dce792-c14f-434d-9f1a-489838c3dc78","2025-11-18T10:19:46.000+02:00","2026-04-22T08:29:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","342.0" +"387175213","356513162","vmddops02.recette.adds","VMDDOPS02","00:50:56:9C:50:A8","10.45.17.68","fe80::a7c7:43e:b813:5a99","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 0a 70 63 43 4f e1-34 11 e1 44 5c 9d c7 90","NoAssetTag","'+02:00","2026-04-15T23:05:27.000+02:00","supwindev","Cloud Agent","f01d3609-5c73-4ff7-be16-361d616c252c","2025-12-31T15:51:48.000+02:00","2026-04-22T08:28:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"364978143","346734278","PCV22439.sanef-int.adds","PCV22439","D0:AD:08:A3:7B:59","10.147.2.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YRH","","'+02:00","2026-04-22T07:55:29.000+02:00","Operateur","Cloud Agent","e520f0a7-7dd8-4bcc-b851-15b2318c98f7","2025-10-02T16:03:12.000+02:00","2026-04-22T08:27:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320491281","328733808","PCB23649.sanef.groupe","PCB23649","6C:0B:5E:EE:CC:7E","10.100.39.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5R","","'+02:00","2026-04-14T10:10:19.000+02:00","SANEF\LABBE","Cloud Agent","d12df45a-ad9a-4952-a372-0876f9321f2c","2025-04-29T15:34:35.000+02:00","2026-04-22T08:27:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","60.0" +"325672004","","PCB20724.sanef.groupe","PCB20724","58:1C:F8:EA:00:51","192.168.0.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D45","","'+02:00","2026-04-20T08:34:29.000+02:00","SANEF\thomasa","Cloud Agent","7ad749c0-95a5-4b0f-97e9-604f17cf43ff","2025-05-19T09:55:43.000+02:00","2026-04-22T08:27:40.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"329775921","","PCB23683.sanef.groupe","PCB23683","C8:6E:08:88:FD:79","10.255.3.174","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8P","","'+02:00","2026-04-01T19:08:36.000+02:00","SANEF\macq","Cloud Agent","f2d1e5b4-e7ff-409f-aeb8-a613b5a9ac4b","2025-06-03T14:18:41.000+02:00","2026-04-22T08:27:20.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360266394","","PCB18489.sanef.groupe","PCB18489","E4:60:17:C5:09:31","10.255.3.172","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HN","","'+02:00","2026-04-06T21:48:55.000+02:00","SANEF\CHAICHAA-ext","Cloud Agent","e9b1f2b4-ca36-4b3a-95e5-1f0ae5c505d7","2025-09-16T18:57:04.000+02:00","2026-04-22T08:27:20.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"282386306","306620945","SVP21063.sanef-int.adds","SVP21063","D0:AD:08:A3:E7:1C","10.108.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXV","","'+02:00","2026-04-21T15:35:52.000+02:00","Superviseur","Cloud Agent","ac81e053-4656-400b-9666-feca1946d555","2024-11-26T14:36:05.000+02:00","2026-04-22T10:39:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"359801373","","PCB24342.sanef.groupe","PCB24342","10:B6:76:95:8B:89","10.106.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZY9","","'+02:00","2026-04-22T08:23:37.000+02:00","SANEF\LAGNIEZ","Cloud Agent","9c2cbeed-dcdb-4c7b-827e-5ff2de4f2acd","2025-09-15T16:16:15.000+02:00","2026-04-22T08:26:22.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"387183197","356517262","vmdpeag05.recette.adds","VMDPEAG05","00:50:56:9C:A2:64","10.45.17.199","fe80::350a:4dab:ae6c:f928","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 98 b5 be c8 2a ab-72 ff e0 7d 99 93 0e 1f","NoAssetTag","'+02:00","2026-04-16T02:05:36.000+02:00","supwindev","Cloud Agent","eea026a7-21b3-4f6d-9cd3-270759b44632","2025-12-31T16:38:12.000+02:00","2026-04-22T08:26:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"331397176","","PCB20678.sanef.groupe","PCB20678","58:1C:F8:EA:53:C6","192.168.1.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRX","","'+02:00","2026-04-20T08:08:33.000+02:00","SANEF\loock","Cloud Agent","7ca31224-8cd3-471c-a344-bf7ec1ad5954","2025-06-06T11:32:09.000+02:00","2026-04-22T08:26:03.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"127866560","190915920","vpemvawsus1","VPEMVAWSUS1","00:50:56:98:21:E1","192.168.100.130","fe80::13a8:3643:4632:b096","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 18 98 74 62 5d 55 1e-7d a0 2f 9e 3a 21 39 53","NoAssetTag","'+02:00","2026-04-09T23:37:33.000+02:00","Administrateur","Cloud Agent","9257b281-60b5-49e9-a732-418e3c6cfb9c","2022-06-14T16:50:59.000+02:00","2026-04-22T08:25:12.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Sans,Systèmes et serveurs,Production,DMZ,PCI Bunker EMV - VLAN Supervision/Admin,DEX,Cloud Agent,OS-WIN-SRV DYN,Windows Server,EMV,VRF_INCONNUE","486.0" +"227198904","256868975","ls-marquion","LS-MARQUION","00:50:56:90:E8:15","10.41.2.43","fe80::ff94:74ad:ebeb:8b0e","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 96 f3 9e ea 89 a5-43 05 a8 c8 ce ed 3c 81","NoAssetTag","'+02:00","2026-03-05T10:47:19.000+02:00","svpadmin","Cloud Agent","220853b7-4f78-4a30-bc14-f99e30c9ad66","2024-04-03T10:38:56.000+02:00","2026-04-22T08:25:10.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,High,Cloud Agent,Windows Server,Péage,SVP","508.0" +"222255714","254659707","OSA20951.sanef-int.adds","OSA20951","BC:0F:F3:87:6E:34","10.5.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMX","","'+02:00","2026-04-20T13:43:57.000+02:00","Superviseur","Cloud Agent","2323ed5a-c72a-45c4-a326-036ad902c5cd","2024-03-14T12:00:43.000+02:00","2026-04-22T08:25:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"371972285","349575943","PCB24255.sanef.groupe","PCB24255","24:FB:E3:CD:06:39","10.12.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M67","","'+02:00","2026-04-21T14:10:33.000+02:00","SANEF\bourget","Cloud Agent","a1515759-c28c-4648-9afd-6a474d45018f","2025-10-27T12:25:51.000+02:00","2026-04-22T08:24:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"382420952","353964321","PCB25792.sanef.groupe","PCB25792","F8:ED:FC:AA:B5:05","10.252.42.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CSY","","'+02:00","2026-04-10T07:05:07.000+02:00","SANEF\SAUTREAUWARTEL","Cloud Agent","105f5083-d126-4cd8-aa24-99fb57f0da66","2025-12-08T09:49:33.000+02:00","2026-04-22T08:24:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"395334749","359414774","PCB21104.sanef.groupe","PCB21104","D0:AD:08:AA:4F:EF","10.205.0.22,10.101.243.126","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764F9","","'+02:00","2026-03-29T09:50:07.000+02:00","SANEF\ettouil-ext","Cloud Agent","2a66fd02-505f-4f3d-8c2b-240f9f4101c9","2026-01-27T14:24:22.000+02:00","2026-04-22T08:54:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"325911628","","PCB20681.sanef.groupe","PCB20681","58:1C:F8:EB:79:27","10.108.31.13,10.255.2.186","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRB","","'+02:00","2026-04-19T21:46:18.000+02:00","SANEF\CORSET","Cloud Agent","b40bd035-984c-4efe-833e-68c4c030def7","2025-05-20T09:49:10.000+02:00","2026-04-22T08:24:22.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"407779679","364215681","PCV20831.sanef-int.adds","PCV20831","30:13:8B:6C:5F:6B","10.209.7.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q81","","'+02:00","2026-03-11T20:10:26.000+02:00","Operateur","Cloud Agent","56a566f7-2503-43c1-b613-41b836d9a34f","2026-03-11T20:30:32.000+02:00","2026-04-22T08:24:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"238500914","269491572","ls-neufchatel","LS-NEUFCHATEL","00:50:56:90:6F:13","10.41.2.102","fe80::7795:5619:f4c4:acc6","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 62 16 be 2d d7 7e-aa 61 04 2c 23 a3 75 df","NoAssetTag","'+02:00","2026-03-02T12:04:15.000+02:00","svpadmin","Cloud Agent","0d9a0496-d058-4089-a625-a336c5174895","2024-05-22T12:24:35.000+02:00","2026-04-22T08:24:16.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,SVP,Cloud Agent,Windows Server,Péage","507.0" +"129475833","192044393","lamargis1.sanef.groupe","LAMARGIS1","00:17:A4:77:14:D4, 00:17:A4:77:14:D2, 00:17:A4:77:0C:AA","169.254.159.231,169.254.183.135,10.45.2.20","fe80::7d08:d3b6:6a71:9fe7,fe80::f4ef:64a1:51dd:b787,fe80::4c66:d435:49dd:c637","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.23964)","6.1","Computers / Server","HPE ProLiant BL460c G8 Server","24","2000","Intel(R) Xeon(R) CPU E5-2620 0 @ 2.00GHz","49117","HP I31","CZJ3140NJ7","","'+02:00","2025-09-08T10:32:19.000+02:00","administrateur","Cloud Agent","86393092-b813-4443-b155-4fab54fc0f9d","2022-06-28T14:46:45.000+02:00","2026-04-22T08:24:15.000+02:00","64 bits","3","SCA,VM,PM,GAV","DEX,VRF_INCONNUE,OS-WIN-SRV DYN,Recette,Patrimoine,Sans,SIG,Obsolete,Windows Server 2008,Cloud Agent,Windows Server","520.0" +"324026821","","PCB22324.sanef.groupe","PCB22324","D0:AD:08:A3:7D:EB","10.203.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYR","","'+02:00","2026-04-06T06:45:22.000+02:00","SANEF\DEMAN","Cloud Agent","01224b16-647c-453b-b946-bc1824ac9023","2025-05-12T11:14:08.000+02:00","2026-04-22T08:24:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"198003947","243187615","vdaflbdwh1.recette.adds","VDAFLBDWH1","00:50:56:9C:4C:81","10.45.7.166","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4297) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 34 fc 75 8d c3 1a-73 7a 43 ed db 59 a2 d5","NoAssetTag","'+02:00","2026-03-11T10:24:02.000+02:00","Administrateur","Cloud Agent","f51767a6-c3f3-4b04-baf1-94fe61c962a6","2023-11-08T11:32:45.000+02:00","2026-04-22T08:23:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN,Recette,FreeFlow,flux_libre","348.0" +"327589740","","PCB23792.sanef.groupe","PCB23792","6C:0B:5E:ED:A2:52","10.3.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2C","","'+02:00","2026-03-29T13:42:08.000+02:00","SANEF\arbelin","Cloud Agent","94040fa8-cd8f-4f8a-abc8-51879a1ec249","2025-05-27T16:35:38.000+02:00","2026-04-22T08:23:30.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"324719796","","PCB20675.sanef.groupe","PCB20675","BC:0F:F3:3D:08:74","10.100.39.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQ4","","'+02:00","2026-03-30T10:14:51.000+02:00","SANEF\LONGE","Cloud Agent","40c2f9e4-cb23-4516-9628-74210c41c4d6","2025-05-14T16:38:03.000+02:00","2026-04-22T08:23:25.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"128143527","191077597","RMILWDC1.sanef.groupe","RMILWDC1","00:50:56:82:20:E2","10.30.62.30","fe80::f45f:7fb2:d439:1480","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 21 4b 57 c9 a1 0f-fa 2d 47 f5 99 02 4a 17","NoAssetTag","'+02:00","2026-01-26T16:50:00.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","fd0ad34d-12e0-42d0-a292-874ba02d72e0","2022-06-16T12:03:22.000+02:00","2026-04-22T08:23:20.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DSI,AD,Windows Server,VRF_INCONNUE,Production,Sécurité IT,Critical,Criticality,Cloud Agent,OS-WIN-SRV DYN","833.0" +"185608238","236251211","vpdsiakms1.sanef-int.adds","VPDSIAKMS1","00:0C:29:E9:E7:16","10.44.2.39","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","4095","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-56 4d 48 fb 25 77 58 62-98 63 fe fc cf e9 e7 16","NoAssetTag","'+02:00","2026-04-13T14:38:36.000+02:00","SANEF-INT\AP01107","Cloud Agent","62fc028a-2db5-465d-939e-3064488a7a62","2023-09-01T12:35:15.000+02:00","2026-04-22T08:23:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,BDD-SQL DYN,DSI,AD,Cloud Agent,Windows Server","230.0" +"324711392","","PCB23776.sanef.groupe","PCB23776","C8:6E:08:47:72:FA","192.168.1.167","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3M","","'+02:00","2026-04-14T09:16:49.000+02:00","SANEF\TCHICAYA","Cloud Agent","4f568c09-17d1-4b35-8ac5-7b3c5f3806ef","2025-05-14T15:39:31.000+02:00","2026-04-22T08:23:04.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"128614112","191424009","ls-montreuil-bretelle","LS-MONTREUIL-BR","00:50:56:90:62:7F","10.41.2.63","fe80::ccbe:b3eb:6447:1dd1","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 62 6a ea b2 bf 44-40 0d 9d 8e 95 98 5d 16","NoAssetTag","'+02:00","2026-03-02T11:28:23.000+02:00","svpadmin","Cloud Agent","7126eab6-6922-4088-8d74-d50121dc7abd","2022-06-21T15:32:30.000+02:00","2026-04-22T08:23:03.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,SVP,Windows Server,High,Péage,Production","507.0" +"382416402","353964315","PCB25924.sanef.groupe","PCB25924","4C:CF:7C:0A:4C:8A","10.252.42.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342237","","'+02:00","2026-04-21T11:06:38.000+02:00","SANEF\diab","Cloud Agent","ca867b03-9985-42c4-b77a-28d270863081","2025-12-08T09:48:55.000+02:00","2026-04-22T08:22:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"238565707","269520472","vibocmedi1","","00:50:56:90:35:fb","10.41.22.71","fe80::250:56ff:fe90:35fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 33 f6 a2 fc e7 53-c6 0c e2 93 21 20 1c f1","No Asset Tag","'+02:00","2026-03-16T16:10:52.000+02:00","cybsupibm","Cloud Agent","c7705ff9-17c4-4cb4-9646-600201e97957","2024-05-22T16:40:38.000+02:00","2026-04-22T08:22:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,flux_libre,FreeFlow,Flux Libre","336.0" +"349509572","340022757","PCB22665.sanef.groupe","PCB22665","D0:AD:08:AA:4F:F7","10.220.31.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FK","","'+02:00","2026-04-01T08:39:17.000+02:00","audrey.platel@sapn.fr","Cloud Agent","111c9838-be46-4225-a973-6d62ef0c4b07","2025-08-06T14:34:19.000+02:00","2026-04-22T08:21:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"272957025","301385357","SVP21048.sanef-int.adds","SVP21048","D0:AD:08:A3:7B:24","10.7.48.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXM","","'+02:00","2026-04-21T07:59:34.000+02:00","Superviseur","Cloud Agent","2cdd321d-2625-41a2-b348-f2992432ff3a","2024-10-18T09:12:52.000+02:00","2026-04-22T08:21:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"330689877","","PCB22707.sanef.groupe","PCB22707","D0:AD:08:AA:4F:C0","10.4.31.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764CS","","'+02:00","2026-04-20T08:22:40.000+02:00","SANEF\SERUZIER-ext","Cloud Agent","072c6c04-8b38-46eb-876c-b5da9488a87d","2025-06-04T10:03:39.000+02:00","2026-04-22T08:21:24.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"327328494","","PCB20624.sanef.groupe","PCB20624","BC:0F:F3:3D:68:2A","10.200.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.15.02","5CG3224DR2","","'+02:00","2026-04-21T08:14:33.000+02:00","Sylvie.LECOMTE@sapn.fr","Cloud Agent","810a6100-aac4-48c1-bde5-1f74b4e156e3","2025-05-26T11:53:03.000+02:00","2026-04-22T08:21:19.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"320075698","328611892","PCB23523.sanef.groupe","PCB23523","6C:0B:5E:EE:BC:C8","10.207.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L72","","'+02:00","2026-04-10T18:54:47.000+02:00","SANEF\BEREZAY","Cloud Agent","d63c432e-8168-4adf-9e94-feb0e431f912","2025-04-28T12:03:49.000+02:00","2026-04-22T08:21:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"326545718","","PCB18038.sanef.groupe","PCB18038","38:CA:84:52:F8:8B","10.100.38.12,192.168.1.166","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSY","","'+02:00","2026-04-21T16:30:11.000+02:00","SANEF\LEBAIL","Cloud Agent","f990defa-3791-4497-b494-2b814a61fdb7","2025-05-22T09:53:33.000+02:00","2026-04-22T08:20:48.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"377672978","352153960","PCB24189.sanef.groupe","PCB24189","10:B6:76:97:D4:B6","10.152.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKF","","'+02:00","2026-04-15T17:40:57.000+02:00","SANEF\VERLANT","Cloud Agent","885fbedd-09f2-49a0-ae06-cee275f35c3c","2025-11-19T09:38:53.000+02:00","2026-04-22T11:47:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","339.0" +"324767419","330493335","sppeaanvr32","SPPEAANVR32","8C:84:74:E5:D6:C0","10.41.7.131","fe80::995c:772e:84b2:f62a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G11 Server","16","2600","INTEL(R) XEON(R) SILVER 4509Y","16142","HPE 2.48","CZ2D210MW9","","'+02:00","2026-04-10T03:37:32.000+02:00","Administrateur","Cloud Agent","05fa7ce8-381c-46fc-b19e-7931e9c22663","2025-05-14T17:17:18.000+02:00","2026-04-22T08:20:26.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,Cloud Agent,OS-WIN-SRV DYN,Production","508.0" +"390152402","357550804","PSX18698.sanef-int.adds","PSX18698","30:13:8B:6C:5E:6E","10.100.40.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WH","","'+02:00","2026-02-19T12:29:28.000+02:00","UserSextan","Cloud Agent","7e931d7c-acf5-49cf-a463-24c991a5fdef","2026-01-09T13:04:43.000+02:00","2026-04-22T08:20:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"334464094","","PCB21166.sanef.groupe","PCB21166","D0:AD:08:E4:91:B8","10.202.31.1","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVR","","'+02:00","2026-04-20T08:17:51.000+02:00","SANEF\GUERARDH","Cloud Agent","b5d82dd2-9145-48a1-b39d-15938c8c8017","2025-06-18T15:36:46.000+02:00","2026-04-22T08:19:45.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"331170138","","PCB21307.sanef.groupe","PCB21307","30:F6:EF:A3:EF:E9","10.12.31.11,10.255.1.166","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK5","","'+02:00","2026-04-15T08:17:11.000+02:00","SANEF\tarillon","Cloud Agent","a07081fa-ebcd-4249-bff7-1e0616b8d392","2025-06-05T15:32:24.000+02:00","2026-04-22T08:19:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"215218494","251730157","ls-srom-ouvert","LS-SROM-OUVERT","00:50:56:90:40:24","10.41.2.81","fe80::48b9:b0bf:30d7:1ec0","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 6a 31 f0 4f 43 f5-e0 50 b1 6e 6b 70 18 c2","NoAssetTag","'+02:00","2026-03-03T15:02:35.000+02:00","svpadmin","Cloud Agent","4e7d55ae-156b-4d74-9eba-a27be0ef64c7","2024-02-12T16:36:00.000+02:00","2026-04-22T08:19:38.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN,SVP,VRF_PEAGE_DC,Production,Péage,VRF_BACKUP_DC,High","508.0" +"202020109","245103896","vpbotjump1.sanef.groupe","VPBOTJUMP1","00:50:56:90:12:97","10.41.23.34","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 6c 03 04 aa 15 0d-19 9b 6e 08 bc b3 4e 62","NoAssetTag","'+02:00","2026-04-21T11:06:59.000+02:00","SANEF\alaad","Cloud Agent","3236073e-445f-403d-86be-1445f38fb186","2023-12-01T16:36:22.000+02:00","2026-04-22T11:47:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Windows Server,flux_libre,Production,Flux Libre,BDD-SQL DYN,OS-WIN-SRV DYN","252.0" +"363976393","346387889","PCB21598.sanef.groupe","PCB21598","D0:AD:08:A4:4D:A8","10.12.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711KC","8CC34711KC","'+02:00","2026-03-28T14:19:02.000+02:00","SANEF\pcemtz","Cloud Agent","6abea68b-3721-438f-8f2e-dcd663483650","2025-09-29T16:58:02.000+02:00","2026-04-22T08:19:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"232019701","259579188","ls-amiens-nord","LS-AMIENS-NORD","00:50:56:90:7E:03","10.41.2.96","fe80::e24f:28d5:422f:22e6","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a1 ef be a7 ad 42-62 74 90 db 1c 72 94 84","NoAssetTag","'+02:00","2026-03-23T11:02:20.000+02:00","svpadmin","Cloud Agent","a3185728-f13c-4712-a157-c386339f4e4e","2024-04-24T09:32:23.000+02:00","2026-04-22T08:19:20.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,High,SVP,VRF_PEAGE_DC,Production,Péage,DEX,OS-WIN-SRV DYN","507.0" +"128166555","191100365","vpburaadfs1.sanef.groupe","VPBURAADFS1","00:50:56:82:59:70","10.30.12.14","fe80::c96b:1f49:cdd7:9ec","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 c0 65 4f e4 f1 d5-64 30 b4 73 22 54 16 96","NoAssetTag","'+02:00","2026-04-02T15:50:51.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","7621ff89-3766-4009-80cb-c717c8d84eb6","2022-06-16T16:25:09.000+02:00","2026-04-22T08:18:46.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,DSI,VRF_INCONNUE,Critical,Windows Server,Compte & Acces,High,Production,Haute,OS-WIN-SRV DYN,AD","845.0" +"378054380","352303543","PCB22297.sanef.groupe","PCB22297","D0:AD:08:A3:7C:FC","10.200.31.58","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZF","","'+02:00","2026-04-22T01:16:22.000+02:00","SANEF\mechineaup","Cloud Agent","5fc39473-964e-4423-8aa7-cbb65c12bd72","2025-11-20T13:03:24.000+02:00","2026-04-22T08:18:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"327556832","","PCB20676.sanef.groupe","PCB20676","58:1C:F8:EA:00:33","10.255.2.182,192.168.0.166","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DPZ","","'+02:00","2026-03-20T09:26:20.000+02:00","SANEF\CADOTP","Cloud Agent","61c6d3bb-9996-44d4-8e1c-6b8e66c96cc1","2025-05-27T14:24:31.000+02:00","2026-04-22T08:18:19.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"321999317","329319795","PCB23794.sanef.groupe","PCB23794","6C:0B:5E:EE:93:A2","10.13.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H46","","'+02:00","2026-04-21T10:26:12.000+02:00","SANEF\alonso","Cloud Agent","ee82a602-1f90-4c00-a121-48b3ab68a3cb","2025-05-05T11:29:33.000+02:00","2026-04-22T08:18:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"131273902","193319976","lpaiigrid1.sanef.groupe","","00:17:a4:77:0c:dc","10.30.12.34","fe80::b4cb:388d:c849:b1e3","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Computers / Server","HPE ProLiant BL460c G8 Server","16","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","96643","HP I31 05/24/2019","CZJ41200VM","","'+02:00","2025-10-21T09:38:07.000+02:00","cybadmbdd","Cloud Agent","002e7288-53c9-4f0f-92d6-9ddb4379e29d","2022-07-12T15:36:19.000+02:00","2026-04-22T08:18:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,DSI,VRF_INCONNUE,Obsolete,ORACLE,Bases de Données","346.0" +"359126048","","PCB24206.sanef.groupe","PCB24206","30:E3:A4:D6:F6:E6","10.255.2.175","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YL6","","'+02:00","2026-04-14T08:16:06.000+02:00","SANEF\streiff","Cloud Agent","87ce6df2-582f-4fab-b15d-b3c7f0ce907d","2025-09-12T10:15:13.000+02:00","2026-04-22T08:17:59.000+02:00","64-Bit","2","PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","0.0" +"382389068","353958619","PCB24222.sanef.groupe","PCB24222","10:B6:76:95:8B:8F","10.200.31.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYH","","'+02:00","2026-04-16T09:09:49.000+02:00","SANEF\medghoul","Cloud Agent","2000c534-544f-4211-9cf0-d1d5610e2503","2025-12-08T08:12:45.000+02:00","2026-04-22T08:17:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","254.0" +"377750629","352189441","PCV20821.sanef-int.adds","PCV20821","30:13:8B:6C:58:2B","10.12.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q7Z","","'+02:00","2026-03-30T07:33:50.000+02:00","Operateur","Cloud Agent","347beaa1-0b64-48a8-b65d-b357d6b7e09b","2025-11-19T15:40:59.000+02:00","2026-04-22T08:17:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"198942271","243682415","lpinfbcos1.sanef.groupe","","ee:50:33:80:00:74, ee:50:33:80:00:75","10.41.40.179","fe80::ec50:33ff:fe80:74,fe80::ec50:33ff:fe80:75","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63821","HPE I44 06/13/2025","VCGCIOJ00F","/n/Bios Asset Tag :","'+02:00","2026-01-27T11:28:45.000+02:00","cybadmbdd","Cloud Agent","665e0f05-efd7-4f34-b9cf-95a9bb35b5fd","2023-11-14T13:01:08.000+02:00","2026-04-22T10:53:34.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,COSWIN","500.0" +"334714713","","PCB24071.sanef.groupe","PCB24071","08:B4:D2:2C:6A:FF","10.205.0.52,192.168.1.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5064387","","'+02:00","2026-04-22T08:14:08.000+02:00","SANEF\KLACZYNSKI","Cloud Agent","2beae72d-c554-4f33-af4a-5a78b12c1fec","2025-06-19T14:11:57.000+02:00","2026-04-22T08:17:30.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331127670","","PCB17646.sanef.groupe","PCB17646","D0:AD:08:E4:B1:6C","10.152.31.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HW1","","'+02:00","2026-04-20T16:00:01.000+02:00","SANEF\GIRARD","Cloud Agent","35eac1bd-14dc-4919-bea6-803441104434","2025-06-05T12:14:13.000+02:00","2026-04-22T08:17:15.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"381932693","353741242","PCB25863.sanef.groupe","PCB25863","F8:ED:FC:AB:02:B2","10.252.42.152","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTD","","'+02:00","2026-04-17T07:07:25.000+02:00","SANEF\valvin","Cloud Agent","8b020039-1b33-49d2-9a83-9b9442826080","2025-12-05T16:38:24.000+02:00","2026-04-22T08:16:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","330.0" +"398856812","360867567","PCB21310.sanef.groupe","PCB21310","D0:AD:08:0C:7D:C1","10.100.39.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJN","","'+02:00","2026-04-16T05:32:10.000+02:00","SANEF\ROLLET","Cloud Agent","d4ecea36-66bb-4bb1-abfb-18f50c0b6ab1","2026-02-09T16:21:00.000+02:00","2026-04-22T08:16:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"331190937","","PCB23513.sanef.groupe","PCB23513","C8:6E:08:8A:50:ED","10.255.2.181","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7F","","'+02:00","2026-04-21T08:11:21.000+02:00","SANEF\bertronc","Cloud Agent","635f5079-8f6c-49f4-90d2-14817758640e","2025-06-05T16:59:31.000+02:00","2026-04-22T08:16:21.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"154344319","208143057","vppatbcae1.sanef.groupe","VPPATBCAE1","00:50:56:82:6C:40","10.41.50.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 a2 58 24 b6 73 af-9d 80 df a6 df e4 38 7e","NoAssetTag","'+02:00","2026-04-16T14:36:25.000+02:00","Administrateur","Cloud Agent","85e9180f-2c80-4d6f-87d0-27ba87df1448","2023-01-05T11:54:47.000+02:00","2026-04-22T08:16:14.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_INCONNUE,Babylon,DRH,Cloud Agent,Windows Server","288.0" +"331186057","","PCB17770.sanef.groupe","PCB17770","D0:AD:08:E4:A1:D0","10.152.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HTZ","","'+02:00","2026-04-15T08:14:30.000+02:00","SANEF\GLORIEUX","Cloud Agent","a1a7012b-9543-4ced-b256-4d88e8404f3f","2025-06-05T15:57:48.000+02:00","2026-04-22T08:16:11.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"228420755","257495182","ls-ste-marie","LS-STE-MARIE","00:50:56:90:EF:13","10.41.2.65","fe80::9b47:1541:4cbc:90b1","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 a8 d7 62 88 cb c3-dc c7 21 bc d9 7c ad 1d","NoAssetTag","'+02:00","2026-03-03T15:51:13.000+02:00","svpadmin","Cloud Agent","0ee24646-f1ec-4268-8ca9-f64189023d94","2024-04-08T11:21:52.000+02:00","2026-04-22T08:15:59.000+02:00","64-Bit","4","SCA,VM,PM,GAV","High,VRF_PEAGE_DC,SVP,Production,Péage,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","507.0" +"325698057","","PCB20645.sanef.groupe","PCB20645","BC:0F:F3:3D:18:0B","10.100.39.69","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.23.00","5CG3224DSS","","'+02:00","2026-04-17T08:56:00.000+02:00","SANEF\LEBRETON","Cloud Agent","98d23c3a-95c0-4438-8dda-bf6a72b5449f","2025-05-19T12:32:02.000+02:00","2026-04-22T08:15:38.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"359739684","","PCB24188.sanef.groupe","PCB24188","10:B6:76:97:D4:BB","10.105.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKL","","'+02:00","2026-04-16T08:06:34.000+02:00","SANEF\PONTIEUX","Cloud Agent","b0838345-4b52-4491-a2dd-5af14766316d","2025-09-15T10:29:46.000+02:00","2026-04-22T08:15:19.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"364342917","346494810","PCV22885.sanef-int.adds","PCV22885","D0:AD:08:A7:27:B4","10.210.37.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YPG","","'+02:00","2026-01-20T15:13:35.000+02:00","Operateur","Cloud Agent","1fa9ead4-7ecc-47ec-9cfa-13cfef349738","2025-09-30T15:33:48.000+02:00","2026-04-22T08:15:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320446276","328710855","PCB22816.sanef.groupe","PCB22816","D0:AD:08:A7:27:EB","10.155.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPT","8CC3502YPT","'+02:00","2026-04-19T12:29:32.000+02:00","SANEF\houziaux","Cloud Agent","210caa40-148f-4f10-aba8-8373faf1f9a7","2025-04-29T11:35:38.000+02:00","2026-04-22T08:15:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"384482711","355023073","PCB22279.sanef.groupe","PCB22279","D0:AD:08:A3:7B:D4","10.252.42.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVZ","8CC3502YVZ","'+02:00","2026-04-21T14:52:11.000+02:00","SANEF\deguida","Cloud Agent","f49dbde4-c102-49b0-a42c-0b4eef6f4a6d","2025-12-17T11:46:09.000+02:00","2026-04-22T08:14:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"364955465","346702093","PCV21614.sanef-int.adds","PCV21614","D0:AD:08:A4:4D:B6","10.12.7.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711JS","","'+02:00","2026-03-26T14:41:34.000+02:00","Operateur","Cloud Agent","01a4af39-9dc2-4d01-9d42-26495ba6e555","2025-10-02T12:14:23.000+02:00","2026-04-22T08:14:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"322021511","329326445","PCB21561.sanef.groupe","PCB21561","D0:AD:08:A3:7B:47","10.119.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS1","8CC3502YS1","'+02:00","2026-04-21T09:27:30.000+02:00","SANEF\mullerk","Cloud Agent","ed41f850-a374-46c0-bd58-a8fb1b18bd2e","2025-05-05T12:43:31.000+02:00","2026-04-22T08:14:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"140091089","198836503","vpbckmadm1","VPBCKMADM1","00:50:56:82:5B:14","192.168.109.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2397","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","16383","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 aa bc 99 c1 38 d1-66 c7 23 e4 17 49 80 89","NoAssetTag","'+02:00","2026-03-06T00:57:36.000+02:00","dessoye","Cloud Agent","d4b55457-db08-4081-9551-ac8d3edc4bc2","2022-09-14T10:55:47.000+02:00","2026-04-22T11:37:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_INCONNUE,PCI Bunker EMV,Gestion SAUVEGARDE,Cloud Agent,Windows Server","254.0" +"382420751","353964320","PCB25856.sanef.groupe","PCB25856","F8:ED:FC:AB:12:23","10.252.42.145","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CS9","","'+02:00","2026-03-28T12:39:50.000+02:00","SANEF\CHAMPEYMOND","Cloud Agent","05dab54e-7457-4019-aa23-ddb660a19b98","2025-12-08T09:48:06.000+02:00","2026-04-22T08:14:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","331.0" +"129355323","191958656","vpabvanvr1","VPABVANVR1","00:50:56:82:77:99","10.137.1.11","fe80::d518:5969:6ecb:5f56","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 11 ae 6a 3e 38 9d-1f 74 f3 79 68 62 de 59","NoAssetTag","'+02:00","2026-03-09T15:13:48.000+02:00","Administrateur","Cloud Agent","999a6ed5-1b46-4b10-b8c3-360a0b7e4a61","2022-06-27T17:35:00.000+02:00","2026-04-22T11:05:57.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,VRF_INCONNUE,NVR,Exploitation,Production,Cloud Agent,Windows Server","523.0" +"151127421","206071525","PCB13426.sanef.groupe","PCB13426","C8:D9:D2:33:54:0D","10.200.40.22","fe80::374e:fb8f:d7f2:306f","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G4 Desktop","6","3000","Intel(R) Core(TM) i5-8500 CPU @ 3.00GHz","16163","HP Q01 Ver. 02.07.01","CZC924CX8M","CZC924CX8M","'+02:00","2026-04-16T05:38:20.000+02:00","SANEF\PCI-SAPN","Cloud Agent","a7bc3c36-6625-4e58-a33f-7e543de61226","2022-12-08T14:32:33.000+02:00","2026-04-22T08:13:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Workstation","342.0" +"208831505","248780233","vibotbtsd1.sanef.groupe","","00:50:56:90:8d:fc","10.41.23.145","fe80::250:56ff:fe90:8dfc","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f9 75 7a 17 d8 85-7a 6d 1d 7a 09 a1 fa 86","No Asset Tag","'+02:00","2026-03-18T12:28:10.000+02:00","cybreconcile","Cloud Agent","64fbec89-2595-45d9-80d3-6fc198e9acaf","2024-01-10T18:16:50.000+02:00","2026-04-22T11:13:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,flux_libre,FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production","141.0" +"328622009","","PCB23611.sanef.groupe","PCB23611","6C:0B:5E:EE:EC:A8","10.202.31.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5X","","'+02:00","2026-03-30T16:55:37.000+02:00","SANEF\grossin","Cloud Agent","9c026a6e-b173-48d7-a1bf-bdc5109fcc38","2025-05-30T13:59:36.000+02:00","2026-04-22T08:13:15.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359140638","","PCB24102.sanef.groupe","PCB24102","30:E3:A4:D6:79:BE","10.255.3.157","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YL9","","'+02:00","2026-04-14T08:04:40.000+02:00","SANEF\HATEM","Cloud Agent","eb621ade-2936-43af-9827-020c7eb8b5d6","2025-09-12T12:06:09.000+02:00","2026-04-22T08:13:04.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"330876341","","PCB23539.sanef.groupe","PCB23539","6C:0B:5E:EE:A3:8F","10.255.3.162,10.13.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBD","","'+02:00","2026-04-01T07:45:26.000+02:00","SANEF\schlich","Cloud Agent","632ef1e1-c112-45b1-8e93-3028bb5b502c","2025-06-04T16:27:26.000+02:00","2026-04-22T08:13:01.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"174237326","228465184","sppeaanvr19","SPPEAANVR19","D4:F5:EF:8A:BB:EC","10.41.7.118","fe80::4773:58e8:5d32:1b75","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ222807H4","","'+02:00","2026-02-04T15:24:08.000+02:00","admin_astia","Cloud Agent","f8704128-d0d8-4802-ab75-180a7fc25fc4","2023-06-13T11:50:23.000+02:00","2026-04-22T08:12:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server","348.0" +"318715229","328176657","PCB21057.sanef.groupe","PCB21057","D0:AD:08:A3:7B:C8","10.155.30.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW4","8CC3502YW4","'+02:00","2026-03-30T08:24:16.000+02:00","SANEF\BACHELET","Cloud Agent","a565a570-a395-44d0-b4a8-e3d568b27361","2025-04-23T10:43:28.000+02:00","2026-04-22T08:49:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"325248310","","PCB21578.sanef.groupe","PCB21578","D0:AD:08:A3:7C:BE","10.6.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYH","","'+02:00","2026-03-29T09:12:05.000+02:00","SANEF\labache","Cloud Agent","bc17844f-121c-4e7f-ae5a-8e482319772e","2025-05-16T15:29:35.000+02:00","2026-04-22T08:12:28.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359125442","","PCB24229.sanef.groupe","PCB24229","70:15:FB:7E:20:84","10.255.1.165","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYL","","'+02:00","2026-04-14T13:51:56.000+02:00","SANEF\kiefferj","Cloud Agent","4610334c-a990-4ffc-a76b-fdb23063fcda","2025-09-12T10:15:54.000+02:00","2026-04-22T08:12:24.000+02:00","64-Bit","2","PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","0.0" +"349737402","340112646","vrechaetl2.sanef-rec.fr","","00:50:56:9c:79:1e","10.45.11.207","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6c 3e 7a e8 f8 7c-ce 99 bf e3 76 96 4a df","No Asset Tag","'+02:00","2026-03-03T15:14:47.000+02:00","root","Cloud Agent","4b793303-2b37-48e1-bd68-f3189804f66c","2025-08-07T10:37:01.000+02:00","2026-04-22T08:12:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","143.0" +"324960240","","PCB20671.sanef.groupe","PCB20671","BC:0F:F3:3D:18:4E","10.100.39.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224DR6","","'+02:00","2026-03-30T13:36:49.000+02:00","SANEF\FOSSE","Cloud Agent","28aa9b7a-4279-4751-b1fe-5f82f07436c2","2025-05-15T10:21:57.000+02:00","2026-04-22T08:12:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"363031615","345949774","PCB21590.sanef.groupe","PCB21590","D0:AD:08:A7:28:0E","10.12.31.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKG","8CC3502YKG","'+02:00","2026-03-29T05:13:41.000+02:00","SANEF\pcemtz","Cloud Agent","f65cd2ac-c390-4d66-a7ea-84ef7586ff2a","2025-09-25T17:09:06.000+02:00","2026-04-22T08:12:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"360477448","344904296","PCB18639.sanef.groupe","PCB18639","38:CA:84:DB:E6:ED","10.4.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDW","","'+02:00","2026-03-28T09:22:04.000+02:00","SANEF\deliere","Cloud Agent","f0f72186-8f57-43ae-9b83-b608ff4f3f5e","2025-09-17T10:59:13.000+02:00","2026-04-22T08:12:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"324088493","","PCB21282.sanef.groupe","PCB21282","30:F6:EF:A5:EB:1E","192.168.0.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GKK","","'+02:00","2026-04-15T08:14:46.000+02:00","SANEF\PIERME","Cloud Agent","458f78fd-7d62-4720-8405-eca4adbe8391","2025-05-12T15:11:11.000+02:00","2026-04-22T08:11:53.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"361217485","345212990","VMMSTLC3.sanef-int.adds","VMMSTLC3","00:50:56:90:32:C0","10.41.13.252","fe80::7268:ce58:9117:19be","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3476) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 da db 37 96 34 e7-11 79 f7 e8 a7 07 f8 1f","NoAssetTag","'+02:00","2026-04-16T16:52:00.000+02:00","user_stl","Cloud Agent","16bc178d-7297-4251-9bfe-5178c2c6f284","2025-09-19T10:37:37.000+02:00","2026-04-22T08:11:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","348.0" +"321563365","329073261","PCB23712.sanef.groupe","PCB23712","6C:0B:5E:EE:B3:14","10.119.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3Z","","'+02:00","2026-04-15T13:57:53.000+02:00","SANEF\aulenbacher","Cloud Agent","2092b7a0-44eb-4dce-8be8-6009e40a13c4","2025-05-02T10:24:01.000+02:00","2026-04-22T08:11:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"328602133","","PCB21308.sanef.groupe","PCB21308","30:F6:EF:A3:FE:A3","10.5.31.23,10.255.4.165","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GJK","","'+02:00","2026-04-14T13:56:21.000+02:00","SANEF\bonnetier","Cloud Agent","5b10cbf7-65b5-46dd-9a05-22a00ed23cf9","2025-05-30T10:50:58.000+02:00","2026-04-22T08:11:22.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"128609877","191421549","ls-lillers","LS-LILLERS","00:50:56:90:BB:78","10.41.2.39","fe80::c295:9b47:13d1:fd23","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.7792) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 f5 b5 4c d6 ed 18-9b 3b 12 6b d0 f2 6d 72","NoAssetTag","'+02:00","2026-03-05T10:11:08.000+02:00","svpadmin","Cloud Agent","8a5d9c8f-477b-4822-beba-75df40cdcec1","2022-06-21T14:53:41.000+02:00","2026-04-22T08:11:15.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Windows Server,VRF_PEAGE_DC,OS-WIN-SRV DYN,DEX,Production,Péage,High,SVP,Cloud Agent,Haute","864.0" +"359805856","","PCB24336.sanef.groupe","PCB24336","00:72:EE:1F:FE:3C","10.105.31.26,10.255.2.173","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YH4","","'+02:00","2026-04-14T17:18:28.000+02:00","SANEF\BAYART","Cloud Agent","b6ba6fee-e4db-42c9-b930-b14d832d1669","2025-09-15T17:53:42.000+02:00","2026-04-22T08:11:13.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"384866221","355210700","PCB24162.sanef.groupe","PCB24162","24:FB:E3:F3:E9:A6","10.1.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG52136XJ","","'+02:00","2026-04-07T07:48:25.000+02:00","SANEF\delforge","Cloud Agent","62a000c3-092c-41d8-8761-0cae28601238","2025-12-18T19:32:45.000+02:00","2026-04-22T08:10:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"128137865","191075741","vpburawap2","VPBURAWAP2","00:50:56:82:B9:E6","192.168.162.69","fe80::e927:80d:48e6:e7ba","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-4c 46 02 42 c5 5f 4c 05-78 4f 03 0a 88 0d 03 38","NoAssetTag","'+02:00","2026-04-16T15:01:25.000+02:00","Administrateur","Cloud Agent","6d2c3536-00e7-41d7-aee3-590b64818ecf","2022-06-16T11:32:15.000+02:00","2026-04-22T11:05:37.000+02:00","64-Bit","4","SCA,VM,PM,GAV","AD,OS-WIN-SRV DYN,Production,Compte & Acces,Sans,DMZ,VRF_INCONNUE,Windows Server,Cloud Agent,TAG-SRVEXPOSEINDIRECT,DSI","0.0" +"366318087","347298081","PCB25809.sanef.groupe","PCB25809","F8:ED:FC:AA:C5:1E","10.5.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSG","","'+02:00","2026-04-14T13:24:37.000+02:00","SANEF\LEBCIR","Cloud Agent","4ee4e013-320f-4030-a358-a1060e565053","2025-10-08T08:50:53.000+02:00","2026-04-22T10:50:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"225439577","256073198","ls-bethune","LS-BETHUNE","00:50:56:90:D9:3A","10.41.2.40","fe80::ad83:e989:9edf:cbfa","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 11 84 25 8b 36 86-8e b4 fb 3b 95 5c a0 9e","NoAssetTag","'+02:00","2026-03-23T16:02:51.000+02:00","svpadmin","Cloud Agent","09272d1b-988b-4c6a-9907-eacea8be86ba","2024-03-26T11:59:08.000+02:00","2026-04-22T08:09:49.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,Haute,DEX,OS-WIN-SRV DYN,SVP,High,Production,Péage,Cloud Agent,Windows Server","633.0" +"232011762","259575549","ls-voie-sacree","LS-VOIE-SACREE","00:50:56:90:82:A8","10.41.2.75","fe80::6f81:4f74:382:93a4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 b0 41 94 60 b2 8b-00 ec e6 90 99 2e d0 d9","NoAssetTag","'+02:00","2026-03-04T15:36:16.000+02:00","svpadmin","Cloud Agent","b921aaad-3079-47ea-ab89-e24d118eb84b","2024-04-24T08:57:18.000+02:00","2026-04-22T11:10:32.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,Production,Péage,SVP,High,VRF_PEAGE_DC","508.0" +"213853630","251124643","lampasu2.sanef.groupe","","00:17:A4:77:10:74, 00:17:A4:77:10:70","10.43.4.194,169.254.70.12,10.41.40.191,10.41.40.193","fe80::217:a4ff:fe77:1074,fe80::217:a4ff:fe77:1070","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","4","2500","Intel(R) Xeon(R) CPU E5-2609 v2 @ 2.50GHz","32069","HP I31 05/24/2019","CZJ41604RZ","","'+02:00","2025-10-08T15:07:14.000+02:00","cybastapp","Cloud Agent","b8ec5715-df07-4b89-999b-b6411d5ea362","2024-02-05T19:25:54.000+02:00","2026-04-22T08:09:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","Obsolete,DSI,ASUR,OS-LIN-SRV DYN,Cloud Agent,Linux Server","527.0" +"130359106","192671531","vppboeacst1","VPPBOEACST1","00:50:56:82:E9:D9","10.41.29.20","fe80::4909:4c74:faba:c9e3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 7c 78 1b 4b 5c 3f-09 bd cd 66 fb 58 4c 12","NoAssetTag","'+02:00","2026-02-25T12:08:49.000+02:00","Administrateur","Cloud Agent","86af8496-8ff3-4b96-9fda-06b9cfb7ff22","2022-07-05T17:29:24.000+02:00","2026-04-22T11:47:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,VRF_PEAGE_DC,Péage,OS-WIN-SRV DYN,Cloud Agent,Windows Server","256.0" +"129355007","191958356","vtmd.sanef.groupe","VTMD","00:50:56:82:53:9A","10.30.10.63","fe80::c1a8:2d8e:650:c4a1","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","4096","Phoenix Technologies LTD 6.00","VMware-42 02 3f f4 78 6d b6 a9-46 bd cb e2 de 45 0e a3","NoAssetTag","'+01:00","2023-05-10T11:19:12.000+02:00","administrateur","Cloud Agent","3c5ac611-d2b2-4e5e-8112-f69c0f4f3298","2022-06-27T17:28:40.000+02:00","2026-04-22T08:09:19.000+02:00","64 bits","2","SCA,VM,PM,GAV","Windows Server 2008,Production,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Trafic,BDD-POS DYN,Obsolete,FreeFlow,Flux Libre","352.0" +"204348432","246324123","vrdsiaans1.sanef-rec.fr","","00:50:56:9c:78:6e","10.45.0.165","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d9 de f6 e7 9d 09-3b b0 81 ad 08 80 bc 9f","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","cybadmsys","Cloud Agent","6be0af5c-8046-463c-a904-d3cb1b4994bc","2023-12-14T17:50:58.000+02:00","2026-04-22T08:09:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Ansible,OS-LIN-SRV DYN,MID-NGINX DYN,Recette,Cloud Agent,Linux Server","142.0" +"383507042","354491374","vpgeobody2.sanef.groupe","VPGEOBODY2","00:50:56:90:48:C3","10.41.40.172","fe80::bcbe:49f6:145f:1cbf","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19023)","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 86 70 1d a1 3a 12-ce c6 11 55 65 af f0 1b","NoAssetTag","'+02:00","2025-12-12T17:29:28.000+02:00","VPGEOBODY2\CYBADMSYS","Cloud Agent","7d4af001-36d6-4c90-aa4a-e9786c00dd32","2025-12-12T17:33:22.000+02:00","2026-04-22T08:08:47.000+02:00","64 bits","2","SCA,VM,PM,GAV","BDD-POS DYN,VRF_TRAFIC_DC,Trafic,Géolocalisation,Production,Obsolete,OS-WIN-SRV DYN,Cloud Agent","349.0" +"213857788","251130133","specmadpr1.sanef-int.adds","SPECMADPR1","EC:EB:B8:9D:06:54","10.44.2.41","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Computers / Server","HPE ProLiant ML350 G10 Server","1","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","32297","HPE U41","CZJ82213TY","","'+02:00","2026-01-26T02:50:47.000+02:00","Damon","Cloud Agent","50a84bbd-22bc-48c3-827a-8d19f2335d0f","2024-02-05T20:43:49.000+02:00","2026-04-22T10:56:37.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-SQL DYN,SCCM,DSI,Cloud Agent,Windows Server,OS-WIN-SRV DYN","521.0" +"411157863","365555384","vplogalst1","","00:50:56:94:79:08","10.44.7.51","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 8d 8c fb b9 c5 c1-0b ab 4b 23 40 9a 71 ae","No Asset Tag","'+02:00","2026-04-21T14:14:45.000+02:00","cybintsys","Cloud Agent","3c3f4ea8-414c-4237-a2e0-10d2a40c7bcd","2026-03-24T19:08:09.000+02:00","2026-04-22T08:08:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","13.0" +"364678473","346585003","PCB21547.sanef.groupe","PCB21547","60:45:2E:11:FE:2C","10.255.1.189","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNC","8CC3502YNC","'+02:00","2026-03-29T09:12:23.000+02:00","SANEF\primet","Cloud Agent","336c5006-da21-4620-a2e8-51daa6feb263","2025-10-01T11:49:54.000+02:00","2026-04-22T08:08:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"395140282","359326102","PBM22298.sanef-int.adds","PBM22298","D0:AD:08:A3:7D:EA","10.209.50.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YYW","","'+02:00","2026-03-11T21:01:16.000+02:00","Operateur","Cloud Agent","0114f931-76f0-462c-b4f3-6892b0f27124","2026-01-26T19:26:49.000+02:00","2026-04-22T08:07:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","343.0" +"416488481","367846723","vpbotatvv1.sanef.groupe","","00:50:56:90:02:fb","10.41.23.11","fe80::250:56ff:fe90:2fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 d4 dd 86 65 f5 16-0b 8c 6e ec d1 4f 4a 7c","No Asset Tag","'+02:00","2026-04-21T16:29:59.000+02:00","cybreconcile","Cloud Agent","da474021-93a7-4460-8867-cfe17ed97189","2026-04-16T17:24:10.000+02:00","2026-04-22T08:07:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","142.0" +"213850269","251126539","specmadpr3.sanef-int.adds","SPECMADPR3","EC:EB:B8:9D:E5:41","10.44.2.43","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Computers / Server","HPE ProLiant ML350 G10 Server","1","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","32297","HPE U41","CZJ82213TZ","","'+02:00","2026-04-16T13:12:57.000+02:00","Damon","Cloud Agent","0ae8c3c7-25d2-4a97-81d3-de81e77ce2d8","2024-02-05T19:58:42.000+02:00","2026-04-22T11:17:45.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DSI,SCCM,Cloud Agent,Windows Server,OS-WIN-SRV DYN,BDD-SQL DYN","383.0" +"324016325","","PCB18612.sanef.groupe","PCB18612","64:D6:9A:74:73:CC","169.254.51.52,10.255.4.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDQ","","'+02:00","2026-04-02T17:01:18.000+02:00","SANEF\godfrin","Cloud Agent","ff4c483e-3147-4c1c-88d7-3e8fd1d94cff","2025-05-12T11:46:12.000+02:00","2026-04-22T08:06:57.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"128129742","191071002","vpaiiaazu1","VPAIIAAZU1","00:50:56:82:55:39","192.168.230.40","fe80::8491:897e:a7d8:2606","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 6c 05 2f f5 71 5d-20 e7 62 dd e2 c8 78 08","NoAssetTag","'+02:00","2026-04-15T14:41:59.000+02:00","Administrateur","Cloud Agent","c03902a6-bc0f-40d6-b530-96531bd099dd","2022-06-16T10:35:53.000+02:00","2026-04-22T11:52:41.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Production,Sécurité IT,Sans,DMZ,TAG-SRVEXPOSEINTERNET,AD,BDD-SQL DYN,OS-WIN-SRV DYN,VRF_INCONNUE,DSI,Cloud Agent,Windows Server","0.0" +"225171191","255988984","ls-cambrai","LS-CAMBRAI","00:50:56:90:EC:F1","10.41.2.34","fe80::cc77:e8d5:d943:37f4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 09 f1 f1 84 5a a0-bb bd 98 fe ae 9f 8c f2","NoAssetTag","'+02:00","2026-04-02T11:10:34.000+02:00","svpadmin","Cloud Agent","b9946c7a-146a-400c-b64c-d0a5cb277b87","2024-03-25T17:00:50.000+02:00","2026-04-22T08:06:49.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,High,Haute,SVP,Production,Péage,Cloud Agent,Windows Server,DEX","633.0" +"235695165","263014037","vamrsycapp1.sanef.groupe","VAMRSYCAPP1","00:50:56:82:6A:E3","10.45.2.21","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24130)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","32767","Phoenix Technologies LTD 6.00","VMware-42 02 c8 d7 b8 28 ae cf-0a 5e 62 a1 a3 fa a9 bc","NoAssetTag","'+01:00","2024-05-10T15:40:18.000+02:00","Administrateur","Cloud Agent","3f5e8cda-8d55-4eab-8482-d9e89c2f0c56","2024-05-10T15:04:05.000+02:00","2026-04-22T11:50:36.000+02:00","64 bits","3","SCA,VM,PM,GAV","SIG,OS-WIN-SRV DYN,DEX,Recette,Windows Server 2008,MID-APACHE-TOMCAT DYN,Obsolete,Patrimoine,Cloud Agent,Windows Server","526.0" +"334472877","","PCB24117.sanef.groupe","PCB24117","48:EA:62:C8:83:3F","10.155.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6V","","'+02:00","2026-04-02T07:51:42.000+02:00","SANEF\DEVIENNE","Cloud Agent","3e0fe5ba-024a-47a7-9071-31b319c97403","2025-06-18T15:58:43.000+02:00","2026-04-22T08:06:31.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"186024350","236514643","ls-spare-sen","LS-SPARE-SEN","00:50:56:82:F2:8A","10.100.2.251","fe80::325e:d546:e662:4711","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 2d 59 f5 c9 9b de-aa bc d2 83 1f 49 2e a9","NoAssetTag","'+02:00","2026-02-16T13:38:07.000+02:00","gare","Cloud Agent","afb6cd0a-d244-4e8a-9ac2-e5eed63897dc","2023-09-04T15:22:32.000+02:00","2026-04-22T12:01:11.000+02:00","64-Bit","4","SCA,VM,GAV","SVP,Cloud Agent,OS-WIN-SRV DYN,Péage,DEX","680.0" +"358651974","344183279","VMMVSCC1.sanef-int.adds","VMMVSCC1","00:50:56:90:10:2C","10.41.7.250","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 17 20 5c b9 cf 88-a2 75 f1 ca 8b 04 b9 53","NoAssetTag","'+02:00","2026-04-16T16:49:22.000+02:00","UserPCT","Cloud Agent","efc00fd6-ced3-4278-834d-af6db1689455","2025-09-10T17:32:14.000+02:00","2026-04-22T08:05:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"326222279","","PCB18058.sanef.groupe","PCB18058","64:D6:9A:1D:39:68","10.205.0.45,192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HS9","","'+02:00","2026-04-22T08:01:47.000+02:00","SANEF\MULLIERL","Cloud Agent","562dade8-7fd5-40a8-bffc-7e9477c81fc8","2025-05-21T12:27:16.000+02:00","2026-04-22T08:05:28.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331168809","","PCB18734.sanef.groupe","PCB18734","58:1C:F8:E9:A7:0F","10.205.0.10,192.168.1.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2Q","","'+02:00","2026-04-20T08:19:47.000+02:00","SANEF\gautier","Cloud Agent","df6307aa-e9ac-49f3-8515-0a9bf0df393b","2025-06-05T15:34:54.000+02:00","2026-04-22T08:05:15.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent,BDD-SQL DYN","0.0" +"325938475","","PCB20725.sanef.groupe","PCB20725","BC:0F:F3:3D:28:96","10.200.31.29,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRZ","","'+02:00","2026-03-31T08:35:13.000+02:00","Christelle.loisel@sapn.fr","Cloud Agent","3aa7a698-2638-4d7e-b55a-d311e1913209","2025-05-20T12:14:57.000+02:00","2026-04-22T08:05:15.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"221402131","254280236","OSA20928.sanef-int.adds","OSA20928","BC:0F:F3:87:6F:8D","10.5.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LL8","","'+02:00","2026-04-18T16:50:05.000+02:00","Superviseur","Cloud Agent","b25434e8-81a9-40be-820d-5d12ad02d5f2","2024-03-11T17:20:45.000+02:00","2026-04-22T08:05:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"402065710","361863022","PCV18680.sanef-int.adds","PCV18680","30:13:8B:6C:79:5A","10.5.7.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473WP","","'+02:00","2026-02-18T12:56:22.000+02:00","Operateur","Cloud Agent","649d6cd5-62f2-407d-b1ad-b80075b1e009","2026-02-18T11:45:56.000+02:00","2026-04-22T08:04:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"309082626","324044496","PCB17809.sanef.groupe","PCB17809","D0:AD:08:0C:8D:07","10.100.39.110","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3P","","'+02:00","2026-04-10T08:02:07.000+02:00","SANEF\LANIS-ext","Cloud Agent","6eca13a2-2cbd-4c6d-9d21-af6930ca5903","2025-03-18T13:34:19.000+02:00","2026-04-22T11:41:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"343114608","337777716","PCB21587.sanef.groupe","PCB21587","D0:AD:08:A7:28:2C","10.5.31.62","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.11.01","8CC3502YJS","8CC3502YJS","'+02:00","2026-04-21T21:08:36.000+02:00","SANEF\labelle","Cloud Agent","05734db5-c386-4b99-8665-139dba9b1586","2025-07-18T12:00:59.000+02:00","2026-04-22T08:04:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"331425552","","PCB23530.sanef.groupe","PCB23530","C8:6E:08:88:F0:C7","10.206.31.8,10.255.2.166","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7J","","'+02:00","2026-03-30T17:07:24.000+02:00","SANEF\gueryd","Cloud Agent","4f77a81e-3fde-4c21-84c1-883db66063be","2025-06-06T13:46:01.000+02:00","2026-04-22T08:03:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"270786600","300125043","SVP21044.sanef-int.adds","SVP21044","D0:AD:08:A3:E7:93","10.152.20.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YML","","'+02:00","2026-04-16T10:47:44.000+02:00","Superviseur","Cloud Agent","b0255be2-700a-4dac-a7ac-f2aae578f5ab","2024-10-08T11:52:15.000+02:00","2026-04-22T08:03:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"240758424","275036314","PCB20642.sanef.groupe","PCB20642","58:1C:F8:EA:00:A1","10.205.0.84,192.168.1.60","2a01:e0a:810:d130:58c0:fdca:6ec9:66b4,2a01:e0a:810:d130:c846:35c6:3af9:487f,fe80::2193:4562:e089:f735","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.12.00","5CG3224D33","","'+02:00","2026-02-25T12:27:12.000+02:00","SANEF\KABKOUB","Cloud Agent","50896f56-2841-4f0a-9b3a-b24b4b8ab61f","2024-05-31T17:40:32.000+02:00","2026-04-22T08:03:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"392400088","358198640","PCV21589.sanef-int.adds","PCV21589","D0:AD:08:A7:28:64","10.108.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YLM","","'+02:00","2026-04-17T18:22:59.000+02:00","Operateur","Cloud Agent","8a4db24d-1f7d-412b-a417-1f011a1e8f08","2026-01-15T12:43:14.000+02:00","2026-04-22T08:02:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"229372706","258003126","vpsupbcen1.sanef.groupe","","00:50:56:8d:35:66","10.44.5.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d 62 ea 55 62 01 38-de 47 34 6e c2 2d dc 9c","No Asset Tag","'+02:00","2026-03-30T10:23:47.000+02:00","cybadmroot","Cloud Agent","651cda1a-b8ed-4ecb-8d5c-f5a97390c219","2024-04-11T16:14:23.000+02:00","2026-04-22T08:02:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","332.0" +"283907894","308365688","SVP22857.sanef-int.adds","SVP22857","D0:AD:08:A7:27:C7","10.12.20.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN3","","'+02:00","2026-04-09T14:15:03.000+02:00","Superviseur","Cloud Agent","8730e734-e9bf-4d9f-8e06-14a182debbe8","2024-12-04T21:52:13.000+02:00","2026-04-22T08:01:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"129477136","192044838","vmsapnrt1","VMSAPNRT1","00:50:56:AC:00:EF","10.30.10.35","","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24356)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 2c ae 27 87 bc de ef-c9 c6 ee ab 11 d7 b9 a1","NoAssetTag","'+02:00","2024-04-02T19:39:22.000+02:00","Administrateur","Cloud Agent","39dbe7b9-56c8-42f2-a71a-0112cf8266a0","2022-06-28T14:50:41.000+02:00","2026-04-22T08:01:26.000+02:00","64 bits","2","SCA,VM,PM,GAV","Finances Comptabilité / Consolidation,VRF_INCONNUE,OS-WIN-SRV DYN,BDD-SQL DYN,Cloud Agent,Windows Server,SAP,Obsolete,DFIN,Recette,Windows Server 2008","352.0" +"270839116","300149929","SVP21043.sanef-int.adds","SVP21043","D0:AD:08:A3:7B:72","10.152.20.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW8","","'+02:00","2026-03-19T09:46:23.000+02:00","Superviseur","Cloud Agent","b0b874a2-2c80-4b16-9641-fb8b036a2d0d","2024-10-08T14:57:35.000+02:00","2026-04-22T08:01:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"131273947","193320248","vpaiiacen1","","00:50:56:82:ad:5b","10.30.12.121","fe80::e83e:8fa8:f676:77fe","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9837","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 21 ef fd 6c 41 20-63 8c 6d f2 4a 05 89 29","No Asset Tag","'+02:00","2026-03-16T14:02:32.000+02:00","cybreconcile","Cloud Agent","be05e162-5eb7-4c0a-89a5-aa14243edaf2","2022-07-12T15:40:43.000+02:00","2026-04-22T08:01:07.000+02:00","x86_64","4","SCA,VM,PM,GAV","BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,VRF_INCONNUE,Cloud Agent,Linux Server,DSI,Centreon,Obsolete,log4j,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans","703.0" +"325213661","","PCB17884.sanef.groupe","PCB17884","70:A8:D3:85:C6:68","10.255.1.155,169.254.191.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG217247S","","'+02:00","2026-04-20T16:47:27.000+02:00","SANEF\ELENGAAHOUE-ext","Cloud Agent","cb143df6-10af-44fa-83b5-93d472530bc7","2025-05-16T11:56:47.000+02:00","2026-04-22T08:01:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"328601589","","PCB18051.sanef.groupe","PCB18051","64:D6:9A:1D:2D:9C","192.168.1.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.17.01","5CG2376HRH","","'+02:00","2026-03-30T09:10:17.000+02:00","SANEF\caronf","Cloud Agent","214c4750-1ad6-4517-a8f0-8ff5e53db0cd","2025-05-30T11:42:23.000+02:00","2026-04-22T08:01:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"205329451","246826538","vibotbsql1.sanef.groupe","VIBOTBSQL1","02:27:31:4E:DF:08, 00:50:56:90:AE:E4","169.254.2.36,10.41.23.133","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 de c5 03 a6 e9 3b-28 60 3c 1c ac 8f d5 e6","NoAssetTag","'+02:00","2026-03-18T12:33:03.000+02:00","SANEF\ndead","Cloud Agent","86db4379-532d-4031-a24f-7ed2848d5258","2023-12-20T15:28:19.000+02:00","2026-04-22T08:00:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","flux_libre,BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Production,FreeFlow,Flux Libre","258.0" +"359142980","","PCB24228.sanef.groupe","PCB24228","70:15:FB:7E:20:BB","10.255.4.155","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZM","","'+02:00","2026-04-20T14:43:42.000+02:00","SANEF\GALAI","Cloud Agent","7f5a3856-ef5d-44d7-b82f-ae52e544e612","2025-09-12T11:53:18.000+02:00","2026-04-22T08:00:38.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","0.0" +"179101365","231909523","vrpeaaref1.recette.adds","VRPEAAREF1","00:50:56:9C:45:93","10.45.9.170","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 29 1f af bd 91 66-a4 33 ee ae 46 98 54 5a","NoAssetTag","'+02:00","2026-02-19T13:41:23.000+02:00","Administrateur","Cloud Agent","d3f0ef5b-014e-4442-a1f8-35745e0ed1f8","2023-07-19T11:57:50.000+02:00","2026-04-22T08:00:36.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,SVP,DEX,OS-WIN-SRV DYN,Recette","487.0" +"364774157","346620306","PCV21575.sanef-int.adds","PCV21575","D0:AD:08:A3:7B:45","10.155.7.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YS4","","'+02:00","2026-03-10T12:37:08.000+02:00","Operateur","Cloud Agent","6973d3ff-8b42-4f1f-9c03-f492768187ba","2025-10-01T16:39:42.000+02:00","2026-04-22T08:00:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"388302870","356983569","PCB22322.sanef.groupe","PCB22322","D0:AD:08:A3:7D:E0","10.252.42.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ1","8CC3502YZ1","'+02:00","2026-03-29T09:11:43.000+02:00","SANEF\dacosta","Cloud Agent","84ac10b9-70ad-48ac-9a8e-a53e60b79ca9","2026-01-06T09:23:11.000+02:00","2026-04-22T08:00:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"222570527","254823547","vpburaexc2.sanef.groupe","VPBURAEXC2","02:05:96:4E:61:CC, 00:50:56:9C:5D:21","169.254.2.9,10.42.30.30","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 40 cc 62 e6 62 ce-2e e2 d7 47 6c 24 1b 26","NoAssetTag","'+02:00","2026-03-19T10:47:52.000+02:00","Administrateur","Cloud Agent","fda5350a-c6da-4daf-a29a-58d9eb510a1a","2024-03-15T16:21:07.000+02:00","2026-04-22T10:52:53.000+02:00","64-Bit","4","SCA,VM,PM,GAV","EXCHANGE,High,OS-WIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Windows Server,DSI","120.0" +"335910968","","PCB24175.sanef.groupe","PCB24175","DC:90:09:E0:5C:CC","10.100.38.29,10.255.2.158","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XD","","'+02:00","2026-03-30T08:27:51.000+02:00","SANEF\BOYARD","Cloud Agent","b0247024-bd39-411d-8bd7-75f8a195bba7","2025-06-24T09:39:36.000+02:00","2026-04-22T08:00:10.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"362246145","345658214","PCB23731.sanef.groupe","PCB23731","C8:6E:08:48:DC:F8","10.255.3.131","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2R","","'+02:00","2026-03-31T10:34:40.000+02:00","theo.leveque@sanef.com","Cloud Agent","9a741e90-bfa0-4fcc-a088-aa573ed180b0","2025-09-23T11:18:10.000+02:00","2026-04-22T07:59:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"226167930","256425194","ls-roye","LS-ROYE","00:50:56:90:B4:C7","10.41.2.29","fe80::415:c546:c5a8:4808","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 7f 06 a1 71 c6 d0-a0 dd 5f 08 1f 89 a0 c0","NoAssetTag","'+02:00","2026-03-02T16:32:54.000+02:00","svpadmin","Cloud Agent","0ba1aed0-9784-4a2a-accf-0dcfc68ac226","2024-03-29T10:36:41.000+02:00","2026-04-22T10:49:48.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,SVP,Péage,High,VRF_PEAGE_DC,Haute,Cloud Agent,Windows Server,Production","634.0" +"324049856","","PCB22275.sanef.groupe","PCB22275","60:45:2E:11:58:3C","10.255.3.137","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSL","","'+02:00","2026-04-06T06:44:39.000+02:00","SANEF\rousselc","Cloud Agent","b7926431-4e16-477c-af15-8f0bc0572304","2025-05-12T12:30:54.000+02:00","2026-04-22T07:59:39.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"272517340","301121541","SVP22453.sanef-int.adds","SVP22453","D0:AD:08:A7:27:CD","10.89.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKW","","'+02:00","2026-04-14T08:18:18.000+02:00","Superviseur","Cloud Agent","962efd60-caeb-4aa7-81d5-3ed041054c5c","2024-10-16T09:40:07.000+02:00","2026-04-22T07:59:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"387033350","356440082","vmdtrac06.recette.adds","VMDTRAC06","00:50:56:9C:E8:9D","10.45.17.8","fe80::959c:b5cb:e305:e793","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 02 75 61 50 07 10-05 6d 9f ef 83 da c6 46","NoAssetTag","'+02:00","2026-04-16T01:51:28.000+02:00","supwindev","Cloud Agent","95b7be16-ac20-4d19-a4ba-24e55e4c8abc","2025-12-30T17:50:58.000+02:00","2026-04-22T07:59:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"187703888","237569915","lremvbremv1.sanef.groupe","","00:17:a4:77:1c:70, 00:17:a4:77:1c:74","192.168.108.107,192.168.108.137,169.254.7.191,172.16.0.107","fe80::217:a4ff:fe77:1c70,fe80::217:a4ff:fe77:1c74","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070F","","'+02:00","2024-05-15T11:35:39.000+02:00","root","Cloud Agent","c867e106-2418-48c4-ab51-415175cbefc9","2023-09-13T17:37:44.000+02:00","2026-04-22T07:59:02.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard V17 Recette,EMV,OS-LIN-SRV DYN,DEX","499.0" +"246580411","287157724","VMXOBI.sanef.groupe","VMXOBI","00:50:56:82:7A:7D","10.30.6.4","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5909) 64-Bit","23H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 f8 5f ee f6 47 93-8d 69 9f 5e e3 59 00 f9","NoAssetTag","'+02:00","2026-03-18T12:27:36.000+02:00","SANEF\tron","Cloud Agent","54e623a4-d025-48f4-b3d4-cd7d276e0fdf","2024-06-26T16:42:03.000+02:00","2026-04-22T07:58:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","343.0" +"129356867","191964289","vpthlanvr1","VPTHLANVR1","00:50:56:82:DB:50","10.87.16.11","fe80::aa56:26de:2299:2415","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 6e 4e ce 23 46 58-4d 09 95 4b dc 8f 8d 39","NoAssetTag","'+02:00","2026-03-14T23:04:19.000+02:00","Administrateur","Cloud Agent","745655c8-c7fc-492c-92fd-5c05e864e357","2022-06-27T18:24:57.000+02:00","2026-04-22T11:33:59.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,NVR,Production,Exploitation,Cloud Agent,Windows Server,VRF_INCONNUE","508.0" +"371891976","349552825","PCB23639.sanef.groupe","PCB23639","C8:6E:08:8A:51:42","10.255.4.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7Y","","'+02:00","2026-04-17T08:35:15.000+02:00","fabien.letulle@sapn.fr","Cloud Agent","674fc3fb-e4c6-4233-b8fa-9211288c3e78","2025-10-27T09:00:03.000+02:00","2026-04-22T07:58:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"271044748","300260237","SVP21055.sanef-int.adds","SVP21055","D0:AD:08:A3:7B:71","10.155.2.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW9","","'+02:00","2026-04-22T07:03:33.000+02:00","Superviseur","Cloud Agent","a1a0ef54-258d-4891-b144-9912b37112ea","2024-10-09T13:50:00.000+02:00","2026-04-22T07:58:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"406263184","363577732","PCV20892.sanef-int.adds","PCV20892","30:13:8B:6C:5F:2E","10.12.7.54","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q87","","'+02:00","2026-03-05T15:15:41.000+02:00","Operateur","Cloud Agent","75af9f6e-b546-4f6a-ac95-3316053ee877","2026-03-05T14:47:53.000+02:00","2026-04-22T07:58:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"324354937","330207258","PCB22285.sanef.groupe","PCB22285","D0:AD:08:A3:7C:68","10.207.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502Z03","8CC3502Z03","'+02:00","2026-04-07T13:01:20.000+02:00","SANEF\telhaoui","Cloud Agent","f8db9d21-f00a-452f-8279-fe3d1c8f7e35","2025-05-13T11:13:44.000+02:00","2026-04-22T07:57:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"213858750","251130288","spasuagsm1","","ec:eb:b8:9a:5a:81, ec:eb:b8:9a:5a:80","10.43.4.206,10.41.40.206","fe80::eeeb:b8ff:fe9a:5a81,fe80::eeeb:b8ff:fe9a:5a80","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/20/2023","CZJ81900F3","","'+02:00","2023-09-25T10:38:00.000+02:00","cybadmsys","Cloud Agent","aaf2f3fb-16f6-4719-827a-1c5a4433c4a5","2024-02-05T20:45:02.000+02:00","2026-04-22T07:57:52.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,DSI,BDD-POS DYN,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server","524.0" +"187703886","237569914","lremvaste2","","00:17:a4:77:1c:7c, 00:17:a4:77:1c:78","192.168.107.108,192.168.108.108","fe80::217:a4ff:fe77:1c7c,fe80::217:a4ff:fe77:1c78","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070G","","'+02:00","2025-12-10T13:15:30.000+02:00","lamhajeb-ext","Cloud Agent","fa25cdc0-e6c3-449a-99b3-2d75d3f360d5","2023-09-13T17:37:30.000+02:00","2026-04-22T07:57:38.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,OS-LIN-SRV DYN,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard V17 Recette","676.0" +"334437559","","PCB24120.sanef.groupe","PCB24120","48:EA:62:CB:FE:76","10.104.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6P","","'+02:00","2026-04-09T12:19:35.000+02:00","SANEF\BRUYANTA","Cloud Agent","dc2e3350-23e7-4cd8-9bfd-fd0fc011d15f","2025-06-18T14:41:22.000+02:00","2026-04-22T07:57:21.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"269816525","299441504","SVP21064.sanef-int.adds","SVP21064","D0:AD:08:A7:28:5C","10.100.20.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLW","","'+02:00","2026-04-20T13:51:28.000+02:00","Superviseur","Cloud Agent","4096dc27-7cfc-46a7-b5cb-6695cf158d9c","2024-10-03T09:06:13.000+02:00","2026-04-22T07:57:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"365235573","346826294","PCB24187.sanef.groupe","PCB24187","10:B6:76:97:D4:A7","10.5.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YJY","","'+02:00","2026-04-20T09:00:44.000+02:00","SANEF\harand","Cloud Agent","604b2d9c-ec59-4a24-b544-ddb432a94997","2025-10-03T14:08:01.000+02:00","2026-04-22T07:57:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","253.0" +"325041070","331288683","vpaflarat1.sanef.groupe","","00:50:56:9c:23:d5","10.46.34.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c b0 e8 0c 53 11 be-42 2b 08 cc cb b1 02 20","No Asset Tag","'+02:00","2026-03-30T14:04:21.000+02:00","root","Cloud Agent","bcc0c71a-405c-4015-b192-30efadcda31b","2025-05-15T17:13:03.000+02:00","2026-04-22T07:57:01.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,flux_libre,Production,OS-LIN-SRV DYN","138.0" +"365793399","347053026","PCV22935.sanef-int.adds","PCV22935","D0:AD:08:A3:E7:31","10.5.7.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YTT","","'+02:00","2026-04-13T05:14:59.000+02:00","Operateur","Cloud Agent","eebd784b-b5de-444b-bdaf-e41cb6118fd7","2025-10-06T10:46:49.000+02:00","2026-04-22T07:57:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"296274639","317659615","REX21540.sanef-int.adds","REX21540","D0:AD:08:A3:7C:BF","10.12.91.80","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYG","","'+02:00","2026-02-22T18:47:59.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","2c74d8e2-8a9f-49e4-b7b9-910c7502819b","2025-01-30T17:48:12.000+02:00","2026-04-22T07:56:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"327523638","","PCB23547.sanef.groupe","PCB23547","C8:6E:08:89:0A:6C","10.255.2.151","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7X","","'+02:00","2026-03-30T14:03:58.000+02:00","SANEF\PLEINECASSAGNES","Cloud Agent","ecf03ad6-09ed-436c-8035-8fd270ae0938","2025-05-27T11:59:06.000+02:00","2026-04-22T07:56:41.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"131396410","193417063","vpsimaapi2.sanef.groupe","","00:50:56:82:39:17","10.30.11.10","fe80::2f0d:87b4:78ff:6925","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16046","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 60 ca 19 a6 8f a4-ed b4 cc db 99 49 a3 db","No Asset Tag","'+02:00","2025-11-21T12:21:58.000+02:00","cybadmsys","Cloud Agent","d18702e5-ad51-4be0-945b-0920c944f6e0","2022-07-13T09:25:38.000+02:00","2026-04-22T07:56:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,Trafic,Production,Obsolete,VRF_INCONNUE,BDD-ELA DYN,Flux Libre","334.0" +"360074060","","PCB18741.sanef.groupe","PCB18741","58:1C:F8:EB:78:D7","10.255.1.150","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D44","","'+02:00","2026-04-18T08:55:28.000+02:00","SANEF\BA","Cloud Agent","75e262be-7820-48aa-8a9f-89675c7ef1b8","2025-09-16T16:07:19.000+02:00","2026-04-22T07:56:28.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"360013248","","PCB18717.sanef.groupe","PCB18717","5E:A8:8B:72:10:7B","10.205.0.12,169.254.177.78,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSF","","'+02:00","2026-03-28T18:05:12.000+02:00","SANEF\RIVIERE","Cloud Agent","3e482d68-8848-4d7b-85a7-19bb4335c106","2025-09-16T11:58:30.000+02:00","2026-04-22T07:56:19.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"326805330","","SVP22518.sanef-int.adds","SVP22518","D0:AD:08:A2:AE:DA","10.132.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764K1","","'+02:00","2026-04-15T15:39:17.000+02:00","Superviseur","Cloud Agent","a85250ea-7a7f-4c0f-9ea4-6847b84dc464","2025-05-23T09:19:57.000+02:00","2026-04-22T07:56:18.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"335550719","","PCB24172.sanef.groupe","PCB24172","DC:90:09:E1:16:58","192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136X9","","'+02:00","2026-04-16T11:56:45.000+02:00","SANEF\RAIMBOURG","Cloud Agent","4e274737-b363-41f2-9f94-47b84b3ae49b","2025-06-23T14:55:31.000+02:00","2026-04-22T07:56:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"373161807","350055642","PCB24237.sanef.groupe","PCB24237","24:FB:E3:CD:06:28","10.12.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M5P","","'+02:00","2026-04-15T17:20:14.000+02:00","SANEF\rouault","Cloud Agent","beee5708-f132-4f9d-910b-85a18bd49dd6","2025-10-31T09:16:00.000+02:00","2026-04-22T07:56:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","254.0" +"226168693","256424375","ls-thelus","LS-THELUS","00:50:56:90:CD:64","10.41.2.42","fe80::6ad7:4632:1fe3:5ff4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 ec bd 09 5e 39 dc-08 30 11 53 7f 93 ad fe","NoAssetTag","'+02:00","2026-03-04T11:18:27.000+02:00","svpadmin","Cloud Agent","15bc9c30-91ff-40c5-8845-98d94a2947ca","2024-03-29T10:22:33.000+02:00","2026-04-22T11:15:06.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,Péage,High,Production","508.0" +"384522351","355028087","vrgrsangx1.sanef-rec.fr","","00:50:56:9c:84:2a","10.45.9.177","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c be 62 05 96 4f e9-f8 69 c8 bf b5 c1 5e 7a","No Asset Tag","'+02:00","2026-02-19T10:09:59.000+02:00","cybintsys","Cloud Agent","b8a80dfd-6688-4fb5-a115-73e39326dadb","2025-12-17T12:56:43.000+02:00","2026-04-22T07:56:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette,MID-NGINX DYN,BDD-POS DYN","147.0" +"213875839","251138019","sppeaanvr8","SPPEAANVR8","20:67:7C:D3:3A:18","10.41.7.107","fe80::72cc:1043:8a24:ea67","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ91405NL","","'+02:00","2026-03-25T17:51:40.000+02:00","Administrateur","Cloud Agent","dffdc973-4f46-4988-86f0-3c1ae5709217","2024-02-05T22:08:36.000+02:00","2026-04-22T07:55:53.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,NVR","523.0" +"324720612","","PCB23752.sanef.groupe","PCB23752","6C:0B:5E:EE:93:9E","192.168.1.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2J","","'+02:00","2026-04-03T14:35:07.000+02:00","SANEF\lallement","Cloud Agent","2fd77435-6dd6-4efd-a38d-b9fdc4eafe8f","2025-05-14T14:29:06.000+02:00","2026-04-22T07:55:52.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"160500506","213663599","vppintaweb2.sanef.groupe","","02:42:ac:5f:6a:ca, 00:50:56:82:2c:5f","172.17.0.1,192.168.20.21","fe80::250:56ff:fe82:2c5f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 a9 c8 ab c6 0d b0-3a 1e 06 f1 4a a6 bf f5","No Asset Tag","'+02:00","2026-04-14T14:27:12.000+02:00","cybreconcile","Cloud Agent","f9805222-188f-487e-82d1-666db9d814e6","2023-02-24T17:15:52.000+02:00","2026-04-22T07:55:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,Gestion institutionnel,Cloud Agent,Linux Server","65.0" +"332680998","","PCB21300.sanef.groupe","PCB21300","30:F6:EF:A7:18:B3","10.12.31.1,10.255.2.180","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GK0","","'+02:00","2026-04-20T16:21:01.000+02:00","SANEF\bayer","Cloud Agent","ee0240d4-b0ff-41c4-8aae-37e3258cf45e","2025-06-11T18:13:16.000+02:00","2026-04-22T07:55:42.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"324132423","","PCB18068.sanef.groupe","PCB18068","38:CA:84:52:77:C9","192.168.1.15,10.100.39.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HTZ","","'+02:00","2026-03-28T17:49:13.000+02:00","SANEF\DEPREZ","Cloud Agent","eebcbacc-2748-49a6-883a-d86167ac0532","2025-05-12T15:58:58.000+02:00","2026-04-22T07:55:12.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129477287","192045655","vrtrabtpv1","VRTRABTPV1","00:50:56:82:B9:35","10.43.255.11","fe80::50e9:bb91:63c3:a2c7","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24575","Phoenix Technologies LTD 6.00","VMware-42 02 e3 67 19 94 91 ac-6e e1 6a 9e 43 08 ff 23","NoAssetTag","'+02:00","2026-04-07T15:02:41.000+02:00","Administrateur","Cloud Agent","a3a04791-4804-45b0-915e-e2f3431f1b3b","2022-06-28T15:05:47.000+02:00","2026-04-22T07:55:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DEX,Temps de parcours,Cloud Agent,Windows Server,VRF_INCONNUE,BDD-POS DYN,OS-WIN-SRV DYN,Recette,Trafic","328.0" +"346164661","339000638","PCB25871.sanef.groupe","PCB25871","F8:ED:FC:AB:02:16","10.205.0.12,192.168.1.57","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW0","","'+02:00","2026-04-21T13:43:15.000+02:00","SANEF\lefebvrejo","Cloud Agent","3bde4b3b-0c66-4d76-b939-a2b9040406b3","2025-07-29T11:55:21.000+02:00","2026-04-22T07:54:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"382450855","353984302","PCB25912.sanef.groupe","PCB25912","4C:CF:7C:0A:4C:C7","10.252.42.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222P","","'+02:00","2026-04-01T07:05:16.000+02:00","SANEF\jarque","Cloud Agent","19bd77ff-d9f7-450c-a96d-5c1d50afd052","2025-12-08T12:47:53.000+02:00","2026-04-22T07:54:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","332.0" +"246505713","287118657","MTO21065.sanef.groupe","MTO21065","D0:AD:08:A3:7B:3A","10.155.31.17","fe80::6278:2c7c:9aa3:b1fd","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV5","","'+02:00","2026-03-24T09:05:17.000+02:00","SANEF\meteonewsW11","Cloud Agent","1c429682-9adf-4bce-af7b-3a6558f33af6","2024-06-26T10:13:29.000+02:00","2026-04-22T07:54:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"404462971","362848756","MTR-JHNN0H4","MTR-JHNN0H4","FC:4C:EA:0F:E5:D3","10.4.32.202","fe80::bf21:3de2:580d:74d2","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.33.2","JHNN0H4","","'+02:00","2026-04-22T02:33:55.000+02:00","Skype","Cloud Agent","9cf69a5b-a273-4313-b945-a4ece6790515","2026-02-26T18:16:00.000+02:00","2026-04-22T07:54:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"358427467","344139974","VMMCAFLC1.sanef-int.adds","VMMCAFLC1","00:50:56:90:E1:24","10.41.50.251","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 47 79 c2 de 57 47-0e c4 dd 24 be f0 4e 5f","NoAssetTag","'+02:00","2026-04-16T16:40:38.000+02:00","UserPCT","Cloud Agent","a41a50c5-a0c3-4407-b009-87e453bf7b95","2025-09-10T11:20:30.000+02:00","2026-04-22T07:54:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","343.0" +"385913861","355923576","PCB25931.sanef.groupe","PCB25931","4C:CF:7C:0A:3C:E8","10.252.42.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534221Y","","'+02:00","2026-04-13T20:01:20.000+02:00","SANEF\ALOTH","Cloud Agent","914a216c-2f55-42d3-8f07-d22b43ed59ac","2025-12-24T09:51:26.000+02:00","2026-04-22T07:53:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","332.0" +"238473501","269476388","SVP20927.sanef-int.adds","SVP20927","BC:0F:F3:88:FD:35","10.1.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMD","","'+02:00","2026-04-21T09:11:59.000+02:00","Superviseur","Cloud Agent","cd6cf6a4-45e9-4446-a90c-56daa6f3fc9d","2024-05-22T10:23:19.000+02:00","2026-04-22T07:53:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"165487722","221777845","vriadawdc1.recette.adds","VRIADAWDC1","00:50:56:82:34:FB","10.45.0.131","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 78 20 b6 9e 79 17-8c 0d 37 04 e7 65 4c 95","NoAssetTag","'+02:00","2026-03-17T15:29:25.000+02:00","RECETTE\a03987","Cloud Agent","c6cc2dbf-ea52-46c5-b815-a9ec6a0d8475","2023-04-05T15:23:47.000+02:00","2026-04-22T07:53:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,AD,Cloud Agent,Windows Server,Recette,DSI","249.0" +"202841729","245543507","VPAIIADCC1.sanef.groupe","VPAIIADCC1","00:50:56:82:36:0B","10.40.1.23","fe80::74ee:dd25:14b5:378c","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","Phoenix Technologies LTD 6.00","VMware-42 02 ca 8b aa 5f a2 26-fe 46 3d 78 f0 98 70 7e","NoAssetTag","'+02:00","2026-04-15T13:17:43.000+02:00","SANEF.GROUPE\ndead@sanef","Cloud Agent","afbc69c6-d3ff-49be-8596-7aa7dda6d9a7","2023-12-06T16:39:01.000+02:00","2026-04-22T07:53:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DEX,BDD-SQL DYN,OS-WIN-SRV DYN,DESIGO,Cloud Agent,Windows Server","356.0" +"219161571","253326885","OSA20983.sanef-int.adds","OSA20983","BC:0F:F3:87:70:B7","10.100.20.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMV","","'+02:00","2026-04-20T12:59:03.000+02:00","Superviseur","Cloud Agent","77ef8869-0884-46bf-8774-baf2a6cee7a5","2024-02-29T18:00:39.000+02:00","2026-04-22T07:53:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"408197910","364418288","SRCYBABKP1.sanef-rec.fr","SRCYBABKP1","80:30:E0:2E:F8:04","10.45.11.35","fe80::5fc9:98d0:5d98:a639","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Computers / Server","HPE ProLiant ML350 G10 Server","6","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","15906","HPE U41","CZJ95002KL","","'+02:00","2026-03-16T14:50:15.000+02:00","Administrator","Cloud Agent","9bf6ad5b-7ff4-4395-b50f-4947b071c0d4","2026-03-13T12:34:05.000+02:00","2026-04-22T07:53:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,DSI","248.0" +"330710708","","PCB21362.sanef.groupe","PCB21362","D0:AD:08:AA:4F:CA","10.205.0.13,10.4.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764D3","","'+02:00","2026-04-20T08:16:39.000+02:00","SANEF\ROUSSEAU-ext","Cloud Agent","c329fda7-9c82-436f-bcdf-08cef6da503e","2025-06-04T11:16:18.000+02:00","2026-04-22T07:53:25.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"213855638","251126076","spasuagsm3","","ec:eb:b8:9a:5a:b5, ec:eb:b8:9a:5a:b4","10.43.4.211,10.41.40.211","fe80::eeeb:b8ff:fe9a:5ab5,fe80::eeeb:b8ff:fe9a:5ab4","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/20/2023","CZJ81900F0","","'+02:00","2025-10-07T11:53:01.000+02:00","cybastapp","Cloud Agent","0f1eb777-2645-4602-9997-0b1ea4e73c59","2024-02-05T19:49:18.000+02:00","2026-04-22T07:52:51.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server,Obsolete,ASUR","524.0" +"379577179","352903538","MTR-2CD4804","MTR-2CD4804","6C:3C:8C:56:39:51","10.4.32.200","fe80::d856:bf8a:4de6:fd34","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","2CD4804","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","948efff1-7e8d-4547-9c0b-a3a3322fb39b","2025-11-26T17:30:58.000+02:00","2026-04-22T07:52:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"332262809","333860615","vpameahtp1.sanef.groupe","","00:50:56:90:87:8b, 00:50:56:90:8c:4d","10.41.41.50,10.41.41.52,10.43.4.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 cf 7d a0 3a 2b 64-83 8b cf 80 29 ae d8 3e","No Asset Tag","'+02:00","2025-10-29T10:31:22.000+02:00","cybastapp","Cloud Agent","bb63cacb-2de4-4628-918b-2d20b9fd9f3c","2025-06-10T12:42:03.000+02:00","2026-04-22T07:51:53.000+02:00","x86_64","4","SCA,VM,GAV","Cloud Agent,Linux Server,Sextan,Production,MID-NGINX DYN,OS-LIN-SRV DYN","278.0" +"270549061","299932811","SVP21047.sanef-int.adds","SVP21047","D0:AD:08:A3:7B:30","10.152.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXB","","'+02:00","2026-04-10T11:06:31.000+02:00","Superviseur","Cloud Agent","d948fa71-56ca-402e-b26d-7a6fa19fef90","2024-10-07T11:06:16.000+02:00","2026-04-22T07:51:21.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Workstation,Forescout","686.0" +"130356825","192670922","vpppeaaref1","VPPPEAAREF1","00:50:56:82:79:C1","10.41.29.10","fe80::1f7d:b687:11df:5fc1","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","10240","Phoenix Technologies LTD 6.00","VMware-42 02 20 47 1b 23 6c 09-20 f0 78 b5 45 40 0f 6b","NoAssetTag","'+02:00","2026-03-05T15:22:36.000+02:00","Administrateur","Cloud Agent","af8e52ef-c1bc-4584-8eb3-ee7db692f189","2022-07-05T17:19:39.000+02:00","2026-04-22T07:51:20.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,Cloud Agent,Windows Server,Haute,DEX,SVP,High,Péage,Production,OS-WIN-SRV DYN","619.0" +"325679404","","PCB21136.sanef.groupe","PCB21136","D0:AD:08:E4:D1:4B","10.208.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.03.00","5CG3501HVK","","'+02:00","2026-04-17T15:03:54.000+02:00","SANEF\DEDIEU","Cloud Agent","97183211-aa40-4cc0-9f3b-894c0b2eeb1f","2025-05-19T10:31:30.000+02:00","2026-04-22T07:51:16.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"320296363","328636115","PCB23596.sanef.groupe","PCB23596","C8:6E:08:88:F0:86","10.255.1.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L69","","'+02:00","2026-04-07T09:30:38.000+02:00","SANEF\andrejo","Cloud Agent","5f1ee5bb-0e8c-482a-bf63-3b179861baa1","2025-04-28T16:03:52.000+02:00","2026-04-22T11:13:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"359809284","344907766","vsccmr3.sanef.groupe","VSCCMR3","00:50:56:82:7A:80","10.30.12.31","fe80::4d4:7d96:4eec:9426","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.20778)","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","49151","Phoenix Technologies LTD 6.00","VMware-42 02 3a 43 27 4b 81 0d-87 b0 6b a4 68 6f 0d 13","NoAssetTag","'+02:00","2025-09-15T17:14:29.000+02:00","VSCCMR3\CYBEXPBUR","Cloud Agent","d6b45857-9ebb-41e3-978a-b1a117ea336b","2025-09-15T16:35:19.000+02:00","2026-04-22T07:51:01.000+02:00","64-bit","2","SCA,VM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,Obsolete,DSI","349.0" +"334070533","334032216","PCB24123.sanef.groupe","PCB24123","48:EA:62:C8:63:86","10.104.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V67","","'+02:00","2026-04-08T11:27:22.000+02:00","SANEF\CABARET","Cloud Agent","14360a48-a9ff-4b04-85bc-dc24ca1b8c7b","2025-06-17T15:57:27.000+02:00","2026-04-22T07:50:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"240414317","274791588","vibocharg1","","00:50:56:90:c9:83","10.41.22.70","fe80::250:56ff:fe90:c983","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d6 b6 2f bd 3b 24-eb 93 26 ea 57 fe f0 ce","No Asset Tag","'+02:00","2026-03-16T16:10:12.000+02:00","cybsupibm","Cloud Agent","0bcf5151-cdd0-493d-802c-6c66c677630f","2024-05-30T12:39:29.000+02:00","2026-04-22T07:50:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,flux_libre,FreeFlow,Flux Libre","141.0" +"128617920","191424935","ls-poix-de-picardie","LS-POIX-DE-PICA","00:50:56:90:40:70","10.41.2.105","fe80::eec4:92e9:2b60:2b6d","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 04 6b e9 fd 66 da-6d 0f e1 c6 38 4e f5 cd","NoAssetTag","'+02:00","2026-03-02T15:22:54.000+02:00","svpadmin","Cloud Agent","dc4943db-c583-45f8-9b5c-05ca7fb71cbd","2022-06-21T15:52:01.000+02:00","2026-04-22T07:50:37.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,Windows Server,SVP,OS-WIN-SRV DYN,VRF_PEAGE_DC,Production,Péage,High,Cloud Agent","508.0" +"360433718","","PCB22667.sanef.groupe","PCB22667","D0:AD:08:AA:4F:BE","10.208.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764CQ","","'+02:00","2026-04-01T09:01:41.000+02:00","SANEF\calos","Cloud Agent","599283eb-1957-4645-8781-dc5f32b8254d","2025-09-17T10:44:26.000+02:00","2026-04-22T07:50:33.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"284319306","","MTR-1KRTL64","MTR-1KRTL64","D0:46:0C:95:2E:7A","10.208.32.200","fe80::e148:752:733a:f1d6","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","1","1400","12th Gen Intel(R) Core(TM) i7-12700T","16072","Dell Inc. 1.22.0","1KRTL64","","'+02:00","2026-04-22T02:32:50.000+02:00","Skype","Cloud Agent","db79b543-bd39-4bc4-b842-6ab4a07976d7","2024-12-05T09:56:18.000+02:00","2026-04-22T07:50:25.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"233285732","260433024","ls-portes-vignoble","LS-PORTES-VIGNO","00:50:56:90:06:EC","10.41.2.21","fe80::90c5:7afb:c5ea:76e5","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 d9 a0 83 37 30 3e-b1 29 49 68 2a dc bb 4c","NoAssetTag","'+02:00","2026-03-02T15:33:41.000+02:00","svpadmin","Cloud Agent","a840c7a6-3c6c-4d03-aa2d-b3c084173719","2024-04-30T09:44:48.000+02:00","2026-04-22T07:50:23.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Production,High,VRF_PEAGE_DC,Péage,SVP,OS-WIN-SRV DYN","507.0" +"292508850","315061234","VRBURXBAN1.sanef.groupe","VRBURXBAN1","00:50:56:82:B1:BF","10.30.4.1","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6936) 64-Bit","23H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 02 26 a9 97 ca f3 1b-37 01 2b 61 83 64 fe 5f","NoAssetTag","'+02:00","2026-04-15T09:09:21.000+02:00","SANEF\BILLARD-ext","Cloud Agent","0ca20002-4768-4fa9-a9ec-9ccd10536ae6","2025-01-15T16:07:26.000+02:00","2026-04-22T07:50:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","338.0" +"236525160","265225870","ls-rn29","LS-RN29","00:50:56:90:D6:D4","10.41.2.94","fe80::5215:992f:a389:691","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 b8 3f 95 db 57 35-90 a9 d9 9d c8 18 19 70","NoAssetTag","'+02:00","2026-03-02T16:15:32.000+02:00","svpadmin","Cloud Agent","039117fc-55b3-4c03-9b78-1d434a1dadba","2024-05-14T13:18:41.000+02:00","2026-04-22T07:50:04.000+02:00","64-Bit","4","SCA,VM,GAV","SVP,Péage,Cloud Agent,OS-WIN-SRV DYN","508.0" +"406293517","363585597","PCV20890.sanef-int.adds","PCV20890","30:13:8B:6C:60:7B","10.12.7.53","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q8F","","'+02:00","2026-03-05T16:00:12.000+02:00","Operateur","Cloud Agent","4110038d-b5e5-430f-9fda-1eb3f7599c90","2026-03-05T16:12:25.000+02:00","2026-04-22T07:49:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"272969322","301440273","SVP21053.sanef-int.adds","SVP21053","D0:AD:08:A7:28:2E","10.82.14.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJP","","'+02:00","2026-04-17T19:11:19.000+02:00","Superviseur","Cloud Agent","59a3d291-9fd6-4a98-ae0a-64a1fe9ffd4c","2024-10-18T10:46:27.000+02:00","2026-04-22T07:49:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"320084390","328609505","PCB22927.sanef.groupe","PCB22927","D0:AD:08:A7:27:B6","10.149.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNJ","8CC3502YNJ","'+02:00","2026-03-29T09:23:40.000+02:00","SANEF\bigorgne","Cloud Agent","2a32f868-c845-4d4a-b05e-f254e1780c3c","2025-04-28T11:44:45.000+02:00","2026-04-22T07:49:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"129338807","191947808","vpaiiairs1.sanef.groupe","VPAIIAIRS1","00:50:56:82:61:73","10.30.10.44","fe80::2279:f110:5569:5e94","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 5b ec d4 de 0f 81-80 93 44 22 f6 1a 60 7f","NoAssetTag","'+02:00","2026-04-16T14:52:00.000+02:00","Administrateur","Cloud Agent","981bca2d-edda-4dfc-bec6-e971a09b862e","2022-06-27T14:47:25.000+02:00","2026-04-22T07:49:20.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Production,DSI,OS-WIN-SRV DYN,VRF_INCONNUE,IRS,Cloud Agent,Windows Server","491.0" +"322357113","329435680","PCB21294.sanef.groupe","PCB21294","30:F6:EF:A3:F0:B1","10.205.0.38,192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJY","","'+02:00","2026-04-17T07:40:16.000+02:00","SANEF\houdry","Cloud Agent","5b8d8119-6db2-4a08-9cfa-09396ee5fb6c","2025-05-06T12:03:52.000+02:00","2026-04-22T07:49:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"327315662","","PCB20732.sanef.groupe","PCB20732","BC:0F:F3:3D:38:13","10.255.2.148,10.200.30.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D34","","'+02:00","2026-04-01T17:48:41.000+02:00","martine.blondel@sapn.fr","Cloud Agent","74e5fa05-821e-40e1-8b41-c1591fb3c596","2025-05-26T11:58:32.000+02:00","2026-04-22T07:49:09.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"297211374","318506810","vemvsym1","VEMVSYM1","00:50:56:82:7A:37","192.168.100.79","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 a1 f2 00 93 be 5a-e5 46 ad 81 17 b1 97 35","NoAssetTag","'+02:00","2026-04-09T15:52:25.000+02:00","Administrateur","Cloud Agent","25b48ae2-6860-4e38-8e9e-e334ff834933","2025-02-03T19:53:32.000+02:00","2026-04-22T11:27:08.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,OS-WIN-SRV DYN,BDD-SQL DYN","689.0" +"321037931","328915142","PCB23648.sanef.groupe","PCB23648","6C:0B:5E:EE:EC:D5","192.168.1.34,10.11.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L55","","'+02:00","2026-04-13T16:23:13.000+02:00","SANEF\WENDLING","Cloud Agent","01de0432-e460-475e-889a-04047ca25350","2025-04-30T16:11:47.000+02:00","2026-04-22T07:49:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"329858125","","PCB22460.sanef.groupe","PCB22460","F0:20:FF:9A:DF:21","10.255.4.145,10.100.39.129","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HV2","","'+02:00","2026-04-21T17:29:22.000+02:00","SANEF\GIMENEZ","Cloud Agent","6b848425-20f8-44bc-9a6d-af4997d65657","2025-06-03T16:20:18.000+02:00","2026-04-22T07:48:58.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"255409754","294877165","lramebrac1.sanef-rec.fr","","ee:50:33:80:00:78, ee:50:33:80:00:7c","10.45.2.110,10.45.2.114,10.45.2.119,10.45.5.6,169.254.16.47","fe80::ec50:33ff:fe80:78,fe80::ec50:33ff:fe80:7c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00G","/n/Bios Asset Tag :","'+02:00","2026-04-20T11:39:32.000+02:00","grid","Cloud Agent","814094fb-7668-435d-a867-f7df839822d0","2024-08-02T16:53:15.000+02:00","2026-04-22T07:48:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Amelie,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette","500.0" +"327282857","331521599","PCB18440.sanef.groupe","PCB18440","64:D6:9A:1D:39:6D","10.205.0.80,192.168.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HRW","","'+02:00","2026-04-13T09:57:11.000+02:00","SANEF\CRAMPON","Cloud Agent","5fde194c-906e-4853-915d-51986d8d6ae0","2025-05-26T10:06:27.000+02:00","2026-04-22T07:48:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"403324006","362470020","MTR-FGNN0H4","MTR-FGNN0H4","FC:4C:EA:0F:E6:E1","10.4.32.203","fe80::a048:44c:b596:2cb5","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.33.2","FGNN0H4","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","016e609a-dfeb-4fea-b327-fadd8d24dc7b","2026-02-23T18:47:05.000+02:00","2026-04-22T07:47:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"130330700","192653730","VPAIIAPVC1.sanef.groupe","VPAIIAPVC1","00:50:56:82:03:23","10.41.11.11","fe80::50cd:6e78:7688:8614","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1457) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 9c 66 75 7f d0 5a-62 35 ca 78 ca 1f fb 89","NoAssetTag","'+02:00","2024-09-12T14:56:25.000+02:00","SANEF\TRON","Cloud Agent","7f363caa-8fb0-419e-b8f0-a8b14e928caa","2022-07-05T13:41:26.000+02:00","2026-04-22T07:47:49.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,Obsolete,DEX,VRF_INCONNUE,Production,Cloud Agent,Windows Server,NVR,Workstation","519.0" +"128143331","191077228","VBURWDC1.sanef.groupe","VBURWDC1","00:50:56:82:43:8E","10.30.12.140","fe80::dc41:86ae:1457:dbd5","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 2d 09 09 33 f7 53-46 7f e3 23 a0 85 60 3e","NoAssetTag","'+02:00","2026-03-31T15:21:11.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","9cd23b37-419e-45d7-9447-b59586c1d8a9","2022-06-16T12:01:42.000+02:00","2026-04-22T07:47:42.000+02:00","64-Bit","4","SCA,VM,PM,GAV","AD,High,Criticality,Sécurité IT,Production,DSI,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,Windows Server","668.0" +"186490508","236821636","MTR-BQ3J8Y3","MTR-BQ3J8Y3","6C:3C:8C:3D:5E:33","10.8.32.200","fe80::aac4:e698:bdf3:acfa","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","BQ3J8Y3","","'+02:00","2026-04-22T02:33:08.000+02:00","Skype","Cloud Agent","e7811a09-f47e-457c-8b0c-bf4af399012d","2023-09-06T13:50:40.000+02:00","2026-04-22T07:47:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"243422747","281705324","SVP20939.sanef-int.adds","SVP20939","BC:0F:F3:87:70:B6","10.132.1.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMW","","'+02:00","2026-04-21T07:35:46.000+02:00","Superviseur","Cloud Agent","f7c332b0-ee87-4432-86a9-fc11ffd04ceb","2024-06-12T10:53:41.000+02:00","2026-04-22T07:46:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"287165442","311001699","MTR-GJRTL64","MTR-GJRTL64","D0:46:0C:95:2D:16","10.100.32.201","fe80::4ab6:41fb:4a:ef86","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","GJRTL64","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","27bd79c1-4087-422c-80de-fc305d374fe0","2024-12-17T16:24:55.000+02:00","2026-04-22T07:46:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"208777939","248746384","vibotangx1.sanef.groupe","","00:50:56:90:d2:ee","10.41.23.151","fe80::250:56ff:fe90:d2ee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11728","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 68 3d 7f fc 70 0b-92 c5 64 74 b1 0e c7 28","No Asset Tag","'+02:00","2026-03-17T10:52:00.000+02:00","cybreconcile","Cloud Agent","a5986775-8447-4cac-9d8e-cbd9cbe765e6","2024-01-10T12:54:55.000+02:00","2026-04-22T07:46:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Production,MID-NGINX DYN,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0" +"188376349","237966005","MTR-GQ3J8Y3","MTR-GQ3J8Y3","6C:3C:8C:3D:61:1B","10.200.32.204","fe80::d7f1:2459:1ce7:1c0","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","GQ3J8Y3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","b1891fa5-aa86-48fc-81a2-d19e8e1c2c87","2023-09-17T19:10:37.000+02:00","2026-04-22T07:46:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"326191026","","PCB18417.sanef.groupe","PCB18417","70:A8:D3:88:46:4A","192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG21724KM","","'+02:00","2026-04-22T07:42:38.000+02:00","SANEF\vilin","Cloud Agent","262a08dd-2a15-4a46-9991-d9991123c6d5","2025-05-21T11:38:02.000+02:00","2026-04-22T07:46:36.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"334688859","","PCB24159.sanef.groupe","PCB24159","DC:90:09:E1:15:FE","10.106.31.7,169.254.41.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XX","","'+02:00","2026-04-08T07:47:44.000+02:00","SANEF\DELANNOY","Cloud Agent","2d1879f1-b6ec-4618-aeec-7c0e2ce7243f","2025-06-19T11:33:44.000+02:00","2026-04-22T07:46:10.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"318743453","328194015","PCB22921.sanef.groupe","PCB22921","D0:AD:08:A3:E7:39","10.108.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTK","8CC3502YTK","'+02:00","2026-04-13T13:30:17.000+02:00","SANEF\mengin","Cloud Agent","760ce81b-5f23-4969-9e13-502c6cb31284","2025-04-23T13:31:26.000+02:00","2026-04-22T07:45:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"222316165","254695608","OSA20933.sanef-int.adds","OSA20933","BC:0F:F3:88:FD:2D","10.12.20.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LML","","'+02:00","2026-04-16T13:31:20.000+02:00","Superviseur","Cloud Agent","023e097e-b70c-4b99-972f-0713947f2e41","2024-03-14T16:35:23.000+02:00","2026-04-22T07:45:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"176287347","229878200","MTR-HH775R3","MTR-HH775R3","90:8D:6E:8E:19:79","10.89.32.201","fe80::7ede:ccfe:24d6:599d","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","HH775R3","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","3be07001-e555-4e6f-bf17-86fee1a3e40b","2023-06-28T18:36:45.000+02:00","2026-04-22T07:45:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"249836031","288925765","lrdsibrac2.sanef-rec.fr","","3e:33:fb:a0:00:ca, 3e:33:fb:a0:00:ce","10.45.7.10,10.45.5.20","fe80::3c33:fbff:fea0:ca,fe80::3c33:fbff:fea0:ce","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200V","/n/Bios Asset Tag :","'+02:00","2026-03-04T18:18:46.000+02:00","reboot","Cloud Agent","0d957134-7830-49ff-a656-5c9d578b5bb7","2024-07-10T15:12:04.000+02:00","2026-04-22T07:45:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,ORACLE","146.0" +"129343757","191951143","vppeaaref4","VPPEAAREF4","00:50:56:82:64:C9","10.42.0.138","fe80::734d:2bd6:29be:aa4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2594","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","10240","Phoenix Technologies LTD 6.00","VMware-42 02 a0 a6 05 bf 30 1a-13 f3 82 1c a3 0b e4 cf","NoAssetTag","'+02:00","2026-02-25T11:25:00.000+02:00","Administrateur","Cloud Agent","0fe3f60c-f17a-4d30-bb2f-a6ebfe885a53","2022-06-27T15:42:58.000+02:00","2026-04-22T07:45:10.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Production,Péage,High,VRF_EXTERNAL,Cloud Agent,Windows Server,Haute,SVP,DEX,OS-WIN-SRV DYN","642.0" +"391148476","357841487","vrdsialab2.sanef-rec.fr","","00:50:56:9c:41:e0","10.45.16.36","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 86 7d b8 28 a5 60-5a 50 b9 96 e5 7a 71 a8","No Asset Tag","'+02:00","2026-03-12T13:05:37.000+02:00","root","Cloud Agent","4cbfd300-075b-4e56-b552-646b79038eb6","2026-01-12T17:39:10.000+02:00","2026-04-22T07:45:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,test_rhel9,Recette","144.0" +"239590813","271539152","SVP20954.sanef-int.adds","SVP20954","BC:0F:F3:87:6F:AB","10.132.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLM","","'+02:00","2026-04-13T06:32:23.000+02:00","Superviseur","Cloud Agent","236e0793-d7b1-4f97-8a97-397b1d370ef7","2024-05-27T14:36:12.000+02:00","2026-04-22T07:44:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"377801287","352204494","PCV20869.sanef-int.adds","PCV20869","30:13:8B:6C:60:8B","10.12.7.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q8C","","'+02:00","2026-04-20T12:59:59.000+02:00","Operateur","Cloud Agent","f84b926d-85e8-4d25-b2a3-018733fa68dd","2025-11-19T17:16:40.000+02:00","2026-04-22T07:44:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"396161228","359784956","vmdpeag03.recette.adds","VMDPEAG03","00:50:56:9C:ED:CE","10.45.17.197","fe80::862f:d285:9555:17ca","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 6a 5f 78 67 5d b6-04 b3 cd 45 7e 71 7a 75","NoAssetTag","'+02:00","2026-04-16T02:35:27.000+02:00","supwindev","Cloud Agent","90d7f632-b092-4dd8-84cf-73ac805ce751","2026-01-30T18:37:02.000+02:00","2026-04-22T07:44:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","242.0" +"320446388","328705541","PCB22906.sanef.groupe","PCB22906","D0:AD:08:A3:E6:D2","10.29.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNW","8CC3502YNW","'+02:00","2026-04-21T15:59:30.000+02:00","SANEF\labelle","Cloud Agent","11e907ac-ef47-49cd-b4dc-3f323e2b5aa0","2025-04-29T10:42:19.000+02:00","2026-04-22T07:44:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"129315770","191933901","ls-verdun","LS-VERDUN","00:50:56:90:E5:9E","10.41.2.77","fe80::7e5c:9755:ed11:41d2","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 3e 58 44 8b ca 89-c5 9b fd b1 0f 62 7a 10","NoAssetTag","'+02:00","2026-03-04T15:21:18.000+02:00","svpadmin","Cloud Agent","02b51340-8215-4b1b-92af-e635dc304977","2022-06-27T12:02:06.000+02:00","2026-04-22T07:43:55.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,Windows Server,Cloud Agent,Production,Péage,High,OS-WIN-SRV DYN,SVP,VRF_PEAGE_DC,Haute","635.0" +"356058023","343129798","PCM18705.sanef-int.adds","PCM18705","30:13:8B:6C:5D:6D","10.5.17.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473W8","","'+02:00","2026-04-20T13:44:49.000+02:00","UserPCT","Cloud Agent","bdc32bae-5a6c-4fab-b48a-525bb08070e9","2025-09-01T15:08:49.000+02:00","2026-04-22T07:43:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"340070824","336780159","vppwdapod1.sanef.groupe","","00:50:56:94:6a:23","10.44.1.200","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 c3 5e ac d9 70 a8-34 da 91 3e 67 a7 a1 3d","No Asset Tag","'+02:00","2026-01-07T11:14:16.000+02:00","cybreconcile","Cloud Agent","4284b3bb-d420-4bfc-87c2-206c1d4ead2a","2025-07-08T10:13:26.000+02:00","2026-04-22T07:43:02.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","332.0" +"397458696","360376395","vmmvsccad3.sanef-int.adds","VMMVSCCAD3","00:50:56:90:A3:11","10.41.7.233","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 56 12 7b 32 31 9c-7e 39 6b f8 9d c3 f9 bd","NoAssetTag","'+02:00","2026-02-05T12:41:02.000+02:00","Operateur","Cloud Agent","45909249-e5d7-4d66-b4c0-73df364dbd0c","2026-02-04T18:56:06.000+02:00","2026-04-22T11:06:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"129933546","192383819","vptrabalx1.sanef.groupe","VPTRABALX1","00:50:56:82:43:F5","10.41.40.15","fe80::7f36:cf5a:8ece:6e07","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 a6 16 44 f3 fb 56-8d 30 32 2d 27 6f 20 1d","NoAssetTag","'+02:00","2026-01-20T12:24:56.000+02:00","Administrateur","Cloud Agent","86cff205-e825-491f-9af7-55b180605764","2022-07-01T09:27:38.000+02:00","2026-04-22T07:42:57.000+02:00","64-Bit","3","SCA,VM,PM,GAV","ALX,Production,OS-WIN-SRV DYN,BDD-SQL DYN,DEX,VRF_TRAFIC_DC,Cloud Agent,Windows Server","518.0" +"128140111","191075188","vpbipamod1","VPBIPAMOD1","00:50:56:82:9C:9B","192.168.230.19","fe80::e5d7:5bd7:32aa:9c4a","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 fd 6b 6c f9 31 c6-71 b4 31 74 3b d3 72 c7","NoAssetTag","'+02:00","2026-04-20T12:24:07.000+02:00","Administrateur","Cloud Agent","9bf369df-233d-4b66-a524-57672f4850e5","2022-06-16T11:25:35.000+02:00","2026-04-22T07:42:27.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,Péage,Basse,DMZ,OS-WIN-SRV DYN,Windows Server,Gestion commerciale,Low,Production,TAG-SRVEXPOSEINTERNET,Modalisa,DSI,Cloud Agent","0.0" +"128600128","191413206","ls-hardivilliers","LS-HARDIVILLIER","00:50:56:90:C3:0B","10.41.2.92","fe80::b1c9:a5fd:4ad4:f960","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 7e 77 b7 c3 88 e3-bf ee 33 69 db d6 cc 74","NoAssetTag","'+02:00","2026-03-24T15:39:37.000+02:00","svpadmin","Cloud Agent","a7bcd268-2028-4347-9713-ae3c9d8569f9","2022-06-21T12:17:05.000+02:00","2026-04-22T07:42:22.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,SVP,OS-WIN-SRV DYN,DEX,High,Péage,Production,Windows Server,VRF_PEAGE_DC","506.0" +"269828069","299443276","SVP21072.sanef-int.adds","SVP21072","D0:AD:08:A7:28:6F","10.100.20.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLF","","'+02:00","2026-03-20T23:01:55.000+02:00","Superviseur","Cloud Agent","5ca9b50e-3449-493d-b843-5f8acd4c201a","2024-10-03T09:24:11.000+02:00","2026-04-22T07:42:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"174128300","236955266","vpburafax1.sanef.groupe","VPBURAFAX1","00:50:56:82:56:F8","10.41.60.150","fe80::a063:de4b:d923:534f","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 a9 a1 58 cb a6 10-f5 23 39 7b 16 ba f0 c2","NoAssetTag","'+02:00","2026-01-27T14:53:30.000+02:00","Administrateur","Cloud Agent","3d659114-b99d-43d6-8bb9-8c1d6d842fc5","2023-06-12T19:11:05.000+02:00","2026-04-22T07:42:04.000+02:00","64-Bit","3","SCA,VM,GAV","Cloud Agent,XMedius,MID-APACHE-TOMCAT DYN,DSI,OS-WIN-SRV DYN","510.0" +"175464748","229282007","vvbotatsp2.sanef-rec.fr","","42:d1:61:b3:ec:74, ca:c1:e9:e2:85:97, ce:f5:66:28:3e:64, e6:7a:28:bb:34:3a, 00:50:56:9c:29:20, 86:6d:28:44:d4:dc, ba:a0:83:64:91:4f, d2:9a:a7:f0:5b:f0","10.45.6.158,10.89.0.1","fe80::40d1:61ff:feb3:ec74,fe80::c8c1:e9ff:fee2:8597,fe80::ccf5:66ff:fe28:3e64,fe80::e47a:28ff:febb:343a,fe80::250:56ff:fe9c:2920,fe80::846d:28ff:fe44:d4dc,fe80::b8a0:83ff:fe64:914f,fe80::d09a:a7ff:fef0:5bf0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 6e 77 2f 09 41 e3-c2 26 21 99 bc 7c 16 7c","No Asset Tag","'+02:00","2026-03-10T11:29:16.000+02:00","cybreconcile","Cloud Agent","4a14bfd7-e9a4-4a27-8ef7-1d35494fcd66","2023-06-22T17:12:46.000+02:00","2026-04-22T07:42:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,FreeFlow,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"393324304","358592294","VRVPNARAD1.recette.adds","VRVPNARAD1","00:50:56:9C:D1:36","10.45.14.136","fe80::b11f:a3f1:9da5:d3a0","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24241)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 1c 12 b7 73 86 16 7a-63 ab 52 17 48 d0 6b 37","NoAssetTag","'+01:00","2026-01-20T10:40:58.000+02:00","recette.adds\A17904","Cloud Agent","1ed61542-6a02-4e6c-9eee-5ca37d4b087f","2026-01-19T13:40:41.000+02:00","2026-04-22T07:42:00.000+02:00","64 bits","2","SCA,VM,PM,GAV","Windows Server 2008,OS-WIN-SRV DYN,Cloud Agent,Recette,Radius,DSI,Obsolete","358.0" +"192389444","240321284","vppeaabst1.sanef.groupe","","00:50:56:90:ee:11","10.41.20.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 a4 6b aa c2 b4 1d-66 50 bb 82 68 7a e8 40","No Asset Tag","'+02:00","2026-04-16T14:30:59.000+02:00","cybreconcile","Cloud Agent","03ac2c85-231e-4577-a87b-1011f771b865","2023-10-10T12:52:07.000+02:00","2026-04-22T07:41:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","485.0" +"213125599","250793707","vpbckangw4","","00:50:56:9a:d7:cd","10.44.3.165","fe80::250:56ff:fe9a:d7cd","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","3626","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a e4 61 03 48 01 3c-90 0b 8b e3 e9 c1 5a f6","No Asset Tag","'+02:00","2026-02-03T17:25:25.000+02:00","tbaad-ext","Cloud Agent","c045d0c9-2317-4051-8f6c-a26ad473874d","2024-02-01T12:45:52.000+02:00","2026-04-22T07:41:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","53.0" +"356333830","343268670","PCB24169.sanef.groupe","PCB24169","DC:90:09:E0:59:02","10.255.3.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XG","","'+02:00","2026-04-17T15:06:33.000+02:00","SANEF\PINELM","Cloud Agent","353691a9-3ba3-42a4-b6c5-4dd06717819b","2025-09-02T15:04:26.000+02:00","2026-04-22T07:41:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"365288994","346841739","PCV21510.sanef-int.adds","PCV21510","D0:AD:08:A3:7B:56","10.187.6.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YRL","","'+02:00","2025-11-27T11:56:08.000+02:00","Operateur","Cloud Agent","e17ad329-0017-44c7-8c85-8467f262214b","2025-10-03T17:04:35.000+02:00","2026-04-22T10:58:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"325222565","","PCB21585.sanef.groupe","PCB21585","D0:AD:08:A3:7B:50","10.100.38.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRT","","'+02:00","2026-03-31T08:54:31.000+02:00","SANEF\FONTAINEB","Cloud Agent","633876da-2df3-4379-b88c-df225d9defd4","2025-05-16T13:49:21.000+02:00","2026-04-22T07:41:23.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"396073935","359746516","PCB25918.sanef.groupe","PCB25918","4C:CF:7C:0A:5C:D6","10.4.31.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342223","","'+02:00","2026-04-21T18:21:48.000+02:00","SANEF\langlait","Cloud Agent","c0db2713-f98c-4469-815b-2c8942ade1e7","2026-01-30T11:25:57.000+02:00","2026-04-22T07:41:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"220595112","253937959","vvbooarep2.sanef-rec.fr","","00:50:56:9c:e0:73","10.45.6.81","fe80::250:56ff:fe9c:e073","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 2a 59 5d 55 c9 bb-4a 0a 4e 97 69 02 ce c5","No Asset Tag","'+02:00","2026-03-09T16:01:19.000+02:00","cybintsys","Cloud Agent","3b74b962-7e4e-47fd-ac08-89e1bc617c16","2024-03-07T12:56:24.000+02:00","2026-04-22T07:40:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,Flux Libre,flux_libre","141.0" +"130584251","192833335","node3","","00:50:56:82:3f:a3, 66:a4:6f:e0:c4:da, ee:ee:ee:ee:ee:ee, 22:09:18:03:9a:76","10.45.2.58,10.233.71.0,169.254.25.10","fe80::c251:be9c:d8ba:9277,fe80::64a4:6fff:fee0:c4da,fe80::ecee:eeff:feee:eeee","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 37 fd 56 01 65 85-f2 6f 3d 1f d8 40 d0 c6","No Asset Tag","'+02:00","2025-10-08T13:43:03.000+02:00","cybexpapp","Cloud Agent","3d718006-e555-46cc-b3f8-d1a8be458214","2022-07-07T11:37:04.000+02:00","2026-04-22T07:40:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,VRF_INCONNUE,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server","245.0" +"269294748","299210603","SVP22813.sanef-int.adds","SVP22813","D0:AD:08:A7:28:12","10.100.20.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKC","","'+02:00","2026-04-16T05:09:44.000+02:00","Superviseur","Cloud Agent","95987afb-63e4-46ac-a01c-37b46030bb0d","2024-10-01T09:16:50.000+02:00","2026-04-22T07:40:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"321551461","329076840","PCB22905.sanef.groupe","PCB22905","D0:AD:08:A7:27:C3","10.119.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN8","8CC3502YN8","'+02:00","2026-03-29T09:13:34.000+02:00","SANEF\deangeli","Cloud Agent","f0f176eb-8863-4f9d-9cb3-e8b4549f7f5e","2025-05-02T11:22:05.000+02:00","2026-04-22T07:40:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"331403288","","PCB17643.sanef.groupe","PCB17643","28:C5:D2:9E:45:58","10.100.39.155,10.255.1.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y50","","'+02:00","2026-04-20T07:46:08.000+02:00","SANEF\hubertc","Cloud Agent","25d2cee2-09f0-4cec-8f80-d8f53786bebb","2025-06-06T11:32:11.000+02:00","2026-04-22T07:40:08.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"368454760","348146125","vppixatsf2.sanef-int.adds","VPPIXATSF2","00:50:56:90:70:14","10.41.17.16","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","65535","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 88 98 b0 bc 9f 76-53 8b 4c 1c 6c 8b 82 61","NoAssetTag","'+02:00","2026-04-10T10:59:02.000+02:00","b03987@sanef-int","Cloud Agent","346440e6-e580-4d32-acd4-c711c2d9fea9","2025-10-14T16:59:25.000+02:00","2026-04-22T07:40:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","346.0" +"356380926","343284976","PCB21560.sanef.groupe","PCB21560","D0:AD:08:A3:E6:E1","10.100.39.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQ5","8CC3502YQ5","'+02:00","2026-03-29T09:12:57.000+02:00","SANEF\psi","Cloud Agent","3b76ed9f-cc77-40e1-970f-a3c2dc076074","2025-09-02T17:18:52.000+02:00","2026-04-22T07:40:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"349775614","340136514","vpodaboem2.sanef.groupe","","52:54:00:eb:9c:78, 52:54:00:4e:87:ca, 52:54:00:df:ed:d3","192.168.17.129,10.42.15.90,10.42.15.92,10.42.15.95,10.42.15.96,192.168.17.4","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-10-03T14:51:30.000+02:00","grid","Cloud Agent","34fb5e73-b763-4faf-b472-8978c8d6e474","2025-08-07T14:49:18.000+02:00","2026-04-22T07:39:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent","339.0" +"248751878","288325879","MTO21604.sanef.groupe","MTO21604","D0:AD:08:A4:4E:4A","10.4.31.81","fe80::c852:5a94:e1f6:8395","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5189) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711KH","","'+02:00","2025-05-07T15:41:09.000+02:00","SANEF\meteonewsW11","Cloud Agent","c98a5ce9-cc05-4eb7-8569-ee77de228e90","2024-07-05T14:34:45.000+02:00","2026-04-22T07:39:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"384282475","354872787","VMDGEST02.recette.adds","VMDGEST02","00:50:56:9C:9A:1A","10.45.17.132","fe80::cd3e:1c8c:51a:ee55","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c e1 82 32 9d ec f8-ac 57 22 a5 43 9f 16 a4","NoAssetTag","'+02:00","2026-04-16T05:08:15.000+02:00","supwindev","Cloud Agent","86e95789-d644-4fa0-b19d-b1386bd53627","2025-12-16T16:14:56.000+02:00","2026-04-22T07:39:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"320088358","328609740","PCB22924.sanef.groupe","PCB22924","D0:AD:08:A3:7B:CC","10.106.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW7","8CC3502YW7","'+02:00","2026-03-28T09:11:52.000+02:00","SANEF\MITKAS","Cloud Agent","e22698b4-43fe-456e-ae33-886738bb3aa5","2025-04-28T11:49:41.000+02:00","2026-04-22T07:39:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"112163518","180129319","vpaiiaast1.sanef.groupe","VPAIIAAST1","00:50:56:82:DA:04","10.30.10.141","fe80::df68:fd65:de79:8c57","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 55 41 2e 7f db 75-c0 08 7d 03 ec 8a ea 06","NoAssetTag","'+02:00","2026-03-24T17:57:14.000+02:00","SANEF\tbead","Cloud Agent","d4633de0-f119-4455-9a6c-bca1f5870226","2022-02-03T11:15:02.000+02:00","2026-04-22T10:32:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Outils prod (Monitoring, NMS, gestion de parc),Production,Collecte,Cloud Agent,Windows Server,DSI,VRF_INCONNUE","343.0" +"205308048","246811798","vpbotarep2.sanef.groupe","","00:50:56:90:54:97","192.168.21.67","fe80::250:56ff:fe90:5497","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 12 e4 d6 12 27 c2-13 42 c2 d3 9f 32 ab e9","No Asset Tag","'+02:00","2026-04-21T10:01:57.000+02:00","cybreconcile","Cloud Agent","85846a96-9265-4ae1-ae41-7a30e78eecd7","2023-12-20T13:07:22.000+02:00","2026-04-22T07:39:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Flux Libre,OS-LIN-SRV DYN,flux_libre,log4j,FreeFlow,Cloud Agent,Linux Server","332.0" +"416742830","367956475","vrzbxaprx1.sanef-rec.fr","","00:50:56:9c:54:dd","10.45.15.207","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 79 51 76 96 f1 f4-04 23 a4 72 c4 09 43 4f","No Asset Tag","'+02:00","2026-04-16T12:17:54.000+02:00","cybsecope","Cloud Agent","68ae297c-956a-4d4d-8828-0f9bfcb6cfd7","2026-04-17T16:48:22.000+02:00","2026-04-22T07:39:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"327770408","","PCB21303.sanef.groupe","PCB21303","D0:AD:08:0C:6D:83","10.12.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK1","","'+02:00","2026-04-14T07:32:00.000+02:00","SANEF\allary","Cloud Agent","d7244c37-9a32-4815-9d96-645b0fb2ff3f","2025-05-28T12:49:54.000+02:00","2026-04-22T07:39:03.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"382416623","353964316","PCB25869.sanef.groupe","PCB25869","28:95:29:1E:7F:3F","10.255.3.141,192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CS4","","'+02:00","2026-04-13T17:06:58.000+02:00","SANEF\fresco","Cloud Agent","8124c201-59f1-4776-946a-9b99de17dc28","2025-12-08T09:49:45.000+02:00","2026-04-22T07:38:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","331.0" +"296495204","317922655","REX21603.sanef-int.adds","REX21603","D0:AD:08:A4:4D:C4","10.200.91.82","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5909) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JM","","'+02:00","2026-03-08T15:04:52.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","e4640f3b-02f7-433c-86e1-e7b9af1aaf0f","2025-01-31T13:44:14.000+02:00","2026-04-22T07:38:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"156914176","209819757","vpgmoaprx1.sanef.groupe","","00:50:56:82:af:7a","192.168.40.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 d6 c5 11 14 04 ba-46 53 b6 a4 26 48 12 8d","No Asset Tag","'+02:00","2026-04-15T14:30:47.000+02:00","cybexppct","Cloud Agent","3eb07219-8801-441f-a52a-1f9809474f39","2023-01-26T16:54:00.000+02:00","2026-04-22T07:38:46.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,TAG-SRVEXPOSEINTERNET,COSWIN,Production,OS-LIN-SRV DYN,DSI,VRF_INCONNUE","132.0" +"365854817","347080448","PCB18641.sanef.groupe","PCB18641","38:CA:84:DB:E6:E6","10.5.31.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDP","","'+02:00","2026-03-29T09:24:47.000+02:00","SANEF\vitorino","Cloud Agent","7e13c9b0-7ced-4738-a726-d3b6aaba6fe8","2025-10-06T14:36:30.000+02:00","2026-04-22T07:38:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"298436585","319181980","vpameapmv1.sanef.groupe","","00:50:56:8f:7e:56, 00:50:56:8f:4f:57","172.16.255.34,10.44.201.3,10.44.201.6,10.44.201.7,10.44.201.8,10.44.201.9,10.44.201.10","fe80::fcd1:4596:6e71:68c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","11729","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 0f 39 3f f5 66 8a ad-79 e9 6a 0e 2e 03 a1 24","No Asset Tag","'+02:00","2025-11-06T11:55:44.000+02:00","cybreconcile","Cloud Agent","a6ed69dc-9ded-4025-b12a-bc53aa7e5f63","2025-02-07T10:24:08.000+02:00","2026-04-22T07:38:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,TAG-MIVISUPMV,TAG-SIC,OS-LIN-SRV DYN","140.0" +"128591651","191408406","ls-berck","LS-BERCK","00:50:56:90:94:C6","10.41.2.100","fe80::c30b:d83b:a2f2:78c9","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 73 55 65 f4 7d 13-f3 7b 46 e0 82 6e 71 56","NoAssetTag","'+02:00","2026-03-23T15:49:03.000+02:00","svpadmin","Cloud Agent","74fdb338-0d33-41ed-ad13-4d4de6391cee","2022-06-21T11:04:50.000+02:00","2026-04-22T07:38:19.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Péage,Production,High,Haute,Cloud Agent,SVP,VRF_PEAGE_DC,Windows Server,DEX,OS-WIN-SRV DYN","633.0" +"325678102","","PCB18611.sanef.groupe","PCB18611","38:CA:84:DB:E6:DA","10.5.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WD9","","'+02:00","2026-04-20T15:55:50.000+02:00","SANEF\sureau","Cloud Agent","86e22728-62d5-4548-9915-0284d10e39f6","2025-05-19T11:15:07.000+02:00","2026-04-22T07:38:07.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"129362026","191964561","vpflmanvr1","VPFLMANVR1","00:50:56:82:32:06","10.147.2.10","fe80::932:58:44c2:498a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 59 82 d3 c5 c0 44-74 d6 e0 c0 64 5d f3 bc","NoAssetTag","'+02:00","2026-03-19T16:26:31.000+02:00","Administrateur","Cloud Agent","2a05195c-c279-4644-8bbd-a2007316a984","2022-06-27T18:31:53.000+02:00","2026-04-22T07:38:04.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Exploitation,NVR,Production","508.0" +"334474020","336780138","vrdsiarad2.sanef-rec.fr","","00:50:56:9c:bf:c1","10.45.14.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 0d e2 97 96 64 9a-44 c6 d2 8d 1d 8c 7b c6","No Asset Tag","'+02:00","2026-04-21T10:44:57.000+02:00","cybadmroot","Cloud Agent","3f63d0e7-54c5-4227-a8b2-60721c718d13","2025-06-18T17:34:39.000+02:00","2026-04-22T11:09:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Radius,Recette,Cloud Agent,Linux Server,OS-LIN-SRV DYN","14.0" +"180394921","232823329","vrrauafrt2.sanef-rec.fr","","00:50:56:9c:c6:7d, 00:50:56:9c:aa:2f","10.45.5.38,10.45.9.236","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 23 17 6e 89 d4 65-93 ec 9d d5 6b 06 83 e1","No Asset Tag","'+02:00","2026-04-21T16:00:40.000+02:00","cybadmsys","Cloud Agent","525a37e9-3602-4d61-b803-11b1c97b105e","2023-07-28T12:38:15.000+02:00","2026-04-22T07:37:53.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,DSI,OS-LIN-SRV DYN,Cloud Agent,Linux Server","72.0" +"221418055","254288584","vposapquo1.sanef.groupe","","00:50:56:90:1f:e1","10.100.16.17","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 de 26 7d 05 8e 96-46 de 3a 71 de 50 c8 52","No Asset Tag","'+02:00","2026-02-26T12:08:15.000+02:00","cybadmsys","Cloud Agent","4b48a16f-2b2a-45bf-91f8-c4ef7cbdff20","2024-03-11T18:51:32.000+02:00","2026-04-22T07:37:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production","144.0" +"388897816","357220731","PCB24247.sanef.groupe","PCB24247","24:FB:E3:CD:06:4E","10.100.39.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M6X","","'+02:00","2026-03-29T09:27:37.000+02:00","Kan-samuel.KONAN@sanef.com","Cloud Agent","6402f25b-5572-459a-bf4d-ae3a36e68848","2026-01-07T14:28:51.000+02:00","2026-04-22T11:34:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","339.0" +"138992971","198162634","vpdecasas6","","00:50:56:82:37:c1","10.30.11.154","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2200","Intel(R) Xeon(R) CPU E5-4660 v4 @ 2.20GHz","257964","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 2b 40 e9 8a e9 d8-a0 1e a2 a8 2d ab 8e 0f","No Asset Tag","'+02:00","2026-03-25T11:28:20.000+02:00","cybreconcile","Cloud Agent","c3e072b4-8e43-4338-ab89-6f9896d3609a","2022-09-06T12:18:18.000+02:00","2026-04-22T07:37:25.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_INCONNUE,DSI,Cloud Agent,Linux Server,SAS,OS-LIN-SRV DYN,Production,Finances Comptabilité / Consolidation,Obsolete","71.0" +"361277472","345238443","PCB21597.sanef.groupe","PCB21597","D0:AD:08:A4:4D:A4","10.12.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K9","8CC34711K9","'+02:00","2026-03-29T09:12:33.000+02:00","SANEF\pcemtz","Cloud Agent","fb957375-c7d0-4548-b4b0-a3c36115a554","2025-09-19T15:22:21.000+02:00","2026-04-22T07:37:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"318844339","328215092","PCB22896.sanef.groupe","PCB22896","D0:AD:08:A3:7B:37","10.108.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX4","8CC3502YX4","'+02:00","2026-03-29T09:12:27.000+02:00","SANEF\raison","Cloud Agent","0f9ff99d-c4bf-4109-bca9-e34a74d3d5be","2025-04-23T17:15:26.000+02:00","2026-04-22T07:37:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"178053006","231157807","vptrabpxp1.sanef.groupe","VPTRABPXP1","00:50:56:82:05:CC","10.41.40.161","fe80::4cd3:28a8:a688:87de","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 55 b8 d9 35 0b 8d-7f 90 01 c6 d7 e9 c8 ca","NoAssetTag","'+02:00","2026-04-01T11:10:57.000+02:00","Administrateur","Cloud Agent","e258c757-f74e-4e48-b16c-ea6bbc12e29d","2023-07-11T18:05:50.000+02:00","2026-04-22T07:36:56.000+02:00","64-Bit","4","SCA,VM,PM,GAV","BDD-POS DYN,OS-WIN-SRV DYN,DEX,PX Prévia,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Windows Server","503.0" +"272327301","300954741","vvbotaapm1.sanef-rec.fr","","5a:09:23:e9:c6:41, 8e:39:85:ab:6d:31, 1a:8a:d0:4e:4a:43, 00:50:56:9c:18:ae, 02:0d:59:ac:68:df, 32:df:9a:a9:82:3a, ba:10:c1:f3:2b:de","10.45.6.137,10.89.0.1","fe80::5809:23ff:fee9:c641,fe80::8c39:85ff:feab:6d31,fe80::188a:d0ff:fe4e:4a43,fe80::250:56ff:fe9c:18ae,fe80::d:59ff:feac:68df,fe80::30df:9aff:fea9:823a,fe80::b810:c1ff:fef3:2bde","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 42 4c 71 97 de 6c-e5 40 df bf 2f 98 e3 a7","No Asset Tag","'+02:00","2026-03-12T12:55:50.000+02:00","kapschsysuser","Cloud Agent","8e02ac89-8937-4583-b501-5d54d7a7ff99","2024-10-15T12:09:12.000+02:00","2026-04-22T07:36:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Linux Server,Cloud Agent","140.0" +"359757086","","PCB24333.sanef.groupe","PCB24333","10:B6:76:95:8B:8C","10.100.39.84","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZYD","","'+02:00","2026-03-30T13:05:48.000+02:00","SANEF\MEUNIER","Cloud Agent","bd81d707-28e6-46c5-ab46-46bf190e51d1","2025-09-15T12:17:07.000+02:00","2026-04-22T07:36:16.000+02:00","64-Bit","2","PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","0.0" +"129355670","191959635","vpchtanvr1","VPCHTANVR1","00:50:56:82:E1:0E","10.147.3.10","fe80::3e2d:c1cc:4318:9c9a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 32 b7 10 c3 ea 75-fb 18 f5 1e fd 91 d9 88","NoAssetTag","'+02:00","2026-03-18T13:46:25.000+02:00","Administrateur","Cloud Agent","b3ccf1d4-3732-442c-bc1e-70188f513e44","2022-06-27T17:52:59.000+02:00","2026-04-22T07:36:15.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR,Production","524.0" +"405477092","363237094","vmmgtca14c1.sanef-int.adds","VMMGTCA14C1","00:50:56:90:0D:F2","10.41.19.76","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 40 74 05 cd 61 46-4a 40 64 77 e1 04 20 58","NoAssetTag","'+02:00","2026-04-02T13:40:20.000+02:00","admin_gtc","Cloud Agent","1f886dfb-4c76-4d28-8e05-59b037cd040d","2026-03-02T17:47:33.000+02:00","2026-04-22T07:36:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","343.0" +"143622461","201024877","vpemvaadm1.sanef.groupe","","00:50:56:82:3f:ac","192.168.100.120","fe80::250:56ff:fe82:3fac","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 94 1a 2b 26 46 c5-68 17 52 2c 7d 31 2e c2","No Asset Tag","'+02:00","2026-03-19T12:55:29.000+02:00","reboot","Cloud Agent","73800d87-faef-4e19-88bf-f430624893f1","2022-10-11T17:24:07.000+02:00","2026-04-22T07:35:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Supervision/Admin,EMV,VRF_INCONNUE","106.0" +"129308617","191929156","vpaiiafsso2.sanef.groupe","VPAIIAFSSO2","00:50:56:82:49:26","10.30.11.3","fe80::e920:9adf:f368:6768","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 02 c5 9e af 09 ab fa-0b f4 bb 34 88 cc b5 4a","NoAssetTag","'+02:00","2026-02-23T12:21:45.000+02:00","VPAIIAFSSO2\CYBADMRES","Cloud Agent","e42cb779-af46-4118-948f-f3d389db2633","2022-06-27T10:54:27.000+02:00","2026-04-22T07:35:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Windows Server,DSI,Production,Sans,Sécurité IT,OS-WIN-SRV DYN,FSSO,VRF_INCONNUE","348.0" +"128591682","191408616","ls-bretonneux","LS-BRETONNEUX","00:50:56:90:AF:C6","10.41.2.49","fe80::ca55:acb5:4331:8534","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 e4 79 23 96 0e 94-67 1b e1 0b af 18 77 64","NoAssetTag","'+02:00","2026-03-23T16:31:04.000+02:00","svpadmin","Cloud Agent","83d96327-0d84-4a27-8c18-2e74713165f1","2022-06-21T11:07:37.000+02:00","2026-04-22T07:35:21.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Windows Server,VRF_PEAGE_DC,DEX,OS-WIN-SRV DYN,Production,High,Péage,SVP,Haute,Cloud Agent","633.0" +"202390516","245295390","vrameastg1.sanef-rec.fr","","00:50:56:9c:50:2f, 00:50:56:9c:a8:a5","10.45.4.10,10.45.2.10,10.45.2.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f6 73 b7 0a f4 df-55 19 7b 0c 02 1c 3d 05","No Asset Tag","'+02:00","2026-04-21T10:41:12.000+02:00","cybadmsys","Cloud Agent","17f4fe5e-9d61-4389-b6ac-7ee108a71fa9","2023-12-04T14:02:28.000+02:00","2026-04-22T07:35:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","SSTG,DEX,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","95.0" +"231858479","259509467","vrcybapsm2.recette.adds","VRCYBAPSM2","00:50:56:9C:EB:08","10.45.11.100","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c a6 b8 d8 4b 5b ee-98 e6 26 49 9e f2 45 cc","NoAssetTag","'+02:00","2026-04-16T11:56:10.000+02:00","RECETTE\BP01481","Cloud Agent","2be77bbc-1461-438f-8a95-1052d51b6811","2024-04-23T18:04:10.000+02:00","2026-04-22T11:17:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Recette","12.0" +"130357992","192671411","vpboeacst1.sanef.groupe","VPBOEACST1","00:50:56:82:DE:9B","10.41.21.10","fe80::17b:7958:c73e:bda5","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 78 96 b5 f0 60 de-d0 b7 f3 72 65 88 7a ce","NoAssetTag","'+02:00","2026-03-05T12:31:25.000+02:00","Administrateur","Cloud Agent","5816013d-5881-4ae8-8635-701564533a09","2022-07-05T17:26:39.000+02:00","2026-04-22T07:34:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,VRF_PEAGE_DC,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Péage","252.0" +"318403523","328039473","PCB23739.sanef.groupe","PCB23739","6C:0B:5E:EE:93:F6","10.199.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2T","","'+02:00","2026-04-02T08:31:21.000+02:00","SANEF\oudin","Cloud Agent","8c432cc3-bb1f-4bcc-a765-076829a08e37","2025-04-22T14:04:23.000+02:00","2026-04-22T07:34:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"334755653","","SVP18497.sanef-int.adds","SVP18497","D0:AD:08:A4:71:AA","10.92.7.29,10.11.2.21","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764JR","","'+02:00","2026-04-04T06:30:05.000+02:00","Superviseur","Cloud Agent","aaeca248-c95d-4bc5-87e6-6f6520e62921","2025-06-19T18:16:59.000+02:00","2026-04-22T07:34:43.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"374101557","350455501","vmdtrac15.recette.adds","VMDTRAC15","00:50:56:9C:D8:A9","10.45.17.17","fe80::e63b:bd73:6c2d:9ad5","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c ee 6c 44 3a 88 7f-72 3a 02 eb f1 00 cd b3","NoAssetTag","'+02:00","2026-04-16T02:05:43.000+02:00","supwindev","Cloud Agent","81c53f28-88d8-402f-bbd3-fa691893832c","2025-11-04T11:21:28.000+02:00","2026-04-22T11:14:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","336.0" +"231517264","259273208","ls-puttelange","LS-PUTTELANGE","00:50:56:90:A9:B5","10.41.2.113","fe80::b130:53f9:8bfe:f902","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 70 05 1c 21 87 29-06 da 67 44 05 ca 5f 4f","NoAssetTag","'+02:00","2026-03-02T15:49:14.000+02:00","svpadmin","Cloud Agent","d41eacc5-3a71-4ff8-9157-82d8c94268c0","2024-04-22T10:16:31.000+02:00","2026-04-22T07:34:20.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,VRF_PEAGE_DC,SVP,Production,Péage,High,OS-WIN-SRV DYN,Cloud Agent,Windows Server","681.0" +"354695010","342495683","vpechaetl2.sanef.groupe","","00:50:56:90:59:ff","10.42.16.142","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 cc 42 ba c4 dc a0-5d 1b 90 2d 9b ff 83 97","No Asset Tag","'+02:00","2026-02-12T16:12:14.000+02:00","cybsecope","Cloud Agent","90a09695-211c-4ae1-8779-9584eb44c3a1","2025-08-26T17:17:27.000+02:00","2026-04-22T07:34:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","145.0" +"387170879","356517261","vmdpeag04.recette.adds","VMDPEAG04","00:50:56:9C:38:61","10.45.17.198","fe80::ec86:b8ef:2bd2:bf72","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c f3 c9 10 8f 1d f4-09 61 c0 9c f4 e5 11 0d","NoAssetTag","'+02:00","2026-04-16T01:20:38.000+02:00","supwindev","Cloud Agent","3fdd8d99-5437-4a34-a556-58727d89ec1f","2025-12-31T16:38:08.000+02:00","2026-04-22T07:34:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"312232107","325471198","vrffbagsim1.recette.adds","VRFFBAGSIM1","00:50:56:9C:43:68","10.45.6.235,10.92.10.236,192.168.15.40,192.168.15.41,192.168.15.50,192.168.15.55,192.168.15.140,192.168.15.155,192.168.21.60,192.168.21.70,192.168.25.80,192.168.25.81,192.168.25.180,192.168.25.181","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c f7 4a 99 83 c5 dd-c4 92 86 a8 7c 45 09 d2","NoAssetTag","'+02:00","2026-03-03T15:14:42.000+02:00","Administrateur","Cloud Agent","809580ea-ccae-4f1a-b017-a836802aa8c4","2025-03-31T13:40:40.000+02:00","2026-04-22T07:33:58.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,OS-WIN-SRV DYN,Cloud Agent","507.0" +"176096530","229734616","vvboomocr2.sanef-rec.fr","","00:50:56:9c:08:ca","10.45.6.78","fe80::250:56ff:fe9c:8ca","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d1 8d 24 87 25 73-ff 38 59 35 ce 37 cc a8","No Asset Tag","'+02:00","2026-03-09T16:40:08.000+02:00","cybreconcile","Cloud Agent","79b897c6-80b0-4561-8dd4-4e84de31dafa","2023-06-27T15:28:32.000+02:00","2026-04-22T07:33:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,FreeFlow,Flux Libre,Cloud Agent,Linux Server","141.0" +"187892632","237684614","vpgtcawsus1","VPGTCAWSUS1","00:50:56:82:59:60","192.168.191.40","fe80::a7d0:92a1:ada:de90","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-56 4d 32 33 17 27 ff f9-24 c2 a0 39 c6 e5 39 52","NoAssetTag","'+02:00","2026-01-29T13:08:48.000+02:00","Administrator","Cloud Agent","d206778c-c5a3-44df-909c-f25c2f7f0718","2023-09-14T13:20:15.000+02:00","2026-04-22T07:33:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,WSUS,Cloud Agent,Windows Server,DSI","349.0" +"354301929","342322150","PCB22794.sanef.groupe","PCB22794","D0:AD:08:A7:28:4F","10.100.39.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YP7","8CC3502YP7","'+02:00","2026-03-28T18:05:18.000+02:00","SANEF\PSI","Cloud Agent","7c968fe5-1e92-4a2b-b8c5-1fd12497c925","2025-08-25T11:04:51.000+02:00","2026-04-22T07:33:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"149751255","205162785","vptraatai1.sanef.groupe","VPTRAATAI1","00:50:56:82:87:35","10.41.60.42","fe80::2177:52a7:2303:7a47","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 cd c0 b0 9c dc f6-0d d7 f2 e9 3c 83 24 af","NoAssetTag","'+02:00","2026-02-12T15:47:20.000+02:00","administrateur","Cloud Agent","8a857768-74e5-4f97-baa8-b9ed36a53fdc","2022-11-28T11:36:40.000+02:00","2026-04-22T07:33:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,VRF_BURO,Enregistrement_COM","255.0" +"323156256","329795663","PCB22920.sanef.groupe","PCB22920","D0:AD:08:A3:7B:D9","10.152.30.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVN","8CC3502YVN","'+02:00","2026-04-01T15:09:41.000+02:00","SANEF\fournett","Cloud Agent","55b50e07-d847-4d84-97b4-ac10385b8f5b","2025-05-09T09:53:18.000+02:00","2026-04-22T07:33:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"407114551","363934082","PCV18562.sanef-int.adds","PCV18562","30:13:8B:6C:5D:28","10.152.7.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473SY","","'+02:00","2026-03-11T17:28:31.000+02:00","Operateur","Cloud Agent","917e0e28-8518-475f-b817-9ff658d3f7d9","2026-03-09T12:20:44.000+02:00","2026-04-22T07:33:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"335451097","334613476","PCB24183.sanef.groupe","PCB24183","24:FB:E3:F3:F9:0C","10.103.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XK","","'+02:00","2026-04-21T17:07:44.000+02:00","SANEF\LELIEVRE","Cloud Agent","3b384d77-2f49-4d08-a00f-33f5a3a87d2d","2025-06-23T10:48:51.000+02:00","2026-04-22T07:33:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"300893075","320650141","PCB23613.sanef.groupe","PCB23613","C8:6E:08:88:E2:C1","10.103.31.3,10.255.2.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L46","","'+02:00","2026-04-15T11:05:19.000+02:00","SANEF\flecheux","Cloud Agent","64779fa9-8f3e-4b41-b3a4-c97320ea5b38","2025-02-18T13:05:26.000+02:00","2026-04-22T11:48:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"372396935","349704087","PCV21142.sanef-int.adds","PCV21142","D0:AD:08:A3:7B:5E","10.210.37.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YX0","","'+02:00","2026-01-27T10:11:48.000+02:00","Operateur","Cloud Agent","3934a107-a3ad-4d93-bae1-200381ba0e58","2025-10-28T11:59:30.000+02:00","2026-04-22T11:12:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"370937437","349122655","PCM16091.sanef.groupe","PCM16091","48:9E:BD:4B:90:AA","10.1.22.140,10.45.11.242,192.168.91.30","fe80::ddd4:b77a:d92e:7278","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.18.00","8CC129284R","8CC129284R","'+02:00","2025-12-01T13:01:57.000+02:00","alx","Cloud Agent","419885c7-1f09-405d-b415-44f9f04ba3b4","2025-10-23T00:06:24.000+02:00","2026-04-22T07:32:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"327829869","","PCB23707.sanef.groupe","PCB23707","C8:6E:08:88:E2:9E","10.255.3.132","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6S","","'+02:00","2026-04-13T10:43:23.000+02:00","SANEF\BATIFOI","Cloud Agent","8d648308-817b-4036-b30b-f462a11f555a","2025-05-28T16:16:29.000+02:00","2026-04-22T07:32:44.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"230348234","258581748","vradvaapp1.sanef-rec.fr","","00:50:56:9c:80:06","10.45.13.3","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 33 fc f3 60 48 45-df 57 6e 3a f8 87 cd 75","No Asset Tag","'+02:00","2026-02-18T18:45:29.000+02:00","cybastsys","Cloud Agent","64984566-669b-48c3-87e2-c7e5f39edfc2","2024-04-16T14:00:00.000+02:00","2026-04-22T07:32:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server","333.0" +"319334511","328397007","PCB22907.sanef.groupe","PCB22907","D0:AD:08:A3:7B:E8","10.139.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVH","8CC3502YVH","'+02:00","2026-04-16T12:43:08.000+02:00","SANEF\CHOQUET","Cloud Agent","a76cf955-577d-47d0-9988-72beb8d2c36b","2025-04-25T11:14:06.000+02:00","2026-04-22T07:32:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"360012474","","PCB24322.sanef.groupe","PCB24322","00:72:EE:1F:FE:7D","10.255.1.137","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YH3","","'+02:00","2026-04-13T17:19:56.000+02:00","SANEF\apert","Cloud Agent","2a642d06-a6aa-4165-9def-34bbf5f02667","2025-09-16T12:07:38.000+02:00","2026-04-22T07:32:20.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent,BDD-SQL DYN","0.0" +"364638303","346573674","PCV22887.sanef-int.adds","PCV22887","D0:AD:08:A3:E7:9A","10.117.2.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YMH","","'+02:00","2026-04-07T09:16:58.000+02:00","Operateur","Cloud Agent","d8a762d2-02c6-415d-8f67-8be180e63beb","2025-10-01T10:15:55.000+02:00","2026-04-22T07:32:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"194461477","241443119","vpgesapent1","","00:50:56:9c:a9:32","10.30.11.140","fe80::250:56ff:fe9c:a932","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","5966","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c cc 61 51 29 81 1d-78 62 8c 9d 51 6d 5b 1f","No Asset Tag","'+02:00","2024-03-19T16:59:37.000+02:00","cybreconcile","Cloud Agent","824c87ce-2488-41d8-a52c-5ba974fca43a","2023-10-20T16:41:13.000+02:00","2026-04-22T07:32:02.000+02:00","x86_64","3","SCA,VM,PM,GAV","Obsolete,log4j,Cloud Agent,Linux Server,DSI,ITOP","512.0" +"398236665","360588010","vpdsibetc2.sanef.groupe","","00:50:56:9c:a9:8e","10.44.5.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c a3 32 6a 14 8e 9d-05 55 08 bc 3b 8a cb 57","No Asset Tag","'+02:00","2026-02-11T18:47:33.000+02:00","cybadmbdd","Cloud Agent","34a9d613-cd50-4c89-8f85-f9d729b9676f","2026-02-06T12:51:47.000+02:00","2026-04-22T07:32:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server","141.0" +"384764086","355156890","vtpatbsip1.sanef-rec.fr","","00:50:56:9c:22:64","10.45.9.132","fe80::94dd:5e60:6164:3b39","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","39952","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 25 d7 b4 64 d1 99-19 7b 7a 20 80 9e 93 41","No Asset Tag","'+02:00","2026-04-14T15:51:51.000+02:00","cybsupapp","Cloud Agent","3af681c4-bc88-42f4-91b2-c23ad4b8a4c8","2025-12-18T12:21:10.000+02:00","2026-04-22T07:31:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN","56.0" +"287511377","311434391","SVP22863.sanef-int.adds","SVP22863","D0:AD:08:A3:E7:89","10.11.16.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMV","","'+02:00","2026-04-21T20:03:17.000+02:00","Superviseur","Cloud Agent","17b0f524-9a52-40d4-95ea-6416bd5cd879","2024-12-19T12:18:09.000+02:00","2026-04-22T07:31:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"339866385","","PCB17777.sanef.groupe","PCB17777","F0:20:FF:9A:A7:BD","10.255.4.140","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVZ","","'+02:00","2026-04-21T07:26:07.000+02:00","SANEF\ROSTOUCHER","Cloud Agent","e8f64f3a-3c91-4799-acd5-0526d8171f5f","2025-07-07T16:32:15.000+02:00","2026-04-22T07:30:57.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"365271809","346839773","PCV20973.sanef-int.adds","PCV20973","BC:0F:F3:87:6F:80","10.11.21.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LLG","","'+02:00","2025-12-02T12:34:38.000+02:00","Operateur","Cloud Agent","dc59934f-d25d-4b44-90a4-85dc6ece4581","2025-10-03T16:37:20.000+02:00","2026-04-22T07:30:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"175565773","229347361","vvbotrtms2.sanef-rec.fr","","00:50:56:9c:d9:16","10.45.6.165","fe80::250:56ff:fe9c:d916","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c9 88 2a 81 80 57-4d c5 2f 74 05 59 16 4c","No Asset Tag","'+02:00","2026-03-10T16:34:24.000+02:00","cybreconcile","Cloud Agent","16b42a31-3a64-4db8-ada9-536c1851e7be","2023-06-23T11:42:20.000+02:00","2026-04-22T07:30:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,flux_libre,Recette,FreeFlow","145.0" +"312515481","325568287","vrsvpacli1","VRSVPACLI1","00:50:56:9C:AB:23","10.45.9.162","fe80::18d7:300a:565e:51e7","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 1f 01 4c 01 d8 97-35 5b 47 c4 d7 c4 16 91","NoAssetTag","'+02:00","2026-02-16T16:42:09.000+02:00","gare","Cloud Agent","8e843197-2a8d-4884-a5a4-c6d07b60387d","2025-04-01T10:36:29.000+02:00","2026-04-22T07:30:36.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Cloud Agent,OS-WIN-SRV DYN","513.0" +"325664644","","PCB20730.sanef.groupe","PCB20730","58:1C:F8:EB:6A:27","192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224DQX","","'+02:00","2026-04-17T12:30:01.000+02:00","SANEF\vancaeyzeele","Cloud Agent","73d11843-beee-4509-b1e5-7e89bad07a48","2025-05-19T10:00:34.000+02:00","2026-04-22T07:30:27.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"240205944","279077695","lrinfbcos1.sanef.groupe","","3e:33:fb:a0:00:a8","10.45.9.196","fe80::3c33:fbff:fea0:a8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200L","/n/Bios Asset Tag :","'+02:00","2026-01-12T12:43:30.000+02:00","cybadmsys","Cloud Agent","d56a3b8a-da4c-4683-a2ba-075eb895ee72","2024-06-10T12:34:16.000+02:00","2026-04-22T07:30:21.000+02:00","x86_64","3","SCA,VM,PM,GAV","COSWIN,Linux Server,Cloud Agent,Recette,OS-LIN-SRV DYN","502.0" +"165493503","221784870","vrdsiaadm1.recette.adds","VRDSIAADM1","00:50:56:82:58:CD","10.45.7.67","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 d7 09 82 06 f4 d7-42 41 e9 b1 74 3c df 39","NoAssetTag","'+02:00","2026-04-20T14:10:22.000+02:00","RECETTE\a03987","Cloud Agent","df70b88f-e37c-4c94-bef4-2777ec76a3e9","2023-04-05T16:06:31.000+02:00","2026-04-22T07:30:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,AD,DSI,Recette","242.0" +"208776146","248746834","vibotarmq2.sanef.groupe","","00:50:56:90:db:03","10.41.23.142","fe80::250:56ff:fe90:db03","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 d8 4e fb 0b bf 0a-b1 ff 2b 2f 68 7b b8 74","No Asset Tag","'+02:00","2026-03-17T12:05:56.000+02:00","cybreconcile","Cloud Agent","02404df1-e3e6-4541-9dda-fddb0c86b4d7","2024-01-10T12:58:42.000+02:00","2026-04-22T07:30:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server","141.0" +"267466879","298462274","vpracaquo1.sanef.groupe","","00:50:56:90:7f:5b","10.100.16.18","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 2e 0b 0e 39 5e 0e-64 e3 3d 31 d2 d6 b5 b7","No Asset Tag","'+02:00","2026-04-13T09:50:32.000+02:00","cybreconcile","Cloud Agent","447db307-ccdc-4989-8c0c-e51b96f27990","2024-09-24T16:55:13.000+02:00","2026-04-22T07:29:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"238271425","269262511","vipeahbst3.sanef.groupe","","00:50:56:90:37:19","10.41.29.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 17 95 89 c2 84 ed-2c 8f 91 a2 95 54 83 8a","No Asset Tag","'+02:00","2026-03-19T15:49:49.000+02:00","cybexpapp","Cloud Agent","ddb444b2-d7ae-4fc7-a6a1-1674d9ed38cb","2024-05-21T14:55:10.000+02:00","2026-04-22T07:29:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow","141.0" +"322639832","329600246","PCB22771.sanef.groupe","PCB22771","D0:AD:08:A7:28:5A","10.106.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM0","","'+02:00","2026-04-15T10:05:13.000+02:00","SANEF\bourdona","Cloud Agent","764099f6-5f69-47f9-8ccb-415c3d80b7da","2025-05-07T15:36:20.000+02:00","2026-04-22T07:29:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"378020521","352291985","PCV21528.sanef-int.adds","PCV21528","D0:AD:08:A3:7B:3B","10.12.7.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YV3","","'+02:00","2026-03-03T06:18:17.000+02:00","Operateur","Cloud Agent","d8b5e321-bb9f-4024-aac5-84d07acfad73","2025-11-20T11:41:43.000+02:00","2026-04-22T07:29:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"321605977","329100429","PCB23597.sanef.groupe","PCB23597","6C:0B:5E:EE:B3:BA","10.100.39.112","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L89","","'+02:00","2026-04-01T15:11:26.000+02:00","SANEF\TIFFINEAU","Cloud Agent","ff865c2a-e21a-4c61-93df-d3a5699c4b9d","2025-05-02T16:00:35.000+02:00","2026-04-22T07:29:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"215165445","251699583","ls-bolbec","LS-BOLBEC","00:50:56:90:B4:13","10.41.2.84","fe80::b850:62d6:c6a2:708c","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 28 ff 24 25 20 8c-2a bf 84 a9 46 0f d5 7a","NoAssetTag","'+02:00","2026-02-19T16:16:19.000+02:00","svpadmin","Cloud Agent","7a50cb9d-9c08-4210-8c0b-e5c07e5b6d03","2024-02-12T11:10:13.000+02:00","2026-04-22T07:29:16.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,SVP,DEX,OS-WIN-SRV DYN,VRF_BACKUP_DC,High,VRF_PEAGE_DC,Péage,Production","508.0" +"149877032","205250032","vrintaels1.sanef.groupe","","00:50:56:82:02:34","10.45.1.197","fe80::250:56ff:fe82:234","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 ac 73 da 72 85 c5-c8 e3 d2 3c 4b 23 61 01","No Asset Tag","'+02:00","2026-02-23T13:28:31.000+02:00","cybadmsys","Cloud Agent","f2b5da61-0e90-43e5-b315-8d3c3ee6bdf6","2022-11-29T10:44:36.000+02:00","2026-04-22T07:29:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,OS-LIN-SRV DYN,BDD-ELA DYN,Gestion institutionnel","141.0" +"129310163","191929397","ls-thillois","LS-THILLOIS","00:50:56:90:8C:B2","10.82.16.20","fe80::39fd:703d:3461:8879","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 68 ef dd d7 04 8a-00 cf c3 b5 55 ff ad 12","NoAssetTag","'+02:00","2026-02-17T12:35:00.000+02:00","svpadmin","Cloud Agent","2258c7ac-8b20-48c3-9873-741a85e02339","2022-06-27T11:01:13.000+02:00","2026-04-22T07:29:07.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,SVP,VRF_INCONNUE,High,Production,Péage,Haute,Cloud Agent,Windows Server,OS-WIN-SRV DYN","634.0" +"372472457","349736472","MTO22784.sanef.groupe","MTO22784","D0:AD:08:A3:E7:9F","10.105.30.16","fe80::b5c5:4e17:2093:47b8","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5039) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMB","","'+02:00","2025-10-28T17:16:33.000+02:00","SANEF\meteonewsW11","Cloud Agent","1696ac0b-98af-4e24-be85-7fff8e8c2481","2025-10-28T17:17:51.000+02:00","2026-04-22T07:29:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"378961878","352684752","PSX18686.sanef-int.adds","PSX18686","30:13:8B:6C:5C:46","10.200.40.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473VS","","'+02:00","2026-04-22T05:00:39.000+02:00","UserSextan","Cloud Agent","7d7082ab-9f88-4d32-9838-ce186de0eadd","2025-11-24T18:14:17.000+02:00","2026-04-22T11:04:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"158184886","210914051","vppintaprx1.sanef.groupe","","00:50:56:82:66:76","192.168.20.19","fe80::250:56ff:fe82:6676","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 98 5e 01 55 5c ea-d6 a7 9f f8 28 64 bc a9","No Asset Tag","'+02:00","2026-04-14T14:21:02.000+02:00","cybreconcile","Cloud Agent","7ddfba67-cd2f-4aad-85b8-b9b1d639cab3","2023-02-06T11:51:10.000+02:00","2026-04-22T07:28:31.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,TAG-SRVEXPOSEINTERNET,Gestion institutionnel,OS-LIN-SRV DYN,Cloud Agent,Linux Server","132.0" +"131405805","193425044","vsapbdd1.sanef.groupe","","00:50:56:82:58:5A","10.30.10.139","fe80::250:56ff:fe82:585a","Linux / Server","The CentOS Project CentOS 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7873","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ef 1d 10 5c 70 1c-1a e3 77 a7 40 8d 08 a2","No Asset Tag","'+02:00","2023-01-12T08:06:16.000+02:00","cybreconcile","Cloud Agent","26e354e7-4929-4e5b-9b75-9e6636cd71cd","2022-07-13T10:39:43.000+02:00","2026-04-22T07:28:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,Cloud Agent,Linux Server,log4j,BDD-POS DYN,SAP,Production,Finances Comptabilité / Consolidation,DFIN","351.0" +"373790985","350330226","PSX18693.sanef-int.adds","PSX18693","30:13:8B:6C:5E:5F","10.12.40.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WK","","'+02:00","2026-02-11T18:07:53.000+02:00","UserSextan","Cloud Agent","03240c45-f5db-492b-9c46-10b29f1a0053","2025-11-03T12:09:26.000+02:00","2026-04-22T07:28:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"374742401","350752872","DAI22853.sanef-int.adds","DAI22853","D0:AD:08:A6:12:AA","10.100.70.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YKJ","","'+02:00","2026-03-21T10:54:52.000+02:00","DAIUSER","Cloud Agent","83b31c23-adf9-4fe0-bd68-c19679b4688c","2025-11-06T18:23:31.000+02:00","2026-04-22T07:27:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"387139379","356492636","vmdtrac07.recette.adds","VMDTRAC07","00:50:56:9C:05:DE","10.45.17.9","fe80::ab5f:a8c7:43dc:f929","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 1e 19 c9 67 10 38-e7 83 e5 86 04 45 a6 08","NoAssetTag","'+02:00","2026-04-15T21:35:49.000+02:00","supwindev","Cloud Agent","ef80d23e-f043-4492-8a06-a2a6e2631322","2025-12-31T10:52:14.000+02:00","2026-04-22T11:00:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"165638728","222003813","vrvidavsc1.recette.adds","VRVIDAVSC1","00:50:56:9C:B5:1C, 02:00:4C:4F:4F:50","10.45.7.99,169.254.212.214","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 1b c0 2a 53 e1 2d-af 82 43 f5 4e 0d fe 31","NoAssetTag","'+02:00","2026-03-03T15:14:41.000+02:00","mbaad-ext","Cloud Agent","9610046a-4875-42d0-9d67-d18d38f07c14","2023-04-06T15:55:50.000+02:00","2026-04-22T07:27:20.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Recette,Cloud Agent,Windows Server,NVR","517.0" +"399593705","361202953","MacBook-Pro.local","MAC16448","72:60:b4:3b:99:97","10.255.6.16,192.168.1.22","2a01:cb04:5eb:c000:140c:62ba:a18:34ab,2a01:cb04:5eb:c000:a5e6:a56c:318e:7795,fe80::4d4:68eb:5c6e:717d","Mac / Client","Apple macOS Tahoe (26.3.1)","26.3","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFGH6XFQ05N","","'+02:00","2026-03-30T10:21:15.000+02:00","joran.rio","Cloud Agent","b0ef5ce6-7598-4a69-8f83-c8e550ee77c0","2026-02-12T12:11:49.000+02:00","2026-04-22T10:55:00.000+02:00","arm64_M1","2","SCA,VM,PM,GAV","Cloud Agent","65.0" +"285107069","330493408","ls-spare-alb","LS-SPARE-ALB","00:50:56:90:60:79","10.252.12.254","fe80::99b:e5e1:bed7:99a8","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 10 9a 57 6d e8 a7 e4-c1 76 8e 1f 7d 7d 12 6c","NoAssetTag","'+02:00","2026-03-05T12:03:15.000+02:00","gare","Cloud Agent","55839c99-e9ec-4e68-859a-6543eff537e4","2024-12-09T10:29:03.000+02:00","2026-04-22T07:27:09.000+02:00","64-Bit","4","SCA,VM,GAV","OS-WIN-SRV DYN,SVP,Cloud Agent,Péage","680.0" +"331201436","","PCB17769.sanef.groupe","PCB17769","F0:20:FF:9A:A7:B8","10.255.3.140","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HV9","","'+02:00","2026-04-21T07:35:22.000+02:00","SANEF\DERCOURT","Cloud Agent","1058e400-a109-48c6-9558-ec0eeb4273e3","2025-06-05T16:49:13.000+02:00","2026-04-22T07:27:08.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"324122852","","PCB23556.sanef.groupe","PCB23556","6C:0B:5E:EC:DD:06","10.4.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8L","","'+02:00","2026-04-21T07:24:24.000+02:00","SANEF\pigeond","Cloud Agent","fd165c86-6be8-49a3-838d-953e6e6fbcaf","2025-05-12T15:56:10.000+02:00","2026-04-22T07:27:04.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"200577338","244425330","vptrabkme1.sanef.groupe","","00:50:56:90:b4:65","10.41.40.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 67 97 da 01 0d b9-6f df 41 7d 19 bc 76 d8","No Asset Tag","'+02:00","2026-04-14T11:33:55.000+02:00","cybreconcile","Cloud Agent","b559369d-392d-45c1-a640-f40c99f06c85","2023-11-23T17:01:49.000+02:00","2026-04-22T07:27:00.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,OS-LIN-SRV DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,KMELC","130.0" +"363308117","346060935","PCV18550.sanef-int.adds","PCV18550","30:13:8B:6C:5A:D3","10.100.7.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473SW","","'+02:00","2026-04-21T21:00:06.000+02:00","Operateur","Cloud Agent","89d67c8b-da1d-4d90-b901-ea52553ffd15","2025-09-26T17:12:43.000+02:00","2026-04-22T07:26:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"378044222","352302026","PCV20826.sanef-int.adds","PCV20826","30:13:8B:6C:5B:ED","10.209.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q8B","","'+02:00","2026-04-17T08:54:18.000+02:00","Operateur","Cloud Agent","10e02fae-53be-445e-a350-2d8ed435b572","2025-11-20T12:48:53.000+02:00","2026-04-22T07:26:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"248475907","288177042","MTO21605.sanef.groupe","MTO21605","D0:AD:08:A4:4D:A3","10.11.31.12","fe80::ca7d:bf6:b9c6:8496","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711KB","","'+02:00","2026-03-09T13:24:13.000+02:00","SANEF\meteonewsW11","Cloud Agent","8d0c81a1-75dc-486c-aba4-96e9e2eae04a","2024-07-04T12:55:55.000+02:00","2026-04-22T07:26:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"320281394","328634519","PCB23532.sanef.groupe","PCB23532","6C:0B:5E:EE:A3:A5","10.2.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9N","","'+02:00","2026-03-30T10:56:33.000+02:00","SANEF\colmart","Cloud Agent","350ede1e-5dbd-48aa-abee-533a2b203fbf","2025-04-28T15:51:22.000+02:00","2026-04-22T12:03:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"130356819","192670935","vppeaaref2","VPPEAAREF2","00:50:56:82:90:92","10.41.2.231","fe80::9549:8413:d671:f787","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2594","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","10240","Phoenix Technologies LTD 6.00","VMware-42 02 18 0f 40 6b 38 43-7b d3 e2 68 bf 08 ec 0f","NoAssetTag","'+02:00","2026-02-25T14:10:46.000+02:00","Administrateur","Cloud Agent","59f4b6eb-e150-431b-a6fa-ce86a5aaf68a","2022-07-05T17:18:45.000+02:00","2026-04-22T07:26:38.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,Haute,SVP,OS-WIN-SRV DYN,Production,Péage,High,DEX,Cloud Agent,Windows Server","643.0" +"129315730","191933900","ls-vatry","LS-VATRY","00:50:56:90:13:C0","10.41.2.108","fe80::4987:2689:abc0:a8b3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 cb 07 5f 4d de 78-41 6b cf 29 50 14 88 eb","NoAssetTag","'+02:00","2026-03-04T12:54:05.000+02:00","svpadmin","Cloud Agent","5f991324-7137-45c0-8c94-3c3178429ba2","2022-06-27T11:59:26.000+02:00","2026-04-22T07:26:37.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_PEAGE_DC,Haute,DEX,Production,High,Péage,Cloud Agent,Windows Server,SVP","635.0" +"231515226","259271625","ls-aumale-ouest","LS-AUMALE-OUEST","00:50:56:90:37:B0","10.41.2.104","fe80::dc61:4096:ee8f:58e4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 93 a0 1e 45 00 bf-ca 70 25 42 07 f5 57 5c","NoAssetTag","'+02:00","2026-03-23T12:41:25.000+02:00","svpadmin","Cloud Agent","0ed90b85-b8ba-4a4a-a5d4-a32543ff1364","2024-04-22T09:56:31.000+02:00","2026-04-22T07:26:32.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,High,SVP,VRF_PEAGE_DC,Production,Péage","680.0" +"277325037","303830585","VRAPTCPSH1","VRAPTCPSH1","00:50:56:9C:BB:A0","10.45.13.99","fe80::6dbf:352e:e0cd:de75","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6936) 64-Bit","23H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 21 6e 5a f3 ea 28-77 d7 c0 dd 50 cc c6 d0","NoAssetTag","'+02:00","2026-04-15T04:38:24.000+02:00","Supwin","Cloud Agent","4bfd823e-655f-472d-87ef-08e137b8d9cf","2024-11-07T18:21:14.000+02:00","2026-04-22T07:26:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,Recette","250.0" +"318434431","328050558","PCB23760.sanef.groupe","PCB23760","6C:0B:5E:EE:B3:CD","10.100.39.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H50","","'+02:00","2026-04-08T17:04:12.000+02:00","SANEF\DUQUEYROIX","Cloud Agent","2f808f9e-3073-400a-a775-a86b74a3b84c","2025-04-22T15:42:54.000+02:00","2026-04-22T07:26:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"202807661","245521799","viosapast1.sanef.groupe","","00:50:56:90:37:69","10.41.8.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 77 e5 7d 99 99 79-cd 16 76 8d 84 16 ad 81","No Asset Tag","'+02:00","2026-02-19T11:14:13.000+02:00","cybreconcile","Cloud Agent","65f9b2dc-066e-4f1e-8b79-db849af7b5da","2023-12-06T13:29:33.000+02:00","2026-04-22T07:26:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,DEX,OS-LIN-SRV DYN","142.0" +"309388699","324179537","vrpeaakib1.sanef-rec.fr","","00:50:56:9c:d4:ef","10.45.10.105","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c aa d6 07 4c a1 bf-da 60 2e f3 68 89 02 99","No Asset Tag","'+02:00","2026-02-18T18:42:03.000+02:00","cybsecope","Cloud Agent","8c5eb5e7-c486-41a3-8d42-17501ebb7b76","2025-03-19T17:46:47.000+02:00","2026-04-22T07:26:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,Linux Server,Cloud Agent,BDD,Recette","54.0" +"358632755","344169448","VMMCAGC1.sanef-int.adds","VMMCAGC1","00:50:56:90:6D:9D","10.41.50.250","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 b4 a8 80 84 6d cb-64 81 06 b4 00 e2 a6 32","NoAssetTag","'+02:00","2026-04-16T16:41:26.000+02:00","UserPCT","Cloud Agent","1b0f894a-2660-4743-96f3-558831572c19","2025-09-10T15:34:41.000+02:00","2026-04-22T07:26:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","343.0" +"407115941","363935816","PCV18548.sanef-int.adds","PCV18548","30:13:8B:6C:5D:04","10.152.7.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","32473","HP U50 Ver. 03.03.11","CZC44473T8","","'+02:00","2026-03-11T17:16:59.000+02:00","Operateur","Cloud Agent","76c1ae99-68ac-4645-8f98-931ff326652e","2026-03-09T12:40:08.000+02:00","2026-04-22T07:26:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"210209133","249476700","vposapmet1.sanef-int.adds","VPOSAPMET1","00:50:56:90:98:E2","10.44.6.38","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 e7 fb 21 58 cb 44-5d 31 13 94 26 26 bc a2","NoAssetTag","'+02:00","2026-02-26T15:02:25.000+02:00","SANEF-INT\b03987","Cloud Agent","b5bcef10-350a-44fa-841a-23a6e7f35520","2024-01-17T19:15:34.000+02:00","2026-04-22T07:25:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Production,Péage,OS-WIN-SRV DYN,DEX","254.0" +"129362125","191963823","vpsroanvr1","VPSROANVR1","00:50:56:82:E5:63","10.217.26.11","fe80::cf26:fa68:10f1:df73","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 4b eb 6d 6f 94 3b-ed 56 6a 8e 63 69 40 15","NoAssetTag","'+02:00","2026-02-05T15:55:09.000+02:00","Administrateur","Cloud Agent","6769ad19-cd4b-4d87-83b2-0b25926fd50e","2022-06-27T18:19:34.000+02:00","2026-04-22T11:36:56.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Production,Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_INCONNUE,NVR,Exploitation,DEX","508.0" +"130588224","192836201","vmamrpmv2","","00:50:56:82:25:CC, 00:50:56:82:39:36, 00:50:56:82:6C:80","10.30.16.73,10.30.16.81,10.30.16.82,10.30.16.84,10.30.16.86,10.30.16.88,10.32.16.73,10.32.16.81,10.32.16.82,10.32.16.84,10.32.16.86,10.32.16.88,10.33.16.81","fe80::250:56ff:fe82:25cc,fe80::250:56ff:fe82:3936,fe80::250:56ff:fe82:6c80","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 95 cf d8 6c 28 75-6d 67 f9 88 4b f2 99 cd","No Asset Tag","'+02:00","2025-10-09T11:39:24.000+02:00","cybexpapp","Cloud Agent","5f97bdcf-1f2b-4de0-96e9-1686ef15f760","2022-07-07T12:02:38.000+02:00","2026-04-22T07:25:37.000+02:00","x86_64","5","SCA,VM,PM,GAV","Sans,Trafic,Recette,MIVISU,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,log4j,DEX","873.0" +"213849807","251125825","sppeaanvr29","SPPEAANVR29","D4:F5:EF:A6:63:71","10.41.7.128","fe80::3b11:3dfc:1d11:2f44","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ23300BQ7","","'+02:00","2026-02-09T15:18:11.000+02:00","Administrateur","Cloud Agent","4e6df851-b620-468e-8be2-178051e5142e","2024-02-05T19:42:23.000+02:00","2026-04-22T07:25:32.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,NVR,DEX,Cloud Agent,Windows Server","508.0" +"213849768","251125117","sppeaanvr13","SPPEAANVR13","D4:F5:EF:50:7C:89","10.41.7.112","fe80::a02c:9be5:c29:9380","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DV5","","'+02:00","2026-02-03T15:07:57.000+02:00","Administrateur","Cloud Agent","e0f99a6a-bbfa-4c2d-9569-465d4e097e41","2024-02-05T19:32:12.000+02:00","2026-04-22T07:24:55.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX","523.0" +"260022315","294877281","vrdsiasat1.sanef-rec.fr","","00:50:56:9c:29:f3","10.45.0.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6f fc bc db ff 4e-c4 f6 11 d8 0f be 9a 51","No Asset Tag","'+02:00","2026-04-14T09:45:50.000+02:00","cybsecope","Cloud Agent","26212425-1c91-4064-9586-dc5c7d9037dd","2024-08-21T12:54:30.000+02:00","2026-04-22T07:24:50.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,BDD-POS DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Recette,Satellite","66.0" +"411599357","365717201","PCB25898.sanef.groupe","PCB25898","4C:CF:7C:0A:4C:8B","10.189.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342228","","'+02:00","2026-04-21T11:25:55.000+02:00","SANEF\PEUDEVIN","Cloud Agent","a08b74f6-4e94-41b1-aea2-915d944fb59e","2026-03-26T10:39:52.000+02:00","2026-04-22T07:24:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"257780648","294877284","vpsupapol4.sanef.groupe","","00:50:56:8d:c4:62","10.44.5.106","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 35 87 6d 7e 97 ca-a1 9c fd b1 fa ab cf 04","No Asset Tag","'+02:00","2026-03-30T11:14:42.000+02:00","cybsecope","Cloud Agent","4fda7178-6910-4c69-a02a-546b182516c0","2024-08-12T13:41:18.000+02:00","2026-04-22T07:24:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,BDD-ELA DYN,MID-NGINX DYN,Linux Server,Cloud Agent,Production,Centreon","133.0" +"175949562","229618439","vvbocs4as1.sanef-rec.fr","","00:50:56:9c:59:aa","10.45.6.6","fe80::250:56ff:fe9c:59aa","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5b 05 6c b5 23 31-e1 35 15 fc 6f 74 67 90","No Asset Tag","'+02:00","2026-03-26T20:15:05.000+02:00","cybsupsys","Cloud Agent","4b7af28e-0cdc-4b98-998b-afc9b523b3c4","2023-06-26T16:43:00.000+02:00","2026-04-22T07:24:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Flux Libre,Cloud Agent,Linux Server,FreeFlow","144.0" +"332255291","","PCB21302.sanef.groupe","PCB21302","30:F6:EF:A5:EB:32","192.168.1.41,169.254.223.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKC","","'+02:00","2026-04-21T08:18:28.000+02:00","SANEF\meras","Cloud Agent","67ee57f0-3c71-4af9-b8c6-c6af81ad27c8","2025-06-10T11:27:22.000+02:00","2026-04-22T07:24:23.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"290939628","313724568","SVP22782.sanef-int.adds","SVP22782","D0:AD:08:A3:7D:C0","10.100.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKT","","'+02:00","2026-03-26T14:36:14.000+02:00","Superviseur","Cloud Agent","884c61e0-1c98-47f8-92b8-7e2b53ea36c1","2025-01-08T15:10:29.000+02:00","2026-04-22T07:24:22.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Workstation,Cloud Agent,Forescout","686.0" +"139158084","198270618","vmampstg2","","00:50:56:82:6D:2C, 00:50:56:82:5F:2A, 00:50:56:82:46:99","10.41.40.46,10.41.40.47,10.43.40.46,10.43.40.47,10.43.4.46","fe80::250:56ff:fe82:6d2c,fe80::250:56ff:fe82:5f2a,fe80::250:56ff:fe82:4699","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 6a 8e b4 34 55 f7-0d 01 14 05 58 f5 27 f0","No Asset Tag","'+02:00","2024-02-14T14:45:23.000+02:00","cybreconcile","Cloud Agent","b0547fe7-2fee-4906-ac22-bf8a3dea7380","2022-09-07T14:33:00.000+02:00","2026-04-22T07:24:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,Trafic,SSTG,Obsolete,OS-LIN-SRV DYN,VRF_TRAFIC_DC,DEX,log4j,Cloud Agent,Linux Server","698.0" +"372999308","349974669","vpodabquo1.sanef.groupe","","00:50:56:90:34:d2","10.100.16.22","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 7a 50 2e b0 ce 3a-28 d8 2c 9a 76 6f 8c ea","No Asset Tag","'+02:00","2026-02-10T12:39:18.000+02:00","cybreconcile","Cloud Agent","b92550fa-6274-4296-a17f-b5273fc0ccd6","2025-10-30T15:47:38.000+02:00","2026-04-22T07:23:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","ORACLE,Production,BDD,Cloud Agent,OS-LIN-SRV DYN,Linux Server","145.0" +"210605077","249678661","lremvaste3","","00:17:a4:77:1c:34, 00:17:a4:77:1c:30","192.168.107.115,192.168.108.115","fe80::217:a4ff:fe77:1c34,fe80::217:a4ff:fe77:1c30","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000706","","'+02:00","2025-06-04T14:18:19.000+02:00","lamhajeb-ext","Cloud Agent","fa60436c-e5fc-4f21-a2fd-62a5517dd638","2024-01-19T12:08:18.000+02:00","2026-04-22T07:23:50.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard V17 Recette,Cloud Agent,Linux Server,EMV","700.0" +"185590289","236237662","sppeaanvr28","SPPEAANVR28","D4:F5:EF:A6:AA:8C","10.41.7.127","fe80::c7ea:a30d:91bc:ea9","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ23300BQB","","'+02:00","2026-02-09T12:14:54.000+02:00","Administrateur","Cloud Agent","722b778b-6a50-4071-af9f-1ed758a49675","2023-09-01T10:05:09.000+02:00","2026-04-22T07:22:44.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,NVR","508.0" +"241563930","276525121","vpvsaagez2","","00:50:56:9c:d2:03","192.168.18.76","fe80::250:56ff:fe9c:d203","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 52 a6 ca a7 7e 22-68 94 4a bb 72 29 6a 07","No Asset Tag","'+02:00","2026-02-04T16:51:01.000+02:00","tbaad","Cloud Agent","d9b33b8b-9cb1-4890-ba92-6b7cf1449d49","2024-06-04T14:05:02.000+02:00","2026-04-22T07:22:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"236301380","264488385","lpemvaste3","","00:17:a4:77:1c:58, 00:17:a4:77:1c:54","192.168.102.103,192.168.101.103","fe80::217:a4ff:fe77:1c58,fe80::217:a4ff:fe77:1c54","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070B","","'+02:00","2025-06-30T11:12:08.000+02:00","root","Cloud Agent","216dadc9-61a9-4156-a307-9de372a484c9","2024-05-13T14:57:35.000+02:00","2026-04-22T07:22:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,PCI Bunker EMV,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17","683.0" +"128519806","191357702","ls-beauvais-centre","LS-BEAUVAIS-CEN","00:50:56:90:4B:B7","10.41.2.90","fe80::e59a:63c8:5689:f144","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 07 60 af de 72 d1-98 63 3a 99 6a 4c d5 16","NoAssetTag","'+02:00","2026-03-23T15:06:55.000+02:00","svpadmin","Cloud Agent","c001cbd6-7e8b-4441-8745-e72a6de386db","2022-06-20T18:05:32.000+02:00","2026-04-22T07:22:33.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Windows Server,Cloud Agent,OS-WIN-SRV DYN,DEX,Production,Péage,High,SVP","507.0" +"205550121","246935753","vpbooarep1.sanef.groupe","","00:50:56:90:7a:a8","192.168.21.3","fe80::250:56ff:fe90:7aa8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 3c d9 75 25 1e 2f-79 7f 10 53 d4 a9 62 4f","No Asset Tag","'+02:00","2026-04-07T09:45:52.000+02:00","cybreconcile","Cloud Agent","f2176662-a3cf-4a99-b94e-4792f9ca9b65","2023-12-21T14:00:12.000+02:00","2026-04-22T07:22:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,FreeFlow,Cloud Agent,Linux Server","141.0" +"311383420","330450808","vpsicamic1.sanef-int.adds","VPSICAMIC1","00:50:56:8F:67:78","10.44.201.35","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 0f 15 79 a0 66 3a c2-4b d0 5a f2 9a ff 3f e5","NoAssetTag","'+02:00","2026-04-15T10:41:03.000+02:00","SANEF-INT\b03987","Cloud Agent","a1838a25-88da-43f8-812a-2dcbbb128716","2025-03-27T12:34:50.000+02:00","2026-04-22T07:22:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Production,OS-WIN-SRV DYN,TAG-SIC,TAG-CAPIV","328.0" +"159569521","212140185","vpintaweb3.sanef.groupe","","02:42:21:84:a9:e1, 00:50:56:82:a2:58","172.17.0.1,192.168.20.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 43 4e ac 36 c5 0b-a0 45 79 e7 07 64 75 d2","No Asset Tag","'+02:00","2026-04-15T14:58:12.000+02:00","cybreconcile","Cloud Agent","6f0930eb-1188-470b-8b59-430309194b43","2023-02-16T14:57:57.000+02:00","2026-04-22T07:22:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,Gestion institutionnel","130.0" +"129310553","191930214","ls-vallee-de-l-aube","LS-VALLEE-DE-L-","00:50:56:90:07:BD","10.41.2.67","fe80::727a:280d:1b65:a849","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c8 ff fa 2a 8f 5e-42 c0 48 d9 f6 ce 0c 08","NoAssetTag","'+02:00","2026-03-04T12:03:59.000+02:00","svpadmin","Cloud Agent","23cb1bd3-3c1e-4856-a8c9-ea1f72e672ef","2022-06-27T11:13:22.000+02:00","2026-04-22T07:22:07.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_PEAGE_DC,DEX,Cloud Agent,Windows Server,SVP,High,Production,Péage,OS-WIN-SRV DYN","507.0" +"339878420","","PCB21277.sanef.groupe","PCB21277","64:4E:D7:49:3A:1D","10.119.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GKP","","'+02:00","2026-04-14T13:00:49.000+02:00","SANEF\matt","Cloud Agent","63c9d480-d0fa-4676-9278-2c7f11719663","2025-07-07T16:55:37.000+02:00","2026-04-22T07:21:52.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"325166878","330553451","SVP21267.sanef-int.adds","SVP21267","D0:AD:08:1F:7E:DB","10.82.17.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3451GTY","","'+02:00","2026-04-21T18:25:53.000+02:00","Superviseur","Cloud Agent","57093a98-2a60-4b1c-bb99-e17e40f367db","2025-05-16T08:28:50.000+02:00","2026-04-22T07:21:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320058233","328600552","PCB24030.sanef.groupe","PCB24030","6C:0B:5E:F8:18:A7","10.2.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDV","","'+02:00","2026-03-29T09:26:48.000+02:00","SANEF\verlool","Cloud Agent","c91e0d7b-016a-4223-b075-50a72e3d5d70","2025-04-28T10:22:49.000+02:00","2026-04-22T07:21:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"130587915","192835846","lamarrac4.sanef.groupe","","00:17:A4:77:0C:8C, 00:17:A4:77:0C:84, 00:17:A4:77:0C:80, 00:17:A4:77:0C:88","10.45.3.103,10.45.5.5,169.254.24.161,10.45.2.106,10.45.2.107,10.45.5.21","fe80::217:a4ff:fe77:c8c,fe80::217:a4ff:fe77:c84,fe80::217:a4ff:fe77:c80,fe80::217:a4ff:fe77:c88","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ32903SK","","'+02:00","2026-02-25T16:01:13.000+02:00","cybsupsys","Cloud Agent","62edf48e-b2d4-4d90-80e9-1eaacdde2ce1","2022-07-07T11:57:26.000+02:00","2026-04-22T07:21:36.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,DEX,Sextan,Linux Server,Cloud Agent,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Sans,Recette,Trafic","693.0" +"231613066","259382222","vvbotatvv1.sanef-rec.fr","","36:b3:50:af:a2:f7, 00:50:56:9c:11:6d, b6:98:6a:57:7a:d1","10.89.0.1,192.168.21.169","fe80::34b3:50ff:feaf:a2f7,fe80::250:56ff:fe9c:116d,fe80::b498:6aff:fe57:7ad1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c e4 3e 1f e7 e6 66-f4 e4 b9 53 06 1e 77 c5","No Asset Tag","'+02:00","2026-03-12T15:42:20.000+02:00","cybreconcile","Cloud Agent","7ba4ea28-e9be-43d3-976a-a169627d11ff","2024-04-22T17:38:56.000+02:00","2026-04-22T07:21:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,FreeFlow,flux_libre","141.0" +"246316015","287010013","MTO22261.sanef.groupe","MTO22261","D0:AD:08:A7:27:D3","10.200.40.26","fe80::97db:b70a:69de:8a19","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5039) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YT5","","'+02:00","2026-04-16T05:37:12.000+02:00","SANEF\meteonewsW11","Cloud Agent","82af1685-9b4f-4fb3-96c4-0597cf65dc74","2024-06-25T13:22:01.000+02:00","2026-04-22T07:21:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"336702734","","PCB21168.sanef.groupe","PCB21168","D0:AD:08:E4:A1:5F","10.101.243.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HWF","","'+02:00","2026-04-20T07:50:02.000+02:00","SANEF\PLUCHE","Cloud Agent","a894ad4e-abf3-4461-bf3d-635665928a12","2025-06-26T11:48:43.000+02:00","2026-04-22T07:21:13.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"213858465","251130134","lpagtbpla1.sanef.groupe","","ee:50:33:80:00:6c, ee:50:33:80:00:6d","10.46.33.21","fe80::ec50:33ff:fe80:6c,fe80::ec50:33ff:fe80:6d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63887","HPE I44 06/13/2025","VCGCIOJ00D","/n/Bios Asset Tag :","'+02:00","2026-02-24T15:37:40.000+02:00","cybastapp","Cloud Agent","22e9a011-1e29-4413-99d1-2d90a1d71123","2024-02-05T20:43:53.000+02:00","2026-04-22T07:20:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","AgileTime,Cloud Agent,Linux Server,DRH,OS-LIN-SRV DYN","341.0" +"387174043","356515674","vmdgest04.recette.adds","VMDGEST04","00:50:56:9C:4C:F8","10.45.17.134","fe80::ec80:edf1:5d79:1177","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 4d 12 7f 32 d6 2d-6d 96 d5 b3 f2 2e 69 2c","NoAssetTag","'+02:00","2026-04-16T17:37:34.000+02:00","supwindev","Cloud Agent","aaefff9a-28b6-4352-ba6a-3897f30ff8d4","2025-12-31T16:19:48.000+02:00","2026-04-22T07:20:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"384265495","354866034","VMDGEST06.recette.adds","VMDGEST06","00:50:56:9C:CB:2C","10.45.17.136","fe80::1cd6:2766:5605:9b43","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 35 9e b6 5e f0 6c-17 d6 76 a2 27 94 68 4f","NoAssetTag","'+02:00","2026-04-16T01:06:31.000+02:00","supwindev","Cloud Agent","511010de-9b75-4cd2-8440-852d425ed9f6","2025-12-16T15:09:06.000+02:00","2026-04-22T11:50:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"131396898","193419390","vpcrmacle1","","00:50:56:82:e6:8f","10.30.10.15","fe80::addf:699e:1a72:e0d8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7953","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 40 a7 69 a1 03 2e-e4 d9 f8 26 f2 26 4a 7f","No Asset Tag","'+02:00","2025-10-08T19:36:32.000+02:00","cybreconcile","Cloud Agent","833e747b-1f77-45bc-b197-57d004f3ca4b","2022-07-13T09:47:18.000+02:00","2026-04-22T07:20:19.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cleo,OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,Communication,Production,DSI","501.0" +"269157478","299137490","SVP21059.sanef-int.adds","SVP21059","D0:AD:08:A3:7B:6F","10.5.20.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWL","","'+02:00","2026-04-04T22:25:48.000+02:00","Superviseur","Cloud Agent","0456e814-8796-41ab-bf77-19c09a94fbea","2024-09-30T15:35:21.000+02:00","2026-04-22T07:20:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"387000430","356436526","vmdtrac05.recette.adds","VMDTRAC05","00:50:56:9C:FA:60","10.45.17.7","fe80::3b35:2680:d52f:3e93","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 28 fe f5 6f 7f 08-56 c3 70 ac ac 9d cd b6","NoAssetTag","'+02:00","2026-04-16T17:37:12.000+02:00","supwindev","Cloud Agent","a5ba2923-f8a5-4866-92e2-9a99403632c3","2025-12-30T17:02:19.000+02:00","2026-04-22T07:20:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"391586124","357917326","vpburaaov2.sanef.groupe","VPBURAAOV2","00:50:56:9C:72:71, 00:50:56:82:FE:14","10.205.0.3,192.168.212.35","fe80::2d68:92e0:5fee:78ff,fe80::3c99:3958:38b:4ed6","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 02 3f 05 e0 87 0c 33-60 e8 a3 82 20 5d 77 6e","NoAssetTag","'+02:00","2026-04-15T13:42:38.000+02:00","CYBSECOPE","Cloud Agent","b4048677-779f-4d5f-8512-067be6107411","2026-01-13T11:07:36.000+02:00","2026-04-22T07:20:09.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Haute,VPN,Compte & Acces,DSI,TAG-SRVEXPOSEINTERNET,OS-WIN-SRV DYN,Cloud Agent","130.0" +"374116985","350465235","SVP22357.sanef-int.adds","SVP22357","D0:AD:08:A3:E6:D6","10.252.12.249","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YQR","","'+02:00","2026-03-31T06:41:24.000+02:00","Superviseur","Cloud Agent","f75bfea7-3e72-4dbc-aba1-599366f7606e","2025-11-04T12:52:42.000+02:00","2026-04-22T07:20:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"380802646","353390884","spbckamag6.sanef.groupe","","6c:29:d2:30:50:e0, 6c:29:d2:30:50:e1","10.42.16.102,10.43.1.40","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192294","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27160090","Unknown","'+02:00","2025-12-02T18:18:27.000+02:00","root","Cloud Agent","78e081a3-6a78-488f-b1dc-5e7d8129752e","2025-12-02T13:31:47.000+02:00","2026-04-22T07:19:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"407133596","363954296","PSX18687.sanef-int.adds","PSX18687","30:13:8B:6C:79:71","10.100.40.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473VT","","'+02:00","2026-03-22T06:45:19.000+02:00","UserSextan","Cloud Agent","47e6b0d3-1d18-42d9-89b0-0ac8d01135e7","2026-03-09T15:52:05.000+02:00","2026-04-22T07:19:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"129475229","192043144","vexploit2.sanef.groupe","VEXPLOIT2","00:50:56:82:7A:72","10.30.10.172","fe80::1116:f62b:39f9:2d87","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 d7 6c e2 b8 04 95-ed 2d 3e 13 56 95 0a 97","NoAssetTag","'+02:00","2024-04-24T09:11:35.000+02:00","SANEF.GROUPE\crabs","Cloud Agent","13d3d1b7-bae7-477e-9340-af275af8afd7","2022-06-28T14:30:56.000+02:00","2026-04-22T07:19:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DEX,BDD-POS DYN,Obsolete,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Recette,Cloud Agent,Windows Server,XFB,OS-WIN-SRV DYN","349.0" +"182754885","234343584","vrsimbffl1.sanef.groupe","","00:50:56:9c:6e:ef","10.45.6.226","fe80::d6ad:85e1:7b19:67c4","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c d9 63 53 ed d3 4b-9c 27 3c 69 1b c9 cb 68","No Asset Tag","'+02:00","2026-03-03T15:15:39.000+02:00","cybreconcile","Cloud Agent","532638c1-735f-4e04-ac5a-e43c17ea3ff8","2023-08-14T15:33:44.000+02:00","2026-04-22T07:19:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,BDD-POS DYN,FreeFlow,MID-APACHE-TOMCAT DYN,Flux Libre,Obsolete,Cloud Agent,Linux Server","337.0" +"194428822","241420225","spbocbsap1.sanef.groupe","","88:e9:a4:8a:b7:12","10.41.22.11","fe80::8ae9:a4ff:fe8a:b712","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL560 G10 Server","144","2600","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","3095575","HPE U34 07/20/2023","CZ22420F51","","'+02:00","2026-04-01T21:39:28.000+02:00","cybsupibm","Cloud Agent","e0271779-5d77-4bdc-9073-cbe2bb19fc54","2023-10-20T11:50:47.000+02:00","2026-04-22T07:19:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,Cloud Agent,Linux Server,Flux Libre,flux_libre,OS-LIN-SRV DYN","329.0" +"387157481","356516280","vmdgest03.recette.adds","VMDGEST03","00:50:56:9C:F6:01","10.45.17.133","fe80::2eb0:d6ab:1b18:6f3f","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b7 b2 e8 5e aa b6-a7 0b c3 74 7e 36 ed c0","NoAssetTag","'+02:00","2026-04-16T17:36:23.000+02:00","supwindev","Cloud Agent","fffc4177-865e-4af7-8b11-f266277575f0","2025-12-31T16:22:26.000+02:00","2026-04-22T07:19:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"131401827","193422310","lamaprac3.sanef.groupe","","00:17:A4:77:0C:C0, 00:17:A4:77:0C:C8, 00:17:A4:77:0C:CC, 00:17:A4:77:0C:C4","10.41.40.54,10.41.40.55,192.168.17.122,10.43.40.54,10.43.4.134,169.254.154.102","fe80::217:a4ff:fe77:cc0,fe80::217:a4ff:fe77:cc8,fe80::217:a4ff:fe77:ccc,fe80::217:a4ff:fe77:cc4","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DF","","'+02:00","2025-10-08T15:12:43.000+02:00","cybastapp","Cloud Agent","260df756-19aa-4bfd-9e9b-bba8265ba6e4","2022-07-13T10:11:32.000+02:00","2026-04-22T07:19:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,Sans,Trafic,log4j,VRF_TRAFIC_DC,OS-LIN-SRV DYN,Sextan,Cloud Agent,Linux Server,DEX,Obsolete","703.0" +"314914047","326673425","LAMAPGIS2.sanef.groupe","LAMAPGIS2","00:17:A4:77:0C:14","10.41.40.104","fe80::a005:622a:cd38:ad9","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19460) 64-Bit","6.3","Computers / Server","HPE ProLiant BL460c G9 Server","16","2098","Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz","98174","I36","CZ2721022X","","'+02:00","2025-11-26T13:25:57.000+02:00","LAMAPGIS2\CYBADMSYS","Cloud Agent","c1ccc081-f417-4421-9dd5-4e4a446b4c25","2025-04-09T15:44:33.000+02:00","2026-04-22T07:19:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Obsolete,Cloud Agent","349.0" +"247092697","287403898","MTO21607.sanef.groupe","MTO21607","D0:AD:08:A4:4D:B5","10.2.31.1","fe80::eb2:1bca:f6f6:37c7","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JT","","'+02:00","2026-03-18T15:51:58.000+02:00","SANEF\meteonewsW11","Cloud Agent","3cf8517c-d032-4c1a-b7c6-19f39e53c56a","2024-06-28T17:13:54.000+02:00","2026-04-22T07:19:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"318412083","328039474","PCB23723.sanef.groupe","PCB23723","6C:0B:5E:EE:93:41","10.108.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H57","","'+02:00","2026-03-29T09:26:24.000+02:00","SANEF\DEBOFFLES","Cloud Agent","cbf297c0-d551-4a39-8f39-2990d3aa1ecb","2025-04-22T14:05:28.000+02:00","2026-04-22T07:18:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"175948082","229616157","vvbotarmq1.sanef-rec.fr","","c6:2c:c8:c7:cf:e2, ea:01:16:fe:2e:56, 2e:50:3e:48:24:a9, 00:50:56:9c:08:be, d6:00:b0:b2:aa:ee, 6a:bc:93:2a:a0:60","10.45.6.136,10.89.0.1","fe80::c42c:c8ff:fec7:cfe2,fe80::e801:16ff:fefe:2e56,fe80::2c50:3eff:fe48:24a9,fe80::250:56ff:fe9c:8be,fe80::d400:b0ff:feb2:aaee,fe80::68bc:93ff:fe2a:a060","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c be db 50 60 40 57-3d 65 46 87 a6 2a 3f 7d","No Asset Tag","'+02:00","2026-03-12T15:35:02.000+02:00","kapschsysuser","Cloud Agent","5793f3aa-a2e6-4243-ab40-c6119cc9158a","2023-06-26T16:19:42.000+02:00","2026-04-22T07:18:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,FreeFlow","140.0" +"241565638","276526603","vpvsaamet1.sanef.groupe","","00:50:56:90:4e:b2","10.42.16.80","fe80::250:56ff:fe90:4eb2","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 de d6 a5 89 3e be-75 58 93 4a 7e 39 6a 34","No Asset Tag","'+02:00","2026-02-05T10:15:27.000+02:00","tbaad","Cloud Agent","6dd1dea1-6ac5-409d-9615-248e8e7e389d","2024-06-04T14:13:56.000+02:00","2026-04-22T07:18:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"309682021","324270824","vrdsiaazu2.recette.adds","VRDSIAAZU2","00:50:56:9C:E0:25","10.45.0.141","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c d1 4e cd f9 89 c0-13 07 ca 4c b5 dc 9a 92","NoAssetTag","'+02:00","2026-04-20T14:00:26.000+02:00","Administrateur","Cloud Agent","5a10fee8-5712-42f0-b35f-12d243cb605d","2025-03-20T13:19:49.000+02:00","2026-04-22T07:18:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","AD,Recette,BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent","245.0" +"331360553","","PCB17771.sanef.groupe","PCB17771","28:C5:D2:9F:C4:37","10.255.4.139","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3Y","","'+02:00","2026-04-15T07:14:29.000+02:00","Stephane.LEJEUNE@sanef.com","Cloud Agent","bb62c59a-27c1-48b2-ad70-80aab41ba0b0","2025-06-06T09:16:00.000+02:00","2026-04-22T07:17:51.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129445939","192023719","vprauareb1","VPRAUAREB1","00:50:56:82:8A:EE","192.168.90.70","","Windows / Client","Microsoft Windows 7 Enterprise (6.1 SP1 Build 7601) 64-Bit","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2294","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 01 b6 67 df 2d 83-ef e2 62 7e c6 49 94 b6","NoAssetTag","'+02:00","2025-04-22T10:08:59.000+02:00","Administrateur","Cloud Agent","4ab01ef4-b51d-46a1-a30d-de54b3577995","2022-06-28T09:58:16.000+02:00","2026-04-22T11:48:36.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Obsolete,TAG-SRVEXPOSEINDIRECT,DSI,VRF_INCONNUE,Workstation,ASUR,Production,DMZ,Sans,Exploitation","694.0" +"160254541","213434294","vpameaoct3","","00:50:56:82:9c:bf","10.41.40.132","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 83 57 fc b0 cf e3-59 10 8e e7 20 50 ae 61","No Asset Tag","'+02:00","2026-01-21T10:48:59.000+02:00","cybreconcile","Cloud Agent","bda31da6-c234-43dc-9fa5-321dbe627fa8","2023-02-22T18:11:07.000+02:00","2026-04-22T07:17:39.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,OCTAN,DEX,Cloud Agent,Linux Server","212.0" +"301230398","320881573","vrdsismtp2.sanef-rec.fr","","00:50:56:9c:4d:2c","192.168.19.53","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 96 2d 1d eb 72 8a-13 9f 35 b9 9f 94 14 39","No Asset Tag","'+02:00","2026-01-07T11:15:16.000+02:00","root","Cloud Agent","f053efb1-ac6e-474a-b24d-88e43d3362a3","2025-02-19T14:15:17.000+02:00","2026-04-22T07:17:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","141.0" +"380803972","353387551","spbckamag5.sanef.groupe","","6c:29:d2:30:72:11, 6c:29:d2:30:72:10","10.43.1.8,10.42.16.100","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192295","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3W","Unknown","'+02:00","2025-12-02T14:30:27.000+02:00","root","Cloud Agent","26a8beb3-8e97-4dc4-89fa-8ff79f76f136","2025-12-02T13:08:43.000+02:00","2026-04-22T07:17:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0" +"330772184","","PCB21290.sanef.groupe","PCB21290","64:4E:D7:49:3A:3F","10.4.31.88","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKS","","'+02:00","2026-04-17T17:28:02.000+02:00","SANEF\thiery","Cloud Agent","96d0e90c-d739-419f-8de0-41ba73aacb62","2025-06-04T14:57:57.000+02:00","2026-04-22T07:17:15.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"405934328","363432489","PCB17641.sanef.groupe","PCB17641","D0:AD:08:8A:70:76","10.12.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y4K","","'+02:00","2026-03-28T09:27:51.000+02:00","SANEF\DEJESUS","Cloud Agent","b1d85332-026f-4ba1-8c6d-c2d3557644ff","2026-03-04T09:32:44.000+02:00","2026-04-22T07:16:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"213849158","251124645","asur-rau2","","40:a8:f0:27:80:de, 40:a8:f0:27:80:dc","10.43.4.197,10.41.40.197","fe80::42a8:f0ff:fe27:80de,fe80::42a8:f0ff:fe27:80dc","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant DL380p G8 Server","24","2600","Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz","32069","HP P70 08/02/2014","CZ24422JVZ","","'+02:00","2026-04-02T09:13:29.000+02:00","cybreconcile","Cloud Agent","d6b6d4e3-911d-4923-9e06-3538ab7f4c61","2024-02-05T19:25:56.000+02:00","2026-04-22T07:16:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,Obsolete,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,MID-NGINX DYN","351.0" +"382710695","354097291","vmmvscast1.sanef-int.adds","VMMVSCAST1","00:50:56:90:25:58","10.41.7.230","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 f7 36 8f 70 ae 4d-e3 d0 25 df 74 bb 4d 76","NoAssetTag","'+02:00","2026-02-05T11:26:56.000+02:00","SANEF-INT\c01957","Cloud Agent","ef187154-d96f-4d92-9d99-660a14f43117","2025-12-09T12:45:07.000+02:00","2026-04-22T07:16:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"128150623","191086095","vpssiapki2.sanef.groupe","VPSSIAPKI2","00:50:56:82:82:23","10.30.10.236","fe80::1d0a:d757:3080:bbb6","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 74 af c9 2f 74 88-4e 26 28 05 3e 1a 8b 70","NoAssetTag","'+02:00","2026-03-16T19:07:23.000+02:00","Administrateur","Cloud Agent","f3876f68-79dc-4af8-a031-2847d845d192","2022-06-16T13:10:22.000+02:00","2026-04-22T07:16:22.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Gestion_PKI,Production,Critical,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DSI","140.0" +"131265958","193315361","vmxfb1.sanef.groupe","","00:50:56:82:33:61","10.30.11.99","fe80::250:56ff:fe82:3361","Linux / Server","Red Hat Enterprise Linux Server 6.7","6.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d9 b0 eb 79 07 7b-f1 fb 9c f1 9c 20 e0 59","No Asset Tag","'+02:00","2025-01-30T11:10:38.000+02:00","cybreconcile","Cloud Agent","7d281613-4f4d-4ab7-9a09-1e79c4661a21","2022-07-12T14:43:02.000+02:00","2026-04-22T07:16:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,VRF_INCONNUE,OS-LIN-SRV DYN,XFB,ServersInCyberark,Obsolete,DEX,log4j,Production,Exploitation IT","351.0" +"323162090","329798677","PCB22457.sanef.groupe","PCB22457","D0:AD:08:A7:28:70","10.100.39.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLG","8CC3502YLG","'+02:00","2026-04-19T20:42:16.000+02:00","SANEF\piens","Cloud Agent","9aa265f1-aad8-4b73-af58-3daee7a39867","2025-05-09T10:26:05.000+02:00","2026-04-22T07:15:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"313113952","325677727","vprauahtp2.sanef.groupe","","00:50:56:90:41:89","192.168.40.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 fa 16 f5 1c 4e 00-30 9a 01 a5 08 7e e8 67","No Asset Tag","'+02:00","2026-04-13T10:17:10.000+02:00","cybadmsys","Cloud Agent","58c6c779-9cf7-43fd-b23b-958ccaafe72c","2025-04-02T11:04:41.000+02:00","2026-04-22T07:15:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT","132.0" +"325976420","","PCB18622.sanef.groupe","PCB18622","38:CA:84:DB:E6:8B","10.4.31.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WD2","","'+02:00","2026-04-16T08:24:17.000+02:00","SANEF\lambertg","Cloud Agent","4ebf7dc8-69c7-4585-b653-b64f44f2734f","2025-05-20T15:18:11.000+02:00","2026-04-22T07:15:54.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"194260782","241335670","vppeaarcv1.sanef.groupe","","00:50:56:90:2c:dd","10.41.20.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 3e 20 cf 0e 8d d1-5c 99 97 fd e9 77 bd 6d","No Asset Tag","'+02:00","2026-04-01T12:13:26.000+02:00","cybreconcile","Cloud Agent","d0be85c3-94c9-4154-8c8b-3f6f4669d86f","2023-10-19T14:29:55.000+02:00","2026-04-22T07:15:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,flux_libre,log4j,Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN","332.0" +"180108602","232626623","vrrauaapp2.sanef-rec.fr","","00:50:56:9c:28:db","10.45.9.232","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cd c2 27 21 3b 75-d5 11 d0 ed cd 78 9f 31","No Asset Tag","'+02:00","2026-04-21T14:54:09.000+02:00","cybadmsys","Cloud Agent","3d6bb01a-4c12-418a-a7d8-e0a1a778b1b9","2023-07-26T18:25:45.000+02:00","2026-04-22T07:15:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ASUR,Cloud Agent,Linux Server,DSI","21.0" +"215187156","251711287","vipeabbst4.sanef.groupe","","00:50:56:90:9a:9d","10.41.29.55","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 63 dc 35 88 e1 90-07 2f ea a2 36 05 18 93","No Asset Tag","'+02:00","2026-03-19T11:51:00.000+02:00","cybexpapp","Cloud Agent","6c1945a9-58ae-45ed-8cad-f782421b63ad","2024-02-12T13:16:30.000+02:00","2026-04-22T07:15:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,BDD-ELA DYN,OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,Flux Libre","141.0" +"200166052","244210270","vppeabbst2.sanef.groupe","","00:50:56:90:e3:00","10.41.20.54","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 dd 2d a9 8d 51 fb-9b 8d 5b 3f 89 8f 53 66","No Asset Tag","'+02:00","2026-04-02T09:36:52.000+02:00","cybreconcile","Cloud Agent","bdbaf8c4-ec55-4b37-88ad-00412535be0b","2023-11-21T11:57:07.000+02:00","2026-04-22T07:15:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-ELA DYN,DSI,flux_libre,Production,BOOST,Flux Libre,FreeFlow","66.0" +"296411443","317746010","REX21543.sanef-int.adds","REX21543","D0:AD:08:A3:7B:6E","10.200.91.80","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWD","","'+02:00","2026-03-17T00:40:55.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","2d6ae108-3c49-41af-8465-0d55050c14a6","2025-01-30T23:22:27.000+02:00","2026-04-22T11:46:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"361002016","345136561","PCV21616.sanef-int.adds","PCV21616","D0:AD:08:A4:4D:AE","10.100.7.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711K1","","'+02:00","2026-04-22T04:50:47.000+02:00","Operateur","Cloud Agent","8773405e-37d7-41a3-9042-b9c05c3b9900","2025-09-18T19:07:23.000+02:00","2026-04-22T07:14:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"286033623","310197270","vrsvpapar2","VRSVPAPAR2","00:50:56:9C:8A:E3","10.45.9.178","fe80::a3f1:9d1a:c622:9854","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8146) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 5f b9 78 fb 7b 26-04 ad da 04 6d 31 d9 80","NoAssetTag","'+02:00","2025-12-18T17:30:57.000+02:00","gare","Cloud Agent","095f0679-416e-405d-9e98-a3993cfc75bd","2024-12-12T18:48:17.000+02:00","2026-04-22T07:14:50.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,Recette,SVP","690.0" +"243163293","280251931","SVP20957.sanef-int.adds","SVP20957","BC:0F:F3:87:6F:94","10.132.3.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LL2","","'+02:00","2026-04-20T16:49:21.000+02:00","Superviseur","Cloud Agent","870f3925-ac26-40b0-a9cf-84eb876c9d5c","2024-06-11T10:14:16.000+02:00","2026-04-22T07:14:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"400947350","361775337","vpdsiasta1","VPDSIASTA1","00:50:56:90:66:69","192.168.19.4","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","4095","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 80 2b a0 70 cc fd-6c 7b 5b 44 20 1d bb 95","NoAssetTag","'+02:00","2026-04-08T10:12:31.000+02:00","SANEF-INT\b03987","Cloud Agent","e64801c4-a8a4-4ded-b87b-e6274c5ef0d5","2026-02-17T15:51:40.000+02:00","2026-04-22T07:14:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","243.0" +"372733189","349860410","PCB23618.sanef.groupe","PCB23618","6C:0B:5E:EE:B3:28","10.207.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB1","","'+02:00","2026-04-10T10:57:05.000+02:00","SANEF\Dial","Cloud Agent","dd3c0184-3b35-486d-8c20-062aa0eb5dc5","2025-10-29T17:31:39.000+02:00","2026-04-22T07:14:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"241565659","276527066","vpvsaamet2.sanef.groupe","","00:50:56:90:52:13","10.42.16.81","fe80::250:56ff:fe90:5213","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 3d 97 76 31 7a bc-22 6e b6 c5 94 5c 3f 19","No Asset Tag","'+02:00","2026-02-05T10:59:02.000+02:00","tbaad-ext","Cloud Agent","cd01681c-7508-42e1-9f52-8ee3646ead86","2024-06-04T14:16:52.000+02:00","2026-04-22T07:14:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"130357282","192670272","vraiibsql3","VRAIIBSQL3","00:50:56:82:8D:75","10.43.253.3","fe80::d5b0:441c:7276:e932","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8146) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 3b c1 81 ea 7d f5-ab 38 fd 1d ba 37 89 57","NoAssetTag","'+02:00","2026-01-13T12:30:39.000+02:00","Administrateur","Cloud Agent","3337ece2-6c40-4d46-aaf8-e9ca065e9443","2022-07-05T17:05:44.000+02:00","2026-04-22T07:13:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,BDD,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,VRF_INCONNUE","341.0" +"379514975","352868343","vpdecasas5","","00:50:56:82:27:7a","10.30.11.153","fe80::250:56ff:fe82:277a","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257964","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 e3 ce 30 de ba 20-7b 70 48 b6 76 de 02 54","No Asset Tag","'+02:00","2026-03-25T11:06:10.000+02:00","cybreconcile","Cloud Agent","6775240f-e611-4a59-ba72-fd17c7fb99ee","2025-11-26T11:58:56.000+02:00","2026-04-22T07:13:31.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Finances Comptabilité / Consolidation,Obsolete,VRF_INCONNUE,SAS,Production,BDD-POS DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","75.0" +"193994075","241196347","vpbotbquo1.sanef.groupe","VPBOTBQUO1","00:50:56:90:A6:91","10.100.16.12","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3091) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","4095","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 10 07 ab 81 7b a1 02-93 c8 fe 06 db a0 32 6f","NoAssetTag","'+02:00","2026-04-21T15:01:40.000+02:00","SANEF\ndead","Cloud Agent","2d6e1fe8-f8d3-494e-adfc-4ba4e9b8512c","2023-10-18T10:30:03.000+02:00","2026-04-22T11:58:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,Production,FreeFlow,flux_libre,Flux Libre","347.0" +"175464776","229282250","vvbotbtsd2.sanef-rec.fr","","5e:a8:b9:89:1d:64, 5e:9f:b9:d3:c9:e3, d2:d9:d6:a9:92:32, ea:4b:26:17:43:51, 3a:2e:30:81:51:3d, 1a:bb:e1:57:5c:d6, e2:af:07:d9:5f:01, fe:45:99:76:06:e6, 52:e5:74:29:12:93, 00:50:56:9c:73:6c","10.89.0.1,10.45.6.159","fe80::5ca8:b9ff:fe89:1d64,fe80::5c9f:b9ff:fed3:c9e3,fe80::d0d9:d6ff:fea9:9232,fe80::e84b:26ff:fe17:4351,fe80::382e:30ff:fe81:513d,fe80::18bb:e1ff:fe57:5cd6,fe80::e0af:7ff:fed9:5f01,fe80::fc45:99ff:fe76:6e6,fe80::50e5:74ff:fe29:1293,fe80::250:56ff:fe9c:736c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d9 28 0c 18 45 4b-0b c7 7f 31 33 07 ce b6","No Asset Tag","'+02:00","2026-03-10T12:33:09.000+02:00","cybreconcile","Cloud Agent","d65335f6-ad53-44be-9ee9-4ba2bb568850","2023-06-22T17:14:50.000+02:00","2026-04-22T07:12:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,Recette,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server","140.0" +"246611741","287171797","MTO21050.sanef.groupe","MTO21050","D0:AD:08:A3:7B:27","10.108.31.3","fe80::a388:3cbe:808:856e","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXG","","'+02:00","2025-09-27T20:23:26.000+02:00","SANEF\meteonewsW11","Cloud Agent","a6c093c3-d32e-402f-b427-48fb3ad03ab9","2024-06-26T18:55:11.000+02:00","2026-04-22T07:12:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"131396766","193418130","vptraatpf2.sanef.groupe","","00:50:56:82:60:51","192.168.40.11","fe80::3b2c:823:f9b7:cb57","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","5966","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 70 ac 1e 4f b4 40-b2 98 b8 7a f9 2a dc 1b","No Asset Tag","'+02:00","2024-03-18T11:34:08.000+02:00","cybreconcile","Cloud Agent","93a03fe2-db2a-4bfe-b492-491600b97a67","2022-07-13T09:36:36.000+02:00","2026-04-22T07:12:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,DEX,Temps de parcours,TAG-SRVEXPOSEINDIRECT,Obsolete,Sans,Production,DMZ,Trafic,Cloud Agent,Linux Server","507.0" +"262514109","295608735","vpecmapss3.sanef.groupe","VPECMAPSS3","00:50:56:90:7E:28","10.44.5.67","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","49151","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 6e ed ab b4 83 a4-72 db 05 6f df f6 3e 2e","NoAssetTag","'+02:00","2026-01-27T10:40:57.000+02:00","SANEF\atrad","Cloud Agent","0f9a9a47-1d91-40aa-bc6c-941aabcf6ac2","2024-09-02T10:24:45.000+02:00","2026-04-22T07:11:38.000+02:00","64-Bit","3","SCA,VM,PM,GAV","SCCM,Cloud Agent,Production,OS-WIN-SRV DYN,BDD-SQL DYN","504.0" +"273591568","301915268","vppbiadgw1.sanef.groupe","VPPBIADGW1","00:50:56:9C:23:56","10.46.34.12","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 6d a5 88 d9 34 b4-e5 c4 4d 5e 2c 8a 9d 37","NoAssetTag","'+02:00","2026-03-23T15:37:43.000+02:00","Administrateur","Cloud Agent","0fa36a88-aaf2-4c23-9842-14e41b4666bf","2024-10-21T18:36:29.000+02:00","2026-04-22T07:11:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","253.0" +"129933290","192383568","LAMAPGIS1.sanef.groupe","LAMAPGIS1","00:17:A4:77:10:48","10.41.40.103","fe80::ed1d:58cb:d146:5f61","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24494)","6.1","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","98269","HP I31","CZJ41105TN","","'+02:00","2024-09-25T14:19:40.000+02:00","administrateur","Cloud Agent","2387b1ce-8b50-477a-a5c2-6f0fc86596d3","2022-07-01T09:20:50.000+02:00","2026-04-22T07:11:28.000+02:00","64 bits","3","SCA,VM,PM,GAV","Production,Patrimoine,Sans,SIG,DEX,Cloud Agent,Windows Server,VRF_TRAFIC_DC,Windows Server 2008,Obsolete,OS-WIN-SRV DYN","516.0" +"211430837","250091506","OSA20986.sanef-int.adds","OSA20986","BC:0F:F3:87:6E:35","10.100.20.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMY","","'+02:00","2026-04-18T04:01:23.000+02:00","Superviseur","Cloud Agent","6c12d161-42a2-49e2-b537-88f96961c035","2024-01-23T20:00:28.000+02:00","2026-04-22T07:11:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"244000868","283206061","MTO22455.sanef.groupe","MTO22455","D0:AD:08:A7:27:CE","10.189.31.7","fe80::8586:9586:28ff:c5d","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6649) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKV","","'+02:00","2026-03-28T15:45:19.000+02:00","SANEF\meteonewsW11","Cloud Agent","db0a70f7-ac00-48af-99b3-9f949ddab1ee","2024-06-14T11:28:00.000+02:00","2026-04-22T07:11:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"129362145","191963979","vpstqanvr1","VPSTQANVR1","00:50:56:82:04:10","10.103.7.100","fe80::d6ad:10cc:4d47:e452","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 cc f5 d8 a5 6c ac-98 45 a7 3f 8e 40 0b 42","NoAssetTag","'+02:00","2026-04-21T12:22:11.000+02:00","Administrateur","Cloud Agent","1c1ec649-d2e9-45bd-9972-e942c0915a18","2022-06-27T18:21:27.000+02:00","2026-04-22T07:11:18.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Production,Exploitation,OS-WIN-SRV DYN,Cloud Agent,Windows Server,VRF_INCONNUE,DEX,NVR","523.0" +"208784631","248750420","vibotreco4.sanef.groupe","","00:50:56:90:b2:cc","10.41.23.160","fe80::250:56ff:fe90:b2cc","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 32 96 a5 05 01 5f-00 b5 e6 43 6f 5f b5 6d","No Asset Tag","'+02:00","2026-03-18T16:17:18.000+02:00","cybsupsys","Cloud Agent","23ddfa6c-2990-4221-a9a7-32314045d24d","2024-01-10T13:28:16.000+02:00","2026-04-22T07:11:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,flux_libre,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","140.0" +"416897959","367958041","vrzbxaprx3.sanef-rec.fr","","00:50:56:9c:4a:1f","192.168.10.67","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c f7 1f b4 4e f6 eb-27 2e 03 8b 6e 28 f5 e3","No Asset Tag","'+02:00","2026-04-16T12:33:48.000+02:00","cybintsys","Cloud Agent","791c799b-ce3b-4f7d-bdb1-00bf541cf736","2026-04-17T17:04:12.000+02:00","2026-04-22T07:11:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","66.0" +"209161379","248966236","vibotreco2.sanef.groupe","","00:50:56:90:65:1c","10.41.23.140","fe80::250:56ff:fe90:651c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 79 08 4b cf 1a 7c-67 1f 09 45 c8 d8 73 70","No Asset Tag","'+02:00","2026-03-18T15:32:26.000+02:00","cybreconcile","Cloud Agent","99ca84de-06e5-4779-9e22-9176f45f96b1","2024-01-12T11:59:18.000+02:00","2026-04-22T07:11:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,Production,flux_libre","140.0" +"187710898","242960762","nvr-spare-beu","NVR-SPARE-BEU","00:50:56:82:F9:00","10.217.33.252","fe80::48e8:6230:d795:7e8","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 88 78 e1 0e 1d 1a-a2 1d de 15 e7 e6 ad ba","NoAssetTag","'+02:00","2026-02-03T11:51:43.000+02:00","Administrateur","Cloud Agent","e0362cd2-9080-46f7-8d39-374914806cb9","2023-09-13T18:51:25.000+02:00","2026-04-22T07:10:58.000+02:00","64-Bit","3","SCA,VM,GAV","DEX,NVR,OS-WIN-SRV DYN,Cloud Agent","509.0" +"157732257","210514185","vppintanfs1.sanef.groupe","","02:42:0d:37:c7:29, 00:50:56:82:0f:d4","172.17.0.1,192.168.20.22","fe80::42:dff:fe37:c729,fe80::250:56ff:fe82:fd4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 91 99 cb 93 9a a9-48 f3 bf a9 34 a8 5e c8","No Asset Tag","'+02:00","2026-02-23T15:27:34.000+02:00","cybreconcile","Cloud Agent","61bbad5a-2fa0-48b1-b600-e63a7c9bf3ec","2023-02-02T12:53:49.000+02:00","2026-04-22T07:10:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,OS-LIN-SRV DYN,Recette,Gestion institutionnel,Cloud Agent,Linux Server","142.0" +"359746010","","PCB24345.sanef.groupe","PCB24345","10:B6:76:7E:4E:7C","10.100.39.99","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYJ","","'+02:00","2026-04-17T07:24:56.000+02:00","SANEF\NIRO","Cloud Agent","831e2223-5ff3-4377-95c8-9c52ec96a49e","2025-09-15T12:15:02.000+02:00","2026-04-22T07:10:21.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","0.0" +"203201197","245720142","viboobquo2.sanef.groupe","","00:50:56:90:f4:81","10.100.16.14","fe80::250:56ff:fe90:f481","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 a8 8a 3d af c5 cc-3a 3b 81 2e a2 5c 0f db","No Asset Tag","'+02:00","2026-03-16T11:44:22.000+02:00","cybadmsys","Cloud Agent","d893a18b-379e-49de-adc6-d85c776904e0","2023-12-08T12:15:23.000+02:00","2026-04-22T07:10:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0" +"191423864","239727601","viboomocr1.sanef.groupe","","00:50:56:90:d3:5a","10.41.22.203","fe80::250:56ff:fe90:d35a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 7d 5b 72 12 b8 c6-18 ac dd ec 2d c2 b1 c6","No Asset Tag","'+02:00","2026-03-17T16:15:16.000+02:00","cyblecemo","Cloud Agent","9d3db0fc-f9c5-4e35-8a6b-b4b13710c954","2023-10-04T17:55:58.000+02:00","2026-04-22T07:10:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,flux_libre,Flux Libre","337.0" +"290942898","313729071","SVP22865.sanef-int.adds","SVP22865","D0:AD:08:A7:28:11","10.11.2.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK8","","'+02:00","2026-04-08T17:11:50.000+02:00","Superviseur","Cloud Agent","966041be-505b-43fc-ab4e-fbdc12374a5f","2025-01-08T16:08:50.000+02:00","2026-04-22T07:10:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"130431262","192723852","BLY-BLY2-VES2","BLY-BLY2-VES2","00:05:B7:E9:84:B1","10.92.10.234,192.168.15.15","","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19156) 64-Bit","6.3","Industrial Control System (ICS) / Industrial PC","ARBOR FPC 7800 Series Industrial PC","8","2300","Intel(R) Core(TM) i7-4770TE CPU @ 2.30GHz","8091","American Megatrends Inc. 4.6.5","To be filled by O.E.M.","ToBeFilledByO.E.M.","'+02:00","2025-09-01T08:39:43.000+02:00","Administrator","Cloud Agent","4f21517d-cab8-4bcd-96dc-a968075738a2","2022-07-06T09:38:17.000+02:00","2026-04-22T07:10:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Obsolete,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,Windows Server,BDD-SQL DYN","348.0" +"398936502","360913698","PSX18701.sanef-int.adds","PSX18701","30:13:8B:6C:5D:F2","10.200.40.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473W9","","'+02:00","2026-02-19T12:30:44.000+02:00","UserSextan","Cloud Agent","316c0c55-77d6-4e6c-8de5-4ea99382be16","2026-02-10T02:31:50.000+02:00","2026-04-22T07:10:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"219208217","253333827","viosapels2.sanef.groupe","","00:50:56:90:96:f3","10.41.29.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 15 3c 6e 04 1f 18-1f 0a f3 e4 57 bf 49 45","No Asset Tag","'+02:00","2026-02-19T11:42:45.000+02:00","cybadmroot","Cloud Agent","e3694e2f-bbb9-4630-9788-06ccef9c608b","2024-02-29T19:22:51.000+02:00","2026-04-22T07:09:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Recette,Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","141.0" +"241566273","276527283","vpvsaamez1.sanef.groupe","","00:50:56:90:1e:44","192.168.18.73","fe80::250:56ff:fe90:1e44","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e4 4a 7a 68 7b 7e-8c 84 de d8 8b f9 e7 e1","No Asset Tag","'+02:00","2026-02-05T11:22:41.000+02:00","tbaad","Cloud Agent","ef3dbfbc-766c-4bf2-95ae-668a0f6c47c9","2024-06-04T14:19:12.000+02:00","2026-04-22T07:09:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"129355604","191959297","vpbmtanvr1","VPBMTANVR1","00:50:56:82:43:E5","10.117.3.11","fe80::1130:1b36:8af6:bbd1","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 d0 c5 93 0d f6 a3-ff 43 4f 93 00 f9 bb ec","NoAssetTag","'+02:00","2026-02-19T14:19:56.000+02:00","Administrateur","Cloud Agent","679172d2-18d1-4b0e-9f7d-a58e9662235d","2022-06-27T17:44:15.000+02:00","2026-04-22T07:09:38.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Production,Exploitation,DEX,NVR","508.0" +"321519323","329069838","PCB22304.sanef.groupe","PCB22304","D0:AD:08:A3:7D:E4","10.207.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYX","8CC3502YYX","'+02:00","2026-04-07T13:02:06.000+02:00","SANEF\pacholek","Cloud Agent","42f4be65-9c0f-4d21-a1eb-f3be9f5a6846","2025-05-02T09:35:53.000+02:00","2026-04-22T07:09:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"324381157","330223954","PCB22287.sanef.groupe","PCB22287","D0:AD:08:A3:7D:03","10.209.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ6","8CC3502YZ6","'+02:00","2026-03-29T09:12:07.000+02:00","SANEF\crouinl","Cloud Agent","90ed8259-9548-4c62-b079-33ececc51399","2025-05-13T13:42:24.000+02:00","2026-04-22T07:09:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"231533958","259283849","lpemvaste5","","00:17:a4:77:1c:08, 00:17:a4:77:1c:0c","192.168.101.112,192.168.102.112","fe80::217:a4ff:fe77:1c08,fe80::217:a4ff:fe77:1c0c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000701","","'+02:00","2025-08-20T02:51:24.000+02:00","root","Cloud Agent","014648fd-0bf3-42fa-a645-5c26d7f077ef","2024-04-22T11:32:18.000+02:00","2026-04-22T07:09:15.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,Production,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Cloud Agent,OS-LIN-SRV DYN","678.0" +"198005759","243187616","vdaflbsta1.recette.adds","VDAFLBSTA1","00:50:56:9C:4C:89","10.45.7.164","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4297) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 49 99 8d a5 ea ea-bb 96 49 e7 8b 89 d9 8a","NoAssetTag","'+02:00","2026-03-11T10:31:22.000+02:00","Administrateur","Cloud Agent","a278b840-23a8-42e2-9abe-87e3d8f3c351","2023-11-08T11:32:41.000+02:00","2026-04-22T07:09:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","flux_libre,OS-WIN-SRV DYN,Cloud Agent,Windows Server,FreeFlow,Flux Libre,Recette,BDD-SQL DYN","348.0" +"377179264","351926030","vpresardp1.sanef-int.adds","VPRESARDP1","00:50:56:94:5D:D2","10.44.7.67","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 14 a0 d0 c7 4f 5b 98-49 a1 e1 83 67 b1 54 f4","NoAssetTag","'+02:00","2025-10-10T15:44:48.000+02:00","b03987@sanef-int","Cloud Agent","f67d66a1-1e34-4d84-9b3a-4264abdcde1d","2025-11-17T13:48:14.000+02:00","2026-04-22T07:09:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","346.0" +"270777465","300112434","SVP21052.sanef-int.adds","SVP21052","D0:AD:08:A3:7B:66","10.132.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWS","","'+02:00","2026-04-22T04:37:55.000+02:00","Superviseur","Cloud Agent","d4209073-dfa1-4486-b184-b233324f73de","2024-10-08T09:25:01.000+02:00","2026-04-22T07:09:07.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","686.0" +"219788187","253596727","ls-cottevrard","LS-COTTEVRARD","00:50:56:90:13:E8","10.212.36.200","fe80::1a1b:20ee:da7d:52b4","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 17 6b 4d 14 c9 9e-3c a5 4c ba 88 89 dd 48","NoAssetTag","'+02:00","2026-03-05T12:50:54.000+02:00","svpadmin","Cloud Agent","155c74e7-5689-4a61-9c03-1423b1f89267","2024-03-04T11:18:12.000+02:00","2026-04-22T10:34:03.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Production,Péage,High,VRF_PEAGE_DC,Cloud Agent,OS-WIN-SRV DYN,DEX","682.0" +"317717545","327756761","PCB23763.sanef.groupe","PCB23763","6C:0B:5E:EE:93:21","10.108.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4P","","'+02:00","2026-04-16T17:20:20.000+02:00","SANEF\DOUX","Cloud Agent","196dd023-745f-4d82-b390-40d3d4444301","2025-04-18T15:27:35.000+02:00","2026-04-22T10:29:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"153092401","207356921","vmsym2","VMSYM2","00:50:56:82:17:CD","10.30.11.239","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.7678) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 fe be 02 90 e4 d7-43 d1 a7 56 0b a3 48 6e","NoAssetTag","'+02:00","2025-09-08T18:48:55.000+02:00","Administrateur","Cloud Agent","8962f957-28e4-45a5-8329-418c9d85a703","2022-12-23T11:27:16.000+02:00","2026-04-22T07:08:56.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DSI,Symantec,BDD-SQL DYN,Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_INCONNUE","515.0" +"324950264","330450813","vpstlbpea1.sanef-int.adds","VPSTLBPEA1","00:50:56:90:C9:E6","10.41.13.50","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3453) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 3d d7 1c 72 6f f7-56 b7 35 e5 af ae b8 e2","NoAssetTag","'+02:00","2026-04-13T16:51:07.000+02:00","user_stl","Cloud Agent","b7d51aec-0b1a-4a0f-9605-b09945ee6436","2025-05-15T09:31:23.000+02:00","2026-04-22T07:08:41.000+02:00","64-Bit","2","SCA,VM,GAV","BDD-SQL DYN,Cloud Agent,OS-WIN-SRV DYN,Systel,Production","346.0" +"372503675","349750686","PBM22779.sanef-int.adds","PBM22779","D0:AD:08:A3:E6:B9","10.12.50.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YQ9","","'+02:00","2026-03-29T04:13:28.000+02:00","Operateur","Cloud Agent","bbf7e016-9be6-4688-b894-0b32ab66e5cd","2025-10-28T19:20:21.000+02:00","2026-04-22T07:08:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"376109812","351381035","PCB16043.sanef.groupe","PCB16043","48:9E:BD:4B:90:33","10.200.31.87","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129285R","8CC129285R","'+02:00","2026-04-15T11:04:55.000+02:00","SANEF\claude","Cloud Agent","b706afb4-755c-4382-ba84-8a670493b8f5","2025-11-12T13:37:35.000+02:00","2026-04-22T07:08:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"321589866","329093148","PCB22910.sanef.groupe","PCB22910","D0:AD:08:A3:7B:76","10.189.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVB","8CC3502YVB","'+02:00","2026-04-02T11:01:53.000+02:00","SANEF\hulin","Cloud Agent","20368981-b472-4621-9073-cf7a772c8e3e","2025-05-02T14:38:06.000+02:00","2026-04-22T07:08:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"269390447","299253250","vpa14agtc2","VPA14AGTC2","00:50:56:90:8A:A3","10.41.19.71","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 c3 ed d6 17 cd f4-bc 3b ea 22 3a 0b b5 eb","NoAssetTag","'+02:00","2026-03-23T11:39:10.000+02:00","admin_gtc","Cloud Agent","fb04f4b2-240a-4650-8555-0b8a87c0c5d6","2024-10-01T15:52:50.000+02:00","2026-04-22T07:07:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,BDD-SQL DYN,Cloud Agent","331.0" +"368447117","348146986","vppixbams1.sanef-int.adds","VPPIXBAMS1","00:50:56:90:02:B3","10.41.17.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 59 95 a7 80 7f 0b-08 b2 2f aa 97 58 86 4b","NoAssetTag","'+02:00","2026-02-11T11:06:17.000+02:00","b03987@sanef-int","IP Scanner, Cloud Agent","1c94a960-16a0-419e-8694-c70b39884d4a","2025-10-14T17:06:45.000+02:00","2026-04-22T11:37:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN","344.0" +"191420278","239726172","viboobsql1.sanef.groupe","","00:50:56:90:79:13","10.41.22.197","fe80::9f87:73a9:8141:a671","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 89 87 08 56 5a e2-02 2d 98 dd e9 78 ce 8b","No Asset Tag","'+02:00","2026-03-16T13:14:11.000+02:00","cyblecemo","Cloud Agent","0e78b35e-587f-488d-8b42-686603abadce","2023-10-04T17:40:04.000+02:00","2026-04-22T07:07:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-SQL,FreeFlow,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production,OS-LIN-SRV DYN","144.0" +"129315697","191934841","VPAIIAADA1.sanef.groupe","VPAIIAADA1","00:50:56:82:8F:F2","10.30.10.117","fe80::2de8:386f:e0f9:5df7","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8330) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 de 0b e9 c3 d1 e4-40 0b 0c 97 0c 09 92 93","NoAssetTag","'+02:00","2026-03-30T15:17:24.000+02:00","SANEF\administrateur","Cloud Agent","636a87ba-a7dd-4ca2-93bf-681415c3b6da","2022-06-27T12:09:15.000+02:00","2026-04-22T07:07:25.000+02:00","64-Bit","3","SCA,VM,PM,GAV","AD,Cloud Agent,Windows Server,VRF_INCONNUE,OS-WIN-SRV DYN,Basse,Low,Production,Outils prod (Monitoring, NMS, gestion de parc),DSI","525.0" +"194981569","241652368","vpbotbsql2.sanef.groupe","VPBOTBSQL2","00:50:56:90:DB:15, 02:08:1F:74:FB:FF","10.41.23.13,10.41.23.32,10.41.23.33,169.254.2.138","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 df 5e 55 3a ef 57-ed 1f e3 e0 0e 20 be df","NoAssetTag","'+02:00","2026-04-21T15:18:50.000+02:00","SANEF\ndead","Cloud Agent","349f9956-e63d-41ea-b15b-abf18f329aa4","2023-10-23T17:35:12.000+02:00","2026-04-22T07:07:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,BDD-SQL DYN,OS-WIN-SRV DYN,flux_libre,Production,Cloud Agent,Windows Server,Flux Libre","254.0" +"137349499","197588902","vppeabbst1.sanef.groupe","","00:50:56:82:cb:ed","10.41.20.36","fe80::5562:9fe3:1d4d:cbca","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","15884","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d f3 6e 44 26 a7 73-1c 5c 78 45 08 5a 03 16","No Asset Tag","'+02:00","2024-09-03T10:18:40.000+02:00","cybreconcile","Cloud Agent","e215704d-750e-43fb-9a9e-7e5ce428f036","2022-08-30T17:13:50.000+02:00","2026-04-22T07:07:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,Obsolete,BDD-ELA DYN,Production,VRF_PEAGE_DC,ServersInCyberark,BOOST","244.0" +"240373008","274660851","vibocsman1","","00:50:56:90:15:cf","10.41.22.75","fe80::250:56ff:fe90:15cf","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f1 89 97 41 48 21-f3 72 04 fd 52 84 b9 88","No Asset Tag","'+02:00","2026-03-16T16:13:35.000+02:00","cybreconcile","Cloud Agent","ef118b75-4ec2-4641-a292-762f6378d872","2024-05-30T10:26:21.000+02:00","2026-04-22T07:06:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,FreeFlow,Cloud Agent,Linux Server","141.0" +"131405746","193424771","vmntp1.sanef.groupe","","00:50:56:90:BC:8A","10.100.1.200","fe80::250:56ff:fe90:bc8a","Linux / Server","The CentOS Project CentOS 6.4","6.4","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","1878","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 6c 9a 6e 8a 5b 6d-a4 a0 de 2f 17 2b cf d1","No Asset Tag","'+02:00","2025-09-02T17:07:41.000+02:00","cybreconcile","Cloud Agent","fd737359-f1d2-4382-bb84-211d4f5a1fe5","2022-07-13T10:35:52.000+02:00","2026-04-22T07:06:50.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Cloud Agent,Linux Server,VRF_INCONNUE,NTP,Obsolete,Production","519.0" +"225989696","256338842","vpvidavsc1.sanef.groupe","VPVIDAVSC1","00:50:56:90:21:D4","10.41.7.200","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 10 2f e3 87 06 d8 cd-a9 92 f7 0f 2e b3 32 4c","NoAssetTag","'+02:00","2026-02-04T16:28:48.000+02:00","SANEF\alaad","Cloud Agent","baed660e-e3af-4a7a-a2d6-8aba001dfd34","2024-03-28T14:21:03.000+02:00","2026-04-22T11:15:53.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN","513.0" +"236561622","265298550","vpaptbjup1","","00:50:56:9c:ba:e7","10.46.34.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","128398","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 20 80 48 3d 56 28-9e 03 4c 62 49 be ba 76","No Asset Tag","'+02:00","2026-03-23T15:14:43.000+02:00","cybreconcile","Cloud Agent","0da83727-852c-4ba7-9ca2-7bb222238ab0","2024-05-14T15:06:56.000+02:00","2026-04-22T07:06:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,Production,Cloud Agent,Linux Server","141.0" +"236301381","264488386","lpemvaste4","","00:17:a4:77:1c:04, 00:17:a4:77:1c:00","192.168.102.111,192.168.101.111","fe80::217:a4ff:fe77:1c04,fe80::217:a4ff:fe77:1c00","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000700","","'+02:00","2025-08-20T02:47:02.000+02:00","root","Cloud Agent","6f46b509-d7ed-40b4-a333-76facfeb3d9c","2024-05-13T14:57:35.000+02:00","2026-04-22T07:06:25.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17,Production,EMV,PCI Bunker EMV","480.0" +"364168702","346469321","PBM21558.sanef-int.adds","PBM21558","D0:AD:08:A3:E5:E4","10.152.50.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YP0","","'+02:00","2026-04-07T20:53:52.000+02:00","Operateur","Cloud Agent","11ca5c73-ee3a-4f60-ad90-1fcfc019e900","2025-09-30T11:26:13.000+02:00","2026-04-22T07:06:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","350.0" +"130584077","192833340","node2","","00:50:56:82:d1:ae, 66:2d:bf:44:a6:8b","10.45.2.57,10.233.75.0","fe80::250:56ff:fe82:d1ae,fe80::642d:bfff:fe44:a68b","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 b4 9a 31 df 57 07-ae c3 e8 88 b2 b1 e0 ad","No Asset Tag","'+02:00","2025-02-26T17:07:09.000+02:00","zhou","Cloud Agent","929b11d7-0ff3-45ef-880d-69c40d5ab4e5","2022-07-07T11:36:33.000+02:00","2026-04-22T07:06:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE","342.0" +"152278525","206871781","vppeaaadm1.sanef-int.adds","VPPEAAADM1","00:50:56:82:A5:49","10.44.6.36","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2594","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","8191","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 37 ae fa 0e a0 e3-a3 1a e3 87 60 9d bf f7","NoAssetTag","'+02:00","2026-02-26T15:01:57.000+02:00","Damon","Cloud Agent","289264ac-c5c8-4242-b34f-cfec4fb1da23","2022-12-16T18:44:17.000+02:00","2026-04-22T07:06:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Péage,SVP,DEX,Cloud Agent,Windows Server,VRF_INCONNUE","511.0" +"376341349","351487830","vptrabmut2.sanef.groupe","","52:54:00:6a:93:4d, 52:54:00:1b:c4:f4, 52:54:00:45:c3:aa","192.168.17.6,10.41.40.220,10.41.40.222,10.41.40.224,10.41.40.225,192.168.17.133","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-13T11:23:36.000+02:00","cybsecope","Cloud Agent","8d8d9b64-fad1-4bb3-90a7-e7c5c44d3906","2025-11-13T12:06:57.000+02:00","2026-04-22T07:06:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,Linux Server,Cloud Agent,Production,ORACLE","339.0" +"181231705","233373906","vpvidavsc2.sanef.groupe","VPVIDAVSC2","00:50:56:90:55:1B","10.41.7.201","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 10 c7 9c fb ae db b7-b9 49 ed 57 73 90 9d df","NoAssetTag","'+02:00","2026-02-04T16:11:11.000+02:00","MOUTAOUAKIL","Cloud Agent","783fa1b2-26d6-42b0-8111-c84e49a36cb9","2023-08-03T11:28:00.000+02:00","2026-04-22T07:05:49.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,NVR,DEX","521.0" +"387190533","356516695","vmdpeag01.recette.adds","VMDPEAG01","00:50:56:9C:8A:BD","10.45.17.195","fe80::78fa:4563:a9ee:4aa5","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 4a c0 c8 6b 0f-08 c0 df 90 9b a0 49 b4","NoAssetTag","'+02:00","2026-04-16T03:06:20.000+02:00","supwindev","Cloud Agent","4674f6c3-74d1-4d20-a3c2-706192329ee7","2025-12-31T16:32:11.000+02:00","2026-04-22T07:05:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"200010195","244159182","vppeabbst4.sanef.groupe","","00:50:56:90:92:2c","10.41.20.53","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 d3 e2 57 3a 45 24-23 d3 3d c3 ab f0 2d 99","No Asset Tag","'+02:00","2026-04-02T10:12:32.000+02:00","cybreconcile","Cloud Agent","6cd17fdf-4e6c-4bea-b0af-db962a018d9c","2023-11-20T18:30:27.000+02:00","2026-04-22T07:05:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,FreeFlow,flux_libre,DSI,BOOST,Production","66.0" +"321564790","329076843","PCB21534.sanef.groupe","PCB21534","D0:AD:08:A3:7B:52","10.12.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRQ","8CC3502YRQ","'+02:00","2026-03-29T09:17:11.000+02:00","SANEF\kiefferj","Cloud Agent","1458b165-7130-45b9-b2f8-decabf1ae5f4","2025-05-02T11:21:43.000+02:00","2026-04-22T07:05:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"221337261","254246773","ls-arras","LS-ARRAS","00:50:56:90:69:93","10.41.2.33","fe80::b4b4:c473:ee76:4bf0","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 56 24 49 6b b2 3b-e1 a1 2c e5 9a 5f 75 db","NoAssetTag","'+02:00","2026-04-02T09:02:00.000+02:00","svpadmin","Cloud Agent","9fed265c-5735-49ee-95b3-6c12f3a2ed67","2024-03-11T11:29:52.000+02:00","2026-04-22T07:05:26.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN,High,VRF_PEAGE_DC,Haute,Péage,Production","633.0" +"241566442","276527835","vpvsaarez2","","00:50:56:9c:e0:a6","192.168.18.77","fe80::250:56ff:fe9c:e0a6","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c e4 9a ea a7 d9 db-82 71 0e dd c5 2b 48 3f","No Asset Tag","'+02:00","2026-02-05T13:34:19.000+02:00","tbaad-ext","Cloud Agent","43b76ec3-cf8f-48ab-8427-779ef5952a76","2024-06-04T14:27:35.000+02:00","2026-04-22T07:05:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"382535369","354020836","vrdsiascr1.sanef-rec.fr","","00:50:56:9c:8b:d9","192.168.31.3","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c ab be 26 df 26 0e-f6 ee 9d ca 08 fa 4f b6","No Asset Tag","'+02:00","2026-03-17T18:26:38.000+02:00","cybintsys","Cloud Agent","f4715e59-7fcd-4568-9c9c-4e14851a31a1","2025-12-08T18:43:40.000+02:00","2026-04-22T07:05:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Recette,NextCloud,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","145.0" +"129450949","192026712","vpburafax2.sanef.groupe","VPBURAFAX2","00:50:56:82:F5:A2","10.41.60.151","fe80::2125:ad2a:d2fe:674f","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 56 78 07 1d 1d 5e-f5 e6 68 8a 18 24 d6 68","NoAssetTag","'+02:00","2026-02-25T10:47:46.000+02:00","Administrateur","Cloud Agent","a0567f52-c40b-4200-8faa-7277103d5843","2022-06-28T10:44:59.000+02:00","2026-04-22T07:05:01.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_TPH_DC,OS-WIN-SRV DYN,MID-APACHE-TOMCAT DYN,DSI,XMedius,Production,Windows Server,Cloud Agent","511.0" +"139158140","198270706","asur-rau1","","40:a8:f0:27:a9:f4, 40:a8:f0:27:a9:f6","10.41.40.195,10.41.40.196,10.43.4.196","fe80::42a8:f0ff:fe27:a9f4,fe80::42a8:f0ff:fe27:a9f6","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant DL380p G8 Server","24","2600","Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz","32069","HP P70 05/24/2019","CZ2D1A03DL","","'+02:00","2026-04-02T09:20:01.000+02:00","cybastsys","Cloud Agent","9e18ea3e-abcd-46a2-b81b-6a1bed7f4ca7","2022-09-07T14:38:03.000+02:00","2026-04-22T07:04:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,log4j,Obsolete,VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","350.0" +"195005946","241667389","vpdaibana7","VPDAIBANA7","00:50:56:90:15:04","10.41.70.26","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 ee 65 47 c9 84 5b-d1 6c d5 82 6e 5e 30 2b","NoAssetTag","'+02:00","2026-04-20T11:33:59.000+02:00","ecoad-ext","Cloud Agent","6f26f12d-7099-455a-af44-ee9c62411caa","2023-10-23T21:06:57.000+02:00","2026-04-22T07:04:49.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,DAI","358.0" +"236487392","265102782","ls-la-veuve-reims","LS-LA-VEUVE-REI","00:50:56:90:70:71","10.41.2.71","fe80::ade0:bfa1:f:8a79","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 d0 cc 2a 2b c0 42-fe ef 9a a4 d4 c4 45 1d","NoAssetTag","'+02:00","2026-03-04T16:20:17.000+02:00","svpadmin","Cloud Agent","225601f3-655c-4c8d-96db-3bb1248ac8dc","2024-05-14T10:03:53.000+02:00","2026-04-22T07:04:46.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_PEAGE_DC,High,Production,SVP,Péage","508.0" +"129308228","191928332","vmpgmao7.sanef.groupe","VMPGMAO7","00:50:56:82:30:8E","10.41.40.176","","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.18993) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 c6 fa 39 e3 a9 e4-ca 48 2a 77 ad a8 70 45","NoAssetTag","'+02:00","2025-03-04T12:32:07.000+02:00","VMPGMAO7\CYBADMSYS","Cloud Agent","8312b01c-98c1-47f3-b85c-1df6bed5c992","2022-06-27T10:49:53.000+02:00","2026-04-22T07:04:39.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,VRF_TRAFIC_DC,COSWIN,Production,Exploitation,Obsolete,Cloud Agent,Windows Server","523.0" +"396145815","359780877","PCB25929.sanef.groupe","PCB25929","4C:CF:7C:0A:3C:3D","10.4.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222Y","","'+02:00","2026-04-17T15:46:08.000+02:00","SANEF\herault","Cloud Agent","9d042b07-6c15-442a-af86-daa018f1bf1d","2026-01-30T17:40:14.000+02:00","2026-04-22T07:04:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","242.0" +"318425666","328043648","vrameakfk2.sanef-rec.fr","","00:50:56:9c:a5:17","10.45.2.41","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c8 7e 4b fb 71 b1-0c 8d e5 80 63 d2 e3 19","No Asset Tag","'+02:00","2026-04-20T09:28:21.000+02:00","cybsupapp","Cloud Agent","dbd56bd1-f707-4d45-81e5-8ac18665e209","2025-04-22T14:50:03.000+02:00","2026-04-22T07:04:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Amelie","48.0" +"376096355","351375505","PCB18263.sanef.groupe","PCB18263","C8:CB:9E:80:03:31","10.255.4.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y8S","8CC2250Y8S","'+02:00","2026-04-16T09:24:53.000+02:00","SANEF\garciar","Cloud Agent","74d65e47-978f-43ab-b4ae-8aa878deae87","2025-11-12T12:32:26.000+02:00","2026-04-22T07:04:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"229191355","257963095","vvbocarep1.sanef-rec.fr","","00:50:56:9c:fb:45","10.45.6.13","fe80::250:56ff:fe9c:fb45","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c dd a5 63 3c 60 79-e1 14 79 d3 63 26 30 34","No Asset Tag","'+02:00","2026-03-11T15:24:54.000+02:00","cybsupsys","Cloud Agent","87dfc34b-5199-4079-81b3-d53eed892e4d","2024-04-11T10:29:55.000+02:00","2026-04-22T07:04:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0" +"139158077","198270619","vmampstg1","","00:50:56:82:1D:1F, 00:50:56:82:31:55, 00:50:56:82:20:3D","10.41.40.45,10.41.40.49,10.43.40.45,10.43.40.49,10.43.4.45","fe80::250:56ff:fe82:1d1f,fe80::250:56ff:fe82:3155,fe80::250:56ff:fe82:203d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 68 9f 2a 20 3f 69-09 5c 0a fb 5d 99 6c 23","No Asset Tag","'+02:00","2024-02-13T14:07:51.000+02:00","cybreconcile","Cloud Agent","9f42509a-bdc6-4442-92af-24d7c02bff27","2022-09-07T14:32:19.000+02:00","2026-04-22T07:04:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Trafic,Cloud Agent,Linux Server,log4j,Obsolete,DEX,VRF_TRAFIC_DC,OS-LIN-SRV DYN,SSTG,Production","698.0" +"130583160","192832674","vmcmdb1","","00:50:56:82:2a:23","10.30.11.107","fe80::250:56ff:fe82:2a23","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d bb 7b 8a eb f9 ef-52 af 84 7c 73 cb d1 b5","No Asset Tag","'+02:00","2025-10-09T11:34:20.000+02:00","cybastsys","Cloud Agent","adf31e08-00b0-40ec-b4b7-0c02de37e963","2022-07-07T11:25:27.000+02:00","2026-04-22T07:04:08.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,Bases de Données,VRF_INCONNUE,Recette,Production,Péage,BDD-POS DYN,ITOP,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,Obsolete","682.0" +"193239279","240746200","vpbocsman1.sanef.groupe","","00:50:56:90:75:83","10.41.22.12","fe80::250:56ff:fe90:7583","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 84 b1 8b 62 45 c3-fd 8e 0f 6e bf d0 38 36","No Asset Tag","'+02:00","2026-04-01T22:07:00.000+02:00","cybreconcile","Cloud Agent","f3962cdd-3357-4b22-9c0b-a019e669a722","2023-10-13T15:25:07.000+02:00","2026-04-22T07:04:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","140.0" +"241566316","276527664","vpvsaamez2","","00:50:56:90:1a:be","192.168.18.74","fe80::250:56ff:fe90:1abe","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 7f 0e 93 96 35 ca-ce 63 bd 18 94 c8 3d c9","No Asset Tag","'+02:00","2026-02-05T12:16:52.000+02:00","tbaad-ext","Cloud Agent","9694f565-91c5-47a8-8306-bab0c8309f12","2024-06-04T14:24:06.000+02:00","2026-04-22T07:03:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"178993124","231838279","vpsasawrk5.sanef.groupe","","00:50:56:82:88:17","10.41.32.14","fe80::250:56ff:fe82:8817","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d0 ae 00 c5 2f c4-44 7e 95 ec 2f ba 28 d3","No Asset Tag","'+02:00","2026-03-25T16:09:16.000+02:00","cybreconcile","Cloud Agent","4550baae-9ce1-4137-a685-0e12f058c7dd","2023-07-18T16:09:08.000+02:00","2026-04-22T07:03:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,SAS,DSI,Cloud Agent,Linux Server","86.0" +"373865559","350360793","PSX18700.sanef-int.adds","PSX18700","30:13:8B:6C:79:2E","10.12.40.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473W2","","'+02:00","2026-03-01T08:32:36.000+02:00","UserSextan","Cloud Agent","a0b55e91-d98c-4441-98a0-4cc6f58e476a","2025-11-03T16:12:13.000+02:00","2026-04-22T07:03:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"317723208","327745804","PCB23580.sanef.groupe","PCB23580","6C:0B:5E:EE:EC:D4","10.100.39.188","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L59","","'+02:00","2026-03-29T09:28:56.000+02:00","SANEF\CENSIER","Cloud Agent","3c665a80-0f82-4ba1-be79-5baa639d2aa2","2025-04-18T13:22:22.000+02:00","2026-04-22T07:03:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"175568112","229347672","vvbotrssc2.sanef-rec.fr","","00:50:56:9c:67:a2","10.45.6.164","fe80::250:56ff:fe9c:67a2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 4e 3a 51 02 96 38-5e 0b 6a c4 19 45 b9 ec","No Asset Tag","'+02:00","2026-03-10T15:25:00.000+02:00","cybreconcile","Cloud Agent","81ec73f5-fd15-4e74-9273-5176ea4ea726","2023-06-23T11:47:55.000+02:00","2026-04-22T07:03:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,flux_libre,FreeFlow,Recette,Cloud Agent,Linux Server,Flux Libre","139.0" +"244050629","283240145","MTO21622.sanef.groupe","MTO21622","D0:AD:08:A4:4D:C3","10.8.31.1","fe80::c155:c4ff:f337:13b2","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6491) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JL","","'+02:00","2026-02-14T19:08:05.000+02:00","SANEF\meteonewsW11","Cloud Agent","c7ffa75b-9818-456a-9342-472b5a8a8382","2024-06-14T16:57:13.000+02:00","2026-04-22T07:03:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"364314681","346490181","PCV21502.sanef-int.adds","PCV21502","D0:AD:08:A7:27:AF","10.210.57.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YT9","","'+02:00","2026-04-13T18:41:37.000+02:00","Operateur","Cloud Agent","75c9c37d-6d26-4f1f-9e90-6994d327cfa5","2025-09-30T15:00:22.000+02:00","2026-04-22T07:03:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"406249126","363563892","PCV18675.sanef-int.adds","PCV18675","30:13:8B:6C:5D:63","10.12.7.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473WJ","","'+02:00","2026-03-05T12:40:58.000+02:00","Operateur","Cloud Agent","ee0b21a7-a72a-43f6-a689-5896a9fcf445","2026-03-05T12:24:04.000+02:00","2026-04-22T07:03:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"128166041","191099477","vpemvaxsr1","VPEMVAXSR1","00:50:56:98:3F:95, 00:50:56:98:49:68","192.168.105.1,192.168.100.131","fe80::3ce0:1669:302e:298f,fe80::bc77:4783:e18c:f733","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2397","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","4096","Phoenix Technologies LTD 6.00","VMware-42 18 5c 11 67 a7 10 45-75 57 85 56 76 72 eb 45","NoAssetTag","'+02:00","2025-03-05T13:26:49.000+02:00","mboad-ext","Cloud Agent","5a399e4f-825c-4818-bdf2-7cd3617f281c","2022-06-16T16:15:42.000+02:00","2026-04-22T11:47:27.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,Windows Server,OS-WIN-SRV DYN,DEX,Exploitation IT,Production,DMZ,Sans,PCI Bunker Echange,PCI Bunker EMV - VLAN Echange,Obsolete,Cloud Agent,EMV","685.0" +"202758101","245521798","vposapast1.sanef.groupe","","00:50:56:90:f1:c2","10.41.8.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 80 94 9a 23 33 77-48 f4 53 be 39 dc 0f d4","No Asset Tag","'+02:00","2026-03-04T07:52:35.000+02:00","cybreconcile","Cloud Agent","69ba10f2-4559-4503-8388-2dbdb6cec2b7","2023-12-06T13:31:42.000+02:00","2026-04-22T07:03:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,Production,OS-LIN-SRV DYN,DEX","144.0" +"381946188","353743070","PCB22350.sanef.groupe","PCB22350","D0:AD:08:A3:E5:E2","10.252.42.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNZ","8CC3502YNZ","'+02:00","2026-03-28T09:11:53.000+02:00","SANEF\rousselmu","Cloud Agent","9d66fd57-7912-475c-8bc6-94f63e575b6a","2025-12-05T16:59:42.000+02:00","2026-04-22T07:02:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"195994447","242028806","MTR-32DSNT3","MTR-32DSNT3","90:8D:6E:93:CB:8E","10.207.32.201","","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","32DSNT3","","'+02:00","2026-04-22T02:32:58.000+02:00","Skype","Cloud Agent","327dfbd7-fe92-45b5-9b95-e011fd060104","2023-10-27T12:24:55.000+02:00","2026-04-22T07:02:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"382151069","353841267","PCB22319.sanef.groupe","PCB22319","D0:AD:08:A3:7C:FB","10.252.42.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZG","8CC3502YZG","'+02:00","2026-04-09T10:19:59.000+02:00","SANEF\parisot","Cloud Agent","90a1e691-a1b6-483d-aecc-2e1cd0d6cb9c","2025-12-06T19:52:45.000+02:00","2026-04-22T07:02:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"368987646","348261354","MTR-7BD4804","MTR-7BD4804","6C:3C:8C:50:F0:EF","10.101.246.210","fe80::70d:620d:adec:315","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","7BD4804","","'+02:00","2026-04-22T02:33:21.000+02:00","Skype","Cloud Agent","5727d6c2-0d3f-4750-a43f-b2572dae179c","2025-10-15T16:13:30.000+02:00","2026-04-22T07:02:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"186849609","237041101","MTR-DQ3J8Y3","MTR-DQ3J8Y3","6C:3C:8C:3D:60:F3","10.107.32.200","fe80::b706:b71d:3541:bdc1","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","DQ3J8Y3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","173da76f-2f2e-46bb-ae9b-60d69a3ca7a1","2023-09-08T10:46:34.000+02:00","2026-04-22T07:02:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"205538618","246928536","vvaflbdwh1.recette.adds","VVAFLBDWH1","00:50:56:9C:11:28","10.45.7.167","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 1b f8 7e 54 56 e6-08 74 31 45 2c 4f 70 fc","NoAssetTag","'+02:00","2026-03-11T12:20:09.000+02:00","Administrateur","Cloud Agent","57bbf48e-e712-40dc-84da-6bc9dc8879a7","2023-12-21T12:52:37.000+02:00","2026-04-22T07:02:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Windows Server,BDD-SQL DYN,Flux Libre,OS-WIN-SRV DYN,Recette,flux_libre","252.0" +"320132436","328622307","PCB22446.sanef.groupe","PCB22446","D0:AD:08:A3:7B:CD","10.103.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW1","8CC3502YW1","'+02:00","2026-03-28T09:17:25.000+02:00","SANEF\rozette","Cloud Agent","e7e3b105-e378-46ef-b2e3-f69356670791","2025-04-28T13:56:02.000+02:00","2026-04-22T07:01:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"131262350","193313521","lampcrm1.serveur.est.sanef.fr","","00:17:A4:77:00:80","10.30.11.166","fe80::217:a4ff:fe77:80","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","8","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","12007","","VCX0000008","","'+02:00","2025-06-02T16:18:54.000+02:00","cybastapp","Cloud Agent","90e2ebad-e312-4974-a72f-79ae0f79cd43","2022-07-12T14:10:55.000+02:00","2026-04-22T07:01:43.000+02:00","x86_64","3","SCA,VM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,DSI,BDD-POS DYN,OS-LIN-SRV DYN,Cleo,Gestion commerciale,Sans,Production,Obsolete,ServersInCyberark","529.0" +"143625000","201025858","vpemvapol1","","00:50:56:82:cc:27","192.168.100.210","fe80::7499:cfde:6820:8896","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8f 36 0c f7 b9 4a-0b aa ab e7 ee 3e 4a 85","No Asset Tag","'+02:00","2025-10-28T17:58:14.000+02:00","root","Cloud Agent","f6a9bf03-3765-4870-80bf-04b49ce5ec59","2022-10-11T17:37:37.000+02:00","2026-04-22T07:01:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,PCI Bunker EMV,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,Obsolete,Centreon,VRF_INCONNUE,Cloud Agent,Linux Server","111.0" +"178994738","231838047","vpsasawrk4.sanef.groupe","","00:50:56:82:d5:bf","10.41.32.13","fe80::250:56ff:fe82:d5bf","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 95 27 ed 8e ec 68-0c 24 ee 91 71 e2 3f b6","No Asset Tag","'+02:00","2026-03-25T16:08:05.000+02:00","cybreconcile","Cloud Agent","28f3b331-7b56-4aea-b1d4-e48b98b4adc9","2023-07-18T16:05:20.000+02:00","2026-04-22T07:01:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,SAS,BDD-POS DYN,DSI","86.0" +"284373652","309489720","vtdsibquo1.sanef-rec.fr","","00:50:56:90:09:64","10.100.16.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 05 33 07 18 a6 ad-c2 24 36 1e e1 7a 34 fb","No Asset Tag","'+02:00","2026-01-20T12:44:52.000+02:00","cybadmbdd","Cloud Agent","d4c09689-9864-43d4-b09d-9148a5925d7c","2024-12-05T13:22:39.000+02:00","2026-04-22T07:01:20.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,PATRIMOINE,Cloud Agent,Linux Server","140.0" +"320931309","328815154","PCB23656.sanef.groupe","PCB23656","6C:0B:5E:EE:EC:DA","10.11.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L60","","'+02:00","2026-03-31T16:52:36.000+02:00","SANEF\niesp","Cloud Agent","40de764a-3161-4773-9ea9-d1a3ff03659d","2025-04-30T11:03:36.000+02:00","2026-04-22T07:01:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","253.0" +"287085773","310946513","MTR-8KRTL64","MTR-8KRTL64","D0:46:0C:95:2E:21","10.4.32.201","fe80::1d2e:e23a:bff3:feef","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","8KRTL64","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","78e501bc-18cb-424b-a298-d3478879e758","2024-12-17T10:33:35.000+02:00","2026-04-22T07:01:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"376175090","351403906","PCB18239.sanef.groupe","PCB18239","5C:60:BA:59:EC:F1","10.200.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.13.00","8CC2250Y89","","'+02:00","2026-03-28T09:17:11.000+02:00","SANEF\laine","Cloud Agent","51feab7e-635b-4aff-af65-e3ee0554ec61","2025-11-12T17:22:26.000+02:00","2026-04-22T07:00:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"284079753","308169839","MTR-FBD4804","MTR-FBD4804","6C:3C:8C:56:88:6A","10.100.32.207","fe80::55fe:3ba4:c5b9:b305","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","FBD4804","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","fbbbce9c-e9e0-4a86-84bc-d1254effa070","2024-12-04T11:24:27.000+02:00","2026-04-22T07:00:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"272386986","300986699","MTR-HBD4804","MTR-HBD4804","6C:3C:8C:56:88:74","10.103.32.200","fe80::279a:fff4:c8a9:36b7","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","HBD4804","","'+02:00","2026-04-22T02:32:56.000+02:00","Skype","Cloud Agent","be744b66-20c5-417f-b35b-928d1cd15db8","2024-10-15T16:42:53.000+02:00","2026-04-22T07:00:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"284198268","308308012","MTR-DKRTL64","MTR-DKRTL64","D0:46:0C:95:30:3A","10.100.32.213","fe80::fb4:8784:e2ba:d5d","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","DKRTL64","","'+02:00","2026-04-22T02:32:55.000+02:00","Skype","Cloud Agent","060b9fbb-dee2-48ed-95e8-6ae758c07756","2024-12-04T19:58:13.000+02:00","2026-04-22T07:00:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"177126092","230500288","MTR-8Q3J8Y3","MTR-8Q3J8Y3","6C:3C:8C:3D:5F:07","10.200.32.209","fe80::c9bc:6965:4834:73b8","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","8Q3J8Y3","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","140c4897-8fdf-42c6-8025-cf6354c784d9","2023-07-04T22:06:41.000+02:00","2026-04-22T07:00:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"129338920","191947131","vptraazen1.sanef.groupe","VPTRAAZEN1","00:50:56:82:0D:39","10.41.60.41","fe80::adca:2c88:5332:220a","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 6d c3 c4 66 f6 24-77 8b fd 74 1f 9b 53 2c","NoAssetTag","'+02:00","2026-02-12T15:54:32.000+02:00","SANEF.GROUPE\bmiad-ext@sanef.com","Cloud Agent","f3754639-d6bc-4a60-b4d7-b56473ce5a87","2022-06-27T14:39:23.000+02:00","2026-04-22T11:53:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,Outils transverses,Enregistrement_COM,VRF_BURO,OS-WIN-SRV DYN,BDD-SQL DYN,Cloud Agent,Windows Server,DEX","257.0" +"311188894","330493462","vrgawbpgs1.sanef-rec.fr","","00:50:56:9c:b2:e3","10.45.14.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c ae a7 c0 1e 76 3a-38 ea 0f 5e 63 b6 75 fe","No Asset Tag","'+02:00","2026-02-11T13:00:58.000+02:00","cybintsys","Cloud Agent","fe8d93a6-f708-4b08-a027-2195526d9300","2025-03-26T18:31:22.000+02:00","2026-04-22T07:00:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-POS DYN,Plateforme d'échange","58.0" +"217858385","252774031","vpemvatse1.sanef.groupe","VPEMVATSE1","00:50:56:82:3E:99","192.168.100.122","fe80::7577:a9ee:bae1:1676","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 3e 77 2a d4 02 52-f8 e3 00 88 5b 0f 25 ad","NoAssetTag","'+02:00","2025-10-14T10:38:56.000+02:00","VPEMVATSE1\herault","Cloud Agent","6ffc3179-054c-41d5-a750-37bcc17320f7","2024-02-23T17:13:33.000+02:00","2026-04-22T10:54:13.000+02:00","64-Bit","4","SCA,VM,PM,GAV","EMV,PCI Bunker EMV - VLAN Supervision/Admin,DEX,Cloud Agent,Windows Server,BDD-SQL DYN,OS-WIN-SRV DYN","701.0" +"331206420","","PCB17791.sanef.groupe","PCB17791","28:C5:D2:9F:C3:92","10.100.39.101,169.254.148.234","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3Z","","'+02:00","2026-04-21T10:06:15.000+02:00","SANEF\garciac","Cloud Agent","e012121c-a043-4233-a70c-c403052be66d","2025-06-05T17:11:06.000+02:00","2026-04-22T07:00:24.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"389765378","357529954","PCB18261.sanef.groupe","PCB18261","5C:60:BA:59:EC:E0","10.200.30.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y8J","8CC2250Y8J","'+02:00","2026-03-29T09:16:49.000+02:00","SANEF\TAMBOURAS","Cloud Agent","046dff83-2963-44aa-977d-574c419dbfb6","2026-01-09T09:23:04.000+02:00","2026-04-22T10:25:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"129948367","192392980","vpaiiapkg1","VPAIIAPKG1","00:50:56:82:6B:D8","10.30.6.6","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 98 e8 02 14 78 64-ca cd f4 2a ef d8 83 4f","NoAssetTag","'+02:00","2026-04-16T17:09:11.000+02:00","Package","Cloud Agent","35405daa-502d-47f9-97bb-7829728fb289","2022-07-01T11:57:28.000+02:00","2026-04-22T11:40:03.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,Basse,Package,Workstation,DSI,BDD-SQL DYN,Low,Production,Outils prod (Monitoring, NMS, gestion de parc)","507.0" +"377186426","351928819","PCB18243.sanef.groupe","PCB18243","5C:60:BA:59:EC:E8","10.200.30.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.13.00","8CC2250Y8N","8CC2250Y8N","'+02:00","2026-03-28T09:16:20.000+02:00","SANEF\mediouni-ext","Cloud Agent","2803eb78-81d4-45d9-b9b3-ff62c8243e4d","2025-11-17T13:54:59.000+02:00","2026-04-22T06:59:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"400930315","361764103","PCV20888.sanef-int.adds","PCV20888","30:13:8B:6C:5F:16","10.100.7.68","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q83","","'+02:00","2026-02-17T13:23:10.000+02:00","Operateur","Cloud Agent","38e71312-d2e6-49d7-bbc0-db0d923caba2","2026-02-17T13:45:07.000+02:00","2026-04-22T06:59:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320117638","328623084","PCB23566.sanef.groupe","PCB23566","6C:0B:5E:EC:DD:9D","10.89.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9G","","'+02:00","2026-04-02T15:55:43.000+02:00","SANEF\DELAUNAY","Cloud Agent","7a8c9e41-58f5-4bea-893a-58c1016416d0","2025-04-28T14:08:17.000+02:00","2026-04-22T06:59:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"295840239","317389833","vpngwasia2","","00:50:56:94:df:a9","10.44.2.197","fe80::250:56ff:fe94:dfa9","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 c8 60 db c0 ee 4d-d2 e5 84 bb d1 d0 4a 54","No Asset Tag","'+02:00","2026-02-02T16:48:11.000+02:00","tbaad","Cloud Agent","519cf2ee-5556-4e62-841b-af4a5a3c3ce7","2025-01-29T11:45:08.000+02:00","2026-04-22T06:59:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server","53.0" +"231598452","259378239","vpsecbcadg2.sanef.groupe","VPSECBCADG2","00:50:56:82:32:BE","10.41.50.11","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-56 4d 0a 8b be 70 3f 66-7d cf 57 3e ba 4a b2 3c","NoAssetTag","'+02:00","2026-04-15T11:50:40.000+02:00","Administrateur","Cloud Agent","766a4505-13d7-496d-8467-265ae6d5983c","2024-04-22T16:44:41.000+02:00","2026-04-22T10:32:44.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Nedap,Cloud Agent,Windows Server,DEX","497.0" +"127973464","190998241","vpaiiacam2","VPAIIACAM2","00:50:56:82:24:12","192.168.200.18","fe80::1191:6116:3ffd:cdeb","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-56 4d 31 60 00 4f ed 2a-6d f5 9b 71 12 ed 40 fc","NoAssetTag","'+02:00","2026-04-21T23:59:15.000+02:00","Administrateur","Cloud Agent","10eb67bf-eb4c-49b7-b5f9-4c0319a9f9c5","2022-06-15T13:56:21.000+02:00","2026-04-22T06:58:55.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Exploitation,DMZ,Production,Sans,VRF_INCONNUE,DEX,OS-WIN-SRV DYN,Windows Server,Autoroutes trafic,TAG-SRVEXPOSEINDIRECT,Cloud Agent","0.0" +"131405535","193423432","vastapp1.sanef.groupe","","00:50:56:82:05:81","10.30.10.28","fe80::250:56ff:fe82:581","Linux / Server","The CentOS Project CentOS 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3833","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 ec 06 40 2b 24 69-07 b2 4f 24 dc ce 7d 43","No Asset Tag","'+02:00","2024-11-28T11:18:16.000+02:00","cybreconcile","Cloud Agent","eff2945f-584a-4870-ae6d-a4dec2ede75a","2022-07-13T10:25:15.000+02:00","2026-04-22T06:58:52.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,Obsolete,Moyenne,ServersInCyberark,Péage,Production,Medium,VRF_INCONNUE,BDD-POS DYN,DEX,ADV-U","699.0" +"340054184","336780133","vppwdbsql1.sanef.groupe","","00:50:56:94:99:8b","10.44.1.204","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 79 99 86 b3 83 7e-33 8d a0 75 1f 7d 24 97","No Asset Tag","'+02:00","2026-01-12T11:15:14.000+02:00","cybadmbdd","Cloud Agent","528c381a-7196-4ce4-b292-3e8e87eae124","2025-07-08T10:17:27.000+02:00","2026-04-22T06:58:36.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","332.0" +"318396680","328031335","PCB21178.sanef.groupe","PCB21178","D0:AD:08:E4:B1:EE","10.155.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVW","","'+02:00","2026-04-20T12:56:36.000+02:00","SANEF\boutillier","Cloud Agent","2cb33b4e-d775-498a-a575-d82eb891f033","2025-04-22T12:29:26.000+02:00","2026-04-22T06:58:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"156227469","209333499","vpagtatse1.sanef.groupe","VPAGTATSE1","00:50:56:82:0D:81","10.46.33.23","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","65535","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 36 84 43 f0 7c 4e-2f 06 b1 c9 9e 8e f4 e3","NoAssetTag","'+02:00","2026-04-22T03:01:59.000+02:00","Administrateur","Cloud Agent","994dbe9e-3b7a-48f4-9231-9236d4859204","2023-01-20T15:26:25.000+02:00","2026-04-22T06:58:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","AgileTime,VRF_BURO_DC,DRH,OS-WIN-SRV DYN,Cloud Agent,Windows Server","249.0" +"376415237","351518008","vpcybapsp1.sanef.groupe","","00:50:56:9c:6c:8d","10.44.1.74","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f9 be bd f5 ad b8-ce 39 02 93 63 8c d7 98","No Asset Tag","'+02:00","2026-03-23T10:04:47.000+02:00","cybsecope","Cloud Agent","1c8a2d4b-a8c2-4153-921f-733552d74b8c","2025-11-13T17:20:19.000+02:00","2026-04-22T06:58:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,Production,CyberArk","152.0" +"208784339","248752685","vibotatst1.sanef.groupe","","00:50:56:90:f4:29","10.41.23.147","fe80::250:56ff:fe90:f429","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 37 5b 95 76 60 67-c1 9b 21 e0 40 c7 d9 ac","No Asset Tag","'+02:00","2026-03-18T10:48:36.000+02:00","cybreconcile","Cloud Agent","663f1a10-8f92-4ba0-9ce1-64a95e276b54","2024-01-10T13:46:44.000+02:00","2026-04-22T06:57:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,FreeFlow,Flux Libre,Cloud Agent,Linux Server,flux_libre","140.0" +"175946491","229615309","vvbotcach1.sanef-rec.fr","","ca:d9:7b:7f:b4:62, 00:50:56:9c:bd:e0, 2e:96:62:6f:39:9b, ae:af:ba:79:bd:b1, 16:cb:70:08:47:44, ba:bf:e5:0c:37:9e, e2:9c:39:9f:87:eb, ee:ff:c5:a2:32:80, e2:95:66:e1:cd:79","10.89.0.1,10.45.6.134","fe80::c8d9:7bff:fe7f:b462,fe80::250:56ff:fe9c:bde0,fe80::2c96:62ff:fe6f:399b,fe80::acaf:baff:fe79:bdb1,fe80::14cb:70ff:fe08:4744,fe80::b8bf:e5ff:fe0c:379e,fe80::e09c:39ff:fe9f:87eb,fe80::ecff:c5ff:fea2:3280,fe80::e095:66ff:fee1:cd79","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 06 eb b3 4e 4f 09-7c db 21 c2 f7 68 06 55","No Asset Tag","'+02:00","2026-03-23T17:32:51.000+02:00","kapschsysuser","Cloud Agent","c4c636e9-9e2e-4e12-8ce8-070f2ee3cca3","2023-06-26T16:09:59.000+02:00","2026-04-22T06:57:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,Recette,Cloud Agent,Linux Server,flux_libre,FreeFlow","140.0" +"363271952","346043088","vpdataapp1.sanef.groupe","","00:50:56:90:82:b9","10.41.40.145","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 dd ff 41 d8 ef 31-e1 05 cd e9 41 2e a3 c1","No Asset Tag","'+02:00","2026-01-27T15:00:44.000+02:00","cybadmroot","Cloud Agent","823fbea8-e9dc-41fc-a34f-34fe775d6ace","2025-09-26T14:21:14.000+02:00","2026-04-22T06:57:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","138.0" +"212784022","250654143","rsminas1.sanef.groupe","","AC:16:2D:BE:79:B8","10.30.10.244","fe80::ae16:2dff:febe:79b8","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant DL180 G6 Server","4","2130","Intel(R) Xeon(R) CPU E5606 @ 2.13GHz","7990","HP O20 05/01/2012","CZJ2380H9F","","'+02:00","2025-02-24T15:29:36.000+02:00","cybreconcile","Cloud Agent","eb25f56d-085a-4297-9e74-3537e0c10174","2024-01-30T20:29:34.000+02:00","2026-04-22T06:57:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,log4j,Package,DSI,Obsolete","346.0" +"387006557","356431219","vmdispt01.recette.adds","VMDISPT01","00:50:56:9C:0E:C4","10.45.17.62","fe80::df23:e686:6263:7b6a","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c fe 01 30 47 e8 cb-ee 3a 02 b5 b3 2d 95 49","NoAssetTag","'+02:00","2026-04-17T17:19:05.000+02:00","supwindev","Cloud Agent","fd1e6693-11ec-4570-96d3-eea298f6fb8c","2025-12-30T16:06:02.000+02:00","2026-04-22T06:57:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","240.0" +"178987974","231834396","vpsasawrk2.sanef.groupe","","00:50:56:9c:3c:7e","10.41.32.11","fe80::250:56ff:fe9c:3c7e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 44 cd f4 1c 05 f6-ec 5a 77 9f 48 d7 bd ee","No Asset Tag","'+02:00","2026-03-25T16:05:19.000+02:00","cybreconcile","Cloud Agent","282d4b3d-dc63-4714-9802-de796af6d28c","2023-07-18T15:24:52.000+02:00","2026-04-22T06:57:17.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,SAS,BDD-POS DYN,OS-LIN-SRV DYN,DSI","86.0" +"131270155","193318578","lpsimbpfe1.sanef.groupe","","00:17:a4:77:08:0c","10.30.11.35","fe80::dbd2:64a5:3f9a:488","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","15915","HP I36 07/18/2022","CZ255301Y3","","'+02:00","2024-09-26T09:49:06.000+02:00","root","Cloud Agent","6974b918-ea34-4b17-ba9e-1844c04cfc61","2022-07-12T15:22:29.000+02:00","2026-04-22T06:57:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Obsolete,Plateforme d'échange,log4j,Cloud Agent,Linux Server,Production,Exploitation IT,OS-LIN-SRV DYN,VRF_INCONNUE,DEX","342.0" +"131406886","193425562","vpexpaxfb1.sanef.groupe","","00:50:56:82:8e:9f","10.42.16.10","fe80::96d1:3f1f:8fd7:b2b5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d cf d5 53 cd b9 ff-af 5a 56 80 d5 e4 c7 ad","No Asset Tag","'+02:00","2026-02-12T11:28:39.000+02:00","cybreconcile","Cloud Agent","c75eb41c-4217-4836-8eb9-0fb55afb2d1f","2022-07-13T10:46:25.000+02:00","2026-04-22T06:57:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","DEX,Production,Cloud Agent,Linux Server,VRF_ECHANGE_DC,XFB,OS-LIN-SRV DYN","145.0" +"397128337","360217248","PCB16099.sanef.groupe","PCB16099","F4:4E:E3:BF:6B:43","10.255.3.180","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129285N","8CC129285N","'+02:00","2026-03-29T09:15:04.000+02:00","SANEF\cardinale","Cloud Agent","b85cb608-86fc-45d7-8802-70d40c56000b","2026-02-03T12:15:23.000+02:00","2026-04-22T06:56:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"416050086","367717577","vrzbxaapp2.sanef-rec.fr","","00:50:56:9c:8f:39","10.45.15.197","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 4b 1a 2e c5 4c c9-04 c2 fa 36 29 42 10 c4","No Asset Tag","'+02:00","2026-04-15T16:50:37.000+02:00","root","Cloud Agent","f1b1bdb2-aba9-42c3-b024-668c319824e6","2026-04-15T15:19:46.000+02:00","2026-04-22T06:56:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"407993958","364306731","splogbels1","","40:5b:7f:e1:b0:8d","10.44.7.41","fe80::425b:7fff:fee1:b08d","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G11 Server","32","","INTEL(R) XEON(R) SILVER 4514Y","31586","HPE 2.50 04/22/2025","CZ2D3C0G32","","'+02:00","2026-04-17T15:24:14.000+02:00","reboot","Cloud Agent","6babbc6b-af04-4507-a5a5-1cca7d385c4d","2026-03-12T14:43:01.000+02:00","2026-04-22T06:56:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN,Elasticsearch,Production","152.0" +"225100522","255962387","ls-st-avold-a","LS-ST-AVOLD-A","00:50:56:90:8F:D6","10.112.2.20","fe80::9d25:d076:1c48:ae1b","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 43 af 06 f1 23 d6-f8 72 d7 2a 52 2d 5b c9","NoAssetTag","'+02:00","2026-03-03T15:17:18.000+02:00","svpadmin","Cloud Agent","5cb2883d-751c-4274-a983-f35c1380925f","2024-03-25T12:35:36.000+02:00","2026-04-22T06:56:14.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,DEX,Péage,OS-WIN-SRV DYN,Haute,High,Production,Cloud Agent,Windows Server","851.0" +"348196101","339535211","PCB22451.sanef.groupe","PCB22451","D0:AD:08:A3:E6:D3","10.108.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPY","8CC3502YPY","'+02:00","2026-03-31T08:31:56.000+02:00","SANEF\BURY","Cloud Agent","576a12e8-bb26-41bc-8891-d4eb9fd30705","2025-08-01T15:09:23.000+02:00","2026-04-22T06:56:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"364973468","346716832","PCV22452.sanef-int.adds","PCV22452","D0:AD:08:A3:7B:DB","10.100.7.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YVP","","'+02:00","2025-12-29T05:57:11.000+02:00","Operateur","Cloud Agent","c9217d93-5c52-4cdd-9fb6-911d84a1094a","2025-10-02T14:25:36.000+02:00","2026-04-22T06:56:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"131142756","193232215","vmcmdb","","00:50:56:82:89:58","10.30.11.126","fe80::250:56ff:fe82:8958","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-5c 9a 02 42 e2 29 78 a4-73 39 00 04 68 fe dd 76","No Asset Tag","'+02:00","2024-12-18T15:24:38.000+02:00","cybreconcile","Cloud Agent","215653c1-a242-4eee-bac0-657357541f10","2022-07-11T16:24:04.000+02:00","2026-04-22T06:56:03.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,Trafic,Recette,ITOP,Obsolete,VRF_INCONNUE","675.0" +"322364793","329433891","PCB22774.sanef.groupe","PCB22774","D0:AD:08:A7:28:66","10.149.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLZ","8CC3502YLZ","'+02:00","2026-04-21T15:55:16.000+02:00","SANEF\lemoinec","Cloud Agent","f1fc3f85-b645-414c-b98a-5b2a51ec6a2a","2025-05-06T11:44:19.000+02:00","2026-04-22T06:55:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"295975028","317392823","vpvsaasia1","","00:50:56:94:26:36","10.44.2.200","fe80::250:56ff:fe94:2636","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 55 2f f1 7e 8f d8-37 f0 26 6d e1 12 63 8a","No Asset Tag","'+02:00","2026-02-02T16:43:43.000+02:00","tbaad","Cloud Agent","75796606-f2a5-4510-9e2a-8d1ba5778e54","2025-01-29T12:11:48.000+02:00","2026-04-22T06:55:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0" +"162039853","215781556","vpsasacpt1.sanef.groupe","","00:50:56:82:03:5b","10.41.32.7","fe80::250:56ff:fe82:35b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","386444","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 20 dd 1b 99 33 df-70 0d f5 60 7c a9 e0 e3","No Asset Tag","'+02:00","2026-03-25T16:00:22.000+02:00","cybreconcile","Cloud Agent","fe65813a-d961-484f-b252-9ee5d6cb7734","2023-03-08T15:38:55.000+02:00","2026-04-22T06:55:51.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,SAS,Cloud Agent,Linux Server,DSI","93.0" +"334628432","334246205","PCB24109.sanef.groupe","PCB24109","48:EA:62:CB:DE:35","10.1.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6Q","","'+02:00","2026-03-31T17:11:07.000+02:00","SANEF\BRAWACKI","Cloud Agent","49dbaa80-a95c-4f84-90f9-d5fd32409ff5","2025-06-19T09:42:36.000+02:00","2026-04-22T11:26:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"279169222","304712472","vrtrabtpc1","VRTRABTPC1","00:50:56:82:07:34","10.43.255.10","fe80::1b9:52a5:36f:b6b8","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24575","Phoenix Technologies LTD 6.00","VMware-42 02 0a 53 8b 11 ca f3-ab 38 cb 19 fc 74 13 fc","NoAssetTag","'+02:00","2026-04-07T14:55:07.000+02:00","Administrateur","Cloud Agent","f11905f7-081c-41fe-91a3-41ec9b430f76","2024-11-14T15:39:30.000+02:00","2026-04-22T06:55:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent","250.0" +"363905873","346376318","PCB21599.sanef.groupe","PCB21599","D0:AD:08:A4:4D:A7","10.12.31.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711KD","8CC34711KD","'+02:00","2026-04-21T12:56:32.000+02:00","SANEF\patte","Cloud Agent","840c16e1-f236-42ff-b4ae-6e307bf105ed","2025-09-29T15:09:02.000+02:00","2026-04-22T06:55:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"373882203","350368043","PCB17077.sanef.groupe","PCB17077","E0:70:EA:A8:75:92","10.100.39.61","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","3096","Intel(R) Core(TM) i5-10500 CPU @ 3.10GHz","16159","HP S21 Ver. 02.23.00","8CC14326DH","8CC14326DH","'+02:00","2026-04-13T10:27:33.000+02:00","SANEF\FEUILLETTE","Cloud Agent","f0f8a465-98e9-4232-9069-86ab6d94dfc5","2025-11-03T17:37:28.000+02:00","2026-04-22T11:59:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"131405762","193424770","vmquorum1.sanef.groupe","","00:50:56:82:5D:D3","10.102.2.11","fe80::250:56ff:fe82:5dd3","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 0c c5 ed f0 97 2d-b4 cb f2 2e 27 19 ea 19","No Asset Tag","'+02:00","2025-01-22T12:14:26.000+02:00","cybreconcile","Cloud Agent","f4622346-fe46-4098-8fd1-0d9bd920de6f","2022-07-13T10:36:59.000+02:00","2026-04-22T06:55:41.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,DEX,Obsolete,Production,Sextan","700.0" +"322639738","329610123","PCB22824.sanef.groupe","PCB22824","D0:AD:08:A7:28:27","10.219.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJN","8CC3502YJN","'+02:00","2026-03-29T09:12:33.000+02:00","SANEF\crouinn","Cloud Agent","59d32092-8cda-455c-8669-9b1f71d1bb66","2025-05-07T16:46:16.000+02:00","2026-04-22T06:55:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"358779414","344245999","vrcybapta1","","00:50:56:9c:fa:b5","10.45.11.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11700","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c8 c0 6e 1c 85 f3-ac 52 3a dd e2 8f f8 01","No Asset Tag","'+02:00","2026-04-16T10:48:49.000+02:00","cybreconcile","Cloud Agent","bbf8ae39-41ed-49c7-a126-946a2741aecd","2025-09-11T09:26:33.000+02:00","2026-04-22T06:55:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN,CyberArk,Recette","336.0" +"213850551","251129618","sppeaanvr4","SPPEAANVR4","94:40:C9:ED:9B:F8","10.41.7.103","fe80::1937:8dd8:17e:1af7","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","8","3791","Intel(R) Xeon(R) Gold 5222 CPU @ 3.80GHz","16041","HPE U30","CZ20040900","","'+02:00","2026-01-28T15:17:10.000+02:00","Administrateur","Cloud Agent","4045c426-3ba7-42b6-90d4-849f8483090c","2024-02-05T20:36:53.000+02:00","2026-04-22T06:55:06.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN,DEX","523.0" +"139375864","198361633","spasuagsm4","","b4:7a:f1:b3:e7:09, b4:7a:f1:b3:e7:08","10.43.4.212,10.41.40.212","fe80::b67a:f1ff:feb3:e709,fe80::b67a:f1ff:feb3:e708","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/14/2022","CZJ81900F2","","'+02:00","2025-10-08T16:09:42.000+02:00","cybreconcile","Cloud Agent","239632ad-773e-46c7-81cb-452e6531aa02","2022-09-08T15:34:56.000+02:00","2026-04-22T06:54:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","Production,Exploitation,VRF_INCONNUE,DSI,BDD-POS DYN,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server,ASUR","524.0" +"356385720","343287450","PCB24173.sanef.groupe","PCB24173","24:FB:E3:F3:BA:76","10.100.39.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG52136XB","","'+02:00","2026-03-29T09:15:08.000+02:00","SANEF\BORCELLE","Cloud Agent","4097cb8d-8a29-4a78-b57e-772e855dd0b2","2025-09-02T17:46:41.000+02:00","2026-04-22T06:54:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"267915555","298667066","VPA14CGTC1","VPA14CGTC1","00:50:56:90:94:A2","10.41.19.75","fe80::68bf:526c:f778:246c","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6783) 64-Bit","23H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 26 ef 75 9b 7c d4-35 a8 e4 4c 10 05 bd 76","NoAssetTag","'+02:00","2026-03-23T15:22:28.000+02:00","gtc-client","Cloud Agent","ea6202e2-6252-483b-9466-60b610ae2a01","2024-09-26T11:37:21.000+02:00","2026-04-22T06:54:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","340.0" +"356380927","343284977","PCB21594.sanef.groupe","PCB21594","D0:AD:08:A3:E7:23","10.100.39.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXX","8CC3502YXX","'+02:00","2026-03-28T09:12:02.000+02:00","SANEF\PSI","Cloud Agent","24c32ff1-20dd-42e7-9712-0c87a35489eb","2025-09-02T17:19:24.000+02:00","2026-04-22T06:54:31.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Cloud Agent,Workstation","670.0" +"369277894","348354786","vrdsiaito1.sanef-rec.fr","","00:50:56:9c:0b:ac","10.45.15.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 14 09 8f cb c0 b4-4c 0f fc c5 0c e4 3b 21","No Asset Tag","'+02:00","2026-04-10T10:01:22.000+02:00","cybsupapp","Cloud Agent","ad2c0f09-1ecd-4312-8a4c-0c7d53077036","2025-10-16T11:55:50.000+02:00","2026-04-22T06:54:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","139.0" +"204318593","246305044","vpaiiagml1","VPAIIAGML1","00:50:56:82:78:70","192.168.190.199","fe80::406c:3b3a:c35d:743b","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 83 cf a2 5c 6a b6-47 2a 89 24 2d 9f ab c4","NoAssetTag","'+02:00","2026-04-20T09:46:13.000+02:00","Administrateur","Cloud Agent","b3bcbf3c-5160-4c36-bf19-e45e2eaa76ae","2023-12-14T15:57:52.000+02:00","2026-04-22T06:54:21.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DSI,Cloud Agent,Windows Server,GEMALTO,TAG-SRVEXPOSEINTERNET,OS-WIN-SRV DYN","0.0" +"373212905","350070988","vpameasxt1.sanef.groupe","","00:50:56:90:3e:d6, 00:50:56:90:1e:f8","10.43.4.25,10.41.41.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 8b 3c 35 35 56 96-78 8b 90 84 23 83 a4 05","No Asset Tag","'+02:00","2025-11-12T09:33:10.000+02:00","cybreconcile","Cloud Agent","b6929662-ee8c-4e67-afe2-eb5686a424e3","2025-10-31T11:57:06.000+02:00","2026-04-22T06:53:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,Sextan,Production","662.0" +"176399068","229973934","vpdaibana3","VPDAIBANA3","00:50:56:90:F2:65","10.41.70.22","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 95 a5 45 50 91 d0-aa fb a4 e2 c9 d8 c2 b5","NoAssetTag","'+02:00","2026-04-16T11:51:18.000+02:00","ecoad-ext","Cloud Agent","1dd975bb-a8ba-45ba-b773-57567bdae6d3","2023-06-29T11:08:39.000+02:00","2026-04-22T06:53:58.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DAI,BDD-POS DYN,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","354.0" +"391030446","357804470","PCB21550.sanef.groupe","PCB21550","D0:AD:08:A7:28:6A","10.5.31.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLV","8CC3502YLV","'+02:00","2026-04-20T14:21:58.000+02:00","SANEF\chanat","Cloud Agent","cde63e7f-f5e3-479f-b487-f8e77bf69517","2026-01-12T11:22:30.000+02:00","2026-04-22T06:53:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"112196090","180151399","vmamrrdt2","","00:50:56:82:53:79, 00:50:56:82:4F:D5","10.45.2.186,10.45.2.188,10.45.2.192,10.45.2.194,10.45.3.186,10.45.3.188,10.45.3.192,10.45.3.194","fe80::250:56ff:fe82:5379,fe80::250:56ff:fe82:4fd5","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 93 64 9e 76 9d-d4 d7 dc 53 6a 19 06 90","No Asset Tag","'+02:00","2025-11-18T13:38:15.000+02:00","cybexpapp","Cloud Agent","6baf190a-8dc9-4345-bd7d-5872ffaa9231","2022-02-03T16:45:05.000+02:00","2026-04-22T06:53:49.000+02:00","x86_64","5","SCA,VM,PM,GAV","ServersInCyberark,MIVISU,log4j,Outils prod (Monitoring, NMS, gestion de parc),Production,Linux Server,OS-LIN-SRV DYN,Cloud Agent,Sans,Trafic,Recette,Obsolete,DEX,VRF_INCONNUE","873.0" +"156071801","209222521","vpdsiaclo1.sanef.groupe","","00:50:56:82:aa:3c","192.168.31.19","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 d4 84 8f 20 30 8b-15 80 94 1b a9 56 7a 6d","No Asset Tag","'+02:00","2026-04-16T14:26:49.000+02:00","cybreconcile","Cloud Agent","4e6ad26c-f78d-4e23-8d2f-c0071e748eb9","2023-01-19T10:41:15.000+02:00","2026-04-22T06:53:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Owncloud,VRF_INCONNUE","132.0" +"320952835","328821165","PCB22831.sanef.groupe","PCB22831","D0:AD:08:A3:E7:27","10.103.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNP","8CC3502YNP","'+02:00","2026-04-18T09:05:31.000+02:00","SANEF\polletp","Cloud Agent","65564c60-1bb6-4633-95ce-fff4ad6c7872","2025-04-30T11:50:23.000+02:00","2026-04-22T06:53:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"358830635","344319360","PCB24256.sanef.groupe","PCB24256","24:FB:E3:CD:06:49","10.12.31.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M6R","","'+02:00","2026-04-17T07:08:57.000+02:00","SANEF\letort","Cloud Agent","f27409ae-1e47-44fc-b514-d4e9bc5c7499","2025-09-11T13:43:06.000+02:00","2026-04-22T06:53:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"402056731","361854563","PCB22845.sanef.groupe","PCB22845","D0:AD:08:A3:7D:CA","10.100.39.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YP2","8CC3502YP2","'+02:00","2026-03-28T09:11:51.000+02:00","SANEF\lemaireg","Cloud Agent","db3aab79-f3fa-4f3a-bb97-b00bde6f72ca","2026-02-18T10:01:11.000+02:00","2026-04-22T06:53:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"219800194","253606419","vpbotarmq1.sanef.groupe","","00:50:56:90:2a:9d","10.41.23.22","fe80::250:56ff:fe90:2a9d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 dd 7c 58 43 63 71-e5 91 e0 bf 4b f1 54 66","No Asset Tag","'+02:00","2026-04-21T11:32:10.000+02:00","cybreconcile","Cloud Agent","ffcb26ac-642c-4ddf-9731-be09592928c3","2024-03-04T12:16:46.000+02:00","2026-04-22T06:53:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Linux Server,Cloud Agent,OS-LIN-SRV DYN","141.0" +"160093994","213039821","vraiibpgs4","","00:50:56:82:c5:14","10.45.1.165,10.45.1.168","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 ae 0b a2 5e 22 17-93 4c cc eb a7 71 b9 5a","No Asset Tag","'+02:00","2026-01-07T12:41:58.000+02:00","cybintsys","Cloud Agent","92f8ba2f-56bd-4758-9d22-e1b740b167e8","2023-02-21T12:42:20.000+02:00","2026-04-22T06:53:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,BDD,BDD-ELA DYN,BDD-POS DYN,OS-LIN-SRV DYN,MID-NGINX DYN,Recette","143.0" +"129449366","192025850","MPCECMI1.sanef.groupe","MPCECMI1","00:90:FB:64:92:D1","10.60.2.100","fe80::9dc6:f5d3:2349:85f3","Windows / Client","Microsoft Windows 10 Enterprise 2016 LTSB (1607 Build 14393.9060) 64-Bit","1607","Unidentified / Unidentified","Advantech Default_string","8","3601","Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz","32682","American Megatrends Inc. R1.00.E0.DP01","Default string","Defaultstring","'+02:00","2026-04-21T00:46:36.000+02:00","SANEF\planar","Cloud Agent","18f9ce7f-f39c-450a-a234-94f5c41f74be","2022-06-28T10:33:38.000+02:00","2026-04-22T11:39:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,VRF_INCONNUE,MUR,Workstation,Trafic,DEX,Cloud Agent,Windows Server","338.0" +"178168038","231228012","vpameased1.sanef.groupe","","00:50:56:82:57:01","10.41.40.43","fe80::250:56ff:fe82:5701","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a4 1d 0c ca 65 5c-69 49 dd d6 7a e3 eb 37","No Asset Tag","'+02:00","2026-04-15T15:16:26.000+02:00","cybreconcile","Cloud Agent","7023c0a4-e618-46a7-9ffd-d1cf3479d060","2023-07-12T12:05:06.000+02:00","2026-04-22T06:52:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,OS-LIN-SRV DYN,SED,Cloud Agent,Linux Server","132.0" +"296033054","317455078","vpiadapol1","","00:50:56:9a:8f:55","10.44.3.68","","Linux / Server","Red Hat Enterprise Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7685","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1a 89 6e 39 61 2b 38-47 36 07 52 d2 4b 7d e4","No Asset Tag","'+02:00","2025-01-29T14:59:52.000+02:00","root","Cloud Agent","18253cdb-719b-4f0c-bd66-f63d7cf8b292","2025-01-29T15:00:17.000+02:00","2026-04-22T06:52:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","338.0" +"392047034","358066494","PCV21531.sanef-int.adds","PCV21531","D0:AD:08:A3:7B:34","10.210.47.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YX6","","'+02:00","2026-04-13T12:55:38.000+02:00","Operateur","Cloud Agent","afcb2472-5830-4484-ba7c-89caeb1456f2","2026-01-14T11:24:42.000+02:00","2026-04-22T06:52:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"181714565","233677872","vrsvpatst1","VRSVPATST1","00:50:56:9C:67:92","10.45.9.168","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c ad e0 31 81 85 24-a8 01 28 49 0e cf c7 6d","NoAssetTag","'+02:00","2026-02-17T15:50:44.000+02:00","gare","Cloud Agent","ca42936e-7f1a-43bd-b3aa-54cda1760cbe","2023-08-07T12:16:26.000+02:00","2026-04-22T06:52:40.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,SVP,Cloud Agent,Windows Server,OS-WIN-SRV DYN","514.0" +"318710863","328176976","PCB22897.sanef.groupe","PCB22897","D0:AD:08:A7:27:DB","10.1.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSV","8CC3502YSV","'+02:00","2026-03-29T09:12:26.000+02:00","SANEF\vanacker","Cloud Agent","bab5bcb6-d43c-42a2-a54f-023680c09bfc","2025-04-23T10:44:22.000+02:00","2026-04-22T11:04:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"181705921","233669335","vrosapsrv1.sanef-rec.fr","","00:50:56:9c:70:38","10.45.9.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 29 fb 96 2e 14 82-28 c3 82 89 0e b2 31 36","No Asset Tag","'+02:00","2026-04-09T12:14:04.000+02:00","cybadmsys","Cloud Agent","31f20ac1-dd20-4cd3-9a4e-790be9367805","2023-08-07T10:57:17.000+02:00","2026-04-22T06:52:15.000+02:00","x86_64","4","SCA,VM,PM,GAV","Péage,BDD-ELA DYN,MID-NGINX DYN,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,DEX,Cloud Agent,Linux Server","133.0" +"358653134","344183280","VMMSVPC1.sanef-int.adds","VMMSVPC1","00:50:56:90:16:68","10.41.2.250","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 24 f3 36 59 72 2e-63 46 aa f2 d3 f8 08 86","NoAssetTag","'+02:00","2026-04-16T16:49:08.000+02:00","UserPCT","Cloud Agent","90800f5a-0ca3-4f54-9ce5-6ac8bc072b5f","2025-09-10T17:32:16.000+02:00","2026-04-22T06:52:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"131406323","193425034","vrracquo1","","00:50:56:AC:00:E6","10.102.2.10","fe80::250:56ff:feac:e6","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","996","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 2c 61 f3 29 a8 f9 a3-22 22 61 17 58 04 c3 5d","No Asset Tag","'+02:00","2023-09-25T12:03:13.000+02:00","cybreconcile","Cloud Agent","7fc95d16-3183-469d-9c09-e08ccbf5dea2","2022-07-13T10:38:49.000+02:00","2026-04-22T06:52:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Quorum,OS-LIN-SRV DYN,Obsolete,Cloud Agent,Linux Server","343.0" +"411394993","365634074","vpdecasas4","","00:50:56:82:11:f0","10.30.11.152","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","64430","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 fa 1c e9 14 59 44-09 d9 a0 eb 46 07 f2 ff","No Asset Tag","'+02:00","2026-03-25T15:50:33.000+02:00","cybreconcile","Cloud Agent","80b494e2-2f67-454e-8170-847d60075eae","2026-03-25T15:50:52.000+02:00","2026-04-22T06:51:59.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,SAS,DSI,Production,Finances Comptabilité / Consolidation,Linux Server,Cloud Agent,OS-LIN-SRV DYN","512.0" +"230624660","258738929","vpsupapol1.sanef.groupe","","00:50:56:8d:78:3e","10.44.5.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d de 96 06 d0 e5 37-73 d9 95 5b 4a d8 8f 44","No Asset Tag","'+02:00","2026-03-30T10:42:58.000+02:00","cybreconcile","Cloud Agent","82ca204b-27bc-4eb7-b322-1655ec08497b","2024-04-17T17:35:43.000+02:00","2026-04-22T06:51:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN","66.0" +"382447117","353972906","PCB22339.sanef.groupe","PCB22339","D0:AD:08:A3:7B:42","10.200.31.70","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS7","8CC3502YS7","'+02:00","2026-03-28T09:11:24.000+02:00","SANEF\sebire-ext","Cloud Agent","a913dd9c-a2eb-4c2e-9cff-6d2edf2496fd","2025-12-08T10:38:08.000+02:00","2026-04-22T06:51:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"159693566","212321116","vpvpnarad1.sanef.groupe","","00:50:56:82:70:90, 02:42:9d:4f:9c:a1, 7a:60:ec:a5:16:1a","192.168.19.6,172.17.0.1","fe80::250:56ff:fe82:7090,fe80::42:9dff:fe4f:9ca1,fe80::7860:ecff:fea5:161a","Linux / Server","Red Hat Enterprise Linux 8.3","8.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 02 d7 da 94 70 9e 6e-62 4c 3e fb 97 e7 7c 40","No Asset Tag","'+02:00","2026-02-24T12:10:05.000+02:00","cybadmres","Cloud Agent","7ab0a0cc-dff6-4c59-b695-fea679d296e7","2023-02-17T13:09:34.000+02:00","2026-04-22T06:51:42.000+02:00","x86_64","3","SCA,VM,PM,GAV","VPN,Radius,GEMALTO,VRF_INCONNUE,OS-LIN-SRV DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server","207.0" +"129339882","191948950","sppeaanvr14","SPPEAANVR14","02:00:4C:4F:4F:50, D4:F5:EF:50:76:AC","169.254.67.99,10.41.7.113","fe80::8047:5da1:288c:98a,fe80::f292:ef67:3db0:bea3","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DV6","","'+02:00","2026-03-27T09:36:54.000+02:00","Administrateur","Cloud Agent","3aa49e4c-d048-46e5-8103-fcc247102836","2022-06-27T15:07:20.000+02:00","2026-04-22T06:51:35.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Exploitation,Sans,Production,VRF_INCONNUE,OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server","523.0" +"322006461","329317301","PCB23714.sanef.groupe","PCB23714","6C:0B:5E:ED:A2:43","10.152.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2H","","'+02:00","2026-04-20T17:09:36.000+02:00","SANEF\QUIDE","Cloud Agent","636d3a27-57c5-4216-887c-122c18cafe79","2025-05-05T10:54:32.000+02:00","2026-04-22T06:51:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"213849878","251124779","spsecalog1.sanef.groupe","","54:80:28:4e:62:e0","10.30.10.163","fe80::adf5:cfc0:844c:bb2a","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant DL380 G10 Server","32","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31828","HPE U30 08/06/2025","CZ28450152","","'+02:00","2026-01-14T16:13:56.000+02:00","cybsupsys","Cloud Agent","561115b7-6e0d-4fcf-8b81-6db17110d077","2024-02-05T19:27:44.000+02:00","2026-04-22T06:51:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,Splunk,OS-LIN-SRV DYN,DSI","242.0" +"323177947","329812434","PCB22903.sanef.groupe","PCB22903","D0:AD:08:A3:E7:2C","10.100.39.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTV","8CC3502YTV","'+02:00","2026-04-10T20:44:06.000+02:00","SANEF\DEMOULIN","Cloud Agent","566ff52c-ab9f-42cf-99c9-be3da83dc6f0","2025-05-09T13:10:40.000+02:00","2026-04-22T12:02:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"223150678","255061870","ls-amblainville","LS-AMBLAINVILLE","00:50:56:90:9D:1A","10.132.1.20","fe80::d126:fc85:c9cf:ba71","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 85 80 16 fe d9 76-9b ba d7 c1 8d e8 d1 6d","NoAssetTag","'+02:00","2026-03-23T10:33:01.000+02:00","svpadmin","Cloud Agent","8a5538c5-f517-47fa-9528-6c3727b685cc","2024-03-18T15:03:17.000+02:00","2026-04-22T06:51:03.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,Haute,High,OS-WIN-SRV DYN,Péage,DEX,Cloud Agent,Windows Server","849.0" +"318693920","328175397","PCB22919.sanef.groupe","PCB22919","D0:AD:08:A7:27:AA","10.13.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTC","8CC3502YTC","'+02:00","2026-04-08T10:11:51.000+02:00","SANEF\beckerd","Cloud Agent","dd8075c7-5d64-4391-99a8-e98e6ed95211","2025-04-23T10:33:18.000+02:00","2026-04-22T06:51:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"407952467","364297085","PCV18681.sanef-int.adds","PCV18681","30:13:8B:6C:5B:CD","10.210.7.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473WS","","'+02:00","2026-03-12T13:17:00.000+02:00","Operateur","Cloud Agent","96605a3e-3acb-4a7e-a89e-f80acf5ed0e0","2026-03-12T13:07:19.000+02:00","2026-04-22T12:03:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"407939380","364281435","PCV18553.sanef-int.adds","PCV18553","30:13:8B:6C:5D:4B","10.210.7.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TD","","'+02:00","2026-03-12T11:08:03.000+02:00","Operateur","Cloud Agent","7c8bf14f-c5d8-4b39-9edc-e1733d3a0662","2026-03-12T10:49:47.000+02:00","2026-04-22T06:50:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"225436821","256067165","ls-lievin","LS-LIEVIN","00:50:56:90:1A:BA","10.41.2.41","fe80::3718:ad1c:827a:a431","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 85 c7 1f 20 58 fe-0a 85 e8 4a 34 39 2d c8","NoAssetTag","'+02:00","2026-03-04T16:50:35.000+02:00","svpadmin","Cloud Agent","fee50917-63e1-4f38-9c7b-5c88873c927b","2024-03-26T11:08:19.000+02:00","2026-04-22T10:35:06.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,Production,High,Péage,SVP,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,Haute","635.0" +"322335500","329428657","PCB20862.sanef.groupe","PCB20862","6C:0B:5E:EE:93:2C","10.200.31.62","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3Y","","'+02:00","2026-03-28T09:27:48.000+02:00","SANEF\lejeunec","Cloud Agent","b7ea8f10-6c21-4c7f-b376-82dae430ae21","2025-05-06T10:54:25.000+02:00","2026-04-22T06:50:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"222314779","254693891","OSA20945.sanef-int.adds","OSA20945","BC:0F:F3:87:66:68","10.5.20.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLW","","'+02:00","2026-04-20T13:27:11.000+02:00","Superviseur","Cloud Agent","9831aadd-048b-401f-a709-53495a03c119","2024-03-14T16:29:33.000+02:00","2026-04-22T06:50:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"363949800","346380001","PCV18563.sanef-int.adds","PCV18563","30:13:8B:6C:5D:1A","10.152.7.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TN","","'+02:00","2026-04-18T18:06:56.000+02:00","Operateur","Cloud Agent","8431fa21-a520-447a-b2f3-feb35c474033","2025-09-29T15:29:49.000+02:00","2026-04-22T06:50:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"227193811","256864116","ls-ressons","LS-RESSONS","00:50:56:90:29:F8","10.41.2.28","fe80::8137:321c:7cbb:fa58","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 69 7c c9 0c 4e 3b-74 ed 3c 7e ae 9f d3 a6","NoAssetTag","'+02:00","2026-03-02T16:08:01.000+02:00","svpadmin","Cloud Agent","88cb08e4-ca30-46c3-937d-d1a372dfd5bd","2024-04-03T10:08:28.000+02:00","2026-04-22T11:55:28.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Péage,OS-WIN-SRV DYN,Cloud Agent,Windows Server","508.0" +"195794735","241929791","vpbotreco4.sanef.groupe","","00:50:56:90:4a:4d","10.41.23.21","fe80::250:56ff:fe90:4a4d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 cb 51 e5 f3 c5 6d-3b 13 0c 15 51 d4 9a 94","No Asset Tag","'+02:00","2026-04-16T15:14:01.000+02:00","cybreconcile","Cloud Agent","84311023-f2cf-4094-b245-29d504b5c25f","2023-10-26T11:42:11.000+02:00","2026-04-22T06:49:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,FreeFlow,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0" +"409746895","365034580","vpdsiaito1.sanef.groupe","","00:50:56:9c:fa:7c","10.46.33.35","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 29 1a 4f 84 a5 cf-aa 45 de 5e 04 ad 47 37","No Asset Tag","'+02:00","2026-03-23T15:11:57.000+02:00","cybreconcile","Cloud Agent","1c3cf6bb-20fe-4cc6-9671-7ff64bcdc4e1","2026-03-19T15:13:46.000+02:00","2026-04-22T06:49:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","330.0" +"129355353","191958888","vpamlanvr1","VPAMLANVR1","00:50:56:82:41:74","10.137.4.13","fe80::d84d:147a:f82e:3c9c","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 93 f4 29 6e f2 68-16 ba f7 80 45 e1 1f ea","NoAssetTag","'+02:00","2026-03-05T15:57:22.000+02:00","Administrateur","Cloud Agent","f9f75a13-b307-4e5c-a738-cd386b080162","2022-06-27T17:37:05.000+02:00","2026-04-22T06:49:18.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_INCONNUE,DEX,NVR,Cloud Agent,Windows Server,Production,Exploitation","523.0" +"216068010","252009157","OSA20981.sanef-int.adds","OSA20981","BC:0F:F3:87:70:B4","10.12.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMS","","'+02:00","2026-04-20T23:54:33.000+02:00","Superviseur","Cloud Agent","d55a3ae7-e965-4ba2-b7b0-6f0e2d7be18b","2024-02-15T12:39:58.000+02:00","2026-04-22T06:49:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"303923893","322167384","vrdepbels2.sanef-rec.fr","","00:50:56:9c:fc:1d","10.45.13.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9f 5f 98 84 33 6c-23 9d a6 89 71 d7 53 91","No Asset Tag","'+02:00","2026-01-15T16:11:37.000+02:00","cybsupapp","Cloud Agent","2a28fb56-a6f0-4da5-812f-61c6e7bb2b50","2025-02-27T18:15:20.000+02:00","2026-04-22T06:48:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Recette,Gestion dépanneurs,Linux Server,Cloud Agent","141.0" +"279991991","305195795","vpnitardp1","VPNITARDP1","00:50:56:90:65:E5","192.168.191.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 21 7f e6 fd b4 3e-45 d4 cc 97 6a 46 01 53","NoAssetTag","'+02:00","2026-03-30T09:20:14.000+02:00","SANEF-INT\b03987","Cloud Agent","b4025c52-bf4b-4372-bf98-ef3f2b5a7ea0","2024-11-18T11:00:38.000+02:00","2026-04-22T06:48:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,OS-WIN-SRV DYN","252.0" +"362211657","345648662","PCB18742.sanef.groupe","PCB18742","BC:0F:F3:3D:58:8E","10.4.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CT0","","'+02:00","2026-03-29T09:23:56.000+02:00","SANEF\lefevrej","Cloud Agent","abe04a0e-1f9c-4601-b932-473682cdf8c4","2025-09-23T10:17:05.000+02:00","2026-04-22T11:31:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"314659720","326547477","vpdsibquo1.sanef.groupe","","00:50:56:90:ff:a1","10.100.16.19","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 73 1f 14 3b 95 cf-66 6b b9 4a ae 5c d7 d4","No Asset Tag","'+02:00","2026-02-10T11:18:47.000+02:00","cybadmbdd","Cloud Agent","9892cd90-4b55-48b2-bf09-4a20e99269de","2025-04-08T17:09:47.000+02:00","2026-04-22T06:47:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,OS-LIN-SRV DYN,Production,BDD-ELA DYN,Cloud Agent,Linux Server","140.0" +"365022594","346741777","PCB22264.sanef.groupe","PCB22264","D0:AD:08:A3:7D:BF","10.5.31.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKQ","","'+02:00","2026-04-20T15:01:48.000+02:00","SANEF\larchera","Cloud Agent","fa1105d8-d989-4e2c-97d5-4edf30e555d4","2025-10-02T17:31:20.000+02:00","2026-04-22T06:47:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"294113565","316155452","vpadvangx1.sanef.groupe","","00:50:56:90:f2:a9","192.168.20.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d5 59 bd 3e ac 7f-5f e4 fd 51 7e 33 c8 37","No Asset Tag","'+02:00","2026-03-17T16:39:16.000+02:00","cybadmroot","Cloud Agent","f9d3d39e-0323-4b81-90e4-1642915c432b","2025-01-22T13:10:08.000+02:00","2026-04-22T11:59:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,ADV-U","141.0" +"137346917","197588252","vpexpbdech1.sanef.groupe","","00:50:56:82:9b:ad","10.41.40.155","fe80::663a:66b7:1daf:db9e","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d d3 08 47 19 41 98-d7 42 c7 04 de b3 f2 e8","No Asset Tag","'+02:00","2025-11-25T15:36:26.000+02:00","cybreconcile","Cloud Agent","8308352a-87a2-4733-86fd-7cb6ac17b583","2022-08-30T17:02:41.000+02:00","2026-04-22T11:56:38.000+02:00","x86_64","4","SCA,VM,PM,GAV","DECHETS,Production,BDD-POS DYN,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,VRF_TRAFIC_DC,DEX,Cloud Agent,Linux Server,Obsolete,ServersInCyberark,Patrimoine","100.0" +"196663887","242433779","vpboobquo1.sanef.groupe","","00:50:56:90:eb:e4","10.100.16.13","fe80::250:56ff:fe90:ebe4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 31 52 df 09 67 68-7e 74 2f 62 c2 51 c4 34","No Asset Tag","'+02:00","2026-04-07T12:08:49.000+02:00","cybreconcile","Cloud Agent","d7f52b85-a622-403d-b3ff-1d2f8e4b3b4a","2023-10-31T18:38:52.000+02:00","2026-04-22T06:47:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN","334.0" +"129356666","191964390","vptsyanvr1","VPTSYANVR1","00:50:56:82:BC:F3","10.87.17.12","fe80::2354:a07a:4242:d826","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 d8 e6 88 76 ec 5d-8c 94 e0 e4 58 b2 18 3a","NoAssetTag","'+02:00","2026-02-04T11:16:02.000+02:00","Administrateur","Cloud Agent","2c2331b5-696e-4f65-a2a6-c16a5b664d9a","2022-06-27T18:27:39.000+02:00","2026-04-22T06:47:36.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Exploitation,VRF_INCONNUE,Production,NVR","508.0" +"130428362","192722854","BLY-BLY2-GC2","BLY-BLY2-GC2","00:05:B7:EA:94:7C","10.92.10.233,192.168.21.13,192.168.25.13","fe80::2006:cf71:a811:3dbf,fe80::5d5c:22d9:6542:1dff,fe80::85c7:e4a0:e217:b03","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19237) 64-Bit","6.3","Industrial Control System (ICS) / Industrial PC","ARBOR FPC 7800 Series Industrial PC","8","2300","Intel(R) Core(TM) i7-4770TE CPU @ 2.30GHz","8091","American Megatrends Inc. 4.6.5","To be filled by O.E.M.","ToBeFilledByO.E.M.","'+02:00","2026-01-22T16:19:57.000+02:00","Administrator","Cloud Agent","c034ab23-2012-4555-8db0-ccc66b28f1eb","2022-07-06T09:20:00.000+02:00","2026-04-22T11:11:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Obsolete,OS-WIN-SRV DYN,Cloud Agent,Windows Server,VRF_INCONNUE","346.0" +"402304603","361966849","PCB24215.sanef.groupe","PCB24215","10:B6:76:95:8B:9E","10.106.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYZ","","'+02:00","2026-04-17T13:16:53.000+02:00","SANEF\becquart","Cloud Agent","d19bdec0-e4c4-4c1b-999c-c696eed52a83","2026-02-19T09:16:18.000+02:00","2026-04-22T06:47:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"304096310","322255083","vpsupapol5","","00:50:56:94:70:3a","10.44.5.107","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 ef 07 cf 2f 81 53-d9 5d 06 e4 16 01 eb 07","No Asset Tag","'+02:00","2026-03-30T11:24:10.000+02:00","cybsupsys","Cloud Agent","98d941fc-1d28-41a4-9618-16754a77178f","2025-02-28T12:35:28.000+02:00","2026-04-22T06:47:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server","133.0" +"228684181","257664201","vpbocasec1","","00:50:56:90:53:09","10.41.22.16","fe80::250:56ff:fe90:5309","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 66 9f 39 aa 70 12-76 58 86 b2 81 d1 ac e7","No Asset Tag","'+02:00","2026-04-01T09:56:22.000+02:00","root","Cloud Agent","5fd89561-ad73-4111-8bb9-95ee494fde17","2024-04-09T13:14:36.000+02:00","2026-04-22T06:47:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN","141.0" +"296278441","317662478","REX21542.sanef-int.adds","REX21542","D0:AD:08:A3:E6:C3","10.45.11.236","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YR5","","'+02:00","2025-09-22T11:56:01.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","9550ec0e-5714-4b4a-a560-0db00ecafdd6","2025-01-30T18:19:46.000+02:00","2026-04-22T06:47:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"407627825","364166819","splogbels3","","d4:f5:ef:39:81:2c","10.44.7.42","fe80::d6f5:efff:fe39:812c","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G10 Server","16","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","31493","HPE U30 08/06/2025","CZ20510927","","'+02:00","2026-03-27T16:19:28.000+02:00","cybintsys","Cloud Agent","58b1fe8a-fb3d-4490-a2f9-a26a40618ce8","2026-03-11T12:17:53.000+02:00","2026-04-22T06:46:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Production,Elasticsearch,Cloud Agent,OS-LIN-SRV DYN,Linux Server","152.0" +"198425521","243397942","nvr-spare-eco","NVR-SPARE-ECO","00:50:56:82:1B:0D","10.1.27.252","fe80::59df:b009:bdc0:9fbe","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 85 ba 43 4b 19 23-78 a2 34 50 58 0f d3 7b","NoAssetTag","'+02:00","2026-01-28T11:24:11.000+02:00","Administrateur","Cloud Agent","fc0b4019-8cfe-408c-8bec-c64625fe6b93","2023-11-10T15:50:36.000+02:00","2026-04-22T10:58:52.000+02:00","64-Bit","3","SCA,VM,GAV","OS-WIN-SRV DYN,Cloud Agent,DEX,NVR","508.0" +"413355832","366628998","vpsecapki1.sanef.groupe","","00:50:56:94:ae:99","10.44.3.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 d2 63 c4 cf 61 e0-f6 2e 2d d5 54 ba fc f1","No Asset Tag","'+02:00","2026-04-03T15:08:49.000+02:00","cybsecope","Cloud Agent","6f169398-810e-420e-bf0a-4f8b5f09b5f6","2026-04-03T15:09:06.000+02:00","2026-04-22T06:46:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","66.0" +"296279621","317662031","REX21551.sanef-int.adds","REX21551","D0:AD:08:A3:7B:3F","10.200.91.81","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV0","","'+02:00","2026-04-09T13:01:14.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","54cb0fd4-69a0-4258-9830-b9621daa5707","2025-01-30T18:12:37.000+02:00","2026-04-22T12:03:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"175951171","229620103","vvbotrssm2","VVBOTRSSM2","00:50:56:9C:7B:71","10.45.6.163","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c e2 87 c2 29 a2 44-01 86 1f 2d d6 18 0b 25","NoAssetTag","'+02:00","2026-03-10T16:00:21.000+02:00","Administrateur","Cloud Agent","a219029f-c26c-4a29-b654-069497ab3c37","2023-06-26T16:58:15.000+02:00","2026-04-22T06:46:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Flux Libre,flux_libre,FreeFlow,Recette","346.0" +"213854267","251125826","sppeaanvr1","SPPEAANVR1","5C:BA:2C:48:B6:DC","10.41.7.100","fe80::e59b:d4f1:9c22:8b47","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLT","","'+02:00","2026-01-28T10:28:30.000+02:00","Administrateur","Cloud Agent","ddf3928a-db3f-4617-bb32-935f20ce89bd","2024-02-05T19:42:54.000+02:00","2026-04-22T06:46:09.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,NVR","523.0" +"295103250","316894097","vpngwasic2","","00:50:56:8f:a6:87","10.44.200.101","fe80::250:56ff:fe8f:a687","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 7a 40 97 ae c4 25-6d 28 12 8a 34 18 1a 68","No Asset Tag","'+02:00","2026-03-18T14:17:24.000+02:00","reboot","Cloud Agent","e89ff728-8ed2-450e-b500-76e84d85f701","2025-01-27T14:53:33.000+02:00","2026-04-22T12:04:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIA,TAG-SIC,Linux Server,Cloud Agent","53.0" +"389537477","357336591","PSX18555.sanef-int.adds","PSX18555","30:13:8B:6C:56:8B","10.12.40.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TB","","'+02:00","2026-03-26T12:44:05.000+02:00","UserSextan","Cloud Agent","a70299aa-a668-4e57-9459-dafea6e3df08","2026-01-08T11:39:09.000+02:00","2026-04-22T06:45:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"323154710","329797901","PCB23581.sanef.groupe","PCB23581","6C:0B:5E:EE:BC:70","10.106.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7R","","'+02:00","2026-03-29T09:28:12.000+02:00","SANEF\louchartbe","Cloud Agent","68cd6369-3fba-4d83-92fb-4b24f7668c38","2025-05-09T10:21:22.000+02:00","2026-04-22T06:45:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"172608682","227326752","vrecmadpr1.recette.adds","VRECMADPR1","00:50:56:9C:01:8F","10.45.7.38","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1c 78 29 84 79 12 c4-a7 5a c0 50 03 a2 36 70","NoAssetTag","'+02:00","2026-01-07T12:05:53.000+02:00","RECETTE\ndessoye","Cloud Agent","ee6e04bc-59fa-4c6e-a5fb-aa1483419dad","2023-06-01T10:05:18.000+02:00","2026-04-22T06:45:44.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,OS-WIN-SRV DYN,SCCM,Recette","519.0" +"331108752","350879849","PMS22811.sanef-int.adds","PMS22811","D0:AD:08:A7:27:ED","10.44.201.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YPP","","'+02:00","2026-02-19T12:06:10.000+02:00","Admin","Cloud Agent","c9a83fb4-f780-4d54-aea2-57aeb72ba703","2025-06-05T11:27:55.000+02:00","2026-04-22T06:45:41.000+02:00","64-Bit","2","SCA,VM,GAV","TAG-SIC,TAG-CAPIV,BDD-SQL DYN,Cloud Agent,Workstation","343.0" +"129952116","192394153","sproibgtc1","SPROIBGTC1","08:F1:EA:7E:91:38","10.78.200.10","fe80::fa4:9ef4:b16e:b389","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Computers / Server","HPE ProLiant DL360 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","32426","HPE U32","CZJ01005TT","","'+02:00","2026-03-31T14:22:14.000+02:00","admin_gtc","Cloud Agent","e0043ade-3901-4605-8b43-85099d34f933","2022-07-01T12:13:10.000+02:00","2026-04-22T11:54:51.000+02:00","64-Bit","5","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,GTC,Haute,Cloud Agent,Windows Server,DEX,VRF_INCONNUE,Production,High,Trafic","631.0" +"357904904","343915750","vprpnangx1","","00:50:56:90:12:0f","10.41.20.26","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 2e f2 88 64 36 d2-70 58 1c 2a eb 53 fb cc","No Asset Tag","'+02:00","2026-02-25T15:49:56.000+02:00","cybreconcile","Cloud Agent","5e905740-f89f-4e67-a259-7f1f87138406","2025-09-08T16:12:44.000+02:00","2026-04-22T06:45:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Péage,Production","140.0" +"236874396","266225746","ls-montreuil-reims","LS-MONTREUIL-RE","00:50:56:90:E6:17","10.41.2.56","fe80::2c82:6758:2aa2:98a3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 28 97 c6 82 b0 0b-40 0e de b8 ad 23 f2 b4","NoAssetTag","'+02:00","2026-03-02T11:41:19.000+02:00","svpadmin","Cloud Agent","d64a1ab0-6cf8-465c-af3c-57bf56a3df79","2024-05-15T13:32:32.000+02:00","2026-04-22T06:45:08.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Péage,SVP,OS-WIN-SRV DYN,Cloud Agent,Windows Server","507.0" +"191420514","239726721","viboobsql2.sanef.groupe","","00:50:56:90:7b:74","10.41.22.198,10.41.22.199","fe80::250:56ff:fe90:7b74","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f0 cd 09 15 29 ed-6e c7 9a 6d ee ef 3c b3","No Asset Tag","'+02:00","2026-03-16T12:41:55.000+02:00","cyblecemo","Cloud Agent","aa979cae-f80b-4415-9145-4dbfffb99ae3","2023-10-04T17:46:12.000+02:00","2026-04-22T06:45:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,ServersInCyberark,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Production,flux_libre","141.0" +"321056437","328926144","PCB24040.sanef.groupe","PCB24040","6C:0B:5E:F8:D7:60","10.105.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF3","","'+02:00","2026-03-28T09:28:10.000+02:00","SANEF\GAUGAIN","Cloud Agent","053a81ce-314e-46ef-9e69-81c990177783","2025-04-30T16:54:31.000+02:00","2026-04-22T06:43:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"160222097","213243642","vrsupbmbi1.sanef.groupe","","00:50:56:82:91:43","10.45.0.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 a7 cb 5e 11 9c 25-8d 4c 0d c0 79 38 21 0c","No Asset Tag","'+02:00","2026-03-11T12:02:03.000+02:00","cybadmsys","Cloud Agent","13fa4ab4-5e50-4785-b908-e76cd337b081","2023-02-22T13:01:31.000+02:00","2026-04-22T06:43:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,DSI,Centreon,Recette","120.0" +"130330176","192653919","VPAIIAPVC2.sanef.groupe","VPAIIAPVC2","00:50:56:82:59:AB","10.41.11.12","fe80::45cd:6d45:f975:d271","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 6a c5 03 34 1f de-c7 77 09 d4 e3 ed 00 82","NoAssetTag","'+02:00","2024-09-09T17:25:33.000+02:00","SANEF\TRON","Cloud Agent","51000e86-4ea7-4e9a-84bd-a19fb6b3dbd5","2022-07-05T13:44:59.000+02:00","2026-04-22T11:48:24.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,NVR,Workstation,Obsolete,Cloud Agent,Windows Server,Exploitation,Production,Sans","518.0" +"382479156","353996573","spbckmmag1.sanef.groupe","","04:bd:97:3e:78:08","192.168.109.8","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C240 M5 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","31534","Cisco Systems, Inc. C240M5.4.3.2g.0.0515250954 05/15/2025","WZP25500WKR","Unknown","'+02:00","2025-12-09T16:15:11.000+02:00","root","Cloud Agent","99d35416-a255-4046-b5b6-7e8255676814","2025-12-08T14:34:11.000+02:00","2026-04-22T06:42:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","330.0" +"219138825","253302514","OSA20964.sanef-int.adds","OSA20964","BC:0F:F3:87:6F:95","10.152.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LL1","","'+02:00","2026-04-15T20:41:46.000+02:00","Superviseur","Cloud Agent","1191a1f6-dbc9-4ace-b021-3139a5289d3e","2024-02-29T12:57:58.000+02:00","2026-04-22T11:56:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"320461802","328716100","PCB22842.sanef.groupe","PCB22842","D0:AD:08:A3:E6:CC","10.29.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPZ","8CC3502YPZ","'+02:00","2026-04-20T20:57:18.000+02:00","SANEF\GAILLARD","Cloud Agent","25dd7251-341e-4383-9dcc-37c0bc7da7fb","2025-04-29T12:22:37.000+02:00","2026-04-22T12:01:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"331046153","333860641","vrameahtp2.sanef-rec.fr","","00:50:56:9c:3d:a0, 00:50:56:9c:5a:88","10.45.4.51,10.45.2.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 4c 0a 64 79 11 d2-9e cb 7e de 44 01 97 c7","No Asset Tag","'+02:00","2026-04-02T16:34:16.000+02:00","cybintsys","Cloud Agent","a855257a-e734-4924-8b5c-8061f3926d70","2025-06-05T08:35:50.000+02:00","2026-04-22T06:42:31.000+02:00","x86_64","4","SCA,VM,GAV","DEX,Sextan,Recette,OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent","284.0" +"227708505","257227448","ls-masniere","LS-MASNIERES","00:50:56:90:22:96","10.41.2.44","fe80::e2a:926f:f031:6b98","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 a8 44 37 f1 89 bf-e7 24 75 ad e4 43 cd 6e","NoAssetTag","'+02:00","2026-03-05T11:23:07.000+02:00","svpadmin","Cloud Agent","91896d8b-f54d-4c74-abb2-0180b0c4662b","2024-04-05T11:06:01.000+02:00","2026-04-22T06:42:29.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,High,Péage,VRF_PEAGE_DC,Production,SVP,OS-WIN-SRV DYN,Cloud Agent,Windows Server","507.0" +"270773160","300117148","SVP22799.sanef-int.adds","SVP22799","D0:AD:08:A3:E6:C7","10.1.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YR6","","'+02:00","2026-04-21T17:07:32.000+02:00","Superviseur","Cloud Agent","75418aac-b767-4bba-b8ba-dc4362ae6f00","2024-10-08T10:20:57.000+02:00","2026-04-22T11:58:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"284376860","309489722","vtdsibpmm1.sanef-rec.fr","","00:50:56:9c:a2:ab","10.45.1.175","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 94 30 91 a1 96 cf-bd 52 ef f8 df 16 ca 87","No Asset Tag","'+02:00","2026-01-20T11:44:37.000+02:00","cybadmbdd","Cloud Agent","d0c1bf3d-4dcd-4749-861b-efbe8da5ebda","2024-12-05T13:41:18.000+02:00","2026-04-22T06:42:12.000+02:00","x86_64","2","SCA,VM,GAV","Recette,Linux Server,Cloud Agent,PATRIMOINE,OS-LIN-SRV DYN","138.0" +"131274982","193320475","vpaiiamap1","","00:50:56:82:de:45","10.30.12.123","fe80::1afe:7fb8:56b0:ac9f","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 07 5f 63 f0 05 d9-8e 0c 2a e2 67 26 e7 96","No Asset Tag","'+02:00","2026-03-10T15:02:52.000+02:00","cybreconcile","Cloud Agent","a8ecaddb-8789-40d3-820d-9da6f7a543ed","2022-07-12T15:41:44.000+02:00","2026-04-22T06:41:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE,Production,DSI,Centreon,ServersInCyberark,Outils prod (Monitoring, NMS, gestion de parc)","453.0" +"231613074","259382223","vvbotrssc1.sanef-rec.fr","","00:50:56:9c:03:e2","192.168.21.165","fe80::250:56ff:fe9c:3e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c b6 4e e1 e9 7c b6-e8 0e c2 e3 8c 86 0c 3a","No Asset Tag","'+02:00","2026-03-12T18:03:24.000+02:00","cybreconcile","Cloud Agent","4edf4a44-6734-48fe-8837-ff52373820f2","2024-04-22T17:39:57.000+02:00","2026-04-22T06:41:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","147.0" +"231533960","259283850","lpemvaste6","","00:17:a4:77:1c:14, 00:17:a4:77:1c:10","192.168.102.113,192.168.101.113","fe80::217:a4ff:fe77:1c14,fe80::217:a4ff:fe77:1c10","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000702","","'+02:00","2025-06-30T14:48:56.000+02:00","lamhajeb-ext","Cloud Agent","9eda4a28-4e0a-4ae4-adfe-e74a78ee0ab5","2024-04-22T11:32:19.000+02:00","2026-04-22T11:53:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,OS-LIN-SRV DYN,EMV,PCI Bunker EMV,Production,PCI Bunker EMV - VLAN Stecard v17","676.0" +"287505491","311424011","vrecmapss1.recette.adds","VRECMAPSS1","00:50:56:9C:64:56","10.45.7.36","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c d4 7c ca 4b a3 0d-4f de 09 42 65 99 8a 4c","NoAssetTag","'+02:00","2026-01-07T12:42:03.000+02:00","Administrateur","Cloud Agent","adf9964f-ea94-4229-b570-42d8f638c9be","2024-12-19T10:15:22.000+02:00","2026-04-22T06:41:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Recette,BDD-SQL DYN,Cloud Agent,OS-WIN-SRV DYN","339.0" +"129339614","191948633","sppeaanvr12","SPPEAANVR12","D4:F5:EF:50:77:11","10.41.7.111","fe80::1f4b:ac16:a242:b4fd","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","1","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DV7","","'+02:00","2026-03-09T15:55:23.000+02:00","Administrateur","Cloud Agent","d312573a-e088-4e67-9352-018dc2bef63e","2022-06-27T15:03:19.000+02:00","2026-04-22T11:29:51.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN,Exploitation,Production,Sans,DEX","523.0" +"200350065","244309166","vppeabbst3.sanef.groupe","","00:50:56:90:ef:2a","10.41.20.55","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f1 ea 1b 11 82 89-0d 71 98 b5 13 7b 53 58","No Asset Tag","'+02:00","2026-04-02T09:48:26.000+02:00","cybreconcile","Cloud Agent","b976e995-c0d3-471d-9e5f-ac8132228163","2023-11-22T13:43:16.000+02:00","2026-04-22T06:41:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Flux Libre,OS-LIN-SRV DYN,DSI,FreeFlow,flux_libre,Production,BOOST,Cloud Agent,Linux Server","332.0" +"305794746","322889283","vrgesbref1.sanef-rec.fr","","00:50:56:9c:8a:87","10.45.13.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a1 0a 88 b1 57 aa-49 97 5e a7 53 f7 e2 8a","No Asset Tag","'+02:00","2026-02-23T13:29:00.000+02:00","cybadmbdd","Cloud Agent","809fe4b8-391b-4a1d-a017-71508b1cc939","2025-03-06T19:33:16.000+02:00","2026-04-22T06:41:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,Recette,BDD,Linux Server,Cloud Agent","54.0" +"213308548","250865515","vposapexp1.sanef-int.adds","VPOSAPEXP1","00:50:56:90:32:93","10.44.6.37","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 c4 8c a3 70 19 49-46 0e cd 26 1f 9b 6e 97","NoAssetTag","'+02:00","2026-02-26T15:01:54.000+02:00","SANEF-INT\b03987","Cloud Agent","2aa1395b-4a14-4ae7-8567-a743e4fcf632","2024-02-02T11:04:44.000+02:00","2026-04-22T11:50:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,OS-WIN-SRV DYN,Péage,Cloud Agent,Windows Server,DEX","253.0" +"213847413","251124492","LS-BOULAY-PSB-SPARE.sanef.fr","LS-BOULAY-PSB-S","5C:BA:2C:44:CB:4C","10.12.2.254","fe80::f859:4417:9484:2f4","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Computers / Server","HPE ProLiant ML350 G10 Server","6","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","16042","HPE U41","CZJ82213V1","","'+02:00","2026-02-16T13:13:24.000+02:00","gare","Cloud Agent","c82cb619-396d-42da-b7f2-d7c891a63d5d","2024-02-05T19:21:58.000+02:00","2026-04-22T06:41:04.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,SVP,DEX,Cloud Agent,Windows Server,Péage,VRF_BACKUP_DC,High,VRF_PEAGE_DC,Production,Haute","850.0" +"130584303","192833659","vmamdpmv2.sanef.groupe","","00:50:56:82:ef:a5","10.45.2.129","fe80::8c25:8c4e:dce7:4fc3","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","12014","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 11 9d 4d e8 01 09-dc 3a 84 d6 ff 43 24 bd","No Asset Tag","'+02:00","2025-01-21T11:19:37.000+02:00","cybexpapp","Cloud Agent","fe51c1b9-c5ea-493c-8764-987808a4713d","2022-07-07T11:41:37.000+02:00","2026-04-22T06:41:00.000+02:00","x86_64","5","SCA,VM,PM,GAV","Recette,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,Trafic,Obsolete,MIVISU","627.0" +"202413299","245310748","vrameasxt2.sanef-rec.fr","","00:50:56:9c:a2:af, 00:50:56:9c:bb:53","10.45.2.61,10.45.4.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8f f0 1e b4 8f 5c-dc 45 a1 02 f8 0e 75 a0","No Asset Tag","'+02:00","2026-04-20T18:47:53.000+02:00","cybadmsys","Cloud Agent","8d3e033a-62fd-4f26-8345-fb6e6e199652","2023-12-04T17:29:25.000+02:00","2026-04-22T11:45:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,Sextan,DEX,OS-LIN-SRV DYN","682.0" +"130580517","192830533","lamtinf1.sanef.groupe","","00:17:A4:77:14:E2","10.45.7.30","fe80::217:a4ff:fe77:14e2","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G8 Server","24","2000","Intel(R) Xeon(R) CPU E5-2620 0 @ 2.00GHz","48262","","CZ3232T6JF","","'+02:00","2024-10-14T15:38:12.000+02:00","cybexpapp","Cloud Agent","2a5c3d9c-f404-46ca-ab8f-e5901e2a0842","2022-07-07T10:55:00.000+02:00","2026-04-22T06:40:50.000+02:00","x86_64","2","SCA,VM,GAV","log4j,Recette,Bases de Données,ORACLE,OS-LIN-SRV DYN,BDD-POS DYN,Obsolete,DSI,VRF_INCONNUE,Linux Server,Cloud Agent","350.0" +"128153026","191086734","vpburaquo1.sanef.groupe","VPBURAQUO1","00:50:56:82:6E:C8","10.102.2.13","fe80::5474:c385:7fff:752d","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","4096","Phoenix Technologies LTD 6.00","VMware-42 02 c6 db d5 38 bd 08-43 d0 7e a5 ea b3 ab 62","NoAssetTag","'+02:00","2025-03-12T05:42:38.000+02:00","VPBURAQUO1\CYBSUPSYS","Cloud Agent","0f30fe64-8eb9-4fab-8e34-d7fc861f81e0","2022-06-16T13:18:18.000+02:00","2026-04-22T06:40:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,OS-WIN-SRV DYN,VRF_INCONNUE,Windows Server,Obsolete,Cloud Agent","349.0" +"361913480","345502284","PCB24253.sanef.groupe","PCB24253","24:FB:E3:CD:06:20, 0A:00:27:00:00:11","10.100.39.183,192.168.56.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M5F","","'+02:00","2026-04-16T17:37:07.000+02:00","SANEF\CAYLA","Cloud Agent","cb7d85d0-bf98-4826-8d8d-f1848d395275","2025-09-22T10:28:47.000+02:00","2026-04-22T11:56:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","337.0" +"127861245","190913009","VPAIIADNS3","VPAIIADNS3","00:50:56:82:64:D6","192.168.2.27","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 32 e7 a5 1c 8d 7f-e0 04 90 b1 2a 3e a3 9b","NoAssetTag","'+02:00","2026-04-15T15:19:54.000+02:00","Administrateur","Cloud Agent","1ba54af0-43d0-48b4-9a2d-ce47a953f95e","2022-06-14T16:03:30.000+02:00","2026-04-22T06:40:23.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Haute,SED,Critical,OS-WIN-SRV DYN,VRF_INCONNUE,Windows Server,Réseaux et Télécom,Cloud Agent,DMZ,High,Production,Reseau & Telecom,TAG-SRVEXPOSEINTERNET,DNS","0.0" +"236554069","265278425","vpechatre3.sanef.groupe","","00:50:56:90:7e:a5","10.42.16.135","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 b5 68 f5 b3 65 40-57 8b 1f 07 fa 7a 66 83","No Asset Tag","'+02:00","2025-11-18T15:42:54.000+02:00","cybreconcile","Cloud Agent","911a6144-d6a0-438f-a361-664ca817db49","2024-05-14T14:30:32.000+02:00","2026-04-22T06:40:04.000+02:00","x86_64","3","SCA,VM,PM,GAV","TALEND,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production","208.0" +"190550423","239193384","vvpeaabst2.sanef-rec.fr","","00:50:56:9c:ad:2b","10.45.10.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cc c1 a9 d2 a8 f2-fd 37 22 ca ca ee 9b b3","No Asset Tag","'+02:00","2026-03-09T13:30:51.000+02:00","cybsupapp","Cloud Agent","793727e6-7348-4e4d-815b-3204aa28f0f3","2023-09-29T15:58:49.000+02:00","2026-04-22T06:40:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,MID-NGINX DYN,BDD-ELA DYN,FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server","141.0" +"129355084","191959031","vpamsanvr1","VPAMSANVR1","00:50:56:82:4C:85","10.137.2.13","fe80::6026:d7a2:7dbf:6ccf","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 01 df 59 75 04 61-f4 36 4a ea 80 69 ed 08","NoAssetTag","'+02:00","2026-03-10T15:14:51.000+02:00","Administrateur","Cloud Agent","98e1868f-20d8-4c30-afbf-9e717264286f","2022-06-27T17:38:48.000+02:00","2026-04-22T06:39:33.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,VRF_INCONNUE,NVR,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,Production","508.0" +"213123476","250792401","vpbckangw3","","00:50:56:9a:29:e0","10.44.3.164","fe80::250:56ff:fe9a:29e0","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7652","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a 8d f5 87 6d da da-86 27 fa e8 f3 ed a6 57","No Asset Tag","'+02:00","2026-02-03T17:03:01.000+02:00","tbaad-ext","Cloud Agent","f0d76d38-def3-4a0b-91ce-86b0881e830e","2024-02-01T12:32:22.000+02:00","2026-04-22T11:59:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","53.0" +"369348919","348380760","PCB18718.sanef.groupe","PCB18718","BC:0F:F3:3D:68:3B","10.3.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CS7","","'+02:00","2026-04-03T11:53:43.000+02:00","SANEF\verloojl","Cloud Agent","e688f6c1-fcf1-4738-89a4-f745b6d5f8af","2025-10-16T15:57:56.000+02:00","2026-04-22T11:21:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"176398970","229973935","vpdaibana4","VPDAIBANA4","00:50:56:90:C3:2E","10.41.70.23","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 19 c7 14 80 9e 4f-a5 7f 35 8e a4 7c 5c 6d","NoAssetTag","'+02:00","2026-04-16T13:05:34.000+02:00","ecoad-ext","Cloud Agent","4875f381-460e-49bf-8c76-9073445cf741","2023-06-29T11:09:54.000+02:00","2026-04-22T11:59:31.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,DAI,BDD-POS DYN","354.0" +"358930712","344339665","PCB24220.sanef.groupe","PCB24220","10:B6:76:95:8B:B1","10.5.31.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZL","","'+02:00","2026-04-20T18:25:29.000+02:00","SANEF\blanchet","Cloud Agent","f8f4ef07-4f1a-4a3a-8402-b455f494385c","2025-09-11T17:11:16.000+02:00","2026-04-22T06:38:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"179157135","231945099","vrdsibsql1.recette.adds","VRDSIBSQL1","00:50:56:9C:45:6B","10.45.1.164","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 4a 8b 59 11 e4 79-67 f1 01 cf bc ba 9d 53","NoAssetTag","'+02:00","2026-02-25T01:15:50.000+02:00","RECETTE\b03987","Cloud Agent","96d23f05-1267-49dc-8e6c-e7be90ff0df0","2023-07-19T18:19:26.000+02:00","2026-04-22T11:48:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,BDD-SQL DYN,OS-WIN-SRV DYN,Recette,BDD,DSI","252.0" +"279163184","304713615","vrdecasas4.sanef.groupe","","00:50:56:82:b2:63","10.45.1.7","fe80::250:56ff:fe82:b263","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a9 4e c6 b7 8e a0-a8 88 9d 5b bc b3 0e 55","No Asset Tag","'+02:00","2026-03-23T11:58:16.000+02:00","cybadmsys","Cloud Agent","5b8b3dc2-a47e-4751-95b1-6252c80a5b64","2024-11-14T15:54:25.000+02:00","2026-04-22T12:01:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,Recette","54.0" +"131275015","193320477","vpaiiapol2","","00:50:56:82:f3:e9","10.30.12.126","fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 18 a7 f2 2e b1 a5-a1 1c 21 89 fe 28 2e 7f","No Asset Tag","'+02:00","2024-06-03T14:34:52.000+02:00","cybreconcile","Cloud Agent","579cf1d3-e95b-4537-9e26-c2c734e321dc","2022-07-12T15:43:36.000+02:00","2026-04-22T11:52:05.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,Sans,Production,Outils prod (Monitoring, NMS, gestion de parc),Cloud Agent,Linux Server,DSI,Obsolete,MID-APACHE-TOMCAT DYN,BDD-SQL DYN,BDD-ELA DYN,BDD-POS DYN,MID-NGINX DYN,VRF_INCONNUE","462.0" +"332275914","336780122","vpameaquo1","","00:50:56:90:f9:d1","10.100.16.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d6 b9 69 7f 0f 02-6c 35 67 7f 8f 01 af d7","No Asset Tag","'+02:00","2025-10-29T12:02:18.000+02:00","cybsupsys","Cloud Agent","a8802b8e-5c87-4fcc-bff6-c2139fc7c98c","2025-06-10T12:45:37.000+02:00","2026-04-22T11:53:45.000+02:00","x86_64","4","SCA,VM,GAV","OS-LIN-SRV DYN,Production,Linux Server,Cloud Agent,Sextan","279.0" +"196050820","242054828","vpbotasim1.sanef.groupe","","00:50:56:90:85:61","10.41.23.31","fe80::250:56ff:fe90:8561","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 94 48 64 86 40 f6-73 5a 9d 2b 20 3f bc 65","No Asset Tag","'+02:00","2026-04-16T10:28:21.000+02:00","cybadmsys","Cloud Agent","b9bd1b16-bc99-45b3-97c0-fd3a002ddf14","2023-10-27T17:19:03.000+02:00","2026-04-22T06:37:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,flux_libre,Production,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0" +"186210649","236667824","vmampsxt5","","00:50:56:82:d1:65, 00:50:56:82:b2:9b, 00:50:56:82:57:b5","10.43.4.29,10.41.40.29,10.43.40.29","fe80::250:56ff:fe82:d165,fe80::250:56ff:fe82:b29b,fe80::250:56ff:fe82:57b5","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ca 2d 25 44 81 97-f3 90 5f 38 8f 3c 46 ca","No Asset Tag","'+02:00","2025-11-24T16:47:40.000+02:00","cybreconcile","Cloud Agent","140e696a-12df-41e9-bebd-8eca61f63123","2023-09-05T12:01:03.000+02:00","2026-04-22T11:52:32.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Obsolete,DEX,Cloud Agent,Linux Server,log4j,Sextan","698.0" +"379524208","352874785","vpcybapta1.sanef.groupe","","00:50:56:9c:1c:c6","10.44.1.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c b1 0d 1b 59 dd 19-7a 4f 80 15 f9 ef 4a 5e","No Asset Tag","'+02:00","2026-03-24T11:13:51.000+02:00","cybreconcile","Cloud Agent","6ea81e60-f188-45fb-8176-8e01a9e42ff3","2025-11-26T12:58:05.000+02:00","2026-04-22T11:40:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN","335.0" +"378910480","352667166","PBM21508.sanef-int.adds","PBM21508","D0:AD:08:A3:E7:2B","10.152.50.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YTY","","'+02:00","2026-04-01T12:46:39.000+02:00","Operateur","Cloud Agent","5173782b-3709-45e8-a1f1-62f0f4b9ecab","2025-11-24T15:29:20.000+02:00","2026-04-22T11:50:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"204049665","246173391","vragtaweb1.recette.adds","VRAGTAWEB1","00:50:56:9C:04:79","10.45.1.230","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 2a f9 13 61 f7 5d-25 c0 a4 3b 3b 71 2b b8","NoAssetTag","'+02:00","2026-02-23T16:48:49.000+02:00","Administrateur","Cloud Agent","a955b044-3569-4f6e-9531-0b99e6e0bec7","2023-12-13T12:45:51.000+02:00","2026-04-22T10:42:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,AgileTime,Recette,Cloud Agent,Windows Server,DRH","255.0" +"196660337","242432944","vpbooaboo1.sanef.groupe","","00:50:56:90:74:ba","10.41.22.137","fe80::250:56ff:fe90:74ba","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 50 d8 89 7a c9 e8-f2 81 33 00 22 be 20 3d","No Asset Tag","'+02:00","2026-04-07T10:28:49.000+02:00","cybadmroot","Cloud Agent","5f9569f7-9009-4dac-bed8-28b03f8a1eba","2023-10-31T18:27:13.000+02:00","2026-04-22T06:36:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,FreeFlow,Flux Libre,Production,flux_libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"358103185","344006089","SVP22519.sanef-int.adds","SVP22519","D0:AD:08:A4:73:5B","10.142.3.18,10.104.2.248","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764H5","","'+02:00","2026-04-21T10:11:46.000+02:00","Superviseur","Cloud Agent","1b59f236-b9ae-433e-ae1f-ec79a1d06ab2","2025-09-09T10:29:14.000+02:00","2026-04-22T06:36:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"129320176","191935115","vpaiiadba1.sanef.groupe","VPAIIADBA1","00:50:56:C0:00:08, 00:50:56:82:AF:FA, 00:50:56:C0:00:01","192.168.207.1,10.30.10.149,192.168.25.1","fe80::84a6:d37d:6fe7:ebc9,fe80::d853:1b8b:ce23:7875,fe80::2430:5d12:2bdd:95e2","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-c1 dd 02 42 cd 42 f4 f4-d2 47 99 c8 4f d1 9f 72","NoAssetTag","'+02:00","2026-03-31T14:25:10.000+02:00","SANEF\benard","Cloud Agent","206b0451-dba0-42ee-8852-9c7fe40505fb","2022-06-27T12:13:50.000+02:00","2026-04-22T11:59:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,Cloud Agent,Windows Server,VRF_INCONNUE,BDD-SQL DYN,Outils prod (Monitoring, NMS, gestion de parc),Sans,Production,OS-WIN-SRV DYN,ORACLE","336.0" +"200009562","244159730","vppeahbst3.sanef.groupe","","00:50:56:90:76:4a","10.41.20.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 8b 75 0d 58 d2 29-46 fe 8f e0 6b 86 b7 f0","No Asset Tag","'+02:00","2026-04-02T10:29:13.000+02:00","cybreconcile","Cloud Agent","e8a2fd6f-d9d0-4f1e-b3fe-741f89579b14","2023-11-20T18:38:20.000+02:00","2026-04-22T11:50:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN,Flux Libre","334.0" +"241858782","276773405","SVP22763.sanef-int.adds","SVP22763","D0:AD:08:A7:28:18","10.209.20.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK2","","'+02:00","2026-04-19T13:55:06.000+02:00","Superviseur","Cloud Agent","263fe7cd-05b4-4f43-aa7e-55238c2e5406","2024-06-05T16:01:51.000+02:00","2026-04-22T06:36:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"176095383","229734617","vvbooaori2.sanef-rec.fr","","00:50:56:9c:11:3b","10.45.6.80","fe80::250:56ff:fe9c:113b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9a 63 d4 9f 6d 8e-61 ea 72 e7 61 59 49 4b","No Asset Tag","'+02:00","2026-03-09T15:41:40.000+02:00","podman_app","Cloud Agent","9a0647fa-be42-4676-b0ca-31699173ba60","2023-06-27T15:28:30.000+02:00","2026-04-22T11:51:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,FreeFlow,Recette,flux_libre","140.0" +"340062892","336780156","lpamebrac3.sanef.groupe","","ee:50:33:80:00:92, ee:50:33:80:00:96","10.41.41.112,10.41.41.116,10.41.41.120,10.43.4.140","fe80::ec50:33ff:fe80:92,fe80::ec50:33ff:fe80:96","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00N","/n/Bios Asset Tag :","'+02:00","2025-11-19T17:26:14.000+02:00","cybreconcile","Cloud Agent","a89c2ad5-34c7-41b1-8205-6946fb9e1015","2025-07-08T10:21:21.000+02:00","2026-04-22T06:36:19.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,Amelie,Production,OS-LIN-SRV DYN","337.0" +"131262266","193313201","lampadv1.serveur.est.sanef.fr","","00:17:A4:77:00:94","10.30.11.52","","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","8","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","28143","","VCX000000D","","'+02:00","2025-04-02T07:34:32.000+02:00","cybreconcile","Cloud Agent","d09c96f9-ad88-46bd-855b-1e92eb7d3ad2","2022-07-12T14:04:21.000+02:00","2026-04-22T11:32:07.000+02:00","x86_64","2","SCA,VM,GAV","DEX,BDD-POS DYN,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Obsolete,ADV-U,Cloud Agent,Linux Server,Sans,Production,Gestion commerciale","350.0" +"255415529","294877240","lramebrac2.sanef-rec.fr","","3e:33:fb:a0:00:d0, 3e:33:fb:a0:00:d4","10.45.2.111,10.45.2.115,10.45.2.118,10.45.5.7,169.254.17.171","fe80::3c33:fbff:fea0:d0,fe80::3c33:fbff:fea0:d4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200Z","/n/Bios Asset Tag :","'+02:00","2026-04-20T11:58:34.000+02:00","cybsecope","Cloud Agent","ddca9e7a-7c2d-4c10-b291-9d97f63ca0ed","2024-08-02T16:53:13.000+02:00","2026-04-22T11:49:42.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Amelie,Sextan,Recette","508.0" +"156298438","209385004","vpdsiaadm1.sanef-int.adds","VPDSIAADM1","00:0C:29:9C:20:66","10.44.3.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-56 4d 11 52 93 a4 00 b0-5d 51 08 9e 97 9c 20 66","NoAssetTag","'+02:00","2026-03-26T12:47:07.000+02:00","SANEF-INT\a03987","Cloud Agent","9e280611-62f3-4835-a6ce-242cbccdcd5d","2023-01-21T06:16:04.000+02:00","2026-04-22T06:36:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,AD,Cloud Agent,Windows Server,DSI,OS-WIN-SRV DYN,VRF_INCONNUE","255.0" +"127861636","190913139","VPAIIADNS2","VPAIIADNS2","00:50:56:82:6A:2D","192.168.2.21","fe80::11d4:4e1e:91f:ab37","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 77 76 26 a1 63 df-65 51 35 af f6 d0 11 4c","NoAssetTag","'+02:00","2026-04-16T10:05:45.000+02:00","Administrateur","Cloud Agent","024a166a-06b7-4133-b335-cb1b71403b8b","2022-06-14T16:05:52.000+02:00","2026-04-22T06:36:09.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DMZ,TAG-SRVEXPOSEINTERNET,Production,Reseau & Telecom,High,SED,Haute,OS-WIN-SRV DYN,Windows Server,VRF_INCONNUE,Critical,Cloud Agent,DNS,Réseaux et Télécom","0.0" +"269157283","299135902","SVP21070.sanef-int.adds","SVP21070","D0:AD:08:A3:7B:6A","10.5.20.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWJ","","'+02:00","2026-04-21T06:27:09.000+02:00","Superviseur","Cloud Agent","209f7669-7485-4a71-aed1-27faeadb8eb6","2024-09-30T15:20:17.000+02:00","2026-04-22T11:56:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"332949821","333625859","vrpatbl2r2.recette.adds","VRPATBL2R2","00:50:56:9C:55:54","10.45.10.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 6a 78 c1 46 96 87-e8 f8 7f 8a 5d 2b 5d c8","NoAssetTag","'+02:00","2026-04-08T10:58:35.000+02:00","RECETTE\b03987","Cloud Agent","36b41bf1-21b6-462c-b7d9-08d46c142fc9","2025-06-12T16:42:09.000+02:00","2026-04-22T12:00:19.000+02:00","64-Bit","3","SCA,VM,GAV","L2R,Recette,Cloud Agent,OS-WIN-SRV DYN","374.0" +"376614015","351611635","PCV22826.sanef-int.adds","PCV22826","D0:AD:08:A3:E6:D5","10.12.7.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YQS","","'+02:00","2026-01-20T16:35:05.000+02:00","Operateur","Cloud Agent","e8fd89f2-f833-4b04-a2be-9e7ccac6b659","2025-11-14T12:41:51.000+02:00","2026-04-22T11:02:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"295082073","316880283","vpdepaast1.sanef.groupe","","00:50:56:90:cb:02","10.41.40.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 82 82 88 55 c1 62-ca dc 83 58 e4 67 9a 31","No Asset Tag","'+02:00","2026-01-21T16:30:27.000+02:00","cybadmroot","Cloud Agent","6ce50ffc-ab6f-4c7e-ba3a-255e14dd5054","2025-01-27T13:04:21.000+02:00","2026-04-22T11:51:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","140.0" +"174237279","228464687","sppeaanvr18","SPPEAANVR18","D4:F5:EF:8A:BB:11","10.41.7.117","fe80::d6b2:5fcc:f9cb:b9d9","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","1","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ222807H6","","'+02:00","2026-02-04T12:26:17.000+02:00","admin_astia","Cloud Agent","f98d1385-83c9-4354-8ceb-a06a4e054883","2023-06-13T11:45:48.000+02:00","2026-04-22T06:35:37.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX","523.0" +"279169027","304713053","vrdecasas1.sanef.groupe","","00:50:56:82:b0:e2","10.45.1.4","fe80::250:56ff:fe82:b0e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 69 6b 63 46 e2 ad-5f 6a 83 36 0b fa 28 da","No Asset Tag","'+02:00","2026-03-23T11:52:39.000+02:00","cybadmsys","Cloud Agent","b88811e0-cc8a-4ee1-bf37-49d372569e65","2024-11-14T15:48:31.000+02:00","2026-04-22T12:04:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,OS-LIN-SRV DYN","137.0" +"382130998","353830706","PCB22305.sanef.groupe","PCB22305","D0:AD:08:A3:7B:E1","10.252.42.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZT","8CC3502YZT","'+02:00","2026-04-21T09:33:47.000+02:00","SANEF\bellaton","Cloud Agent","50a3b475-c547-4ea6-9280-ff43bf0d748e","2025-12-06T16:10:14.000+02:00","2026-04-22T12:00:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","351.0" +"129479933","192045805","vpptrabalx1.sanef.groupe","VPPTRABALX1","00:50:56:82:1C:D9","10.41.49.15","fe80::9b0e:bf84:cbc4:daff","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 34 3c 8b f5 07 ec-cf 49 61 f7 ea e8 43 fc","NoAssetTag","'+02:00","2026-04-07T16:21:44.000+02:00","Administrateur","Cloud Agent","f637be0a-2bbd-49b1-884a-81f7c4788e7a","2022-06-28T15:08:08.000+02:00","2026-04-22T11:46:22.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Recette,BDD-SQL DYN,OS-WIN-SRV DYN,ALX,DEX,Cloud Agent,Windows Server,VRF_TRAFIC_DC","366.0" +"378053755","352302027","PCV21549.sanef-int.adds","PCV21549","D0:AD:08:A3:7B:49","10.210.7.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YS0","","'+02:00","2026-04-22T04:58:51.000+02:00","Operateur","Cloud Agent","e8ce0988-cb0a-4881-a9eb-f01c146837f2","2025-11-20T12:50:26.000+02:00","2026-04-22T11:53:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"236300233","264488384","lpemvbaemv1.sanef.groupe","","00:17:a4:77:1c:9c, 00:17:a4:77:1c:6c","192.168.103.106,192.168.101.106","fe80::217:a4ff:fe77:1c9c,fe80::217:a4ff:fe77:1c6c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","VCX000070E","","'+02:00","2024-04-18T14:38:57.000+02:00","oracle","Cloud Agent","84a94940-e1b1-4d34-a2ad-001fb49443b0","2024-05-13T14:58:45.000+02:00","2026-04-22T11:41:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,EMV,PCI Bunker EMV,Production,PCI Bunker EMV - VLAN Stecard v17","682.0" +"130587922","192835850","vrtraagas1","","00:50:56:82:53:63","10.45.1.68","fe80::250:56ff:fe82:5363","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7982","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 06 aa 79 c1 4c bd-ed fa 16 f4 63 a8 52 0b","No Asset Tag","'+02:00","2024-12-04T17:32:24.000+02:00","cybastsys","Cloud Agent","7f6c1baa-fc5a-4c14-aa51-a16daa713dc6","2022-07-07T11:58:07.000+02:00","2026-04-22T11:41:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,MID-APACHE-TOMCAT DYN,Gaspar,Obsolete,Recette,Exploitation,DEX","520.0" +"196043340","242053537","vpbotatsp1.sanef.groupe","","00:50:56:90:c9:33","10.41.23.26","fe80::250:56ff:fe90:c933","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 5d c7 1c 15 78 d6-37 84 9b 58 0c b4 39 c7","No Asset Tag","'+02:00","2026-04-16T09:42:23.000+02:00","cybreconcile","Cloud Agent","1f745a43-a175-4dbd-9a53-4c91c580be6a","2023-10-27T17:08:10.000+02:00","2026-04-22T11:59:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,Flux Libre","141.0" +"341913504","337317369","PCB21150.sanef.groupe","PCB21150","D0:AD:08:A3:E7:33","10.152.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.19.01","8CC3502YTN","","'+02:00","2026-04-21T11:02:37.000+02:00","SANEF\DHEILLY","Cloud Agent","fdbdcf0b-cf7f-41cb-96cd-dff207b44e78","2025-07-15T11:58:05.000+02:00","2026-04-22T12:04:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","52.0" +"324359363","330213430","vpgawbpgs1","","00:50:56:90:03:b9","10.42.16.18","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d9 70 c1 ad cb 57-a4 02 b9 79 bd d9 62 3e","No Asset Tag","'+02:00","2026-03-19T15:40:40.000+02:00","cybreconcile","Cloud Agent","013e3747-9807-4e34-ab9a-05dd8f2c2731","2025-05-13T12:04:37.000+02:00","2026-04-22T11:44:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","144.0" +"279142399","304713252","vrdecasas5.sanef.groupe","","00:50:56:82:39:c1","10.45.1.8","fe80::250:56ff:fe82:39c1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 1e bb 86 a2 10 d4-d1 9b 68 4c 1c ad 1a f1","No Asset Tag","'+02:00","2026-03-23T11:53:58.000+02:00","cybadmsys","Cloud Agent","865bfabf-855d-4cbf-8cf8-bb525d7bebd1","2024-11-14T15:51:08.000+02:00","2026-04-22T06:33:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","335.0" +"373217282","350071907","vpameasxt4.sanef.groupe","","00:50:56:90:88:7a, 00:50:56:90:2c:f7","10.43.4.28,10.41.41.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 66 0c 01 8e 76 5e-7a f3 dc b7 8e 3c f0 98","No Asset Tag","'+02:00","2025-11-12T12:14:33.000+02:00","cybreconcile","Cloud Agent","a2764d3f-f9b0-4ed4-b1db-9093bb564a44","2025-10-31T12:09:44.000+02:00","2026-04-22T06:33:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Production","662.0" +"160118702","213073412","vrsupacen1.sanef.groupe","","00:50:56:82:61:85","10.45.0.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 a5 ad 02 11 fa 62-d7 b4 b7 7b cb 4c c7 da","No Asset Tag","'+02:00","2026-03-11T12:35:33.000+02:00","cybadmsys","Cloud Agent","870de1da-7a09-4dfc-8dbc-005ee6213ec6","2023-02-21T16:18:53.000+02:00","2026-04-22T11:37:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,MID-NGINX DYN,MID-APACHE-TOMCAT DYN","142.0" +"358647992","344184023","VMMPBXC1.sanef-int.adds","VMMPBXC1","00:50:56:90:A8:01","10.41.60.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 b3 7f 30 ee 57 07-3d ec 59 e1 55 ea 2b 77","NoAssetTag","'+02:00","2026-04-16T16:43:55.000+02:00","UserPCT","Cloud Agent","1e775895-3944-4c5c-9c2a-f1d2634f10f2","2025-09-10T17:32:42.000+02:00","2026-04-22T11:51:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"129356560","191963474","vpormanvr1","VPORMANVR1","00:50:56:82:15:77","10.27.3.12","fe80::56d9:e31e:a9ce:a3bb","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 95 1f 6e 12 8e 6d-b0 17 41 d6 b8 5f 27 ec","NoAssetTag","'+02:00","2026-03-24T10:15:26.000+02:00","Administrateur","Cloud Agent","9460bb56-68db-4208-b3ff-e4fe25bea631","2022-06-27T18:13:28.000+02:00","2026-04-22T06:32:54.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR,VRF_INCONNUE,Production,Exploitation","524.0" +"196660268","242432305","vpbooosea1.sanef.groupe","","00:50:56:90:2a:7c","10.41.22.135","fe80::250:56ff:fe90:2a7c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 34 7c c7 7b 02 91-50 1e 03 6e f3 bf 06 1c","No Asset Tag","'+02:00","2026-04-07T14:56:17.000+02:00","cybreconcile","Cloud Agent","845addd5-d249-4429-a295-0884f8d27548","2023-10-31T18:19:56.000+02:00","2026-04-22T11:50:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,FreeFlow","334.0" +"129477171","192044987","RMILSAS1","RMILSAS1","9C:8E:99:1B:B7:34","10.30.10.8","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24536)","6.1","Computers / Server","HPE ProLiant DL360 G7 Server","12","3066","Intel(R) Xeon(R) CPU X5675 @ 3.07GHz","32768","HP P68","CZJ12607YR","","'+01:00","2026-02-03T18:38:30.000+02:00","administrateur","Cloud Agent","7d21a719-c073-416c-8288-5eb2e456fb42","2022-06-28T14:53:37.000+02:00","2026-04-22T06:32:19.000+02:00","64 bits","3","SCA,VM,PM,GAV","Recette,DSI,SAS,Obsolete,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Finances Comptabilité / Consolidation,Windows Server 2008,VRF_INCONNUE","530.0" +"323178071","329807578","PCB21141.sanef.groupe","PCB21141","60:45:2E:11:62:B9","10.255.2.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV4","8CC3502YV4","'+02:00","2026-04-07T14:20:52.000+02:00","SANEF\WALLON","Cloud Agent","26c164b8-760d-4213-bc27-818668532691","2025-05-09T12:13:35.000+02:00","2026-04-22T11:27:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"324752677","330493333","sppeaanvr30","SPPEAANVR30","8C:84:74:E5:D0:49","10.41.7.129","fe80::bdab:15f2:9b99:2dca","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G11 Server","16","2600","INTEL(R) XEON(R) SILVER 4509Y","16142","HPE 2.48","CZ2D210MW6","","'+02:00","2026-02-09T16:18:06.000+02:00","Administrateur","Cloud Agent","cb82a827-f08e-4cbb-861c-71db5ad249fe","2025-05-14T17:17:28.000+02:00","2026-04-22T11:41:39.000+02:00","64-Bit","3","SCA,VM,GAV","Cloud Agent,OS-WIN-SRV DYN,Production,NVR","508.0" +"249294684","288667198","vrsvpaalb1","VRSVPAALB1","00:50:56:9C:B4:6E","10.45.9.173","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 45 34 6d 51 1d ff-e4 43 e7 40 b8 46 04 66","NoAssetTag","'+02:00","2026-02-16T16:22:20.000+02:00","svpadmin","Cloud Agent","cfde6c2b-ea10-4661-afc6-af01a1620475","2024-07-08T12:33:12.000+02:00","2026-04-22T12:02:48.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Recette,SVP,Cloud Agent","499.0" +"335478185","334615703","PCB24181.sanef.groupe","PCB24181","24:FB:E3:F3:F9:F6","10.1.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136Y0","","'+02:00","2026-04-13T16:33:26.000+02:00","SANEF\mauron","Cloud Agent","b0867bab-9417-4625-81fd-c37ba5617484","2025-06-23T11:11:43.000+02:00","2026-04-22T11:42:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"283859437","309489715","vpstlbpea2","VPSTLBPEA2","00:50:56:90:1F:A3","10.41.13.51","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3453) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 8a 2c 31 eb 7b e2-3c 27 f5 3d 6b ab ea eb","NoAssetTag","'+02:00","2026-04-20T15:31:07.000+02:00","user_stl","Cloud Agent","b9e5b4b3-6485-4a7a-b412-20384ea4c814","2024-12-03T10:33:43.000+02:00","2026-04-22T11:37:47.000+02:00","64-Bit","2","SCA,VM,GAV","Production,Cloud Agent,Systel,BDD-SQL DYN,OS-WIN-SRV DYN","346.0" +"129355937","191959426","vpbovanvr1","VPBOVANVR1","00:50:56:82:6C:00","10.137.5.10","fe80::182f:5704:5a7:9917","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 b2 37 61 bc b0 41-54 8f b6 3f 81 e7 c2 19","NoAssetTag","'+02:00","2026-03-11T13:39:31.000+02:00","Administrateur","Cloud Agent","fc728f07-8bdd-4554-8de4-b076fb91a21a","2022-06-27T17:48:20.000+02:00","2026-04-22T09:44:26.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Production,Exploitation,DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_INCONNUE","523.0" +"264669796","297610192","vrpbiadgw1.recette.adds","VRPBIADGW1","00:50:56:9C:A6:3A","10.45.7.169","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c c1 b3 9e 94 e6 5d-1b 9c 2c c2 f4 c0 32 8c","NoAssetTag","'+02:00","2026-03-23T12:58:42.000+02:00","Administrateur","Cloud Agent","38e9c70e-17c6-44d8-b724-fc523f5013c7","2024-09-11T11:01:41.000+02:00","2026-04-22T11:49:50.000+02:00","64-Bit","2","SCA,VM,GAV","OS-WIN-SRV DYN,Cloud Agent,Recette,PowerBI","249.0" +"196660165","242432941","vpbooaori1.sanef.groupe","","00:50:56:90:a0:1d","10.41.22.139","fe80::250:56ff:fe90:a01d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 74 23 cd 47 6f b2-af db be 5a b4 1b cc 01","No Asset Tag","'+02:00","2026-04-07T15:38:31.000+02:00","cybreconcile","Cloud Agent","9d284d8e-c47d-44ae-acfe-5cc543379c58","2023-10-31T18:27:13.000+02:00","2026-04-22T11:37:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,flux_libre,Production,OS-LIN-SRV DYN,Flux Libre","336.0" +"415782722","367597484","PCB20635.sanef.groupe","PCB20635","BC:0F:F3:3D:18:C1","10.252.4.39","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DSQ","","'+02:00","2026-04-14T17:24:54.000+02:00","","Cloud Agent","7383e264-afcf-4191-84d6-36a6cf4498a8","2026-04-14T15:06:17.000+02:00","2026-04-22T06:30:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"230366366","258599098","ls-st-etienne","LS-ST-ETIENNE","00:50:56:90:50:84","10.41.2.73","fe80::b44c:7df5:412f:6ffa","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 9c ef 71 82 7a ba-4a d9 c1 e6 e3 d0 07 12","NoAssetTag","'+02:00","2026-03-03T16:19:26.000+02:00","svpadmin","Cloud Agent","de3f12fa-6ee4-4493-8272-cb43d9724087","2024-04-16T15:59:36.000+02:00","2026-04-22T11:54:12.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Production,High,VRF_PEAGE_DC,Péage,SVP","681.0" +"240441858","274892555","vpiadawsus1.sanef-int.adds","VPIADAWSUS1","00:50:56:9A:AD:03","10.44.3.36","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1a df 95 da a3 79 e3-a2 a9 1c 4b a5 6a 2f 71","NoAssetTag","'+02:00","2026-04-15T02:54:07.000+02:00","SANEF-INT\SA05604","Cloud Agent","3e0a1037-8bee-4193-8996-bb04ea2fdf1d","2024-05-30T14:44:02.000+02:00","2026-04-22T11:49:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN","246.0" +"365246435","346832501","PCV21570.sanef-int.adds","PCV21570","D0:AD:08:A3:E6:C4","10.154.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YR4","","'+02:00","2026-03-18T08:20:20.000+02:00","Operateur","Cloud Agent","1d26f946-9290-4140-858b-24efa0dd37cc","2025-10-03T15:36:00.000+02:00","2026-04-22T11:52:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"300252485","320225475","SVP22858.sanef-int.adds","SVP22858","D0:AD:08:A3:7B:D6","10.12.20.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVV","","'+02:00","2026-03-19T15:00:23.000+02:00","Superviseur","Cloud Agent","4c20d3cb-6fab-4735-9146-aa5721ce5fc0","2025-02-14T12:09:48.000+02:00","2026-04-22T11:56:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"322357104","329435133","PCB23706.sanef.groupe","PCB23706","6C:0B:5E:ED:72:9B","10.207.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L45","","'+02:00","2026-04-20T10:09:50.000+02:00","SANEF\thibautj","Cloud Agent","2e634196-e903-4721-8348-7d1470b94107","2025-05-06T11:58:23.000+02:00","2026-04-22T12:00:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"197825360","243087339","nvr-spare-mtz","NVR-SPARE-MTZ","00:50:56:90:03:D9","10.12.7.252","fe80::29ae:1e3:beea:c9ab","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 d4 b3 ee b1 58 4b-cd 69 31 aa c7 85 fb eb","NoAssetTag","'+02:00","2026-01-28T12:54:31.000+02:00","Administrateur","Cloud Agent","8471a142-dfda-4b75-8759-ba79f32272e2","2023-11-07T13:29:47.000+02:00","2026-04-22T11:41:15.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,NVR","523.0" +"332275911","333860642","vpameahtp2.sanef.groupe","","00:50:56:90:9d:bb, 00:50:56:90:92:0d","10.41.41.51,10.43.4.38","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f0 57 9e 98 96 4a-f1 28 f2 17 77 ff 2b ef","No Asset Tag","'+02:00","2025-10-29T10:52:43.000+02:00","cybreconcile","Cloud Agent","8d17b0bd-7464-48d9-b889-b0cf6d6a589c","2025-06-10T12:45:05.000+02:00","2026-04-22T11:32:50.000+02:00","x86_64","4","SCA,VM,GAV","Production,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,Sextan","278.0" +"373211951","350071560","vpameasxt3.sanef.groupe","","00:50:56:90:12:34, 00:50:56:90:02:9e","10.41.41.62,10.43.4.27","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f0 5c bc 40 22 b0-70 47 58 4d 4a ec 08 11","No Asset Tag","'+02:00","2025-11-12T12:04:43.000+02:00","cybreconcile","Cloud Agent","3ac94f2b-c68d-4251-9cb8-c5b3da4b14a7","2025-10-31T12:07:15.000+02:00","2026-04-22T11:53:00.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Sextan,Production,Linux Server,OS-LIN-SRV DYN","662.0" +"229382460","258006652","vpsupbmbi1.sanef.groupe","","00:50:56:8d:00:e3","10.44.5.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","23825","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d c9 2f 47 11 62 e6-0a 5e f6 34 dd d8 f1 3a","No Asset Tag","'+02:00","2026-03-30T11:45:46.000+02:00","cybadmroot","Cloud Agent","58c27d31-4492-4469-b10e-1d1828777cb1","2024-04-11T16:46:47.000+02:00","2026-04-22T11:30:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","60.0" +"130331258","192654198","VPAIIAPVC4.sanef.groupe","VPAIIAPVC4","00:50:56:82:25:3C","10.41.11.14","fe80::e866:9ddd:c507:1e32","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 f7 24 0c a2 85 27-6a cc 5a a0 ff e4 16 b5","NoAssetTag","'+02:00","2024-09-09T17:25:42.000+02:00","SANEF\durmarque","Cloud Agent","724b1b60-67b5-423a-8ae0-46e31904ef93","2022-07-05T13:48:37.000+02:00","2026-04-22T11:39:15.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Obsolete,Sans,Exploitation,Production,Cloud Agent,Windows Server,DEX,VRF_INCONNUE,NVR,Workstation","518.0" +"338807292","336780149","vpintaprx2.sanef.groupe","","00:50:56:82:0d:77","192.168.20.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 46 17 6e 3f 09 37-1d fd 03 38 fd fb 2e 79","No Asset Tag","'+02:00","2026-04-15T14:51:46.000+02:00","cybreconcile","Cloud Agent","f6767056-31a2-4cd1-9c8a-288474c49fce","2025-07-03T10:02:20.000+02:00","2026-04-22T11:43:03.000+02:00","x86_64","4","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Gestion institutionnel,TAG-SRVEXPOSEINTERNET,High,VRF_INCONNUE,Production,ServersInCyberark","132.0" +"228415190","257516810","ls-sarreguemines","LS-SARREGUEMINE","00:50:56:90:BD:4D","10.41.2.109","fe80::3459:868c:786e:f3c6","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a3 5c 0c 00 93 6e-9a 66 0e 5b 37 b9 ba f2","NoAssetTag","'+02:00","2026-02-17T12:07:41.000+02:00","svpadmin","Cloud Agent","b78f1892-49f8-4faf-8f3e-45d153820aba","2024-04-08T11:24:30.000+02:00","2026-04-22T11:51:49.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Péage,High,SVP,OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server","508.0" +"279112238","304690920","vpemvasat1.sanef.groupe","","00:50:56:86:ba:94","192.168.100.141","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 06 3f cb fb b5 ec dd-00 c2 5f a2 97 91 c1 69","No Asset Tag","'+02:00","2025-11-18T17:20:47.000+02:00","root","Cloud Agent","9e455e15-7fc3-4b0a-9b65-70628a2f0240","2024-11-14T12:47:47.000+02:00","2026-04-22T11:52:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN,BDD-POS DYN,OS-LIN-SRV DYN","335.0" +"351094057","341042665","PCB25823.sanef.groupe","PCB25823","28:95:29:1A:D9:2A","10.205.0.113,192.168.1.114","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTT","","'+02:00","2026-04-21T09:14:43.000+02:00","SANEF\PAPE","Cloud Agent","efce715a-e385-42e5-a3eb-67955ff0fada","2025-08-13T13:49:12.000+02:00","2026-04-22T11:31:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"244010477","283212503","MTO22902.sanef.groupe","MTO22902","D0:AD:08:A3:E7:28","10.106.31.1","fe80::7716:a0ee:a31b:d344","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNQ","","'+02:00","2025-09-05T15:09:51.000+02:00","SANEF\meteonewsW11","Cloud Agent","366c942a-eaa7-4989-bbe7-78a1623a88c1","2024-06-14T13:00:57.000+02:00","2026-04-22T11:45:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"152243081","206847720","vpiadaada1.sanef-int.adds","VPIADAADA1","00:50:56:8D:7C:9C","10.44.2.165","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 0d 45 08 74 02 89 a2-b9 36 77 a6 8a 44 d0 8f","NoAssetTag","'+02:00","2026-03-26T12:47:00.000+02:00","CYBADMSYS","Cloud Agent","c7c9bc3f-b1c4-45ad-97bb-207d4b097635","2022-12-16T12:47:17.000+02:00","2026-04-22T11:17:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,AD,OS-WIN-SRV DYN,VRF_INCONNUE","249.0" +"310772909","324742436","PCB22464.sanef.groupe","PCB22464","F0:20:FF:9A:ED:18","192.168.1.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HWJ","","'+02:00","2026-04-14T09:51:50.000+02:00","SANEF\CHAGNEAU","Cloud Agent","29009130-b181-4b77-8aec-c69211093e98","2025-03-25T10:38:52.000+02:00","2026-04-22T11:38:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"139276377","198335416","vpdecasas7.sanef.groupe","","00:50:56:82:3f:e9","10.30.11.155","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257964","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 e7 36 38 3e d1 bc-ec 48 12 4d 54 f9 09 92","No Asset Tag","'+02:00","2026-03-25T11:48:03.000+02:00","cybreconcile","Cloud Agent","2f728387-f3ea-4e45-b052-1181cdede9fd","2022-09-08T09:19:40.000+02:00","2026-04-22T11:37:59.000+02:00","x86_64","3","SCA,VM,PM,GAV","ServersInCyberark,OS-LIN-SRV DYN,Production,Finances Comptabilité / Consolidation,Cloud Agent,Linux Server,SAS,DSI,VRF_INCONNUE,Obsolete","71.0" +"190915657","239409823","vvaflsmtp1.sanef-rec.fr","","00:50:56:9c:ea:e1, 1a:50:83:10:5f:17","10.45.0.231,10.88.0.1","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 4d 5b 62 d1 1d 4d-5c 8e 04 15 7b 70 f8 f3","No Asset Tag","'+02:00","2026-03-09T15:29:49.000+02:00","cybsupsys","Cloud Agent","e6c3ed13-fe7a-4dd5-adf7-dafc493ace10","2023-10-02T15:20:36.000+02:00","2026-04-22T11:43:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,flux_libre,Recette,FreeFlow","142.0" +"378000978","352286611","PCB22334.sanef.groupe","PCB22334","D0:AD:08:A3:7B:6D","10.200.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWF","8CC3502YWF","'+02:00","2026-04-22T04:40:21.000+02:00","SANEF\ermery","Cloud Agent","ee3cec85-08ed-451a-a1a3-8b63e454f676","2025-11-20T10:41:34.000+02:00","2026-04-22T11:42:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"188336946","237946999","MTR-2J775R3","MTR-2J775R3","90:8D:6E:8E:1C:47","10.1.32.200","fe80::e863:75c2:4531:707e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","2J775R3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","6653bb0a-23f7-42ce-a825-60492c465dac","2023-09-17T09:54:20.000+02:00","2026-04-22T11:38:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"321615979","329104304","PCB21629.sanef.groupe","PCB21629","D0:AD:08:A3:E6:B7","10.119.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSB","8CC3502YSB","'+02:00","2026-04-16T09:22:03.000+02:00","SANEF\haugeard","Cloud Agent","3195b060-38dd-47e7-943c-0662025cdbc1","2025-05-02T16:32:29.000+02:00","2026-04-22T11:44:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"131405556","193423788","vmampdif2.sanef.groupe","","00:50:56:82:22:6E","10.41.40.121","fe80::250:56ff:fe82:226e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 09/17/2015","VMware-42 02 6b e5 f5 8f 41 09-6e 8e 8b 0d ad 3e ff 6b","No Asset Tag","'+02:00","2018-09-25T12:04:43.000+02:00","cybreconcile","Cloud Agent","677ad417-17ef-4c5d-baa3-df481b654afd","2022-07-13T10:27:16.000+02:00","2026-04-22T11:59:02.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Obsolete,VRF_TRAFIC_DC,Sans,Trafic,Production,Sextan,Cloud Agent,Linux Server","693.0" +"128618343","191426489","ls-santerre","LS-SANTERRE","00:50:56:90:61:B8","10.41.2.50","fe80::656d:2b7a:3f5d:64da","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 48 b8 8e f5 21 14-2f a6 b8 bc c0 d6 31 23","NoAssetTag","'+02:00","2026-03-02T16:49:35.000+02:00","svpadmin","Cloud Agent","8b825828-6d43-4f19-b15e-c5ae581690d5","2022-06-21T16:08:10.000+02:00","2026-04-22T11:54:46.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,SVP,OS-WIN-SRV DYN,Windows Server,Haute,Production,Péage,High,Cloud Agent,DEX","641.0" +"318433915","328054839","PCB22916.sanef.groupe","PCB22916","D0:AD:08:A3:7B:DA","10.104.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVM","8CC3502YVM","'+02:00","2026-04-21T11:39:58.000+02:00","SANEF\merciers","Cloud Agent","cb9ab398-b81a-4e65-b2c8-77c8b62c9aa1","2025-04-22T16:24:37.000+02:00","2026-04-22T11:30:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"202418413","245312456","vrameasxt4.sanef-rec.fr","","00:50:56:9c:72:5e, 00:50:56:9c:e0:9a","10.45.4.63,10.45.2.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8a 86 1a 6c 10 8d-5a bd 34 fd 12 d8 29 bc","No Asset Tag","'+02:00","2026-04-20T15:35:19.000+02:00","cybadmsys","Cloud Agent","3b64fcf3-897c-4344-a6fe-988e0d1200bd","2023-12-04T17:50:25.000+02:00","2026-04-22T11:32:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,DEX,Cloud Agent,Linux Server,Sextan","95.0" +"383937293","354709045","PCB22290.sanef.groupe","PCB22290","D0:AD:08:A3:7D:06","10.252.42.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ4","8CC3502YZ4","'+02:00","2026-03-29T09:12:21.000+02:00","SANEF\HADDAOUI","Cloud Agent","5a78027d-3284-4be4-ad78-cb004303c3a6","2025-12-15T09:40:23.000+02:00","2026-04-22T11:47:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"221319867","254240324","ls-bapaume","LS-BAPAUME","00:50:56:90:7B:77","10.41.2.32","fe80::6eae:35c5:543e:82e2","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 92 d0 bc 43 ce 25-18 09 a5 9b 79 6f 31 3e","NoAssetTag","'+02:00","2026-04-02T10:07:44.000+02:00","svpadmin","Cloud Agent","7b20c9db-d1d6-457e-8a53-5be841aa0d61","2024-03-11T10:42:58.000+02:00","2026-04-22T11:55:23.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,OS-WIN-SRV DYN,High,VRF_PEAGE_DC,Péage,Production,Cloud Agent,Windows Server,DEX","507.0" +"175025285","228996977","vrairahtp1.sanef.groupe","","00:50:56:82:7e:b4","10.43.255.19","fe80::1162:faac:f084:2df3","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","16017","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 24 2b 85 10 aa 99-9a 38 33 26 87 ab 0c 4a","No Asset Tag","'+02:00","2026-04-21T10:08:07.000+02:00","cybsecope","Cloud Agent","6ce91fb2-96e6-46d6-a826-619283611851","2023-06-19T15:39:54.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette,DFIN,Satisf'aire","68.0" +"357858337","343892477","PCB21272.sanef.groupe","PCB21272","D0:AD:08:0C:7D:16","10.4.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJT","","'+02:00","2026-04-21T09:10:22.000+02:00","SANEF\RENAULT","Cloud Agent","30c12c57-d14d-4c68-afa6-265824b06bdd","2025-09-08T12:26:06.000+02:00","2026-04-22T11:12:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"131396612","193418131","vptraatpf1.sanef.groupe","","00:50:56:82:59:9c","192.168.40.10","fe80::7fff:8231:ebd9:a751","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","5966","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d a0 20 4c 72 cf 33-f0 57 b9 fc e5 89 2a e3","No Asset Tag","'+02:00","2025-01-21T11:12:20.000+02:00","cybreconcile","Cloud Agent","4d179ac2-b564-4c18-a3f8-792967439925","2022-07-13T09:35:23.000+02:00","2026-04-22T11:30:35.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Temps de parcours,VRF_INCONNUE,ServersInCyberark,DMZ,Trafic,Sans,Production,Obsolete,DEX,TAG-SRVEXPOSEINDIRECT","491.0" +"218937543","253225435","OSA20948.sanef-int.adds","OSA20948","BC:0F:F3:87:6F:89","10.152.20.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLD","","'+02:00","2026-03-19T07:29:21.000+02:00","Superviseur","Cloud Agent","9a1ed69f-b46f-4816-99e8-d768ca7a6726","2024-02-28T18:16:37.000+02:00","2026-04-22T06:26:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"372447411","349729152","vpgesaquo2.sanef.groupe","VPGESAQUO2","00:50:56:82:49:86","10.100.16.8","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","4095","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 00 c1 67 2a 6f 08-6f 90 03 bc 19 ff ff 0d","NoAssetTag","'+02:00","2026-01-29T13:25:48.000+02:00","Administrateur","Cloud Agent","3bdcbab1-92b5-4bc6-b9e3-07af7e13a590","2025-10-28T16:04:20.000+02:00","2026-04-22T11:45:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","345.0" +"270831169","300149099","SVP21040.sanef-int.adds","SVP21040","D0:AD:08:A3:7B:64","10.152.20.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWN","","'+02:00","2026-03-30T16:49:23.000+02:00","Superviseur","Cloud Agent","6046a9f1-f635-4d0b-8285-7dc9d702fb2a","2024-10-08T14:53:32.000+02:00","2026-04-22T11:22:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"363021135","345948002","vpmetaads1.sanef-int.adds","VPMETAADS1","00:50:56:94:06:51","10.44.7.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 14 75 aa a8 58 81 94-ca c3 03 82 b5 84 7d 96","NoAssetTag","'+02:00","2026-03-26T12:47:38.000+02:00","SANEF-INT\B17402","Cloud Agent","3725e8d3-8733-4e4a-bc07-a6147e2058e3","2025-09-25T16:40:41.000+02:00","2026-04-22T11:34:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,AD,Production,Radius","246.0" +"334074300","334032724","PCB24113.sanef.groupe","PCB24113","48:EA:62:C8:83:E6","10.104.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6H","","'+02:00","2026-03-29T09:27:49.000+02:00","SANEF\merlin","Cloud Agent","6a821545-714a-4d32-a95d-e6176321a125","2025-06-17T16:06:11.000+02:00","2026-04-22T11:47:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"324739346","330493338","sppeaanvr33","SPPEAANVR33","8C:84:74:E5:B1:BF","10.41.7.132","fe80::673f:30e2:bb50:a939","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G11 Server","16","2600","INTEL(R) XEON(R) SILVER 4509Y","16142","HPE 2.48","CZ2D210MW8","","'+02:00","2026-02-10T12:05:00.000+02:00","Administrateur","Cloud Agent","1a67f8b8-acf9-4944-8f55-f56b74785d87","2025-05-14T17:17:39.000+02:00","2026-04-22T11:45:19.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,Production,OS-WIN-SRV DYN,Cloud Agent","508.0" +"129933658","192383691","vampsycapp2.sanef.groupe","VAMPSYCAPP2","00:50:56:82:0C:FB","10.41.40.101","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24130)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","32767","Phoenix Technologies LTD 6.00","VMware-42 02 a2 f1 8f 74 1c 04-ac 76 8b 15 d2 01 15 33","NoAssetTag","'+01:00","2023-10-24T11:07:06.000+02:00","administrateur","Cloud Agent","df33b9d1-8071-447a-b5e8-ddc7fc65115e","2022-07-01T09:24:33.000+02:00","2026-04-22T11:36:38.000+02:00","64 bits","3","SCA,VM,PM,GAV","DEX,Cloud Agent,Windows Server,Windows Server 2008,Obsolete,SIG,VRF_TRAFIC_DC,Sans,Production,Patrimoine,OS-WIN-SRV DYN","530.0" +"325026193","331288660","viaflarat1.sanef.groupe","","00:50:56:9c:f8:a4","10.46.34.78","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c fc a9 c7 79 3d 47-d0 96 20 15 f9 73 ce f7","No Asset Tag","'+02:00","2026-03-19T16:15:58.000+02:00","root","Cloud Agent","36a1809e-1763-4a31-b386-905435d4e693","2025-05-15T17:10:18.000+02:00","2026-04-22T11:40:35.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,flux_libre,Linux Server,Cloud Agent","139.0" +"358057716","343988006","SVP21130.sanef-int.adds","SVP21130","D0:AD:08:A2:AE:D9","10.100.2.29,10.192.8.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764K0","","'+02:00","2026-04-17T10:50:38.000+02:00","Superviseur","Cloud Agent","86fe105f-0e71-45d9-93e5-77d807c50fd2","2025-09-09T07:34:48.000+02:00","2026-04-22T06:23:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"213853686","251125959","sppeaanvr25","SPPEAANVR25","20:67:7C:D6:85:11","10.41.7.124","fe80::bc40:828:2e5:38b3","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ83804D3","","'+02:00","2026-03-25T18:06:01.000+02:00","CYBADMSYS","Cloud Agent","c5464547-7961-4bbb-b4bb-2d4e4095b1a5","2024-02-05T19:44:34.000+02:00","2026-04-22T11:50:03.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR","523.0" +"190553349","239196400","vvpeaabst1.sanef-rec.fr","","00:50:56:9c:08:26","10.45.10.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cb 7a b5 04 04 c1-b5 e0 a7 9f 70 ec 14 12","No Asset Tag","'+02:00","2026-03-12T10:14:24.000+02:00","cybsupapp","Cloud Agent","d44ce2e4-deed-4113-ae51-ec421311d875","2023-09-29T16:41:34.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,BDD-ELA DYN,Flux Libre,flux_libre","139.0" +"197446702","242880023","MTR-22DSNT3","MTR-22DSNT3","90:8D:6E:94:31:A9","10.5.32.200","fe80::8da2:d7dd:e776:80bd","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","22DSNT3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","bbae03a8-6e74-4ea3-842d-fecf48a034ac","2023-11-05T13:23:21.000+02:00","2026-04-22T06:23:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"176428756","229996347","vrdsiakms1.recette.adds","VRDSIAKMS1","00:50:56:82:EC:B9","10.45.7.35","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 d3 5f 03 01 57 e8-95 2a 00 07 c1 d3 a9 45","NoAssetTag","'+02:00","2025-11-12T01:23:12.000+02:00","RECETTE\ndessoye","Cloud Agent","662b28d0-a049-4252-84fa-5d80cd7b8dff","2023-06-29T15:04:25.000+02:00","2026-04-22T11:32:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,DSI,OS-WIN-SRV DYN,Cloud Agent,Windows Server,AD,Recette","347.0" +"271018752","300246972","REX21532.sanef-int.adds","REX21532","D0:AD:08:A3:7B:70","10.45.11.238","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWM","","'+02:00","2025-09-22T10:53:36.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","e82eabde-88b2-4bbb-92c0-8a69f350e687","2024-10-09T12:23:04.000+02:00","2026-04-22T11:45:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"365244238","346833112","PCV21526.sanef-int.adds","PCV21526","D0:AD:08:A3:7B:6B","10.100.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YWQ","","'+02:00","2026-04-01T08:42:55.000+02:00","Operateur","Cloud Agent","51d67d07-7364-45f4-b1d8-a357f0522a59","2025-10-03T15:46:11.000+02:00","2026-04-22T11:37:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"213122768","250788889","vpbckangw1","","00:50:56:82:aa:33","192.168.18.52","fe80::250:56ff:fe82:aa33","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7652","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8a 48 d9 af aa 30-01 51 85 5a 18 e4 fc fb","No Asset Tag","'-04:00","2026-02-03T16:10:08.000+02:00","tbaad-ext","Cloud Agent","40ee046b-187d-4fd9-8cda-b0f1c7cbea27","2024-02-01T12:02:36.000+02:00","2026-04-22T11:42:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","53.0" +"371388068","349325130","vrtrabpxp1.recette.adds","VRTRABPXP1","00:50:56:9C:20:D8","10.45.14.168","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 1c 77 18 ed 29 9b 5a-83 59 23 a8 86 16 a3 03","NoAssetTag","'+02:00","2026-04-07T16:33:47.000+02:00","recette.adds\SBP01336@recette","Cloud Agent","61d1165e-b0e9-4eda-a492-bcf0f272480d","2025-10-24T15:44:40.000+02:00","2026-04-22T11:51:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,PX Prévia,Recette,BDD-POS DYN","251.0" +"213848989","251124341","sppeaanvr17","SPPEAANVR17","D4:F5:EF:39:89:79","10.41.7.116","fe80::cfa8:7f27:c87e:bbef","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16041","HPE U30","CZ2051034V","","'+02:00","2026-03-02T10:44:02.000+02:00","Administrateur","Cloud Agent","96d80b7c-ac92-47f6-9c50-4bb909b08470","2024-02-05T19:19:12.000+02:00","2026-04-22T11:39:38.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,NVR","523.0" +"131270182","193318816","vpaiiacbi1.sanef.groupe","","00:50:56:82:4c:e2","10.30.12.124","fe80::71a3:5845:25c1:d5e8","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7a 02 c5 12 ef 66-37 96 1a c6 41 9c 62 c6","No Asset Tag","'+02:00","2025-12-11T09:49:04.000+02:00","cybreconcile","Cloud Agent","06beef37-3e5b-49f1-9e5d-6ff4b90a9e39","2022-07-12T15:24:19.000+02:00","2026-04-22T11:34:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),Centreon,DSI,ServersInCyberark,Obsolete,Cloud Agent,Linux Server","486.0" +"320929796","328808972","PCB24032.sanef.groupe","PCB24032","6C:0B:5E:F8:D8:5B","10.100.39.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDD","","'+02:00","2026-04-02T17:20:54.000+02:00","SANEF\CHAPELET","Cloud Agent","239f806b-cc3d-4877-addf-89b3c59236f9","2025-04-30T09:55:02.000+02:00","2026-04-22T11:59:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","256.0" +"215157024","251693221","MTR-1CD4804","MTR-1CD4804","6C:3C:8C:56:3B:3E","10.100.32.203","fe80::13f5:5b9:4b1d:6d3f","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","1CD4804","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","e106e8d4-4c53-4537-b7e6-830af5ee9e16","2024-02-12T10:03:32.000+02:00","2026-04-22T11:33:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"139157881","198270080","vmampgtc1","","00:50:56:82:1E:CE, 00:50:56:82:72:1A, 00:50:56:82:3C:2F","10.41.40.85,10.43.40.85,10.43.4.85","fe80::250:56ff:fe82:1ece,fe80::250:56ff:fe82:721a,fe80::250:56ff:fe82:3c2f","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3e 4f fc fa cd ee-fa d2 f5 6e ae 60 92 36","No Asset Tag","'+02:00","2024-02-13T13:58:43.000+02:00","cybreconcile","Cloud Agent","0a831760-7e62-488d-a5fd-a0b37457aa00","2022-09-07T14:22:35.000+02:00","2026-04-22T11:27:32.000+02:00","x86_64","5","SCA,VM,PM,GAV","Production,Trafic,log4j,DEX,Cloud Agent,Linux Server,VRF_TRAFIC_DC,OS-LIN-SRV DYN,Obsolete,MIVISU","876.0" +"129342529","191949306","sppeaanvr15","SPPEAANVR15","D4:F5:EF:50:80:1C","10.41.7.114","fe80::b140:a7d:109c:3910","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DVC","","'+02:00","2026-02-03T16:28:21.000+02:00","Administrateur","Cloud Agent","6aee5661-8786-4304-ae84-a945d4850753","2022-06-27T15:11:43.000+02:00","2026-04-22T11:41:16.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,Sans,Production,Cloud Agent,Windows Server,VRF_INCONNUE,DEX,OS-WIN-SRV DYN,NVR","523.0" +"383287965","354385118","PCV21149.sanef-int.adds","PCV21149","D0:AD:08:A3:7B:31","10.1.6.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YX8","","'+02:00","2026-04-09T09:00:48.000+02:00","Operateur","Cloud Agent","27f6d630-bbc5-4f50-b793-02e251a3fd45","2025-12-11T17:17:34.000+02:00","2026-04-22T11:58:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"128150824","191086357","vmradius4.sanef.groupe","VMRADIUS4","00:50:56:82:5E:F8","10.30.10.125","","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24544)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 02 9b 8b 5e bc 56 ec-92 8f 42 ef 56 eb ae 83","NoAssetTag","'+01:00","2025-12-16T12:52:27.000+02:00","SANEF\alaad","Cloud Agent","a2c6f12b-e674-4b94-9d6f-7b430ce1268b","2022-06-16T13:12:12.000+02:00","2026-04-22T11:15:21.000+02:00","64 bits","5","SCA,VM,PM,GAV","VRF_INCONNUE,OS-WIN-SRV DYN,Sans,Production,Sécurité IT,Radius,Windows Server,Obsolete,Windows Server 2008,DSI,Cloud Agent,TAG-SRVEXPOSEINDIRECT,Critical","865.0" +"131396522","193416778","lpsimabkp1.sanef.groupe","","00:17:a4:77:10:80","10.30.10.143","fe80::217:a4ff:fe77:1080","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","32","2600","Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz","32044","HP I36 07/18/2022","CZ25430692","","'+02:00","2024-09-24T14:24:50.000+02:00","cybreconcile","Cloud Agent","ec29d36f-515f-4712-9cbe-11eaaceb8c88","2022-07-13T09:22:37.000+02:00","2026-04-22T11:38:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,VRF_INCONNUE,BDD-POS DYN,DSI,Obsolete,ServersInCyberark,TINA,Cloud Agent,Linux Server,Sécurité IT","348.0" +"364466255","346502745","PCV21518.sanef-int.adds","PCV21518","D0:AD:08:A7:27:EC","10.7.53.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YPS","","'+02:00","2026-04-17T12:13:31.000+02:00","Operateur","Cloud Agent","d5f1e2a7-577e-408c-9327-051a76c1f6f5","2025-09-30T16:54:44.000+02:00","2026-04-22T11:39:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"129310119","191929304","ls-therouanne","LS-THEROUANNE","00:50:56:90:90:51","10.41.2.38","fe80::f6e6:31d5:222e:18af","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 68 57 44 ab 2b da-b4 57 a9 9e d5 c0 26 e2","NoAssetTag","'+02:00","2026-03-04T11:33:23.000+02:00","svpadmin","Cloud Agent","8c7dd5a5-8001-4382-8474-81e896675753","2022-06-27T10:58:59.000+02:00","2026-04-22T11:44:41.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Haute,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,SVP,VRF_PEAGE_DC,High,Production,Péage","851.0" +"173355805","227828333","vvbooaboo1.sanef-rec.fr","","00:50:56:9c:60:2d","10.45.6.71","fe80::250:56ff:fe9c:602d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 1e 4c 91 32 23 92-4d 16 d6 e7 80 b4 24 25","No Asset Tag","'+02:00","2026-03-12T10:55:28.000+02:00","cybsupsys","Cloud Agent","5c874b4e-09c9-42c7-9351-8e6aadea36d8","2023-06-07T10:45:07.000+02:00","2026-04-22T11:26:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,Recette,Flux Libre,OS-LIN-SRV DYN,flux_libre,FreeFlow","140.0" +"193616126","240982066","vibocs4as3.sanef.groupe","","00:50:56:90:c0:91","10.41.22.74","fe80::250:56ff:fe90:c091","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 54 fb 5c 8a d3 bc-bb e2 9e f5 f8 b3 df b6","No Asset Tag","'+02:00","2026-03-16T16:12:40.000+02:00","cybadmsys","Cloud Agent","2047bf18-8379-406f-b2c6-47b46730b8a5","2023-10-16T12:50:27.000+02:00","2026-04-22T11:28:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,ServersInCyberark,Cloud Agent,Linux Server,FreeFlow","141.0" +"320928421","328809293","PCB22908.sanef.groupe","PCB22908","60:45:2E:11:FE:13","10.255.4.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMX","8CC3502YMX","'+02:00","2026-04-16T10:43:45.000+02:00","SANEF\ginp","Cloud Agent","e2ac94f7-0da8-44ee-8a88-e78364b05549","2025-04-30T09:56:55.000+02:00","2026-04-22T11:46:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"175944074","229613622","vvbotapps1.sanef-rec.fr","","5a:b2:f5:21:73:e0, 66:da:ea:db:2d:fd, 9e:40:a5:7d:30:a7, 72:9d:3e:38:20:4e, 96:1c:12:66:47:14, 0e:cc:43:92:1d:27, de:35:46:9d:41:e6, 0e:eb:fb:10:1b:c6, 36:fd:35:ec:d7:1c, 7e:be:f9:ec:a2:b5, 42:4a:25:23:eb:f9, 4e:c4:59:c5:a8:81, ae:16:44:be:a1:01, de:4f:c5:a4:58:f1, 96:83:78:b9:89:23, 00:50:56:9c:8e:55, 66:95:c1:3f:bb:17, 92:1d:a9:36:ab:be, 06:ab:b7:72:fc:9d, 8e:56:56:d4:b3:c6, 5e:54:b6:92:e5:fe, 82:8d:74:92:d4:e8, 72:39:de:d9:6b:ae, a6:bd:f0:bd:97:7d, ba:77:c6:01:3b:eb, fa:90:88:3d:a3:4b, 6e:e6:7e:96:8a:f8, 96:20:64:6b:0b:83, 06:85:6a:09:74:0f, 4a:5f:ba:26:57:a2, 7a:e8:0a:45:5f:f0, d6:34:78:0f:a2:ec, ba:39:97:7f:b7:ab, d6:a8:60:b8:65:66, ce:af:ef:2f:e4:90","10.45.6.132,10.89.0.1","fe80::58b2:f5ff:fe21:73e0,fe80::64da:eaff:fedb:2dfd,fe80::9c40:a5ff:fe7d:30a7,fe80::709d:3eff:fe38:204e,fe80::941c:12ff:fe66:4714,fe80::ccc:43ff:fe92:1d27,fe80::dc35:46ff:fe9d:41e6,fe80::ceb:fbff:fe10:1bc6,fe80::34fd:35ff:feec:d71c,fe80::7cbe:f9ff:feec:a2b5,fe80::404a:25ff:fe23:ebf9,fe80::4cc4:59ff:fec5:a881,fe80::ac16:44ff:febe:a101,fe80::dc4f:c5ff:fea4:58f1,fe80::9483:78ff:feb9:8923,fe80::250:56ff:fe9c:8e55,fe80::6495:c1ff:fe3f:bb17,fe80::901d:a9ff:fe36:abbe,fe80::4ab:b7ff:fe72:fc9d,fe80::8c56:56ff:fed4:b3c6,fe80::5c54:b6ff:fe92:e5fe,fe80::808d:74ff:fe92:d4e8,fe80::7039:deff:fed9:6bae,fe80::a4bd:f0ff:febd:977d,fe80::b877:c6ff:fe01:3beb,fe80::f890:88ff:fe3d:a34b,fe80::6ce6:7eff:fe96:8af8,fe80::9420:64ff:fe6b:b83,fe80::485:6aff:fe09:740f,fe80::485f:baff:fe26:57a2,fe80::78e8:aff:fe45:5ff0,fe80::d434:78ff:fe0f:a2ec,fe80::b839:97ff:fe7f:b7ab,fe80::d4a8:60ff:feb8:6566,fe80::ccaf:efff:fe2f:e490","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 71 bf bc 9d 56 79-0e f0 9c b6 50 17 eb 18","No Asset Tag","'+02:00","2026-03-12T13:06:50.000+02:00","kapschsysuser","Cloud Agent","8ad8361b-5982-4bc5-a94d-1e7b9983cc0f","2023-06-26T15:47:34.000+02:00","2026-04-22T11:18:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,Flux Libre,flux_libre","142.0" +"395875292","359658168","vpvsaagpu1.sanef.groupe","","00:50:56:90:44:a7","10.42.16.88","fe80::250:56ff:fe90:44a7","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 9f 4c ff e1 df 54-f8 ac 22 9f 1b 36 93 fe","No Asset Tag","'+02:00","2026-02-09T16:29:36.000+02:00","tbaad-ext","Cloud Agent","f80ffbce-5d09-48c4-8241-7a4f70df82d3","2026-01-29T15:08:09.000+02:00","2026-04-22T11:30:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Sauvegarde & Securite,Production,Cloud Agent,Linux Server","52.0" +"287925589","311535928","vrosapast1.sanef-rec.fr","","00:50:56:9c:90:bd","10.45.9.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d4 4d 97 1c e9 37-05 1c b6 cc 9a 43 b7 8e","No Asset Tag","'+02:00","2026-02-16T12:22:34.000+02:00","cybintsys","Cloud Agent","8786ae31-c349-4265-b4f4-7521f48f3e77","2024-12-20T12:48:49.000+02:00","2026-04-22T11:48:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","142.0" +"129343041","191950381","sppeaanvr7","SPPEAANVR7","30:E1:71:51:2C:01","10.41.7.106","fe80::5605:a31:eec3:b319","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLZ","","'+02:00","2026-02-02T11:36:45.000+02:00","Administrateur","Cloud Agent","c69e2d50-607d-49db-a14c-0a74291c7b9b","2022-06-27T15:31:13.000+02:00","2026-04-22T11:42:04.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,NVR,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Sans,Exploitation,Production,DEX","523.0" +"163897942","219067810","vmcmdb2","","00:50:56:82:67:ef","10.30.11.108","fe80::250:56ff:fe82:67ef","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 24 82 65 20 26 53-d8 50 a7 83 3c 91 e6 08","No Asset Tag","'+02:00","2025-10-09T11:34:24.000+02:00","cybsupapp","Cloud Agent","13d7fa43-03d2-4257-90de-970af488eff8","2023-03-22T17:30:51.000+02:00","2026-04-22T11:41:49.000+02:00","x86_64","4","SCA,VM,PM,GAV","ITOP,TAG-SRVEXPOSEINDIRECT,BDD-POS DYN,DSI,Cloud Agent,Linux Server,Obsolete","695.0" +"380815733","353392215","PCB17983.sanef.groupe","PCB17983","C0:18:03:85:61:2E","10.100.39.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206174Z","8CC206174Z","'+02:00","2026-04-16T13:42:21.000+02:00","SANEF\psi","Cloud Agent","f7dedc5c-74cc-4a1f-93d5-9d9c512b73d2","2025-12-02T13:43:25.000+02:00","2026-04-22T10:32:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"395881501","359669099","vpvsaagpu2.sanef.groupe","","00:50:56:90:81:27","10.42.16.89","fe80::250:56ff:fe90:8127","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 1d e1 a2 93 aa 40-40 9b 9e b9 0b 99 91 af","No Asset Tag","'+02:00","2026-02-09T16:42:59.000+02:00","tbaad-ext","Cloud Agent","9fd19e40-e7b8-42f5-aed8-982a1bdc7ac2","2026-01-29T16:52:10.000+02:00","2026-04-22T11:37:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Sauvegarde & Securite,Gestion SAUVEGARDE,Production,Linux Server,Cloud Agent","52.0" +"128150818","191086355","vmradius3.sanef.groupe","VMRADIUS3","00:50:56:82:1F:DB, 02:00:4C:4F:4F:50","10.30.10.124,169.254.99.117","fe80::fdc5:80ee:27a8:29d5,fe80::dcea:203e:bd9d:6375","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24546)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 b7 fa 10 5a d9 5d-d9 a7 c3 33 13 98 24 eb","NoAssetTag","'+02:00","2024-05-21T14:41:57.000+02:00","SANEF\alaad","Cloud Agent","69739527-6f65-4752-95fd-8f20072ec70d","2022-06-16T13:11:52.000+02:00","2026-04-22T10:58:37.000+02:00","64 bits","5","SCA,VM,PM,GAV","VRF_INCONNUE,Critical,Cloud Agent,Sans,Sécurité IT,Production,Windows Server 2008,DSI,Windows Server,OS-WIN-SRV DYN,Obsolete,Radius,TAG-SRVEXPOSEINDIRECT","861.0" +"213855634","251126075","spboomcla2.sanef.groupe","","5c:ba:2c:1c:93:f0","10.41.22.144","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95795","HPE U30 07/20/2023","CZ22410FK9","","'+02:00","2026-04-07T10:10:48.000+02:00","cybreconcile","Cloud Agent","1f64988b-4a4e-4b6d-9d53-756e174e72df","2024-02-05T19:47:48.000+02:00","2026-04-22T11:45:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Production","338.0" +"238298215","269275297","lpemvbpemv1.sanef.groupe","","00:17:a4:77:1c:60, 00:17:a4:77:1c:88, 00:17:a4:77:1c:5c","192.168.103.104,169.254.0.158,172.16.0.104,192.168.101.104,192.168.101.144,192.168.101.149","fe80::217:a4ff:fe77:1c60,fe80::217:a4ff:fe77:1c88,fe80::217:a4ff:fe77:1c5c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","VCX000070C","","'+02:00","2024-05-30T21:57:35.000+02:00","grid","Cloud Agent","6d25ca0b-346f-4a3f-82d4-50f25127e16d","2024-05-21T17:02:06.000+02:00","2026-04-22T11:36:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,PCI Bunker EMV,PCI Bunker EMV - VLAN Stecard v17,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","682.0" +"296277432","317660760","REX21538.sanef-int.adds","REX21538","D0:AD:08:A3:E6:E0","10.100.91.83","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQ4","","'+02:00","2026-04-01T08:32:29.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","60552618-b2c6-4005-9ab0-eea678abc54a","2025-01-30T18:00:51.000+02:00","2026-04-22T11:24:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"249487889","288760443","vrsvpasap2","VRSVPASAP2","00:50:56:9C:E4:B4","10.45.9.174","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 1d 70 1e 7f ce db-eb 87 a8 b7 e4 d0 9b ba","NoAssetTag","'+02:00","2026-02-17T15:42:08.000+02:00","svpadmin","Cloud Agent","6c8c805f-dcf7-4ece-a346-657de5b1a089","2024-07-09T09:13:13.000+02:00","2026-04-22T11:43:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,OS-WIN-SRV DYN,Recette,Cloud Agent","499.0" +"205522748","246920804","vposapels1.sanef.groupe","","00:50:56:90:0c:fd","10.41.20.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 ba 28 08 a0 ac 2c-d6 ec fd 00 ff 44 b1 4e","No Asset Tag","'+02:00","2026-02-26T12:21:32.000+02:00","cybsupsys","Cloud Agent","abbbb8e1-af16-43b6-830d-10d190572ded","2023-12-21T11:38:37.000+02:00","2026-04-22T11:44:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,Production,OS-LIN-SRV DYN,BDD-ELA DYN,Péage","144.0" +"227064676","256800694","PCM20938.sanef.groupe","PCM20938","BC:0F:F3:88:FD:2E","10.100.39.115","fe80::5f9f:b24a:9733:e158","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.4170) 64-Bit","22H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMN","","'+02:00","2025-09-07T07:16:15.000+02:00","SANEF\mvn","Cloud Agent","7027d1da-78ac-4411-b980-b14b8d1250cf","2024-04-02T18:31:14.000+02:00","2026-04-22T11:45:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"411628774","365732726","vrsigbmut2.sanef-rec.fr","","52:54:00:60:28:61, 52:54:00:3f:83:03, 9e:0f:28:bc:ce:6f","10.45.15.69,192.168.17.6,192.168.16.24","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","16","","AMD EPYC 9J15 32-Core Processor","129433","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-07T14:36:53.000+02:00","oracle","Cloud Agent","69bf36f3-9e6f-4de4-827d-dc008722d1e3","2026-03-26T13:16:44.000+02:00","2026-04-22T11:27:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","ENV-REC,Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0" +"403898149","362607755","MTR-FJRTL64","MTR-FJRTL64","D0:46:0C:95:2C:7E","10.4.32.204","fe80::4a6f:5159:3f8e:1eea","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","FJRTL64","","'+02:00","2026-04-22T02:32:50.000+02:00","Skype","Cloud Agent","8a6dc543-3fef-4d21-9473-901095f8b892","2026-02-24T18:49:14.000+02:00","2026-04-22T11:53:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"181212369","233363202","vpiadawdc1.sanef-int.adds","VPIADAWDC1","00:50:56:9A:90:28","10.44.3.4","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1a 93 c0 47 e1 1c 02-86 ea 41 76 11 a3 09 18","NoAssetTag","'+02:00","2026-03-26T11:10:18.000+02:00","SANEF-INT\a03987","Cloud Agent","291b0599-6d76-4f10-a7aa-c10f26306ca6","2023-08-03T09:45:05.000+02:00","2026-04-22T11:53:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,AD,Cloud Agent,Windows Server","250.0" +"186915082","237080508","MTR-9Q3J8Y3","MTR-9Q3J8Y3","6C:3C:8C:3D:5E:3C","10.155.32.201","fe80::ff79:a660:4372:e895","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","9Q3J8Y3","","'+02:00","2026-04-22T02:33:06.000+02:00","Skype","Cloud Agent","7de42460-4b10-42c5-bbc5-e8ac1234c500","2023-09-08T18:19:11.000+02:00","2026-04-22T11:30:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"128140865","191076817","vpburawap1","VPBURAWAP1","00:50:56:82:5B:D4","192.168.162.68","fe80::bd50:f9cc:1fde:b9c8","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 2a 26 a5 60 4a 40-8b 7a 39 2e ea 4a 33 d1","NoAssetTag","'+02:00","2026-04-15T15:45:25.000+02:00","Administrateur","Cloud Agent","cb6e3115-fd28-47a0-b69c-d38f10a466be","2022-06-16T11:55:13.000+02:00","2026-04-22T11:57:56.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,Windows Server,AD,DMZ,Production,Compte & Acces,Sans,VRF_INCONNUE,DSI,TAG-SRVEXPOSEINDIRECT","0.0" +"230366424","258599099","ls-ste-menehould","LS-STE-MENEHOUL","00:50:56:90:2B:DC","10.41.2.74","fe80::579b:d96e:bea0:b26f","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 63 41 b1 4e ff 37-0e ce 2b 8f 88 8e 59 a8","NoAssetTag","'+02:00","2026-03-03T16:04:23.000+02:00","svpadmin","Cloud Agent","3088677b-21b8-4e71-a873-622b0058f432","2024-04-16T15:59:25.000+02:00","2026-04-22T06:17:47.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Péage,VRF_PEAGE_DC,Production,High,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","681.0" +"319374768","328407246","PCB22901.sanef.groupe","PCB22901","D0:AD:08:A7:27:C0","10.152.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN5","8CC3502YN5","'+02:00","2026-03-28T09:15:08.000+02:00","SANEF\fleurya","Cloud Agent","eeea1a11-a53f-427a-bbb1-0ace3905d699","2025-04-25T12:59:56.000+02:00","2026-04-22T06:17:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"301233552","320880027","vrdsismtp1.sanef-rec.fr","","00:50:56:9c:50:c5","192.168.19.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c fc d3 13 24 ea ef-6f 58 c0 fa 67 51 40 cd","No Asset Tag","'+02:00","2026-01-07T11:33:19.000+02:00","root","IP Scanner, Cloud Agent","babf489f-52c4-42d8-b05c-f467463617f2","2025-02-19T14:01:41.000+02:00","2026-04-22T11:48:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","331.0" +"192863549","240624322","vpeapnot1","","00:50:56:82:4d:dc","10.30.10.18","fe80::250:56ff:fe82:4ddc","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3950","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 6b 47 d8 ae 71 ff-6c ee 75 c1 b7 be a6 6c","No Asset Tag","'+02:00","2025-02-13T11:19:35.000+02:00","cybreconcile","Cloud Agent","73f5b11f-a546-40b8-a307-d753e7772c88","2023-10-12T15:48:07.000+02:00","2026-04-22T11:47:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,E-notification,Cloud Agent,Linux Server,MID-NGINX DYN,DSI,Production,BDD-POS DYN,High,high priority","693.0" +"382416400","353964314","PCB25789.sanef.groupe","PCB25789","F8:ED:FC:AB:22:66","10.252.42.150","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTJ","","'+02:00","2026-04-13T18:20:02.000+02:00","SANEF\hadad","Cloud Agent","4f3ec94c-7257-4fff-bb6f-70685dbd99e6","2025-12-08T09:48:26.000+02:00","2026-04-22T11:51:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"178993271","231838520","vpsasawrk6.sanef.groupe","","00:50:56:9c:6b:16","10.41.32.15","fe80::250:56ff:fe9c:6b16","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 56 44 ed 88 44 e0-f7 e6 b4 eb 82 9a 28 6c","No Asset Tag","'+02:00","2026-03-25T16:10:23.000+02:00","cybreconcile","Cloud Agent","109fbed1-141a-4b3a-88ce-65b31b1e1501","2023-07-18T16:12:44.000+02:00","2026-04-22T11:17:28.000+02:00","x86_64","3","SCA,VM,PM,GAV","SAS,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,DSI","86.0" +"363965240","346382477","PCB21574.sanef.groupe","PCB21574","D0:AD:08:A3:7B:48","10.12.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS2","8CC3502YS2","'+02:00","2026-04-12T15:02:37.000+02:00","SANEF\CHOUITER","Cloud Agent","824fa243-3534-47af-bf0e-5209edaeeef9","2025-09-29T15:58:51.000+02:00","2026-04-22T11:26:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"391641926","357934381","vmmvsccad2.sanef-int.adds","VMMVSCCAD2","00:50:56:90:8C:DC","10.41.7.232","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 e9 8d 2c 41 71 61-a7 7c 48 15 dc 68 a2 4a","NoAssetTag","'+02:00","2026-02-02T18:11:43.000+02:00","uservideo","Cloud Agent","ecd65762-a4d3-4909-b0bb-6203680b81d5","2026-01-13T13:01:35.000+02:00","2026-04-22T11:30:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"327528672","","PCB21582.sanef.groupe","PCB21582","D0:AD:08:A3:7B:33","10.2.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX5","","'+02:00","2026-04-21T16:57:42.000+02:00","SANEF\niepieklo","Cloud Agent","f5b269ed-9ba6-4dd4-b980-a5ae706f3738","2025-05-27T10:35:09.000+02:00","2026-04-22T06:17:01.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"209168351","248970270","vibotarmq3.sanef.groupe","","00:50:56:90:0f:90","10.41.23.158","fe80::250:56ff:fe90:f90","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 68 b1 5a a7 17 8b-e5 28 2e af d3 cf da bd","No Asset Tag","'+02:00","2026-03-17T12:20:16.000+02:00","cybsupsys","Cloud Agent","7f06a272-3b9a-4598-93ee-c3a136206580","2024-01-12T12:54:08.000+02:00","2026-04-22T11:25:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,FreeFlow,OS-LIN-SRV DYN,Flux Libre,Production","141.0" +"246115834","286869773","MTR-9BD4804","MTR-9BD4804","6C:3C:8C:56:3A:EE","10.100.32.204","fe80::fbef:b25a:716f:8ecb","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","9BD4804","","'+02:00","2026-04-22T02:32:57.000+02:00","Skype","Cloud Agent","47d27372-e155-408b-b234-b77c2f5809d3","2024-06-24T18:19:20.000+02:00","2026-04-22T11:23:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"364970231","346712264","PCV22931.sanef-int.adds","PCV22931","D0:AD:08:A3:7B:EA","10.100.7.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YVL","","'+02:00","2025-11-26T22:31:34.000+02:00","Operateur","Cloud Agent","f7b6f65b-cbc2-4281-a24e-f1a80eb41656","2025-10-02T13:47:55.000+02:00","2026-04-22T11:37:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"178261318","231315292","MTR-J1DSNT3","MTR-J1DSNT3","90:8D:6E:94:31:5F","10.100.32.214","fe80::1f2d:4484:65c2:ddf5","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","J1DSNT3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","43d1df46-799c-4687-972f-1f591cdfb75d","2023-07-13T01:26:44.000+02:00","2026-04-22T11:37:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"366505741","347395677","MTR-3PXF2L3","MTR-3PXF2L3","A4:BB:6D:90:A7:2B","10.100.32.205","fe80::c204:fe62:4a3f:ce2","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","3PXF2L3","","'+02:00","2026-04-22T02:33:04.000+02:00","Skype","Cloud Agent","6f2186dc-27da-4f10-8118-921e9d469c57","2025-10-08T16:20:48.000+02:00","2026-04-22T11:25:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"267395255","298436653","vtdsiakib1.sanef-rec.fr","","00:50:56:9c:ec:57","10.45.1.172","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 5e 2c ac cf 26 e1-3f 6e 36 2b aa 6a ff 95","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","reboot","Cloud Agent","da01fbde-7fcb-4691-b112-a2cc1e3b6030","2024-09-24T12:01:57.000+02:00","2026-04-22T11:39:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Elasticsearch,Recette","141.0" +"207971781","248307124","vrdsiadev1","","00:50:56:9c:de:af","10.45.10.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c a3 37 d8 94 61 7a-c2 d4 bf cb a4 f4 bd 70","No Asset Tag","'+02:00","2026-04-14T10:48:32.000+02:00","cybadmsys","Cloud Agent","3c1cec60-ac26-4b9a-8401-d0e3145eddf1","2024-01-05T18:08:26.000+02:00","2026-04-22T11:32:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Collecte,Recette,DSI,Cloud Agent,Linux Server","141.0" +"365792017","347053024","PCV21565.sanef-int.adds","PCV21565","D0:AD:08:A7:27:E8","10.100.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YPQ","","'+02:00","2025-12-31T14:47:44.000+02:00","Operateur","Cloud Agent","c9ef8260-0c90-43c6-a957-b84eebfdd74f","2025-10-06T10:46:47.000+02:00","2026-04-22T06:15:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"380765547","353372162","PCB22273.sanef.groupe","PCB22273","D0:AD:08:A3:7B:2E","10.252.42.133","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXD","8CC3502YXD","'+02:00","2026-04-09T10:19:53.000+02:00","SANEF\louvier","Cloud Agent","23ed327e-7000-4e11-8f75-721ca6840f7e","2025-12-02T10:26:02.000+02:00","2026-04-22T11:36:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"356545009","343379214","vpburadps1.sanef.groupe","VPBURADPS1","00:50:56:90:FF:67","10.100.38.9","fe80::f16d:78f8:e10:bee3","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 dd 4e ad fc 1c a8-c4 2e 73 cc b1 23 43 a3","NoAssetTag","'+02:00","2026-01-27T12:07:31.000+02:00","atrad@sanef.com","Cloud Agent","08d4cdfd-8c11-490f-9562-d5096461368f","2025-09-03T10:03:17.000+02:00","2026-04-22T11:59:52.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_BURO,SCCM,Production,Cloud Agent,BDD-SQL DYN","523.0" +"156095898","209242562","vpdsiasat1.sanef.groupe","","00:50:56:82:33:07","192.168.18.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 7c cf b1 64 5d 44-24 bc 22 cf 2a 52 a3 fd","No Asset Tag","'+02:00","2026-04-14T14:36:27.000+02:00","cybreconcile","Cloud Agent","781bc3ee-8408-4601-8891-668f4ed84846","2023-01-19T15:24:23.000+02:00","2026-04-22T11:26:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Satellite,BDD-POS DYN,MID-APACHE-TOMCAT DYN,VRF_INCONNUE,OS-LIN-SRV DYN,Linux Server,Cloud Agent","65.0" +"339141680","","SVP22636.sanef-int.adds","SVP22636","D0:AD:08:A4:73:58","10.192.12.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764HD","","'+02:00","2026-04-13T09:54:21.000+02:00","Superviseur","Cloud Agent","6300e61a-f999-4d70-a4c8-065471a18809","2025-07-04T13:46:42.000+02:00","2026-04-22T06:15:05.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"221344661","254249922","ls-chevrieres","LS-CHEVRIERES","00:50:56:90:20:45","10.41.2.26","fe80::1b5d:15ec:38c7:3a8b","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 d9 55 52 f0 00 73-b5 1a 4d f8 94 3f 16 4f","NoAssetTag","'+02:00","2026-02-19T16:32:16.000+02:00","svpadmin","Cloud Agent","68b2c827-99ea-41ac-95d5-933b87e848d1","2024-03-11T12:07:30.000+02:00","2026-04-22T11:35:24.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_PEAGE_DC,DEX,SVP,OS-WIN-SRV DYN,Cloud Agent,Windows Server,High,Production,Péage","507.0" +"379559158","352887680","spbckamag1.sanef.groupe","","04:bd:97:22:ca:c8, 04:bd:97:22:ca:c9","10.42.16.73,10.43.1.4","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP26080HDN","Unknown","'+02:00","2025-11-26T17:35:24.000+02:00","root","Cloud Agent","6a1565b0-3862-4024-a918-18a25864c9d9","2025-11-26T15:07:15.000+02:00","2026-04-22T11:28:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"412386131","366135502","PCB21506.sanef.groupe","PCB21506","D0:AD:08:A7:27:D7","10.4.31.62","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","","","16053","","8CC3502YT0","8CC3502YT0","'+02:00","2026-04-16T12:53:23.000+02:00","Raynald.GROLIER@Sanef.com","Cloud Agent","1fafa897-62db-4f28-aac8-951a125bfb5b","2026-03-30T13:43:10.000+02:00","2026-04-22T11:27:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"143625294","201025860","vpemvaftp1.sanef.groupe","","00:50:56:98:13:35","192.168.100.109","fe80::250:56ff:fe98:1335","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 18 4b 22 06 98 68 11-2c 33 e6 ed 3f c0 f2 ff","No Asset Tag","'+02:00","2025-12-04T12:46:29.000+02:00","root","Cloud Agent","4ee6e39f-a396-4c59-a9ad-c5c6b8f77409","2022-10-11T17:37:49.000+02:00","2026-04-22T11:36:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,VRF_INCONNUE,EMV,Cloud Agent,Linux Server,DEX,PCI Bunker EMV - VLAN Supervision/Admin","665.0" +"127959290","190985929","vpburaadm1.sanef.groupe","VPBURAADM1","00:50:56:82:44:BE","10.30.10.37","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-56 4d f0 10 0f d3 1e 3f-38 83 9e 15 b9 d1 3f 29","NoAssetTag","'+02:00","2026-03-11T19:06:01.000+02:00","SANEF.GROUPE\pbiad@sanef.com","Cloud Agent","1034a01f-ba1b-4646-adfa-0b32a00e11a9","2022-06-15T11:22:37.000+02:00","2026-04-22T11:52:05.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Production,Outils prod (Monitoring, NMS, gestion de parc),Gestion IMPRESSION,OS-WIN-SRV DYN,BDD-SQL DYN,Critical,Windows Server,DSI","861.0" +"168848537","224865904","vpaiiapol3","","00:50:56:82:7d:cf","10.30.12.127","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3789","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7e 18 f7 82 f4 a8-65 c8 d9 05 20 f9 71 0c","No Asset Tag","'+02:00","2024-06-04T10:41:08.000+02:00","cybreconcile","Cloud Agent","c5ad794a-ec19-4022-9be6-b53cd7003725","2023-05-03T11:30:20.000+02:00","2026-04-22T11:27:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-POS DYN,BDD-ELA DYN,BDD-SQL DYN,DSI,Obsolete,Cloud Agent,Linux Server,Centreon","456.0" +"238996811","269754233","SVP20942.sanef-int.adds","SVP20942","BC:0F:F3:87:70:BC","10.22.2.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMZ","","'+02:00","2026-04-19T13:31:29.000+02:00","Superviseur","Cloud Agent","5d71cff1-b72d-47f2-90a2-9f8f6924f9fb","2024-05-24T10:30:53.000+02:00","2026-04-22T11:36:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"208768095","248737409","vibotatvv1.sanef.groupe","","00:50:56:90:51:b1","10.41.23.155","fe80::250:56ff:fe90:51b1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e5 e9 51 88 68 17-13 bc c8 ea 85 1e c2 6d","No Asset Tag","'+02:00","2026-03-18T11:32:39.000+02:00","cybreconcile","Cloud Agent","da744d2b-c18a-457c-aa3b-5e97d0f12856","2024-01-10T11:26:20.000+02:00","2026-04-22T11:58:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,Production,OS-LIN-SRV DYN,Flux Libre,ServersInCyberark,flux_libre","140.0" +"321586044","329090470","PCB21143.sanef.groupe","PCB21143","D0:AD:08:A3:7B:D8","10.139.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVR","8CC3502YVR","'+02:00","2026-04-17T07:40:27.000+02:00","SANEF\SAJOTG","Cloud Agent","678e26e1-3c8c-4c5e-830a-3d71d27f5a18","2025-05-02T14:00:33.000+02:00","2026-04-22T11:23:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"182212643","233990529","svboomcla2.sanef-rec.fr","","5c:ba:2c:1c:89:20","10.45.6.73","fe80::5eba:2cff:fe1c:8920","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95795","HPE U30 05/17/2022","CZ22410FK5","","'+02:00","2026-03-10T10:03:22.000+02:00","cybintsys","Cloud Agent","ab249ea2-f203-4bd5-8d07-cc4c26158159","2023-08-10T10:50:58.000+02:00","2026-04-22T11:34:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,flux_libre,Flux Libre","337.0" +"371893689","349563834","vppmrames1","VPPMRAMES1","00:50:56:90:DA:50","10.41.91.60","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4405) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 10 cb 88 f9 2e 49 1a-5e 65 9d 58 5a 77 99 9d","NoAssetTag","'+02:00","2025-12-11T12:06:21.000+02:00","SANEF-INT\b03987","Cloud Agent","c6e837e3-6a18-4e20-8286-1549d809f6d7","2025-10-27T10:22:53.000+02:00","2026-04-22T11:39:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_PMR,Production,Cloud Agent,OS-WIN-SRV DYN","345.0" +"325669861","331288785","vpdsigrid1.sanef.groupe","","00:50:56:94:df:89","10.44.5.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","15761","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 14 a7 ca c0 f2 9a 1f-a1 20 9c eb 0b 2c 87 51","No Asset Tag","'+02:00","2026-02-10T11:30:28.000+02:00","cybsupsys","Cloud Agent","8660cd0c-33fd-4201-8f28-5474fdc93860","2025-05-19T10:14:52.000+02:00","2026-04-22T11:25:07.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","333.0" +"175420304","229255869","vvbotapps3.sanef-rec.fr","","fe:71:2f:ed:5c:ef, 6a:3f:1e:66:6c:7b, 62:b4:6e:6e:7e:ee, 76:5a:f7:4f:c5:3a, ca:66:d5:f8:08:2b, 92:aa:ce:62:32:40, b6:43:ad:ca:68:b5, 0e:ea:89:77:4e:56, 66:b6:4c:9e:40:61, 6a:1f:e1:49:23:06, 3a:ab:36:eb:12:0b, 92:84:a0:1b:71:f4, c6:c2:f9:78:eb:13, fa:d5:b6:d3:cb:5b, 00:50:56:9c:10:d9, 16:71:60:0d:53:b5, 0a:51:1a:48:09:5e, 66:4a:e1:48:e2:a4, e6:09:98:f0:0a:cc, 8e:83:72:aa:20:0c, fa:d4:64:6e:57:28, 1a:d5:20:b3:9b:06, 2a:6d:f7:fd:7f:fc, 76:70:85:64:17:f1, 92:ae:2c:a7:98:c7, ae:8e:df:3f:07:57, de:f2:1f:ee:2b:36, 6e:53:f9:87:42:a2, 72:a7:9d:6a:4d:25, 76:c2:8e:c3:e0:f4, 5a:32:3c:2f:b4:f0, 22:13:79:e4:24:64, 2e:67:94:e2:53:01, 8a:75:85:80:e0:e2","10.45.6.152,10.89.0.1","fe80::fc71:2fff:feed:5cef,fe80::683f:1eff:fe66:6c7b,fe80::60b4:6eff:fe6e:7eee,fe80::745a:f7ff:fe4f:c53a,fe80::c866:d5ff:fef8:82b,fe80::90aa:ceff:fe62:3240,fe80::b443:adff:feca:68b5,fe80::cea:89ff:fe77:4e56,fe80::64b6:4cff:fe9e:4061,fe80::681f:e1ff:fe49:2306,fe80::38ab:36ff:feeb:120b,fe80::9084:a0ff:fe1b:71f4,fe80::c4c2:f9ff:fe78:eb13,fe80::f8d5:b6ff:fed3:cb5b,fe80::250:56ff:fe9c:10d9,fe80::1471:60ff:fe0d:53b5,fe80::851:1aff:fe48:95e,fe80::644a:e1ff:fe48:e2a4,fe80::e409:98ff:fef0:acc,fe80::8c83:72ff:feaa:200c,fe80::f8d4:64ff:fe6e:5728,fe80::18d5:20ff:feb3:9b06,fe80::286d:f7ff:fefd:7ffc,fe80::7470:85ff:fe64:17f1,fe80::90ae:2cff:fea7:98c7,fe80::ac8e:dfff:fe3f:757,fe80::dcf2:1fff:feee:2b36,fe80::6c53:f9ff:fe87:42a2,fe80::70a7:9dff:fe6a:4d25,fe80::74c2:8eff:fec3:e0f4,fe80::5832:3cff:fe2f:b4f0,fe80::2013:79ff:fee4:2464,fe80::2c67:94ff:fee2:5301,fe80::8875:85ff:fe80:e0e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 98 7c 1e 8f 6d cd-c3 63 8b 97 4b 9a d5 4a","No Asset Tag","'+02:00","2026-03-10T11:33:54.000+02:00","cybreconcile","Cloud Agent","ee58c856-04d4-45ad-aec2-8c0f55a60aa7","2023-06-22T12:03:17.000+02:00","2026-04-22T11:29:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,FreeFlow","139.0" +"373889164","350370252","PCV18692.sanef-int.adds","PCV18692","30:13:8B:6C:79:D9","10.100.7.60","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7171) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.05.01","CZC44473VW","","'+02:00","2026-02-17T12:16:12.000+02:00","Operateur","Cloud Agent","633cef20-9922-4f3e-b6e4-64ca4605cb29","2025-11-03T17:57:50.000+02:00","2026-04-22T11:28:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"364922812","346691044","PCB21520.sanef.groupe","PCB21520","D0:AD:08:A3:E6:C2","10.3.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRC","8CC3502YRC","'+02:00","2026-04-21T12:11:44.000+02:00","SANEF\chodorge","Cloud Agent","e0c20eec-ed5d-4823-a8fa-17aec4d8f0cd","2025-10-02T10:31:33.000+02:00","2026-04-22T11:27:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"358649991","344184024","VMMWLANC1.sanef-int.adds","VMMWLANC1","00:50:56:90:5C:D8","10.42.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 c1 71 1a bd 6d 77-36 92 00 ba 13 8a 9a 2f","NoAssetTag","'+02:00","2025-09-10T17:47:40.000+02:00","UserPCT","Cloud Agent","34470f14-57e1-4dff-98d7-02efd14d4955","2025-09-10T17:32:45.000+02:00","2026-04-22T06:12:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"317721019","327746661","PCB23765.sanef.groupe","PCB23765","6C:0B:5E:EE:83:7E","10.100.38.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4F","","'+02:00","2026-03-29T09:15:41.000+02:00","SANEF\bachelart","Cloud Agent","476816ef-3799-49c4-b2ce-cb7d4690e3da","2025-04-18T13:24:43.000+02:00","2026-04-22T11:23:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"173079234","227652731","vdbocs4ci1.sanef-rec.fr","","00:50:56:9c:39:05","10.45.6.35","fe80::250:56ff:fe9c:3905","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7e 2e 15 f6 00 f6-6d ce 57 37 cd 3d e9 2b","No Asset Tag","'+02:00","2026-03-11T10:02:59.000+02:00","cybsecope","Cloud Agent","a5d20a66-e192-4fe4-94e3-34c63f8033af","2023-06-05T15:26:04.000+02:00","2026-04-22T11:27:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,flux_libre,FreeFlow,Recette,Cloud Agent,Linux Server","141.0" +"177079686","230465871","vvbocbsap1.sanef-rec.fr","","00:50:56:9c:54:4e","10.45.6.11","fe80::250:56ff:fe9c:544e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","1031563","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 75 51 28 03 bd 0e-18 93 9f ca 34 6b 3b 72","No Asset Tag","'+02:00","2026-03-10T10:03:27.000+02:00","cybsupsys","Cloud Agent","9a1a955f-be95-44fd-8dfc-a8a925d23654","2023-07-04T13:41:39.000+02:00","2026-04-22T11:27:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,flux_libre,OS-LIN-SRV DYN","142.0" +"130583362","192832990","node4","","06:ac:38:d5:6c:36, 66:9d:a3:05:39:af, ee:ee:ee:ee:ee:ee, 00:50:56:82:4b:e9","169.254.25.10,10.233.74.64,10.45.2.59","fe80::649d:a3ff:fe05:39af,fe80::ecee:eeff:feee:eeee,fe80::88bd:f1a0:d07e:13cb","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 26 dc 16 dd 43 ed-90 35 76 d2 bb fc 48 d2","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","cybexpapp","Cloud Agent","43737328-a06b-4ffc-9b9e-0489c15501bf","2022-07-07T11:29:28.000+02:00","2026-04-22T11:36:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,BDD-POS DYN,VRF_INCONNUE,Obsolete","341.0" +"209164475","248967435","vibotapps3.sanef.groupe","","00:50:56:90:f8:0b","10.41.23.157","fe80::250:56ff:fe90:f80b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ec 31 7c aa e2 97-44 72 cf 1d cc 11 0e b3","No Asset Tag","'+02:00","2026-03-17T11:33:03.000+02:00","cybsecope","Cloud Agent","744f0797-94e8-4617-80b3-a63bf60fd012","2024-01-12T12:08:30.000+02:00","2026-04-22T11:17:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0" +"373212739","350071349","vpameasxt2.sanef.groupe","","00:50:56:90:8e:58, 00:50:56:90:70:52","10.41.41.61,10.43.4.26","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 a6 c0 e5 02 48 c2-f7 88 71 b6 0c 38 77 ba","No Asset Tag","'+02:00","2025-11-12T11:52:08.000+02:00","cybreconcile","Cloud Agent","5ab2192f-3bca-48c1-b8d4-b9ea4ab9b18c","2025-10-31T12:03:33.000+02:00","2026-04-22T11:23:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,Sextan","662.0" +"175950116","229618440","vvbocmedi1.sanef-rec.fr","","00:50:56:9c:a8:14","10.45.6.5","fe80::250:56ff:fe9c:a814","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 65 cc 9e 10 b2 48-94 af ee fb 9d 41 ee 4c","No Asset Tag","'+02:00","2026-03-11T16:03:12.000+02:00","cybsupsys","Cloud Agent","2d9b1322-79e0-4cb2-8c3f-fdb0c8effcce","2023-06-26T16:43:00.000+02:00","2026-04-22T11:33:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,flux_libre,Flux Libre,Recette","332.0" +"338447216","","PCB21595.sanef.groupe","PCB21595","D0:AD:08:A3:E6:BF","10.100.39.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YR9","","'+02:00","2026-04-17T21:52:21.000+02:00","SANEF\guidet","Cloud Agent","720cf5ff-e3db-4794-a5a6-9c3ce811d9f0","2025-07-02T14:31:04.000+02:00","2026-04-22T06:11:29.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"161779682","215361432","vraiibpgs5","","00:50:56:82:41:dc","10.45.1.166","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 be f7 a5 b9 7b a3-da b9 35 50 fb 01 95 25","No Asset Tag","'+02:00","2026-03-03T15:14:51.000+02:00","reboot","Cloud Agent","f378f3c9-dbe2-472d-b010-c1337c3d82f6","2023-03-06T13:32:17.000+02:00","2026-04-22T11:32:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","DSI,OS-LIN-SRV DYN,MID-NGINX DYN,Recette,BDD,Cloud Agent,Linux Server","142.0" +"381251026","353499617","PCV22804.sanef-int.adds","PCV22804","D0:AD:08:A3:7B:65","10.11.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YWT","","'+02:00","2025-12-18T08:45:19.000+02:00","Operateur","Cloud Agent","f62c64a5-a00e-4812-86f8-ab2d5dca7d07","2025-12-03T12:51:49.000+02:00","2026-04-22T11:26:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"404697314","362912972","vrpctbams1.recette.adds","VRPCTBAMS1","00:50:56:9C:71:5B","10.45.13.195","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c de c6 68 a1 86 cd-3d 9d c4 6b 3d 20 b0 60","NoAssetTag","'+02:00","2026-03-03T15:15:46.000+02:00","Administrator","Cloud Agent","f8b732b3-70e1-4d00-957e-434c2210faaf","2026-02-27T10:17:04.000+02:00","2026-04-22T11:21:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,BDD-POS DYN","253.0" +"363247806","346032866","vpdsibarc1.sanef.groupe","","00:50:56:9c:de:e3","10.46.33.40","","Linux / Server","Red Hat Enterprise Linux 9.6","9.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 3d 25 ac 92 66 97-c6 8f 5b b1 dd 9d 1f 2f","No Asset Tag","'+02:00","2025-11-06T18:56:37.000+02:00","cybreconcile","Cloud Agent","67730d59-4c98-40aa-bdd1-310c6e65ec29","2025-09-26T11:59:43.000+02:00","2026-04-22T11:41:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD,Production,MID-NGINX DYN","332.0" +"363182865","346017355","PCB21533.sanef.groupe","PCB21533","D0:AD:08:A3:7B:4D","10.12.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRW","8CC3502YRW","'+02:00","2026-03-29T09:12:43.000+02:00","SANEF\pcemtz","Cloud Agent","55f1e132-fe2e-4aab-ade0-3587584cf673","2025-09-26T09:32:24.000+02:00","2026-04-22T06:10:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","253.0" +"203204186","245721134","vpboobquo2.sanef.groupe","","00:50:56:90:33:87","10.100.16.15","fe80::250:56ff:fe90:3387","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 5f 2c c5 bc 88 bf-48 58 d5 42 e0 9e 4a 2b","No Asset Tag","'+02:00","2026-04-07T10:46:33.000+02:00","cybreconcile","Cloud Agent","01814ec3-d1be-40c5-b48d-04d73d99bf86","2023-12-08T12:27:55.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,flux_libre,Flux Libre,FreeFlow","333.0" +"269620053","299332847","SVP21069.sanef-int.adds","SVP21069","D0:AD:08:A3:7B:73","10.142.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWB","","'+02:00","2026-04-21T14:16:38.000+02:00","Superviseur","Cloud Agent","21902ce4-0f65-4f9f-92c5-feb31e649574","2024-10-02T10:25:12.000+02:00","2026-04-22T11:42:15.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Workstation,Cloud Agent,Forescout","686.0" +"322600782","329578376","PCS22821.sanef-int.adds","PCS22821","D0:AD:08:A3:E6:C5","10.209.13.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YR1","","'+02:00","2026-02-18T18:50:03.000+02:00","user_stl","Cloud Agent","0d7b3ccc-2ce2-4f81-8ce9-6ba5de08cfcb","2025-05-07T11:36:47.000+02:00","2026-04-22T11:10:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","346.0" +"380802442","353391316","PCV21519.sanef-int.adds","PCV21519","D0:AD:08:A3:7B:54","10.152.7.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YRP","","'+02:00","2026-04-13T15:36:32.000+02:00","Operateur","Cloud Agent","19b1a7a0-3853-447e-9854-12b54ae87b93","2025-12-02T13:33:02.000+02:00","2026-04-22T11:34:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"245276150","286385893","MTO21623.sanef.groupe","MTO21623","D0:AD:08:A4:4D:B8","10.13.31.7","fe80::993:4480:87cc:65fa","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.2428) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JW","","'+02:00","2026-04-08T10:10:39.000+02:00","SANEF\meteonewsW11","Cloud Agent","fc5aae5c-cc0f-40d4-82c3-ba24ab7442e4","2024-06-20T14:04:48.000+02:00","2026-04-22T06:09:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"232013299","259575773","ls-jarny","LS-JARNY","00:50:56:90:BD:BE","10.41.2.80","fe80::f9bb:c31f:da19:3e62","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 15 c0 f8 77 eb fa-48 74 ee a2 27 a7 f9 90","NoAssetTag","'+02:00","2026-04-02T15:35:09.000+02:00","svpadmin","Cloud Agent","2de35169-5d0d-4cb4-9ba2-0a8ccfb391c5","2024-04-24T09:00:33.000+02:00","2026-04-22T11:02:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","High,VRF_PEAGE_DC,SVP,Production,Péage,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","512.0" +"411327666","365612889","vplogbquo1.sanef.groupe","","00:50:56:90:0a:64","10.100.16.24","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 86 00 a3 f0 0d 58-ef 0c b3 e5 e0 c5 41 8c","No Asset Tag","'+02:00","2026-04-07T12:16:39.000+02:00","cybsecope","Cloud Agent","acd91f63-4ab1-4dee-920a-41ec44d5e3ca","2026-03-25T12:08:38.000+02:00","2026-04-22T11:31:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server","66.0" +"129356722","191963001","vpmalanvr1","VPMALANVR1","00:50:56:82:98:7C","10.27.1.12","fe80::7358:3214:6b8:10cd","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 10 ed b5 30 5c 76-7b 55 09 db 07 9e 26 a7","NoAssetTag","'+02:00","2026-02-03T15:40:46.000+02:00","Administrateur","Cloud Agent","db3d3881-157d-4e7e-877c-fd4538d211c2","2022-06-27T18:09:30.000+02:00","2026-04-22T11:29:59.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Production,Exploitation,DEX,Cloud Agent,Windows Server,NVR,VRF_INCONNUE","508.0" +"193240995","240745929","vpbocmedi1.sanef.groupe","","00:50:56:90:b1:9e","10.41.22.7","fe80::250:56ff:fe90:b19e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 02 d8 d4 6d e7 e7-cc 26 5c 77 77 cf 70 f0","No Asset Tag","'+02:00","2026-04-01T22:01:27.000+02:00","cybreconcile","Cloud Agent","e032846f-c40a-458e-a2f5-53ba09d3bd4a","2023-10-13T15:22:01.000+02:00","2026-04-22T11:33:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Production,flux_libre","335.0" +"243982908","283202091","vdechatal1.sanef.groupe","","00:50:56:82:30:b6","10.45.11.221","fe80::711a:3f73:265e:7d3e","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f6 f9 39 60 6c 46-3e 4b a4 02 56 ea cf 37","No Asset Tag","'+02:00","2025-09-16T09:46:35.000+02:00","cybreconcile","Cloud Agent","b43b0a5f-09b3-481c-b906-bbc93f6bd4be","2024-06-14T10:54:00.000+02:00","2026-04-22T11:34:27.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,Obsolete,DSI,Linux Server,Cloud Agent,TALEND,MID-APACHE-TOMCAT DYN","518.0" +"131404287","193423786","vmampdif1.sanef.groupe","","00:50:56:82:4A:DA","10.41.40.120","fe80::250:56ff:fe82:4ada","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 99 5a c1 b5 93 1a-27 3f 1b ac 65 09 01 f0","No Asset Tag","'+02:00","2023-01-11T21:02:33.000+02:00","cybreconcile","Cloud Agent","77c8d8e6-c0ea-4de7-93fc-1f6016d85d9f","2022-07-13T10:26:16.000+02:00","2026-04-22T11:36:26.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_TRAFIC_DC,DEX,Sextan,Obsolete,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server,Trafic,Production,Sans","696.0" +"131275095","193321026","vpaiiapol7","","00:50:56:82:d9:3c","192.168.2.40","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 49 7a 4e 1f c1 18-92 7b 7c 41 f3 55 9e 5c","No Asset Tag","'+02:00","2024-06-06T10:56:16.000+02:00","cybreconcile","Cloud Agent","4998fab1-c1eb-4e51-b9f9-5cb60e18cac8","2022-07-12T15:49:44.000+02:00","2026-04-22T11:26:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-ELA DYN,BDD-POS DYN,VRF_INCONNUE,Obsolete,Centreon,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans,Cloud Agent,Linux Server","462.0" +"193238549","240744337","vpbocharg1.sanef.groupe","","00:50:56:90:bb:97","10.41.22.6","fe80::250:56ff:fe90:bb97","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 bf de 5d 4c 93 97-85 bf 03 81 b4 e4 13 dd","No Asset Tag","'+02:00","2026-04-01T22:00:29.000+02:00","cybreconcile","Cloud Agent","6b52db23-d651-43d0-bdbe-c44bfd308313","2023-10-13T15:03:08.000+02:00","2026-04-22T11:41:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,Production","330.0" +"130582878","192832075","vmamrtd1.sanef.groupe","","00:50:56:82:60:73","10.45.2.195","fe80::250:56ff:fe82:6073","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3832","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 c6 2a f5 49 bc a2-59 3c 10 9a 46 7a f9 b4","No Asset Tag","'+02:00","2025-10-08T13:43:16.000+02:00","cybastsys","Cloud Agent","379c9019-ff00-476f-a3d0-4968941b6a16","2022-07-07T11:13:56.000+02:00","2026-04-22T11:36:33.000+02:00","x86_64","3","SCA,VM,PM,GAV","Traffic,OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,DEX,Obsolete,log4j,Recette,Sans,Trafic","518.0" +"195789744","241928028","vpbotreco1.sanef.groupe","","00:50:56:90:9c:a9","10.41.23.18","fe80::250:56ff:fe90:9ca9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 93 a0 e3 8d c2 a1-c4 b1 12 c2 f5 43 cd de","No Asset Tag","'+02:00","2026-04-16T11:30:45.000+02:00","cybreconcile","Cloud Agent","6c3400e0-8494-4e2f-bc30-cece799a2623","2023-10-26T11:19:27.000+02:00","2026-04-22T11:28:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,flux_libre,Flux Libre,Production","335.0" +"376359111","351489742","vptrabmut4.sanef.groupe","","52:54:00:f6:df:a5, 52:54:00:4c:fe:ac, 52:54:00:e6:b6:da","192.168.17.7,10.41.40.221,10.41.40.223,10.41.40.226,192.168.17.134","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-13T11:23:37.000+02:00","oracle","Cloud Agent","cfacc9d6-289c-46d2-a4a0-1bd1dd209988","2025-11-13T12:22:43.000+02:00","2026-04-22T11:28:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,Production,ORACLE,BDD","339.0" +"380530583","353273886","PCB22764.sanef.groupe","PCB22764","D0:AD:08:A3:E7:2D","10.219.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTX","","'+02:00","2026-04-10T15:34:31.000+02:00","SANEF\vernichons","Cloud Agent","895247a9-f159-474e-8822-ffadae05fdfa","2025-12-01T12:36:09.000+02:00","2026-04-22T11:01:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"242119222","276920246","vpvsaaiad1","","00:50:56:9a:b2:da","10.44.0.104","fe80::250:56ff:fe9a:b2da","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a 06 7d bb 22 a7 a8-b7 1d 26 90 bc ce 60 c0","No Asset Tag","'-04:00","2026-02-04T18:07:17.000+02:00","tbaad-ext","Cloud Agent","6739b175-db8a-430b-adb2-545d91a68e4a","2024-06-06T15:30:31.000+02:00","2026-04-22T11:45:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"222529401","254801968","vpburaexc1.sanef.groupe","VPBURAEXC1","02:93:FA:76:3A:34, 00:50:56:9C:D7:F6","169.254.1.152,10.42.30.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 05 3f 88 a7 80 ea-94 fa 9e 22 14 49 68 11","NoAssetTag","'+02:00","2026-04-15T11:53:20.000+02:00","Administrateur","Cloud Agent","c544889e-6204-4e33-85e9-4db70bedf512","2024-03-15T12:26:18.000+02:00","2026-04-22T11:35:32.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,DSI,High,Windows Server,Cloud Agent,EXCHANGE","0.0" +"322405176","329455590","PCB22278.sanef.groupe","PCB22278","D0:AD:08:A3:7A:F1","10.209.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVS","8CC3502YVS","'+02:00","2026-03-29T09:11:11.000+02:00","SANEF\LAINEF","Cloud Agent","cfdfb740-d84c-445c-92f2-7deb1e81553d","2025-05-06T15:08:14.000+02:00","2026-04-22T11:23:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"414638987","367132982","vrpxpapps1","","00:50:56:9c:be:b3","10.45.14.169","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23770","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c d9 a2 d8 87 49 d1-93 6a d8 be 66 0f c4 a6","No Asset Tag","'+02:00","2026-04-15T09:17:18.000+02:00","cybintsys","Cloud Agent","d9909aaf-6472-486d-bf91-0f400eeb295e","2026-04-09T11:51:08.000+02:00","2026-04-22T11:49:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"300253495","320228387","SVP22856.sanef-int.adds","SVP22856","62:45:2E:0F:3E:E9, D0:AD:08:A7:27:C4","169.254.87.101,10.12.20.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN7","","'+02:00","2026-04-02T07:37:06.000+02:00","Superviseur","Cloud Agent","6bdeff05-d8d9-4898-8028-10e06bf6456f","2025-02-14T12:25:50.000+02:00","2026-04-22T11:32:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"114208440","181637926","lamarrac1.sanef.groupe","","00:17:A4:77:08:A8, 00:17:A4:77:08:B4, 00:17:A4:77:08:AC, 00:17:A4:77:08:B0","10.45.2.100,10.45.2.101,10.45.3.100,10.45.5.2,169.254.75.12,10.45.5.18","fe80::217:a4ff:fe77:8a8,fe80::217:a4ff:fe77:8b4,fe80::217:a4ff:fe77:8ac,fe80::217:a4ff:fe77:8b0","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","VCX000020J","","'+02:00","2026-02-25T16:10:34.000+02:00","cybadmsys","Cloud Agent","8c67b965-8690-4354-b316-a1e1f389c3c7","2022-02-21T15:34:28.000+02:00","2026-04-22T11:46:17.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Linux Server,Recette,Sans,Trafic,OS-LIN-SRV DYN,Cloud Agent,DEX,Obsolete,log4j,Sextan","693.0" +"236302913","264492818","lpemvbpemv3.sanef.groupe","","00:17:a4:77:1c:90, 00:17:a4:77:1c:18, 00:17:a4:77:1c:1c","169.254.5.227,172.16.0.117,192.168.101.117,192.168.101.147,192.168.101.150,192.168.103.117","fe80::217:a4ff:fe77:1c90,fe80::217:a4ff:fe77:1c18,fe80::217:a4ff:fe77:1c1c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000703","","'+02:00","2025-10-08T16:34:29.000+02:00","oracle","Cloud Agent","02118ed9-bdd8-4a72-95b6-3f35d1c60365","2024-05-13T15:02:54.000+02:00","2026-04-22T11:31:32.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,PCI Bunker EMV - VLAN Stecard v17,EMV,PCI Bunker EMV,Production,Linux Server,Cloud Agent,OS-LIN-SRV DYN","684.0" +"202417909","245310581","vrameasxt1.sanef-rec.fr","","00:50:56:9c:ee:c0, 00:50:56:9c:03:6a","10.45.2.60,10.45.4.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 96 39 e1 59 7f 01-4c 1d 84 be 8d 0e 2e 3d","No Asset Tag","'+02:00","2026-04-20T18:13:18.000+02:00","cybadmsys","Cloud Agent","82d41526-f32d-43f4-ba79-4ec43cc1366a","2023-12-04T17:28:50.000+02:00","2026-04-22T11:36:38.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Sextan,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","682.0" +"138279751","197688847","vrtrabmas2","VRTRABMAS2","00:50:56:82:AF:75","10.43.255.14","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","49151","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 0d 6a 63 c8 28 60-91 66 cc d3 89 28 42 c0","NoAssetTag","'+02:00","2026-01-14T15:18:10.000+02:00","Andsoft","Cloud Agent","416835ef-cf6c-4b22-8f22-83a88582c46f","2022-08-31T21:07:16.000+02:00","2026-04-22T06:06:26.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Masterparc,VRF_INCONNUE,Cloud Agent,Windows Server,DEX,BDD-SQL DYN,OS-WIN-SRV DYN","510.0" +"246623861","287171950","MTO21049.sanef.groupe","MTO21049","D0:AD:08:A3:7B:D5","10.104.31.0","fe80::a153:4ed3:2c69:d0f5","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.2428) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVT","","'+02:00","2026-03-12T10:40:42.000+02:00","SANEF\meteonewsW11","Cloud Agent","acede5ef-dbc5-44bd-9d35-cc48132b26c1","2024-06-26T18:58:27.000+02:00","2026-04-22T11:31:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"205329423","246826334","vibotatst2.sanef.groupe","VIBOTATST2","00:50:56:90:7C:E3","10.41.23.148","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 3e 61 eb f3 6a 7d-9c a0 bb f5 62 4e cd 60","NoAssetTag","'+02:00","2026-03-18T11:08:54.000+02:00","SANEF\ndead","Cloud Agent","38402a2b-1866-4978-8ecb-5512b182a2ab","2023-12-20T15:25:19.000+02:00","2026-04-22T11:35:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Production,OS-WIN-SRV DYN,Cloud Agent,Windows Server,flux_libre,Flux Libre","250.0" +"236885633","266209327","ls-dormans","LS-DORMANS","00:50:56:90:25:3A","10.41.2.59","fe80::4541:dd3c:bb82:7b0b","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c9 c8 4a ab 81 be-a8 82 86 19 a6 8d cf 1c","NoAssetTag","'+02:00","2026-03-24T12:14:17.000+02:00","svpadmin","Cloud Agent","e2ae6c37-1a1c-4f43-8852-bbc7693871f4","2024-05-15T13:25:17.000+02:00","2026-04-22T11:04:12.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,Péage","506.0" +"314659903","326546972","vpdsibels1.sanef.groupe","","00:50:56:94:24:01","10.44.5.163","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","31889","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 14 79 f4 90 0c ae af-a1 e6 4c 3b 07 6a 15 a6","No Asset Tag","'+02:00","2026-02-10T10:37:08.000+02:00","cybreconcile","Cloud Agent","b41bf64c-fcc7-4584-bb5d-9aa36b706786","2025-04-08T17:04:44.000+02:00","2026-04-22T11:21:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,BDD,Production,BDD-ELA DYN","140.0" +"354675277","342491005","vpechbetl1.sanef.groupe","","00:50:56:90:8f:f8","10.42.16.140","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 d2 68 1d 31 e0 41-23 3e bb 1f 0b eb 0e ec","No Asset Tag","'+02:00","2026-02-12T16:12:01.000+02:00","cybsupsys","Cloud Agent","a662aaed-3d25-42d4-a779-5c190b8f957f","2025-08-26T16:14:41.000+02:00","2026-04-22T11:34:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,Linux Server,Cloud Agent,MID-NGINX DYN,Production","144.0" +"203604125","245940905","vrdsibans1.sanef-rec.fr","","00:50:56:9c:2a:6e","10.45.0.166","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 14 1a 3c 12 f2 f3-bc 07 0f b2 3f e4 8e cc","No Asset Tag","'+02:00","2026-01-07T11:53:05.000+02:00","cybadmsys","Cloud Agent","66baa830-a381-4b74-afba-347a75a8b4ee","2023-12-11T11:56:10.000+02:00","2026-04-22T11:28:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Ansible","337.0" +"193621036","240986557","vpbocs4as3.sanef.groupe","","00:50:56:90:4f:98","10.41.22.10","fe80::250:56ff:fe90:4f98","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 af 30 43 be 13 48-43 31 e8 d0 5e 4f b6 46","No Asset Tag","'+02:00","2026-04-01T21:57:06.000+02:00","cybreconcile","Cloud Agent","4343f3b6-92f2-421d-8a62-5526f24f2b50","2023-10-16T13:28:43.000+02:00","2026-04-22T11:34:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Production,flux_libre,Cloud Agent,Linux Server","331.0" +"137347865","197590796","vppeaasip1.sanef.groupe","","00:50:56:82:f6:86","10.41.20.35","fe80::2746:28d3:7cc0:3356","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7821","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2c 9a 92 ff a4 40-5c 9c 4e 42 17 2f 35 cc","No Asset Tag","'+02:00","2024-11-14T11:45:54.000+02:00","cybreconcile","Cloud Agent","016180df-549c-451e-928f-068e926a750d","2022-08-30T17:31:07.000+02:00","2026-04-22T11:36:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Production,Obsolete,MID-NGINX DYN,VRF_PEAGE_DC,Cloud Agent,Linux Server,DEX,SSIP","343.0" +"360012141","","PCB24324.sanef.groupe","PCB24324","10:B6:76:95:8B:97","10.152.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYR","","'+02:00","2026-04-22T06:00:48.000+02:00","SANEF\CADET","Cloud Agent","519a6459-743e-424a-863e-60cc58737249","2025-09-16T12:22:54.000+02:00","2026-04-22T06:04:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation,BDD-SQL DYN","0.0" +"363981573","346388761","vptrabmut3.sanef.groupe","","52:54:00:ac:fa:fd, 52:54:00:32:a0:3a, 52:54:00:71:43:6a","10.41.40.231,10.41.40.233,10.41.40.236,192.168.17.134,192.168.17.7","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-26T15:52:24.000+02:00","oracle","Cloud Agent","2754da18-b6c3-4577-9f74-3e0940f99b7a","2025-09-29T17:05:48.000+02:00","2026-04-22T11:28:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,Production,Linux Server,Cloud Agent","339.0" +"347918139","339424918","vrlogbels1.sanef-rec.fr","","00:50:56:9c:b9:36","10.45.15.164","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 08 da 48 70 10 be-85 df 5d 65 04 dd 97 52","No Asset Tag","'+02:00","2026-01-21T17:50:36.000+02:00","cybintsys","Cloud Agent","6b892b42-f235-497c-a463-35fb34d6c0bc","2025-07-31T17:17:19.000+02:00","2026-04-22T11:20:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Elasticsearch,Recette","140.0" +"414295899","367042281","vrdsiasta1.recette.adds","VRDSIASTA1","00:50:56:9C:27:5F","192.168.19.20","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","4095","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 1b 79 b2 a1 c8 56-7d 6e 51 56 f9 a2 3e fd","NoAssetTag","'+02:00","2026-04-09T17:21:06.000+02:00","RECETTE\b03987","Cloud Agent","a2f2cd9d-fa60-4033-b1c7-48d8ed01398b","2026-04-08T15:04:37.000+02:00","2026-04-22T11:40:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DMZ,OS-WIN-SRV DYN,Cloud Agent","249.0" +"398330693","360617829","macbook-pro.home","MAC15859","a0:78:17:81:33:61","10.255.1.11","fe80::1ccb:9ec5:3762:b7b9","Mac / Client","Apple macOS Tahoe (26.3.1)","26.3","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFF78MLQ05N","","'+02:00","2026-03-31T12:49:00.000+02:00","aymeric.tron","Cloud Agent","536e9967-123a-4ed5-8070-4a4d969691f1","2026-02-06T19:02:54.000+02:00","2026-04-22T06:03:29.000+02:00","arm64_M1","2","SCA,VM,PM,GAV","Cloud Agent","65.0" +"253759791","291263341","REX20980.sanef-int.adds","REX20980","BC:0F:F3:87:6F:92","10.45.11.241,192.168.91.31","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.13.02","8CC3290LL5","","'+02:00","2026-03-24T13:57:05.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","8aaa886d-5e22-4580-abf3-52443c296662","2024-07-26T09:28:57.000+02:00","2026-04-22T11:12:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"194257182","241333482","vpcosaapp1.sanef.groupe","","00:50:56:90:1a:28","10.41.40.178","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f3 5a f2 75 7d 83-f7 74 3b d0 2b 5c 2e 6e","No Asset Tag","'+02:00","2026-01-27T11:25:47.000+02:00","root","Cloud Agent","5d29df00-0517-4708-bf91-071d41bd293c","2023-10-19T14:05:03.000+02:00","2026-04-22T11:15:33.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server,log4j,COSWIN,MID-APACHE-TOMCAT DYN","511.0" +"333993622","333995330","PCB24127.sanef.groupe","PCB24127","48:EA:62:C8:93:47","10.107.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6D","","'+02:00","2026-04-21T07:22:35.000+02:00","SANEF\lecompte","Cloud Agent","61aca5c9-29f0-44ee-923b-63c524306674","2025-06-17T11:58:01.000+02:00","2026-04-22T11:28:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"159570896","212144733","vpintaels1.sanef.groupe","","00:50:56:82:9c:94","10.46.33.15","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 0f 4c 53 91 c9 2b-89 d9 8b cf 4c 61 3b 82","No Asset Tag","'+02:00","2026-02-24T12:06:38.000+02:00","cybreconcile","Cloud Agent","903070e8-d55b-4b79-9537-dd5f911d7fa0","2023-02-16T15:30:31.000+02:00","2026-04-22T11:17:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,Cloud Agent,Linux Server,VRF_BURO_DC,OS-LIN-SRV DYN,BDD-ELA DYN","140.0" +"208782494","248750418","vibotreco3.sanef.groupe","","00:50:56:90:60:6a","10.41.23.159","fe80::250:56ff:fe90:606a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f3 0e 93 d4 68 75-7f ba 4f bb 8e 09 fa f5","No Asset Tag","'+02:00","2026-03-18T15:53:31.000+02:00","cybsupsys","Cloud Agent","00a28729-de34-4f80-8f1e-e7b31432429b","2024-01-10T13:28:36.000+02:00","2026-04-22T11:05:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","140.0" +"130590884","192838404","vrameased1.sanef.groupe","","00:50:56:82:7a:69","10.45.2.75","fe80::250:56ff:fe82:7a69","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 1e ee a2 92 ac 86-6c 8c f9 b3 a2 94 88 c9","No Asset Tag","'+02:00","2026-04-21T10:42:13.000+02:00","cybsecope","Cloud Agent","39e04d51-1e57-49a4-bd10-f19f6adc92bf","2022-07-07T12:17:00.000+02:00","2026-04-22T11:25:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,DEX,SED,Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,TAG-SRVEXPOSEINDIRECT","28.0" +"385999740","355957537","vrlogaagt1.sanef-rec.fr","","00:50:56:9c:7a:c4","10.45.15.168","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 01 30 6c 10 92 b4-5b 0b 78 88 ee 20 c1 1c","No Asset Tag","'+02:00","2026-04-14T09:37:38.000+02:00","cybintsys","Cloud Agent","ef545dbd-144b-4f79-a905-85f2a6aad04d","2025-12-24T17:20:30.000+02:00","2026-04-22T11:23:53.000+02:00","x86_64","2","SCA,VM,PM,GAV","Logiciels,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent","66.0" +"320435785","328702489","PCB23561.sanef.groupe","PCB23561","6C:0B:5E:ED:A2:AB","10.100.39.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4F","","'+02:00","2026-03-28T09:28:13.000+02:00","jocelyn.scheuer@sanef.com","Cloud Agent","f9b56c6a-172f-4552-8e9e-e1ad248a86e0","2025-04-29T10:04:54.000+02:00","2026-04-22T11:22:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"189160131","238399071","vpdsiaans1.sanef.groupe","","00:50:56:8d:95:c2","10.44.2.134","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 54 63 d1 d6 4a 7f-a6 4a 8a b9 8d 82 21 1b","No Asset Tag","'+02:00","2026-01-27T16:09:39.000+02:00","cybreconcile","Cloud Agent","b6841e91-c79e-484a-afa5-d32ab3f637b3","2023-09-21T11:50:23.000+02:00","2026-04-22T11:26:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Ansible","139.0" +"287512303","311429583","ls-spare-mtz","LS-SPARE-MTZ","00:50:56:90:75:57","10.12.2.250","fe80::6eca:290f:ee3d:6f1d","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 79 2b ef 0b d9 8e-2b 00 66 29 1f 80 5c b0","NoAssetTag","'+02:00","2026-02-16T12:01:25.000+02:00","gare","Cloud Agent","d85d4d2a-313d-4f60-b5c3-dba8eb4f7583","2024-12-19T11:25:33.000+02:00","2026-04-22T11:45:53.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,OS-WIN-SRV DYN,Péage,Cloud Agent","682.0" +"157828168","210598037","vppintaweb1.sanef.groupe","","00:50:56:82:2c:2d","192.168.20.20","fe80::250:56ff:fe82:2c2d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 77 09 31 f0 6b 76-f7 e3 6e d8 2b ad 95 9f","No Asset Tag","'+02:00","2026-04-14T14:24:12.000+02:00","cybreconcile","Cloud Agent","b919eceb-06be-43b0-83ac-4c13ec02459c","2023-02-03T03:34:19.000+02:00","2026-04-22T11:27:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,BDD-POS DYN,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,VRF_INCONNUE","59.0" +"322014494","329324232","PCB21576.sanef.groupe","PCB21576","D0:AD:08:A3:E6:D7","10.3.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQY","8CC3502YQY","'+02:00","2026-03-28T09:13:06.000+02:00","SANEF\igier","Cloud Agent","32a6885b-e31c-4923-b1d3-76771d1bb90f","2025-05-05T12:18:07.000+02:00","2026-04-22T10:57:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"387139802","356493097","vmdtrac11.recette.adds","VMDTRAC11","00:50:56:9C:89:A0","10.45.17.13","fe80::d794:a632:1a29:e2d1","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c f3 82 31 59 6a b5-a3 4a 95 77 45 81 79 ad","NoAssetTag","'+02:00","2026-04-16T03:35:48.000+02:00","supwindev","Cloud Agent","6ee8bab2-e739-495f-b337-637d56abc85d","2025-12-31T11:01:14.000+02:00","2026-04-22T11:25:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"131269845","193319055","lampwaz1.sanef.groupe","","00:17:a4:77:10:de","10.41.40.122","fe80::217:a4ff:fe77:10de","Linux / Server","The CentOS Project CentOS 7.7 (1908)","7.7","Computers / Server","HPE ProLiant BL460c G9 Server","16","2400","Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz","64303","HP I36 07/18/2022","CZ2622016K","","'+02:00","2024-03-20T11:44:36.000+02:00","cybastapp","Cloud Agent","3da45f2d-a68a-4ccd-9e0e-ff8d500d455e","2022-07-12T15:27:28.000+02:00","2026-04-22T11:17:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_TRAFIC_DC,Trafic,DSI,BDD-ELA DYN,Cloud Agent,Linux Server,Waze,MID-NGINX DYN,log4j,Production,Obsolete","344.0" +"230338974","258575124","vpadvaapp1.sanef.groupe","","00:50:56:90:a7:35","10.41.20.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e8 ee dd 80 45 a1-90 55 02 ef e6 c5 60 78","No Asset Tag","'+02:00","2026-03-17T16:37:31.000+02:00","cybreconcile","Cloud Agent","7ef6b100-66b0-403a-bf75-d23cc38d1e91","2024-04-16T13:00:27.000+02:00","2026-04-22T11:17:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Péage","332.0" +"131270067","193318266","vpechatal1.sanef.groupe","","00:50:56:82:45:f0","10.30.10.20","fe80::711a:3f73:265e:7d3e","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 12 9d c2 45 88 9f-3e 14 e3 36 cb f8 03 a3","No Asset Tag","'+02:00","2025-02-13T11:49:26.000+02:00","cybreconcile","Cloud Agent","a6ae2468-fc2c-4f6b-9218-735ddd4c618c","2022-07-12T15:17:38.000+02:00","2026-04-22T11:17:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,BDD-POS DYN,Cloud Agent,Linux Server,Exploitation IT,Production,DSI,Obsolete,log4j,TALEND,VRF_INCONNUE","513.0" +"340379006","","SVP18486.sanef-int.adds","SVP18486","D0:AD:08:A4:73:89","10.155.2.29,169.254.121.253","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764G7","","'+02:00","2026-04-13T18:31:06.000+02:00","Superviseur","Cloud Agent","f8e818bb-a3fd-4864-b6ac-9f2ec92ddfed","2025-07-09T09:15:19.000+02:00","2026-04-22T06:00:44.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"195833595","241948707","lptrabgas1.sanef.groupe","","ee:50:33:80:00:70","10.41.40.151","fe80::ec50:33ff:fe80:70","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63821","HPE I44 06/13/2025","VCGCIOJ00E","/n/Bios Asset Tag :","'+02:00","2026-01-20T17:04:55.000+02:00","cybastapp","Cloud Agent","0978afd0-9c46-4f22-a50d-1649fc9c7717","2023-10-26T15:25:02.000+02:00","2026-04-22T10:58:12.000+02:00","x86_64","3","SCA,VM,PM,GAV","Gaspar,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX","504.0" +"349742049","340111944","vrechaetl1","","00:50:56:9c:b3:8b","10.45.11.206","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 99 db c1 19 74 57-95 63 73 08 d3 47 aa 2e","No Asset Tag","'+02:00","2026-01-08T12:05:43.000+02:00","cybadmsys","Cloud Agent","51bb8d70-ced7-4155-a860-a33fd1eae820","2025-08-07T10:28:44.000+02:00","2026-04-22T11:18:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette","340.0" +"343105252","337775706","PCB24163.sanef.groupe","PCB24163","24:FB:E3:F3:BA:16","10.103.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG52136X5","","'+02:00","2026-04-07T08:51:07.000+02:00","SANEF\PALLIEZ","Cloud Agent","7ce733e0-179a-47fc-a36a-a41294082c6d","2025-07-18T11:49:19.000+02:00","2026-04-22T11:10:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"378358691","352442064","PCV21536.sanef-int.adds","PCV21536","D0:AD:08:A3:7B:CE","10.210.7.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YW0","","'+02:00","2026-04-21T17:13:22.000+02:00","Operateur","Cloud Agent","dffa7ece-3aec-4e0c-9198-5d7b5bf7a998","2025-11-21T17:27:19.000+02:00","2026-04-22T11:11:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"175948572","229617189","vvbotatsp1.sanef-rec.fr","","00:50:56:9c:c3:f7, 42:6a:d1:c0:a3:49, 86:ef:5a:6f:8b:1d, aa:8f:7b:e3:dd:40, aa:75:42:9d:f4:82, 36:15:78:10:a8:1d, 9e:26:58:5f:42:2f, 2e:a0:54:8a:8d:77","10.45.6.138,10.89.0.1","fe80::250:56ff:fe9c:c3f7,fe80::406a:d1ff:fec0:a349,fe80::84ef:5aff:fe6f:8b1d,fe80::a88f:7bff:fee3:dd40,fe80::a875:42ff:fe9d:f482,fe80::3415:78ff:fe10:a81d,fe80::9c26:58ff:fe5f:422f,fe80::2ca0:54ff:fe8a:8d77","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c bc f3 f5 a6 3e cb-a7 c7 a3 b8 4a 0b f7 0a","No Asset Tag","'+02:00","2026-03-12T15:49:55.000+02:00","kapschsysuser","Cloud Agent","8971266d-8f79-45c1-9c5a-cf5a291472ff","2023-06-26T16:30:04.000+02:00","2026-04-22T10:58:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,Flux Libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN","142.0" +"297558271","318694151","OSA22801.sanef-int.adds","OSA22801","D0:AD:08:A3:E7:32","10.209.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTS","","'+02:00","2026-04-17T08:47:55.000+02:00","Superviseur","Cloud Agent","8d42f27b-c009-4296-b731-eea6a8925494","2025-02-04T16:35:07.000+02:00","2026-04-22T11:38:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"130331208","192655016","VPAIIAPVD4.sanef.groupe","VPAIIAPVD4","00:50:56:82:D0:D9","10.41.11.18","fe80::2cbf:bb83:13f5:956f","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 46 df a0 73 86 ef-cc ff 3f 27 b4 2c e8 2b","NoAssetTag","'+02:00","2025-04-11T08:32:21.000+02:00","SANEF\durmarque","Cloud Agent","16dd2756-df04-4e88-b97c-b34511125527","2022-07-05T13:59:44.000+02:00","2026-04-22T11:39:26.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,Sans,Production,Cloud Agent,Windows Server,DEX,VRF_INCONNUE,NVR,Obsolete,Workstation","518.0" +"172623318","227337031","vrecmbsql1.recette.adds","VRECMBSQL1","00:50:56:9C:40:97","10.45.7.37","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 60 78 c7 b6 1c 02-54 6b f1 49 a9 03 0b 84","NoAssetTag","'+02:00","2026-03-03T15:14:45.000+02:00","RECETTE\B07185","Cloud Agent","1bdb7756-b5c2-44dd-9339-fc9e25227558","2023-06-01T11:36:59.000+02:00","2026-04-22T11:16:23.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Recette,BDD-SQL DYN,OS-WIN-SRV DYN,DSI,Cloud Agent,Windows Server,SCCM","520.0" +"223175180","255076753","ls-schwindratzheim","LS-SCHWINDRATZH","00:50:56:90:B0:E5","10.11.2.20","fe80::6221:fd62:107a:e6ad","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 42 02 59 15 b7 72-c7 b2 23 6b 93 70 6b 50","NoAssetTag","'+02:00","2026-03-03T10:30:29.000+02:00","svpadmin","Cloud Agent","5ab778c6-9498-4575-939c-e604d1fdd9ab","2024-03-18T17:12:38.000+02:00","2026-04-22T11:24:13.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,High,VRF_PEAGE,VRF_PEAGE_DC,VRF_BACKUP_DC,SVP,DEX,Cloud Agent,Windows Server,Production,Péage","513.0" +"365200904","346822702","PCV21501.sanef-int.adds","PCV21501","D0:AD:08:A3:7C:C1","10.147.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YYF","","'+02:00","2026-03-27T10:19:02.000+02:00","Operateur","Cloud Agent","bf07f0ef-68f2-4963-a274-eda41f43348f","2025-10-03T13:07:38.000+02:00","2026-04-22T10:54:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"320931755","328821399","PCB24020.sanef.groupe","PCB24020","6C:0B:5E:F8:18:83","10.6.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDM","","'+02:00","2026-03-29T05:01:58.000+02:00","SANEF\bolzinger","Cloud Agent","d089c1a0-4f1a-4bf9-a435-d7e6a2ab4300","2025-04-30T11:56:18.000+02:00","2026-04-22T11:26:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"349775782","340136515","vpodaboem1.sanef.groupe","","52:54:00:c0:56:44, 52:54:00:b3:54:bb, 52:54:00:45:b9:77","192.168.17.129,192.168.17.4,10.42.15.100,10.42.15.102,10.42.15.105,10.42.15.106","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-07-31T08:56:17.000+02:00","oracle","Cloud Agent","ebe237cd-1827-4e0c-8fa2-7e65f82d01a5","2025-08-07T14:49:20.000+02:00","2026-04-22T11:02:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent","339.0" +"349790308","340136517","vpodaboem4.sanef.groupe","","52:54:00:44:a7:4f, 52:54:00:0d:d3:d8, 52:54:00:a4:3c:f9","192.168.17.130,192.168.17.5,10.42.15.91,10.42.15.93,10.42.15.94","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-10-03T14:51:30.000+02:00","oracle","Cloud Agent","eceb77e5-0bb7-4372-a44f-29005e436230","2025-08-07T14:49:18.000+02:00","2026-04-22T11:17:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","339.0" +"384808442","355184942","PCB24213.sanef.groupe","PCB24213","10:B6:76:95:8B:A7","10.5.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ8","","'+02:00","2026-04-16T18:43:16.000+02:00","SANEF\savart","Cloud Agent","667e36fd-633b-4d32-be52-c2683e73b151","2025-12-18T16:02:16.000+02:00","2026-04-22T11:42:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"323162513","329799404","PCB22780.sanef.groupe","PCB22780","D0:AD:08:A3:E6:5C","10.209.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQG","8CC3502YQG","'+02:00","2026-03-28T16:05:08.000+02:00","SANEF\ISAACF","Cloud Agent","38af2161-09f7-41ec-bc67-e3fcc7027886","2025-05-09T10:36:49.000+02:00","2026-04-22T11:05:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"365228466","346827581","PCV21517.sanef-int.adds","PCV21517","D0:AD:08:A3:E6:BC","10.100.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YQV","","'+02:00","2026-04-21T17:10:15.000+02:00","Operateur","Cloud Agent","2564b64f-5f20-43e7-832a-4d224140efd7","2025-10-03T14:31:45.000+02:00","2026-04-22T11:01:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"152272093","206868500","vrintaprx2.sanef.groupe","","00:50:56:82:e3:56","192.168.20.4","fe80::250:56ff:fe82:e356","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 38 e0 f4 be 5d d8-0a ca 30 d2 61 81 d5 eb","No Asset Tag","'+02:00","2026-02-23T13:29:47.000+02:00","cybadmsys","Cloud Agent","12f16116-8e69-4534-b153-8625040e394f","2022-12-16T17:48:50.000+02:00","2026-04-22T11:20:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Gestion institutionnel,OS-LIN-SRV DYN","55.0" +"130586828","192835989","vmamrpmv1","","00:50:56:82:2A:C2, 00:50:56:82:5F:9D, 00:50:56:82:1B:6C","10.33.16.80,10.30.16.72,10.30.16.80,10.30.16.83,10.30.16.85,10.30.16.87,10.30.16.89,10.32.16.72,10.32.16.80,10.32.16.85,10.32.16.87,10.32.16.89,10.32.16.83","fe80::250:56ff:fe82:2ac2,fe80::250:56ff:fe82:5f9d,fe80::250:56ff:fe82:1b6c","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 24 45 67 6c 6f a4-0d 0b 07 05 70 c2 d5 c8","No Asset Tag","'+02:00","2025-10-09T14:46:27.000+02:00","delcour","Cloud Agent","9e6775b2-b6f9-4250-93a0-ab50a67c0e91","2022-07-07T12:01:59.000+02:00","2026-04-22T11:16:36.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MIVISU,DEX,Obsolete,Sans,Recette,Trafic,VRF_INCONNUE","873.0" +"287926188","311535929","vrosapapp1.sanef-rec.fr","","00:50:56:9c:d7:4e","10.45.9.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 77 b6 59 f3 4f f2-8e 9e ca 27 86 09 c9 25","No Asset Tag","'+02:00","2026-02-16T11:59:55.000+02:00","cybintsys","Cloud Agent","3255e4fb-6a64-490b-8eb8-51ab95621d88","2024-12-20T12:48:26.000+02:00","2026-04-22T11:07:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server","142.0" +"406232630","363561644","PCV20893.sanef-int.adds","PCV20893","30:13:8B:6C:5E:F4","10.12.7.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q7V","","'+02:00","2026-03-05T12:41:42.000+02:00","Operateur","Cloud Agent","24f19022-680b-43fb-9385-735ef49ecce5","2026-03-05T11:58:38.000+02:00","2026-04-22T11:13:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"395540025","359520751","vrsigaapp1.sanef-rec.fr","","00:50:56:9c:05:30","10.45.2.31","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 7b b0 e0 75 2d 89-f1 b3 22 04 c9 78 ad e9","No Asset Tag","'+02:00","2026-02-05T16:23:38.000+02:00","cybsupapp","Cloud Agent","4da548de-ca05-4cd7-b695-9750ff6b0a51","2026-01-28T11:51:58.000+02:00","2026-04-22T11:15:35.000+02:00","x86_64","3","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,SIG,Recette","221.0" +"215228959","251732519","ls-srom-ferme","LS-SROM-FERME","00:50:56:90:6A:0F","10.41.2.82","fe80::f0d2:9ace:6258:5d05","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 38 bc a6 71 1a 94-76 72 63 47 0d 82 32 2a","NoAssetTag","'+02:00","2026-03-03T12:48:06.000+02:00","svpadmin","Cloud Agent","b25f15f1-c683-4dd3-9a11-2a07a8d06227","2024-02-12T17:07:50.000+02:00","2026-04-22T11:07:51.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_PEAGE_DC,Péage,DEX,Cloud Agent,Windows Server,SVP,Production,High,Haute","640.0" +"240178229","273931254","SVP20955.sanef-int.adds","SVP20955","BC:0F:F3:88:FD:3D","10.22.1.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LM8","","'+02:00","2026-04-22T05:40:58.000+02:00","Superviseur","Cloud Agent","9968115e-b7e6-4c5d-ad35-bec069e68dd4","2024-05-29T14:53:38.000+02:00","2026-04-22T10:39:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"377808411","352213443","vpdsiahap2.sanef.groupe","","00:50:56:90:9a:cd","192.168.19.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 98 aa fe 00 2a 65-e3 4b 29 19 60 ab 75 e9","No Asset Tag","'+02:00","2026-04-13T14:20:26.000+02:00","cybreconcile","Cloud Agent","649d883a-fab2-40b2-9f81-89e61284a0f6","2025-11-19T18:53:52.000+02:00","2026-04-22T11:05:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"305733241","322855856","spsicaquo1.sanef.groupe","","20:67:7c:e6:0f:14","10.100.254.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31570","HPE U41 09/30/2024","CZJ84600RQ","","'+02:00","2025-11-06T13:55:17.000+02:00","cybreconcile","Cloud Agent","c73d0497-231a-417f-b8bb-3202cc8b2e09","2025-03-06T12:30:09.000+02:00","2026-04-22T11:08:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIA,OS-LIN-SRV DYN,TAG-SIC,Linux Server,Cloud Agent","139.0" +"319348494","328407085","PCB22795.sanef.groupe","PCB22795","D0:AD:08:BA:B4:39","10.152.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK0","8CC3502YK0","'+02:00","2026-03-28T09:43:15.000+02:00","SANEF\fleurya","Cloud Agent","cbdb5243-86c5-4f37-a6e8-2d7987aafb53","2025-04-25T12:57:48.000+02:00","2026-04-22T10:48:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"174237368","228465461","sppeaanvr21","SPPEAANVR21","D4:F5:EF:8A:BA:34","10.41.7.120","fe80::f22a:5958:7f21:7727","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ222807H3","","'+02:00","2026-02-05T10:26:05.000+02:00","CYBADMSYS","Cloud Agent","bb48b03c-e1f2-4a88-9626-848bff498e15","2023-06-13T11:54:14.000+02:00","2026-04-22T11:05:14.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,NVR,Cloud Agent,Windows Server","523.0" +"415518160","367495696","PCB20706.sanef.groupe","PCB20706","58:1C:F8:EB:78:C8","192.168.0.184,10.205.0.168","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3X","","'+02:00","2026-04-15T12:08:56.000+02:00","SANEF\NOMMAY-ext","Cloud Agent","7e21108c-351a-448f-95fd-15b388185663","2026-04-13T16:55:34.000+02:00","2026-04-22T11:08:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"340078604","336780137","lpamebrac4.sanef.groupe","","3e:33:fb:a0:00:f3, 3e:33:fb:a0:00:f7","10.41.41.113,10.41.41.117,10.41.41.119,10.43.4.141","fe80::3c33:fbff:fea0:f3,fe80::3c33:fbff:fea0:f7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","515150","HPE I44 06/13/2025","VCGBW52015","/n/Bios Asset Tag :","'+02:00","2025-11-19T12:19:37.000+02:00","cybreconcile","Cloud Agent","307d4f95-68a7-49e0-887e-2904dced3c48","2025-07-08T10:21:22.000+02:00","2026-04-22T11:28:29.000+02:00","x86_64","2","SCA,VM,GAV","Production,Amelie,OS-LIN-SRV DYN,Cloud Agent,Linux Server","335.0" +"180395955","232824862","vrcosaapp1.sanef-rec.fr","","00:50:56:9c:2c:bc","10.45.9.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cc cc 7f 17 24 62-7e 52 35 14 aa 3d 49 cc","No Asset Tag","'+02:00","2026-03-03T15:14:46.000+02:00","cybadmsys","Cloud Agent","19e13af6-03e7-4cd2-9244-bc0b33de9b6a","2023-07-28T12:58:06.000+02:00","2026-04-22T11:34:23.000+02:00","x86_64","3","SCA,VM,PM,GAV","log4j,MID-NGINX DYN,OS-LIN-SRV DYN,COSWIN,DSI,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","512.0" +"130586773","192835845","lamarrac3.sanef.groupe","","00:17:A4:77:08:B8, 00:17:A4:77:08:C4, 00:17:A4:77:08:BC, 00:17:A4:77:08:C0","10.45.2.104,10.45.2.105,10.45.2.109,10.45.3.102,10.45.5.4,169.254.214.108,10.45.5.20","fe80::217:a4ff:fe77:8b8,fe80::217:a4ff:fe77:8c4,fe80::217:a4ff:fe77:8bc,fe80::217:a4ff:fe77:8c0","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","VCX000010L","","'+02:00","2026-02-25T16:01:27.000+02:00","cybadmsys","Cloud Agent","8056d027-67c8-4f74-b1e3-63678907b110","2022-07-07T11:56:50.000+02:00","2026-04-22T11:31:45.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,DEX,Sextan,Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Trafic,Sans,Recette","693.0" +"362968902","345927455","PCB22892.sanef.groupe","PCB22892","D0:AD:08:A7:27:AE","10.100.39.103","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YT7","8CC3502YT7","'+02:00","2026-03-29T09:11:51.000+02:00","SANEF\auclairp","Cloud Agent","38071852-6cc1-4575-8978-128634bf7803","2025-09-25T13:16:22.000+02:00","2026-04-22T11:05:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"379757077","352972406","PCB22730.sanef.groupe","PCB22730","D0:AD:08:AA:4F:D4","10.107.31.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764DF","","'+02:00","2026-04-09T14:56:34.000+02:00","SANEF\VERHAEGHE","Cloud Agent","a334a02c-b889-4f0e-9f01-25f1e5cbbe72","2025-11-27T11:58:13.000+02:00","2026-04-22T11:09:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"205329293","246826333","vibotbsql2.sanef.groupe","VIBOTBSQL2","02:7F:15:2F:15:B3, 00:50:56:90:FB:0F","169.254.1.129,10.41.23.134,10.41.23.149,10.41.23.150","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 ea 71 3a 8d bf 7a-e8 cd a6 76 f5 19 dc d5","NoAssetTag","'+02:00","2026-03-18T12:00:14.000+02:00","SANEF\ndead","Cloud Agent","05ea0bdc-0f75-4ffb-b1bb-38a9692d0fc9","2023-12-20T15:26:05.000+02:00","2026-04-22T11:09:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,Production,BDD-SQL DYN,OS-WIN-SRV DYN,flux_libre,Cloud Agent,Windows Server","257.0" +"191420571","239727390","vibooosea2.sanef.groupe","","00:50:56:90:11:1b","10.41.22.201","fe80::250:56ff:fe90:111b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 6e 23 07 d6 d2 49-7c 08 13 af b9 04 a5 7a","No Asset Tag","'+02:00","2026-03-17T16:27:11.000+02:00","cybreconcile","Cloud Agent","d0dd40d7-7870-40a4-8102-3d8fb7c8786e","2023-10-04T17:50:38.000+02:00","2026-04-22T11:01:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre,FreeFlow","141.0" +"127861380","190912613","VPAIIADNS4","VPAIIADNS4","00:50:56:82:0E:8C","192.168.2.28","fe80::f9f8:8431:cb7d:44ad","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 5c 8a 3a 17 cc da-9d 30 c2 b6 e6 37 a6 5a","NoAssetTag","'+02:00","2026-04-16T12:55:42.000+02:00","Administrateur","Cloud Agent","7df5b4e2-76f6-4891-88bd-a7f336efd6c6","2022-06-14T15:58:49.000+02:00","2026-04-22T11:22:07.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SED,Haute,DMZ,High,Reseau & Telecom,Production,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,DNS,Windows Server,Réseaux et Télécom,Cloud Agent,OS-WIN-SRV DYN,Critical","0.0" +"131270890","193320476","vpaiiapol1","","00:50:56:82:d9:5d","10.30.12.125","fe80::88d2:6e86:b660:94e8","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 3d 4e a5 fd e2 ca-c1 b3 12 6c db 8b df 7d","No Asset Tag","'+02:00","2025-11-06T09:07:19.000+02:00","cybreconcile","Cloud Agent","8a44c204-9168-4913-a93e-b83e3814dee2","2022-07-12T15:42:46.000+02:00","2026-04-22T11:09:53.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,Centreon,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,DSI,Obsolete,Cloud Agent,Linux Server","82.0" +"211609269","250177509","vpbotcach1.sanef.groupe","","00:50:56:90:8c:8f","10.41.23.17","fe80::250:56ff:fe90:8c8f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f5 e9 69 31 75 b8-54 62 12 29 b3 d0 a0 9e","No Asset Tag","'+02:00","2026-04-21T15:45:49.000+02:00","cybreconcile","Cloud Agent","76495e4b-6c1a-4310-9b1e-dffb951e6514","2024-01-24T13:59:33.000+02:00","2026-04-22T11:09:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","140.0" +"236549774","265276979","vpechatre1.sanef.groupe","","00:50:56:90:e6:a8","10.42.16.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 05 a5 ff 9f 6e 64-19 af 44 5f 75 4d bb cb","No Asset Tag","'+02:00","2025-11-18T15:18:21.000+02:00","cybreconcile","Cloud Agent","2e64d7e9-2c54-44b9-90cc-779390b12af5","2024-05-14T14:27:56.000+02:00","2026-04-22T11:01:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,TALEND,Production","208.0" +"349449582","340001447","vrpwdapod1","","00:50:56:9c:d8:ee","10.45.14.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d6 eb 75 59 64 c4-2c dd a2 b8 ac a1 ed 24","No Asset Tag","'+02:00","2026-03-31T14:12:12.000+02:00","cybintsys","Cloud Agent","e0a9367a-aa6e-4bec-a4fc-b27a74a7b4e3","2025-08-06T11:08:56.000+02:00","2026-04-22T11:09:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","140.0" +"359801327","344907764","vrcybapsp2.sanef-rec.fr","","00:50:56:9c:af:56","10.45.11.104","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cc 5f 7e ab f4 11-e1 4d b3 66 17 7b ab 3a","No Asset Tag","'+02:00","2026-04-16T11:15:02.000+02:00","cybreconcile","Cloud Agent","bd126235-c4e6-4b54-8341-6e7b62820203","2025-09-15T15:56:10.000+02:00","2026-04-22T11:23:36.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,Linux Server,Cloud Agent,CyberArk","66.0" +"368453771","348146124","vppixatsf1.sanef-int.adds","VPPIXATSF1","00:50:56:90:37:F5","10.41.17.15","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","65535","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 5f e7 16 e3 f6 be-5b 46 53 de a0 bd e8 6b","NoAssetTag","'+02:00","2026-04-10T10:46:14.000+02:00","SANEF-INT\b03987","IP Scanner, Cloud Agent","076e79b7-cac8-48bb-99f7-c83356bcf0bd","2025-10-14T16:58:23.000+02:00","2026-04-22T11:20:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","341.0" +"280014653","305196018","vpgeoagps2","VPGEOAGPS2","00:50:56:90:0D:0B","192.168.40.67","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 8d a9 90 b8 cc 72-3a be 1f b0 d1 08 8b 11","NoAssetTag","'+02:00","2026-04-15T10:02:15.000+02:00","adminsee","Cloud Agent","e74a8a45-4868-4d97-b6e5-6c91639fb4c6","2024-11-18T11:03:27.000+02:00","2026-04-22T11:23:52.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,TAG-SRVEXPOSEINTERNET","15.0" +"399660876","361235534","vodsiaito1.sanef.groupe","","00:50:56:9c:f3:92","10.46.39.35","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 5e 94 be 8f a0 16-75 6f f5 a0 50 3b ba 52","No Asset Tag","'+02:00","2026-02-12T17:05:50.000+02:00","cybreconcile","Cloud Agent","1bd870a4-e1d1-4573-8ce3-a6829334b652","2026-02-12T17:06:40.000+02:00","2026-04-22T11:20:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","140.0" +"377822105","352213229","vpdsiahap1.sanef.groupe","","00:50:56:90:90:f8","192.168.19.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 92 86 8f 71 15 09-de 5c 7a f3 46 4b 40 25","No Asset Tag","'+02:00","2026-04-13T14:14:05.000+02:00","cybreconcile","Cloud Agent","38afdf12-d722-44ea-800e-8651b44ab20a","2025-11-19T18:51:53.000+02:00","2026-04-22T11:15:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","330.0" +"310037482","324426777","ls-vallee-de-l-aisne","LS-VALLEE-DE-L-","00:50:56:90:F5:A2","10.41.2.54","fe80::f5be:5f1:4ebf:e113","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 71 ba 6b 67 eb 64-fb ed 31 3f 03 76 c2 fb","NoAssetTag","'+02:00","2026-03-04T11:42:59.000+02:00","svpadmin","Cloud Agent","07114cc9-758d-4589-b03c-52a9ea6b95e9","2025-03-21T16:40:08.000+02:00","2026-04-22T11:01:14.000+02:00","64-Bit","4","SCA,VM,GAV","OS-WIN-SRV DYN,Cloud Agent,High,DEX,Péage,Production,SVP","681.0" +"231514970","259272234","ls-essertaux","LS-ESSERTAUX","00:50:56:90:E7:9F","10.41.2.93","fe80::5728:ed64:d5b3:f99b","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c6 a1 2f a3 68 cd-1f 27 15 e0 76 95 c8 a0","NoAssetTag","'+02:00","2026-03-24T12:32:37.000+02:00","svpadmin","Cloud Agent","0b7996d8-d154-46fd-b5c7-a8c75e794c72","2024-04-22T10:02:19.000+02:00","2026-04-22T11:08:47.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Production,Cloud Agent,Windows Server,High,Péage,SVP,DEX,OS-WIN-SRV DYN","681.0" +"204326484","246307065","vpcybapsm3.sanef-int.adds","VPCYBAPSM3","00:50:56:82:42:3B","10.44.1.72","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 09 24 20 0f 3e c1-35 e7 42 4c a3 5c b3 87","NoAssetTag","'+02:00","2026-03-25T10:30:30.000+02:00","Admp01481","Cloud Agent","63984763-ec38-4559-99cc-c594c3ee283e","2023-12-14T16:26:50.000+02:00","2026-04-22T10:56:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,CyberArk,OS-WIN-SRV DYN","56.0" +"241563039","276522521","vpvsaages1.sanef.groupe","","00:50:56:9c:f9:12","10.42.16.82","fe80::250:56ff:fe9c:f912","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 0a d5 e7 9f 5f dd-22 29 5d 69 ed f7 05 85","No Asset Tag","'-04:00","2026-02-04T15:40:16.000+02:00","tbaad","Cloud Agent","f7872d0c-582a-48b5-99f2-9aadbc1b488d","2024-06-04T13:52:42.000+02:00","2026-04-22T11:14:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"349748226","340121296","vrlogbquo1","","00:50:56:9c:b4:5a","10.100.16.105","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7681","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c b5 be be 2a 87 74-3b 74 4d ba 64 e3 e4 86","No Asset Tag","'+02:00","2026-02-17T11:00:44.000+02:00","cybintsys","Cloud Agent","edfd80fc-bb74-479e-8fe5-b25f8e07b45f","2025-08-07T12:08:27.000+02:00","2026-04-22T10:55:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","138.0" +"173072883","227647495","vvbotjump1.recette.adds","VVBOTJUMP1","00:50:56:9C:FC:FF","10.45.8.67","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 61 5a b6 f0 fb bc-85 b9 5c 0d 4f 83 8a 28","NoAssetTag","'+02:00","2026-04-22T04:02:59.000+02:00","RECETTE\b03987","Cloud Agent","c377b475-49e6-4150-acb3-0bddf147e79f","2023-06-05T14:37:29.000+02:00","2026-04-22T11:01:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Windows Server,BDD-ELA DYN,BDD-SQL DYN,OS-WIN-SRV DYN,flux_libre,Flux Libre,Recette","257.0" +"131275361","193321031","vpaiiapol5","","00:50:56:82:94:70","10.40.2.46","fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 6e a8 95 50 3b 27-85 58 35 bb e3 53 b5 eb","No Asset Tag","'+02:00","2024-06-05T11:39:28.000+02:00","cybreconcile","Cloud Agent","d6b6f887-84de-4656-8aed-6d6620e18881","2022-07-12T15:47:48.000+02:00","2026-04-22T11:22:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans,Centreon,Obsolete,Linux Server,Cloud Agent,VRF_INCONNUE","462.0" +"159557652","212130482","vpintaweb2.sanef.groupe","","02:42:b5:4e:0c:dd, 00:50:56:82:64:bf","172.17.0.1,192.168.20.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 c1 7b d8 5a 03 8a-7e 0b 01 96 df cb 9c b6","No Asset Tag","'+02:00","2026-04-15T14:54:46.000+02:00","cybreconcile","Cloud Agent","fbc331e5-6829-47d9-9ce7-d4429dcf4a02","2023-02-16T13:41:17.000+02:00","2026-04-22T10:59:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Gestion institutionnel,OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,VRF_INCONNUE,Cloud Agent,Linux Server","130.0" +"244496219","284618520","OSA20930.sanef-int.adds","OSA20930","BC:0F:F3:87:66:67","10.152.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLZ","","'+02:00","2026-04-13T13:37:13.000+02:00","Superviseur","Cloud Agent","7b79c5cc-8196-4d9c-9a6c-a0a575656d3d","2024-06-17T10:13:36.000+02:00","2026-04-22T11:12:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"407932259","364283919","PCV18541.sanef-int.adds","PCV18541","30:13:8B:6C:5B:9E","10.210.7.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TM","","'+02:00","2026-03-12T11:48:03.000+02:00","Operateur","Cloud Agent","39e0783d-3a1a-4384-81c1-6f5868760ec8","2026-03-12T11:14:31.000+02:00","2026-04-22T11:00:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"378284988","352418741","PBM20937.sanef-int.adds","PBM20937","BC:0F:F3:87:6F:91","10.200.50.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LL4","","'+02:00","2026-04-16T05:37:35.000+02:00","Operateur","Cloud Agent","812424c3-d182-4b7f-8272-e1ad2910cccc","2025-11-21T12:59:19.000+02:00","2026-04-22T11:22:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","343.0" +"129338677","191947809","vpaiiatse2.sanef.groupe","VPAIIATSE2","00:50:56:82:B6:96","10.30.11.8","fe80::fde9:4486:1354:5d73","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","Phoenix Technologies LTD 6.00","VMware-56 4d 3c 84 c4 8c 52 95-a4 6f 82 d0 1e 79 a9 08","NoAssetTag","'+02:00","2026-04-02T11:15:05.000+02:00","SANEF\ndead","Cloud Agent","04b93076-76a0-4fdc-b204-ce2637fae9cf","2022-06-27T14:49:17.000+02:00","2026-04-22T11:13:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DRH,Exploitation IT,AgileTime,VRF_INCONNUE,Production,Cloud Agent,Windows Server,OS-WIN-SRV DYN","56.0" +"129346019","191953079","vpsimaexp1.sanef.groupe","VPSIMAEXP1","00:50:56:82:44:F6","10.30.10.17","fe80::7ae0:1b47:66ee:babc","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 3d 14 88 5c 7c e7-25 f9 8e b1 46 59 c5 8c","NoAssetTag","'+02:00","2026-04-13T15:07:54.000+02:00","Administrateur","Cloud Agent","ea2c4a01-e9d7-4680-a34b-30a85b3c2479","2022-06-27T16:10:52.000+02:00","2026-04-22T11:30:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DOLLAR,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,DSI,Production","248.0" +"321553800","329073076","PCB22444.sanef.groupe","PCB22444","D0:AD:08:A3:E6:C0","10.149.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YR8","8CC3502YR8","'+02:00","2026-04-18T16:53:31.000+02:00","SANEF\thuin","Cloud Agent","18e2db35-deaf-448e-aaa2-5751d956bb83","2025-05-02T10:22:40.000+02:00","2026-04-22T10:57:25.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Workstation,Forescout","484.0" +"131267086","193317133","vpadvaapp4.sanef.groupe","","00:50:56:82:66:86","10.30.10.46","fe80::ecd1:9383:fcf1:dd35","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 bf ea 65 0e 1e 53-60 54 30 ec b6 94 41 f0","No Asset Tag","'+02:00","2024-09-05T14:16:38.000+02:00","cybreconcile","Cloud Agent","d630674c-0f84-4895-97fe-f794da697d55","2022-07-12T15:04:23.000+02:00","2026-04-22T10:54:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Production,BDD-POS DYN,Gestion commerciale,Cloud Agent,Linux Server,DEX,Obsolete,ADV-U","336.0" +"204046362","246173971","vvaflbsta1","VVAFLBSTA1","00:50:56:9C:76:E6","10.45.7.165","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 00 04 f4 fc b1 7b-72 f8 d9 86 49 c1 6d cb","NoAssetTag","'+02:00","2026-03-11T12:18:22.000+02:00","Administrateur","Cloud Agent","7d6cc7f9-880a-43da-a841-9e54c79881e9","2023-12-13T12:49:01.000+02:00","2026-04-22T11:06:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,OS-WIN-SRV DYN,BDD-SQL DYN,Cloud Agent,Windows Server,Recette,flux_libre","252.0" +"241536911","276509649","vpvsaaafz2.sanef.groupe","","00:50:56:90:7a:80","192.168.18.79","fe80::250:56ff:fe90:7a80","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 23 07 9c d7 fc 84-af eb a1 31 0d 4d f5 03","No Asset Tag","'+02:00","2026-02-04T12:51:21.000+02:00","tbaad","Cloud Agent","13f17acb-fa02-4c85-84f0-2e3c2e12022d","2024-06-04T12:01:16.000+02:00","2026-04-22T11:03:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"320972075","328891979","PCB22886.sanef.groupe","PCB22886","D0:AD:08:A7:27:C8","10.152.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN4","8CC3502YN4","'+02:00","2026-03-28T13:51:00.000+02:00","SANEF\hulinj","Cloud Agent","7a630275-8989-4e34-8369-8bbb12359187","2025-04-30T13:38:48.000+02:00","2026-04-22T10:55:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"178245544","231309790","MTR-12DSNT3","MTR-12DSNT3","90:8D:6E:93:CB:95","10.152.32.200","fe80::55fa:53:adbc:5fdb","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","12DSNT3","","'+02:00","2026-04-22T02:32:55.000+02:00","Skype","Cloud Agent","476339da-8a8b-42d7-bc90-c298e1cb6adb","2023-07-12T23:28:20.000+02:00","2026-04-22T11:17:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"197060278","242652607","MTR-1J775R3","MTR-1J775R3","90:8D:6E:8E:25:3F","10.202.32.200","fe80::bb1d:4fe3:58ec:d469","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","1J775R3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","ecb97200-3ad1-4774-a575-706738de2df3","2023-11-02T17:40:41.000+02:00","2026-04-22T11:02:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"417632377","368332361","PCB24061.sanef.groupe","PCB24061","24:FB:E3:33:98:58","10.100.39.141","fe80::604a:4812:f2f4:922","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437G","","'+02:00","2026-04-21T11:25:32.000+02:00","SANEF\salur-ext","Cloud Agent","74ea6d27-be57-496e-a98f-566a1ea7810e","2026-04-21T11:29:49.000+02:00","2026-04-22T05:31:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"271510081","300534724","SVP21054.sanef-int.adds","SVP21054","D0:AD:08:A7:28:6D","10.106.18.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLJ","","'+02:00","2026-04-21T12:47:00.000+02:00","Superviseur","Cloud Agent","6c2112e9-7be6-4bb1-8a2b-4669f7a5e6b8","2024-10-11T09:59:34.000+02:00","2026-04-22T11:56:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"407122268","363946681","PCB25875.sanef.groupe","PCB25875","4C:CF:7C:0A:4C:79","10.152.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222J","","'+02:00","2026-04-20T08:17:54.000+02:00","SANEF\THILLOY","Cloud Agent","64b09c97-0f02-46b1-8106-1c86b1aa762f","2026-03-09T14:43:09.000+02:00","2026-04-22T11:10:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"207966352","248303945","viaflbdwh1.sanef.groupe","VIAFLBDWH1","00:50:56:9C:BB:C6","10.46.34.70","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 09 00 0e 28 69 41-84 fa b6 85 ce c2 1d 3f","NoAssetTag","'+02:00","2026-03-19T16:10:34.000+02:00","Administrateur","Cloud Agent","efbfa670-5f7f-4988-8c22-cebe3a8d2c8b","2024-01-05T17:41:59.000+02:00","2026-04-22T05:24:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Windows Server,BDD-SQL DYN,OS-WIN-SRV DYN,FreeFlow","258.0" +"411100608","365513280","DAI22946.sanef-int.adds","DAI22946","28:C5:C8:41:A2:89","10.100.70.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC4271YWD","","'+02:00","2026-03-25T12:01:20.000+02:00","DAIUSER","Cloud Agent","cb0bc91e-231d-4bb5-8bd4-68d2c3a1eb08","2026-03-24T14:36:28.000+02:00","2026-04-22T10:55:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"324061930","","PCB22340.sanef.groupe","PCB22340","D0:AD:08:A7:28:4E","10.203.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPC","","'+02:00","2026-04-06T06:45:15.000+02:00","SANEF\lione","Cloud Agent","aa692d06-fe7e-4d98-89ec-63407e2cd43e","2025-05-12T13:59:27.000+02:00","2026-04-22T05:21:45.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"377394622","352034393","vmdpeag02.recette.adds","VMDPEAG02","00:50:56:9C:B1:B1, 0A:00:27:00:00:0A","10.45.17.196,192.168.56.1","fe80::3fb6:15f5:323a:c5e1,fe80::fdf0:8840:b5b0:3fa9","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 76 c9 a0 e0 1b a4-cd f1 da b5 1f c6 ca 24","NoAssetTag","'+02:00","2026-04-16T17:34:37.000+02:00","RECETTE\c03987","Cloud Agent","c7f792a3-b4f9-4c49-9660-8c53b0fd7567","2025-11-18T11:26:19.000+02:00","2026-04-22T05:21:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-ELA DYN,BDD-POS DYN,Workstation,Cloud Agent","339.0" +"363247793","346032421","PCV18677.sanef-int.adds","PCV18677","30:13:8B:6C:5D:DA","10.100.7.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473VZ","","'+02:00","2026-04-21T20:59:09.000+02:00","Operateur","Cloud Agent","9e414193-643e-4baf-b948-f030fe717b0e","2025-09-26T11:53:57.000+02:00","2026-04-22T11:26:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"231771998","259457241","ls-sommesous","LS-SOMMESOUS","00:50:56:90:8E:95","10.41.2.68","fe80::c1d0:b938:b930:fcb4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 e4 ca d5 7a 6e 03-92 1b b4 b8 23 cf f8 a2","NoAssetTag","'+02:00","2026-03-03T11:03:55.000+02:00","svpadmin","Cloud Agent","06db774b-7d43-472d-95a7-2bbe387e6c44","2024-04-23T10:05:40.000+02:00","2026-04-22T05:17:37.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,High,VRF_PEAGE_DC,SVP,Production,Péage,Cloud Agent,Windows Server,OS-WIN-SRV DYN","681.0" +"231765205","259455748","ls-mont-choisy","LS-MONT-CHOISY","00:50:56:90:9A:50","10.41.2.69","fe80::7b15:1971:afea:21fd","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c3 43 42 0b d1 a3-d2 8d dc 6b 34 fe ee 56","NoAssetTag","'+02:00","2026-03-02T10:50:12.000+02:00","svpadmin","Cloud Agent","cc7d9a8d-56d3-4b37-ba36-cc2f6691aee1","2024-04-23T09:52:00.000+02:00","2026-04-22T10:56:55.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_PEAGE_DC,High,Production,SVP,Péage","681.0" +"358895507","344328751","PCB24100.sanef.groupe","PCB24100","10:B6:76:95:8B:9C","10.5.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZYX","","'+02:00","2026-03-30T16:37:47.000+02:00","SANEF\MAQUA","Cloud Agent","65564a51-c6ae-4bec-ae29-0f8d4cb1690a","2025-09-11T15:14:16.000+02:00","2026-04-22T05:14:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","342.0" +"233064565","260334859","ls-sarre-union","LS-SARRE-UNION","00:50:56:90:8D:38","10.41.2.110","fe80::30e8:b328:ded5:d2ba","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c9 3e a1 ea 99 f1-7d 86 16 57 92 6d f2 49","NoAssetTag","'+02:00","2026-02-19T16:55:57.000+02:00","svpadmin","Cloud Agent","5e5d4d9f-586c-4965-ae72-37ae8062c61d","2024-04-29T12:09:25.000+02:00","2026-04-22T11:23:05.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,Production,Péage,VRF_PEAGE_DC,SVP,High,Cloud Agent,Windows Server,OS-WIN-SRV DYN","508.0" +"318390107","328027747","PCB23782.sanef.groupe","PCB23782","6C:0B:5E:EE:B3:76","10.100.39.173","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3L","","'+02:00","2026-03-30T07:58:53.000+02:00","SANEF\KHAYAT","Cloud Agent","152f89e8-61f4-4e9b-a36d-2f3987befc3a","2025-04-22T12:09:45.000+02:00","2026-04-22T05:01:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"381250980","353498211","PCV21530.sanef-int.adds","PCV21530","D0:AD:08:A3:E7:21","10.6.69.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YXS","","'+02:00","2026-03-26T16:45:01.000+02:00","Operateur","Cloud Agent","6b905462-3c8c-46a4-a6ab-7ee047fec942","2025-12-03T12:30:26.000+02:00","2026-04-22T11:41:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"325208884","","PCB21564.sanef.groupe","PCB21564","D0:AD:08:A3:E7:96","10.11.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNR","","'+02:00","2026-03-29T09:12:59.000+02:00","SANEF\Fritsch","Cloud Agent","ee73e04e-6f4f-459f-8999-34d3bf98b9fc","2025-05-16T12:00:27.000+02:00","2026-04-22T04:51:04.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"184253385","235404733","vpcybapvwa1","VPCYBAPVWA1","00:50:56:82:E5:0D","10.44.1.100","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 7c 99 a8 fa c3 76-63 04 1a ad 2c fd 26 e7","NoAssetTag","'+02:00","2026-03-23T08:53:59.000+02:00","Administrator","Cloud Agent","f4f239dc-d14d-4f65-9a02-18b1766c79af","2023-08-24T10:03:44.000+02:00","2026-04-22T11:20:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,CyberArk,Cloud Agent,Windows Server","65.0" +"130331191","192654887","VPAIIAPVD3.sanef.groupe","VPAIIAPVD3","00:50:56:82:92:41","10.41.11.17","fe80::e4cf:2c5b:a84a:38c4","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 64 55 c9 8b 52 15-ff 81 11 b6 11 2f 8e 2a","NoAssetTag","'+02:00","2024-03-06T11:34:50.000+02:00","SANEF\durmarque","Cloud Agent","ffc413b5-0f5b-446e-8c12-63b9dbc55a18","2022-07-05T13:58:02.000+02:00","2026-04-22T10:59:22.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Cloud Agent,Windows Server,DEX,VRF_INCONNUE,Workstation,Obsolete,Sans,Production,Exploitation","518.0" +"327322327","","PCB21557.sanef.groupe","PCB21557","D0:AD:08:A3:7B:46","10.6.30.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS3","","'+02:00","2026-04-04T01:36:56.000+02:00","SANEF\talevi","Cloud Agent","8527a251-d3d8-4c2c-a9d7-0eac183177c0","2025-05-26T11:47:43.000+02:00","2026-04-22T04:35:55.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"338843133","","PCB21611.sanef.groupe","PCB21611","D0:AD:08:A4:4D:B2","10.152.31.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JX","","'+02:00","2026-04-07T16:28:48.000+02:00","yann.hamon@sanef.com","Cloud Agent","a3960e4a-1cd3-4d2e-aaed-6fe2d37eeeea","2025-07-03T11:51:36.000+02:00","2026-04-22T04:35:51.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"121411208","186536988","PCB16647.sanef.groupe","PCB16647","0A:00:27:00:00:06, 94:E7:0B:73:53:61","192.168.56.1,10.255.2.232","fe80::287b:9fb:1136:5f8f,fe80::a629:7a00:83a0:7ca3","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G7 Notebook","8","2208","Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz","7965","HP S70 Ver. 01.22.00","5CG05100FD","5CG05100FD","'+02:00","2026-04-20T09:40:03.000+02:00","SANEF\beauvaisa","Cloud Agent","b85bf81e-c2c2-4ff4-a31d-4face3d03b0f","2022-04-20T14:17:12.000+02:00","2026-04-22T11:23:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"301577270","321232921","SVP20968.sanef-int.adds","SVP20968","BC:0F:F3:87:6F:99","10.210.12.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.16.00","8CC3290LKX","","'+02:00","2026-04-16T03:38:43.000+02:00","Superviseur","Cloud Agent","e8040501-3f03-4a06-8b41-25805df84379","2025-02-20T13:08:04.000+02:00","2026-04-22T11:36:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"227451627","257015181","VRBURXBAN11.sanef.groupe","VRBURXBAN11","00:50:56:82:54:E4","10.30.4.11","fe80::f3d0:96a4:25a4:7642","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 e5 e1 09 47 63 33-5a 85 2c 81 26 ab dd c3","NoAssetTag","'+02:00","2025-11-20T12:36:32.000+02:00","","Cloud Agent","0c20d8a6-0a2e-4086-bd04-704647353b30","2024-04-04T10:32:48.000+02:00","2026-04-22T04:31:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,Recette","343.0" +"129356894","191964560","vpccyanvr1","VPCCYANVR1","00:50:56:82:2E:80","10.27.2.30","fe80::b2e3:2887:3663:d840","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 b1 21 e1 43 b5 28-77 5e 05 e4 71 48 e6 82","NoAssetTag","'+02:00","2026-02-02T15:37:35.000+02:00","Administrateur","Cloud Agent","ac6e349f-efd9-4e14-b65a-1dc68d4c8593","2022-06-27T18:29:19.000+02:00","2026-04-22T11:04:25.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,VRF_INCONNUE,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Exploitation,Production,DEX","523.0" +"393977374","358867260","PCB18753.sanef.groupe","PCB18753","58:1C:F8:EB:6A:C2","10.205.0.23,192.168.1.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DR0","","'+02:00","2026-04-09T09:57:34.000+02:00","SANEF\WILLEMET-ext","Cloud Agent","92c60890-340d-4de8-952c-6f97d867e30c","2026-01-21T15:55:37.000+02:00","2026-04-22T11:29:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"324997505","","PCB21263.sanef.groupe","PCB21263","D0:AD:08:1F:7E:D9","10.8.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3451GV0","","'+02:00","2026-03-29T09:12:37.000+02:00","SANEF\sins","Cloud Agent","3e9d7fbd-3de6-49f0-a009-466b2a143055","2025-05-15T14:04:52.000+02:00","2026-04-22T04:06:36.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"360126650","344907837","VMMSTLC1.sanef-int.adds","VMMSTLC1","00:50:56:90:22:EC","10.41.13.250","fe80::aeb4:5fbd:e0e0:980b","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3476) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 47 f2 70 13 fe 63-69 28 cf 0c dc fa 82 4c","NoAssetTag","'+02:00","2026-04-16T16:44:38.000+02:00","user_stl","Cloud Agent","a87ac8fa-f8d2-433d-8647-892b5561dcdd","2025-09-16T17:23:28.000+02:00","2026-04-22T04:04:39.000+02:00","64-Bit","2","SCA,VM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","343.0" +"340059665","","SVP22861.sanef-int.adds","SVP22861","D0:AD:08:A7:28:62","10.99.29.20","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045) 64-Bit","22H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM3","","'+02:00","2026-04-21T07:44:32.000+02:00","Superviseur","Cloud Agent","c37b9cbd-8f8a-4ded-bd14-3dc898ed5244","2025-07-08T09:33:04.000+02:00","2026-04-22T03:59:53.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"391641920","357934380","vmmvscdem2.sanef-int.adds","VMMVSCDEM2","00:50:56:90:E9:EE","10.41.7.236","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 2a eb a9 bb 3e b7-89 3b 12 0c 4d 51 1c 6f","NoAssetTag","'+02:00","2026-02-02T18:17:24.000+02:00","uservideo","Cloud Agent","56a4c2e4-5a00-4f51-b493-7a0814189fb8","2026-01-13T12:59:53.000+02:00","2026-04-22T03:55:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"346243488","339013461","PCB25846.sanef.groupe","PCB25846","28:95:29:22:6B:36","10.205.0.174,192.168.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CS6","","'+02:00","2026-04-21T15:42:14.000+02:00","mekki.boumediene@sanef.com","Cloud Agent","ad10cee0-84ac-4d28-8f3a-9e253a1bea79","2025-07-29T13:02:30.000+02:00","2026-04-22T11:24:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","256.0" +"416076516","367729274","vrzbxbpgs2.sanef-rec.fr","","00:50:56:9c:c2:6c","10.45.15.203,10.45.15.202","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c e7 97 67 50 ba 06-33 b4 74 8a eb a1 79 91","No Asset Tag","'+02:00","2026-04-17T16:46:21.000+02:00","cybsecope","Cloud Agent","1246f772-6461-4ea3-a1b8-da1005acddb6","2026-04-15T17:05:41.000+02:00","2026-04-22T11:25:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","66.0" +"349463322","340006315","PCB25834.sanef.groupe","PCB25834","F8:ED:FC:AB:02:E0","10.5.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTF","","'+02:00","2026-04-17T05:27:04.000+02:00","SANEF\BREMEC","Cloud Agent","24c388c1-28c1-4668-9020-2877af637e6f","2025-08-06T12:05:03.000+02:00","2026-04-22T03:30:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"405482222","363237270","vmmgtcroic1.sanef-int.adds","VMMGTCROIC1","00:50:56:90:1F:15","10.41.19.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 6d 01 98 b5 fd 1a-cf 7d ee fd 80 1f c9 12","NoAssetTag","'+02:00","2026-04-02T13:41:53.000+02:00","admin_gtc","Cloud Agent","2d684e9f-3863-435b-9c4a-bd7c0eae23b2","2026-03-02T17:48:34.000+02:00","2026-04-22T03:29:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","343.0" +"359758271","","PCB24341.sanef.groupe","PCB24341","24:FB:E3:2C:57:A7","10.105.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YHK","","'+02:00","2026-04-21T09:10:09.000+02:00","SANEF\DUBOIS","Cloud Agent","8258b6af-0384-476c-81b9-e7efbcf3215b","2025-09-15T12:15:34.000+02:00","2026-04-22T03:29:40.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"334961695","","PCB24077.sanef.groupe","PCB24077","24:FB:E3:33:7B:5A","10.155.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5062RFS","","'+02:00","2026-04-16T09:06:26.000+02:00","olivier.priem@sanef.com","Cloud Agent","864d677f-110b-4f41-ab4f-8d34aac9f012","2025-06-20T12:31:35.000+02:00","2026-04-22T03:21:19.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325259667","","PCB21566.sanef.groupe","PCB21566","D0:AD:08:A3:7B:58","10.4.31.63","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWH","","'+02:00","2026-04-16T12:53:08.000+02:00","SANEF\garenne","Cloud Agent","079471c4-16fa-4f96-9ef7-a10b70cd6b89","2025-05-16T16:07:58.000+02:00","2026-04-22T03:14:56.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"391596617","357934379","vmmvsccad1.sanef-int.adds","VMMVSCCAD1","00:50:56:90:87:B2","10.41.7.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 b7 af 74 6d 89 6e-f6 e0 45 a7 c2 b9 b6 71","NoAssetTag","'+02:00","2026-02-02T18:21:00.000+02:00","uservideo","Cloud Agent","f8e700cc-4857-4fb9-b2b5-0014797f70aa","2026-01-13T13:00:48.000+02:00","2026-04-22T11:25:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"244019009","283240819","MTO21621.sanef.groupe","MTO21621","D0:AD:08:A4:4D:BE","10.1.31.9","fe80::abe8:f8ea:ca4f:19df","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JR","","'+02:00","2025-09-15T18:21:36.000+02:00","SANEF\meteonewsW11","Cloud Agent","a4e6953a-1f40-478a-b58c-eddceea7e19c","2024-06-14T16:59:40.000+02:00","2026-04-22T11:10:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"327807405","","PCB23574.sanef.groupe","PCB23574","6C:0B:5E:ED:82:9B","10.207.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L48","","'+02:00","2026-04-02T14:17:04.000+02:00","SANEF\sananikone","Cloud Agent","90d79e0e-399d-4340-af32-5ed27619fc9a","2025-05-28T16:09:58.000+02:00","2026-04-22T02:54:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359788816","","PCB22274.sanef.groupe","PCB22274","D0:AD:08:A3:7B:EC","10.200.31.86","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVC","","'+02:00","2026-04-21T12:39:53.000+02:00","SANEF\HAMMADIA","Cloud Agent","c136206c-bd57-4f7d-be7b-d262e8fbe133","2025-09-15T15:22:29.000+02:00","2026-04-22T02:42:57.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"330676210","","PCB18745.sanef.groupe","PCB18745","BC:0F:F3:3D:48:31","10.4.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRG","","'+02:00","2026-03-29T09:29:31.000+02:00","SANEF\BOUCHET","Cloud Agent","5f4a5600-b401-4f84-8600-9782f2a3123e","2025-06-04T09:48:57.000+02:00","2026-04-22T02:34:29.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360161243","344907838","VMMSTLC2.sanef-int.adds","VMMSTLC2","00:50:56:90:9E:6C","10.41.13.251","fe80::f59d:4025:d327:e4fd","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3476) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 08 8f 61 de 2c 0a-55 cb c5 e8 b5 40 2b fa","NoAssetTag","'+02:00","2026-04-16T16:50:17.000+02:00","user_stl","Cloud Agent","935df1b1-ea19-42b1-bb3f-066ef1c3fd0d","2025-09-16T17:23:25.000+02:00","2026-04-22T11:34:43.000+02:00","64-Bit","2","SCA,VM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","341.0" +"283885210","","SVP22855.sanef-int.adds","SVP22855","D0:AD:08:A7:27:BE","10.12.20.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN1","","'+02:00","2026-03-30T07:36:08.000+02:00","Superviseur","Cloud Agent","a1dff75c-0e3f-4e86-8d3a-bf012a4125fe","2024-12-03T12:18:11.000+02:00","2026-04-22T02:28:28.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"336664466","","PCB24064.sanef.groupe","PCB24064","24:FB:E3:33:98:62","10.5.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437S","","'+02:00","2026-04-21T12:06:47.000+02:00","SANEF\louis","Cloud Agent","c50c383a-290a-47ea-bfba-3c52b2478916","2025-06-26T10:05:45.000+02:00","2026-04-22T02:20:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation,BDD-SQL DYN","0.0" +"331111297","","PCB21167.sanef.groupe","PCB21167","D0:AD:08:E4:A1:55","10.152.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HW5","","'+02:00","2026-04-21T08:13:06.000+02:00","SANEF\MARTEEL","Cloud Agent","4388dc05-a9d2-4d57-818c-984f7e1cba1d","2025-06-05T11:14:09.000+02:00","2026-04-22T02:17:11.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"339864900","","PCB17790.sanef.groupe","PCB17790","D0:AD:08:8A:70:A1","10.119.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y4Z","","'+02:00","2026-04-20T13:34:23.000+02:00","SANEF\muller","Cloud Agent","dc2de663-c3fb-45cb-b7c5-5efb7d4c9b89","2025-07-07T16:01:02.000+02:00","2026-04-22T02:10:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"331169666","","PCB17792.sanef.groupe","PCB17792","D0:AD:08:0C:6D:46","10.154.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y45","","'+02:00","2026-03-29T09:29:28.000+02:00","SANEF\dechaut","Cloud Agent","f869465d-d8ea-43bd-893f-d3a84d0ecc36","2025-06-05T15:25:08.000+02:00","2026-04-22T02:09:31.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"324122888","","PCB23769.sanef.groupe","PCB23769","6C:0B:5E:EE:93:79","10.5.30.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H52","","'+02:00","2026-04-21T11:08:50.000+02:00","SANEF\poitrey","Cloud Agent","45af13e3-874a-4c51-830e-b5d2c5174dea","2025-05-12T16:14:34.000+02:00","2026-04-22T02:06:31.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"326523065","","PCB23785.sanef.groupe","PCB23785","C8:6E:08:47:0B:CB","10.205.0.42,192.168.1.112","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H56","","'+02:00","2026-03-30T17:17:21.000+02:00","SANEF\laurain","Cloud Agent","b57c710b-38d4-4052-a732-fb61496863d4","2025-05-22T10:18:40.000+02:00","2026-04-22T01:45:02.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331166341","","PCB21169.sanef.groupe","PCB21169","D0:AD:08:E4:A1:FB","10.154.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.03.00","5CG3501HVH","","'+02:00","2026-03-29T09:29:07.000+02:00","SANEF\CHALUPKA","Cloud Agent","1859e024-bc6c-4588-aee0-9904a5da8607","2025-06-05T15:24:31.000+02:00","2026-04-22T01:30:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"329160327","","PCB21119.sanef.groupe","PCB21119","E4:60:17:C4:EC:8A","10.205.0.8,192.168.1.179","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KH","","'+02:00","2026-04-19T19:24:30.000+02:00","SANEF\gadel-ext","Cloud Agent","0b52fd4b-84ac-4057-9755-8d42751335fe","2025-06-02T12:46:08.000+02:00","2026-04-22T01:25:11.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"323151444","329793779","PCB21147.sanef.groupe","PCB21147","60:45:2E:11:63:7C","10.255.2.139","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX9","8CC3502YX9","'+02:00","2026-04-21T16:53:14.000+02:00","SANEF\engels","Cloud Agent","98e8bdba-fbd1-420b-bfee-e245ef31d439","2025-05-09T09:33:45.000+02:00","2026-04-22T01:09:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","241.0" +"320081444","328610524","PCB23571.sanef.groupe","PCB23571","C8:6E:08:8A:45:4E","10.255.4.9,10.205.0.69","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBJ","","'+02:00","2026-04-16T15:28:48.000+02:00","SANEF\leleu","Cloud Agent","02ae72a5-0e99-432b-8b52-c8f5d95c1b0d","2025-04-28T11:57:01.000+02:00","2026-04-22T00:59:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"328645186","","PCB23700.sanef.groupe","PCB23700","6C:0B:5E:EE:B3:63","10.219.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9X","","'+02:00","2026-04-09T08:57:48.000+02:00","SANEF\anginot","Cloud Agent","685eb80e-18d8-4939-9b90-dedc9de58651","2025-05-30T15:12:47.000+02:00","2026-04-22T00:51:55.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325264423","","PCB21591.sanef.groupe","PCB21591","D0:AD:08:A7:27:D5","10.119.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YT1","","'+02:00","2026-04-16T09:22:54.000+02:00","SANEF\leichtweiss","Cloud Agent","66b962ce-1005-44f7-acdf-08aaaf85ca09","2025-05-16T16:07:25.000+02:00","2026-04-22T00:26:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"359163918","","PCB24190.sanef.groupe","PCB24190","30:E3:A4:D8:57:BB","10.255.4.168","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKC","","'+02:00","2026-04-20T08:13:58.000+02:00","SANEF\olivier","Cloud Agent","60286e9e-c53d-4040-a822-c75ef0af5821","2025-09-12T13:22:18.000+02:00","2026-04-22T00:08:16.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"417712350","368376307","PCB18740.sanef.groupe","PCB18740","58:1C:F8:EA:00:10","192.168.1.65","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQN","","'+02:00","2026-01-02T18:09:50.000+02:00","SANEF\vernichons","Cloud Agent","450bf56e-ac9b-4a9c-8bf4-a1028ebf6e44","2026-04-21T18:40:58.000+02:00","2026-04-21T23:59:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"325256015","","PCB23659.sanef.groupe","PCB23659","C8:6E:08:88:F0:D6","10.205.0.25,192.168.1.194","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBN","","'+02:00","2026-04-10T08:47:25.000+02:00","SANEF\pillonl","Cloud Agent","09aa9831-dda4-4bbb-a13b-d48475a8c2f8","2025-05-16T15:20:32.000+02:00","2026-04-21T23:58:20.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"350507290","340450970","PCB25782.sanef.groupe","PCB25782","28:95:29:1A:FF:04","10.205.0.54,192.168.1.170","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTR","","'+02:00","2026-04-20T23:23:06.000+02:00","SANEF\UNIMON","Cloud Agent","d2c2b8e1-05e3-4039-9981-965b2faee96d","2025-08-11T10:07:37.000+02:00","2026-04-22T12:03:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"325012405","","PCB21259.sanef.groupe","PCB21259","28:C5:D2:47:E6:3B","10.255.2.239","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3451GTZ","","'+02:00","2026-03-29T09:13:37.000+02:00","SANEF\arbeliny","Cloud Agent","7b2f7646-7130-423c-93fb-ad50c5a1c0b0","2025-05-15T14:03:10.000+02:00","2026-04-21T23:36:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360043291","","PCB18425.sanef.groupe","PCB18425","84:69:93:E1:8A:80","10.200.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724CQ","","'+02:00","2026-04-20T10:07:17.000+02:00","SANEF\Fontainea","Cloud Agent","35964981-aba7-4ac2-94af-0dfce26a5b39","2025-09-16T15:07:00.000+02:00","2026-04-21T23:09:14.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"359800633","","PCB24344.sanef.groupe","PCB24344","10:B6:76:95:8B:B9","10.100.39.92","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZV","","'+02:00","2026-04-17T13:09:22.000+02:00","SANEF\DECES","Cloud Agent","779723da-461d-4156-9ffb-eb42c25e4000","2025-09-15T16:11:01.000+02:00","2026-04-21T23:04:08.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"338852480","","PCB21579.sanef.groupe","PCB21579","D0:AD:08:A3:DD:F4","10.209.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNY","","'+02:00","2026-04-21T19:57:59.000+02:00","SANEF\STAVRACARIDIS","Cloud Agent","8e0f921c-9a1d-448b-867c-d5705e97eff8","2025-07-03T12:13:31.000+02:00","2026-04-21T23:03:36.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"358121472","344012773","PCB25787.sanef.groupe","PCB25787","28:95:29:1A:F1:8A","10.205.0.40,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV1","","'+02:00","2026-04-14T10:33:01.000+02:00","SANEF\merciere","Cloud Agent","a4dba6ce-920c-4b58-940c-2c04210ffda2","2025-09-09T11:40:38.000+02:00","2026-04-21T22:51:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"284462757","","MTR-8BD4804","MTR-8BD4804","6C:3C:8C:56:3B:78","10.220.32.200","fe80::121d:4314:1aff:7b0c","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","1","1400","12th Gen Intel(R) Core(TM) i7-12700T","16072","Dell Inc. 1.15.0","8BD4804","","'+02:00","2026-04-21T02:32:52.000+02:00","Skype","Cloud Agent","956e4ddb-d942-4b43-91d4-3d0ed7c04b39","2024-12-05T23:40:50.000+02:00","2026-04-21T22:50:42.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"350558324","340474645","PCB25773.sanef.groupe","PCB25773","28:95:29:22:6B:BD","10.205.0.192,192.168.1.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT4","","'+02:00","2026-04-21T13:31:18.000+02:00","pierre-antoine.picand@sanef.com","Cloud Agent","41fdc821-736f-4cbb-ae33-1928bd40cc35","2025-08-11T14:06:24.000+02:00","2026-04-22T11:26:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"327807308","","PCB23552.sanef.groupe","PCB23552","6C:0B:5E:EE:BC:90","10.203.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7N","","'+02:00","2026-03-31T08:00:59.000+02:00","SANEF\lefebvrejea","Cloud Agent","d29af462-384d-4ff3-ad28-10e235988077","2025-05-28T14:48:00.000+02:00","2026-04-21T22:48:51.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"285173835","","SVP22870.sanef-int.adds","SVP22870","D0:AD:08:A7:28:59","10.212.26.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM2","","'+02:00","2026-04-21T10:19:59.000+02:00","Superviseur","Cloud Agent","424de69c-7c31-4b77-a92c-342bed5816a9","2024-12-09T12:26:53.000+02:00","2026-04-21T22:43:08.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"359763318","","PCB24334.sanef.groupe","PCB24334","70:15:FB:7E:20:93","10.255.4.146","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ6","","'+02:00","2026-04-20T10:20:14.000+02:00","SANEF\KABACINSKI","Cloud Agent","75e9a299-0f50-4e27-97b8-6a3c72fb0c48","2025-09-15T13:13:33.000+02:00","2026-04-21T22:24:54.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"360038167","","PCB18750.sanef.groupe","PCB18750","BC:0F:F3:3D:78:4E","10.200.31.63","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRF","","'+02:00","2026-03-29T09:24:33.000+02:00","SANEF\Fontainea","Cloud Agent","4c30a243-3a78-405e-a84f-27513af49836","2025-09-16T13:52:13.000+02:00","2026-04-21T22:22:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"285257306","","SVP22854.sanef-int.adds","SVP22854","D0:AD:08:A7:27:BF","10.112.3.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN6","","'+02:00","2026-04-21T20:17:24.000+02:00","Superviseur","Cloud Agent","e85e6a8e-47a4-4626-8fa9-247d1fcbe00c","2024-12-09T16:12:24.000+02:00","2026-04-21T22:19:15.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"320991728","328907977","PCB23693.sanef.groupe","PCB23693","C8:6E:08:9D:99:73","10.205.0.45,10.255.2.184","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L40","","'+02:00","2026-04-15T18:43:52.000+02:00","SANEF\Deslandres","Cloud Agent","ca5cbeab-1e8d-4a8e-9c03-1c67db1b36aa","2025-04-30T15:03:04.000+02:00","2026-04-21T22:16:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"284376405","","SVP22862.sanef-int.adds","SVP22862","D0:AD:08:A7:28:67","10.112.1.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLP","","'+02:00","2026-04-19T11:01:36.000+02:00","Superviseur","Cloud Agent","569eca18-e056-4e90-befd-9cb753319ef3","2024-12-05T15:24:30.000+02:00","2026-04-21T22:15:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325726629","","SVP22360.sanef-int.adds","SVP22360","D0:AD:08:A7:28:6E","10.252.12.210","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLH","","'+02:00","2026-04-12T09:40:53.000+02:00","Superviseur","Cloud Agent","0e06365e-3781-4f47-bb30-51a55e3accc5","2025-05-19T14:35:21.000+02:00","2026-04-21T22:13:05.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"339175043","","PCB17776.sanef.groupe","PCB17776","28:C5:D2:9F:C3:D3","10.205.0.9,192.168.1.145","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3K","","'+02:00","2026-04-21T22:07:12.000+02:00","SANEF\TANGUIS","Cloud Agent","25c72e60-3c3a-445c-a562-631c0452265f","2025-07-04T15:47:05.000+02:00","2026-04-21T22:11:33.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331201820","","PCB21163.sanef.groupe","PCB21163","D0:AD:08:E4:91:DE","10.152.31.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HWK","","'+02:00","2026-04-20T09:19:24.000+02:00","SANEF\PODVIN","Cloud Agent","84263162-a07d-4adb-986f-60a530f6b1e4","2025-06-05T16:43:57.000+02:00","2026-04-21T22:08:26.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"282956067","","SVP22871.sanef-int.adds","SVP22871","D0:AD:08:A3:E7:A0","10.209.20.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMC","","'+02:00","2026-04-10T09:13:08.000+02:00","Superviseur","Cloud Agent","8b90776e-f602-40c3-82d7-eedb79b4faf7","2024-11-28T17:43:57.000+02:00","2026-04-21T22:04:12.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331430582","","PCB23531.sanef.groupe","PCB23531","6C:0B:5E:EE:A3:A0","10.206.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBV","","'+02:00","2026-03-30T15:13:38.000+02:00","SANEF\figueira","Cloud Agent","4f13042e-2455-4ab6-a617-46da91132bea","2025-06-06T14:34:10.000+02:00","2026-04-21T22:02:48.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"334658627","","PCB24160.sanef.groupe","PCB24160","24:FB:E3:F3:BA:97","10.1.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XQ","","'+02:00","2026-04-21T18:13:07.000+02:00","SANEF\sabos","Cloud Agent","570808f0-bde8-494f-ba39-4b99a19bb484","2025-06-19T10:38:46.000+02:00","2026-04-21T22:01:17.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"335451010","","PCB23516.sanef.groupe","PCB23516","6C:0B:5E:ED:92:A8","10.1.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7B","","'+02:00","2026-04-21T18:12:35.000+02:00","SANEF\laurent","Cloud Agent","d77ae0e8-0a20-4fb8-a783-8247dcfd6bf2","2025-06-23T09:49:34.000+02:00","2026-04-21T21:49:36.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"329894638","","PCB18092.sanef.groupe","PCB18092","64:D6:9A:27:BA:2D","10.255.1.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRC","","'+02:00","2026-03-29T09:21:06.000+02:00","SANEF\BLIDI-ext","Cloud Agent","fb6d527d-2f79-40b2-8ebe-fa158a9bb2d7","2025-06-03T16:04:54.000+02:00","2026-04-21T21:48:29.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"130334728","192655825","sptrabenr2.sanef.groupe","SPTRABENR2","08:F1:EA:7E:EC:1E, 08:F1:EA:7E:EC:1C","169.254.234.182,10.41.60.50","fe80::59c8:ff13:1ba5:eab6,fe80::fce1:8515:d0eb:82d6","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Computers / Server","HPE ProLiant DL360 G10 Server","8","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16042","HPE U32","CZJ01203FR","","'+02:00","2026-02-24T14:43:25.000+02:00","Administrator","Cloud Agent","6e5d5728-cb92-43b7-8fff-b79dd6dea532","2022-07-05T14:17:39.000+02:00","2026-04-21T21:39:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,BDD-SQL DYN,Enregistrement_COM,VRF_BURO,OS-WIN-SRV DYN,DEX,Outils transverses,Cloud Agent,Windows Server","248.0" +"130352405","192669806","vppatalag1.sanef.groupe","VPPATALAG1","00:50:56:82:62:95","10.42.40.12","fe80::3db4:5b5f:1399:820d","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 cf b5 1a f4 7d ab-9b 68 a1 0e 19 64 91 c6","NoAssetTag","'+02:00","2026-01-22T11:23:05.000+02:00","Administrateur","Cloud Agent","32643ab7-6bf5-40dc-ab91-8430b2582c72","2022-07-05T16:56:59.000+02:00","2026-04-21T21:34:04.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Production,Patrimoine,DFIN,OS-WIN-SRV DYN,VRF_PATRIMOINE_DC,Lago","494.0" +"282933324","","SVP22872.sanef-int.adds","SVP22872","D0:AD:08:A3:E7:90","10.209.20.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMR","","'+02:00","2026-04-17T08:54:44.000+02:00","Superviseur","Cloud Agent","d23b84ff-acc7-46bf-a4c5-eba8834b4f62","2024-11-28T16:30:57.000+02:00","2026-04-21T21:24:11.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"324115008","","PCB23789.sanef.groupe","PCB23789","6C:0B:5E:EE:93:E7","10.12.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2P","","'+02:00","2026-04-16T09:18:47.000+02:00","SANEF\ferri","Cloud Agent","5ea71a2b-c0d1-4f30-b2b8-c7f3abb007b3","2025-05-12T15:12:13.000+02:00","2026-04-21T21:22:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"335695704","","SVP20941.sanef-int.adds","SVP20941","BC:0F:F3:87:70:BD","10.100.20.103","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3290LN0","","'+02:00","2026-04-06T19:40:02.000+02:00","Superviseur","Cloud Agent","3817124d-ca8e-485e-90f7-3734cfbb748c","2025-06-23T16:25:39.000+02:00","2026-04-21T21:15:16.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"359755573","","PCB24343.sanef.groupe","PCB24343","00:72:EE:19:9A:15","10.255.3.184","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YJ1","","'+02:00","2026-04-20T09:04:48.000+02:00","SANEF\SAVREUX","Cloud Agent","efa735a1-ff99-4c31-82b5-bce508584e01","2025-09-15T12:49:55.000+02:00","2026-04-21T21:09:19.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","0.0" +"336736143","","PCB24089.sanef.groupe","PCB24089","24:FB:E3:33:98:56","10.100.39.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437D","","'+02:00","2026-04-13T13:25:06.000+02:00","SANEF\OPERON","Cloud Agent","b81c8bf5-679e-4c6f-886d-06d03f017d9b","2025-06-26T14:35:40.000+02:00","2026-04-21T21:07:18.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321588929","329099616","PCB23746.sanef.groupe","PCB23746","6C:0B:5E:EE:93:96","10.105.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3V","","'+02:00","2026-03-31T13:40:11.000+02:00","SANEF\fermaut","Cloud Agent","a3c7848f-8349-47f7-af24-08ee260c5288","2025-05-02T15:51:56.000+02:00","2026-04-21T21:00:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"327322734","","PCB17793.sanef.groupe","PCB17793","28:C5:D2:9F:C3:B5","192.168.1.150,10.205.0.89","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4M","","'+02:00","2026-03-05T12:27:35.000+02:00","SANEF\PECQUEUXM","Cloud Agent","f572b71d-52fd-4e52-8482-04aae5ca685a","2025-05-26T11:46:43.000+02:00","2026-04-21T20:52:24.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"335895691","","PCB24184.sanef.groupe","PCB24184","EC:4C:8C:27:52:86","10.205.0.141,192.168.1.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG45107MS","","'+02:00","2026-04-13T11:38:45.000+02:00","SANEF\CRONEL","Cloud Agent","64da7f70-3cb3-4460-8a0c-4b9c2c871d56","2025-06-24T09:54:16.000+02:00","2026-04-21T20:49:23.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"129931412","192382510","vmampgis5.sanef.groupe","VMAMPGIS5","00:50:56:82:33:54","10.41.40.109","fe80::f56c:5a1a:5877:598c","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","98303","Phoenix Technologies LTD 6.00","VMware-42 02 9f 53 80 5d 8e 64-cd a1 e3 76 9b 0b bc 91","NoAssetTag","'+02:00","2025-10-09T09:55:01.000+02:00","VMAMPGIS5\CYBASTAPP","Cloud Agent","e6022e2a-829f-4758-ae5c-dfb45af1c669","2022-07-01T09:01:19.000+02:00","2026-04-21T20:43:12.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Obsolete,Production,Patrimoine,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,VRF_INCONNUE,SIG","517.0" +"325249200","","PCB21545.sanef.groupe","PCB21545","D0:AD:08:A3:7C:C3","10.103.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYB","","'+02:00","2026-03-29T09:11:58.000+02:00","SANEF\machin","Cloud Agent","d3761107-1181-4b07-9a9b-ada07dc48ece","2025-05-16T14:17:10.000+02:00","2026-04-21T20:40:59.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"334679543","","PCB24157.sanef.groupe","PCB24157","24:FB:E3:F3:0A:B0","10.106.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136X7","","'+02:00","2026-04-09T19:07:33.000+02:00","SANEF\noyelle","Cloud Agent","7c4dd612-135f-4440-8239-5fe11d924c3d","2025-06-19T11:33:59.000+02:00","2026-04-21T20:38:56.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"338615879","","PCB21509.sanef.groupe","PCB21509","D0:AD:08:A3:7B:75","10.6.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV9","","'+02:00","2026-03-28T09:11:55.000+02:00","SANEF\renarde","Cloud Agent","3895c740-e58a-47e0-b095-34c11d3bc843","2025-07-02T16:35:27.000+02:00","2026-04-21T20:37:49.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359736670","","PCB24214.sanef.groupe","PCB24214","10:B6:76:95:8B:A3","10.105.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ4","","'+02:00","2026-04-17T07:03:09.000+02:00","SANEF\BROIE","Cloud Agent","cfc6222c-743b-4a97-b7b4-40fe5c9c14e1","2025-09-15T10:15:41.000+02:00","2026-04-21T20:34:12.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"325249298","","PCB21562.sanef.groupe","PCB21562","D0:AD:08:A7:28:17","10.6.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK1","","'+02:00","2026-03-28T09:11:38.000+02:00","SANEF\fegueux","Cloud Agent","36342dd2-053c-4f32-890e-06f4d56b0b7e","2025-05-16T15:29:29.000+02:00","2026-04-21T20:34:09.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"395329408","359415554","PCB21022.sanef.groupe","PCB21022","E0:C2:64:5A:12:57","10.205.0.39,192.168.1.128","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD336NWDY","","'+02:00","2026-04-17T14:33:29.000+02:00","SANEF\aitalla-ext","Cloud Agent","757afaf1-069f-4725-a960-0c092ef46dd8","2026-01-27T14:32:08.000+02:00","2026-04-21T20:29:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"334700474","","PCB24085.sanef.groupe","PCB24085","24:FB:E3:33:98:64","10.155.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437V","","'+02:00","2026-04-20T09:24:18.000+02:00","SANEF\DAILLY","Cloud Agent","0b0de950-8805-45fa-ac5e-37e7edf05e8f","2025-06-19T12:39:52.000+02:00","2026-04-21T20:25:20.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"326211679","","PCB20644.sanef.groupe","PCB20644","BC:0F:F3:3D:58:F6","10.100.39.153","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2S","","'+02:00","2026-03-30T08:17:57.000+02:00","SANEF\DOYENS","Cloud Agent","573bf3ca-2a1c-4492-97d7-dcbad369aac3","2025-05-21T11:34:42.000+02:00","2026-04-21T20:22:34.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"388069108","356869857","PCB21126.sanef.groupe","PCB21126","E4:60:17:CA:3F:A5","10.205.0.13,10.255.4.153","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MJ","","'+02:00","2026-04-10T14:00:15.000+02:00","SANEF\INTHIRAPIRATHAPAN-ex","Cloud Agent","ef5d8582-3334-4b37-8e68-fa7e9c9823bf","2026-01-05T10:53:25.000+02:00","2026-04-22T11:15:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","61.0" +"331417841","","PCB23604.sanef.groupe","PCB23604","6C:0B:5E:EE:EC:71","10.209.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5B","","'+02:00","2026-04-08T09:02:52.000+02:00","jeremy.legay@sapn.fr","Cloud Agent","be7b92e6-7ba1-4328-bcfb-1c8026104782","2025-06-06T12:10:45.000+02:00","2026-04-21T20:07:24.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"338797464","","PCB22925.sanef.groupe","PCB22925","60:45:2E:0F:4C:CC","10.255.1.162","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN0","","'+02:00","2026-04-09T13:12:18.000+02:00","SANEF\schmidtf","Cloud Agent","c9b18523-087e-4911-b949-f6aebcc06401","2025-07-03T09:26:43.000+02:00","2026-04-21T20:05:05.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"329929192","","PCB24038.sanef.groupe","PCB24038","6C:0B:5E:F8:C8:D9","10.152.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDQ","","'+02:00","2026-03-28T09:27:25.000+02:00","david.sutra@sanef.com","Cloud Agent","d9be6436-1631-4d04-8e69-7991a8c7e13a","2025-06-03T17:56:56.000+02:00","2026-04-21T20:00:57.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325192331","","PCB21260.sanef.groupe","PCB21260","D0:AD:08:1F:7E:D6","10.155.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3451GV4","","'+02:00","2026-03-28T09:13:50.000+02:00","SANEF\DELAHAYEF","Cloud Agent","a4cde89e-3b87-4823-b84e-0f976bf554f6","2025-05-16T10:49:06.000+02:00","2026-04-21T19:54:28.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"338840609","","PCB21529.sanef.groupe","PCB21529","D0:AD:08:A3:E7:35","10.13.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTH","","'+02:00","2026-04-08T10:16:39.000+02:00","jimmy.winterstein@sanef.com","Cloud Agent","6521d336-82a5-48e5-9008-c1e08cb76aa9","2025-07-03T11:03:38.000+02:00","2026-04-21T19:50:37.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"304657276","322542154","PCB21173.sanef.groupe","PCB21173","F0:20:FF:9B:09:56","10.107.31.36,10.255.4.143","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVX","","'+02:00","2026-04-14T13:39:09.000+02:00","SANEF\DELCLUSE","Cloud Agent","aca71b5a-fac1-4848-acd4-daae09d89680","2025-03-03T16:09:32.000+02:00","2026-04-21T19:43:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"359766551","","PCB24339.sanef.groupe","PCB24339","10:B6:76:95:8B:BD","10.155.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZZ","","'+02:00","2026-03-29T09:31:22.000+02:00","SANEF\GUERINL","Cloud Agent","867ed38c-d235-42f9-a013-791da957dfc4","2025-09-15T13:56:59.000+02:00","2026-04-21T19:42:13.000+02:00","64-Bit","2","PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","0.0" +"129321325","191935628","VPBIPBDEC1.sanef.groupe","VPBIPBDEC1","00:50:56:82:D7:74","10.30.11.21","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 fc 45 8f 89 e4 ab-43 62 c6 2b 84 0b f6 e9","NoAssetTag","'+02:00","2026-02-25T12:07:22.000+02:00","CYBADMSYS","Cloud Agent","2c6d3afd-ab91-4edf-8ac7-b6db6033d6eb","2022-06-27T12:21:46.000+02:00","2026-04-21T19:41:55.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DFIN,Production,VRF_INCONNUE,Gestion commerciale,OS-WIN-SRV DYN,INSIDE,BDD-SQL DYN,Cloud Agent,Windows Server","377.0" +"323998861","","PCB22336.sanef.groupe","PCB22336","D0:AD:08:A7:27:BC","10.203.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN9","","'+02:00","2026-03-28T09:11:50.000+02:00","SANEF\martinst","Cloud Agent","9a799842-82d3-48c7-bcc0-a34c52d85d21","2025-05-12T10:10:10.000+02:00","2026-04-21T19:36:59.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359736472","","PCB24194.sanef.groupe","PCB24194","10:B6:76:97:D4:B3","10.100.39.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKB","","'+02:00","2026-04-21T17:24:19.000+02:00","SANEF\OLIVIERD","Cloud Agent","f68876f8-cb16-4423-89ca-f94322ca191f","2025-09-15T10:15:19.000+02:00","2026-04-21T19:36:11.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"324951257","","vmm_stl_01.sanef-int.adds","VMM_STL_01","00:50:56:90:B6:33","10.41.13.60","fe80::586f:1819:ecc4:ae02","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 6e 18 74 4b 30 5b-2a 7a 00 d6 f6 2f 4c f0","","'+02:00","2026-04-20T15:52:26.000+02:00","user_stl","Cloud Agent","9f11d720-ec0e-4e70-b301-cae8acf91889","2025-05-15T09:48:19.000+02:00","2026-04-21T19:24:12.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129338219","191946583","vpsimasvp1.sanef.groupe","VPSIMASVP1","00:50:56:82:B1:87","10.30.10.50","fe80::317e:1a7d:4f7f:84dc","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 9e 50 f5 1b 46 c4-a5 51 1a f8 01 5e a2 29","NoAssetTag","'+02:00","2026-03-30T11:16:26.000+02:00","gare","Cloud Agent","9586f897-8d2b-493a-b0af-55e0fcab2d4a","2022-06-27T14:30:03.000+02:00","2026-04-21T19:21:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,Péage,Cloud Agent,Windows Server,Flux Libre,FreeFlow,OS-WIN-SRV DYN,VRF_INCONNUE","245.0" +"322391978","329448028","PCB23616.sanef.groupe","PCB23616","C8:6E:08:89:0A:94","10.205.0.16,192.168.1.61","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB8","","'+02:00","2026-03-30T10:28:51.000+02:00","SANEF\ADONELPIERRE","Cloud Agent","922ee46e-efc4-43e1-9795-926a8c6dd2ac","2025-05-06T13:49:23.000+02:00","2026-04-21T19:02:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"325921598","","PCB18626.sanef.groupe","PCB18626","38:CA:84:DB:E6:99","10.4.31.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WCX","","'+02:00","2026-04-17T12:25:31.000+02:00","SANEF\perrin","Cloud Agent","e7291bb7-430a-4b0f-ab83-4592aa692148","2025-05-20T10:11:07.000+02:00","2026-04-21T19:00:51.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"350546202","340471771","PCB21201.sanef.groupe","PCB21201","D0:AD:08:AA:4F:D9","10.220.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764DL","","'+02:00","2026-04-01T08:35:20.000+02:00","SANEF\brevers","Cloud Agent","ebc6e2f0-2a2a-4f1d-ab25-f92e276f573f","2025-08-11T13:45:54.000+02:00","2026-04-22T11:59:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"353084340","341836668","PCB21091.sanef.groupe","PCB21091","E4:60:17:CA:2F:5B","192.168.1.189,10.205.0.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764N1","","'+02:00","2026-04-14T12:18:21.000+02:00","SANEF\MOTIKABEKA-ext","Cloud Agent","b898b5cf-d938-4c4c-90b2-cd721a923134","2025-08-20T15:06:15.000+02:00","2026-04-22T11:43:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"323979817","","PCB22282.sanef.groupe","PCB22282","D0:AD:08:A3:7C:B9","10.202.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYP","","'+02:00","2026-03-29T09:12:17.000+02:00","SANEF\lejolliot","Cloud Agent","26510fa6-cc9e-4031-9e07-88111417ef4f","2025-05-12T08:44:43.000+02:00","2026-04-21T18:32:02.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"112571174","180426829","VPAIIAADM1.sanef.groupe","VPAIIAADM1","00:50:56:82:9B:96","10.30.10.132","fe80::6542:cbe6:a00b:f705","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 9e c9 bd 90 89 4c-51 64 bb 55 ef 4e 35 d5","NoAssetTag","'+02:00","2026-01-27T15:44:10.000+02:00","SANEF.GROUPE\lraad@sanef","Cloud Agent","4775eb0a-27b9-4a9e-8efc-ae93d8135e13","2022-02-07T11:30:07.000+02:00","2026-04-21T18:05:24.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,DSI,VRF_INCONNUE,OS-WIN-SRV DYN,High,Outils prod (Monitoring, NMS, gestion de parc),Production,Windows Server,AD,Haute","866.0" +"321039922","328917340","PCB24016.sanef.groupe","PCB24016","44:A3:BB:95:CE:32","10.255.2.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","Dell Latitude 7350 Notebook","14","1700","Intel(R) Core(TM) Ultra 7 165U","32213","Dell Inc. 1.13.0","75VTX64","","'+02:00","2026-04-20T13:39:51.000+02:00","jean-Eudes.birgy@sanef.com","Cloud Agent","d2b9a10d-efac-41da-a119-19b280a523fb","2025-04-30T16:26:26.000+02:00","2026-04-22T11:23:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"360521279","344990438","PCB21624.sanef.groupe","PCB21624","28:C5:D2:83:1A:E9","10.4.31.18,10.255.4.139","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K8","8CC34711K8","'+02:00","2026-04-16T13:19:40.000+02:00","SANEF\copin","Cloud Agent","d426ecef-aa79-4d7c-940a-65bf053dc890","2025-09-17T14:53:41.000+02:00","2026-04-21T17:53:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"323985060","","PCB22326.sanef.groupe","PCB22326","60:45:2E:0F:74:F4","10.255.1.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYJ","","'+02:00","2026-03-28T09:11:30.000+02:00","SANEF\henry","Cloud Agent","6671b0f9-e9bb-432a-92e8-ae810f544f6e","2025-05-12T09:35:20.000+02:00","2026-04-21T17:47:37.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"359154690","","PCB24219.sanef.groupe","PCB24219","10:B6:76:95:8B:93","10.5.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYM","","'+02:00","2026-04-15T17:50:02.000+02:00","SANEF\friedmann","Cloud Agent","b5810970-3dd6-4f6b-ab68-1458510e6649","2025-09-12T12:03:47.000+02:00","2026-04-21T17:47:31.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"325247657","","PCB21592.sanef.groupe","PCB21592","D0:AD:08:A3:E6:B0","10.89.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMJ","","'+02:00","2026-04-17T04:09:36.000+02:00","SANEF\garbe","Cloud Agent","5c9595f0-291c-4f82-9b8f-56e767e8dab3","2025-05-16T14:46:06.000+02:00","2026-04-21T17:47:16.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129931160","192382347","vmampgis1.sanef.groupe","VMAMPGIS1","00:50:56:82:2A:8E","10.41.40.105","fe80::4f:a480:d4b:ecd6","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 b8 a9 91 9a b2 d0-7d 12 a6 32 f8 82 ab 72","NoAssetTag","'+02:00","2025-07-08T12:53:05.000+02:00","VMAMPGIS1\CYBEXPAPP","Cloud Agent","cb62c0e3-f448-4bff-8b86-5419d7eab4c1","2022-07-01T08:56:23.000+02:00","2026-04-21T17:37:14.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_TRAFIC_DC,Cloud Agent,Windows Server,Patrimoine,Production,GIS,Obsolete,DEX,OS-WIN-SRV DYN","518.0" +"325710464","","PCB18054.sanef.groupe","PCB18054","64:D6:9A:1D:39:40","10.205.0.126,10.140.40.106","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRF","","'+02:00","2026-04-21T16:39:01.000+02:00","SANEF\morales","Cloud Agent","a5e86636-8786-4299-be38-334267c56b2a","2025-05-19T13:56:48.000+02:00","2026-04-21T17:36:13.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129338620","191947640","vdtrabtpa1.sanef.groupe","VDTRABTPA1","00:50:56:9C:5B:C9","10.45.13.35","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","32767","Phoenix Technologies LTD 6.00","VMware-42 1c 09 a4 ac d8 b8 c9-a2 00 97 5a 8d 90 50 a7","NoAssetTag","'+02:00","2026-04-21T11:17:52.000+02:00","recette.adds\SBP01862@recette","Cloud Agent","0f9625d4-8cd6-43b1-b27a-ad0d2edda323","2022-06-27T14:44:19.000+02:00","2026-04-21T17:32:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Temps de parcours,Recette,Cloud Agent,Windows Server,BDD-SQL DYN,BDD-POS DYN,Production,Trafic,VRF_INCONNUE,OS-WIN-SRV DYN,DEX","351.0" +"326853850","","PCB23665.sanef.groupe","PCB23665","C8:6E:08:88:F0:AE","192.168.1.64","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBK","","'+02:00","2026-04-16T17:47:20.000+02:00","SANEF\SINEYEN","Cloud Agent","f5747a5d-af45-4a3a-a34c-c6f9a0a26efc","2025-05-23T14:59:16.000+02:00","2026-04-21T17:24:59.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"325177105","","PCB21258.sanef.groupe","PCB21258","D0:AD:08:1F:7E:E0","10.3.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3451GTW","","'+02:00","2026-03-29T09:13:10.000+02:00","SANEF\sauveur","Cloud Agent","82d03cf9-41da-4c05-a1cd-56632bac3a46","2025-05-16T09:26:58.000+02:00","2026-04-21T17:24:07.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"343106717","337781595","PCB18029.sanef.groupe","PCB18029","64:D6:9A:1D:39:8B","10.205.0.59,192.168.1.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","32048","HP T39 Ver. 01.12.00","5CG2376HTV","","'+02:00","2026-04-20T09:26:51.000+02:00","SANEF\BENTMOHAMED","Cloud Agent","aea44bfd-8d20-45f7-a116-409a0f56733d","2025-07-18T12:34:41.000+02:00","2026-04-22T11:43:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"176933488","230363928","PCB20673.sanef.groupe","PCB20673","58:1C:F8:E8:E9:37","10.205.0.38,192.168.0.68","2a01:e0a:f9b:43e0:4c20:f2b1:3eef:22db,2a01:e0a:f9b:43e0:6326:2a46:3dc:9387,fe80::c81d:f708:302:81f0","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.12.00","5CG3224DRH","","'+02:00","2026-04-20T08:30:24.000+02:00","SANEF\mlanhoro-ext","Cloud Agent","72a5ccb5-e371-4011-a3bc-4119d383eaee","2023-07-03T15:22:29.000+02:00","2026-04-21T17:20:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"331154160","","PCB17772.sanef.groupe","PCB17772","D0:AD:08:8A:40:B3","10.154.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y51","","'+02:00","2026-04-21T06:54:48.000+02:00","SANEF\MONDON","Cloud Agent","f45e5ac7-005f-46e8-be5b-6f9a303cb9e5","2025-06-05T15:14:03.000+02:00","2026-04-21T17:14:25.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"362035818","345541527","PCB24063.sanef.groupe","PCB24063","10:B6:76:93:FA:D6","10.200.31.53","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YJD","","'+02:00","2026-04-21T13:40:54.000+02:00","SANEF\taron","Cloud Agent","37682fd5-148b-473c-8ef5-3a0dc148198b","2025-09-22T16:07:20.000+02:00","2026-04-21T17:05:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","333.0" +"359724016","","PCB24101.sanef.groupe","PCB24101","10:B6:76:7E:4E:70","10.152.31.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZYV","","'+02:00","2026-04-09T11:22:13.000+02:00","SANEF\duboisl","Cloud Agent","39e81189-55bc-492b-9e2a-4698d8b8f39f","2025-09-15T10:29:54.000+02:00","2026-04-21T16:46:44.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"338810406","","PCB21630.sanef.groupe","PCB21630","D0:AD:08:A7:28:47","10.100.39.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPF","","'+02:00","2026-04-21T04:54:17.000+02:00","SANEF\dast","Cloud Agent","fcd456a3-9cb5-443b-9dad-6baf5897113b","2025-07-03T09:53:44.000+02:00","2026-04-22T11:10:47.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"324727578","","PCB23784.sanef.groupe","PCB23784","C8:6E:08:47:8B:E6","10.205.0.229,192.168.1.112","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460H2G","","'+02:00","2026-03-19T19:04:13.000+02:00","SANEF\cremmer","Cloud Agent","152050a2-f1ef-4e0c-a282-0fc2b68e13c0","2025-05-14T16:50:54.000+02:00","2026-04-22T11:09:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"319338194","328389749","PCB22844.sanef.groupe","PCB22844","D0:AD:08:A3:E6:DD","10.103.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQD","8CC3502YQD","'+02:00","2026-04-13T14:58:49.000+02:00","SANEF\GOUILLART","Cloud Agent","03ba71ea-9945-4f87-a158-8cb575bb6c95","2025-04-25T10:07:49.000+02:00","2026-04-21T16:40:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"384865532","355201208","PCB17898.sanef.groupe","PCB17898","84:69:93:E1:1A:79","10.100.39.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG217247Q","","'+02:00","2026-03-29T09:24:11.000+02:00","SANEF\MYG","Cloud Agent","f8d72851-6875-4b33-b0e3-411dc61f68a1","2025-12-18T18:05:34.000+02:00","2026-04-21T16:30:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"368408453","348126955","PCB21707.sanef.groupe","PCB21707","E4:60:17:C7:30:CB","10.205.0.138,192.168.1.97","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HQ","","'+02:00","2026-04-20T08:56:24.000+02:00","SANEF\bardyn","Cloud Agent","82217fb0-dc5d-4b10-957d-d6075389b45a","2025-10-14T13:35:10.000+02:00","2026-04-21T16:23:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"335442432","","PCB24128.sanef.groupe","PCB24128","48:EA:62:C8:93:66","10.1.30.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V66","","'+02:00","2026-03-29T09:26:09.000+02:00","SANEF\brutin","Cloud Agent","8d19429c-39c4-41fc-8666-112158822a12","2025-06-23T09:41:07.000+02:00","2026-04-21T16:22:44.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"411140383","365535323","PCB21021.sanef.groupe","PCB21021","E0-C2-64-59-C9-C9, E0-C2-64-59-C9-C8, E0-C2-64-59-C9-CC, 64-4E-D7-9E-C4-AC","10.205.0.118","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623)","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","","","15568","","5CD336NWF8","","'+01:00","2026-04-17T11:54:32.000+02:00","","Cloud Agent","e10fbe4a-4e9b-4765-9146-98b8238e1d9a","2026-03-24T17:27:18.000+02:00","2026-04-21T16:21:34.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"297160954","318473020","PCB22967.sanef.groupe","PCB22967","6C:0B:5E:7C:2C:33","10.255.3.161,10.100.39.45","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","15804","HP W74 Ver. 01.08.01","5CD4438W6B","","'+02:00","2026-04-15T18:14:48.000+02:00","SANEF\TRON","Cloud Agent","759041c2-0d99-4026-9528-f35532ba0b91","2025-02-03T14:00:40.000+02:00","2026-04-21T16:18:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"360047595","","PCB24337.sanef.groupe","PCB24337","10:B6:76:95:8B:8D","10.155.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYF","","'+02:00","2026-04-21T16:09:56.000+02:00","SANEF\LAMBERTF","Cloud Agent","d44d5c2a-9c17-47ff-912b-569e69027db4","2025-09-16T14:24:53.000+02:00","2026-04-21T16:13:08.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"329726746","","MTR-4PXF2L3","MTR-4PXF2L3","A4:BB:6D:90:A7:7D","10.101.246.205","fe80::69c2:8e55:a1f0:817e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","4PXF2L3","","'+02:00","2026-04-21T02:32:52.000+02:00","Skype","Cloud Agent","4c0ea620-c7de-4ff6-9c81-26507a4d20bb","2025-06-03T10:38:40.000+02:00","2026-04-22T10:30:58.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360008000","","PCB24323.sanef.groupe","PCB24323","70:15:FB:7E:45:19","10.255.1.133","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYW","","'+02:00","2026-04-13T16:05:58.000+02:00","SANEF\COPINA","Cloud Agent","1ad67e90-6e28-4b9c-a95a-98a7a58ba1ca","2025-09-16T11:39:21.000+02:00","2026-04-21T15:58:20.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"391025304","357791638","PCB22525.sanef.groupe","PCB22525","D0:AD:08:AA:50:24","10.107.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H0","","'+02:00","2026-04-06T10:26:05.000+02:00","SANEF\deboffle","Cloud Agent","1175b71e-1fef-4716-8c78-e9d40f4a6175","2026-01-12T09:21:15.000+02:00","2026-04-21T15:53:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"353328564","341963092","PCB20819.sanef.groupe","PCB20819","C8:6E:08:48:DC:F3","10.205.0.156,192.168.1.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2S","","'+02:00","2026-03-31T09:10:27.000+02:00","Jean-philippe.weil@sanef.com","Cloud Agent","1fe7ea73-d55d-452d-bfa6-2fad0b248a39","2025-08-21T14:21:29.000+02:00","2026-04-22T11:48:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"410510148","365364107","PCB24107.sanef.groupe","PCB24107","C8:58:B3:01:DD:3A","10.205.0.35,10.255.2.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6N","","'+02:00","2026-04-01T14:30:20.000+02:00","SANEF\lerouxf","Cloud Agent","a37be413-c8e3-4dcf-80a0-066b68062dcd","2026-03-23T11:12:50.000+02:00","2026-04-21T15:34:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"361944196","345508658","PCB24246.sanef.groupe","PCB24246","0A:00:27:00:00:13, 24:FB:E3:BE:98:EB","10.255.4.232,169.254.155.138,10.10.6.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M5Y","","'+02:00","2026-04-21T11:39:05.000+02:00","SANEF\LERICHE","Cloud Agent","3e9770c8-692a-442a-a9ba-86c2df6ed1cb","2025-09-22T11:07:02.000+02:00","2026-04-21T15:31:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","346.0" +"370154243","348776267","PCB21316.sanef.groupe","PCB21316","E4:60:17:CA:41:49","10.205.0.100,10.7.11.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MH","","'+02:00","2026-03-31T19:27:13.000+02:00","SANEF\FARDILHA-ext","Cloud Agent","63c2aea4-060e-496b-a3ef-723f63f3eafd","2025-10-20T12:30:49.000+02:00","2026-04-22T11:45:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"281057287","305771552","PCB21350.sanef.groupe","PCB21350","D0:AD:08:AA:50:1A","10.202.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GP","","'+02:00","2026-04-01T13:07:46.000+02:00","SANEF\leduct","Cloud Agent","6eddf546-28ec-4d3d-be87-5de013947089","2024-11-21T16:15:40.000+02:00","2026-04-21T15:24:12.000+02:00","64-Bit","2","SCA,PM,GAV","Workstation,Cloud Agent","0.0" +"343644727","338034384","PCB20711.sanef.groupe","PCB20711","58:1C:F8:EA:58:A3","192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224CSZ","","'+02:00","2026-04-03T17:30:55.000+02:00","SANEF\bazan","Cloud Agent","c8f120fc-d93a-482f-b980-132203f43b9b","2025-07-21T10:39:35.000+02:00","2026-04-21T15:20:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"351380231","341150626","PCB24017.sanef.groupe","PCB24017","44:67:52:27:EA:F0","10.255.2.208,10.101.243.202","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","Dell Latitude 7350 Notebook","14","1700","Intel(R) Core(TM) Ultra 7 165U","32213","Dell Inc. 1.6.1","B4VTX64","","'+02:00","2026-03-30T17:43:36.000+02:00","SANEF\CORNIER","Cloud Agent","c024432e-1fdb-4dab-95bf-71d77ab0e8cb","2025-08-14T12:14:23.000+02:00","2026-04-22T11:53:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"280792740","305608321","PCB21329.sanef.groupe","PCB21329","D0:AD:08:AA:50:9F","10.202.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764LZ","","'+02:00","2026-04-01T10:46:02.000+02:00","SANEF\marais","Cloud Agent","0aafb843-919f-4a20-8d0d-e2904e958c4f","2024-11-20T13:08:24.000+02:00","2026-04-21T15:13:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","50.0" +"344301603","338294623","SVP18495.sanef-int.adds","SVP18495","D0:AD:08:A4:73:79","10.112.2.27","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.05.05","5CD34764J0","","'+02:00","2026-04-21T14:57:15.000+02:00","Superviseur","Cloud Agent","f0b0547a-a2d9-4c4b-9563-9c49797ddeee","2025-07-23T08:43:44.000+02:00","2026-04-21T15:12:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"281032241","305771550","PCB21327.sanef.groupe","PCB21327","E4:60:17:CA:40:18","10.255.2.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LT","","'+02:00","2026-04-01T08:49:46.000+02:00","SANEF\LefebvreCh","Cloud Agent","acd735db-abb9-40cb-8af7-76c782bc3a51","2024-11-21T16:15:11.000+02:00","2026-04-21T15:10:30.000+02:00","64-Bit","2","SCA,PM,GAV","Workstation,Cloud Agent","0.0" +"320071565","328599324","PCB23671.sanef.groupe","PCB23671","6C:0B:5E:EE:DC:07","10.5.31.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5D","","'+02:00","2026-04-20T10:42:11.000+02:00","SANEF\thomasm","Cloud Agent","15a0e532-1c4f-4476-9e59-5349911f176a","2025-04-28T10:07:44.000+02:00","2026-04-21T14:54:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"338322095","","PCB24180.sanef.groupe","PCB24180","DC:90:09:DE:FA:26","10.205.0.134,192.168.1.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XZ","","'+02:00","2026-04-01T11:37:47.000+02:00","SANEF\BARRY","Cloud Agent","17ef648b-e88e-49d7-baa3-3fdc41ecc13f","2025-07-02T09:37:51.000+02:00","2026-04-21T14:54:09.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"281435082","313088161","PCB21321.sanef.groupe","PCB21321","D0:AD:08:AA:50:B8","10.202.31.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MS","","'+02:00","2026-04-01T13:05:08.000+02:00","SANEF\carval","Cloud Agent","c7ad58f8-120b-44e6-b983-383de6c510b9","2024-11-22T11:25:39.000+02:00","2026-04-21T14:48:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"324129408","","PCB22328.sanef.groupe","PCB22328","60:45:2E:0F:9A:6A","10.203.31.6,10.255.1.154","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYY","","'+02:00","2026-04-06T06:45:18.000+02:00","SANEF\mathieuf","Cloud Agent","718cf66d-4a12-4ab2-889b-4ff87e3f9709","2025-05-12T15:40:30.000+02:00","2026-04-22T09:58:10.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"368152215","348099750","PCB25835.sanef.groupe","PCB25835","F8:ED:FC:AB:12:CD","10.5.30.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CS3","","'+02:00","2026-04-20T13:41:17.000+02:00","SANEF\solagna","Cloud Agent","fc7a798d-6170-4bc8-80c9-ad8a89d7e5f9","2025-10-14T09:42:28.000+02:00","2026-04-21T14:02:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"382522823","354014910","PCB25923.sanef.groupe","PCB25923","4C:CF:7C:0A:5C:7A","10.255.4.144,10.252.42.140","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534223S","","'+02:00","2026-04-13T10:41:46.000+02:00","SANEF\coudurier","Cloud Agent","5818d456-0740-42fc-b098-9db4f1ec16c5","2025-12-08T17:43:16.000+02:00","2026-04-21T13:43:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"358858681","344321015","PCB17483.sanef.groupe","PCB17483","70:A8:D3:85:76:45","10.255.2.244","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.15.02","5CG217247F","","'+02:00","2026-04-17T09:54:22.000+02:00","naomie.mpengo-itaka@sanef.com","Cloud Agent","8c18b313-f0c4-4ec9-8643-1ccaf40feb0e","2025-09-11T14:01:18.000+02:00","2026-04-22T11:28:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"339039077","336072564","SVP18484.sanef-int.adds","SVP18484","D0:AD:08:A2:AE:57","10.182.6.29,10.182.4.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764FV","","'+02:00","2026-04-14T08:13:57.000+02:00","Superviseur","Cloud Agent","d4f12adf-28c4-42ff-8a95-047d6e40a21c","2025-07-04T06:27:58.000+02:00","2026-04-21T13:36:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"304688619","322549286","PCB22611.sanef.groupe","PCB22611","D0:AD:08:AA:4F:F9","10.107.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FM","","'+02:00","2026-04-06T08:43:32.000+02:00","SANEF\lemairev","Cloud Agent","17a7d0dc-dc98-4cd3-8bc7-9eebdf6af6ca","2025-03-03T17:57:25.000+02:00","2026-04-21T13:34:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"324953378","330449119","SVP21342.sanef-int.adds","SVP21342","D0:AD:08:A4:72:D9","10.112.2.27,10.92.9.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764F6","","'+02:00","2026-04-10T07:43:47.000+02:00","Superviseur","Cloud Agent","0660a515-b744-4bca-895d-296bf443b004","2025-05-15T10:58:37.000+02:00","2026-04-21T13:34:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"305248158","322686743","PCB21132.sanef.groupe","PCB21132","D0:AD:08:AA:50:A6","10.107.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M6","","'+02:00","2026-04-01T13:03:30.000+02:00","SANEF\diot","Cloud Agent","a26c5b1e-cc79-443d-ad24-46ae9d33b998","2025-03-04T18:51:56.000+02:00","2026-04-21T13:34:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"305054446","322671476","PCB22609.sanef.groupe","PCB22609","D0:AD:08:AA:4F:C8","10.107.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764D1","","'+02:00","2026-04-13T10:44:13.000+02:00","SANEF\laloux","Cloud Agent","60da864e-dee3-4be2-b13f-e9c82b734936","2025-03-04T15:44:08.000+02:00","2026-04-21T13:31:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"328593294","331960149","PCB23705.sanef.groupe","PCB23705","C8:6E:08:88:E2:80","192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L52","","'+02:00","2026-04-15T08:15:17.000+02:00","SANEF\dore","Cloud Agent","d65561c9-f791-4d7c-b931-64098a1766db","2025-05-30T09:45:27.000+02:00","2026-04-21T13:29:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"350801769","340901852","PCB21339.sanef.groupe","PCB21339","D0:AD:08:AA:50:9C","10.220.31.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LW","","'+02:00","2026-04-20T08:17:56.000+02:00","SANEF\savaryma","Cloud Agent","f277bdee-704a-4abe-b793-c0c4862dd072","2025-08-12T11:59:40.000+02:00","2026-04-21T13:22:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"384235884","354848736","PCB22725.sanef.groupe","PCB22725","E4:60:17:C5:09:FE","10.205.0.119,192.168.1.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JF","","'+02:00","2026-04-01T09:52:16.000+02:00","SANEF\MOREIRA-ext","Cloud Agent","e30f891e-220f-490d-845c-d69973bab74e","2025-12-16T12:31:55.000+02:00","2026-04-22T11:58:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"324702377","","PCB23734.sanef.groupe","PCB23734","C8:6E:08:47:73:63","10.205.0.133,192.168.1.95","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3S","","'+02:00","2026-03-29T20:18:26.000+02:00","SANEF\houssiaux","Cloud Agent","2c487361-b23c-454a-911d-8984254638dc","2025-05-14T14:42:05.000+02:00","2026-04-21T13:12:11.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321532357","329072482","PCB23743.sanef.groupe","PCB23743","6C:0B:5E:EE:A3:0E","10.105.30.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2V","","'+02:00","2026-04-20T08:18:50.000+02:00","SANEF\barlet","Cloud Agent","eb14823d-d868-45db-a78d-0ea13fa7470c","2025-05-02T10:11:33.000+02:00","2026-04-21T13:09:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"345672227","338898642","PCB21115.sanef.groupe","PCB21115","E4:60:17:CA:40:72","10.205.0.162,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764MK","","'+02:00","2026-03-31T13:30:40.000+02:00","SANEF\NAHMIAS-ext","Cloud Agent","51a4f402-92ba-4565-8227-d2da9e43a2cd","2025-07-28T13:57:26.000+02:00","2026-04-21T12:47:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"322338468","329425101","PCB22798.sanef.groupe","PCB22798","D0:AD:08:A7:27:E1","10.189.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSR","8CC3502YSR","'+02:00","2026-04-21T11:49:57.000+02:00","SANEF\LOISEAU","Cloud Agent","7673c7b8-5f13-47a3-a6d1-a5805f723939","2025-05-06T10:13:59.000+02:00","2026-04-21T12:37:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"323174338","329812432","PCB22778.sanef.groupe","PCB22778","D0:AD:08:A7:28:0C","10.189.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKH","8CC3502YKH","'+02:00","2026-03-31T13:26:00.000+02:00","SANEF\ditte","Cloud Agent","88a40020-068e-4d7f-871b-98690fd002e3","2025-05-09T13:11:15.000+02:00","2026-04-21T12:33:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","140.0" +"385585248","355762821","SVP22623.sanef-int.adds","SVP22623","D0:AD:08:A2:AE:55","10.82.5.29,10.82.0.251","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764FX","","'+02:00","2026-04-16T08:54:08.000+02:00","Superviseur","Cloud Agent","e78bfd17-a2f2-4c1e-9edf-9be811a77618","2025-12-22T17:03:06.000+02:00","2026-04-21T12:31:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"346001975","338978585","SVP22607.sanef-int.adds","SVP22607","D0:AD:08:A4:73:BE","10.22.1.21,169.254.109.55","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764CW","","'+02:00","2026-03-26T13:12:20.000+02:00","Superviseur","Cloud Agent","476f6ea8-b3f4-4aca-80bd-d7d8d3c0e646","2025-07-29T08:41:11.000+02:00","2026-04-21T12:28:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"361258829","345231690","PCB23670.sanef.groupe","PCB23670","6C:0B:5E:EE:A3:AE","10.255.1.129,10.202.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9K","","'+02:00","2026-03-30T08:39:39.000+02:00","SANEF\legendre","Cloud Agent","6203e338-85bb-4569-b76e-79de333942d2","2025-09-19T14:16:51.000+02:00","2026-04-21T12:28:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"366113694","347199102","PCB24150.sanef.groupe","PCB24150","80:C0:1E:16:06:98","10.205.0.179,192.168.1.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook X G1i Notebook","1","2200","Intel(R) Core(TM) Ultra 7 258V","32240","HP X90 Ver. 01.01.07","5CG51110R2","","'+02:00","2026-04-02T12:50:53.000+02:00","SANEF\DHAUSSONVILLE","Cloud Agent","5a4541fa-014e-4512-bc11-830c1b3e8381","2025-10-07T13:02:27.000+02:00","2026-04-21T12:24:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"364972594","346711354","MAC15857.sanef.groupe","MAC15857","a0:78:17:83:5b:90","10.255.1.10","fe80::14cd:a0f3:abbe:d891","Mac / Client","Apple macOS Tahoe (26.3.1)","26.3","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFF76AFQ05N","","'+02:00","2026-04-15T16:20:43.000+02:00","arnaud.quemard","Cloud Agent","177dd0d1-7168-4c3a-9148-2dfcbd2f1a61","2025-10-02T13:36:27.000+02:00","2026-04-22T11:37:18.000+02:00","arm64_M1","2","SCA,VM,PM,GAV","Cloud Agent","63.0" +"324031938","","PCB17911.sanef.groupe","PCB17911","84:69:93:E1:7A:4A","10.4.31.57","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG21724BJ","","'+02:00","2026-02-13T12:50:27.000+02:00","SANEF\lecomte","Cloud Agent","cf3e6df3-848f-4084-9a9a-49d9d81432cd","2025-05-12T12:36:23.000+02:00","2026-04-21T12:13:02.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"388146163","356891654","PCB22729.sanef.groupe","PCB22729","E4:60:17:CA:2F:79","10.205.0.155,10.255.4.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764M5","","'+02:00","2026-01-13T11:49:42.000+02:00","SANEF\ternisienj","Cloud Agent","e9bd35cc-fa9e-4fbe-9836-1cde93500d33","2026-01-05T14:18:53.000+02:00","2026-04-21T12:09:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"414232388","367002493","PCB23717.sanef.groupe","PCB23717","C8:6E:08:47:72:F5","10.255.3.248","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4J","","'+02:00","2026-01-13T10:44:04.000+02:00","SANEF\pierrond","Cloud Agent","e00f13d7-3eed-4099-95b8-85cc39515e9a","2026-04-08T08:28:38.000+02:00","2026-04-21T12:05:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"358835155","344313874","PCB24251.sanef.groupe","PCB24251","C8:58:B3:18:8B:16","192.168.3.64","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.07.04","5CD5085GGF","","'+02:00","2026-04-16T12:57:58.000+02:00","SANEF\driot","Cloud Agent","8154c8be-5aee-4680-bd45-71849ff7c736","2025-09-11T13:16:43.000+02:00","2026-04-21T12:04:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"324730239","","PCB23726.sanef.groupe","PCB23726","C8:6E:08:49:99:3B","10.205.0.119,192.168.1.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2Y","","'+02:00","2026-03-30T08:10:06.000+02:00","SANEF\leroys","Cloud Agent","05846cb2-f69b-49da-969b-f142e0a34905","2025-05-14T15:28:24.000+02:00","2026-04-21T11:51:47.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"414671458","367157055","SVP18494.sanef-int.adds","SVP18494","D0:AD:08:A4:73:76","10.142.2.26,169.254.8.112","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764J7","","'+02:00","2026-04-10T10:59:44.000+02:00","Superviseur","Cloud Agent","fb2850be-3426-4943-ad07-1b84098a2ed9","2026-04-09T16:04:37.000+02:00","2026-04-21T11:44:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"356905320","343530465","PCB22618.sanef.groupe","PCB22618","D0:AD:08:AA:50:17","10.220.31.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764GL","","'+02:00","2026-04-01T09:02:43.000+02:00","annie.deschamps@sapn.fr","Cloud Agent","19f22e4b-efa9-4b49-9aea-02efc8367155","2025-09-04T14:33:41.000+02:00","2026-04-21T11:39:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"356624773","343410235","PCB22509.sanef.groupe","PCB22509","D0:AD:08:AA:50:3C","10.220.31.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HS","","'+02:00","2026-04-01T08:40:44.000+02:00","peggy.enaultbelhache@sapn.fr","Cloud Agent","e9ecf8d0-bd8a-43c3-a462-176448aa8943","2025-09-03T14:35:14.000+02:00","2026-04-21T11:37:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"396183133","359803291","PCB24070.sanef.groupe","PCB24070","08:B4:D2:2A:04:3B","10.255.4.16,10.255.4.198","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5064389","","'+02:00","2026-04-15T09:08:30.000+02:00","SANEF\kabuya-ext","Cloud Agent","4e97835f-bedb-4de7-a6d3-9e4514fcb2f4","2026-01-30T19:27:36.000+02:00","2026-04-21T11:36:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"361293868","345246363","PCB24211.sanef.groupe","PCB24211","10:B6:76:95:8B:BA","10.200.31.88","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZW","","'+02:00","2026-04-02T08:26:49.000+02:00","SANEF\berriot","Cloud Agent","19e56b55-471e-46b4-a8f4-8f200a6e911a","2025-09-19T17:18:07.000+02:00","2026-04-21T11:32:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"412590253","366325615","PCB21111.sanef.groupe","PCB21111","E4:60:17:CA:2F:56","10.205.0.138,192.168.188.114","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7171) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764LB","","'+02:00","2026-01-23T00:04:21.000+02:00","SANEF\GIRAUDSAUVEUR-ext","Cloud Agent","267901ae-4657-480a-ba5e-2c40ad48aeac","2026-03-31T10:08:01.000+02:00","2026-04-21T11:25:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"308160251","323604670","PCB20643.sanef.groupe","PCB20643","BC:0F:F3:3D:68:36","10.200.31.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224CSL","","'+02:00","2026-04-16T19:13:19.000+02:00","SANEF\PERIS-ext","Cloud Agent","d851b71f-9e88-4c5b-8b51-e98dbe718527","2025-03-14T11:28:58.000+02:00","2026-04-22T11:52:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"320134631","328623086","PCB23708.sanef.groupe","PCB23708","C8:6E:08:89:CF:E2","10.205.0.142,192.168.1.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6N","","'+02:00","2026-04-13T09:17:43.000+02:00","SANEF\CAURIER","Cloud Agent","2dd40ba6-e3e8-45fb-a022-e809b0d943fb","2025-04-28T14:07:25.000+02:00","2026-04-22T10:25:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"357106870","343625782","PCB20656.sanef.groupe","PCB20656","58:1C:F8:E9:44:27","10.255.3.239","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DSJ","","'+02:00","2026-03-26T12:11:20.000+02:00","SANEF\ALLEYSSON","Cloud Agent","5e933282-3c43-44af-887e-8792f473c5ef","2025-09-05T10:05:29.000+02:00","2026-04-22T11:54:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"356385889","343285277","PCB21343.sanef.groupe","PCB21343","D0:AD:08:AA:50:67","10.220.31.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764K5","","'+02:00","2026-04-08T15:35:54.000+02:00","brigitte.robergeot@sapn.fr","Cloud Agent","7edc98f1-edba-44ef-9164-0f72e410c13b","2025-09-02T17:21:21.000+02:00","2026-04-21T11:17:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"364740389","346607667","PCB18732.sanef.groupe","PCB18732","BC:0F:F3:3B:C5:47","10.220.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3Q","","'+02:00","2026-03-28T14:56:54.000+02:00","SANEF\BOISFER","Cloud Agent","73754ed6-fe96-4c58-9b93-cc4cd95ec3d7","2025-10-01T14:50:52.000+02:00","2026-04-21T11:16:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"367919266","347985134","PCB18117.sanef.groupe","PCB18117","38:CA:84:52:77:EB","10.220.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRT","","'+02:00","2026-04-08T11:05:48.000+02:00","SANEF\renier","Cloud Agent","f78e02ff-3799-4eb6-af69-95de3411a8a9","2025-10-13T13:34:24.000+02:00","2026-04-22T11:54:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"321987532","329316065","PCB20847.sanef.groupe","PCB20847","C8:6E:08:49:2E:10","10.205.0.37,192.168.1.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H5D","","'+02:00","2026-03-30T07:10:38.000+02:00","SANEF\petri","Cloud Agent","207b932a-1899-4f09-8987-269168a96460","2025-05-05T10:40:33.000+02:00","2026-04-21T11:12:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"402138691","361893055","PCB24340.sanef.groupe","PCB24340","10:B6:76:95:8B:87","10.101.243.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZY7","","'+02:00","2026-04-14T10:39:50.000+02:00","SANEF\ysmael-ext","Cloud Agent","6824ad95-9f3a-4ada-80d0-396558131b6c","2026-02-18T17:16:15.000+02:00","2026-04-22T11:24:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"356359986","343273998","PCB21116.sanef.groupe","PCB21116","E4:60:17:C5:08:C3","192.168.1.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JJ","","'+02:00","2026-04-21T10:32:59.000+02:00","SANEF\MENGISTU-ext","Cloud Agent","1ec84fa6-f93e-437c-8402-f5bc34d9b8bc","2025-09-02T16:03:05.000+02:00","2026-04-22T11:26:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"379837939","352999176","PCB22722.sanef.groupe","PCB22722","E4:60:17:C4:7E:F8","10.255.2.242","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764KJ","","'+02:00","2026-04-03T17:02:14.000+02:00","SANEF\LEVIENNESSE-ext","Cloud Agent","a4160758-e626-405a-8198-28a1b3d34e9f","2025-11-27T16:53:46.000+02:00","2026-04-21T11:03:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"350042094","340238263","PCB22526.sanef.groupe","PCB22526","D0:AD:08:AA:4F:FD","10.220.31.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FR","","'+02:00","2026-04-02T08:42:18.000+02:00","claire.guignon@sapn.fr","Cloud Agent","44760461-d7fa-432e-81d8-d6a7c151a597","2025-08-08T13:42:11.000+02:00","2026-04-22T11:52:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"318405690","328038566","PCB22803.sanef.groupe","PCB22803","D0:AD:08:A3:E6:B5","10.189.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSJ","8CC3502YSJ","'+02:00","2026-03-29T09:12:16.000+02:00","SANEF\PEUDEVIN","Cloud Agent","0bd70542-b98c-4d41-b670-9e617e2158b7","2025-04-22T13:52:58.000+02:00","2026-04-21T11:02:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"377773483","352194965","PCB25887.sanef.groupe","PCB25887","C4:0F:08:B4:39:F3","10.255.2.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222V","","'+02:00","2026-04-16T11:04:11.000+02:00","SANEF\vallin","Cloud Agent","4ad7999b-2659-49ec-9b8c-386121390ec1","2025-11-19T16:08:46.000+02:00","2026-04-22T11:51:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"358157529","344039421","PCB18749.sanef.groupe","PCB18749","58:1C:F8:EB:78:14","10.255.4.244","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3B","","'+02:00","2026-03-31T13:39:58.000+02:00","SANEF\CHERIET","Cloud Agent","8ae0f6f1-c2d7-4348-a182-be06c77d2bd3","2025-09-09T15:21:06.000+02:00","2026-04-22T11:34:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"322374230","329442019","PCB23619.sanef.groupe","PCB23619","C8:6E:08:88:F0:A4","10.205.0.131,192.168.1.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6H","","'+02:00","2026-04-15T21:14:36.000+02:00","SANEF\PALOUZIER","Cloud Agent","ce1b2608-2464-4c4e-8084-4a92ace9f1d6","2025-05-06T12:47:48.000+02:00","2026-04-21T10:54:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"346164627","338997114","PCB18084.sanef.groupe","PCB18084","38:CA:84:52:09:73","10.101.243.124","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HSM","","'+02:00","2026-04-20T09:27:38.000+02:00","SANEF\DELADOUCETTE","Cloud Agent","e6d04648-8dbe-4a6a-be8e-e6d3c78c448b","2025-07-29T11:28:32.000+02:00","2026-04-22T11:43:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","242.0" +"352580911","341592465","PCB25852.sanef.groupe","PCB25852","28:95:29:22:6B:7C","10.255.2.229","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSX","","'+02:00","2026-04-14T09:42:46.000+02:00","SANEF\LETENDARD","Cloud Agent","3a092997-4bbe-4546-bbf1-3f937f69ca42","2025-08-19T12:40:07.000+02:00","2026-04-22T11:46:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"360021676","","PCB18093.sanef.groupe","PCB18093","64:D6:9A:1D:39:18","192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HT6","","'+02:00","2026-04-19T21:23:20.000+02:00","SANEF\BAUMANN","Cloud Agent","98b84352-03e8-4745-bd5a-b77cf34f7043","2025-09-16T13:08:41.000+02:00","2026-04-21T10:42:53.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"356302749","343247610","PCB18066.sanef.groupe","PCB18066","38:CA:84:52:30:3A","10.101.243.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.09.01","5CG2376HT4","","'+02:00","2026-04-13T12:36:15.000+02:00","SANEF\OGILVIE","Cloud Agent","af6b17fe-1602-4202-8fa2-c0c9308b6357","2025-09-02T12:03:15.000+02:00","2026-04-22T11:52:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"366129118","347210173","PCB17784.sanef.groupe","PCB17784","28:C5:D2:9F:C4:00","10.205.0.66,192.168.1.169","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y47","","'+02:00","2026-04-15T10:15:50.000+02:00","Allison.bussi@bipandgo.com","Cloud Agent","f7f789e5-0a5c-41ea-abb4-ad80ff0f6224","2025-10-07T15:14:56.000+02:00","2026-04-21T10:38:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"344814567","338468966","PCB23528.sanef.groupe","PCB23528","C8:6E:08:88:E2:99","10.255.2.223","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6V","","'+02:00","2026-03-30T09:00:56.000+02:00","SANEF\planchon","Cloud Agent","cddbcff7-bea2-41a0-a6a9-c474a5b2540e","2025-07-24T13:27:56.000+02:00","2026-04-21T10:38:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"334734731","","PCB24072.sanef.groupe","PCB24072","08:B4:D2:2C:6A:CD","10.255.2.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.04.01","5CD506438V","","'+02:00","2026-03-29T09:27:47.000+02:00","SANEF\hieulle","Cloud Agent","fae4786b-34b7-4fa6-8d27-ef43dd5cd0bb","2025-06-19T15:53:40.000+02:00","2026-04-21T10:35:50.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"368411315","348131710","PCB18107.sanef.groupe","PCB18107","64:D6:9A:1D:2B:DF","10.255.2.218","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.09.01","5CG2376HRX","","'+02:00","2026-04-20T10:10:27.000+02:00","SANEF\brin","Cloud Agent","416559b6-d640-4ea9-b5fc-34d01570eee4","2025-10-14T14:34:40.000+02:00","2026-04-21T10:34:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"369279734","348358262","PCB18063.sanef.groupe","PCB18063","64:D6:9A:21:81:A3","10.255.4.129,10.255.4.252","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.23.00","5CG2376HTG","","'+02:00","2026-04-17T16:21:57.000+02:00","SANEF\KASONGO-ext","Cloud Agent","92290210-1633-4721-bc0b-f4f9b09747ee","2025-10-16T12:31:34.000+02:00","2026-04-21T10:33:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"331143523","","PCB23588.sanef.groupe","PCB23588","C8:6E:08:89:0B:02","10.205.0.132,192.168.1.115","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8R","","'+02:00","2026-03-31T13:18:15.000+02:00","SANEF\lalinec","Cloud Agent","f1065faa-3697-42d0-b046-8d7763c69bdb","2025-06-05T14:21:28.000+02:00","2026-04-22T10:25:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"331432984","","PCB17766.sanef.groupe","PCB17766","28:C5:D2:9F:C3:88","10.205.0.16,169.254.238.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y40","","'+02:00","2026-04-16T11:23:12.000+02:00","SANEF\breuillac","Cloud Agent","c4d928aa-259b-4f6c-8ea4-524f9bfd31d3","2025-06-06T14:53:35.000+02:00","2026-04-21T10:30:47.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321014209","328903800","PCB23672.sanef.groupe","PCB23672","C8:6E:08:8A:51:15","10.205.0.131,192.168.1.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9Z","","'+02:00","2026-03-30T15:41:55.000+02:00","SANEF\LECIGNE","Cloud Agent","27dc8b08-c234-478a-857b-44a281471670","2025-04-30T14:12:54.000+02:00","2026-04-21T10:28:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"358783975","344250269","PCB20697.sanef.groupe","PCB20697","BC:0F:F3:3D:18:21","10.101.243.179","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224D43","","'+02:00","2026-04-09T10:21:25.000+02:00","SANEF\blacodon","Cloud Agent","90d605b7-6430-4ef9-b2ee-9ff4129d0bf6","2025-09-11T09:52:16.000+02:00","2026-04-22T11:36:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"417403086","368234260","PCB23600.sanef.groupe","PCB23600","C8:6E:08:88:F0:36","10.255.1.199","fe80::67a3:87ee:8465:6652","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5S","","'+02:00","2026-04-20T14:27:59.000+02:00","SANEF\PARARAJASEGARAN","Cloud Agent","31ee868d-842b-4e30-a17a-59411191e7d3","2026-04-20T14:01:21.000+02:00","2026-04-21T10:26:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"343105603","337771598","PCB18106.sanef.groupe","PCB18106","64:D6:9A:1D:39:2C","10.205.0.102,192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.09.01","5CG2376HRQ","","'+02:00","2026-04-07T09:54:27.000+02:00","SANEF\LEFORMAL","Cloud Agent","5a886bf4-c03e-4391-8c5d-c965fecc30f7","2025-07-18T11:25:20.000+02:00","2026-04-21T10:23:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"281007422","305748071","PCB22534.sanef.groupe","PCB22534","D0:AD:08:AA:50:66","10.220.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764K4","","'+02:00","2026-04-20T10:36:32.000+02:00","SANEF\gervais","Cloud Agent","9384f83f-458a-401c-b63c-528e90fbf2a4","2024-11-21T12:42:43.000+02:00","2026-04-21T10:23:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"331188629","","PCB23690.sanef.groupe","PCB23690","C8:6E:08:88:F0:77","10.101.243.79,10.255.2.243","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L68","","'+02:00","2026-03-31T09:10:12.000+02:00","SANEF\MASMOUDI","Cloud Agent","28c377c7-f272-4b8e-bfa8-f7298377350b","2025-06-05T15:55:27.000+02:00","2026-04-21T10:22:28.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"353719933","342061489","PCB17781.sanef.groupe","PCB17781","D0:AD:08:0C:7D:E8","10.101.243.145","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3H","","'+02:00","2026-04-21T09:44:22.000+02:00","SANEF\THIELLOSALL","Cloud Agent","6f7f8d61-65ca-4532-9314-b451ecd58412","2025-08-22T11:29:58.000+02:00","2026-04-22T11:49:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"382433027","353977188","PCB25793.sanef.groupe","PCB25793","F8:ED:FC:AB:F1:E9","10.252.42.151","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVY","","'+02:00","2026-04-14T08:59:05.000+02:00","SANEF\guichard","Cloud Agent","15cb4752-4964-4695-88b4-1601139e690f","2025-12-08T11:21:34.000+02:00","2026-04-21T10:21:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","332.0" +"395335979","359417747","PCB24042.sanef.groupe","PCB24042","EC:4C:8C:C0:1A:3E","10.205.0.122,192.168.0.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDT","","'+02:00","2026-03-31T09:56:15.000+02:00","SANEF\RENO","Cloud Agent","fc1e7565-32be-4451-801e-e01823b8efc7","2026-01-27T14:59:24.000+02:00","2026-04-22T11:37:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"343698967","338069202","PCB20707.sanef.groupe","PCB20707","58:1C:F8:EA:58:C6","10.255.1.222,192.168.1.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSM","","'+02:00","2026-04-03T10:51:25.000+02:00","marie.deresseguier@sanef.com","Cloud Agent","f4487aa7-00d7-4b55-ac5e-b9a3ab57fb58","2025-07-21T14:47:49.000+02:00","2026-04-22T11:39:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"373167808","350064154","PCB17895.sanef.groupe","PCB17895","70:A8:D3:85:C6:D1","10.255.2.224","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG217248G","","'+02:00","2026-04-15T12:45:59.000+02:00","SANEF\gimpel","Cloud Agent","c51ba0b2-5002-4408-91be-b4297b37e926","2025-10-31T10:38:05.000+02:00","2026-04-21T10:15:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"350568845","340490704","PCB25796.sanef.groupe","PCB25796","28:95:29:1A:FE:AF","10.205.0.126,192.168.1.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV7","","'+02:00","2026-04-17T13:38:58.000+02:00","SANEF\ZAMBETTA","Cloud Agent","ade50370-2adb-4c63-a071-15bcf5fe1b1d","2025-08-11T16:13:06.000+02:00","2026-04-21T10:15:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"356378351","343285628","PCB21117.sanef.groupe","PCB21117","E4:60:17:CA:30:0F","10.205.0.142,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L6","","'+02:00","2026-04-02T09:01:36.000+02:00","SANEF\LAHYANI-ext","Cloud Agent","b04167ad-194c-4895-ba4f-e18caa3ffeae","2025-09-02T17:27:49.000+02:00","2026-04-21T10:14:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","336.0" +"350556707","340473845","PCB25785.sanef.groupe","PCB25785","F8:ED:FC:AB:02:0C","10.101.243.68","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTW","","'+02:00","2026-04-14T17:58:45.000+02:00","SANEF\HOCHART","Cloud Agent","e80949fa-5dce-4dc7-a157-21745824e23c","2025-08-11T13:59:12.000+02:00","2026-04-22T11:50:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"371078338","349189517","PCB22300.sanef.groupe","PCB22300","60:45:2E:0F:8E:71","10.255.4.6,169.254.244.167","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYV","","'+02:00","2026-04-09T11:58:58.000+02:00","SANEF\BELLATON","Cloud Agent","7f1a33d7-4d0a-4977-ad99-54ff2cee3ab5","2025-10-23T13:24:13.000+02:00","2026-04-21T10:11:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","351.0" +"412399058","366138290","PCB18096.sanef.groupe","PCB18096","64:D6:9A:1D:2D:8D","10.205.0.143,192.168.1.13","2a01:e0a:9d6:6070:3eb6:2e8d:58b0:ce85,2a01:e0a:9d6:6070:9458:f7d4:fe65:c5aa,fe80::82aa:5901:a010:5ba4","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRN","","'+02:00","2026-03-30T14:28:52.000+02:00","SANEF\lestrat-ext","Cloud Agent","91dee946-02c6-43ad-9827-64fafc30cb7c","2026-03-30T14:15:41.000+02:00","2026-04-21T10:06:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"386725450","356331191","PCB16157.sanef.groupe","PCB16157","E0:70:EA:D3:27:7B, 28:11:A8:73:E8:8A","10.100.39.81,10.255.1.201","fe80::32b:af7:6b9e:decc,fe80::9487:8664:508c:b34b","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP ProBook 630 G8 Notebook","1","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.14.00","5CD14540QS","","'+02:00","2026-04-20T09:09:52.000+02:00","SANEF\DAHLKE","Cloud Agent","a35493b4-3fdc-4da4-b796-2c34200c5eaa","2025-12-29T17:07:52.000+02:00","2026-04-22T11:59:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-POS DYN","345.0" +"326255599","","PCB21100.sanef.groupe","PCB21100","D0:AD:08:AA:50:96","10.100.39.191","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764LP","","'+02:00","2026-04-15T16:02:46.000+02:00","SANEF\KHADRI-ext","Cloud Agent","37799ca4-6a17-4bf8-ba14-e42303903133","2025-05-21T16:43:09.000+02:00","2026-04-21T10:04:33.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"363186062","346018313","PCB25797.sanef.groupe","PCB25797","28:95:29:1A:F7:2F","10.255.3.212","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT8","","'+02:00","2026-04-16T17:30:17.000+02:00","myriam.SAIDI@sanef.com","Cloud Agent","f6d56973-0fab-48d0-93c8-fd48e5aa1494","2025-09-26T09:45:01.000+02:00","2026-04-21T10:03:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"335596647","","PCB24171.sanef.groupe","PCB24171","24:FB:E3:F3:E9:A5","10.101.243.184","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XH","","'+02:00","2026-03-29T09:26:47.000+02:00","SANEF\CALVEZ","Cloud Agent","1e52c36e-3bf8-49ce-b44d-5a6b5185a662","2025-06-23T14:14:48.000+02:00","2026-04-21T10:00:47.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"322390911","329455589","PCB21296.sanef.groupe","PCB21296","30:F6:EF:A3:FE:9E","10.255.3.179","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.02.03","5CG3440GJR","","'+02:00","2026-03-30T12:12:33.000+02:00","SANEF\BEGUIN","Cloud Agent","7cc24154-6b93-4278-85ef-a6cf6f83d6a6","2025-05-06T15:06:51.000+02:00","2026-04-21T09:57:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"356588752","343389639","PCB21123.sanef.groupe","PCB21123","E4:60:17:CA:3F:55","10.205.0.107,192.168.1.125","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MZ","","'+02:00","2026-04-02T13:35:02.000+02:00","SANEF\KRASSLER-ext","Cloud Agent","5b1b6934-077d-486b-9652-48162db6b643","2025-09-03T11:41:43.000+02:00","2026-04-21T09:56:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"340812113","336831741","PCB21101.sanef.groupe","PCB21101","E4:60:17:C5:06:C5","10.205.0.22,192.168.27.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764JW","","'+02:00","2026-04-20T08:46:59.000+02:00","SANEF\BAH-ext","Cloud Agent","f2abea20-ecd3-4d63-ae8e-a1c2d97dec9e","2025-07-10T15:40:47.000+02:00","2026-04-22T11:44:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"330770170","","PCB23529.sanef.groupe","PCB23529","C8:6E:08:8A:40:80","10.255.1.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4H","","'+02:00","2026-04-07T09:29:32.000+02:00","SANEF\BURGEVIN","Cloud Agent","d2e85da4-fd31-4185-a57c-364cf158403a","2025-06-04T14:59:03.000+02:00","2026-04-21T09:53:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"327528319","","PCB20605.sanef.groupe","PCB20605","58:1C:F8:E9:C0:C3","10.255.3.216","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2X","","'+02:00","2026-04-07T07:51:23.000+02:00","SANEF\VION","Cloud Agent","7ab12a00-a6ed-4fae-a33a-08615d055bdb","2025-05-27T11:03:02.000+02:00","2026-04-22T09:10:12.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321023014","328903802","PCB24033.sanef.groupe","PCB24033","EC:4C:8C:C0:25:DD","10.205.0.111,192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDN","","'+02:00","2026-04-21T09:13:02.000+02:00","SANEF\MARTEL","Cloud Agent","3a682daa-4200-43ac-b514-7bffc9d17f65","2025-04-30T14:13:49.000+02:00","2026-04-21T09:51:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"369365031","348384825","PCB25794.sanef.groupe","PCB25794","28:95:29:1B:32:62","192.168.0.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW4","","'+02:00","2026-03-30T09:28:00.000+02:00","SANEF\RAVANEL","Cloud Agent","83bd326d-5e84-4cf6-b7ab-d1b793bab672","2025-10-16T16:38:08.000+02:00","2026-04-22T11:52:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"412657480","366356872","PCB25907.sanef.groupe","PCB25907","4C:CF:7C:0A:5C:6B","10.5.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222H","","'+02:00","2026-04-15T09:54:13.000+02:00","SANEF\BRANQUART","Cloud Agent","9da31f2f-cb82-4f11-9e5e-303a24411750","2026-03-31T15:31:57.000+02:00","2026-04-21T09:50:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"326195826","","PCB18613.sanef.groupe","PCB18613","64:D6:9A:74:74:BC","10.255.1.200","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WDR","","'+02:00","2026-04-15T16:05:36.000+02:00","SANEF\ARNOULD-ext","Cloud Agent","82f3f07d-b46a-48f9-a460-fd7c3e28121e","2025-05-21T12:36:36.000+02:00","2026-04-21T09:44:08.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"325730232","","PCB20646.sanef.groupe","PCB20646","BC:0F:F3:3D:08:D8","10.100.39.108","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQ7","","'+02:00","2026-04-16T15:09:36.000+02:00","SANEF\CROUZEL","Cloud Agent","195dd971-2996-4b28-8e76-2fc8e57292b9","2025-05-19T15:12:59.000+02:00","2026-04-22T09:48:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"356861640","343513093","PCB20641.sanef.groupe","PCB20641","58:1C:F8:E9:50:FC","10.255.2.226","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DT1","","'+02:00","2026-04-16T10:16:56.000+02:00","SANEF\DESPAIGNE","Cloud Agent","47a4ba74-80df-4a3a-a546-7ab2d8ea9f9a","2025-09-04T11:44:32.000+02:00","2026-04-22T11:42:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"176569811","230099161","PCB18078.sanef.groupe","PCB18078","0A:00:27:00:00:08, C8:A3:62:C3:43:D8, 0A:00:27:00:00:0A","10.205.0.62,169.254.12.214,192.168.1.54,192.168.56.1","fe80::7375:cc0f:fdd0:20c7,2a02:8428:82fe:dc01:2445:9ba8:3f5:717f,2a02:8428:82fe:dc01:3513:40ca:4b60:ed57,fe80::378a:aa54:6d17:aa9c,fe80::d530:1123:5b93:df8c","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","32448","HP T37 Ver. 01.11.00","5CG2376HS4","","'+02:00","2026-04-21T09:01:36.000+02:00","SANEF\DELCOUR","Cloud Agent","af8c6764-2190-4c40-bda4-364774ec6a2d","2023-06-30T12:08:09.000+02:00","2026-04-22T10:57:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"128175548","191107898","PCB16366.sanef.groupe","PCB16366","50:81:40:B9:71:4A","10.205.0.95,192.168.1.189","2a01:e0a:bd1:1170::7332:c922,fe80::bc3b:2d94:c246:9744","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.04.02","5CG13363YB","","'+02:00","2026-04-21T08:56:59.000+02:00","SANEF\BOUDAILLIEZ","Cloud Agent","b7f6c1eb-7669-42ae-b978-381ebe8ad3a4","2022-06-16T18:06:11.000+02:00","2026-04-22T11:27:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Workstation,Cloud Agent","346.0" +"362249300","345658789","PCB22620.sanef.groupe","PCB22620","E4:60:17:CB:7A:B9","192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DH","","'+02:00","2026-04-17T17:28:45.000+02:00","SANEF\POURE","Cloud Agent","200d84fc-06df-4587-ac5b-6163bf37c121","2025-09-23T11:23:57.000+02:00","2026-04-22T11:40:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"326861197","","PCB18722.sanef.groupe","PCB18722","58:1C:F8:EA:58:CB","10.255.2.242,192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CST","","'+02:00","2026-04-09T16:52:59.000+02:00","SANEF\macadre","Cloud Agent","240a5390-f2a7-434b-9246-4825f64df020","2025-05-23T15:09:15.000+02:00","2026-04-21T09:28:47.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"281012466","305739823","PCB21326.sanef.groupe","PCB21326","D0:AD:08:AA:50:7F","10.220.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KY","","'+02:00","2026-04-01T10:52:02.000+02:00","SANEF\guillard","Cloud Agent","2db7210e-e3e0-4682-b408-d14e0597927a","2024-11-21T11:44:55.000+02:00","2026-04-21T09:27:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"281061306","305771150","PCB22529.sanef.groupe","PCB22529","D0:AD:08:AA:50:23","10.220.31.58","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GZ","","'+02:00","2026-04-01T10:42:55.000+02:00","SANEF\ribeiro","Cloud Agent","29556961-2bfb-4f22-89ad-7325f540146f","2024-11-21T16:13:55.000+02:00","2026-04-21T09:25:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"320292147","328631499","PCB23525.sanef.groupe","PCB23525","6C:0B:5E:EE:CC:C0","10.11.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L71","","'+02:00","2026-03-30T16:33:34.000+02:00","SANEF\pierres","Cloud Agent","50786579-443e-4602-9936-707ac5d5afbb","2025-04-28T15:39:34.000+02:00","2026-04-21T09:23:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"340421101","","PCB17785.sanef.groupe","PCB17785","28:C5:D2:9E:44:D6","10.255.4.215","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4L","","'+02:00","2026-04-15T08:52:30.000+02:00","SANEF\GAILLARDE","Cloud Agent","256983d4-51f8-46ea-92ff-e6d8abf48fd4","2025-07-09T12:05:07.000+02:00","2026-04-21T09:23:34.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"321015068","328906213","PCB23626.sanef.groupe","PCB23626","6C:0B:5E:EE:CC:7F","10.205.0.68,169.254.52.140","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L5N","","'+02:00","2026-04-16T15:58:25.000+02:00","SANEF\MAHDAVI","Cloud Agent","a3aee619-c53d-44cf-814a-c9847cb50708","2025-04-30T14:48:59.000+02:00","2026-04-22T10:49:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"391547803","357907011","PCB24252.sanef.groupe","PCB24252","C8:58:B3:34:02:C9","10.255.1.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M6G","","'+02:00","2026-04-14T10:38:35.000+02:00","SANEF\HOMONT","Cloud Agent","1c9f06de-58a3-4387-8394-cda5aadead69","2026-01-13T09:45:52.000+02:00","2026-04-21T09:19:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"280776380","305599651","PCB21322.sanef.groupe","PCB21322","D0:AD:08:AA:50:3E","10.220.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HV","","'+02:00","2026-04-13T10:06:50.000+02:00","SANEF\dallemagne","Cloud Agent","1943bb5f-3107-47d9-b85f-51b502122b7f","2024-11-20T12:10:39.000+02:00","2026-04-21T09:19:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"397469805","360368047","PCB24221.sanef.groupe","PCB24221","70:15:FB:7E:20:75","10.255.2.160","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ5","","'+02:00","2026-04-15T07:43:13.000+02:00","SANEF\LEGUILLARD","Cloud Agent","a857dade-56e5-46e5-8f44-20226625e58c","2026-02-04T17:20:54.000+02:00","2026-04-21T09:12:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"333956547","333980899","PCB18719.sanef.groupe","PCB18719","BC:0F:F3:3D:68:62","10.4.31.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CS5","","'+02:00","2026-04-15T08:58:40.000+02:00","SANEF\gruselle","Cloud Agent","dc271644-a3a9-43f0-b2a5-36f1b39ef3be","2025-06-17T09:42:42.000+02:00","2026-04-22T11:39:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"360026634","","PCB24043.sanef.groupe","PCB24043","EC:4C:8C:C5:DA:AF","10.255.1.184","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDB","","'+02:00","2026-04-03T10:03:14.000+02:00","SANEF\CHARPENTIER","Cloud Agent","0b74a0cb-7adc-40d9-a75a-b0cbc4605003","2025-09-16T13:26:26.000+02:00","2026-04-22T09:18:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"353316804","341961267","PCB20696.sanef.groupe","PCB20696","58:1C:F8:EA:00:CE","192.168.1.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D32","","'+02:00","2026-03-30T14:28:36.000+02:00","SANEF\ANCEY-ext","Cloud Agent","c054d6df-db7a-4d7c-8eb2-02985d53aca2","2025-08-21T14:03:12.000+02:00","2026-04-21T09:05:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"334693868","","PCB24121.sanef.groupe","PCB24121","48:EA:62:C8:93:2C","10.103.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6B","","'+02:00","2026-04-17T07:08:02.000+02:00","SANEF\grandjonc","Cloud Agent","fadd49cd-d59c-4cc5-8bed-b0e4e7580f1c","2025-06-19T11:56:20.000+02:00","2026-04-22T11:33:08.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"334403560","334138201","PCB22923.sanef.groupe","PCB22923","D0:AD:08:A3:7B:67","10.100.39.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWV","8CC3502YWV","'+02:00","2026-04-20T10:48:08.000+02:00","SANEF\DANEL","Cloud Agent","def7a608-ce5c-4513-9061-701c4603535e","2025-06-18T12:30:50.000+02:00","2026-04-21T08:55:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"325658504","","PCB20722.sanef.groupe","PCB20722","58:1C:F8:EB:3F:F7","192.168.0.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSV","","'+02:00","2026-04-21T08:32:05.000+02:00","SANEF\PANISSIER","Cloud Agent","1b0d1a6a-9ad4-40c7-badd-a7c58c4760e4","2025-05-19T09:59:01.000+02:00","2026-04-21T08:54:37.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"281025877","305755501","PCB21334.sanef.groupe","PCB21334","D0:AD:08:AA:50:AB","10.255.3.174,10.220.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MC","","'+02:00","2026-03-31T11:04:59.000+02:00","SANEF\roy","Cloud Agent","dcf5d73e-a67c-4ca4-b5f3-5d4567d772a6","2024-11-21T13:44:57.000+02:00","2026-04-21T08:50:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"368789681","348252901","PCB18755.sanef.groupe","PCB18755","BC:0F:F3:3D:18:79","10.220.31.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DS3","","'+02:00","2026-03-28T13:36:28.000+02:00","david.bertoux@sapn.fr","Cloud Agent","99813c3b-99ff-4c88-be46-5039e7dead4e","2025-10-15T14:49:14.000+02:00","2026-04-21T08:49:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"331463433","","PCB21158.sanef.groupe","PCB21158","F0:20:FF:9A:B6:9A","192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVQ","","'+02:00","2026-04-14T18:01:27.000+02:00","SANEF\CUVELLIERS","Cloud Agent","b9e71b23-d28e-435a-9196-9a358a77fc9a","2025-06-06T16:18:48.000+02:00","2026-04-21T08:46:29.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"377213567","351951265","PCB16037.sanef.groupe","PCB16037","48:9E:BD:4B:91:02","10.200.31.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129283B","8CC129283B","'+02:00","2026-03-31T08:26:08.000+02:00","SANEF\botte","Cloud Agent","28113438-0bfa-4865-8b92-7991fa4ba8a1","2025-11-17T17:00:10.000+02:00","2026-04-21T08:42:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"366115477","347199363","PCB24147.sanef.groupe","PCB24147","24:FB:E3:5A:26:EC","10.101.243.226","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook X G1i Notebook","1","2200","Intel(R) Core(TM) Ultra 7 258V","32240","HP X90 Ver. 01.01.07","5CG511274Z","","'+02:00","2026-04-15T22:41:54.000+02:00","SANEF\fanguet","Cloud Agent","b41ed93c-7470-4eee-b495-5dbe1d6eeb02","2025-10-07T13:07:49.000+02:00","2026-04-21T08:41:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"359125417","","PCB24186.sanef.groupe","PCB24186","10:B6:76:97:D4:D3","10.99.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLC","","'+02:00","2026-04-19T10:02:46.000+02:00","SANEF\collard","Cloud Agent","a78b9841-f38a-4798-9d8f-e292ef1cdb69","2025-09-12T10:00:26.000+02:00","2026-04-21T08:38:03.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"349251465","339904469","PCB22668.sanef.groupe","PCB22668","E4:60:17:CB:7B:F4","10.220.31.55,10.255.4.183","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764D2","","'+02:00","2026-04-14T12:58:21.000+02:00","Elisabeth.Rocca@sapn.fr","Cloud Agent","c81a4cf1-d569-4d65-858d-23a14fbdc805","2025-08-05T16:33:11.000+02:00","2026-04-21T08:35:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"331101993","","PCB18714.sanef.groupe","PCB18714","BC:0F:F3:3D:48:08","10.2.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224D38","","'+02:00","2026-04-07T14:37:54.000+02:00","SANEF\flamand","Cloud Agent","043b1b57-0fe6-4879-8a7c-3d3a0298ab06","2025-06-05T10:57:41.000+02:00","2026-04-21T08:32:27.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"305325421","322689788","PCB18481.sanef.groupe","PCB18481","D0:AD:08:AA:50:8D","10.255.2.173,10.107.31.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LD","","'+02:00","2026-04-14T08:14:40.000+02:00","SANEF\balavoine","Cloud Agent","dd3c8db3-c74d-46d2-ab21-985d478cdef5","2025-03-04T19:29:15.000+02:00","2026-04-21T08:30:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"304884109","322660837","PCB18474.sanef.groupe","PCB18474","D0:AD:08:AA:4F:BD","10.107.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764CP","","'+02:00","2026-04-16T15:23:50.000+02:00","SANEF\arnouldi","Cloud Agent","939e5231-e749-48a6-9649-d0d0b18eb28d","2025-03-04T14:11:20.000+02:00","2026-04-21T08:30:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","241.0" +"332661497","","PCB21018.sanef.groupe","PCB21018","E0:C2:64:59:C9:D2","10.205.0.146,192.168.1.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD336NWFC","","'+02:00","2026-04-02T09:01:25.000+02:00","SANEF\GRANGE-ext","Cloud Agent","28e2d9af-47fc-409a-b250-fb35c64e7cb3","2025-06-11T16:03:18.000+02:00","2026-04-21T08:28:00.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331425423","","PCB23519.sanef.groupe","PCB23519","C8:6E:08:88:E2:8A","10.255.3.160","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4G","","'+02:00","2026-04-08T10:35:23.000+02:00","SANEF\GOUMENT","Cloud Agent","08c8da63-ebaf-44f5-8cf9-fdad4d741bed","2025-06-06T12:47:32.000+02:00","2026-04-22T09:02:32.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"281432893","","PCB21318.sanef.groupe","PCB21318","D0:AD:08:AA:50:70","10.255.1.147,10.220.31.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KG","","'+02:00","2026-04-01T10:45:19.000+02:00","SANEF\breants","Cloud Agent","3e1d8739-7128-47c0-8317-1a14867a58d7","2024-11-22T11:27:01.000+02:00","2026-04-21T08:20:22.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"285481462","309654802","SVP22866.sanef-int.adds","SVP22866","D0:AD:08:A3:7D:BC","10.92.5.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNM","","'+02:00","2026-04-20T11:45:50.000+02:00","Superviseur","Cloud Agent","5cf663db-1bae-4be8-853b-24174aa98420","2024-12-10T13:37:22.000+02:00","2026-04-21T08:10:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"331442489","","PCB23534.sanef.groupe","PCB23534","C8:6E:08:8A:45:BC","10.255.2.155","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4N","","'+02:00","2026-04-01T11:10:43.000+02:00","SANEF\DOUSSET","Cloud Agent","d159d7ec-f39b-4794-9606-f721ca3bf9cf","2025-06-06T14:51:56.000+02:00","2026-04-21T08:06:36.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331429903","","PCB23527.sanef.groupe","PCB23527","C8:6E:08:8A:58:31","10.205.0.40,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L84","","'+02:00","2026-04-17T08:01:23.000+02:00","SANEF\rigollot","Cloud Agent","02346268-085f-4b5d-aada-541e3b2c135f","2025-06-06T14:01:06.000+02:00","2026-04-21T08:06:28.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"333980009","333987096","PCB24126.sanef.groupe","PCB24126","48:EA:62:C8:83:75","192.168.1.24,10.107.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6K","","'+02:00","2026-04-14T12:01:39.000+02:00","SANEF\LEFEBVREX","Cloud Agent","15ed10d2-d81e-4d2d-a077-0375369e1a3b","2025-06-17T10:37:48.000+02:00","2026-04-21T08:04:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"360424581","","PCB18079.sanef.groupe","PCB18079","64:D6:9A:27:BC:A8","192.168.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HR6","","'+02:00","2026-03-30T09:07:41.000+02:00","SANEF\GUIZELIN","Cloud Agent","ae6a7da9-fe64-48b8-8624-45aa92f10015","2025-09-17T10:11:03.000+02:00","2026-04-21T07:48:26.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"318827679","328215742","PCB22879.sanef.groupe","PCB22879","D0:AD:08:A7:28:61","10.152.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM1","8CC3502YM1","'+02:00","2026-04-21T04:47:16.000+02:00","SANEF\CABAILLE","Cloud Agent","e34f5ab9-5f7a-486a-99f8-422e3c7adcc3","2025-04-23T17:24:27.000+02:00","2026-04-21T07:45:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"305248036","322677728","PCB22661.sanef.groupe","PCB22661","D0:AD:08:AA:50:28","10.107.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H4","","'+02:00","2026-04-02T08:32:54.000+02:00","SANEF\staquet","Cloud Agent","74f7345c-1075-4c34-bc55-389f8db1a177","2025-03-04T17:05:03.000+02:00","2026-04-21T07:44:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"305238828","322677328","PCB18492.sanef.groupe","PCB18492","D0:AD:08:AA:50:13","10.107.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GG","","'+02:00","2026-04-01T17:51:44.000+02:00","SANEF\damiens","Cloud Agent","5a6a9459-e9e4-4bae-b973-50dd2d636308","2025-03-04T17:01:25.000+02:00","2026-04-21T06:55:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"335482466","334619119","PCB24176.sanef.groupe","PCB24176","24:FB:E3:F3:F9:07","10.3.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XL","","'+02:00","2026-03-30T05:32:58.000+02:00","SANEF\kuchara","Cloud Agent","3c7027ae-347f-48d6-9e4b-37ed7a06cd7c","2025-06-23T11:45:16.000+02:00","2026-04-22T12:02:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"340643848","","SVP22704.sanef-int.adds","SVP22704","D0:AD:08:A4:73:C0","10.107.2.29,169.254.251.52","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764CR","","'+02:00","2026-04-17T17:26:24.000+02:00","Superviseur","Cloud Agent","90144a3e-a33d-41c9-8bad-e58485966e11","2025-07-10T06:37:19.000+02:00","2026-04-21T06:14:01.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"364815609","346640246","PCB25812.sanef.groupe","PCB25812","F8:ED:FC:AB:12:03","10.5.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CRM","","'+02:00","2026-04-20T05:50:01.000+02:00","SANEF\tartas","Cloud Agent","78c1995e-2211-4134-9afa-c60bbfe8c750","2025-10-01T21:53:35.000+02:00","2026-04-21T05:49:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"245518417","286506473","MTO20923.sanef.groupe","MTO20923","BC:0F:F3:87:6F:AE","10.100.39.73","fe80::5377:f80e:57b:3ca4","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.4890) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3290LLN","","'+02:00","2025-11-07T12:23:16.000+02:00","SANEF\meteonewsW11","Cloud Agent","b785abf0-cf99-483c-8325-1912001ce6fc","2024-06-21T12:36:17.000+02:00","2026-04-21T04:18:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"321553872","329076842","PCB23617.sanef.groupe","PCB23617","6C:0B:5E:EC:4E:F9","10.105.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L86","","'+02:00","2026-04-08T10:21:02.000+02:00","SANEF\DUDA","Cloud Agent","8f5bd9e9-8a34-42c0-87b6-3f7abcc5391a","2025-05-02T11:22:28.000+02:00","2026-04-21T04:08:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","256.0" +"331108947","","PCB17651.sanef.groupe","PCB17651","D0:AD:08:E4:D1:BB","10.189.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVJ","","'+02:00","2026-04-17T14:49:37.000+02:00","SANEF\FINET","Cloud Agent","1274818f-1e2a-4100-9bfc-fd14291b3f67","2025-06-05T11:21:37.000+02:00","2026-04-21T03:10:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"358859662","344320526","PCB24210.sanef.groupe","PCB24210","10:B6:76:95:8B:AE","10.89.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZH","","'+02:00","2026-04-14T07:54:57.000+02:00","SANEF\SILLY","Cloud Agent","78845044-b3ed-40fc-ac61-67e60850ddca","2025-09-11T13:53:14.000+02:00","2026-04-21T02:45:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","252.0" +"412885399","366436475","GTC18237","GTC18237","5C:60:BA:59:EC:EA","10.155.210.20","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y8H","8CC2250Y8H","'+02:00","2026-04-01T11:22:43.000+02:00","gtc-client","Cloud Agent","35551c8b-b8d2-4f86-80a1-d02254bf3ad4","2026-04-01T11:26:01.000+02:00","2026-04-21T02:28:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","341.0" +"335702402","","PCB24178.sanef.groupe","PCB24178","24:FB:E3:F3:BA:7C","10.89.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XT","","'+02:00","2026-04-20T19:20:35.000+02:00","SANEF\STORME","Cloud Agent","0a546a68-06e5-463f-bd96-bb2e2c521703","2025-06-23T15:42:54.000+02:00","2026-04-21T01:32:34.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"333993604","333994375","PCB24114.sanef.groupe","PCB24114","48:EA:62:C8:63:90","10.104.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6M","","'+02:00","2026-03-29T11:16:25.000+02:00","SANEF\hue","Cloud Agent","7a2a03c0-d560-4312-8fea-cef93c45f2c9","2025-06-17T11:45:58.000+02:00","2026-04-21T00:13:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"377408736","352036362","PCB24349.sanef.groupe","PCB24349","10:B6:76:95:8B:AF","10.100.39.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7171) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZJ","","'+02:00","2026-04-07T08:19:24.000+02:00","SANEF\VANOVERBEKE","Cloud Agent","a0d6b902-3542-41bc-9afd-76bc50edb13b","2025-11-18T11:43:42.000+02:00","2026-04-22T11:19:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","351.0" +"317577351","327675672","PCB23761.sanef.groupe","PCB23761","C8:6E:08:47:7E:1C","10.108.31.10,192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H33","","'+02:00","2026-04-17T12:27:48.000+02:00","SANEF\DUBOISG","Cloud Agent","1f110ed4-b69d-4727-89f4-14cc55de7785","2025-04-18T11:04:35.000+02:00","2026-04-20T23:21:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"313809924","326118044","SVP18480.sanef-int.adds","SVP18480","D0:AD:08:A2:AE:CA","10.107.2.29,10.192.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764KF","","'+02:00","2025-12-20T21:46:18.000+02:00","Superviseur","Cloud Agent","6b2e3061-2cee-4156-bf6b-5328a7c9aa39","2025-04-04T18:36:23.000+02:00","2026-04-20T21:50:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"413992083","366909760","PCB22463.sanef.groupe","PCB22463","F0:20:FF:9A:DF:26","10.205.0.24,172.20.10.5","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVB","","'+02:00","2026-04-16T07:45:26.000+02:00","SANEF\CHAUDOT","Cloud Agent","401b693c-1a3d-438b-b819-cd9cee620458","2026-04-07T11:36:55.000+02:00","2026-04-20T21:31:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"320506426","328733810","PCB21156.sanef.groupe","PCB21156","F0:20:FF:9A:FA:CE","10.255.2.195,10.205.0.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.03.00","5CG3501HVD","","'+02:00","2026-04-09T16:40:27.000+02:00","SANEF\WEDERICH","Cloud Agent","a0c1f1f4-6967-4648-b0b4-6f0d886b6024","2025-04-29T15:34:44.000+02:00","2026-04-20T21:17:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","253.0" +"335484683","334621071","PCB20614.sanef.groupe","PCB20614","BC:0F:F3:3D:48:47","10.205.0.7,10.100.38.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRP","","'+02:00","2026-04-01T11:08:44.000+02:00","SANEF\jouanne","Cloud Agent","87774a7f-06eb-445b-8ead-a7fe5b71adb8","2025-06-23T12:03:22.000+02:00","2026-04-20T21:15:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","63.0" +"327564746","","PCB23682.sanef.groupe","PCB23682","C8:6E:08:88:FD:B0","10.205.0.88,192.168.1.175","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9Y","","'+02:00","2026-03-30T17:22:30.000+02:00","aurelia.barbier@sanef.com","Cloud Agent","697f9bfa-954a-4982-b17f-c55a8876b61b","2025-05-27T14:09:22.000+02:00","2026-04-20T20:47:34.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"386721821","356325082","PCB16056.sanef.groupe","PCB16056","48:9E:BD:4B:90:21","10.2.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.06.02","8CC129284D","","'+02:00","2026-03-30T10:09:39.000+02:00","SANEF\moretti","Cloud Agent","9e106c56-f08f-40cd-95dd-19b8b8e1accd","2025-12-29T15:58:57.000+02:00","2026-04-20T20:16:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"324025716","","PCB20740.sanef.groupe","PCB20740","58:1C:F8:EB:79:9F","10.255.2.224,192.168.1.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DQQ","","'+02:00","2026-04-17T11:19:21.000+02:00","SANEF\bourdon","Cloud Agent","f8969a82-798d-4ff0-aefb-6e83309c5e45","2025-05-12T12:00:56.000+02:00","2026-04-20T19:50:56.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"344008066","338216982","PCB23572.sanef.groupe","PCB23572","C8:6E:08:88:F0:31","192.168.1.32,10.255.4.241","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L50","","'+02:00","2026-04-08T20:23:03.000+02:00","SANEF\isaacf","Cloud Agent","c364b630-dbea-4fe2-8c53-00e8f62dcafc","2025-07-22T16:11:29.000+02:00","2026-04-20T19:40:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"350501265","340446201","PCB25868.sanef.groupe","PCB25868","F8:ED:FC:AB:F1:DF","10.205.0.125,10.101.243.159","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CW6","","'+02:00","2026-04-18T09:18:05.000+02:00","SANEF\BOUET","Cloud Agent","5c67bb7b-931a-482d-b915-3042edb10c73","2025-08-11T09:33:38.000+02:00","2026-04-20T19:24:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"173355718","227827566","vvbooosea1.sanef-rec.fr","","00:50:56:9c:b3:11","10.45.6.69","fe80::250:56ff:fe9c:b311","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c5 9e d6 a0 56 60-69 20 4f 09 f0 dd 32 86","No Asset Tag","'+02:00","2026-03-12T11:45:33.000+02:00","cybreconcile","Cloud Agent","3a4a7f04-ade1-4811-b513-86fa27408488","2023-06-07T10:37:31.000+02:00","2026-04-20T19:19:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Recette,Flux Libre,flux_libre","141.0" +"417452432","368257913","PCB17088.sanef.groupe","PCB17088","E0:70:EA:A8:75:89","10.252.4.6","fe80::5886:ea76:52b0:1ac4","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","3096","Intel(R) Core(TM) i5-10500 CPU @ 3.10GHz","16159","HP S21 Ver. 02.25.00","8CC14326DZ","8CC14326DZ","'+02:00","2026-04-20T17:45:46.000+02:00","","Cloud Agent","e7a59b37-68af-42f5-8cd2-9a0d05882c3c","2026-04-20T17:38:09.000+02:00","2026-04-20T18:28:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"354905032","342612320","PCB18040.sanef.groupe","PCB18040","64:D6:9A:1D:39:31","10.205.0.116,192.168.3.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSL","","'+02:00","2026-04-09T10:03:30.000+02:00","SANEF\COSSE-ext","Cloud Agent","906f77ce-5405-4a42-9427-9115de389fa4","2025-08-27T14:57:35.000+02:00","2026-04-20T18:25:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"322022919","329329469","PCB23673.sanef.groupe","PCB23673","6C:0B:5E:EE:CC:9B","10.205.0.59,10.200.31.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L5F","","'+02:00","2026-04-16T10:32:00.000+02:00","SANEF\cave","Cloud Agent","2e9c10bb-638e-44a9-a2cf-fc3ae4ab96ac","2025-05-05T13:20:39.000+02:00","2026-04-20T18:02:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"413141831","366551698","PCB24096.sanef.groupe","PCB24096","10:B6:76:7D:40:81","10.252.4.34,10.100.39.121","fe80::6742:6840:3e6e:a057","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZF","","'+02:00","2026-04-20T15:53:26.000+02:00","","Cloud Agent","0b586252-bda2-4f5c-addd-ce9fe43dc255","2026-04-02T15:17:08.000+02:00","2026-04-20T16:44:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"355232539","342766926","PCB17808.sanef.groupe","PCB17808","28:C5:D2:9E:44:EA","10.255.4.9,192.168.1.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y4V","","'+02:00","2026-04-10T09:15:57.000+02:00","SANEF\OCTAU","Cloud Agent","9f9c59e8-659a-4265-b8e9-31fc4aeb07a4","2025-08-28T16:39:12.000+02:00","2026-04-20T16:35:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"318436041","328050559","PCB17807.sanef.groupe","PCB17807","28:C5:D2:9E:3E:B9","192.168.1.47,10.205.0.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4F","","'+02:00","2026-04-20T08:50:57.000+02:00","SANEF\PATTOU","Cloud Agent","86c5d61e-eb95-4359-8ac0-8d3943ef8079","2025-04-22T15:57:02.000+02:00","2026-04-20T16:02:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"407449347","364082583","PCB21094.sanef.groupe","PCB21094","D0:AD:08:AA:50:9B","10.107.31.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764LV","","'+02:00","2026-04-01T12:58:04.000+02:00","SANEF\SAID","Cloud Agent","d72db241-88d4-4532-a02b-bf996a5fbd30","2026-03-10T18:31:24.000+02:00","2026-04-20T15:12:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"321553605","329073257","PCB22352.sanef.groupe","PCB22352","D0:AD:08:A3:E7:1B","10.206.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXW","8CC3502YXW","'+02:00","2026-04-07T13:03:36.000+02:00","SANEF\MENNEREUIL","Cloud Agent","42c9135e-8ae2-436b-83f9-6135406b02d7","2025-05-02T10:25:19.000+02:00","2026-04-20T14:28:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"317706215","327745805","PCB23711.sanef.groupe","PCB23711","C8:6E:08:88:FD:60","10.108.31.9,10.255.4.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L87","","'+02:00","2026-04-03T08:19:32.000+02:00","SANEF\THEVENIN","Cloud Agent","7696a19c-d88d-4bf6-bbfb-bf025f28f461","2025-04-18T13:20:48.000+02:00","2026-04-20T14:07:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"281061310","305771553","PCB22531.sanef.groupe","PCB22531","D0:AD:08:AA:50:2A","10.202.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H6","","'+02:00","2026-03-31T14:12:44.000+02:00","SANEF\savaryf","Cloud Agent","f57dc1d9-6a55-42e6-9e49-0cee80307fee","2024-11-21T16:14:55.000+02:00","2026-04-20T13:44:20.000+02:00","64-Bit","2","SCA,PM,GAV","Workstation,Cloud Agent","0.0" +"322034316","329331991","PCB23622.sanef.groupe","PCB23622","C8:6E:08:8A:58:8B","10.205.0.73,192.168.1.81","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9J","","'+02:00","2026-03-31T08:13:13.000+02:00","SANEF\LASGI","Cloud Agent","713d3ef1-a242-40a6-9450-b95dc00a5c7b","2025-05-05T14:02:30.000+02:00","2026-04-20T13:35:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"320418494","328702039","PCB23627.sanef.groupe","PCB23627","6C:0B:5E:EE:A3:99","10.205.0.82,10.100.39.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9M","","'+02:00","2026-04-03T09:31:03.000+02:00","SANEF\ALVES","Cloud Agent","2f42765e-731d-4e52-984b-59bc143d08e0","2025-04-29T09:59:53.000+02:00","2026-04-20T13:31:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"354632280","342475347","PCB17775.sanef.groupe","PCB17775","28:C5:D2:9E:44:AE","10.255.4.244","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4N","","'+02:00","2026-04-16T17:46:00.000+02:00","SANEF\DELEAU","Cloud Agent","cb005130-9a04-4db5-aac8-271f815b4ecf","2025-08-26T14:03:17.000+02:00","2026-04-20T13:22:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"350872267","340945285","SVP22624.sanef-int.adds","SVP22624","D0:AD:08:A2:AE:59","10.82.15.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764FZ","","'+02:00","2026-03-26T09:13:50.000+02:00","Superviseur","Cloud Agent","7a62fee1-d9f9-4420-884a-9da2ec1eb7b4","2025-08-12T16:08:02.000+02:00","2026-04-20T13:11:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"322404057","329466185","PCB21292.sanef.groupe","PCB21292","30:F6:EF:A4:9A:70","10.4.31.6,192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJG","","'+02:00","2026-04-15T08:15:06.000+02:00","SANEF\DEAZEVEDO","Cloud Agent","e5d60633-d42c-49ba-b8cc-398d90fd579b","2025-05-06T15:46:56.000+02:00","2026-04-20T13:09:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"410108159","365186192","vriadawdc3","VRIADAWDC3","00:50:56:9C:02:BA","10.45.0.133","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c a0 ac d1 5c 6f d1-eb c5 6b ac 17 ae 21 50","NoAssetTag","'+02:00","2026-02-19T17:12:15.000+02:00","Administrateur","Cloud Agent","363e9fc8-1c8d-4149-bdfd-5b7d5ce00923","2026-03-20T18:22:05.000+02:00","2026-04-20T12:57:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","APP_SAM,Cloud Agent,OS-WIN-SRV DYN,Recette","256.0" +"374942542","350845052","PCV22837.sanef-int.adds","PCV22837","D0:AD:08:A7:27:D6","10.5.7.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YSZ","","'+02:00","2026-04-07T14:41:46.000+02:00","Operateur","Cloud Agent","1b1b7f76-60d8-4439-994b-73523c3be87d","2025-11-07T13:19:07.000+02:00","2026-04-20T12:36:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"395087203","359301969","PCB18609.sanef.groupe","PCB18609","64:D6:9A:74:76:2E","10.205.0.73,192.168.0.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WD1","","'+02:00","2026-04-16T08:01:43.000+02:00","SANEF\benne","Cloud Agent","aab0e5c8-5772-4b23-bb43-f0a3c0c85515","2026-01-26T14:47:32.000+02:00","2026-04-20T12:34:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"327324433","","PCB21157.sanef.groupe","PCB21157","F0:20:FF:9A:C5:AE","10.205.0.169,192.168.1.55","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.03.00","5CG3501HWD","","'+02:00","2026-03-31T09:08:07.000+02:00","SANEF\HOUEL","Cloud Agent","6aa16aa8-eec1-44f7-9c9f-c805e9c2e956","2025-05-26T12:55:09.000+02:00","2026-04-20T12:07:21.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"412426241","366151286","PCB21348.sanef.groupe","PCB21348","D0:AD:08:AA:4F:D0","10.220.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764D9","","'+02:00","2026-04-10T07:31:46.000+02:00","SANEF\macon","Cloud Agent","e7875561-5f1c-41e2-aff7-689bd4cf999d","2026-03-30T16:50:32.000+02:00","2026-04-20T12:02:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"321551755","329086575","PCB23661.sanef.groupe","PCB23661","6C:0B:5E:EE:DC:47","10.205.0.147,10.106.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6J","","'+02:00","2026-04-03T08:55:47.000+02:00","SANEF\KYNDT","Cloud Agent","36219bbf-da07-4e0c-b9a9-592b71ea7e41","2025-05-02T13:03:33.000+02:00","2026-04-20T11:58:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"363309552","346054205","PCB18024.sanef.groupe","PCB18024","38:CA:84:52:09:3F","10.200.31.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRL","","'+02:00","2026-03-30T09:21:59.000+02:00","SANEF\boulard","Cloud Agent","3030592b-e4d1-46dd-8f35-9431d29aa8d0","2025-09-26T15:52:52.000+02:00","2026-04-20T11:57:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"403864752","362591796","PCB22701.sanef.groupe","PCB22701","E4:60:17:CB:E6:66","10.205.0.172,192.168.0.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FH","","'+02:00","2026-04-03T09:21:14.000+02:00","SANEF\mlanhoro-ext","Cloud Agent","95615a96-d19d-4167-8192-19b26788b471","2026-02-24T16:47:38.000+02:00","2026-04-20T11:55:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"353110348","341842654","PCB18071.sanef.groupe","PCB18071","64:D6:9A:21:82:7A","10.205.0.235,192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HTY","","'+02:00","2026-04-04T16:38:07.000+02:00","SANEF\CHUOP","Cloud Agent","2cff3663-b97e-4076-8087-8ad19b9da098","2025-08-20T16:06:41.000+02:00","2026-04-20T11:52:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","146.0" +"402451872","362027512","PCB24235.sanef.groupe","PCB24235","24:FB:E3:CD:06:2E","10.101.243.213","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M5W","","'+02:00","2026-04-20T09:08:16.000+02:00","SANEF\piednoir-ext","Cloud Agent","56646be3-c035-4cc5-85d7-e64f4c99b9a3","2026-02-19T19:00:16.000+02:00","2026-04-20T11:45:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"323173882","329806899","PCB23584.sanef.groupe","PCB23584","C8:6E:08:8A:51:10","10.255.2.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB0","","'+02:00","2026-03-12T09:36:59.000+02:00","SANEF\clavons","Cloud Agent","ff909a1b-94a7-46d5-8be3-74094026c727","2025-05-09T12:05:17.000+02:00","2026-04-20T11:33:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","138.0" +"384581014","355076899","PCB22702.sanef.groupe","PCB22702","D0:AD:08:AA:50:78","10.101.243.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764KQ","","'+02:00","2026-04-10T09:30:27.000+02:00","SANEF\KOUBAA-ext","Cloud Agent","d9dda073-ab25-4d2a-8757-6351d63ca450","2025-12-17T17:51:51.000+02:00","2026-04-20T11:29:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"335441245","","PCB24119.sanef.groupe","PCB24119","C8:58:B3:0B:5B:80","10.205.0.122,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6C","","'+02:00","2026-04-03T10:46:15.000+02:00","SANEF\duve","Cloud Agent","3095389c-d903-4ee7-a729-bc6ae0855c26","2025-06-23T09:45:36.000+02:00","2026-04-20T10:46:31.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"324697414","330336496","PCB17779.sanef.groupe","PCB17779","28:C5:D2:9F:C4:14","192.168.1.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y48","","'+02:00","2026-04-20T09:59:08.000+02:00","SANEF\jourdainf","Cloud Agent","9a0f15e3-11e8-4d5f-bedb-9af849c6c513","2025-05-14T12:14:07.000+02:00","2026-04-20T10:36:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","59.0" +"411687552","365758915","PCB21106.sanef.groupe","PCB21106","E4:60:17:CA:41:03","10.255.4.219","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764LQ","","'+02:00","2026-04-09T19:48:17.000+02:00","SANEF\lestrat-ext","Cloud Agent","ecbe52e0-2977-467c-b0ba-555d7bda60b6","2026-03-26T18:46:36.000+02:00","2026-04-20T10:30:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"397104243","360208361","PCB21135.sanef.groupe","PCB21135","28:C5:D2:9F:C3:CE","10.255.2.218","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y4P","","'+02:00","2026-04-20T09:00:51.000+02:00","SANEF\martinkovic","Cloud Agent","37935e35-1b90-4783-8bf8-3de12285d811","2026-02-03T11:28:27.000+02:00","2026-04-20T10:24:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"359756317","","PCB24326.sanef.groupe","PCB24326","98:BD:80:9B:91:41","10.205.0.105,192.168.1.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD433C6YY","","'+02:00","2026-04-20T09:19:59.000+02:00","SANEF\MAGNE","Cloud Agent","0024c223-9851-441f-aede-9dd0fbf2a7a5","2025-09-15T12:28:19.000+02:00","2026-04-20T09:54:32.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"417358618","368159277","PCB17061.sanef.groupe","PCB17061","20-1E-88-69-E8-68, 20-1E-88-69-E8-67, 22-1E-88-69-E8-67","192.168.1.118","2a01:cb14:1dd:9800:285a:56e4:556b:6b26","Windows / Client","Microsoft Windows 10 Pro (22H2 Build 19045)","22H2","Computers / Unidentified","Computers","","","","","","5CD133FPV1","","'+02:00","","","Cloud Agent","c7f27895-c534-4931-96be-c6f54d855c31","2026-04-20T09:48:11.000+02:00","2026-04-20T09:48:10.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"327522961","","PCB23514.sanef.groupe","PCB23514","C8:6E:08:8A:45:58","10.205.0.128,169.254.183.199","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBH","","'+02:00","2026-03-30T13:28:51.000+02:00","SANEF\fevre","Cloud Agent","76825010-dda6-4b39-a4c3-a1cf7d2cbd01","2025-05-27T10:49:06.000+02:00","2026-04-20T09:24:29.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321036659","328906966","PCB23694.sanef.groupe","PCB23694","C8:6E:08:88:E2:76","10.205.0.22,192.168.0.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6Q","","'+02:00","2026-03-31T07:15:48.000+02:00","SANEF\COQUELLE","Cloud Agent","a6efcdac-3a64-4f51-8f3a-f30f636f1f29","2025-04-30T14:57:21.000+02:00","2026-04-20T09:18:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"379875748","353009586","PCV22875.sanef-int.adds","PCV22875","D0:AD:08:A3:E7:99","10.137.3.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YMG","","'+02:00","2025-11-27T18:32:05.000+02:00","Operateur","Cloud Agent","dde18088-bfbf-4c54-b3f3-4a9bfb54e958","2025-11-27T19:01:11.000+02:00","2026-04-20T09:12:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"323987697","","PCB23749.sanef.groupe","PCB23749","6C:0B:5E:EE:93:6E","10.4.31.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H59","","'+02:00","2026-03-30T17:17:31.000+02:00","SANEF\vernant","Cloud Agent","ccf90727-a301-420b-af2b-29f13300b159","2025-05-12T10:00:15.000+02:00","2026-04-20T08:28:41.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"359721618","","PCB24223.sanef.groupe","PCB24223","70:15:FB:7E:21:38","10.106.31.10,10.255.2.175","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYC","","'+02:00","2026-04-14T08:34:22.000+02:00","SANEF\HERMANT","Cloud Agent","e6a6d3ca-829b-48ac-9ddb-c984744c034b","2025-09-15T10:18:08.000+02:00","2026-04-20T08:26:47.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"330698020","","PCB21020.sanef.groupe","PCB21020","64:4E:D7:2E:21:EE","10.4.31.71","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD336NWDZ","","'+02:00","2026-04-01T08:09:04.000+02:00","SANEF\bernards","Cloud Agent","3c8f11a4-3282-45fb-a11d-3cdaf77e1eb7","2025-06-04T10:01:27.000+02:00","2026-04-20T08:12:46.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"325944997","","PCB20731.sanef.groupe","PCB20731","58:1C:F8:EB:78:0F","10.200.30.15,10.255.1.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224D47","","'+02:00","2026-03-31T17:30:41.000+02:00","SANEF\glory","Cloud Agent","b4b7cc6c-db7c-494e-bffb-2f2b71488557","2025-05-20T12:04:37.000+02:00","2026-04-20T08:05:14.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"334960502","","PCB24082.sanef.groupe","PCB24082","F6:09:1D:72:F4:E5","10.205.0.14,192.168.0.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5062RC4","","'+02:00","2026-04-16T17:45:18.000+02:00","SANEF\DELAHAY","Cloud Agent","7a485add-a965-4c1b-b942-3879fdae39d4","2025-06-20T12:30:14.000+02:00","2026-04-20T08:03:34.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"396119002","359768185","PCB25917.sanef.groupe","PCB25917","C4:0F:08:AC:B5:CA","192.168.1.88","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222N","","'+02:00","2026-04-17T08:21:33.000+02:00","SANEF\DUFOURA","Cloud Agent","fc7d9239-9064-4b63-97fa-8ed2704fd30c","2026-01-30T15:08:35.000+02:00","2026-04-20T08:01:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"417328565","368144064","PCB22818.sanef.groupe","PCB22818","D0-AD-08-A3-E6-E2","10.105.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","8CC3502YQ6","","'+02:00","","","Cloud Agent","1fa17fe5-0ba4-4b3f-a44f-898ab6d9d7c1","2026-04-20T07:04:42.000+02:00","2026-04-20T07:04:41.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"281047365","305771551","PCB21336.sanef.groupe","PCB21336","D0:AD:08:AA:50:77","10.202.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KP","","'+02:00","2026-04-02T08:23:33.000+02:00","SANEF\baillemont","Cloud Agent","3f7e950a-5ce6-432a-b614-5faec96f85e9","2024-11-21T16:15:04.000+02:00","2026-04-20T06:44:20.000+02:00","64-Bit","2","SCA,PM,GAV","Workstation,Cloud Agent","0.0" +"349485901","340009810","PCB25806.sanef.groupe","PCB25806","F8:ED:FC:AB:02:CD","10.5.30.18,10.5.31.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV2","","'+02:00","2026-04-16T21:03:00.000+02:00","SANEF\henriet","Cloud Agent","e5e97f79-96c8-4b12-a9c1-3ab6ca4a5bd4","2025-08-06T12:34:58.000+02:00","2026-04-20T05:18:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"334758337","","PCB24084.sanef.groupe","PCB24084","24:FB:E3:33:7B:21","10.106.31.11,10.106.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5062RCY","","'+02:00","2026-04-17T12:12:01.000+02:00","SANEF\LEROYA","Cloud Agent","014a34f8-9fde-4a71-9a4f-ee1c7b4d269c","2025-06-19T17:10:10.000+02:00","2026-04-20T01:52:06.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"341837493","337285623","SVP22637.sanef-int.adds","SVP22637","D0:AD:08:A4:73:77","10.192.13.29,10.192.0.250","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764J4","","'+02:00","2026-03-16T11:17:02.000+02:00","Superviseur","Cloud Agent","edb0b649-8780-4ecd-8653-62ccb92f28a4","2025-07-15T06:47:15.000+02:00","2026-04-19T22:01:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"328612085","","PCB23680.sanef.groupe","PCB23680","C8:6E:08:8A:58:5E","10.205.0.32,192.168.1.79","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7Z","","'+02:00","2026-04-17T10:09:17.000+02:00","SANEF\richomme","Cloud Agent","a2a72ce2-92ef-4c06-b366-6db6b6aaad7c","2025-05-30T11:35:51.000+02:00","2026-04-22T11:19:03.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"356899321","343527902","PCB24099.sanef.groupe","PCB24099","C8:58:B3:34:17:78","10.205.0.19,192.168.1.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M50","","'+02:00","2026-04-15T09:27:49.000+02:00","SANEF\BLOND-ext","Cloud Agent","d91ae442-0def-499c-bde1-7d5b23fcee0d","2025-09-04T13:58:46.000+02:00","2026-04-19T16:46:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"342271741","337467568","PCB17765.sanef.groupe","PCB17765","28:C5:D2:9F:C4:23","10.205.0.207,192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y46","","'+02:00","2026-04-17T09:28:52.000+02:00","SANEF\LOUATI","Cloud Agent","772c1882-0312-400c-92d5-e62af767b453","2025-07-16T16:03:11.000+02:00","2026-04-19T16:35:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","59.0" +"340537046","","SVP22626.sanef-int.adds","SVP22626","D0:AD:08:A4:73:52","10.192.8.29,10.142.3.18","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764HJ","","'+02:00","2026-04-14T10:25:11.000+02:00","Superviseur","Cloud Agent","f93a5439-6492-4a26-b768-9e15df9206b1","2025-07-09T20:01:08.000+02:00","2026-04-19T16:18:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"327578148","","PCB20686.sanef.groupe","PCB20686","58:1C:F8:E9:51:97","192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DSB","","'+02:00","2026-04-14T08:01:44.000+02:00","SANEF\jacquelin","Cloud Agent","e31fa95b-d3cb-4c1b-aae5-4913be2edc49","2025-05-27T15:33:18.000+02:00","2026-04-19T16:05:22.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"327506991","","PCB23583.sanef.groupe","PCB23583","C8:6E:08:88:F0:5E","10.205.1.6,192.168.1.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4L","","'+02:00","2026-04-14T10:47:04.000+02:00","SANEF\COEUR","Cloud Agent","d810f4b8-46bd-4025-be0c-d6cbff1bf8b4","2025-05-27T10:16:54.000+02:00","2026-04-19T16:05:07.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"350843633","340937181","PCB25811.sanef.groupe","PCB25811","28:95:29:1A:E6:72","10.205.0.39,192.168.68.107","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV4","","'+02:00","2026-04-14T09:14:49.000+02:00","SANEF\MARTEAUC","Cloud Agent","ff0028ea-c4bb-46d2-ae40-64aea4e6c23f","2025-08-12T14:57:22.000+02:00","2026-04-19T14:19:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"359816288","","PCB24331.sanef.groupe","PCB24331","10:B6:76:95:8B:A1","10.205.0.40,10.105.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ2","","'+02:00","2026-04-14T08:05:36.000+02:00","SANEF\MELOUKI","Cloud Agent","0efb4010-35d1-4baf-8c23-bd55201dba60","2025-09-15T17:39:18.000+02:00","2026-04-19T13:16:40.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"368460951","348146989","PCB18743.sanef.groupe","PCB18743","BC:0F:F3:3D:08:D2","10.220.31.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQ9","","'+02:00","2026-04-02T21:41:08.000+02:00","severine.montalvo@sapn.fr","Cloud Agent","e9d72f0e-eeba-417a-bdc8-03ea76cc551d","2025-10-14T17:08:20.000+02:00","2026-04-19T12:42:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"353100235","341841261","PCB25848.sanef.groupe","PCB25848","28:95:29:1A:F1:B7","10.205.0.4,192.168.1.92","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTN","","'+02:00","2026-04-15T09:12:16.000+02:00","SANEF\VANTILLARD","Cloud Agent","39384154-de2c-40ad-b303-aa34931228fb","2025-08-20T15:51:09.000+02:00","2026-04-19T12:30:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"353775005","342123613","SVP21076.sanef-int.adds","SVP21076","64:4E:D7:A4:2C:E2","10.92.8.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD336NWF5","","'+02:00","2026-04-14T08:02:19.000+02:00","Superviseur","Cloud Agent","eb8de4b2-a46d-4eb5-a54e-f22ae264cb65","2025-08-22T14:53:14.000+02:00","2026-04-19T12:11:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"323176461","329806900","PCB22904.sanef.groupe","PCB22904","D0:AD:08:A3:E7:95","10.105.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNS","8CC3502YNS","'+02:00","2026-04-01T13:07:18.000+02:00","SANEF\payenb","Cloud Agent","9d2eac71-a6de-4af1-87c7-b38eda2ab7a1","2025-05-09T12:03:52.000+02:00","2026-04-19T11:41:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"325726204","","PCB20749.sanef.groupe","PCB20749","58:1C:F8:EB:79:22","169.254.50.83,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224D35","","'+02:00","2026-04-14T15:35:17.000+02:00","jerome.ferre@sanef.com","Cloud Agent","5c7efc54-c03f-4daf-a232-35bb908a56c4","2025-05-19T14:16:13.000+02:00","2026-04-19T11:07:11.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"321994295","329316390","PCB23728.sanef.groupe","PCB23728","C8:6E:08:49:2D:84","10.152.31.28,192.168.1.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H39","","'+02:00","2026-03-29T16:25:58.000+02:00","SANEF\saintebeuve","Cloud Agent","eac9b59c-a293-4b59-a508-eb7cddae6481","2025-05-05T10:42:04.000+02:00","2026-04-18T22:14:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"401615942","361785197","SVP18475.sanef-int.adds","SVP18475","D0:AD:08:A4:73:51","10.6.64.29,10.92.6.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764HH","","'+02:00","2026-04-02T15:41:21.000+02:00","Superviseur","Cloud Agent","efaef4f0-42b3-45a7-b220-c495e9e11a20","2026-02-17T17:43:06.000+02:00","2026-04-18T15:02:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"360032867","","PCB18730.sanef.groupe","PCB18730","58:1C:F8:EB:40:1F","192.168.1.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSR","","'+02:00","2026-03-30T09:19:53.000+02:00","SANEF\pionnier","Cloud Agent","012ff2a8-9c73-4267-bc71-91dc211f1e26","2025-09-16T14:16:21.000+02:00","2026-04-18T12:47:12.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"357873287","343900662","PCB21203.sanef.groupe","PCB21203","D0:AD:08:AA:50:1B","10.220.31.64","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GQ","","'+02:00","2026-04-08T16:00:54.000+02:00","SANEF\leseurc","Cloud Agent","4974670b-2212-4a2c-aa19-8ee05d079cdc","2025-09-08T13:35:11.000+02:00","2026-04-18T12:30:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"322591008","329574280","PCB21289.sanef.groupe","PCB21289","30:F6:EF:A3:F0:C5","10.12.31.13,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKF","","'+02:00","2026-04-17T19:22:34.000+02:00","SANEF\becret","Cloud Agent","61410946-a265-4a8d-a85a-e3a48b70497c","2025-05-07T10:46:02.000+02:00","2026-04-18T12:09:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"348209822","339539472","PCB23685.sanef.groupe","PCB23685","C8:6E:08:8A:3C:43","10.205.0.19,192.168.1.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6T","","'+02:00","2026-04-13T17:18:15.000+02:00","SANEF\DELBOS","Cloud Agent","de9e695a-304e-4044-be47-1344d51d1197","2025-08-01T16:10:06.000+02:00","2026-04-18T11:49:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"356057370","343125229","PCB18091.sanef.groupe","PCB18091","64:D6:9A:21:81:8A","10.205.0.19,192.168.1.96","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HR3","","'+02:00","2026-04-18T11:26:34.000+02:00","SANEF\GOMEZGONZALEZ","Cloud Agent","21dfc9ec-089f-493c-8879-a63a8e19a57b","2025-09-01T14:18:20.000+02:00","2026-04-18T11:29:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"356305508","343246682","PCB18097.sanef.groupe","PCB18097","38:CA:84:52:E8:D5","10.205.0.50,10.101.243.89","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HS3","","'+02:00","2026-04-17T18:07:35.000+02:00","SANEF\GANDIL","Cloud Agent","0b7d4ae4-e3f1-49dc-b713-cc29d9e90402","2025-09-02T11:54:34.000+02:00","2026-04-18T10:56:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"321994023","329311106","PCB20834.sanef.groupe","PCB20834","C8:6E:08:49:2D:98","10.205.0.133,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H45","","'+02:00","2026-04-10T11:12:54.000+02:00","SANEF\normandf","Cloud Agent","57af8485-c0c5-42b8-8995-6135570de809","2025-05-05T09:46:30.000+02:00","2026-04-18T10:39:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"325688542","","PCB18044.sanef.groupe","PCB18044","38:CA:84:52:39:9C","10.205.0.44,10.100.39.63","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HT0","","'+02:00","2026-04-07T16:15:10.000+02:00","SANEF\ROUKOZ-DIAB","Cloud Agent","b4dd3c93-b507-4c77-bb7e-c36720f48332","2025-05-19T12:39:22.000+02:00","2026-04-18T09:26:09.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"361291519","345248178","PCB24207.sanef.groupe","PCB24207","10:B6:76:97:D4:B9","10.208.31.4,10.200.31.59","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKJ","","'+02:00","2026-04-14T12:12:59.000+02:00","SANEF\galland","Cloud Agent","ef7e51c1-64ed-4cca-aba8-de2734cca21b","2025-09-19T17:37:48.000+02:00","2026-04-18T08:57:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"269316158","299220499","vtdsiaels1.sanef-rec.fr","","00:50:56:9c:69:b1","10.45.1.170","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f2 4c ab be 7e 59-88 61 ac 1e 41 bf dd d3","No Asset Tag","'+02:00","2026-01-06T13:57:31.000+02:00","cybsecope","Cloud Agent","cc8c6fbd-9bf1-48b9-8d0a-e937aad5fa4a","2024-10-01T10:52:18.000+02:00","2026-04-18T07:09:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Recette,Linux Server,Cloud Agent,Elasticsearch","139.0" +"364731184","346603429","PCB25839.sanef.groupe","PCB25839","F8:ED:FC:AB:02:B1","10.5.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVG","","'+02:00","2026-04-14T05:28:31.000+02:00","SANEF\cagnet","Cloud Agent","8066b80e-7ef8-4921-8794-3a21540d3a83","2025-10-01T14:02:59.000+02:00","2026-04-18T03:16:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"323187973","329817766","PCB22815.sanef.groupe","PCB22815","D0:AD:08:A7:28:5F","10.152.31.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLS","8CC3502YLS","'+02:00","2026-03-28T09:11:59.000+02:00","SANEF\herent","Cloud Agent","e02271e8-44d2-4a7f-a146-86a920bdc52d","2025-05-09T14:15:07.000+02:00","2026-04-17T21:31:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"304915606","322671878","PCB22606.sanef.groupe","PCB22606","D0:AD:08:AA:4F:D2","10.107.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DC","","'+02:00","2026-04-16T14:36:30.000+02:00","SANEF\ghozi","Cloud Agent","0580dd92-84f2-4a15-b365-5cb40c5e575f","2025-03-04T15:49:35.000+02:00","2026-04-17T19:53:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"305109248","322677727","PCB21133.sanef.groupe","PCB21133","D0:AD:08:AA:50:B2","10.107.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764ML","","'+02:00","2026-03-31T17:02:13.000+02:00","SANEF\doyen","Cloud Agent","3821bafb-9230-4103-8d32-1067a29e3cf0","2025-03-04T17:03:43.000+02:00","2026-04-17T19:33:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"355989064","343097776","PCB18030.sanef.groupe","PCB18030","64:D6:9A:1D:38:E6","10.101.243.139,192.168.1.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HT9","","'+02:00","2026-03-30T09:01:08.000+02:00","SANEF\JOURNE","Cloud Agent","2654b8f1-22d0-4efe-94e8-1957050bacfe","2025-09-01T10:23:54.000+02:00","2026-04-17T18:57:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"129933754","192384050","vrpatalag1.sanef.groupe","VRPATALAG1","00:50:56:82:4E:EB","10.45.10.135","fe80::4eae:3207:194d:72bb","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 fc d7 ac 3a 89 b6-40 69 54 12 81 c3 18 9f","NoAssetTag","'+02:00","2026-04-08T12:52:46.000+02:00","Administrateur","Cloud Agent","dcf98675-19e8-4b75-916c-6b3cd3557a11","2022-07-01T09:33:45.000+02:00","2026-04-17T18:51:16.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DFIN,Recette,Patrimoine,Cloud Agent,Windows Server,Lago,VRF_INCONNUE,OS-WIN-SRV DYN","48.0" +"356621961","343407653","PCB20712.sanef.groupe","PCB20712","58:1C:F8:EA:53:B7","10.205.0.227,192.168.1.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DS2","","'+02:00","2026-04-03T11:17:24.000+02:00","SANEF\PRESLE","Cloud Agent","f8409132-8b7e-4496-b42d-bbb23fb05dac","2025-09-03T14:06:53.000+02:00","2026-04-17T18:45:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"381938977","353737780","PCB20739.sanef.groupe","PCB20739","58:1C:F8:E9:B2:EF","192.168.1.184","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQV","","'+02:00","2026-04-03T19:21:02.000+02:00","SANEF\CLAVREUL","Cloud Agent","f2dab83d-f81e-40ca-9ad7-9dc336ccfe37","2025-12-05T15:48:17.000+02:00","2026-04-17T18:21:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"399888645","361320509","PCB25940.sanef.groupe","PCB25940","C4:0F:08:AC:D7:CB","10.205.1.35,192.168.1.249","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342232","","'+02:00","2026-04-13T08:52:26.000+02:00","SANEF\VONGSAVANH","Cloud Agent","721c0c7c-aa89-47c2-8316-21b02a6d1027","2026-02-13T10:37:32.000+02:00","2026-04-17T17:55:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"280846706","305636728","PCB21324.sanef.groupe","PCB21324","D0:AD:08:AA:4F:F1","10.205.0.36,192.168.1.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FC","","'+02:00","2026-04-01T10:40:04.000+02:00","SANEF\gondouin","Cloud Agent","8f9eca35-cab7-4ca5-bed2-01fb5a6b8e22","2024-11-20T17:06:11.000+02:00","2026-04-17T17:54:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"350573351","340489251","PCB25829.sanef.groupe","PCB25829","28:95:29:1E:59:42","10.101.243.36,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CSJ","","'+02:00","2026-04-03T08:57:14.000+02:00","SANEF\LEBASTARD","Cloud Agent","2f2b98c6-75c7-4e3a-bc27-f7adc883d24d","2025-08-11T15:53:57.000+02:00","2026-04-17T17:52:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"320075313","328613175","PCB23666.sanef.groupe","PCB23666","C8:6E:08:8A:45:1C","10.100.39.109,192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4J","","'+02:00","2026-04-14T16:12:42.000+02:00","SANEF\LEMAIREM","Cloud Agent","3fe1b61a-dcec-4f48-98c6-b239b21049bf","2025-04-28T12:14:53.000+02:00","2026-04-17T17:47:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"350019008","340231027","PCB25805.sanef.groupe","PCB25805","28:95:29:22:41:6F","192.168.1.56,169.254.218.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT7","","'+02:00","2026-04-15T13:43:33.000+02:00","SANEF\HERBERT-MIRANDA","Cloud Agent","36684ce3-9df3-4d05-a69e-af6523e008c6","2025-08-08T12:21:13.000+02:00","2026-04-17T17:37:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"367260527","347693485","PCB21280.sanef.groupe","PCB21280","30:F6:EF:A3:92:9C","10.4.31.77,192.168.1.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKM","","'+02:00","2026-04-16T17:10:29.000+02:00","SANEF\bourliaud","Cloud Agent","d27a554f-fc5a-48ca-ab94-4f3d6a8acf5a","2025-10-10T16:41:16.000+02:00","2026-04-17T17:37:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"334971951","","PCB24083.sanef.groupe","PCB24083","08:B4:D2:2A:04:B8","10.205.0.227,192.168.1.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437T","","'+02:00","2026-04-17T17:15:19.000+02:00","SANEF\pruvot","Cloud Agent","357c3378-c8a4-4691-8085-f7f668f3c90f","2025-06-20T14:23:07.000+02:00","2026-04-17T17:19:16.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"345138778","338664323","PCB23522.sanef.groupe","PCB23522","C8:6E:08:88:FD:1F","10.205.0.10,192.168.1.199","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBM","","'+02:00","2026-04-08T13:00:18.000+02:00","SANEF\ROLLAND","Cloud Agent","2d6f6c6d-4c5d-440a-a824-29391bdd9981","2025-07-25T17:22:49.000+02:00","2026-04-17T17:11:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"361918697","345509741","PCB18616.sanef.groupe","PCB18616","38:CA:84:DB:E6:38","10.100.39.104","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WD6","","'+02:00","2026-04-13T09:40:10.000+02:00","SANEF\GARCIAL-ext","Cloud Agent","56f59612-b1a3-4c2b-9715-c42db172aa8a","2025-09-22T11:17:53.000+02:00","2026-04-17T17:11:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"381302025","353523193","PCB22713.sanef.groupe","PCB22713","D0:AD:08:AA:50:39","10.220.31.49,169.254.134.185","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HP","","'+02:00","2026-04-01T07:59:46.000+02:00","SANEF\bobo","Cloud Agent","7dc2732c-6a4a-4d36-9bcd-0b74e437ab15","2025-12-03T17:03:24.000+02:00","2026-04-17T17:09:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"321564320","329084504","PCB23601.sanef.groupe","PCB23601","C8:6E:08:8A:3C:39","10.255.2.200,10.255.2.168","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L61","","'+02:00","2026-04-17T14:04:13.000+02:00","SANEF\maurange","Cloud Agent","ba03457f-e9a1-45e5-b546-24c8617142e8","2025-05-02T12:46:41.000+02:00","2026-04-17T17:01:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"362060157","345555160","PCB24248.sanef.groupe","PCB24248","24:FB:E3:35:30:A4","10.219.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5085GG1","","'+02:00","2026-04-16T08:03:31.000+02:00","SANEF\belaid","Cloud Agent","fafe543f-c2f7-40c4-9072-f9a4a0776f0b","2025-09-22T18:06:26.000+02:00","2026-04-17T16:59:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","341.0" +"322067132","329341009","PCB23562.sanef.groupe","PCB23562","C8:6E:08:88:F0:4A","10.255.1.190,192.168.1.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4W","","'+02:00","2026-04-13T15:51:24.000+02:00","SANEF\samson","Cloud Agent","3cf828d0-b253-4801-93dc-dc019e865ea3","2025-05-05T15:34:43.000+02:00","2026-04-17T16:56:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"339993099","","SVP22617.sanef-int.adds","SVP22617","D0:AD:08:A4:76:51","10.82.9.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764LM","","'+02:00","2025-10-06T10:33:15.000+02:00","Superviseur","Cloud Agent","0eb752c2-f205-49fc-b03f-cbcda58da26a","2025-07-08T05:44:13.000+02:00","2026-04-17T16:54:47.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"356383716","343285276","PCB22657.sanef.groupe","PCB22657","D0:AD:08:AA:4F:DD","10.220.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DQ","","'+02:00","2026-04-01T07:57:22.000+02:00","SANEF\pinton","Cloud Agent","51a882c6-9798-49f2-9e38-dc4c16b49825","2025-09-02T17:22:24.000+02:00","2026-04-17T16:51:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"319378585","328409152","PCB24022.sanef.groupe","PCB24022","EC:4C:8C:C6:1A:9C","192.168.1.22,10.100.39.189","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF7","","'+02:00","2026-04-07T14:16:22.000+02:00","SANEF\VASSEURB","Cloud Agent","a246bc8c-75ea-4955-b89d-dfce0399c902","2025-04-25T13:23:53.000+02:00","2026-04-17T16:49:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"385761488","355848221","PCB16437.sanef.groupe","PCB16437","DC:21:48:C7:35:9E","192.168.1.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","1","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.14.00","5CD14383YZ","","'+02:00","2026-02-26T16:43:31.000+02:00","lionel.ravanel@recette.adds","Cloud Agent","4160d94b-0a4b-4465-a8e8-d168c6780d50","2025-12-23T13:24:32.000+02:00","2026-04-17T16:26:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"334021957","334019842","PCB24133.sanef.groupe","PCB24133","48:EA:62:C8:A3:A1","10.104.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6Z","","'+02:00","2026-03-30T09:42:36.000+02:00","SANEF\ORZECHOWSKI","Cloud Agent","1d914b49-3960-4606-b9d2-b80ffa55623d","2025-06-17T13:46:24.000+02:00","2026-04-17T16:23:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"326581508","","PCB17788.sanef.groupe","PCB17788","28:C5:D2:9E:3E:B4","10.205.0.87,192.168.1.187","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y49","","'+02:00","2026-04-14T16:11:18.000+02:00","SANEF\ESPAGNE","Cloud Agent","511eab52-561c-4bf7-8a08-9ffbd87663ab","2025-05-22T13:12:26.000+02:00","2026-04-17T16:14:20.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"384302525","354868375","PCB23724.sanef.groupe","PCB23724","C8:6E:08:48:DD:16","10.4.31.21,192.168.2.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2Q","","'+02:00","2026-04-13T08:31:22.000+02:00","SANEF\vollondat","Cloud Agent","e78a847b-4b9e-45cf-9f44-4ed3dff84895","2025-12-16T15:23:37.000+02:00","2026-04-17T16:04:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"362047917","345555158","PCB24320.sanef.groupe","PCB24320","70:15:FB:7E:21:29","10.255.1.187,10.255.1.160","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ0","","'+02:00","2026-04-14T16:24:06.000+02:00","SANEF\deschampst","Cloud Agent","229f54bb-5b71-4f53-9ac6-910342d0c659","2025-09-22T18:05:45.000+02:00","2026-04-17T15:53:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"416728934","367950289","PCB16134.sanef.groupe","PCB16134","80-B6-55-30-C9-FF, 82-B6-55-30-C9-FB, 80-B6-55-30-C9-FB, E0-70-EA-A8-76-ED, 80-B6-55-30-C9-FC","10.252.4.5","fe80::5a7a:9eb1:ad03:665a","Windows / Client","Microsoft Windows 11 Enterprise (Insider Preview Build 26200)","11","Computers / Unidentified","Computers","","","","","","8CC14326GG","","'+02:00","","","Cloud Agent","d352ed4d-42dd-438c-910c-378d18904d75","2026-04-17T15:49:08.000+02:00","2026-04-17T15:49:07.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"322014579","329316798","PCB23669.sanef.groupe","PCB23669","C8:6E:08:88:E2:5D","10.200.31.8,192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6R","","'+02:00","2026-04-13T08:54:12.000+02:00","SANEF\desanprimo","Cloud Agent","0cdd57f2-449e-416c-9be8-dfe0fc686a2c","2025-05-05T10:49:37.000+02:00","2026-04-17T15:46:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"400946924","361773522","PCB25933.sanef.groupe","PCB25933","C4:0F:08:B5:55:81","10.205.0.23,192.168.1.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5342222","","'+02:00","2026-04-09T15:31:28.000+02:00","SANEF\CLEMENT","Cloud Agent","183c575e-abcf-4ec8-a1d5-0a43eb35d94b","2026-02-17T15:24:17.000+02:00","2026-04-17T15:45:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"394261303","358951070","PCB20632.sanef.groupe","PCB20632","BC:0F:F3:3D:78:87","10.4.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DRK","","'+02:00","2026-04-07T14:56:55.000+02:00","SANEF\guyotatv","Cloud Agent","0ea1c2b8-cdba-4fcb-a7c6-d9ffc96bde9c","2026-01-22T11:10:09.000+02:00","2026-04-17T15:44:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"317708210","327744885","PCB23710.sanef.groupe","PCB23710","6C:0B:5E:EE:BC:6B","10.149.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7P","","'+02:00","2026-03-28T09:26:05.000+02:00","SANEF\arnouldj","Cloud Agent","80b7f387-b9f9-48d2-aa29-3515a6ca1098","2025-04-18T13:19:15.000+02:00","2026-04-17T15:35:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"343661199","338038584","PCB21128.sanef.groupe","PCB21128","D0:AD:08:AA:4F:E0","10.220.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DT","","'+02:00","2026-04-01T09:06:57.000+02:00","lakhdar.chaker@sapn.fr","Cloud Agent","ae31a89a-593b-4dd0-b14d-879fee671569","2025-07-21T11:29:01.000+02:00","2026-04-17T15:35:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"405931964","363433792","PCB20600.sanef.groupe","PCB20600","58:1C:F8:E9:B2:F9","10.4.31.79,192.168.1.153","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3L","","'+02:00","2026-04-16T09:36:02.000+02:00","SANEF\benard","Cloud Agent","d6f73a91-c5c7-42f5-9aae-e2e82d7cd127","2026-03-04T09:50:43.000+02:00","2026-04-17T15:17:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","351.0" +"324685600","330329065","PCB23786.sanef.groupe","PCB23786","C8:6E:08:49:2D:B6","10.255.1.129","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3J","","'+02:00","2026-03-31T07:14:05.000+02:00","SANEF\lefebvrej","Cloud Agent","5d3e37c9-9ef2-4d54-8782-56c87d3d0649","2025-05-14T11:13:38.000+02:00","2026-04-17T15:17:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"366408981","347373958","PCB17503.sanef.groupe","PCB17503","70:A8:D3:85:C6:EF","10.101.243.52,192.168.1.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG21724CW","","'+02:00","2026-04-17T12:11:37.000+02:00","SANEF\KARKACH","Cloud Agent","f9a23dab-d3c8-4bed-8297-5eeab83fb0ee","2025-10-08T13:12:51.000+02:00","2026-04-17T15:13:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"343639568","338035888","PCB20702.sanef.groupe","PCB20702","58:1C:F8:E9:D9:3C","10.101.243.192,192.168.1.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRC","","'+02:00","2026-04-07T14:51:03.000+02:00","SANEF\ZAPPELINI","Cloud Agent","6ff801b4-6278-4354-9ad8-f3d576205afa","2025-07-21T10:54:55.000+02:00","2026-04-17T15:12:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","59.0" +"344834146","338481703","PCB23779.sanef.groupe","PCB23779","C8:6E:08:49:99:04","10.255.3.240,192.168.1.198","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460H29","","'+02:00","2026-04-09T10:58:09.000+02:00","marc.lechevalier@sanef.com","Cloud Agent","ae8a2090-6d88-4d1d-94a8-07f208f0aafa","2025-07-24T15:22:43.000+02:00","2026-04-17T15:08:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"367874530","347971086","PCB18725.sanef.groupe","PCB18725","BC:0F:F3:3B:D9:6B","10.220.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3R","","'+02:00","2026-04-16T11:18:49.000+02:00","SANEF\pintonc","Cloud Agent","952a5273-f486-4a7b-bd2f-647a8e645f02","2025-10-13T11:47:13.000+02:00","2026-04-17T15:04:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"324686300","330336495","PCB20660.sanef.groupe","PCB20660","58:1C:F8:EA:58:9E","10.205.0.130,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CRY","","'+02:00","2026-04-17T13:54:52.000+02:00","SANEF\CHEVILLARD","Cloud Agent","9663a404-0d2a-4e57-a66c-b2e8ee8c4196","2025-05-14T12:13:21.000+02:00","2026-04-17T15:00:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"363840829","346344926","PCB16351.sanef.groupe","PCB16351","58:6C:25:2B:1A:6F","192.168.0.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.11.00","5CG13363SH","","'+02:00","2026-04-08T09:01:02.000+02:00","SANEF\KUSTER","Cloud Agent","041c9133-e9d4-446c-bfc6-8ff1ae4f40b2","2025-09-29T10:26:26.000+02:00","2026-04-17T14:57:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"324420574","330235361","PCB23791.sanef.groupe","PCB23791","C8:6E:08:49:3E:D7","10.205.0.20,10.26.61.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H37","","'+02:00","2026-03-31T08:56:01.000+02:00","SANEF\kauffmann","Cloud Agent","8e8461db-9038-4160-995f-704a216f9470","2025-05-13T15:20:34.000+02:00","2026-04-17T14:57:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"307629995","323412784","PCB17194.sanef.groupe","PCB17194","50:81:40:B9:D0:0A","10.4.30.19","fe80::a106:c3f5:2984:cff0","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T76 Ver. 01.04.02","5CG13363XZ","","'+02:00","2026-04-15T08:05:26.000+02:00","SANEF\gonzalez","Cloud Agent","49fae254-7794-4d8e-8c23-55307a4cf5a7","2025-03-12T16:48:12.000+02:00","2026-04-17T14:57:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"397198246","360254997","PCB24231.sanef.groupe","PCB24231","24:FB:E3:BE:98:DA","10.205.0.78,192.168.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M6B","","'+02:00","2026-04-16T11:49:33.000+02:00","SANEF\LEFEBVRE","Cloud Agent","ac9d4c25-0e18-4a79-b823-a3dae5b22e4d","2026-02-03T18:43:52.000+02:00","2026-04-17T14:56:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","352.0" +"323182464","329808184","PCB23737.sanef.groupe","PCB23737","6C:0B:5E:EE:83:67","10.5.31.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4K","","'+02:00","2026-04-16T10:21:43.000+02:00","SANEF\RIVERON","Cloud Agent","eee540bc-b056-480f-9c59-77a9bf1a1f07","2025-05-09T12:17:23.000+02:00","2026-04-17T14:55:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","333.0" +"322370699","329443909","PCB23772.sanef.groupe","PCB23772","C8:6E:08:47:72:FF","10.205.0.159,192.168.0.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3Q","","'+02:00","2026-03-29T09:28:35.000+02:00","SANEF\carond","Cloud Agent","6c098b92-239a-47cb-8efc-8f859c055254","2025-05-06T13:04:49.000+02:00","2026-04-17T14:53:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"322116608","329341527","PCB23563.sanef.groupe","PCB23563","C8:6E:08:88:E2:C6","10.200.31.38,192.168.1.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L6P","","'+02:00","2026-03-19T10:51:21.000+02:00","SANEF\thepaut","Cloud Agent","a7237c20-1305-448c-86cb-1cb5177634c6","2025-05-05T15:36:46.000+02:00","2026-04-17T14:52:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"344881629","338497987","PCB23549.sanef.groupe","PCB23549","C8:6E:08:88:E2:62","10.255.3.186,10.101.243.107","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L51","","'+02:00","2026-04-07T13:48:06.000+02:00","SANEF\DELARIVIERE","Cloud Agent","0d590632-f26b-4670-8bbd-320995cb634e","2025-07-24T17:35:31.000+02:00","2026-04-17T14:52:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"368460166","348148143","PCB18744.sanef.groupe","PCB18744","BC:0F:F3:3D:58:FB","10.255.3.196,10.220.31.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQY","","'+02:00","2026-03-30T12:39:42.000+02:00","audrey.bouvier@sapn.fr","Cloud Agent","9d7097fa-1021-40c5-bc4b-399a4d044342","2025-10-14T17:11:24.000+02:00","2026-04-17T14:52:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"280824922","305628139","PCB21332.sanef.groupe","PCB21332","D0:AD:08:AA:50:A4","10.220.31.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M4","","'+02:00","2026-04-06T07:47:00.000+02:00","SANEF\rabdeau","Cloud Agent","12d51adb-240e-4e07-a603-a97f553cb496","2024-11-20T15:38:50.000+02:00","2026-04-17T14:52:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"347523620","339228545","PCB23526.sanef.groupe","PCB23526","C8:6E:08:88:F0:27","10.205.0.75,192.168.1.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6Y","","'+02:00","2026-03-30T11:06:59.000+02:00","SANEF\GUEDON","Cloud Agent","0c787b5b-e1ee-4a21-881e-28d325dd8879","2025-07-30T16:48:01.000+02:00","2026-04-17T14:51:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"322116362","329336753","PCB23695.sanef.groupe","PCB23695","6C:0B:5E:EE:BC:81","10.200.31.60","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7T","","'+02:00","2026-04-17T12:15:06.000+02:00","SANEF\BOEDARD","Cloud Agent","87de7548-87f3-4518-811d-b3ceaf5b501b","2025-05-05T14:57:48.000+02:00","2026-04-17T14:51:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"320296214","328638757","PCB23551.sanef.groupe","PCB23551","C8:6E:08:8A:45:71","10.100.39.54,192.168.1.66","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9P","","'+02:00","2026-04-01T08:40:58.000+02:00","SANEF\CHEDANNE","Cloud Agent","c4bd34df-3235-4f75-8a5d-6019cc0ac7d3","2025-04-28T16:37:56.000+02:00","2026-04-17T14:51:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"334030261","334019843","PCB24129.sanef.groupe","PCB24129","48:EA:62:C8:A3:C4","10.107.31.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V65","","'+02:00","2026-04-17T08:36:04.000+02:00","SANEF\bertaux","Cloud Agent","8136337f-bad0-421e-bd18-7081ded3805e","2025-06-17T13:46:31.000+02:00","2026-04-17T14:50:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"323214239","329820250","PCB20844.sanef.groupe","PCB20844","C8:6E:08:46:F2:85","10.205.0.36,192.168.1.99","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3T","","'+02:00","2026-03-30T22:03:26.000+02:00","SANEF\dorizy","Cloud Agent","d9586530-d1af-402e-b2f3-9e79f75f0707","2025-05-09T14:48:16.000+02:00","2026-04-17T14:50:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","144.0" +"320467349","328715185","PCB24036.sanef.groupe","PCB24036","6C:0B:5E:F8:D7:F1","10.255.1.247,10.100.39.78","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDZ","","'+02:00","2026-04-14T13:46:21.000+02:00","SANEF\FEJEAN","Cloud Agent","cf098380-ea6e-4682-83cf-6b5e568d203d","2025-04-29T12:13:58.000+02:00","2026-04-17T14:24:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"350066707","340249989","PCB25774.sanef.groupe","PCB25774","28:95:29:22:41:47","10.205.0.56,192.168.0.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CSK","","'+02:00","2026-04-09T09:26:09.000+02:00","SANEF\GOUMIS","Cloud Agent","adf9dced-9591-4aa7-aa7b-2c89bc447755","2025-08-08T15:44:02.000+02:00","2026-04-17T14:23:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","255.0" +"320513751","328730971","PCB23634.sanef.groupe","PCB23634","C8:6E:08:8A:50:F2","10.255.3.193","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L85","","'+02:00","2026-03-30T09:31:57.000+02:00","SANEF\devigne","Cloud Agent","24b2fae4-187d-43ea-8e07-f2d43ce80129","2025-04-29T15:00:31.000+02:00","2026-04-17T14:21:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"171281499","226495316","PCB18394.sanef.groupe","PCB18394","70:A8:D3:85:BA:FB","10.205.0.206,192.168.0.21","2a01:e0a:364:71a0:5ee:7109:1fc2:138e,2a01:e0a:364:71a0:8f62:d282:cdb8:3a53,fe80::464e:1016:318b:cc05","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG21724NT","","'+02:00","2026-04-17T08:49:52.000+02:00","SANEF\VANWYNSBERGHE","Cloud Agent","a58a410a-13e4-4a03-9989-c198c700f80c","2023-05-22T19:55:48.000+02:00","2026-04-17T14:19:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","351.0" +"321535715","329070727","PCB21271.sanef.groupe","PCB21271","D0:AD:08:0C:8D:4E","10.4.31.54","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK4","","'+02:00","2026-04-14T08:16:18.000+02:00","SANEF\FEVRIER","Cloud Agent","fb132cb0-afb2-432b-b3e5-3c7046115b8d","2025-05-02T09:50:06.000+02:00","2026-04-17T14:18:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"391685025","357961517","SVP21364.sanef-int.adds","SVP21364","D0:AD:08:A2:AE:CF","10.132.5.29,10.182.12.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764K8","","'+02:00","2026-04-10T14:49:19.000+02:00","Superviseur","Cloud Agent","582b823f-6b5f-4950-83a6-eefc0a9c37b5","2026-01-13T17:13:37.000+02:00","2026-04-17T14:12:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"370350166","348859701","PCB24346.sanef.groupe","PCB24346","00:72:EE:1F:F2:8E","10.255.4.133","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YGG","","'+02:00","2026-04-17T07:02:31.000+02:00","SANEF\CASIER","Cloud Agent","fc3a7893-8f43-4482-8a21-ff6cdd5756df","2025-10-21T08:00:50.000+02:00","2026-04-17T14:09:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","253.0" +"321548437","329072945","PCB23796.sanef.groupe","PCB23796","C8:6E:08:49:2D:7F","10.255.2.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H42","","'+02:00","2026-04-07T08:32:25.000+02:00","SANEF\muhlberger","Cloud Agent","5358ce50-4b27-4c1c-8388-6c99fff41379","2025-05-02T10:18:42.000+02:00","2026-04-17T14:08:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"364757960","346616574","PCB18752.sanef.groupe","PCB18752","58:1C:F8:E9:A7:0A","10.205.0.8,192.168.1.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQT","","'+02:00","2026-04-15T13:10:26.000+02:00","SANEF\TREISSAC","Cloud Agent","111749b1-9327-40a7-9ddc-502b07fbe437","2025-10-01T15:58:02.000+02:00","2026-04-17T13:57:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","60.0" +"363322957","346061323","PCB18103.sanef.groupe","PCB18103","64:D6:9A:1D:2D:C4","10.205.0.88,10.255.1.183","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRY","","'+02:00","2026-04-16T08:32:39.000+02:00","guillaume.renard-ext@sanef.com","Cloud Agent","88d1925a-af7f-4565-9327-f59e883fcf26","2025-09-26T17:17:55.000+02:00","2026-04-17T13:56:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"320465298","328723530","PCB23686.sanef.groupe","PCB23686","C8:6E:08:88:F0:BD","10.205.0.5,192.168.1.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L66","","'+02:00","2026-04-07T16:33:49.000+02:00","SANEF\IBATICI","Cloud Agent","59c6f39f-e89e-4402-b117-988cbd2f9745","2025-04-29T13:42:57.000+02:00","2026-04-17T13:51:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"357859057","343902809","PCB22619.sanef.groupe","PCB22619","D0:AD:08:AA:4F:FA","10.220.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FN","","'+02:00","2026-04-14T09:06:20.000+02:00","SANEF\lefevrei","Cloud Agent","5932ef8e-2456-4600-8d4b-cb66490f3693","2025-09-08T13:55:52.000+02:00","2026-04-17T13:50:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"317826589","327757963","PCB23778.sanef.groupe","PCB23778","C8:6E:08:47:0B:E4","10.255.3.168,192.168.1.77","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3R","","'+02:00","2026-04-13T13:03:05.000+02:00","SANEF\fontaineel","Cloud Agent","b9446919-9c88-4a55-b994-64b487f8721d","2025-04-18T15:58:02.000+02:00","2026-04-17T13:49:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"323159819","329793781","PCB23716.sanef.groupe","PCB23716","6C:0B:5E:EE:93:FE","10.12.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H38","","'+02:00","2026-04-14T15:28:04.000+02:00","SANEF\KLEINA","Cloud Agent","b6b99665-4da3-48c3-b45b-e8b2b758d2f9","2025-05-09T09:34:43.000+02:00","2026-04-17T13:49:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"368428977","348136166","PCB18487.sanef.groupe","PCB18487","E4:60:17:CB:F5:1B","10.220.31.7,192.168.1.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764JP","","'+02:00","2026-04-02T11:13:39.000+02:00","SANEF\CAMUSA","Cloud Agent","3956aa91-1988-4338-9096-0167b8fb4966","2025-10-14T15:31:06.000+02:00","2026-04-17T13:45:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"341940106","337328225","PCB23797.sanef.groupe","PCB23797","C8:6E:08:47:18:D7","192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4D","","'+02:00","2026-04-07T10:25:22.000+02:00","SANEF\piron","Cloud Agent","1d465a19-d866-4362-8612-f6e19a57e521","2025-07-15T13:47:14.000+02:00","2026-04-17T13:41:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","139.0" +"373860351","350356998","PCB15567.sanef.groupe","PCB15567","E0:70:EA:C2:9B:06","10.155.30.10,10.155.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","3096","Intel(R) Core(TM) i5-10500 CPU @ 3.10GHz","16159","HP S21 Ver. 02.08.01","8CC14326LT","8CC14326LT","'+02:00","2026-04-16T15:09:51.000+02:00","SANEF\bodart","Cloud Agent","ec2fdf27-ab97-4431-b77f-2e5ef341b187","2025-11-03T15:39:53.000+02:00","2026-04-17T13:39:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"321549850","329075654","PCB23657.sanef.groupe","PCB23657","6C:0B:5E:ED:A2:58","10.105.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4S","","'+02:00","2026-03-30T07:42:20.000+02:00","SANEF\DEBAILLEUL","Cloud Agent","f0d202f9-24d9-4eda-8d75-740d4cd6f31f","2025-05-02T11:04:17.000+02:00","2026-04-17T13:33:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"326906953","331324400","PCB23542.sanef.groupe","PCB23542","C8:6E:08:8A:45:E9","10.205.0.35,10.255.1.159","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L80","","'+02:00","2026-03-30T09:01:21.000+02:00","SANEF\deruere","Cloud Agent","a455b925-4242-4efb-b058-65d04eb02598","2025-05-23T17:24:04.000+02:00","2026-04-17T13:31:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"321609764","329099877","PCB23653.sanef.groupe","PCB23653","6C:0B:5E:EE:DC:48","10.202.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4Z","","'+02:00","2026-04-14T15:45:38.000+02:00","SANEF\descrettes","Cloud Agent","9d3861a9-bd29-4b7c-b2fe-c4b41de4b690","2025-05-02T15:55:13.000+02:00","2026-04-17T13:24:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"307901617","323506237","PCB17806.sanef.groupe","PCB17806","28:C5:D2:9E:44:B3","10.205.0.38,192.168.50.54","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.7840) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4R","","'+02:00","2026-03-05T09:50:37.000+02:00","SANEF\CRESSON","Cloud Agent","e72912e6-be11-4a84-bcc5-3e6c3194307f","2025-03-13T12:01:55.000+02:00","2026-04-17T13:23:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"405455633","363230867","PAD24216.sanef-int.adds","PAD24216","70:15:FB:7E:21:3D, null","10.0.0.93,10.44.102.10","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.07.00","5CD5153ZYS","","'+02:00","2026-04-17T10:01:32.000+02:00","SANEF-INT\user.test1-tst","Cloud Agent","ed1a2725-8b3c-43a8-b2c8-140645da51a8","2026-03-02T16:27:19.000+02:00","2026-04-17T13:20:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","241.0" +"374686464","350736042","PCB22710.sanef.groupe","PCB22710","E4:60:17:C4:7C:28","192.168.1.57","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GX","","'+02:00","2026-04-01T08:46:08.000+02:00","SANEF\goncalvesk","Cloud Agent","4b41a8fe-5925-4a3f-bb17-2863432d4541","2025-11-06T15:15:31.000+02:00","2026-04-17T13:17:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"322099729","329349138","PCB23615.sanef.groupe","PCB23615","6C:0B:5E:EE:B3:53","10.200.31.26,192.168.1.190","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB5","","'+02:00","2026-04-09T11:23:32.000+02:00","SANEF\thiam","Cloud Agent","3774c6f5-2462-4ed9-987c-d8635b95ecf6","2025-05-05T16:40:11.000+02:00","2026-04-17T13:16:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","60.0" +"334027204","334025827","PCB24132.sanef.groupe","PCB24132","48:EA:62:C8:83:76","10.107.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6R","","'+02:00","2026-04-16T08:25:38.000+02:00","SANEF\COTTON","Cloud Agent","5ae00054-1ffc-4a19-a25c-abdcb9cc013e","2025-06-17T14:37:15.000+02:00","2026-04-17T13:13:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"404433492","362844671","PCB25892.sanef.groupe","PCB25892","C4:0F:08:B4:F7:3F","10.100.39.42,10.255.4.181","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534223P","","'+02:00","2026-04-14T09:02:00.000+02:00","SANEF\catheling","Cloud Agent","db1c3a9d-8372-4dcf-bf13-cb782c9f0540","2026-02-26T17:36:21.000+02:00","2026-04-17T13:12:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"377806339","352206903","PCB25886.sanef.groupe","PCB25886","C4:0F:08:B4:FE:01","10.255.1.209","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222W","","'+02:00","2026-04-13T20:17:15.000+02:00","SANEF\GODON","Cloud Agent","34631e94-0d54-4b0e-8e81-0afc2adf2980","2025-11-19T17:40:54.000+02:00","2026-04-17T13:05:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"320448237","328708037","PCB23678.sanef.groupe","PCB23678","C8:6E:08:88:FD:1A","10.255.2.215,192.168.1.186","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9S","","'+02:00","2026-04-16T12:30:57.000+02:00","SANEF\legeaya","Cloud Agent","eefdfd6e-5ee7-494a-aa10-73c20df8b32a","2025-04-29T11:06:48.000+02:00","2026-04-17T13:03:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"377731711","352174469","PCB18264.sanef.groupe","PCB18264","5C:60:BA:59:EC:E3","10.105.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.23.00","8CC2250Y8P","8CC2250Y8P","'+02:00","2026-03-31T08:50:30.000+02:00","SANEF\ASSET","Cloud Agent","8ed373d1-020b-4050-ac01-9aacc511aedb","2025-11-19T12:45:16.000+02:00","2026-04-17T13:03:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"365027416","346745980","PCB22262.sanef.groupe","PCB22262","D0:AD:08:A7:28:48","10.1.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPB","","'+02:00","2026-03-28T09:17:38.000+02:00","SANEF\bousquet","Cloud Agent","d5906618-64db-48a7-a232-4b8fc13ab052","2025-10-02T18:18:27.000+02:00","2026-04-17T13:02:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"318366878","328016306","PCB22841.sanef.groupe","PCB22841","D0:AD:08:A3:E6:9D","10.108.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQK","8CC3502YQK","'+02:00","2026-03-31T16:24:28.000+02:00","SANEF\JACQUEMONT","Cloud Agent","78332271-adf5-4c8a-8855-06f60f481d20","2025-04-22T09:50:30.000+02:00","2026-04-17T13:00:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"341939484","337326534","PCB20846.sanef.groupe","PCB20846","6C:0B:5E:EE:93:ED","10.203.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H30","","'+02:00","2026-04-16T09:17:43.000+02:00","SANEF\binetb","Cloud Agent","632af620-be23-4de8-923e-537e8f617a2c","2025-07-15T13:31:14.000+02:00","2026-04-17T13:00:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"379762603","352970327","PCB17783.sanef.groupe","PCB17783","28:C5:D2:9E:44:B8","10.255.2.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y44","","'+02:00","2026-03-31T12:01:18.000+02:00","SANEF\KOZAK","Cloud Agent","21f80f97-21e3-4f71-bc5b-ee6bd676f8cf","2025-11-27T11:33:52.000+02:00","2026-04-17T12:58:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"304660259","322542155","PCB22461.sanef.groupe","PCB22461","D0:AD:08:E4:91:9F","10.107.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVM","","'+02:00","2026-04-14T07:01:49.000+02:00","SANEF\CAULIEZ","Cloud Agent","4254b3f5-3d98-4ee4-8ef7-58f3182c7425","2025-03-03T16:10:07.000+02:00","2026-04-17T12:56:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"304863349","322649650","PCB22610.sanef.groupe","PCB22610","D0:AD:08:AA:4F:EE","10.107.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764F8","","'+02:00","2026-04-01T06:59:49.000+02:00","SANEF\lanvin","Cloud Agent","a2580ec1-d7d7-41fa-bf03-c390985319bd","2025-03-04T12:34:59.000+02:00","2026-04-17T12:42:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"322640228","329599154","PCB23715.sanef.groupe","PCB23715","6C:0B:5E:EE:93:07","10.2.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4S","","'+02:00","2026-04-01T08:07:59.000+02:00","SANEF\Cobeno","Cloud Agent","0fb01794-6b67-49cf-8277-be6389d8c48e","2025-05-07T15:24:06.000+02:00","2026-04-17T12:42:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"320290061","328640049","PCB23621.sanef.groupe","PCB23621","6C:0B:5E:EE:B3:64","10.6.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB7","","'+02:00","2026-03-30T16:17:29.000+02:00","SANEF\SCHOOR","Cloud Agent","4c4ce14a-360c-4a22-9665-0c599c3e7903","2025-04-28T16:56:23.000+02:00","2026-04-17T12:41:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"350499537","340448121","PCB25826.sanef.groupe","PCB25826","28:95:29:22:6B:2C","10.205.0.36,192.168.1.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSQ","","'+02:00","2026-04-14T08:03:02.000+02:00","SANEF\lanquetin","Cloud Agent","6dc396e2-2b76-4777-bf93-ae5fa1493898","2025-08-11T09:54:39.000+02:00","2026-04-17T12:33:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"373790472","350326956","PCB24135.sanef.groupe","PCB24135","10:B6:76:97:D4:A6","10.12.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YJX","","'+02:00","2026-04-15T14:11:03.000+02:00","SANEF\staszak","Cloud Agent","edf557d0-611d-463c-acea-3d437a90ccae","2025-11-03T11:38:31.000+02:00","2026-04-17T12:26:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"327817179","","PCB23691.sanef.groupe","PCB23691","C8:6E:08:88:FD:83","10.205.0.190,192.168.1.130","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8J","","'+02:00","2026-03-30T08:48:11.000+02:00","SANEF\rebierre","Cloud Agent","0cce075c-d58a-48e2-8c4f-bf1abca0bf19","2025-05-28T16:21:54.000+02:00","2026-04-17T12:26:18.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"362517134","345791548","PCB24202.sanef.groupe","PCB24202","0A:00:27:00:00:0F, 10:B6:76:97:D4:DA","192.168.56.1,10.200.31.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLL","","'+02:00","2026-04-13T11:25:30.000+02:00","SANEF\leseur","Cloud Agent","207681d6-9376-4eaa-a7b8-00bff12b8a2f","2025-09-24T11:36:26.000+02:00","2026-04-17T12:26:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","254.0" +"373009533","349983734","PCB24250.sanef.groupe","PCB24250","24:FB:E3:BE:98:FD","10.8.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M4Q","","'+02:00","2026-04-15T08:08:28.000+02:00","SANEF\kieffer","Cloud Agent","70dea08a-3c65-40ef-a3e6-0bdca59323d3","2025-10-30T17:31:30.000+02:00","2026-04-17T12:18:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"343111830","337777518","PCB23668.sanef.groupe","PCB23668","6C:0B:5E:EE:A3:82","10.199.30.10,10.199.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBZ","","'+02:00","2026-04-13T08:23:51.000+02:00","SANEF\RICHEZ","Cloud Agent","fadaa611-7caf-4dd9-ba06-174cc1f05915","2025-07-18T11:56:26.000+02:00","2026-04-17T12:15:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"358926849","344346981","PCB24199.sanef.groupe","PCB24199","30:E3:A4:D6:F7:54","10.255.3.144","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YM0","","'+02:00","2026-04-16T15:49:22.000+02:00","SANEF\URIEN","Cloud Agent","24e534d6-863d-43be-bc25-f85fd0e84d30","2025-09-11T18:05:14.000+02:00","2026-04-17T12:07:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"304883316","322660835","PCB22706.sanef.groupe","PCB22706","D0:AD:08:AA:50:65","10.107.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764K3","","'+02:00","2026-04-09T14:39:30.000+02:00","SANEF\marien","Cloud Agent","1ffc00bf-d04b-4035-bff4-035f6d919070","2025-03-04T14:11:08.000+02:00","2026-04-17T11:59:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"379466112","352856241","PCB24134.sanef.groupe","PCB24134","30:E3:A4:D6:7A:F4","10.255.4.191,10.255.4.213","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5192YLD","","'+02:00","2026-03-30T08:49:50.000+02:00","SANEF\BUURON","Cloud Agent","94cacbf6-ba68-49fa-b13d-779c8ef20f15","2025-11-26T09:36:43.000+02:00","2026-04-17T11:56:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"321588534","329097665","PCB23658.sanef.groupe","PCB23658","6C:0B:5E:EE:A3:93","10.203.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LC0","","'+02:00","2026-04-13T09:41:55.000+02:00","SANEF\vivien","Cloud Agent","0972a77b-7b62-425c-bc18-0748c33291a1","2025-05-02T15:27:12.000+02:00","2026-04-17T11:54:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"334075657","334032217","PCB24124.sanef.groupe","PCB24124","C8:58:B3:0B:5B:85","10.205.0.96,10.255.3.239","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V68","","'+02:00","2026-04-09T14:41:59.000+02:00","SANEF\molle","Cloud Agent","30d073a6-0cd3-41a7-a0f0-7c120f9aa97d","2025-06-17T15:58:27.000+02:00","2026-04-17T11:51:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"320442963","328702493","PCB23630.sanef.groupe","PCB23630","C8:6E:08:88:FD:92","10.255.2.137,10.255.2.131","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB3","","'+02:00","2026-04-14T09:06:22.000+02:00","SANEF\VERETD","Cloud Agent","d1ca9bd2-6d02-4f20-81dd-ec4dffb661c0","2025-04-29T10:02:34.000+02:00","2026-04-17T11:51:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"307935084","323528166","PCB21134.sanef.groupe","PCB21134","D0:AD:08:AA:50:18","10.107.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GM","","'+02:00","2026-04-01T06:54:12.000+02:00","SANEF\fouquetc","Cloud Agent","cc2c599e-ad23-4ab5-9cca-ba19f3c2f27c","2025-03-13T15:32:34.000+02:00","2026-04-17T11:49:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"367842599","347946653","PCB21092.sanef.groupe","PCB21092","D0:AD:08:AA:50:BC","10.220.31.60","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MX","","'+02:00","2026-04-08T09:30:09.000+02:00","SANEF\gouriou","Cloud Agent","8a497423-5501-4615-8935-03db56486b01","2025-10-13T08:26:37.000+02:00","2026-04-17T10:36:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"384732663","355153096","SVP21046.sanef-int.adds","SVP21046","D0:AD:08:A6:12:A9","10.106.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YKK","","'+02:00","2026-01-27T18:38:34.000+02:00","Superviseur","Cloud Agent","3769e1ff-7777-425f-986e-1d1ac562b49c","2025-12-18T11:36:40.000+02:00","2026-04-17T10:14:42.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","686.0" +"327531276","","PCB23538.sanef.groupe","PCB23538","C8:6E:08:88:F0:63","10.205.0.216,192.168.1.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L76","","'+02:00","2026-03-30T08:40:05.000+02:00","SANEF\BOURICHJ","Cloud Agent","1c4143da-fbf6-43f6-a10b-7f3c07857212","2025-05-27T10:57:06.000+02:00","2026-04-17T10:11:59.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"329215988","","PCB22520.sanef.groupe","PCB22520","E4:60:17:CA:2F:FB","10.205.1.81,192.168.1.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L7","","'+02:00","2026-04-07T20:31:48.000+02:00","SANEF\SARRA-ext","Cloud Agent","592fefeb-1965-4899-bf7f-1d1d7be2be14","2025-06-02T15:26:48.000+02:00","2026-04-17T10:09:00.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331425157","","PCB23560.sanef.groupe","PCB23560","6C:0B:5E:EE:EC:C1","10.206.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L56","","'+02:00","2026-04-08T08:39:26.000+02:00","SANEF\francin","Cloud Agent","8f0d12cb-02db-408d-810f-1345fd747feb","2025-06-06T13:35:40.000+02:00","2026-04-17T09:48:31.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"322359750","329444244","PCB23780.sanef.groupe","PCB23780","6C:0B:5E:ED:82:E3","10.255.1.206,10.200.31.85","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H28","","'+02:00","2026-03-30T09:14:39.000+02:00","SANEF\bouelle","Cloud Agent","3f84cc53-ae7d-4647-b2ce-8bb722438a7f","2025-05-06T13:06:14.000+02:00","2026-04-17T09:44:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"327831271","","PCB23576.sanef.groupe","PCB23576","C8:6E:08:8A:3C:4D","192.168.1.75","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6G","","'+02:00","2026-03-31T09:30:57.000+02:00","SANEF\MARIE","Cloud Agent","6816c550-141c-4294-8f23-f67e1ddc5aac","2025-05-28T16:20:57.000+02:00","2026-04-17T09:34:57.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"323156866","329797273","PCB23732.sanef.groupe","PCB23732","C8:6E:08:49:2D:D4","192.168.1.70","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3B","","'+02:00","2026-04-01T07:57:44.000+02:00","SANEF\SQUELBUT","Cloud Agent","d69a508d-91d8-47a2-9b5f-3495282917ba","2025-05-09T10:11:24.000+02:00","2026-04-17T09:32:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","333.0" +"325249410","","PCB23625.sanef.groupe","PCB23625","6C:0B:5E:EE:BC:B0","10.12.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L70","","'+02:00","2026-04-02T15:08:30.000+02:00","SANEF\STABLO","Cloud Agent","aeb61516-7c53-4598-84ff-b8a457e4090d","2025-05-16T14:31:14.000+02:00","2026-04-17T09:31:35.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"322007233","329317302","PCB23640.sanef.groupe","PCB23640","C8:6E:08:8A:51:1A","10.205.0.51,192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L8D","","'+02:00","2026-04-16T12:10:43.000+02:00","SANEF\rivey","Cloud Agent","9f89097b-c3b5-40c6-a733-06c800182a7d","2025-05-05T10:54:21.000+02:00","2026-04-17T09:31:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","57.0" +"326195972","","PCB18057.sanef.groupe","PCB18057","64:D6:9A:1D:39:9A","10.205.0.251,192.168.1.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSZ","","'+02:00","2026-03-31T09:36:32.000+02:00","SANEF\BRAUN","Cloud Agent","45f57725-22f2-4b92-b055-54e385351129","2025-05-21T12:01:02.000+02:00","2026-04-17T09:24:43.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"193570115","240958806","PCB16118.sanef.groupe","PCB16118","58:6C:25:2B:1E:75","10.205.0.19,192.168.1.23","fe80::21b7:98ef:9ba5:d87b","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T76 Ver. 01.16.00","5CG13363YC","","'+02:00","2026-03-31T07:13:38.000+02:00","SANEF\TONNELIER","Cloud Agent","266fd1be-93e5-4fad-81c5-25b882fcd869","2023-10-16T08:53:23.000+02:00","2026-04-17T09:23:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"359809599","","PCB24330.sanef.groupe","PCB24330","10:B6:76:95:8B:B3, 0A:00:27:00:00:14","10.154.31.8,192.168.56.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZN","","'+02:00","2026-04-14T08:05:21.000+02:00","SANEF\DUPETIT","Cloud Agent","d4b0dd20-62d3-474c-a2be-78b701bfaee7","2025-09-15T17:56:01.000+02:00","2026-04-17T09:13:39.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360897033","345085432","PCB24191.sanef.groupe","PCB24191","30:E3:A4:D6:F7:5E","10.255.1.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YL4","","'+02:00","2026-04-16T08:06:36.000+02:00","SANEF\MORTIER","Cloud Agent","37f4d87b-6937-43ca-9ad4-b4f33e35d4ba","2025-09-18T10:30:53.000+02:00","2026-04-17T09:10:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"395089118","359299106","PCB18606.sanef.groupe","PCB18606","64:D6:9A:74:73:C2","192.168.1.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WD7","","'+02:00","2026-04-08T17:55:32.000+02:00","SANEF\pelzer","Cloud Agent","d7e845f7-ae9a-4dc0-ae79-f743c8f5d4a6","2026-01-26T14:09:44.000+02:00","2026-04-17T09:08:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","59.0" +"323994533","","PCB20628.sanef.groupe","PCB20628","BC:0F:F3:3D:28:3F","10.100.39.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DSK","","'+02:00","2026-04-08T11:04:17.000+02:00","SANEF\CUGNART","Cloud Agent","e6b318d8-d225-41ae-b98d-dd297b013e87","2025-05-12T10:37:39.000+02:00","2026-04-17T08:59:16.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"335930480","","PCB23645.sanef.groupe","PCB23645","C8:6E:08:88:E2:8F","10.205.0.108,192.168.1.115","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L57","","'+02:00","2026-03-30T07:15:57.000+02:00","SANEF\DASILVA","Cloud Agent","b9d2231f-4c57-4221-810a-d0ec7052cd9d","2025-06-24T11:13:13.000+02:00","2026-04-17T08:55:44.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"362056790","345553854","PCB24069.sanef.groupe","PCB24069","24:FB:E3:33:98:71","10.208.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5064388","","'+02:00","2026-04-15T07:13:03.000+02:00","SANEF\longo","Cloud Agent","0787aab4-0004-41aa-bfdf-60dd3405a8ce","2025-09-22T18:03:14.000+02:00","2026-04-17T08:52:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","336.0" +"383012443","354264780","PCB18251.sanef.groupe","PCB18251","5C:60:BA:59:E5:FD","10.106.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y99","8CC2250Y99","'+02:00","2026-03-28T09:15:34.000+02:00","SANEF\POLLETP","Cloud Agent","7c569e2c-91bc-49e0-9c01-0e3659662795","2025-12-10T14:57:55.000+02:00","2026-04-17T08:51:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","331.0" +"334073897","334032722","PCB24111.sanef.groupe","PCB24111","C8:58:B3:01:DA:97","10.107.31.39,192.168.1.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6L","","'+02:00","2026-04-03T11:36:28.000+02:00","SANEF\DEZ","Cloud Agent","8c9e3a5a-6020-4f52-97eb-647a7768fd0b","2025-06-17T16:04:27.000+02:00","2026-04-17T08:49:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"320289837","328638758","PCB22788.sanef.groupe","PCB22788","D0:AD:08:A7:28:15","10.1.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK5","8CC3502YK5","'+02:00","2026-04-15T15:42:15.000+02:00","SANEF\damis","Cloud Agent","ed50b7cc-86da-4776-ac9c-166f6c0d0ba3","2025-04-28T16:36:12.000+02:00","2026-04-17T08:48:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"326559813","","PCB23735.sanef.groupe","PCB23735","C8:6E:08:49:8F:0E","192.168.1.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3K","","'+02:00","2026-03-28T15:48:46.000+02:00","SANEF\dautun","Cloud Agent","bb26872f-b25c-45f5-b566-b86d18ae87ec","2025-05-22T12:16:20.000+02:00","2026-04-17T08:44:28.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"331143614","","PCB22465.sanef.groupe","PCB22465","F0:20:FF:9A:ED:22","10.205.0.143,192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HW7","","'+02:00","2026-04-15T08:02:13.000+02:00","SANEF\MUCKE","Cloud Agent","2ae122c0-335b-435b-afeb-fd623f644092","2025-06-05T15:06:42.000+02:00","2026-04-17T08:41:45.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"325044028","","PCB18026.sanef.groupe","PCB18026","64:D6:9A:1D:2B:99","192.168.1.122","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.14.00","5CG2376HTL","","'+02:00","2026-04-10T13:40:38.000+02:00","SANEF\GUERBER","Cloud Agent","616c79c9-a75c-4bbd-bbf8-1eb6b34f4ba9","2025-05-15T16:47:06.000+02:00","2026-04-17T08:39:39.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"332259638","","PCB21161.sanef.groupe","PCB21161","F0:20:FF:9A:DF:4E","10.205.0.132,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HV5","","'+02:00","2026-04-16T08:19:55.000+02:00","SANEF\cridelich","Cloud Agent","75795c4c-8911-45d9-8360-bdef755dd89f","2025-06-10T12:34:52.000+02:00","2026-04-17T08:34:05.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"360028776","","PCB18069.sanef.groupe","PCB18069","38:CA:84:52:09:4C","10.200.31.73","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HTP","","'+02:00","2026-03-30T18:40:31.000+02:00","SANEF\yennek","Cloud Agent","6b6b9170-d990-49d6-bff1-8c3ccd1823ff","2025-09-16T12:52:56.000+02:00","2026-04-17T08:31:22.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"325748195","","PCB18619.sanef.groupe","PCB18619","64:D6:9A:74:76:29","10.205.0.67,192.168.1.118","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WCW","","'+02:00","2026-03-31T08:18:39.000+02:00","SANEF\michelc","Cloud Agent","c68e95a3-8bb4-4a45-b2d7-533937e57c2e","2025-05-19T16:10:54.000+02:00","2026-04-17T08:29:24.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331137812","","PCB23606.sanef.groupe","PCB23606","C8:6E:08:8A:45:0D","192.168.1.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4C","","'+02:00","2026-04-07T10:00:27.000+02:00","SANEF\omont","Cloud Agent","a42cc51d-4344-4509-be7f-405fe9d67f20","2025-06-05T14:47:26.000+02:00","2026-04-17T08:12:35.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"332249862","","PCB17796.sanef.groupe","PCB17796","28:C5:D2:9D:44:7D","10.189.31.1,10.255.4.220","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y4S","","'+02:00","2026-03-30T16:48:21.000+02:00","SANEF\DELESQUES","Cloud Agent","547ac993-a66c-4678-a2e6-d9e300fc5d90","2025-06-10T11:04:21.000+02:00","2026-04-17T08:11:42.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360073185","","PCB18082.sanef.groupe","PCB18082","64:D6:9A:21:81:C6","10.205.0.25,192.168.1.119","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRG","","'+02:00","2026-04-10T10:27:56.000+02:00","SANEF\debrabander","Cloud Agent","af1cfe98-7d3e-4076-ab6f-9e29aaa538e3","2025-09-16T15:44:21.000+02:00","2026-04-17T08:05:31.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"326811958","","PCB18715.sanef.groupe","PCB18715","BC:0F:F3:3D:48:90","10.5.30.23,10.255.3.159","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224D2Z","","'+02:00","2026-04-08T16:44:07.000+02:00","SANEF\magnien","Cloud Agent","357a6a17-553e-413a-b562-12b2c2b5fc20","2025-05-23T10:02:59.000+02:00","2026-04-17T08:03:47.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"331406250","","PCB23518.sanef.groupe","PCB23518","6C:0B:5E:EE:A3:61","10.255.4.145,10.209.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBC","","'+02:00","2026-04-07T08:10:39.000+02:00","SANEF\hardys","Cloud Agent","58f3b767-733f-4067-820d-f99f3b1ae1a5","2025-06-06T11:38:06.000+02:00","2026-04-17T08:03:37.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"334676791","","PCB24158.sanef.groupe","PCB24158","DC:90:09:E1:3A:61","192.168.1.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XS","","'+02:00","2026-01-02T18:51:00.000+02:00","SANEF\verglas","Cloud Agent","030adae6-652f-4c0a-9f2f-240552c52f7e","2025-06-19T11:14:54.000+02:00","2026-04-17T07:58:50.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"334645335","","PCB24080.sanef.groupe","PCB24080","24:FB:E3:33:98:82","10.105.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506438T","","'+02:00","2026-04-16T10:18:01.000+02:00","SANEF\ASPEELE","Cloud Agent","927070ed-9111-4e91-9b84-47262f9a3a10","2025-06-19T09:54:05.000+02:00","2026-04-17T07:54:00.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"325961873","","PCB20746.sanef.groupe","PCB20746","58:1C:F8:E9:B9:DE","10.205.0.35,192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DSG","","'+02:00","2026-03-31T16:49:41.000+02:00","SANEF\VAUCOULEUR","Cloud Agent","783166db-fa75-4625-a093-3ab2b76c2de7","2025-05-20T14:18:26.000+02:00","2026-04-17T07:41:12.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"332261798","","PCB21301.sanef.groupe","PCB21301","30:F6:EF:A5:F8:D9","10.12.31.28,10.255.2.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJP","","'+02:00","2026-04-15T07:35:23.000+02:00","SANEF\jaubert","Cloud Agent","05fd3794-ec04-4fb2-896e-71461e1e19a5","2025-06-10T12:25:09.000+02:00","2026-04-17T07:40:56.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331188763","","PCB17760.sanef.groupe","PCB17760","28:C5:D2:9F:C3:74","10.255.4.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4D","","'+02:00","2026-04-13T10:56:43.000+02:00","SANEF\TRAVERS","Cloud Agent","49498f13-1614-4cf0-8ee7-70d27191866a","2025-06-05T16:54:52.000+02:00","2026-04-17T07:35:11.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"358928583","344341860","PCB24212.sanef.groupe","PCB24212","70:15:FB:7B:DE:14","10.255.4.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZS","","'+02:00","2026-03-30T08:41:41.000+02:00","SANEF\stephanp","Cloud Agent","81b8bdd2-0128-4d5f-b815-0ea9fe7e884a","2025-09-11T17:23:13.000+02:00","2026-04-17T07:27:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","342.0" +"334726617","","PCB24076.sanef.groupe","PCB24076","08:B4:D2:2A:06:57","10.205.0.4,192.168.1.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506438J","","'+02:00","2026-04-16T08:36:52.000+02:00","SANEF\MISOIRE","Cloud Agent","12bed82c-c412-4e3d-92d9-05b4c4df6e5c","2025-06-19T16:01:15.000+02:00","2026-04-17T07:27:12.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"340405417","","PCB21297.sanef.groupe","PCB21297","30:F6:EF:A5:EB:14","10.101.243.69,192.168.1.61","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKN","","'+02:00","2026-04-02T09:55:20.000+02:00","SANEF\THIBAULT","Cloud Agent","0a5e8773-25eb-4de7-a091-7add3996d6ce","2025-07-09T10:31:37.000+02:00","2026-04-17T06:52:39.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331465240","","PCB21176.sanef.groupe","PCB21176","F0:20:FF:9B:09:33","10.255.3.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVL","","'+02:00","2026-04-15T07:22:25.000+02:00","SANEF\PREUVOT","Cloud Agent","0f2de273-bf2d-449e-a10a-5eeb2dfbf847","2025-06-06T16:18:15.000+02:00","2026-04-17T06:49:18.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"334478188","","PCB24088.sanef.groupe","PCB24088","24:FB:E3:33:98:68","10.100.39.119","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437Z","","'+02:00","2026-04-13T08:20:21.000+02:00","SANEF\CASCALES","Cloud Agent","0fe14d9c-73f9-4107-9dc7-ff91cf61ba7c","2025-06-18T17:19:32.000+02:00","2026-04-17T03:59:49.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"337000887","","PCB17798.sanef.groupe","PCB17798","28:C5:D2:9E:44:DB","10.205.0.39,192.168.1.114","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3V","","'+02:00","2026-04-15T21:51:32.000+02:00","SANEF\azouz","Cloud Agent","0249341c-e7f1-4ef0-91cb-0206e147aefa","2025-06-27T12:05:38.000+02:00","2026-04-17T02:22:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"213858625","251128419","spburadpe1.sanef.groupe","SPBURADPE1","20:67:7C:F1:F2:04","10.200.30.9","fe80::c9ff:700b:6cc1:5fdd","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Computers / Server","HPE ProLiant DL360 G10 Server","8","2594","Intel(R) Xeon(R) Silver 4112 CPU @ 2.60GHz","16042","HPE U32","CZJ903090D","","'+02:00","2026-03-31T11:16:40.000+02:00","SANEF.GROUPE\atrad@sanef.com","Cloud Agent","edc641e9-f6b7-4a02-a235-ef406bc6401e","2024-02-05T20:21:47.000+02:00","2026-04-16T23:09:33.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,BDD-SQL DYN,OS-WIN-SRV DYN,SCCM","523.0" +"350056341","340248161","PCB25802.sanef.groupe","PCB25802","F8:ED:FC:AB:02:51","10.101.243.147,10.205.0.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT3","","'+02:00","2026-04-14T21:25:13.000+02:00","SANEF\TONNELIER","Cloud Agent","7cf65ed9-6c88-4087-916f-3cb43365d78f","2025-08-08T15:21:05.000+02:00","2026-04-16T22:04:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","59.0" +"281032077","305755502","PCB21335.sanef.groupe","PCB21335","D0:AD:08:AA:50:A3","10.202.31.36,169.254.41.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M3","","'+02:00","2026-04-06T08:46:32.000+02:00","SANEF\laronche","Cloud Agent","12bff466-5ed2-40d6-8efb-95bb9899678d","2024-11-21T13:44:45.000+02:00","2026-04-16T19:48:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"323181432","329805755","PCB23718.sanef.groupe","PCB23718","C8:6E:08:49:2D:89","10.205.1.3,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H47","","'+02:00","2026-04-16T17:56:36.000+02:00","SANEF\ham","Cloud Agent","2a42c4db-be7c-4da1-818c-985ec922f53f","2025-05-09T11:55:35.000+02:00","2026-04-16T19:34:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"327302925","331522081","PCB20637.sanef.groupe","PCB20637","58:1C:F8:E9:51:9C","10.100.38.26,192.168.1.179","2a01:e0a:f9e:f900:68a2:18fb:8a34:4eb5,2a01:e0a:f9e:f900:75a2:ea0f:c630:faa8,fe80::3415:dc3a:ffe4:1e6","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T37 Ver. 01.12.00","5CG3224DRL","","'+02:00","2026-04-16T08:58:52.000+02:00","SANEF\randriamasy","Cloud Agent","53b26fca-8e7c-4fd5-b555-4bf5d38d9e3c","2025-05-26T10:11:50.000+02:00","2026-04-16T19:22:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","345.0" +"322631139","329602260","PCB21285.sanef.groupe","PCB21285","30:F6:EF:A3:F0:48","10.4.31.5,10.10.152.128","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKL","","'+02:00","2026-04-16T17:06:56.000+02:00","SANEF\berger","Cloud Agent","034f2675-daaa-493f-b267-161dc5d2a208","2025-05-07T15:48:10.000+02:00","2026-04-16T18:04:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","146.0" +"322325528","329427042","PCB23553.sanef.groupe","PCB23553","C8:6E:08:89:0A:FD","10.205.0.141,192.168.1.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L82","","'+02:00","2026-04-08T09:08:30.000+02:00","SANEF\bouyer","Cloud Agent","bb7c5295-9c63-489e-91c9-ddb987be62f3","2025-05-06T10:33:22.000+02:00","2026-04-16T17:57:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"416486588","367839566","PCB22890.sanef.groupe","PCB22890","D0:AD:08:A3:7B:D0","10.252.4.50","fe80::3a20:5cd1:ddfb:7f97","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.21.00","8CC3502YW3","","'+02:00","2026-04-16T16:23:09.000+02:00","","Cloud Agent","599fd025-c0f9-462f-a097-55133c55a380","2026-04-16T16:16:13.000+02:00","2026-04-16T17:05:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"354674441","342489343","PCB21023.sanef.groupe","PCB21023","3E:6E:8C:6A:9E:34","10.205.0.52,10.143.115.116","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD336NWDT","","'+02:00","2026-04-15T14:15:42.000+02:00","SANEF\SCHLECK-ext","Cloud Agent","43233086-beed-4583-8a1f-249f8d66c95d","2025-08-26T16:02:47.000+02:00","2026-04-16T17:02:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"195400913","241773072","vpbotatvv1.sanef.groupe","","00:50:56:90:02:fb","10.41.23.11","fe80::250:56ff:fe90:2fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 d4 dd 86 65 f5 16-0b 8c 6e ec d1 4f 4a 7c","No Asset Tag","'+02:00","2026-04-16T15:47:04.000+02:00","cybreconcile","Cloud Agent","dcecd626-4a64-423b-b159-743ec40ae678","2023-10-24T23:32:36.000+02:00","2026-04-16T16:37:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Flux Libre,Production,flux_libre","140.0" +"412581119","366323100","PCB24095.sanef.groupe","PCB24095","70:15:FB:7E:20:DE","10.100.39.74,10.255.3.243","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYN","","'+02:00","2026-04-15T17:05:42.000+02:00","SANEF\TRON","Cloud Agent","9014c42e-4239-4f13-9ac2-487fda898227","2026-03-31T09:45:45.000+02:00","2026-04-16T16:19:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","36.0" +"416465486","367837318","PCV22761.sanef-int.adds","PCV22761","D0-AD-08-A3-E7-A5","10.5.7.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","8CC3502YL4","","'+02:00","","","Cloud Agent","bd7133bf-b88f-4a49-bcb0-7c9b1eec1d6a","2026-04-16T15:50:13.000+02:00","2026-04-16T15:50:12.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"376636329","351615047","PCB24073.sanef.groupe","PCB24073","08:B4:D2:2A:09:22","10.255.4.155","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5064381","","'+02:00","2026-04-15T13:11:32.000+02:00","SANEF\vaniet","Cloud Agent","dfb8979e-32da-41e5-bae5-54bec6340f81","2025-11-14T13:15:56.000+02:00","2026-04-16T15:31:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"317594434","327674261","PCB23774.sanef.groupe","PCB23774","C8:6E:08:47:18:E6","192.168.1.64,10.207.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4H","","'+02:00","2026-03-30T15:42:42.000+02:00","SANEF\petitjer","Cloud Agent","69d776cb-3a13-4145-9b9a-40a876801bbb","2025-04-18T10:45:08.000+02:00","2026-04-16T15:22:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","61.0" +"346045642","338990285","PCB18090.sanef.groupe","PCB18090","56:6B:BB:B6:7B:97","10.101.243.59,192.168.1.69","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HTC","","'+02:00","2026-04-14T09:18:28.000+02:00","SANEF\RENARD","Cloud Agent","ae9aa3d2-a32d-4fea-883d-a05ccf5d6ee9","2025-07-29T10:14:07.000+02:00","2026-04-16T15:11:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"410541366","365360992","PCB17927.sanef.groupe","PCB17927","70:A8:D3:85:76:4A","10.200.31.42,10.255.3.40","fe80::cd55:44a3:abc7:df25","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.14.00","5CG2172481","","'+01:00","2026-03-25T16:58:24.000+02:00","SANEF\carond","Cloud Agent","2051390d-5fbb-4c92-b11b-52dbb0abe96e","2026-03-23T10:34:00.000+02:00","2026-04-16T15:09:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","342.0" +"362903921","345904838","PCB24068.sanef.groupe","PCB24068","94:B6:09:9D:2F:BF","10.255.3.202","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5162X3C","","'+02:00","2026-03-10T16:05:04.000+02:00","SANEF\mahieux","Cloud Agent","2956ccfa-ab42-411a-add7-3b2e1a4baa14","2025-09-25T09:42:59.000+02:00","2026-04-16T15:06:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","139.0" +"361943237","345509524","SVP22662.sanef-int.adds","SVP22662","D0:AD:08:A4:73:BB","10.105.18.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764CV","","'+02:00","2026-04-14T08:59:57.000+02:00","Superviseur","Cloud Agent","c206e960-5ea2-4921-9bb0-8012a45d6b5f","2025-09-22T11:16:22.000+02:00","2026-04-16T15:06:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"389545130","357332762","PCB17891.sanef.groupe","PCB17891","70:A8:D3:85:C6:5E","10.255.3.224","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724CY","","'+02:00","2026-04-09T11:20:11.000+02:00","SANEF\derancourtv","Cloud Agent","fa8d067d-5e6e-430a-87bf-d71894388bf2","2026-01-08T11:06:48.000+02:00","2026-04-16T15:04:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","149.0" +"356865778","343513095","PCB20657.sanef.groupe","PCB20657","BC:0F:F3:3D:08:D9","10.255.1.232,10.101.243.154","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQ3","","'+02:00","2026-03-31T12:40:12.000+02:00","SANEF\THIBOUT","Cloud Agent","fbe9ea79-1202-4b12-a16a-4aa985107535","2025-09-04T11:47:05.000+02:00","2026-04-16T15:04:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"415979507","367683102","PCM13456.sanef.groupe","PCM13456","C8:D9:D2:33:54:35","10.4.50.250","fe80::20fb:47a2:ed39:d904","Windows / Client","Microsoft Windows 10 Pro (22H2 Build 19045.2965) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G4 Desktop","6","","","7971","","CZC924CX9L","CZC924CX9L","'+02:00","2026-04-15T10:25:12.000+02:00","SANEF\dewilde","Cloud Agent","b18e9ad8-360c-4d3f-b352-117b806fa38c","2026-04-15T10:29:35.000+02:00","2026-04-16T15:02:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","345.0" +"404391139","362817042","SVP22625.sanef-int.adds","SVP22625","D0:AD:08:A4:73:75","10.112.3.26,10.92.6.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764J6","","'+01:00","2026-02-26T11:27:41.000+02:00","Superviseur","Cloud Agent","dc47a802-2047-4b6b-a8b5-885e81de8124","2026-02-26T12:13:50.000+02:00","2026-04-16T14:54:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"208798629","248759583","PCB20616.sanef.groupe","PCB20616","58:1C:F8:EA:00:47","10.255.2.236","fe80::e61:e972:db98:c374","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.5737) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.12.00","5CG3224D3V","","'+02:00","2026-04-06T14:26:28.000+02:00","SANEF\clavons","Cloud Agent","62860edc-f6f6-40b7-a20e-2a6fffbf6525","2024-01-10T14:47:37.000+02:00","2026-04-16T14:53:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"187719047","242979015","nvr-spare-mon","NVR-SPARE-MON","00:50:56:82:F4:AD","10.210.27.252","fe80::e93c:8368:73c2:e341","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 c1 69 93 94 35 ef-9e 76 dc ad 91 fc fb a8","NoAssetTag","'+02:00","2026-01-28T13:06:14.000+02:00","Administrateur","Cloud Agent","46c7b828-103e-472e-ad79-c05498fd6117","2023-09-13T19:53:46.000+02:00","2026-04-16T14:47:46.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,Cloud Agent,DEX,OS-WIN-SRV DYN","508.0" +"411667686","365757046","PCB18737.sanef.groupe","PCB18737","BC:0F:F3:3D:68:45","10.4.31.76","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CS8","","'+02:00","2026-03-30T19:10:52.000+02:00","SANEF\nowak-ext","Cloud Agent","172cfb48-3efe-4d7e-8345-addd53247b2a","2026-03-26T18:18:05.000+02:00","2026-04-16T14:46:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"368819283","348253309","PCB18111.sanef.groupe","PCB18111","38:CA:84:52:67:E4","10.205.0.13,10.200.31.67","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HR5","","'+02:00","2026-03-30T10:05:29.000+02:00","narima.kaibou@bipandgo.com","Cloud Agent","c5ef842e-72cd-4fba-8dee-9a4f7fb62037","2025-10-15T14:52:05.000+02:00","2026-04-16T14:31:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"361912721","345504584","PCB24091.sanef.groupe","PCB24091","24:FB:E3:35:30:B9","10.100.39.75","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5085GGQ","","'+02:00","2026-04-15T07:49:01.000+02:00","SANEF\DEROCH","Cloud Agent","e21387d2-9a34-4513-a8ce-3e42658abd12","2025-09-22T10:39:29.000+02:00","2026-04-16T14:29:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"334948979","334365197","PCB24067.sanef.groupe","PCB24067","24:FB:E3:33:98:5B","10.155.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437K","","'+02:00","2026-04-13T16:30:05.000+02:00","SANEF\lecoustre","Cloud Agent","ca33584e-7aa0-4b74-8952-9eaefdac7f58","2025-06-20T10:53:19.000+02:00","2026-04-16T14:27:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"415400907","367447959","PCB18064.sanef.groupe","PCB18064","64:D6:9A:21:81:D0","10.205.0.17,10.255.1.213","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HTB","","'+02:00","2026-04-15T14:59:42.000+02:00","SANEF\randriamasy","Cloud Agent","787e1851-4782-4765-b1b3-524402a741eb","2026-04-13T08:23:37.000+02:00","2026-04-16T14:25:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"320192003","328622099","PCB23550.sanef.groupe","PCB23550","C8:6E:08:8A:50:CA","10.255.3.225,192.168.1.93","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7K","","'+02:00","2026-04-16T08:01:27.000+02:00","SANEF\LHOMME","Cloud Agent","3589ba89-bbf2-4f89-80f0-b33438c1a483","2025-04-28T13:51:47.000+02:00","2026-04-16T14:21:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"322582324","329577380","PCB22338.sanef.groupe","PCB22338","D0:AD:08:A3:7B:5B","10.219.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRJ","8CC3502YRJ","'+02:00","2026-04-10T09:23:02.000+02:00","frederic.bobee@sapn.fr","Cloud Agent","ccd2319b-503f-4d5b-ac0b-eecf20d3b7a5","2025-05-07T11:24:40.000+02:00","2026-04-16T14:08:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"322364764","329430850","PCB23564.sanef.groupe","PCB23564","C8:6E:08:8A:45:53","10.200.31.16,192.168.1.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L9T","","'+02:00","2026-03-19T09:28:26.000+02:00","SANEF\grenierv","Cloud Agent","5756bc75-fee2-4b62-b92a-029765842af4","2025-05-06T11:15:00.000+02:00","2026-04-16T13:57:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"318392781","328021212","PCB23721.sanef.groupe","PCB23721","C8:6E:08:47:18:D2","10.255.4.139,10.255.4.153","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4G","","'+02:00","2026-04-10T16:01:08.000+02:00","SANEF\lemaireg","Cloud Agent","87a39f58-da05-41ee-b679-341c6b313979","2025-04-22T10:41:20.000+02:00","2026-04-16T13:46:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"352191310","341489675","PCB23768.sanef.groupe","PCB23768","C8:6E:08:47:8B:96","10.205.0.202,192.168.1.96","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2D","","'+02:00","2026-04-07T08:30:50.000+02:00","SANEF\bregolis","Cloud Agent","c57e2582-bf90-487c-bbe4-0519a320aac6","2025-08-18T15:09:15.000+02:00","2026-04-16T13:40:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"411743506","365777427","SVP22515.sanef-int.adds","SVP22515","D0:AD:08:A4:73:5F","10.182.12.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764H1","","'+02:00","2026-04-16T08:31:22.000+02:00","Superviseur","Cloud Agent","55060703-05c5-4ea6-8ef9-a553ec8be1a2","2026-03-26T23:52:23.000+02:00","2026-04-16T11:47:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"185110186","235936035","ls-spare-mon","LS-SPARE-MON","00:50:56:82:8F:3B","10.210.22.254","fe80::e793:df05:4eff:4319","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 f1 38 00 2a bb 65-3d 93 0a b4 b2 c1 ab c9","NoAssetTag","'+02:00","2026-03-05T16:55:54.000+02:00","gare","Cloud Agent","8983dcb9-851c-41c6-8a3f-f19e7c6a4d87","2023-08-29T16:08:38.000+02:00","2026-04-16T11:29:00.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,SVP,Péage","680.0" +"415791403","367597485","PCB25878.sanef.groupe","PCB25878","4C:CF:7C:0A:6C:6A","10.252.4.8","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342233","","'+02:00","2026-04-14T18:49:18.000+02:00","","Cloud Agent","74efd903-deec-44ba-ab0e-ac1cdc6bc2b4","2026-04-14T15:09:16.000+02:00","2026-04-16T11:19:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","254.0" +"372479786","349746260","PBM21153.sanef-int.adds","PBM21153","D0:AD:08:A3:7B:E9","10.5.50.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YVK","","'+02:00","2026-03-27T09:52:35.000+02:00","Operateur","Cloud Agent","bbb9dafb-7927-437d-9771-a0d25157b621","2025-10-28T18:33:17.000+02:00","2026-04-16T11:14:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"397353695","360329955","SVP22630.sanef-int.adds","SVP22630","D0:AD:08:A2:AE:58","10.82.9.29,10.7.32.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764FT","","'+02:00","2026-04-10T12:07:21.000+02:00","Superviseur","Cloud Agent","34df7ef8-9659-40e0-8d35-1a6ff64c446e","2026-02-04T11:11:24.000+02:00","2026-04-16T10:54:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"411840560","365815055","PCV20924.sanef-int.adds","PCV20924","BC:0F:F3:88:FD:33","10.1.27.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LMJ","","'+02:00","2026-03-27T10:01:09.000+02:00","Operateur","Cloud Agent","bf914232-fef7-421c-a473-d6d5201af858","2026-03-27T10:02:24.000+02:00","2026-04-16T10:19:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"359734091","","PCB24193.sanef.groupe","PCB24193","10:B6:76:8A:F3:89","10.255.1.224,10.182.8.199","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLH","","'+02:00","2026-04-15T14:44:45.000+02:00","SANEF\LOUTON","Cloud Agent","796dbbd1-741f-499f-a400-dc96a7fac8a1","2025-09-15T10:18:28.000+02:00","2026-04-16T10:08:12.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"325715706","","PCB20693.sanef.groupe","PCB20693","58:1C:F8:EA:00:0B","10.255.2.193","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DR3","","'+02:00","2026-04-13T12:37:58.000+02:00","SANEF\MARTINP","Cloud Agent","b44e4156-35a8-455d-91dc-cae36c0ee823","2025-05-19T14:20:47.000+02:00","2026-04-16T09:10:52.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325013557","","PCB18023.sanef.groupe","PCB18023","38:CA:84:52:F8:A3","10.100.39.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HV2","","'+02:00","2026-03-31T18:43:22.000+02:00","SANEF\DRUON","Cloud Agent","2db7c23e-f3b3-4e73-a504-1b3c63ea534d","2025-05-15T15:48:13.000+02:00","2026-04-16T07:43:52.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"384553215","355070650","PCV21266.sanef-int.adds","PCV21266","D0:AD:08:1F:7E:D8","10.252.17.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3451GV3","","'+02:00","2026-03-31T15:14:02.000+02:00","Operateur","Cloud Agent","54496b5b-854c-49c5-8826-d79d38749cf4","2025-12-17T16:31:11.000+02:00","2026-04-16T07:34:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"408223923","364415845","PCB22281.sanef.groupe","PCB22281","D0:AD:08:A3:7C:66","10.203.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502Z00","8CC3502Z00","'+02:00","2026-03-28T09:12:33.000+02:00","SANEF\mathieuf","Cloud Agent","06fcdaff-e820-47cc-b113-4f9bef40de17","2026-03-13T11:59:39.000+02:00","2026-04-16T03:17:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","146.0" +"320298027","328640816","PCB23533.sanef.groupe","PCB23533","C8:6E:08:8A:40:8F","10.205.0.104,192.168.1.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6X","","'+02:00","2026-03-30T09:17:16.000+02:00","SANEF\boulfroy","Cloud Agent","a4dc864d-1904-4715-a016-bb9eb96b0855","2025-04-28T17:08:47.000+02:00","2026-04-15T23:54:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"326832593","331299430","PCB23635.sanef.groupe","PCB23635","C8:6E:08:8A:45:3F","10.255.3.191","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7G","","'+02:00","2026-04-07T19:24:59.000+02:00","SANEF\provin","Cloud Agent","3b9bc440-29a2-4cde-98f7-f4a9b56b8537","2025-05-23T12:41:11.000+02:00","2026-04-15T22:18:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"273781743","302014440","PCB17201.sanef.groupe","PCB17201","58:6C:25:2B:14:A2","10.205.1.16,192.168.1.82","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.23.00","5CG133658Z","","'+02:00","2026-03-26T18:25:14.000+02:00","SANEF\GARCIAL-ext","Cloud Agent","02472cc7-22de-4d2c-a63e-54ed8427b4b2","2024-10-22T14:38:15.000+02:00","2026-04-15T20:12:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"408236298","364433256","PCB22348.sanef.groupe","PCB22348","D0:AD:08:A3:7B:4A","10.202.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRZ","8CC3502YRZ","'+02:00","2026-03-28T09:12:09.000+02:00","SANEF\noblet","Cloud Agent","3f847f79-de25-47a9-b218-83b31581d1e0","2026-03-13T15:33:40.000+02:00","2026-04-15T17:56:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","146.0" +"334385383","334126160","PCB24108.sanef.groupe","PCB24108","C8:58:B3:0B:59:8C","10.104.31.3,10.255.2.226","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V69","","'+02:00","2026-03-30T09:27:53.000+02:00","SANEF\VANDEPUTTE","Cloud Agent","bc89a3d7-5e2e-4fcf-b381-7f82cfb47e6b","2025-06-18T10:51:16.000+02:00","2026-04-15T15:37:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","49.0" +"361954461","345519234","PCB24204.sanef.groupe","PCB24204","10:B6:76:97:D4:CD","10.206.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YL5","","'+02:00","2026-04-15T08:13:20.000+02:00","SANEF\brevera","Cloud Agent","c87f2e30-4e2f-48e7-b57a-9f8c79b35d27","2025-09-22T12:53:09.000+02:00","2026-04-15T15:23:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","249.0" +"325015761","","PCB20748.sanef.groupe","PCB20748","58:1C:F8:EA:00:92","192.168.1.62,10.205.0.150","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3Y","","'+02:00","2026-04-13T08:52:04.000+02:00","SANEF\fontaine","Cloud Agent","f349dcfc-7ec4-4631-aa18-cd0e000d072e","2025-05-15T16:00:47.000+02:00","2026-04-15T15:12:43.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"375660754","351161761","PAD17110.sanef.groupe","PAD17110","F4:26:79:47:94:29, C8:5A:CF:B8:F2:76","10.255.2.172,10.20.31.5","fe80::46d9:15e9:9c20:5d17,fe80::d9e6:3740:f305:acf9","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP ProBook 640 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T74 Ver. 01.08.01","5CD15181MK","","'+02:00","2026-04-15T14:58:29.000+02:00","SANEF\LAD01483","Cloud Agent","88df9cf6-9884-4fa1-af10-d71cd6c6ba3e","2025-11-10T17:47:19.000+02:00","2026-04-15T15:06:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"385562639","355746923","PCB23578.sanef.groupe","PCB23578","C8:6E:08:88:FD:6A","10.203.31.7,10.255.2.169","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBG","","'+02:00","2026-03-31T10:17:56.000+02:00","SANEF\mutel","Cloud Agent","f72ed4a3-55aa-47ee-9814-8236313e4a6a","2025-12-22T15:01:56.000+02:00","2026-04-15T13:55:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"299204442","319643146","VMB12156.sanef.groupe","VMB12156","00:50:56:9C:74:60","10.45.13.207","fe80::6b80:cd98:b342:714e","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 37 1a 69 cf 88 6c-e5 99 eb 52 79 45 f9 32","NoAssetTag","'+02:00","2025-11-29T09:05:26.000+02:00","SANEF\ARNOULD-ext","Cloud Agent","59aca380-8721-471c-8923-58f5fd2f2bbb","2025-02-10T17:27:37.000+02:00","2026-04-15T13:48:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"331167010","","PCB18712.sanef.groupe","PCB18712","BC:0F:F3:3D:F7:04","10.12.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224CRW","","'+02:00","2026-03-29T09:21:06.000+02:00","SANEF\dautelc","Cloud Agent","0b2deb87-1742-4794-9144-c33b63fcd504","2025-06-05T15:33:37.000+02:00","2026-04-15T13:38:05.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"320048077","328599590","PCB24025.sanef.groupe","PCB24025","EC:4C:8C:C1:88:CE","192.168.10.104,10.255.4.155","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF4","","'+02:00","2026-04-07T13:43:19.000+02:00","SANEF\kuchar","Cloud Agent","c9d0e4ed-8e5f-403a-ad68-b0a98b85d10e","2025-04-28T10:09:14.000+02:00","2026-04-15T12:55:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"360922279","345098813","SVP21083.sanef-int.adds","SVP21083","64:4E:D7:9E:D0:9B","10.212.26.27,10.212.39.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5909) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD336NWF4","","'+02:00","2026-04-08T12:15:09.000+02:00","Superviseur","Cloud Agent","b557de2d-c4a3-4688-af94-41587098919a","2025-09-18T13:22:08.000+02:00","2026-04-15T12:50:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"395849920","359642136","PCB24165.sanef.groupe","PCB24165","DC:90:09:E1:8B:B0","10.255.4.226","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XW","","'+02:00","2026-04-01T14:34:44.000+02:00","SANEF\omonts","Cloud Agent","a1e0c03a-d5c9-473e-b41a-bdafcc77985d","2026-01-29T12:07:48.000+02:00","2026-04-15T11:49:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"280778017","305600515","PCB21333.sanef.groupe","PCB21333","E4:60:17:CB:E7:1A","10.205.0.71,192.168.1.201","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764G0","","'+02:00","2026-04-03T09:57:19.000+02:00","SANEF\roberta","Cloud Agent","db08bee7-6ede-4e47-90ce-530d76b63c4a","2024-11-20T12:15:03.000+02:00","2026-04-15T11:38:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"347820161","339379527","PCB18114.sanef.groupe","PCB18114","38:CA:84:52:49:4A","10.205.0.12,10.101.243.175","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HTN","","'+02:00","2026-03-28T12:31:14.000+02:00","SANEF\NOMMAY-ext","Cloud Agent","54357094-730f-41f9-83fb-e156cf690985","2025-07-31T10:50:01.000+02:00","2026-04-15T11:32:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"320061791","328599323","PCB23569.sanef.groupe","PCB23569","C8:6E:08:88:FD:56","10.205.0.172,192.168.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L78","","'+02:00","2026-02-05T00:42:06.000+02:00","SANEF\spinner","Cloud Agent","2490e9dd-6223-400b-8633-9fd345d11808","2025-04-28T10:07:50.000+02:00","2026-04-15T11:11:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"331194562","","PCB17762.sanef.groupe","PCB17762","28:C5:D2:9F:C3:C9","10.255.3.230","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y3W","","'+02:00","2026-03-31T18:25:51.000+02:00","SANEF\boulefroy","Cloud Agent","ce1871d8-fd26-42ba-8996-4f8e4f048941","2025-06-05T17:26:18.000+02:00","2026-04-15T10:57:55.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"322342973","329422566","PCB22791.sanef.groupe","PCB22791","D0:AD:08:A3:E6:D4","10.5.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPX","8CC3502YPX","'+02:00","2026-04-12T13:25:49.000+02:00","SANEF\kociolekn","Cloud Agent","c3554890-686d-4342-ae02-d558ad204316","2025-05-06T09:49:02.000+02:00","2026-04-15T09:57:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"327544297","","PCB23537.sanef.groupe","PCB23537","C8:6E:08:88:F0:D1","10.255.4.227,192.168.1.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9V","","'+02:00","2026-04-03T09:57:57.000+02:00","SANEF\aubryv","Cloud Agent","2f6d5976-d8d4-4fe2-9828-3ab7f43e20cd","2025-05-27T12:12:22.000+02:00","2026-04-15T09:00:04.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"322118035","329343790","PCB23592.sanef.groupe","PCB23592","6C:0B:5E:EE:BC:A5","10.205.0.25,10.200.31.69","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7M","","'+02:00","2026-03-30T15:05:27.000+02:00","sebastien.david@sapn.fr","Cloud Agent","aab0f28b-5a73-4a18-872a-cd4b24bb48b0","2025-05-05T15:53:33.000+02:00","2026-04-14T17:57:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","147.0" +"415792290","367604464","PCB18191.sanef.groupe","PCB18191","64:4E:D7:0F:F2:7C","10.252.4.44","fe80::7b1:b88f:ba98:8528","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584)","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","","","15568","HP V74 Ver. 01.11.00","5CD3295RYH","","'+02:00","2026-04-14T16:39:34.000+02:00","","Cloud Agent","334bae13-e697-446d-8801-7d39e934711e","2026-04-14T16:30:16.000+02:00","2026-04-14T16:51:50.000+02:00","64 bits","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"413292284","366610510","PCB22720.sanef.groupe","PCB22720","D0:AD:08:AA:50:76","10.220.30.12,10.220.31.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.05.05","5CD34764KN","","'+02:00","2026-04-14T12:15:40.000+02:00","SANEF\delamarre","Cloud Agent","64ff0bb8-102d-421a-b3a3-393a4365eff1","2026-04-03T09:25:09.000+02:00","2026-04-14T16:33:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"343112024","337777714","PCB23697.sanef.groupe","PCB23697","6C:0B:5E:EE:EC:D9","10.103.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5M","","'+02:00","2026-03-29T09:29:35.000+02:00","SANEF\CALOIN","Cloud Agent","52ad9fc3-f8f9-4987-bb8b-b9135813eb57","2025-07-18T11:59:41.000+02:00","2026-04-14T15:02:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"373213100","350070761","PCB24164.sanef.groupe","PCB24164","24:FB:E3:F3:E9:84","10.152.31.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG52136XR","","'+02:00","2026-04-07T09:15:55.000+02:00","SANEF\VIENNOT","Cloud Agent","519e338c-dd70-43d8-a29b-84cca51c8242","2025-10-31T11:53:35.000+02:00","2026-04-14T14:55:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"320081805","328609236","PCB24041.sanef.groupe","PCB24041","EC:4C:8C:C0:1A:16","192.168.1.164,10.255.1.213","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4502HDW","","'+02:00","2026-03-24T15:47:25.000+02:00","SANEF\linet","Cloud Agent","da61d621-5ed0-4c65-9c41-c773f6dc9f1a","2025-04-28T11:43:21.000+02:00","2026-04-14T14:42:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"322061869","329334044","PCB21600.sanef.groupe","PCB21600","D0:AD:08:A4:4D:AA","10.105.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K5","8CC34711K5","'+02:00","2026-04-02T09:22:27.000+02:00","SANEF\POPOWSKI","Cloud Agent","e55ac753-3308-47e1-9e59-bfe295a40992","2025-05-05T14:22:54.000+02:00","2026-04-14T14:27:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","150.0" +"415474702","367483721","MTR-5MRTL64","MTR-5MRTL64","EC:4C:8C:94:AD:59","10.255.6.29","fe80::862f:e721:a5d1:3763","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","5MRTL64","","'+02:00","2026-04-14T10:13:48.000+02:00","Admin","Cloud Agent","cebdc9a7-69a9-45cf-871c-447bb7b84f62","2026-04-13T14:46:11.000+02:00","2026-04-14T13:00:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"327515529","","PCB23607.sanef.groupe","PCB23607","C8:6E:08:88:F0:8B","10.255.2.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L62","","'+02:00","2026-03-31T15:55:47.000+02:00","SANEF\POPOWSKI","Cloud Agent","f2cf4539-50d9-4c95-8751-f05e4e26ea8b","2025-05-27T09:59:16.000+02:00","2026-04-14T12:47:39.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"323160071","329797274","PCB23766.sanef.groupe","PCB23766","6C:0B:5E:EE:93:0F","10.8.30.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4L","","'+02:00","2026-03-31T09:08:35.000+02:00","SANEF\fillingerm","Cloud Agent","4ff800fb-0f8b-4577-8f12-ca49787488ab","2025-05-09T10:12:14.000+02:00","2026-04-14T11:52:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","329.0" +"321561177","329073260","PCB22341.sanef.groupe","PCB22341","60:45:2E:11:E8:0B","10.255.2.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLK","8CC3502YLK","'+02:00","2026-04-07T17:51:05.000+02:00","SANEF\LEON","Cloud Agent","31784324-4966-49bf-9dde-2831d44e56bf","2025-05-02T10:25:39.000+02:00","2026-04-14T04:32:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","145.0" +"364694470","346595161","PCB21602.sanef.groupe","PCB21602","28:C5:D2:84:07:38","10.255.1.139","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K7","8CC34711K7","'+02:00","2026-03-28T09:11:16.000+02:00","SANEF\adamp","Cloud Agent","7029210b-2d21-4cb9-b53e-9bd540dbd2ae","2025-10-01T13:01:11.000+02:00","2026-04-14T03:40:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","145.0" +"199488674","243924682","PCB15576.sanef.groupe","PCB15576","80:B6:55:35:D2:66","10.255.3.151","fe80::39e6:c0c6:e0b6:a2bd","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","3096","Intel(R) Core(TM) i5-10500 CPU @ 3.10GHz","16159","HP S21 Ver. 02.08.01","8CC1432Z3N","8CC1432Z3N","'+02:00","2026-04-03T13:57:00.000+02:00","{60B78E88-EAD8-445C-9CFD-0B87F74EA6CD}","Cloud Agent","28b3d669-88fd-4603-bda6-a2080adb4d05","2023-11-17T10:47:03.000+02:00","2026-04-13T16:55:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"415453544","367460886","MTO22918.sanef.groupe","MTO22918","60-45-2E-11-62-C8, 60-45-2E-11-62-C9, D0-AD-08-A3-7B-E7, 62-45-2E-11-62-C8, 60-45-2E-11-62-CC","10.252.4.23","fe80::f875:fe3f:7a1:d64e","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037)","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","","","16053","","8CC3502YVJ","8CC3502YVJ","'+02:00","2026-04-13T14:51:06.000+02:00","","Cloud Agent","0d14fa57-9307-4263-94cb-44eaf69be6c1","2026-04-13T10:41:06.000+02:00","2026-04-13T14:57:10.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"415474522","367481217","vpdsiangx2.sanef.groupe","","00:00:00:00:00:00, 00:50:56:90:1b:dd","192.168.19.161","::1","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Server","","","","","","VMware-42 10 4e f9 6e 78 ec d3-fa f1 ed 76 57 63 30 fe","","'+02:00","","","Cloud Agent","9f2559d4-1234-49aa-8f55-5057c02d8470","2026-04-13T14:27:05.000+02:00","2026-04-13T14:27:04.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","0.0" +"415486980","367481218","vpdsiangx1.sanef.groupe","","00:00:00:00:00:00, 00:50:56:90:ae:4a","192.168.19.160","::1","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Server","","","","","","VMware-42 10 8d 88 c9 1d 51 81-80 87 7e a2 d2 d0 a2 4c","","'+02:00","","","Cloud Agent","ec715c55-d9d9-4497-9159-deb3d95c5181","2026-04-13T14:23:28.000+02:00","2026-04-13T14:23:26.000+02:00","x64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","0.0" +"415479841","367480545","vpdsiahap2.sanef.groupe","","00:50:56:90:a5:70","192.168.19.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 79 42 7e 15 dd 6d-44 e3 7d 75 da f1 8e f6","","'+02:00","2026-04-13T14:17:29.000+02:00","cybintsys","Cloud Agent","94925ce9-7329-428f-a9fe-48b21f42a1c3","2026-04-13T14:17:35.000+02:00","2026-04-13T14:19:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","0.0" +"415483225","367480191","vpdsiahap1.sanef.groupe","","00:50:56:90:08:f8","192.168.19.132,192.168.19.134","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 2e 4a 83 50 cb 8e-0e 6c ef 83 29 6e 3c 7a","","'+02:00","2026-04-13T14:11:12.000+02:00","cybintsys","Cloud Agent","d2e411da-48eb-4fa6-8177-640b7de770a9","2026-04-13T14:11:22.000+02:00","2026-04-13T14:13:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","0.0" +"317053317","327378301","SVP22859.sanef-int.adds","SVP22859","D0:AD:08:A7:28:65","10.12.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLY","","'+02:00","2026-03-12T18:04:14.000+02:00","Superviseur","Cloud Agent","01f40769-a244-499f-8d12-0b0a1034ce1e","2025-04-16T08:51:32.000+02:00","2026-04-13T12:45:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","686.0" +"356896721","343527045","SVP18476.sanef-int.adds","SVP18476","D0:AD:08:A2:AE:5E","10.212.39.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.09.01","5CD34764FP","","'+02:00","2026-03-25T11:29:18.000+02:00","Superviseur","Cloud Agent","109b0a18-0a20-4e0a-88f4-596d502f9f24","2025-09-04T13:48:03.000+02:00","2026-04-13T12:37:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","348.0" +"414970292","367268364","MTR-FKRTL64","MTR-FKRTL64","EC:4C:8C:91:DF:3E","10.255.6.28","fe80::f6c0:3abe:edfe:cc4e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","FKRTL64","","'+02:00","2026-04-13T10:28:23.000+02:00","Skype","Cloud Agent","46b1c42c-45b2-4bc0-9983-7a870095a4bc","2026-04-10T17:24:09.000+02:00","2026-04-13T11:39:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"408025140","364323044","PCV21146.sanef-int.adds","PCV21146","D0:AD:08:A3:7B:23","10.252.2.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.21.00","8CC3502YXK","","'+02:00","2026-03-31T17:39:12.000+02:00","Operateur","Cloud Agent","650b5e2b-38b4-4c73-b8eb-c9b8712eb822","2026-03-12T16:59:38.000+02:00","2026-04-13T11:16:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","238.0" +"325702018","","PCB16442.sanef.groupe","PCB16442","DC:21:48:FE:76:17","192.168.248.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","1","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.06.03","5CD14383ZW","","'+02:00","2026-04-06T15:23:27.000+02:00","SANEF\LAMRANI-ext","Cloud Agent","74c8b238-0566-46f5-b792-f54c89b7c1ae","2025-05-19T12:20:12.000+02:00","2026-04-13T10:09:34.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"415422989","367450195","MTO22918.sanef.groupe","MTO22918","D0:AD:08:A3:7B:E7","10.252.4.23","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.21.00","8CC3502YVJ","","'+02:00","2026-04-13T09:40:53.000+02:00","SANEF\meteonewsw11","Cloud Agent","dc02f973-358a-4195-822c-560ace1077fb","2026-04-13T08:58:42.000+02:00","2026-04-13T10:02:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"329750335","","PCB20661.sanef.groupe","PCB20661","58:1C:F8:EA:00:65","10.205.0.11,192.168.1.179","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D31","","'+02:00","2026-03-31T13:56:23.000+02:00","SANEF\BOURICH","Cloud Agent","f501c876-daa2-4c0f-97a9-768a274a25df","2025-06-03T12:19:20.000+02:00","2026-04-13T08:48:43.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"407614729","364148644","PCB25914.sanef.groupe","PCB25914","C4-0F-08-B2-31-F2, C4-0F-08-B2-31-EE, C4-0F-08-B2-31-EF, C6-0F-08-B2-31-EE","10.255.3.169","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CG5342221","","'+01:00","","","Cloud Agent","6eec8df5-3e54-4bfd-918d-d687104eeaed","2026-03-11T09:28:40.000+02:00","2026-03-11T09:28:39.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"321562315","329083162","PCB21503.sanef.groupe","PCB21503","60:45:2E:11:62:BE","10.255.3.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWG","8CC3502YWG","'+02:00","2026-03-29T09:11:52.000+02:00","SANEF\niva","Cloud Agent","fd8ab26e-a02c-452c-ba43-bb0a1b4719e6","2025-05-02T12:28:20.000+02:00","2026-04-13T07:48:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"414698137","367160168","MTO22918.sanef.groupe","MTO22918","D0:AD:08:A3:7B:E7","10.252.4.23","fe80::8b0e:9d7:4087:591","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.21.00","8CC3502YVJ","8CC3502YVJ","'+02:00","2026-04-09T16:59:50.000+02:00","","Cloud Agent","88e9f51b-f149-4b77-b06e-d0836cfaa023","2026-04-09T16:52:40.000+02:00","2026-04-13T05:42:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"360913044","345091213","PCB22770.sanef.groupe","PCB22770","60:45:2E:0F:3F:6B","10.255.1.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YL5","","'+02:00","2026-03-29T09:12:14.000+02:00","SANEF\CUGNART","Cloud Agent","b45a9412-bbdd-48fa-b800-9161d4592702","2025-09-18T11:46:01.000+02:00","2026-04-13T05:31:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"320123702","328628332","PCB23567.sanef.groupe","PCB23567","C8:6E:08:88:E2:67","10.255.4.187","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L49","","'+02:00","2026-04-09T17:10:42.000+02:00","SANEF\louchartr","Cloud Agent","29cb55c4-0c7e-4148-9ff6-e4df13021f83","2025-04-28T15:03:43.000+02:00","2026-04-13T05:07:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"331139903","","PCB23546.sanef.groupe","PCB23546","C8:6E:08:8A:3C:52","10.205.0.250,192.168.1.99","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L43","","'+02:00","2026-03-31T10:46:26.000+02:00","SANEF\hermary","Cloud Agent","1a675588-f1d0-4fdd-b17e-ee0c18a02d22","2025-06-05T13:58:40.000+02:00","2026-04-11T17:04:25.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"398581269","360738522","SVP21360.sanef-int.adds","SVP21360","D0:AD:08:A4:73:56","10.182.8.29,169.254.234.32","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764HB","","'+02:00","2026-03-28T12:10:17.000+02:00","Superviseur","Cloud Agent","88556871-e366-49dc-a5fa-fcb123c07a07","2026-02-08T11:06:15.000+02:00","2026-04-11T14:42:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"280812225","305628921","PCB21330.sanef.groupe","PCB21330","D0:AD:08:AA:50:AC","10.202.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MD","","'+02:00","2026-04-01T07:02:42.000+02:00","SANEF\maries","Cloud Agent","c1019324-bc03-48af-be25-72a6def43c85","2024-11-20T15:45:50.000+02:00","2026-04-10T19:07:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","126.0" +"324669813","330319042","PCB23753.sanef.groupe","PCB23753","6C:0B:5E:EE:C3:26","10.4.31.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4W","","'+02:00","2026-04-08T14:52:11.000+02:00","SANEF\gutel","Cloud Agent","5fc1452e-7013-4531-86e8-9f83e47956d6","2025-05-14T10:04:46.000+02:00","2026-04-10T17:56:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","143.0" +"332577348","","PCB18727.sanef.groupe","PCB18727","58:1C:F8:EB:6A:AE","10.255.4.232,192.168.1.109","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3K","","'+02:00","2026-03-31T10:29:47.000+02:00","SANEF\mauprivez","Cloud Agent","00474b6f-ae57-471c-997a-28760be5d557","2025-06-11T11:44:45.000+02:00","2026-04-10T17:00:23.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"352658714","341621939","PCB21202.sanef.groupe","PCB21202","D0:AD:08:AA:50:2F","10.220.31.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764HC","","'+02:00","2026-04-01T17:03:01.000+02:00","SANEF\perrins","Cloud Agent","a0bdc37f-a7bb-4a61-9720-5f5e4ba6b697","2025-08-19T17:41:22.000+02:00","2026-04-10T16:40:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","139.0" +"385558302","355746676","PCB24166.sanef.groupe","PCB24166","DC:90:09:E0:59:57","10.255.4.223,10.255.4.130","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XY","","'+01:00","2026-03-03T14:48:03.000+02:00","SANEF\beaudevin","Cloud Agent","f731ede4-2853-4074-a675-01689f3d5820","2025-12-22T14:57:45.000+02:00","2026-04-10T16:21:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","140.0" +"322008464","329319797","PCB23795.sanef.groupe","PCB23795","C8:6E:08:49:2D:43","10.255.2.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4T","","'+02:00","2026-04-10T08:34:59.000+02:00","SANEF\PAULETTO","Cloud Agent","9c1f1d09-a74d-490b-8925-d29869bf6cc8","2025-05-05T11:30:26.000+02:00","2026-04-10T16:06:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","139.0" +"359144569","","PCB24103.sanef.groupe","PCB24103","30:E3:A4:D6:7B:08","192.168.1.252","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5192YLM","","'+02:00","2026-03-02T11:28:16.000+02:00","SANEF\barbryq","Cloud Agent","d09ca50c-fcca-410e-9891-7fdeaa1bc99d","2025-09-12T11:45:35.000+02:00","2026-04-10T15:05:52.000+02:00","64-Bit","2","PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","0.0" +"411392865","365642269","PCB23545.sanef.groupe","PCB23545","C8-6E-08-8A-45-70, C8-6E-08-8A-45-6C, C8-6E-08-8A-45-6D","10.255.2.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CG4460L79","","'+01:00","","","Cloud Agent","29d65277-283a-40a7-9da4-a52a6fb7095e","2026-03-25T16:58:43.000+02:00","2026-03-25T16:58:42.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"323216818","329820455","PCB23684.sanef.groupe","PCB23684","80:6D:97:11:D2:42","10.6.31.6,192.168.1.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4B","","'+02:00","2026-03-29T20:05:08.000+02:00","SANEF\tessier","Cloud Agent","c8ce5b63-bd94-4a22-a51d-12baf58579b0","2025-05-09T14:51:40.000+02:00","2026-04-10T14:44:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","143.0" +"356902135","343530061","PCB22721.sanef.groupe","PCB22721","D0:AD:08:AA:50:5B","10.220.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JS","","'+02:00","2026-04-08T13:41:30.000+02:00","adelaide.frete@sapn.fr","Cloud Agent","d771ad3a-1c57-40d1-a577-4860ff36cd26","2025-09-04T14:26:45.000+02:00","2026-04-10T13:58:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","126.0" +"321590105","329097451","PCB21274.sanef.groupe","PCB21274","64:4E:D7:49:2A:DF","10.255.1.145,10.4.31.70","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3440GKJ","","'+02:00","2026-04-07T08:47:35.000+02:00","SANEF\niezynski","Cloud Agent","b7cb5d92-ed6e-4600-8294-4485da5075bf","2025-05-02T15:23:47.000+02:00","2026-04-10T12:40:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","144.0" +"372477256","349747579","PCB24217.sanef.groupe","PCB24217","10:B6:76:95:8B:A6","10.202.31.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZ7","","'+02:00","2026-04-02T07:20:14.000+02:00","SANEF\guiffard","Cloud Agent","f8342f54-b10f-4fd6-94d9-c1127fdfa292","2025-10-28T18:41:13.000+02:00","2026-04-10T12:14:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","341.0" +"414893467","367232873","SVP22848.sanef-int.adds","SVP22848","D0-AD-08-A7-28-72, 60-45-2E-11-FD-DC, 60-45-2E-11-FD-DD, 62-45-2E-11-FD-DC, 60-45-2E-11-FD-E0","10.100.2.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","8CC3502YLL","","'+02:00","","","Cloud Agent","c377067a-c967-43d4-989b-f09075a94626","2026-04-10T10:37:47.000+02:00","2026-04-10T10:37:47.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"410588598","365382442","PCB18604.sanef.groupe","PCB18604","64:D6:9A:33:FF:E0","10.255.1.184,10.255.1.183","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDK","","'+02:00","2026-04-08T10:50:00.000+02:00","SANEF\marechal-ext","Cloud Agent","3b5d5e4d-fa9d-4acb-ae67-8006f73698dc","2026-03-23T14:41:11.000+02:00","2026-04-10T10:28:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","126.0" +"324979670","","PCB18095.sanef.groupe","PCB18095","64:D6:9A:21:81:94","10.205.0.92,10.255.1.225","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSV","","'+02:00","2026-03-29T09:23:37.000+02:00","SANEF\VERMOREL","Cloud Agent","50bd6c4c-03bb-4f6a-aba0-8597e2a27937","2025-05-15T12:00:45.000+02:00","2026-04-10T10:13:13.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"413151887","366557839","PCV22327.sanef-int.adds","PCV22327","D0:AD:08:A3:7B:1E","10.252.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.21.00","8CC3502YZZ","","'+02:00","2026-04-02T17:11:27.000+02:00","Operateur","Cloud Agent","6199eb5d-38c7-45fd-9311-540ccfba1e3b","2026-04-02T16:55:19.000+02:00","2026-04-10T10:12:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"367261722","347694847","PCB22504.sanef.groupe","PCB22504","E4:60:17:C4:EC:D5","10.205.0.84,10.255.3.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764KM","","'+02:00","2026-04-10T09:01:33.000+02:00","SANEF\KEITA-ext","Cloud Agent","86e8155f-1db5-4e2e-9521-6c5f650d174e","2025-10-10T16:58:52.000+02:00","2026-04-10T10:04:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","329.0" +"382625299","354072276","PCB23722.sanef.groupe","PCB23722","C8:6E:08:47:62:B5","10.255.3.143,10.255.3.155","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.05.00","5CG4460H2X","","'+02:00","2026-04-09T08:03:24.000+02:00","SANEF\boidin","Cloud Agent","35cbea06-2630-4a78-97f0-c54651717165","2025-12-09T08:20:36.000+02:00","2026-04-10T09:17:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"323160502","329798676","PCB23605.sanef.groupe","PCB23605","6C:0B:5E:ED:A2:A4","10.5.31.55","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4M","","'+02:00","2026-03-28T09:28:05.000+02:00","SANEF\QUENELISSE","Cloud Agent","37bfee57-dd14-4e54-b83f-8a68b7936a1c","2025-05-09T10:27:00.000+02:00","2026-04-10T08:10:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"333709430","333867043","PCB22454.sanef.groupe","PCB22454","D0:AD:08:A7:28:2A","10.105.31.8,10.105.30.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJT","","'+01:00","2026-04-01T02:46:20.000+02:00","bruno.payen@sanef.com","Cloud Agent","5ada4f2d-7be0-47bf-bb7d-f59da219ed91","2025-06-16T12:05:40.000+02:00","2026-04-10T03:07:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","330.0" +"298481643","319185960","SVP20975.sanef-int.adds","SVP20975","BC:0F:F3:87:66:40","10.182.6.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLQ","","'+02:00","2025-10-28T09:25:15.000+02:00","Superviseur","Cloud Agent","9f607a1e-b9b1-4563-8e20-bb0a1df826f2","2025-02-07T11:24:26.000+02:00","2026-04-09T20:57:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"414580238","367118635","PVP18175.sanef-int.adds","PVP18175","00:0B:AB:E4:E4:C8","10.252.2.20","fe80::8f45:71a5:4b0c:dc4","Windows / Client","Microsoft Windows 10 Enterprise LTSC 2019 (1809 Build 17763.8511)","1809","Unidentified / Unidentified","Advantech","4","2301","Intel(R) Core(TM) i5-6500TE CPU @ 2.30GHz","8102","American Megatrends Inc. 5.12","Default string","Defaultstring","'+02:00","2026-04-09T11:50:27.000+02:00","AdmVoie","Cloud Agent","af8c7af0-d70f-4717-ae11-fb93eaaf3e18","2026-04-09T09:51:54.000+02:00","2026-04-09T19:31:04.000+02:00","64 bits","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","328.0" +"411606584","365720961","PCB18191.sanef.groupe","PCB18191","C8:5E:A9:A5:73:A5","10.255.1.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD3295RYH","","'+02:00","2026-04-09T16:20:12.000+02:00","SANEF\SALUR-ext","Cloud Agent","fa836a43-0c38-4fc6-b178-0c58896758d9","2026-03-26T11:27:27.000+02:00","2026-04-09T17:10:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","136.0" +"324661113","330322272","PCB20664.sanef.groupe","PCB20664","58:1C:F8:EA:54:48","10.205.0.52,10.255.3.162","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224DS0","","'+02:00","2026-04-03T14:25:02.000+02:00","SANEF\DUPUIS","Cloud Agent","90627f64-a135-40e1-9e78-1acd1423956a","2025-05-14T10:26:23.000+02:00","2026-04-09T14:29:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","147.0" +"414230874","367004891","PCB16298.sanef.groupe","PCB16298","58:6C:25:2B:14:1B","10.255.2.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T39 Ver. 01.11.00","5CG13363ZF","","'+02:00","2026-04-08T15:59:32.000+02:00","SANEF\petiard","Cloud Agent","ff21f27b-9ab0-4a68-bd8e-9bd7a6bd5a63","2026-04-08T09:08:10.000+02:00","2026-04-09T13:59:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"407330177","364030578","PCB17199.sanef.groupe","PCB17199","58:6C:25:2B:1C:0E","10.255.1.229","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.04.02","5CG13363SF","","'+02:00","2026-03-31T16:04:59.000+02:00","SANEF\morelj","Cloud Agent","f6bbae74-72a9-491a-aa8b-f179113c3ec8","2026-03-10T09:55:31.000+02:00","2026-04-09T13:48:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","138.0" +"362320411","345693282","PCB16344.sanef.groupe","PCB16344","50:81:40:B9:F0:AA","10.200.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T76 Ver. 01.22.00","5CG1336597","","'+02:00","2026-03-30T09:21:30.000+02:00","SANEF\tamboura","Cloud Agent","f18b4144-110c-4456-8c62-a89ec908f338","2025-09-23T16:41:35.000+02:00","2026-04-09T13:04:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"414585717","367130940","SVP21129.sanef-int.adds","SVP21129","D0-AD-08-A4-71-9C","10.252.2.34","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CD34764LF","","'+02:00","","","Cloud Agent","7d13877f-3b95-4b2f-a36e-3b32b3ca130a","2026-04-09T11:32:21.000+02:00","2026-04-09T11:32:20.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"409003374","364780761","PCB17880.sanef.groupe","PCB17880","70:A8:D3:85:99:8B","10.255.1.139","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG21724L3","","'+02:00","2026-04-08T09:07:02.000+02:00","SANEF\LAINEF","Cloud Agent","f97f9019-0a4e-4880-bd41-6774e94c2e08","2026-03-17T09:46:02.000+02:00","2026-04-09T10:52:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"407320662","364030577","PCB18108.sanef.groupe","PCB18108","64:D6:9A:21:81:FD","10.255.2.206,10.255.2.194","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HSW","","'+02:00","2026-04-08T09:10:14.000+02:00","SANEF\BOBEE","Cloud Agent","dc5a7c1b-dc81-4c11-8b77-ccb33bdbfb6a","2026-03-10T09:55:00.000+02:00","2026-04-09T10:44:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"414227504","367004890","PCB16314.sanef.groupe","PCB16314","58:6C:25:2B:37:7A","10.255.4.224","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.04.02","5CG13363TD","","'+02:00","2026-04-08T16:02:54.000+02:00","SANEF\beaudouin","Cloud Agent","d8be536e-2b62-4209-9693-b34e3a207ffa","2026-04-08T09:07:15.000+02:00","2026-04-09T10:40:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"414263867","367023560","PCB18726.sanef.groupe","PCB18726","BC:0F:F3:3B:D9:7F","10.200.31.57","fe80::3e2b:ceb5:c343:16e8","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3F","","'+02:00","2026-04-08T12:05:10.000+02:00","SANEF\mediouni-ext","Cloud Agent","cd6fe740-2e0e-4709-a7bf-a4f91522dced","2026-04-08T11:56:50.000+02:00","2026-04-09T10:13:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"410505275","365357799","PCV22806.sanef-int.adds","PCV22806","D0:AD:08:A3:7B:74","10.11.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YWC","","'+02:00","2026-03-23T09:46:36.000+02:00","Operateur","Cloud Agent","b0fdcd60-d8f4-49da-9125-a79c0a4d2688","2026-03-23T09:51:51.000+02:00","2026-04-09T08:59:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"413370586","366630137","PCB22639.sanef.groupe","PCB22639","E4:60:17:CB:E8:32","10.255.3.195","fe80::8981:733c:42b9:1959","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FQ","","'+02:00","2026-04-03T15:44:24.000+02:00","SANEF\Mediouni-ext","Cloud Agent","36e19fba-f5b9-4132-9c31-80c19300f76a","2026-04-03T15:34:54.000+02:00","2026-04-08T16:39:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"364786822","346625517","PCB21612.sanef.groupe","PCB21612","D0:AD:08:A4:4D:AD","10.5.31.32,10.5.31.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K2","8CC34711K2","'+02:00","2026-03-29T09:11:34.000+02:00","SANEF\blanchet","Cloud Agent","a33a6d05-c20b-46c6-ad62-1c844da87553","2025-10-01T18:02:32.000+02:00","2026-04-08T15:54:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"414301098","367044928","PCB13232.sanef.groupe","PCB13232","3C-52-82-57-8A-CC, 00-FF-B0-8B-5B-13, 00-00-00-00-00-00-00-E0","10.100.39.185","","Windows / Client","Microsoft Windows 7 Enterprise (6.1 SP1)","6.1","Computers / Unidentified","Computers","","","","","","CZC7458CXS","","'+02:00","","","Cloud Agent","eb749399-13a7-424a-b4d9-3574cbe2799d","2026-04-08T15:36:27.000+02:00","2026-04-08T15:36:25.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"414320371","367043466","WIN-OQNRU1G2RID","WIN-OQNRU1G2RID","00-50-56-9C-B7-78","10.30.6.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348)","21H2","Computers / Server","Server","","","","","","VMware-42 1c 72 51 50 84 7d 6f-ef 61 18 55 39 03 e4 ef","","'+02:00","","","Cloud Agent","e91987ff-33f1-4107-8443-ec55099f1fc4","2026-04-08T15:16:11.000+02:00","2026-04-08T15:16:09.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","0.0" +"322021436","329321018","PCB21559.sanef.groupe","PCB21559","D0:AD:08:A7:28:63","10.155.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLN","8CC3502YLN","'+02:00","2026-03-28T09:12:12.000+02:00","SANEF\delahayef","Cloud Agent","ca039f8e-bb14-4b92-93d5-29ae920cfb22","2025-05-05T11:49:29.000+02:00","2026-04-08T13:48:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"378846649","352658728","PCB24254.sanef.groupe","PCB24254","C8:58:B3:74:47:E9","10.255.2.195,10.255.2.180","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M4R","","'+02:00","2026-03-30T10:38:49.000+02:00","SANEF\creton","Cloud Agent","d050d42a-b2ed-4f6f-92bd-c208a6f0937d","2025-11-24T13:51:36.000+02:00","2026-04-08T12:43:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","339.0" +"350587655","340492601","PCB25858.sanef.groupe","PCB25858","28:95:29:22:6B:4F","10.205.0.163,10.255.3.183","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CSR","","'+01:00","2025-11-15T05:13:32.000+02:00","bryan.body@bipandgo.com","Cloud Agent","790d2754-0a54-47e8-badc-ec37700629c1","2025-08-11T16:39:20.000+02:00","2026-04-08T12:04:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"414023786","366911597","MTR-H1DSNT3","MTR-H1DSNT3","54:6C:EB:83:6C:B0","10.255.6.30","fe80::31e4:7b71:4da0:250b","Windows / Client","Microsoft Windows 11 Enterprise (22H2 Build 22621.525) 64-Bit","22H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.36.0","H1DSNT3","","'+02:00","2026-04-08T09:56:37.000+02:00","Skype","Cloud Agent","04be11c3-1e1b-423a-9e4b-880bb32b6574","2026-04-07T11:55:12.000+02:00","2026-04-08T11:22:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"413132485","366552050","PCB18726.sanef.groupe","PCB18726","BC:0F:F3:3B:D9:7F","10.252.3.5","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3F","","'+02:00","2026-04-08T10:30:29.000+02:00","SANEF\mediouni-ext","Cloud Agent","d0a26e9e-b237-4142-912f-a572366c82cf","2026-04-02T15:25:13.000+02:00","2026-04-08T10:52:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"321035417","328905575","PCB23632.sanef.groupe","PCB23632","C8:6E:08:88:FD:9C","192.168.1.170","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7H","","'+01:00","2026-02-24T12:34:06.000+02:00","SANEF\LECUL-LOISEL","Cloud Agent","40f260d4-8909-4a85-8ca5-e9c2dadaf145","2025-04-30T14:38:26.000+02:00","2026-04-08T10:33:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"413815679","366829221","PCV21620.sanef-int.adds","PCV21620","D0:AD:08:A4:4D:B4","10.11.21.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711K0","","'+02:00","2026-01-03T19:22:58.000+02:00","Operateur","Cloud Agent","2a8c4283-d92e-4e97-b10e-8aa2072b1bda","2026-04-06T16:07:50.000+02:00","2026-04-08T08:01:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"381851478","353710813","PCV22445.sanef-int.adds","PCV22445","D0:AD:08:A7:27:D8","10.9.37.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YSY","","'+02:00","2026-02-15T18:17:58.000+02:00","Operateur","Cloud Agent","d44c0c4e-393e-48b0-a09b-6de22d8314b0","2025-12-05T10:49:38.000+02:00","2026-04-08T07:09:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"414038283","366923274","PCB17874.sanef.groupe","PCB17874","70:A8:D3:85:74:D8","10.255.3.171","fe80::989f:4a32:4d6d:5eda","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG21724K4","","'+02:00","2026-04-07T14:11:43.000+02:00","SANEF\vengadassalame","Cloud Agent","a5f51618-5d81-45a5-a878-7f13f3c507c1","2026-04-07T14:15:13.000+02:00","2026-04-07T18:19:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"381246644","353498210","PCB23590.sanef.groupe","PCB23590","C8:6E:08:8A:3B:F8","10.205.0.108,10.255.4.238","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L53","","'+02:00","2026-04-07T11:31:52.000+02:00","SANEF\CHEVALIERST","Cloud Agent","2f5715a3-9766-404e-9a8a-a1df08a5377d","2025-12-03T12:31:00.000+02:00","2026-04-07T17:40:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"409485656","364924906","PCB17121.sanef.groupe","PCB17121","0A:00:27:00:00:15, F4:26:79:9D:00:EE","192.168.56.1,192.168.1.50","fe80::4a7b:bda7:92f9:c07d,2a02:842a:3620:a101:3297:a552:297a:3497,2a02:842a:3620:a101:41bc:7f34:f15:fcc,fe80::457f:c909:2a65:1b10","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP ProBook 640 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T74 Ver. 01.08.01","5CD15181PD","","'+02:00","2026-04-07T13:54:22.000+02:00","SANEF\letort","Cloud Agent","931b04b8-1f35-425f-b7eb-317dabeb6875","2026-03-18T14:47:02.000+02:00","2026-04-07T16:15:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","340.0" +"305945024","322943298","SVP22860.sanef-int.adds","SVP22860","D0:AD:08:A7:28:6B","10.8.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLD","","'+02:00","2026-04-02T09:47:17.000+02:00","Superviseur","Cloud Agent","517557c6-b116-4e33-bd6b-9e97c9e5290e","2025-03-07T10:34:21.000+02:00","2026-04-07T13:31:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"362484906","345776139","PCB17917.sanef.groupe","PCB17917","70:A8:D3:85:68:F8","10.255.3.236","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724P8","","'+02:00","2026-02-01T18:39:22.000+02:00","SANEF\sendra","Cloud Agent","4bf127bb-f177-4d8a-b460-ab7e67199dcb","2025-09-24T09:44:28.000+02:00","2026-04-07T11:07:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"359725235","","PCB21120.sanef.groupe","PCB21120","E4:60:17:CA:2F:47","10.205.0.109,192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MT","","'+02:00","2026-04-07T08:47:48.000+02:00","SANEF\jeanjean-ext","Cloud Agent","9f18d8f5-4943-4205-8fe9-a8a7534337c4","2025-09-15T10:34:13.000+02:00","2026-04-07T10:24:34.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"326195154","","PCB18022.sanef.groupe","PCB18022","38:CA:84:52:77:54","10.100.39.107","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HR8","","'+02:00","2026-04-03T16:09:52.000+02:00","SANEF\CHAUDOT","Cloud Agent","855e870d-f173-4264-a15a-5c4a42714cae","2025-05-21T11:40:53.000+02:00","2026-04-07T10:17:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"381720817","353647131","PCB22303.sanef.groupe","PCB22303","D0:AD:08:A3:7D:05","10.252.42.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ3","8CC3502YZ3","'+02:00","2026-03-29T09:12:00.000+02:00","SANEF\bellaton","Cloud Agent","e107bd02-e148-4562-acb2-3179ab0f8f34","2025-12-04T18:13:09.000+02:00","2026-04-07T09:54:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","349.0" +"411690878","365758916","PCB21081.sanef.groupe","PCB21081","E0:C2:64:5A:13:15","10.255.3.248,10.255.3.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD336NWDX","","'+02:00","2026-04-07T09:14:25.000+02:00","SANEF\mesdon-ext","Cloud Agent","8b2d4ac3-0d3a-4ec6-afcb-1549282fec0b","2026-03-26T18:47:05.000+02:00","2026-04-07T09:52:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","329.0" +"413976359","366892401","PCB18059.sanef.groupe","PCB18059","64-D6-9A-1D-39-3F, 64-D6-9A-1D-39-3B, 64-D6-9A-1D-39-3C, 38-CA-84-52-F8-73","10.101.242.10","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CG2376HRV","","'+02:00","","","Cloud Agent","7022fc4d-2513-402e-a82a-7ea78fd89293","2026-04-07T09:18:27.000+02:00","2026-04-07T09:18:26.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"413382455","366640245","PCB22463.sanef.groupe","PCB22463","D0:AD:08:E4:D1:D5","10.252.4.16","fe80::f452:8f9b:b605:d51c","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVB","","'+02:00","2026-04-03T19:10:57.000+02:00","","Cloud Agent","7f39715e-b8e6-4067-8c27-cf6957de321e","2026-04-03T19:24:50.000+02:00","2026-04-07T08:32:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"413707705","366786146","SVP22705.sanef-int.adds","SVP22705","D0-AD-08-A4-73-B2","10.106.18.22","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CD34764D6","","'+02:00","","","Cloud Agent","40e6ce74-d406-47f3-bb43-618a8091346e","2026-04-06T05:54:33.000+02:00","2026-04-06T05:54:33.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"269311813","299220497","SVP22765.sanef-int.adds","SVP22765","D0:AD:08:A7:27:CF","10.142.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKX","","'+02:00","2026-03-28T06:29:32.000+02:00","Superviseur","Cloud Agent","016a4a54-6922-48df-8c1f-2e932d3fb3d0","2024-10-01T10:50:06.000+02:00","2026-04-05T04:51:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"413497258","366694610","SVP22516.sanef-int.adds","SVP22516","D0-AD-08-A4-72-DF","10.182.12.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CD34764F2","","'+02:00","","","Cloud Agent","4edbd6d1-276f-4999-806e-2bf5f2b5d782","2026-04-04T15:02:25.000+02:00","2026-04-04T15:02:25.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"162635575","216951204","PCB17233.sanef.groupe","PCB17233","58:6C:25:2B:14:AC","10.205.0.117,192.168.1.91","fe80::1f42:31c:44d8:17a3","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.04.02","5CG133659B","","'+02:00","2026-03-16T09:58:38.000+02:00","SANEF\desimeur","Cloud Agent","e6924210-1840-45d6-8d3e-cca844948ba5","2023-03-14T17:22:48.000+02:00","2026-04-03T22:36:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"413382221","366638357","PCB22463.sanef.groupe","PCB22463","D0:AD:08:E4:D1:D5","10.252.4.16","fe80::f452:8f9b:b605:d51c","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVB","","'+02:00","2026-04-03T18:45:03.000+02:00","","Cloud Agent","3f28d8ea-9fbc-4f2d-b75f-10f55bfe6cab","2026-04-03T18:35:58.000+02:00","2026-04-03T18:58:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"346258439","339004850","PCB18055.sanef.groupe","PCB18055","64:D6:9A:1D:39:45","10.205.0.222,192.168.1.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HST","","'+02:00","2026-03-30T15:17:13.000+02:00","pauline.rivaud@sanef.com","Cloud Agent","ecc9fb31-8e43-4532-b73a-cf1d08464ce7","2025-07-29T12:30:27.000+02:00","2026-04-03T18:23:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"353288805","341947029","PCB20721.sanef.groupe","PCB20721","BC:0F:F3:3D:E7:B5","10.101.242.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CRX","","'+02:00","2026-03-30T12:16:44.000+02:00","SANEF\MOUSSI","Cloud Agent","d464f76e-5c6c-454e-8e5b-ad960e42541e","2025-08-21T11:20:54.000+02:00","2026-04-03T15:17:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","140.0" +"372912931","349942106","PCB18747.sanef.groupe","PCB18747","BC:0F:F3:3D:48:25","192.168.1.155,10.200.31.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DRQ","","'+02:00","2026-04-02T08:05:27.000+02:00","SANEF\SOLTANE","Cloud Agent","c3e45b2e-60cb-49b6-b071-b238258b9258","2025-10-30T10:53:47.000+02:00","2026-04-03T15:07:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","140.0" +"324956464","","PCB21319.sanef.groupe","PCB21319","E4:60:17:C4:7B:CE","10.202.31.32,192.168.14.27","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764KD","","'+02:00","2026-01-28T11:19:40.000+02:00","SANEF\bourgault","Cloud Agent","9d1cd2a5-ebb2-4571-ac0a-d6d39f8bbd2c","2025-05-15T10:17:13.000+02:00","2026-04-03T14:09:27.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"413156143","366549935","PCB17220.sanef.groupe","PCB17220","50:81:40:B8:AF:CB","10.252.4.8","fe80::be7e:df4f:7e32:2446","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T76 Ver. 01.23.00","5CG13365JF","","'+02:00","2026-04-02T15:19:01.000+02:00","","Cloud Agent","946ac145-3a24-451b-8dd7-386146a0436a","2026-04-02T14:53:00.000+02:00","2026-04-03T13:59:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"403254780","362433508","PCB23740.sanef.groupe","PCB23740","C8:6E:08:46:BE:69","10.155.31.14,192.168.1.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3C","","'+02:00","2026-03-30T22:03:54.000+02:00","SANEF\JUCHA","Cloud Agent","67b9a00d-4b61-4c80-9982-9a14748e6fbd","2026-02-23T12:30:12.000+02:00","2026-04-03T13:22:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"413336840","366619424","PCB22664.sanef.groupe","PCB22664","D0:AD:08:AA:4F:CF","10.252.4.36","fe80::b997:c51b:9267:43b9","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764D8","","'+02:00","2026-04-03T12:06:05.000+02:00","","Cloud Agent","89571fa8-b01d-48dd-b5fe-8e27d7756e3e","2026-04-03T11:56:35.000+02:00","2026-04-03T13:14:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"391686889","357954120","vmmvscdsi1.sanef-int.adds","VMMVSCDSI1","00:50:56:90:AE:DB","10.41.7.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 6e 49 18 66 d8 3a-dd a6 22 a5 bc af cc de","NoAssetTag","'+02:00","2026-02-02T18:22:24.000+02:00","Operateur","Cloud Agent","712c55a0-16dd-407c-885c-40a010a07fb6","2026-01-13T15:38:38.000+02:00","2026-04-03T11:58:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"388414447","357030741","PCB16322.sanef.groupe","PCB16322","58:6C:25:2B:1E:6B","10.101.243.115,10.255.4.208","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T76 Ver. 01.18.00","5CG13363S6","","'+02:00","2026-03-31T09:22:42.000+02:00","SANEF\LABBED","Cloud Agent","4c42d202-9a3b-4c98-bb57-73cebf790474","2026-01-06T17:05:41.000+02:00","2026-04-03T09:20:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"343848716","338134488","SVP22616.sanef-int.adds","SVP22616","D0:AD:08:A4:72:E0","10.82.14.28,10.82.6.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764F1","","'+02:00","2026-03-02T20:50:47.000+02:00","Superviseur","Cloud Agent","16674d0d-6672-4e08-8b0d-f8a8a9469f96","2025-07-22T05:52:44.000+02:00","2026-04-02T17:48:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"410063492","365176294","vdlabawdc1","VDLABAWDC1","00:50:56:9C:2A:AC","10.45.16.60","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","6143","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 53 c8 ae 5c 19 82-54 77 86 21 3d ed 86 ea","NoAssetTag","'+02:00","2026-03-23T15:47:31.000+02:00","Administrateur","Cloud Agent","136e4572-cdf9-46e8-9489-ee75016ec6d7","2026-03-20T16:25:19.000+02:00","2026-04-02T17:20:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","341.0" +"413158942","366551699","PCB21323.sanef.groupe","PCB21323","D0:AD:08:A2:AF:37","10.252.4.14","fe80::f7f3:48ad:e77b:6351","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MR","","'+02:00","2026-04-02T15:28:14.000+02:00","","Cloud Agent","56416798-a1bf-43d3-a40b-527623dc43a9","2026-04-02T15:18:22.000+02:00","2026-04-02T15:41:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"413142209","366551267","PCB25901.sanef.groupe","PCB25901","4C:CF:7C:0A:4C:11","10.252.4.10","fe80::6dfb:3188:9bf9:e11e","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342231","","'+02:00","2026-04-02T15:14:44.000+02:00","","Cloud Agent","9023d486-6af3-4721-bbc7-ef9ba0e60eef","2026-04-02T15:11:45.000+02:00","2026-04-02T15:27:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"407955290","364302272","PCV18545.sanef-int.adds","PCV18545","30:13:8B:6C:56:64","10.252.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.05.02","CZC44473TL","","'+02:00","2026-03-23T16:15:12.000+02:00","Operateur","Cloud Agent","1b087b34-ecbe-4eb6-886d-3ac96ce441fb","2026-03-12T13:56:11.000+02:00","2026-04-02T14:58:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"412701712","366372290","PCV22327.sanef-int.adds","PCV22327","D0:AD:08:A3:7B:1E","10.252.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.21.00","8CC3502YZZ","","'+02:00","2026-04-01T09:27:23.000+02:00","Operateur","Cloud Agent","dcab164b-d63e-4f07-a9af-1588da7f82d5","2026-03-31T18:28:54.000+02:00","2026-04-02T12:54:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"413090057","366530597","PCB25860.sanef.groupe","PCB25860","28-95-29-1B-40-68, 28-95-29-1B-40-69, 2A-95-29-1B-40-68, 28-95-29-1B-40-6C","10.205.0.105","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CG5282CVN","","'+02:00","","","Cloud Agent","0ef98a64-1b0c-44ec-b27a-ac696cd1fdda","2026-04-02T11:04:22.000+02:00","2026-04-02T11:04:21.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"410979616","365488541","PCB20845.sanef.groupe","PCB20845","C8-6E-08-46-F2-4F, C8-6E-08-46-F2-4E, C8-6E-08-46-F2-52","10.255.1.223","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037)","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","","","32188","","5CG4460H58","","'+01:00","2026-04-02T10:31:39.000+02:00","","Cloud Agent","789cac50-9d1b-4ffa-91a9-8872d0ed66cc","2026-03-24T12:41:59.000+02:00","2026-04-02T10:41:52.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"412381382","366120882","PCB22732.sanef.groupe","PCB22732","E4-60-17-C7-00-9B, D0-AD-08-AA-50-51, D0-AD-08-A4-73-6B, E4-60-17-C7-00-97, E4-60-17-C7-00-98","10.208.31.21","fe80::c8c0:4efe:19b7:2557","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742)","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","","","15568","","5CD34764JG","","'+02:00","2025-11-06T15:28:32.000+02:00","","Cloud Agent","93958925-e554-454c-bf7d-69c2c6d574d8","2026-03-30T11:14:25.000+02:00","2026-04-02T10:00:10.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"329188187","","PCB21358.sanef.groupe","PCB21358","E4:60:17:C7:07:D1","10.205.0.17,10.255.3.170","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HR","","'+02:00","2026-04-01T08:18:10.000+02:00","delphine.lefevre-ext@sanef.com","Cloud Agent","7522f4e0-660b-4093-9392-5b7a002a6654","2025-06-02T13:49:01.000+02:00","2026-04-02T07:57:40.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"403289818","362453582","vrintaweb2.sanef.groupe","","02:42:78:ef:31:30, 00:50:56:82:ef:41","172.17.0.1,192.168.20.3","fe80::42:78ff:feef:3130,fe80::250:56ff:fe82:ef41","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 fd 8b 9c 89 53 12-a7 fc a4 c1 f5 3c cd 70","No Asset Tag","'+02:00","2026-02-23T13:29:29.000+02:00","husson-ext","Cloud Agent","67172794-53f1-4c5c-9922-dd6e8838fd8f","2026-02-23T15:45:41.000+02:00","2026-04-01T21:54:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","DMZ,Gestion institutionnel,Cloud Agent,OS-LIN-SRV DYN,Linux Server,Recette,Sans,Communication et Collaboration,VRF_INCONNUE,MID-NGINX DYN,BDD-POS DYN","139.0" +"318407324","328042960","PCB22846.sanef.groupe","PCB22846","D0:AD:08:A3:DD:F3","10.152.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YP1","8CC3502YP1","'+02:00","2026-03-28T09:11:31.000+02:00","SANEF\saintebeuve","Cloud Agent","701a1ffb-f88f-4066-98c8-a243f31d3d94","2025-04-22T14:42:05.000+02:00","2026-04-01T13:21:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"373865442","350366020","PCB24098.sanef.groupe","PCB24098","70:15:FB:7E:48:07","10.205.0.217,10.204.25.77","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7171) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZYK","","'+02:00","2026-03-26T18:35:05.000+02:00","SANEF\GARCIAL-ext","Cloud Agent","aa24f09a-b236-4ab8-9875-41113fb2c42b","2025-11-03T17:11:20.000+02:00","2026-04-01T12:08:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"393562161","358706364","PCB17780.sanef.groupe","PCB17780","28:C5:D2:9F:C3:C4","10.255.4.130","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y4Q","","'+02:00","2026-03-08T13:40:33.000+02:00","SANEF\KOCHER","Cloud Agent","8115b0d6-e628-4d0a-9cfc-33033612c119","2026-01-20T11:09:55.000+02:00","2026-04-01T11:51:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"377467174","352067329","PCV21546.sanef-int.adds","PCV21546","D0:AD:08:A3:7C:C7","10.152.7.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YY6","","'+02:00","2025-11-18T14:59:52.000+02:00","Operateur","Cloud Agent","a52ac61e-0574-4196-aeaa-bdd772bb397c","2025-11-18T15:44:16.000+02:00","2026-04-01T11:10:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"405942540","363436664","PCB22443.sanef.groupe","PCB22443","D0:AD:08:A3:E6:CB","10.149.31.6,10.149.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4652) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQ0","8CC3502YQ0","'+01:00","2026-03-11T12:54:17.000+02:00","SANEF\BROIE","Cloud Agent","c2d7848e-e954-4c35-bef0-dca0e49a29ee","2026-03-04T10:28:55.000+02:00","2026-04-01T10:50:42.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Workstation,Cloud Agent,Forescout","674.0" +"392184545","358112878","srdsiabkp1.sanef-rec.fr","","ec:eb:b8:9d:5f:98","10.43.253.30","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","15293","HPE U41 07/20/2023","CZJ82213V0","","'+02:00","2026-01-14T18:15:28.000+02:00","cybadmsys","Cloud Agent","83b1a7cf-656d-4934-89ac-69be2d111e12","2026-01-14T18:18:30.000+02:00","2026-04-01T10:21:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,BDD-ELA DYN,Cloud Agent,OS-LIN-SRV DYN,Linux Server","336.0" +"134892597","196012539","PCB15569.sanef.groupe","PCB15569","E0:70:EA:A8:74:44","10.100.39.57","fe80::9a5a:b651:1d37:da86","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","3096","Intel(R) Core(TM) i5-10500 CPU @ 3.10GHz","16159","HP S21 Ver. 02.08.01","8CC1432Z53","8CC1432Z53","'+02:00","2026-03-27T09:05:24.000+02:00","SANEF\psi","Cloud Agent","b2fa2fbe-924e-49d9-9b2c-0d6d5f714c35","2022-08-09T16:09:44.000+02:00","2026-04-01T07:02:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,VRF_INCONNUE","341.0" +"403260902","362450986","vvbooosea2.sanef-rec.fr","","00:50:56:9c:8c:2a","10.45.6.75","fe80::250:56ff:fe9c:8c2a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f8 de c1 d6 0d f9-43 43 4e 03 73 fc 6b d8","No Asset Tag","'+02:00","2026-03-09T17:00:55.000+02:00","cybadmsys","Cloud Agent","77417873-5a3e-49ef-871a-bf0fe50063d6","2026-02-23T15:08:48.000+02:00","2026-04-01T05:34:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,Recette,flux_libre,Linux Server,OS-LIN-SRV DYN,Cloud Agent","134.0" +"119481537","185246275","PCB17209.sanef.groupe","PCB17209","58:6C:25:2B:15:2E","10.205.0.57,192.168.1.15","fe80::5972:398d:f89b:5b8b","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.04.02","5CG133659N","","'+02:00","2026-03-23T09:41:55.000+02:00","SANEF\pelzer","Cloud Agent","78fce208-7650-4644-ad59-45745cd962ba","2022-04-04T15:51:20.000+02:00","2026-03-31T22:53:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,VRF_INCONNUE","343.0" +"353358783","341973644","PCB18110.sanef.groupe","PCB18110","38:CA:84:52:09:98","10.101.243.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.18.00","5CG2376HTD","","'+02:00","2026-03-29T17:44:10.000+02:00","SANEF\KHUONG","Cloud Agent","0896aa38-a488-4a4a-b887-7ac8e7a2d983","2025-08-21T15:50:24.000+02:00","2026-03-31T18:45:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"412651305","366357254","PAD24096.sanef-int.adds","PAD24096","10:B6:76:7D:40:81","10.252.2.18","fe80::f4a3:98b5:5f7b:b895","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZF","","'+02:00","2026-03-31T15:49:35.000+02:00","","Cloud Agent","3cdfca41-ced2-4fac-bcf1-5b908a3a9fb5","2026-03-31T15:35:54.000+02:00","2026-03-31T16:20:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"412667650","366357675","PCV22327.sanef-int.adds","PCV22327","","10.252.2.23","fe80::f89b:bb0d:e850:e5f9","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","","","","","","Cloud Agent","74215795-bb3d-4e7c-b329-b1b0a0959c80","2026-03-31T15:43:25.000+02:00","2026-03-31T15:56:28.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"393390101","358619751","PCB21085.sanef.groupe","PCB21085","E4:60:17:CB:F4:E4","10.205.0.145,192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764K6","","'+02:00","2026-03-30T12:30:05.000+02:00","SANEF\KIMAOUI-ext","Cloud Agent","0b2ceac8-2253-4271-8470-58e281234941","2026-01-19T17:57:36.000+02:00","2026-03-31T15:38:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","330.0" +"356620847","343412128","PCB24242.sanef.groupe","PCB24242","24:FB:E3:CD:06:1E","10.101.243.200,10.255.4.195","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M5C","","'+02:00","2026-03-30T09:05:51.000+02:00","SANEF\DARRIEUS-ext","Cloud Agent","41b93a9b-9dfe-4ccc-91e1-2d0d9befbaf6","2025-09-03T15:00:10.000+02:00","2026-03-31T14:59:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","328.0" +"361981512","345536974","PCB21078.sanef.groupe","PCB21078","E0:C2:64:59:CA:0E","10.255.4.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD336NWF3","","'+02:00","2026-03-31T10:37:33.000+02:00","othman.selmi-ext@bipandgo.com","Cloud Agent","b7ff4a29-92c2-4c14-adf9-7438ea4939a5","2025-09-22T15:17:55.000+02:00","2026-03-31T14:59:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"357904457","343918401","PCB22717.sanef.groupe","PCB22717","D0:AD:08:AA:50:4E","10.208.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764JC","","'+02:00","2026-03-30T15:04:50.000+02:00","SANEF\meneses","Cloud Agent","35c6d86c-72d5-4f16-bcb0-cc0e6c2c6070","2025-09-08T16:39:56.000+02:00","2026-03-31T14:52:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","144.0" +"397144069","360227233","PCB24329.sanef.groupe","PCB24329","70:15:FB:7E:45:0A","10.255.4.135,192.168.1.86","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZT","","'+02:00","2026-03-31T11:15:44.000+02:00","SANEF\RIZKI-ext","Cloud Agent","6de5a959-579d-411f-b6fa-6e8150f172b1","2026-02-03T13:50:32.000+02:00","2026-03-31T14:47:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","138.0" +"391576909","357913781","SVP22768.sanef-int.adds","SVP22768","D0:AD:08:A7:27:CC","10.252.2.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YL2","","'+02:00","2026-03-19T11:25:17.000+02:00","Superviseur","Cloud Agent","53e09944-95ba-49cb-8db0-2f01b766b772","2026-01-13T10:33:23.000+02:00","2026-03-31T14:45:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"355180643","342750800","PMS20925.sanef-int.adds","PMS20925","BC:0F:F3:87:70:A0","10.44.201.99","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3290LMR","","'+02:00","2026-02-19T12:10:54.000+02:00","Supwin","Cloud Agent","5227f9b5-9cb3-4e65-9aff-159dc150172f","2025-08-28T14:36:18.000+02:00","2026-03-31T14:14:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,TAG-CAPIV,TAG-SIC","346.0" +"412639513","366351001","PAD24096.sanef-int.adds","PAD24096","10:B6:76:7D:40:81","10.252.2.18","fe80::2347:97c2:15d2:6ead","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZF","","'+02:00","2026-03-31T13:54:02.000+02:00","","Cloud Agent","fe9742bc-0586-4952-a55c-d392b6fdc7ab","2026-03-31T13:59:27.000+02:00","2026-03-31T14:02:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"412625287","366339054","PAD24096.sanef-int.adds","PAD24096","10:B6:76:7D:40:81","10.252.2.18","fe80::368e:865a:2bf9:22bb","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZF","","'+02:00","2026-03-31T12:24:50.000+02:00","","Cloud Agent","19dbce9e-55e4-417f-9488-ed6e95bee71d","2026-03-31T12:30:41.000+02:00","2026-03-31T12:33:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"407677936","364176154","PCB22639.sanef.groupe","PCB22639","D0:AD:08:AA:4F:FC","10.220.31.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764FQ","","'+02:00","2026-03-31T08:49:03.000+02:00","florence.macon@sapn.fr","Cloud Agent","ca21c378-3a3a-48de-b759-8bf499357904","2026-03-11T13:37:09.000+02:00","2026-03-31T09:05:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","138.0" +"326814945","","PCB18713.sanef.groupe","PCB18713","58:1C:F8:E9:C0:B4","192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D30","","'+02:00","2026-03-28T09:20:46.000+02:00","SANEF\mariot","Cloud Agent","8550f421-93ac-440b-9399-b96d4a963dc7","2025-05-23T10:01:45.000+02:00","2026-03-31T09:03:39.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"409979466","365140802","PCB24241.sanef.groupe","PCB24241","C8:58:B3:34:01:D4","10.101.243.226,10.255.3.137","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M6V","","'+01:00","2026-03-26T17:05:22.000+02:00","SANEF\molinas-ext","Cloud Agent","8346832a-2bd9-4f62-b557-fd3723130e43","2026-03-20T11:21:47.000+02:00","2026-03-30T17:59:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"404138423","362713724","PCB23745.sanef.groupe","PCB23745","C8-6E-08-47-0B-E3, C8-6E-08-47-0B-E0, C8-6E-08-47-0B-DF","10.95.167.111","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H5B","","'+01:00","2026-02-26T17:55:29.000+02:00","sofian.boutagni@sapn.fr","Cloud Agent","5df7de9a-0ae5-4bd1-9e7a-b5b9e31f8099","2026-02-25T15:46:21.000+02:00","2026-03-30T15:54:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"412416235","366142827","PCB22535.sanef.groupe","PCB22535","D0:AD:08:AA:50:89","10.255.3.248,10.252.4.28","fe80::5fa:653e:315:954c","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764L8","","'+02:00","2026-03-30T15:14:32.000+02:00","","Cloud Agent","956f07a2-49be-408a-8b19-c0a50b38c755","2026-03-30T15:12:20.000+02:00","2026-03-30T15:31:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"391116363","357836739","PCB16433.sanef.groupe","PCB16433","70:C6:AC:F4:CF:99, DC:21:48:FD:60:3D","192.168.177.20,10.255.2.129","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","1","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.19.00","5CD14383ZT","","'+02:00","2026-03-30T14:01:14.000+02:00","SANEF\CENSIER","Cloud Agent","12b83fbe-f079-405c-9415-085b2efd89ff","2026-01-12T16:50:43.000+02:00","2026-03-30T14:09:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"412386043","366127871","PCB21356.sanef.groupe","PCB21356","E4-60-17-C4-7F-15, D0-AD-08-A4-76-57, D0-AD-08-AA-50-56, E4-60-17-C4-7F-11, E4-60-17-C4-7F-12, E6-60-17-C4-7F-11","10.101.243.1","fe80::e965:5213:e65e:ff70","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CD34764JM","","'+02:00","","","Cloud Agent","1638903b-8a4b-45ea-aaf1-2ec50d5c6dc6","2026-03-30T12:46:36.000+02:00","2026-03-30T12:46:35.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"409071009","364813991","PCB22728.sanef.groupe","PCB22728","E6-60-17-CB-F4-F3, D0-AD-08-AA-50-40, E4-60-17-CB-F4-F4, E4-60-17-CB-F4-F3, D0-AD-08-A4-73-80, E4-60-17-CB-F4-F7","10.208.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7462)","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","","","15568","","5CD34764HX","","'+01:00","2026-03-17T16:06:43.000+02:00","","Cloud Agent","6b970665-8aa1-4727-a502-d19c0f110219","2026-03-17T16:04:03.000+02:00","2026-03-30T12:32:36.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"374403908","350600749","PCB21196.sanef.groupe","PCB21196","D0:AD:08:AA:50:73","10.208.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.05.05","5CD34764KK","","'+02:00","2026-03-30T09:59:37.000+02:00","SANEF\roulot","Cloud Agent","bdf1c231-629e-4ade-82af-4de1ecc6fdb8","2025-11-05T12:46:46.000+02:00","2026-03-30T11:54:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"313502893","325922026","SVP22605.sanef-int.adds","SVP22605","D0:AD:08:A4:73:AA","10.142.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764DG","","'+01:00","2025-12-27T10:19:53.000+02:00","Superviseur","Cloud Agent","6d683fb5-1b9f-4a7f-8d7c-5faf98a4a534","2025-04-03T18:35:56.000+02:00","2026-03-30T10:45:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"412339900","366115341","PCB17211.sanef.groupe","PCB17211","58-6C-25-2D-CD-FE, 5A-6C-25-2D-CD-FA, 58-6C-25-2D-CD-FB, 58-6C-25-2D-CD-FA","192.168.1.11","","Windows / Client","Microsoft Windows 11 Pro (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CG13363Y0","","'+02:00","","","Cloud Agent","f2eea4cd-274e-4555-9c60-98a12a86a269","2026-03-30T10:20:05.000+02:00","2026-03-30T10:20:04.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"411659853","365750926","PCB21356.sanef.groupe","PCB21356","D0-AD-08-A4-76-57, E4-60-17-C4-7F-11, E4-60-17-C4-7F-12, E6-60-17-C4-7F-11","10.255.2.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623)","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","","","15576","","5CD34764JM","","'+01:00","2026-02-04T20:31:41.000+02:00","","Cloud Agent","428d2ca8-4e48-4baf-93e9-a62cef358d5f","2026-03-26T17:08:04.000+02:00","2026-03-30T10:17:40.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"309303648","324140378","PAD21017.sanef.groupe","PAD21017","E0:C2:64:59:D7:79","10.255.2.223","fe80::d22b:f537:5227:3741","Windows / Client","Microsoft Windows 10 Pro (22H2 Build 19045) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","16016","HP V74 Ver. 01.01.07","5CD336NWF9","","'+02:00","2026-03-30T08:57:22.000+02:00","SANEF\LAD04561","Cloud Agent","120e94d4-718e-4bc1-b8f9-1748ec808004","2025-03-19T10:40:04.000+02:00","2026-03-30T09:18:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"408744878","364660679","PCB17887.sanef.groupe","PCB17887","70:A8:D3:85:76:77","10.255.4.242,10.255.4.229","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.10.00","5CG217248B","","'+01:00","2025-10-23T03:04:02.000+02:00","SANEF\fresneau","Cloud Agent","2ecdb5e6-a273-4f1b-a8f4-b3acfb7fd283","2026-03-16T11:58:28.000+02:00","2026-03-30T09:15:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"324096142","","PCB20672.sanef.groupe","PCB20672","58:1C:F8:E9:A7:05","10.205.0.144,192.168.0.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DPY","","'+02:00","2026-03-23T15:15:58.000+02:00","SANEF\FWOK","Cloud Agent","8063c54c-3bb3-42b7-854b-5257bc9fd56f","2025-05-12T16:05:06.000+02:00","2026-03-29T18:24:53.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"180751469","233060988","vrsvpasan1","VRSVPASAN1","00:50:56:9C:DA:27","10.45.9.165","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 17 5d 06 0b f5 4f-59 2d fa f1 92 e2 6d e8","NoAssetTag","'+02:00","2026-02-17T15:33:36.000+02:00","gare","Cloud Agent","64cc393e-df87-4d0a-8262-e286d87c14c8","2023-07-31T16:34:08.000+02:00","2026-03-29T16:20:26.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,DEX","676.0" +"412186586","366022641","SVP18473.sanef-int.adds","SVP18473","D0-AD-08-A4-73-88","10.212.36.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CD34764GB","","'+02:00","","","Cloud Agent","c5c2693d-4174-4d16-b806-7f1df1d9cc5b","2026-03-29T10:20:44.000+02:00","2026-03-29T10:20:43.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"411668041","365755931","PCB18405.sanef.groupe","PCB18405","84:69:93:E1:B9:7A","10.252.4.19","fe80::4868:1075:a6b4:d3cf","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG21724Q6","","'+01:00","2026-03-26T18:25:28.000+02:00","","Cloud Agent","885c4a60-e44d-4b15-bb48-67ef361380a5","2026-03-26T18:03:05.000+02:00","2026-03-27T17:02:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"395633761","359554349","PCB24332.sanef.groupe","PCB24332","70:15:FB:7E:44:BF","10.255.4.37,10.255.4.204","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZQ","","'+01:00","2026-02-02T16:35:30.000+02:00","SANEF\salama-ext","Cloud Agent","88609d51-7018-431d-a1f0-48cc3cfc7683","2026-01-28T17:54:25.000+02:00","2026-03-27T16:13:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"281013406","305755497","PCB22533.sanef.groupe","PCB22533","D0:AD:08:AA:50:91","10.202.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.06.03","5CD34764LJ","","'+01:00","2026-03-04T09:14:43.000+02:00","SANEF\vesque","Cloud Agent","e12afa47-c5d3-42cd-9e64-d0346e744b46","2024-11-21T13:45:06.000+02:00","2026-03-27T13:50:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"405463753","363231541","PCB18190.sanef.groupe","PCB18190","F4:3B:D8:4A:56:96","10.255.2.200","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.04.00","5CG3292FT7","","'+01:00","2026-03-04T13:05:56.000+02:00","SANEF\ANTOINE","Cloud Agent","7b3c59e8-1537-4326-b6e5-85ffe97b3167","2026-03-02T16:36:16.000+02:00","2026-03-27T10:59:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"385783028","355855514","PCB25803.sanef.groupe","PCB25803","28:95:29:22:5D:8A","10.255.2.160,10.255.2.209","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CSL","","'+01:00","2026-03-02T10:59:34.000+02:00","SANEF\nowak-ext","Cloud Agent","801cdeb8-0ad8-4433-9627-f3f4c1fb45f2","2025-12-23T14:59:00.000+02:00","2026-03-27T10:52:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"380179678","353134679","SVP22703.sanef-int.adds","SVP22703","D0:AD:08:A4:72:E2","10.192.18.29,169.254.149.51","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764DN","","'+01:00","2026-02-27T13:57:24.000+02:00","Superviseur","Cloud Agent","ec73ec35-ee2e-4896-b053-e973f60dbc7e","2025-11-29T08:10:49.000+02:00","2026-03-26T17:28:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"411394122","365647855","PCB21106.sanef.groupe","PCB21106","E4:60:17:CA:41:03","10.101.243.189,10.255.4.185","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764LQ","","'+01:00","2026-03-26T17:17:11.000+02:00","SANEF\lestrat-ext","Cloud Agent","5ddf7175-5d2c-4c41-af54-a2489382d939","2026-03-25T17:55:07.000+02:00","2026-03-26T17:21:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"411615563","365679975","10.44.7.102","","EC:46:70:03:88:C2","10.44.7.102","","Unknown","""Meinberg LANTIME M320 V7.10.007""","Unknown","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2026-03-26T13:07:26.000+02:00","2026-03-26T13:07:20.000+02:00","Unknown","2","VM,GAV","","141.0" +"411591909","365726632","PCB24234.sanef.groupe","PCB24234","24:FB:E3:BE:98:D2","10.252.4.17","fe80::9698:cb21:f5ac:3968","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M6L","","'+01:00","2026-03-26T12:45:46.000+02:00","","Cloud Agent","dab8ff88-df4c-45d9-b031-a841ddcc3165","2026-03-26T12:38:29.000+02:00","2026-03-26T12:50:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"411594083","365724459","SVP21084.sanef-int.adds","SVP21084","64-4E-D7-9E-D0-04","10.92.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CD336NWF1","","'+01:00","","","Cloud Agent","6e85458c-25d0-4a38-b044-d95db81ce0b4","2026-03-26T12:12:53.000+02:00","2026-03-26T12:12:52.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"411410432","365648136","OSA22883.sanef-int.adds","OSA22883","","10.252.2.20","fe80::fed2:2d6c:7d4a:e461","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742)","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","","","15606","","8CC3502YMY","","","2026-03-25T18:12:52.000+02:00","","Cloud Agent","79e09ffb-e597-4578-9554-1392bfaa7fd0","2026-03-25T17:59:59.000+02:00","2026-03-26T07:46:29.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"411381239","365630516","OSA22883.sanef-int.adds","OSA22883","D0-AD-08-A7-27-C9, 62-45-2E-10-9B-B8, 60-45-2E-10-9B-B9, 60-45-2E-10-9B-B8, 60-45-2E-10-9B-BC","10.100.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","8CC3502YMY","","'+01:00","","","Cloud Agent","97561bd6-c144-4f63-bcc2-14864a3d4564","2026-03-25T14:53:06.000+02:00","2026-03-25T15:51:03.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"115078484","182292999","PCB13955.sanef.groupe","PCB13955","DC:1B:A1:DD:58:9C","10.255.4.175","fe80::189c:761:61e:2c2e","Windows / Client","Microsoft Windows 10 Pro (22H2 Build 19045) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G7 Notebook","1","2208","Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz","7965","HP S70 Ver. 01.01.06","5CG0415498","5CG0415498","'+01:00","2026-03-24T12:34:50.000+02:00","SANEF\dewilde","Cloud Agent","d0b434fa-9506-45c4-998a-2d9b22fc521d","2022-02-25T11:20:33.000+02:00","2026-03-25T15:35:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Workstation,Cloud Agent","345.0" +"236839239","266046155","OSA20935.sanef-int.adds","OSA20935","BC:0F:F3:87:6F:A6","10.100.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLR","","'+01:00","2026-03-24T07:53:43.000+02:00","Superviseur","Cloud Agent","539575ac-9e87-4280-b04e-c3dbd5a30696","2024-05-15T10:28:19.000+02:00","2026-03-25T14:01:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"411343438","365613779","PCB21304.sanef.groupe","PCB21304","30-F6-EF-A5-EB-1A, D0-AD-08-0C-7D-E4, 30-F6-EF-A5-EB-1D, 30-F6-EF-A5-EB-19","10.255.3.132","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CG3440GKD","","'+01:00","","","Cloud Agent","74317d3d-dcba-47d0-a330-391dbae6dfc0","2026-03-25T12:18:34.000+02:00","2026-03-25T12:18:33.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"118032863","184242493","PCB17225.sanef.groupe","PCB17225","50:81:40:B9:91:D2","10.4.31.110","fe80::8ab2:98e0:e1fb:6f5a","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.04.02","5CG13363SL","","'+01:00","2026-03-17T13:05:48.000+02:00","SANEF\crabs","Cloud Agent","60e8573e-9060-4c85-838c-42e35c6b3afd","2022-03-21T18:07:53.000+02:00","2026-03-25T12:04:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,VRF_INCONNUE,Workstation","345.0" +"372634633","349824019","GTC18236","GTC18236","5C:60:BA:59:E6:01","10.100.210.20","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y98","8CC2250Y98","'+01:00","2026-02-16T18:30:50.000+02:00","gtc-client","Cloud Agent","221aa88e-31d8-4923-a0fc-d52b0f3b8750","2025-10-29T11:06:24.000+02:00","2026-03-25T11:35:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","340.0" +"379351248","352793262","DAI18685.sanef-int.adds","DAI18685","30:13:8B:6C:5D:5B","10.100.70.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.05.01","CZC44473W1","","'+01:00","2025-12-04T16:41:35.000+02:00","DAIUSER","Cloud Agent","63b9b706-a646-4aeb-8c14-fb7d8f48d1fe","2025-11-25T17:39:01.000+02:00","2026-03-25T10:31:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"325891293","","PCB18049.sanef.groupe","PCB18049","0A:00:27:00:00:10","10.255.4.241,192.168.56.1","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRK","","'+01:00","2026-03-09T07:59:30.000+02:00","SANEF\MOUTAOUAKIL-ext","Cloud Agent","835176c5-1083-4c62-bd38-763ccd4ea3f2","2025-05-20T09:37:07.000+02:00","2026-03-25T09:59:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"200578202","244427397","PCB18610.sanef.groupe","PCB18610","38:CA:84:DB:9D:15","10.4.30.11,10.101.243.182","fe80::3dcc:39dc:f383:2fc5","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.16.00","5CG2433WCS","","'+01:00","2026-03-23T17:59:42.000+02:00","SANEF\gayr","Cloud Agent","97f0d1e5-312f-4995-88a7-fe82d65bf4b5","2023-11-23T17:35:22.000+02:00","2026-03-25T09:28:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","350.0" +"411062576","365482175","10.44.7.101","","EC:46:70:03:88:C1","10.44.7.101","","Unknown","""Meinberg LANTIME M320 V7.10.007""","Unknown","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2026-03-24T17:10:29.000+02:00","2026-03-24T17:10:17.000+02:00","Unknown","2","VM,GAV","","141.0" +"201154449","244705509","PCB17883.sanef.groupe","PCB17883","84:69:93:E1:1A:69","10.255.2.32,10.4.31.97","fe80::2451:ac50:8af8:4a6","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG21724KL","","'+01:00","2026-03-24T12:32:41.000+02:00","SANEF\lambert","Cloud Agent","916bac68-a311-49e1-a296-8252525aa549","2023-11-27T18:18:53.000+02:00","2026-03-24T14:25:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","349.0" +"365294551","346842230","PCV21581.sanef-int.adds","PCV21581","D0:AD:08:A7:27:DA","10.107.7.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YT2","","'+01:00","2025-11-19T18:41:53.000+02:00","Operateur","Cloud Agent","9de2dc87-4fe4-4808-bb7f-16d57dfb2389","2025-10-03T17:08:08.000+02:00","2026-03-24T13:46:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"395039386","359284199","MIO20976.sanef-int.adds","MIO20976","BC:0F:F3:88:FD:31","10.100.40.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3290LMH","","'+01:00","2026-02-09T06:06:22.000+02:00","Operateur","Cloud Agent","31935f62-3f6b-493b-852a-7c107d126149","2026-01-26T11:35:01.000+02:00","2026-03-24T12:51:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"319332093","328394847","PCB22899.sanef.groupe","PCB22899","D0:AD:08:A7:27:E0","10.107.30.14","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSQ","8CC3502YSQ","'+01:00","2026-02-28T09:11:45.000+02:00","SANEF\LIBERALJ","Cloud Agent","108e4ebf-b499-45c2-aff7-097350bcbf16","2025-04-25T10:53:47.000+02:00","2026-03-24T11:35:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","140.0" +"194227844","241318825","PCB17116.sanef.groupe","PCB17116","0A:00:27:00:00:0E, C8:5A:CF:B8:F2:63","192.168.1.19,192.168.56.1,10.13.31.12","fe80::b554:f246:49a8:17be,fe80::8a8c:94e5:a5b6:fd3c","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.4170) 64-Bit","22H2","Computers / Notebook","HP ProBook 640 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T74 Ver. 01.08.01","5CD15181NF","","'+01:00","2026-03-24T10:59:22.000+02:00","SANEF\THIL","Cloud Agent","4b31d007-0b4d-44ea-8b17-62778aa142f4","2023-10-19T11:10:50.000+02:00","2026-03-24T11:17:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","345.0" +"176556834","230090902","PCB18638.sanef.groupe","PCB18638","64:D6:9A:74:73:E0","10.255.4.183,10.255.4.44","fe80::3dce:b3ac:c372:e029","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG2433WD5","","'+01:00","2026-03-18T15:25:59.000+02:00","SANEF\LEFEBVRE","Cloud Agent","58a45ab3-62a6-4d09-b3c4-e8c6548de41a","2023-06-30T10:21:28.000+02:00","2026-03-23T18:42:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","351.0" +"410597376","365384700","PCB18623.sanef.groupe","PCB18623","38:CA:84:DB:E6:C9","10.252.4.10","fe80::932b:e2b7:5790:b585","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG2433WD8","","'+01:00","2026-03-23T15:17:29.000+02:00","","Cloud Agent","8d5255dd-83ff-4cdf-b067-4f882e36d13e","2026-03-23T15:15:51.000+02:00","2026-03-23T15:30:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"410064844","365176295","vdlabawdc2","VDLABAWDC2","00:50:56:9C:3A:77","10.45.16.61","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","6143","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 90 40 4e e7 c5 8a-a2 2a 1c a7 7a fd 73 be","NoAssetTag","'+01:00","2026-03-20T13:01:44.000+02:00","Administrateur","Cloud Agent","e5c41965-3ef7-476d-801f-8ba584c63c13","2026-03-20T16:24:47.000+02:00","2026-03-23T14:58:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","248.0" +"408836610","364697184","PSX20822.sanef-int.adds","PSX20822","30:13:8B:6C:60:91","10.252.2.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.05.04","CZC4437Q89","","'+01:00","2026-03-20T11:29:50.000+02:00","UserSextan","Cloud Agent","507f17e1-83dd-444c-bd0a-ca5c44ae033c","2026-03-16T17:49:11.000+02:00","2026-03-23T13:55:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"399618484","361220609","PCB17947.sanef.groupe","PCB17947","70:A8:D3:88:5D:92","10.255.1.154","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG21724PW","","'+01:00","2026-03-23T09:22:41.000+02:00","SANEF\assid-ext","Cloud Agent","6f3bb932-8ca4-4338-aa2a-92cb068b5825","2026-02-12T14:55:36.000+02:00","2026-03-23T13:23:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"410003164","365142434","PCB17220.sanef.groupe","PCB17220","50:81:40:B8:AF:CB","10.252.4.8","fe80::817c:5098:9290:1574","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T76 Ver. 01.04.02","5CG13365JF","","'+01:00","2026-03-20T12:04:34.000+02:00","","Cloud Agent","a3cdfe03-f5d4-477b-8cbe-ba646eecf07d","2026-03-20T11:40:25.000+02:00","2026-03-23T12:54:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"320931986","328808973","PCB22830.sanef.groupe","PCB22830","D0:AD:08:A7:27:B2","10.103.30.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPH","8CC3502YPH","'+01:00","2026-03-10T10:26:58.000+02:00","SANEF\amagata","Cloud Agent","2a21f5f7-380e-4c4f-b013-753844796036","2025-04-30T09:55:31.000+02:00","2026-03-23T11:47:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","126.0" +"321051455","328926142","PCB21513.sanef.groupe","PCB21513","60:45:2E:11:78:1C","10.255.3.11,10.255.3.158","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYC","8CC3502YYC","'+01:00","2026-03-02T16:59:57.000+02:00","SANEF\PRUNEAUD","Cloud Agent","847ebb52-eca1-42f4-9b29-cc798c2dd51f","2025-04-30T16:54:02.000+02:00","2026-03-23T09:51:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","126.0" +"374069723","350446763","PCB22276.sanef.groupe","PCB22276","D0:AD:08:A3:7B:51","10.200.31.91","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRR","8CC3502YRR","'+01:00","2026-03-13T11:02:34.000+02:00","SANEF\dupuisf","Cloud Agent","26c070c6-370f-48a4-8ab2-37cdc04f262d","2025-11-04T10:00:31.000+02:00","2026-03-22T09:44:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","126.0" +"319178116","328307350","PCB22627.sanef.groupe","PCB22627","D0:AD:08:AA:4F:EA","10.255.4.166,10.202.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.05.05","5CD34764F4","","'+01:00","2026-03-03T10:56:52.000+02:00","SANEF\patind","Cloud Agent","ce5397ab-8148-4ef8-a305-5b7ebbca63a6","2025-04-24T14:23:35.000+02:00","2026-03-20T21:39:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","137.0" +"281050802","305778688","PCB22527.sanef.groupe","PCB22527","D0:AD:08:AA:50:86","10.202.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.06.03","5CD34764L5","","'+01:00","2026-03-11T16:10:44.000+02:00","SANEF\pontiers","Cloud Agent","7eaeb3ee-2423-425b-bb07-5512a79e1e28","2024-11-21T17:19:48.000+02:00","2026-03-20T18:57:13.000+02:00","64-Bit","2","VM,PM,GAV","Cloud Agent,Workstation","137.0" +"321056836","328926278","PCB23757.sanef.groupe","PCB23757","6C:0B:5E:ED:A2:53","10.104.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H27","","'+01:00","2026-02-28T09:28:29.000+02:00","SANEF\bruyant","Cloud Agent","938c0af2-43a2-4e1b-a6ca-d85a9fe51922","2025-04-30T16:58:43.000+02:00","2026-03-20T12:46:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"377179863","351928818","PCB17986.sanef.groupe","PCB17986","C0:18:03:85:61:72","10.200.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.10.00","8CC2061753","8CC2061753","'+01:00","2026-02-28T09:15:09.000+02:00","SANEF\bouvierar","Cloud Agent","ece55525-9296-43c3-b149-a62bc8146377","2025-11-17T13:55:18.000+02:00","2026-03-20T12:18:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","140.0" +"383034526","354263305","PCB24241.sanef.groupe","PCB24241","C8:58:B3:34:01:D4","10.101.243.45,192.168.0.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M6V","","'+01:00","2026-03-03T09:26:08.000+02:00","SANEF\leroyr-ext","Cloud Agent","19b4d066-1d1c-4066-adfa-00c4f9606530","2025-12-10T14:41:57.000+02:00","2026-03-20T11:04:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"281021857","305748074","PCB22512.sanef.groupe","PCB22512","D0:AD:08:AA:50:11","10.202.31.40","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6060) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764GD","","'+01:00","2026-03-18T14:03:35.000+02:00","SANEF\patin","Cloud Agent","ae337e16-1d58-4d2c-8995-6d23d761429b","2024-11-21T12:42:28.000+02:00","2026-03-19T20:18:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","333.0" +"398820756","360848149","PCB16013.sanef.groupe","PCB16013","48:9E:BD:4B:91:11","10.200.31.58","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129283T","","'+01:00","2026-02-10T18:47:36.000+02:00","SANEF\cote","Cloud Agent","364943a5-a659-4e40-acf9-79772e00be8f","2026-02-09T13:19:52.000+02:00","2026-03-19T13:45:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"377243668","351957241","PCB16077.sanef.groupe","PCB16077","48:9E:BD:4B:90:AB","10.200.31.22,10.200.31.85","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129284L","8CC129284L","'+01:00","2026-02-28T09:15:20.000+02:00","SANEF\bouvierar","Cloud Agent","36a8c554-2736-46db-bb2d-3d1a91c021b0","2025-11-17T18:20:49.000+02:00","2026-03-19T13:36:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","142.0" +"407943702","364295063","PCB17951.sanef.groupe","PCB17951","70:A8:D3:84:F4:81","10.255.3.242","fe80::1864:14a1:4249:8e29","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG21724K7","","'+01:00","2026-03-12T12:51:49.000+02:00","SANEF\credot","Cloud Agent","d8027ff1-6ba6-446c-ab35-3a1e65952f19","2026-03-12T12:45:06.000+02:00","2026-03-19T13:28:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"362272203","345671221","PCB17869.sanef.groupe","PCB17869","70:A8:D3:85:B9:89","10.255.3.181","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7171) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG21724L6","","'+01:00","2026-03-19T09:17:07.000+02:00","SANEF\hebertl","Cloud Agent","9cb71e86-eec9-4ba4-a30d-00b7cec4efbe","2025-09-23T13:23:16.000+02:00","2026-03-19T12:54:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"364171253","346469322","vpdsiaito1.sanef.groupe","","00:50:56:9c:fa:7c","10.46.33.35","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15731","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 29 1a 4f 84 a5 cf-aa 45 de 5e 04 ad 47 37","No Asset Tag","'+01:00","2025-11-24T16:14:16.000+02:00","cybreconcile","Cloud Agent","322b6db7-30b2-4bb8-a774-afb954e818d0","2025-09-30T11:25:11.000+02:00","2026-03-19T11:36:06.000+02:00","x86_64","3","SCA,VM,PM,GAV","Production,MID-NGINX DYN,OS-LIN-SRV DYN,ITOP,Cloud Agent,Linux Server","490.0" +"325260276","","PCB21563.sanef.groupe","PCB21563","D0:AD:08:A3:E7:3A","10.4.31.74","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTJ","","'+01:00","2026-03-02T10:48:39.000+02:00","SANEF\moreauxd","Cloud Agent","e543c038-3dc5-45ae-bf3d-0cf9b80af95c","2025-05-16T16:07:12.000+02:00","2026-03-19T07:10:22.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"409486574","364917267","PCB18191.sanef.groupe","PCB18191","BC-0F-F3-86-4C-11, 64-4E-D7-0F-F2-7C, C8-5E-A9-A5-73-A9, C8-5E-A9-A5-73-A6, C8-5E-A9-A5-73-A5, CA-5E-A9-A5-73-A5","10.100.39.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CD3295RYH","","'+01:00","","","Cloud Agent","94ab0442-00dc-4053-8d44-67c0b4ea425e","2026-03-18T13:10:15.000+02:00","2026-03-18T15:42:50.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"363863260","346358013","PCV21514.sanef-int.adds","PCV21514","D0:AD:08:A7:28:68","10.7.53.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YLQ","","'+01:00","2025-11-26T15:05:44.000+02:00","Operateur","Cloud Agent","fd6c8b84-7a3a-46b1-8fc7-6068f911a691","2025-09-29T11:59:03.000+02:00","2026-03-18T12:55:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"165484501","221776194","vriadawdc2.recette.adds","VRIADAWDC2","00:50:56:82:9B:E3","10.45.0.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 02 62 8a e4 2d 1b 5f-c2 c7 e2 a8 ea da b1 0f","NoAssetTag","'+01:00","2026-03-16T12:17:34.000+02:00","RECETTE\a03987","Cloud Agent","c954dcf4-a403-4ac7-99b5-525446d90d43","2023-04-05T15:17:07.000+02:00","2026-03-18T12:04:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Recette,DSI,AD,OS-WIN-SRV DYN,Cloud Agent,Windows Server","243.0" +"115078266","182292674","PCB16518.sanef.groupe","PCB16518","6C:02:E0:0A:F8:DE","10.4.31.8","fe80::b31d:a7e2:4483:499b","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G7 Notebook","8","2208","Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz","24349","HP S70 Ver. 01.03.02","5CG05100WM","5CG05100WM","'+01:00","2026-03-17T13:13:06.000+02:00","SANEF\benne","Cloud Agent","d17de56b-a9aa-4c8d-8d7a-a0ba325cd690","2022-02-25T11:16:59.000+02:00","2026-03-18T11:58:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Workstation,Cloud Agent","342.0" +"403270155","362440080","PCB20701.sanef.groupe","PCB20701","58:1C:F8:EB:78:C3","10.205.0.17,192.168.0.98","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.7840)","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQF","","'+01:00","2026-03-04T17:21:58.000+02:00","SANEF\FALL-ext","Cloud Agent","027ed3b2-4d14-4745-8f6b-bb17825c37f7","2026-02-23T13:50:53.000+02:00","2026-03-17T17:10:19.000+02:00","64 bits","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","126.0" +"201134053","244693586","PCB18628.sanef.groupe","PCB18628","64:D6:9A:74:74:44","10.4.30.27,10.255.1.159","fe80::ae15:b20:a638:abf2","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG2433WCY","","'+01:00","2026-03-16T09:29:13.000+02:00","SANEF\robertf","Cloud Agent","626b9bde-0094-4488-bb57-2ac78b1cc478","2023-11-27T15:17:29.000+02:00","2026-03-17T16:19:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"408246057","364437537","PCB17490.sanef.groupe","PCB17490","70-A8-D3-85-75-BD, 70-A8-D3-85-75-BA, 70-A8-D3-85-75-B9, 72-A8-D3-85-75-B9","10.255.3.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7171)","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","","","15664","","5CG21724PR","","'+01:00","2026-03-16T15:28:02.000+02:00","","Cloud Agent","cc0edeb0-7dc1-44dd-8cbb-7c36d939b85f","2026-03-13T16:10:51.000+02:00","2026-03-17T15:33:35.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"365778389","347045863","PCV22817.sanef-int.adds","PCV22817","D0:AD:08:A7:27:EE","10.154.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YPM","","'+01:00","2026-01-15T09:58:05.000+02:00","Operateur","Cloud Agent","b762b2e8-9dc1-4a71-93a6-9bbf5fc7ffc0","2025-10-06T09:44:07.000+02:00","2026-03-17T13:03:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"408936903","364759843","83.68.99.128","","","83.68.99.128","","Linux / Unidentified","Canonical Ubuntu","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2026-03-17T08:32:59.000+02:00","2026-03-17T08:32:50.000+02:00","","4","VM,GAV","Qualys Test Scan Externe,Internet Facing Assets,Adresses IP publiques","244.0" +"395819795","359631656","PCB22501.sanef.groupe","PCB22501","E4:60:17:C4:EC:B7","10.205.0.11,10.100.200.109","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7171) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764JQ","","'+01:00","2026-03-10T18:39:00.000+02:00","SANEF\BERNARD-ext","Cloud Agent","b71896b7-90ef-40a9-8956-f45d3453a21f","2026-01-29T11:04:45.000+02:00","2026-03-16T19:07:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"402067537","361856672","PCB21122.sanef.groupe","PCB21122","E6-60-17-CB-E6-57, E4-60-17-CB-E6-5B, D0-AD-08-A4-76-60, E4-60-17-CB-E6-57, E4-60-17-CB-E6-58","10.101.243.211","","Windows / Client","Microsoft Windows 10 Pro (22H2 Build 19045)","22H2","Computers / Unidentified","Computers","","","","","","5CD34764G5","","'+01:00","","","Cloud Agent","a5a8cc2e-00f5-43f7-bf72-c050fe9e7a60","2026-02-18T10:25:41.000+02:00","2026-02-18T10:25:39.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"126685594","190111843","PCB13487.sanef.groupe","PCB13487","DC:1B:A1:EE:27:7B","10.255.1.212","fe80::a22c:3fd3:b321:1258","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G7 Notebook","8","2208","Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz","7965","HP S70 Ver. 01.15.00","5CG04154G3","5CG04154G3","'+01:00","2026-03-02T20:38:20.000+02:00","SANEF\herault","Cloud Agent","70ac2f45-7f0a-48c9-ae75-a815b03b8c9b","2022-06-03T18:53:05.000+02:00","2026-03-16T16:35:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,VRF_INCONNUE,Workstation","341.0" +"408806431","364686001","PSX20822.sanef-int.adds","PSX20822","30:13:8B:6C:60:91","10.252.2.23","fe80::e8b2:5e60:ecd6:aecc","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q89","","'+01:00","2026-03-16T16:01:52.000+02:00","","Cloud Agent","e6ebd9e5-54bb-4179-b27d-06f6a5cacde0","2026-03-16T15:51:44.000+02:00","2026-03-16T16:26:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"10175494","93825157","83.68.99.75","","","83.68.99.75","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2013-12-09T10:50:44.000+02:00","2026-03-16T13:39:04.000+02:00","","4","VM,GAV","Qualys Test Scan Externe,Internet Facing Assets,Adresses IP publiques","791.0" +"10175656","95549633","83.68.99.49","","","83.68.99.49","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:33.000+02:00","2026-03-16T13:06:46.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques,Qualys Test Scan Externe","581.0" +"408790916","364617141","83.68.99.91","","","83.68.99.91","","Unidentified / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x / IBM ASM / HP StoreOnce / F5 Networks Big-IP / Cisco IOS Software","","Unidentified / Unidentified","","","","","","","","","","","","IP Scanner","","2026-03-16T12:45:14.000+02:00","2026-03-16T12:45:05.000+02:00","","4","VM,GAV","Internet Facing Assets,Qualys Test Scan Externe,Adresses IP publiques","244.0" +"10175477","93825140","mail.eurotoll.fr","","","83.68.99.44","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:16.000+02:00","2026-03-16T12:39:11.000+02:00","","4","VM,GAV","Qualys Test Scan Externe,Adresses IP publiques,Internet Facing Assets","604.0" +"340893521","336918299","83.68.99.79","","","83.68.99.79","","Linux / Unidentified","Canonical Ubuntu","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2025-07-11T16:54:23.000+02:00","2026-03-16T12:37:40.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets,Qualys Test Scan Externe","577.0" +"333459234","333795990","83.68.99.62","","","83.68.99.62","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR / F5 Networks Big-IP","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2025-06-16T11:45:14.000+02:00","2026-03-16T12:37:16.000+02:00","","4","VM,GAV","Adresses IP publiques,Qualys Test Scan Externe,Internet Facing Assets","577.0" +"347837761","339391345","PCB18119.sanef.groupe","PCB18119","D0:AD:08:E5:7C:70","10.255.4.45,10.101.243.119","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T39 Ver. 01.12.00","5CG2376HS0","","'+01:00","2026-03-02T19:06:40.000+02:00","SANEF\LEGOFF","Cloud Agent","3b368230-9526-4dd0-a454-81763f10366c","2025-07-31T12:34:45.000+02:00","2026-03-16T11:24:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","126.0" +"200531597","244404123","PAD21014.sanef.groupe","PAD21014","E0:C2:64:5A:13:10","10.255.4.11","fe80::a17c:3ff:e9b2:b1c7","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","16016","HP V74 Ver. 01.06.03","5CD336NWF2","","'+01:00","2026-03-13T10:34:42.000+02:00","SANEF\LADP0755","Cloud Agent","151752f9-f7d5-456d-ba3d-4a7c511e1d01","2023-11-23T12:08:05.000+02:00","2026-03-16T09:24:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","351.0" +"408629459","364600817","PCB13703.sanef.groupe","PCB13703","84-FD-D1-16-34-A6, 84-FD-D1-16-34-A7, 86-FD-D1-16-34-A6, F8-B4-6A-20-F4-2A","192.168.1.21","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045)","22H2","Computers / Unidentified","Computers","","","","","","5CG92726T2","","'+01:00","","","Cloud Agent","88ec9a00-d548-427c-b910-50cd863c4821","2026-03-15T22:50:40.000+02:00","2026-03-15T22:50:39.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"342477291","337548281","PCB18720.sanef.groupe","PCB18720","58:1C:F8:EA:C6:76","192.168.1.66","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CS9","","'+01:00","2026-03-05T18:26:35.000+02:00","SANEF\DACOSTAH","Cloud Agent","40412fc2-1b3d-4db0-be84-7011094328d3","2025-07-17T10:15:22.000+02:00","2026-03-15T21:10:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","130.0" +"269330646","299220500","vtdsiaels2.sanef-rec.fr","","00:50:56:9c:b1:54","10.45.1.171","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 26 34 94 6b 39 1a-41 6e ad b0 05 e4 02 2c","No Asset Tag","'+01:00","2026-01-06T13:59:06.000+02:00","cybadmbdd","Cloud Agent","505b4524-cc17-4108-81d8-1342e34dd5f3","2024-10-01T10:52:14.000+02:00","2026-03-14T04:22:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Elasticsearch,Recette,Cloud Agent,Linux Server","140.0" +"151763445","206540065","PCB17903.sanef.groupe","PCB17903","84:69:93:E1:8A:1A","10.255.3.182,10.4.31.20","fe80::26aa:29b6:ec03:9336","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.08.11","5CG21724D0","","'+01:00","2026-03-13T12:54:22.000+02:00","SANEF\champy","Cloud Agent","d0d559d3-f7a8-49c9-97af-f94a6ffaa334","2022-12-13T11:45:00.000+02:00","2026-03-13T18:06:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"407614349","364149771","PCB20615.sanef.groupe","PCB20615","58-1C-F8-EB-77-F5, 58-1C-F8-EB-77-F2, 58-1C-F8-EB-77-F1, BC-0F-F3-3B-C9-C1, 5A-1C-F8-EB-77-F1","10.255.2.131","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899)","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","","","15664","","5CG3224D3D","","'+01:00","2025-11-19T12:45:44.000+02:00","","Cloud Agent","ffcc14d2-49c2-4cfa-8191-b413efa85bcf","2026-03-11T09:43:01.000+02:00","2026-03-11T16:47:29.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"182078097","233910185","PCB18708.sanef.groupe","PCB18708","58:1C:F8:EB:79:9A","10.4.31.25,192.168.1.20","2a01:e0a:10b4:8b00:2ddd:6dc4:581d:79d0,2a01:e0a:10b4:8b00:7a84:803e:30c9:a91e,fe80::43fa:a17f:3278:6bf2","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.14.00","5CG3224D2P","","'+01:00","2026-02-23T09:43:49.000+02:00","SANEF\benard","Cloud Agent","fb59994e-c3c1-437c-a9e5-98777ace812d","2023-08-09T15:40:33.000+02:00","2026-03-11T15:07:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"404446816","362845951","PCB25880.sanef.groupe","PCB25880","C4:0F:08:B4:4B:D2","10.255.3.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG534221W","","'+01:00","2026-03-02T19:37:30.000+02:00","SANEF\peris-ext","Cloud Agent","59464b81-ec89-425a-b345-2f0004d362cd","2026-02-26T17:52:24.000+02:00","2026-03-11T11:49:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"240062524","273734487","MAC16761","MAC16761","a0:78:17:7e:24:92","10.255.1.226,10.255.1.197","fe80::1c8b:d107:70ee:d00","Mac / Client","Apple macOS Tahoe (26.3.1)","26.3","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFF94DDQ05P","","'+01:00","2026-03-06T15:34:00.000+02:00","Sylvain.DAVROU","Cloud Agent","22b8d9af-b510-4b4d-affa-8b8318c5bd5c","2024-05-29T12:01:05.000+02:00","2026-03-09T18:00:28.000+02:00","arm64_M1","2","SCA,VM,PM,GAV","Cloud Agent,BDD-POS DYN","255.0" +"391583411","357926378","PCB23609.sanef.groupe","PCB23609","C8:6E:08:8A:40:67","10.255.4.131,10.255.4.137","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5H","","'+01:00","2026-03-04T21:41:29.000+02:00","SANEF\marnef","Cloud Agent","2818134a-647f-43f4-bde4-2c426fe6220b","2026-01-13T12:23:46.000+02:00","2026-03-09T08:48:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"321589806","329089644","PCB21572.sanef.groupe","PCB21572","60:45:2E:11:E8:2E","10.255.1.140,10.255.1.149","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM6","8CC3502YM6","'+01:00","2026-03-02T14:44:46.000+02:00","SANEF\QUEVA","Cloud Agent","d8a8f2d8-0e17-4dfa-b0d9-f87ab0af043f","2025-05-02T13:49:23.000+02:00","2026-03-06T06:18:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","126.0" +"406292356","363588184","PAD24081.sanef-int.adds","PAD24081","10:B6:76:7F:51:19","10.252.2.10","fe80::4a53:6973:b9e:ec81","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5162X3H","","'+01:00","2026-03-05T16:35:45.000+02:00","","Cloud Agent","35b45331-dca0-4f02-aa0c-1e1a9dab2dac","2026-03-05T16:41:06.000+02:00","2026-03-05T17:08:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"406269848","363587107","PAD24236.sanef-int.adds","PAD24236","24:FB:E3:BE:98:0D","10.45.11.244","fe80::d3a9:81be:f259:912d","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M57","","'+01:00","2026-03-05T16:00:13.000+02:00","","Cloud Agent","69e065a7-18d4-4a8e-9898-43f15ea900a5","2026-03-05T16:31:44.000+02:00","2026-03-05T17:03:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"406280008","363586341","PAD24096.sanef-int.adds","PAD24096","10:B6:76:7D:40:81","10.252.2.5","fe80::14b2:152a:b34d:a0b8","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZF","","'+01:00","2026-03-05T16:16:02.000+02:00","","Cloud Agent","2337e7dc-e2ab-4c1f-a85a-c036f96db916","2026-03-05T16:22:03.000+02:00","2026-03-05T16:56:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"406253851","363574945","PAD24236.sanef-int.adds","PAD24236","24:FB:E3:BE:98:0D","10.45.11.244","fe80::1f9d:74b2:e50b:9d4","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.07.00","5CD5118M57","","'+01:00","2026-03-05T13:55:22.000+02:00","","Cloud Agent","7250d37f-6b28-4371-b28f-fca7d24731ef","2026-03-05T14:31:03.000+02:00","2026-03-05T14:34:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"406248836","363569902","PAD24096.sanef-int.adds","PAD24096","10:B6:76:7D:40:81","10.252.2.5","fe80::8d9e:6f80:a121:e423","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZF","","'+01:00","2026-03-05T13:32:24.000+02:00","","Cloud Agent","390fc786-2af6-4141-921b-741f7ad4f86b","2026-03-05T13:37:54.000+02:00","2026-03-05T13:40:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"406197063","363554366","PAD24096.sanef-int.adds","PAD24096","10:B6:76:7D:40:81","10.252.2.5","fe80::3b8e:7782:1237:5c68","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.07.00","5CD5153ZZF","","'+01:00","2026-03-05T10:51:54.000+02:00","","Cloud Agent","3006dae2-1eee-4c41-9a19-ffe73dc9deb0","2026-03-05T11:01:59.000+02:00","2026-03-05T11:27:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"403818019","362573020","PAD24236.sanef-int.adds","PAD24236","null, 24:FB:E3:BE:98:0D","10.44.102.10,10.4.31.52","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.07.00","5CD5118M57","","'+01:00","2026-03-04T12:24:36.000+02:00","SANEF-INT\user.test1-tst","Cloud Agent","f535348e-5318-49a4-9a70-4df187bb65c0","2026-02-24T13:44:32.000+02:00","2026-03-04T13:22:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","242.0" +"198463133","243421267","vrsvpaffb1","VRSVPAFFB1","00:50:56:9C:E9:19","10.45.9.172","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 23 02 e0 23 20 58-91 0e 76 d9 a7 09 07 40","NoAssetTag","'+01:00","2026-02-17T10:38:51.000+02:00","gare","Cloud Agent","4ee50d27-f2ae-41f1-8f45-72ffb7b5c19a","2023-11-10T22:07:51.000+02:00","2026-03-03T14:36:24.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,SVP,Cloud Agent,Windows Server","499.0" +"214450548","251394161","VRSVPAPAR1","VRSVPAPAR1","00:50:56:9C:2E:2C","10.45.9.166","fe80::a67a:548d:1bf7:ddb9","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 84 74 d8 0f fc 92-fd 8b d1 86 0f 74 39 54","NoAssetTag","'+01:00","2026-02-17T12:14:30.000+02:00","svpadmin","Cloud Agent","02f84fe5-d391-470f-b3ed-ccc36ea383cf","2024-02-08T10:25:01.000+02:00","2026-03-03T13:30:55.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Windows Server,SVP,OS-WIN-SRV DYN","497.0" +"177200698","230572089","vraiibsql2","","00:50:56:82:e5:f3","10.45.1.190","fe80::18c1:e4dc:8578:9b13","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 77 61 d4 93 28 26-ec 72 e7 64 45 3b 89 cc","No Asset Tag","'+01:00","2024-09-24T15:52:18.000+02:00","cybintsys","Cloud Agent","f2024917-d356-4795-a0cb-71c54797c320","2023-07-05T10:31:24.000+02:00","2026-03-03T12:40:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,Obsolete,BDD,DSI","55.0" +"404158020","362715215","vrpctbams2.recette.adds","VRPCTBAMS2","00:50:56:9C:6A:02","10.45.13.197","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c b8 f6 9b bf 39 51-42 0b 9f b8 0d 32 b5 55","NoAssetTag","'+01:00","2026-02-25T16:04:43.000+02:00","Administrator","Cloud Agent","6addd1b3-13eb-4321-a72e-49003ff8186e","2026-02-25T16:08:26.000+02:00","2026-02-27T09:40:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent","240.0" +"404099926","362690138","vrpctbams1.recette.adds","VRPCTBAMS1","00:50:56:9C:71:5B","10.45.13.195","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c de c6 68 a1 86 cd-3d 9d c4 6b 3d 20 b0 60","NoAssetTag","'+01:00","2026-02-25T11:33:24.000+02:00","Administrator","Cloud Agent","bf9e6767-2955-4da7-a201-df0310e7b666","2026-02-25T11:37:20.000+02:00","2026-02-27T08:16:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-POS DYN,Cloud Agent,OS-WIN-SRV DYN","241.0" +"378874409","352662732","vrpctbams2.recette.adds","VRPCTBAMS2","00:50:56:9C:6A:02","10.45.13.197","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c b8 f6 9b bf 39 51-42 0b 9f b8 0d 32 b5 55","NoAssetTag","'+01:00","2026-02-25T15:07:00.000+02:00","Administrator","Cloud Agent","52b676a7-4d4a-4f3f-9833-b22e70c4fc65","2025-11-24T14:39:58.000+02:00","2026-02-25T15:33:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Recette,BDD-POS DYN","241.0" +"285269478","313088217","vrpctbams1","VRPCTBAMS1","00:50:56:9C:71:5B","10.45.13.195","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c de c6 68 a1 86 cd-3d 9d c4 6b 3d 20 b0 60","NoAssetTag","'+01:00","2026-02-25T10:48:31.000+02:00","Administrator","Cloud Agent","0e2941c5-1d10-4435-87c6-88f8a7435c16","2024-12-09T18:17:41.000+02:00","2026-02-25T11:07:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-POS DYN,Cloud Agent,Recette,OS-WIN-SRV DYN","240.0" +"356876969","343587945","10.45.12.249","","00:60:66:01:02:03","10.45.12.249","","Linux / Unidentified","Canonical Ubuntu","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2025-09-05T09:46:19.000+02:00","2026-02-17T11:18:50.000+02:00","","2","VM,GAV","","138.0" +"284390018","309489719","vtdsibpgs3.sanef-rec.fr","","00:50:56:9c:ef:d2","10.45.1.174","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 40 0e b3 d6 4a 89-59 fc 75 25 ef 2b 8e c2","No Asset Tag","'+01:00","2026-01-06T16:12:10.000+02:00","cybsecope","Cloud Agent","ce12673a-6c4d-4541-bad9-cf7379504c1e","2024-12-05T13:41:16.000+02:00","2026-02-11T19:19:30.000+02:00","x86_64","2","SCA,VM,GAV","Recette,Linux Server,Cloud Agent,OS-LIN-SRV DYN,BDD-POS DYN,PATRIMOINE","139.0" +"186457322","236788723","vpemvgrid1.sanef.groupe","","00:50:56:98:14:19","192.168.100.134","fe80::250:56ff:fe98:1419","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","12014","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 18 95 87 91 62 e8 ae-fb b8 a7 90 97 33 30 c4","No Asset Tag","'+01:00","2025-06-03T10:52:46.000+02:00","root","Cloud Agent","47d1d836-0046-46a8-af82-d754165cac46","2023-09-06T10:20:05.000+02:00","2026-02-11T15:27:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,EMV,PCI Bunker EMV - VLAN Supervision/Admin,DEX","683.0" +"397303566","360301052","VPAIIAPVD1.sanef.groupe","VPAIIAPVD1","00-50-56-82-CE-FC","10.41.11.15","fe80::f5ba:cb00:749a:3623","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763)","1809","Computers / Unidentified","Computers","","","","","","VMware-42 02 65 60 65 80 1d 57-d2 85 84 22 2d 8f ca 2a","","'+01:00","","","Cloud Agent","e0e3fbca-9354-4b00-a8d6-91e073b9733d","2026-02-04T05:33:36.000+02:00","2026-02-04T05:33:35.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent","0.0" +"379376176","352802109","srdsiatmp1.sanef.groupe","","08:f1:ea:76:20:78","10.43.253.20","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31496","HPE U41 07/20/2023","CZJ95002KN","","'+01:00","2025-12-15T12:25:22.000+02:00","cybintsys","Cloud Agent","3afff1a8-62a3-4e81-a611-0f02125d4c10","2025-11-25T19:39:12.000+02:00","2026-02-03T16:37:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","325.0" +"320589642","328759588","bipandgo.com","","","212.83.154.5","","Linux / Unidentified","Canonical Ubuntu","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2025-04-30T06:58:10.000+02:00","2026-01-28T08:07:00.000+02:00","","2","VM,GAV","Internet Facing Assets","298.0" +"392081258","358039036","vrvpnaaov1.recette.adds","VRVPNAAOV1","","10.205.10.3","","Windows / Unidentified","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2026-01-14T11:38:15.000+02:00","2026-01-26T16:28:42.000+02:00","","2","VM,GAV","","50.0" +"391756199","358051750","vrvpnaaov2.recette.adds","VRVPNAAOV2","","10.205.10.4","","Windows / Unidentified","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2026-01-14T11:28:50.000+02:00","2026-01-26T16:16:49.000+02:00","","2","VM,GAV","","40.0" +"270931872","300198639","10.45.12.250","","","10.45.12.250","","Linux / Unidentified","Canonical Ubuntu","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2024-10-09T09:41:10.000+02:00","2026-01-23T12:51:38.000+02:00","","2","VM,GAV","","14.0" +"379881919","352998633","vpvpnaems1.sanef.groupe","","","10.43.192.125","","Linux / Unidentified","Canonical Ubuntu","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2025-11-27T20:00:09.000+02:00","2026-01-19T19:45:32.000+02:00","","2","VM,GAV","TAG-SED","47.0" +"392083292","358020958","83.68.99.146","","","83.68.99.146","","Windows / Unidentified","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2026-01-14T17:18:09.000+02:00","2026-01-14T15:41:26.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","47.0" +"387195521","356517263","vmdpeag03.recette.adds","VMDPEAG03","00-50-56-9C-ED-CE","10.45.17.197","fe80::862f:d285:9555:17ca","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.7462)","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","","16383","","VMware-42 1c 6a 5f 78 67 5d b6-04 b3 cd 45 7e 71 7a 75","NoAssetTag","'+01:00","2025-12-31T16:42:42.000+02:00","","Cloud Agent","5fa1cd6a-1b7c-42f6-867f-34dc67b51695","2025-12-31T16:39:15.000+02:00","2025-12-31T17:36:39.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"387193123","356516697","vmdtrac14.recette.adds","VMDTRAC14","00-50-56-9C-8A-5B","10.45.17.16","fe80::e691:fe78:141b:944b","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.7462)","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","","16383","","VMware-42 1c 27 e4 59 ee 77 1f-ca 4e 41 63 b3 62 20 99","NoAssetTag","'+01:00","2025-12-31T16:33:07.000+02:00","","Cloud Agent","2c004946-d102-4129-b259-184eeda55364","2025-12-31T16:29:44.000+02:00","2025-12-31T17:27:38.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"387177773","356512156","vmddops01.recette.adds","VMDDOPS01","00-50-56-9C-67-BD","10.45.17.67","fe80::70f8:8b63:91d3:43ad","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.7462)","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","","16383","","VMware-42 1c 43 33 84 6b 92 fd-19 0f f0 7d 63 ee a6 77","NoAssetTag","'+01:00","2025-12-31T15:30:54.000+02:00","","Cloud Agent","7590a274-9433-4dd4-9c02-9497c9078587","2025-12-31T15:27:10.000+02:00","2025-12-31T15:50:45.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"378015144","352290264","vmdispt01.recette.adds","VMDISPT01","00:50:56:9C:02:27","10.45.17.62","fe80::c36e:da85:18de:79b8","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.7462) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 1b 63 65 b9 2e 23-00 21 5c c7 ec a2 d1 80","NoAssetTag","'+01:00","2025-12-29T13:41:46.000+02:00","supwindev","Cloud Agent","9101e19d-3159-4c4e-95c3-9049b9443390","2025-11-20T11:28:05.000+02:00","2025-12-29T14:56:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"377919355","352255596","VPAIIAPVD2.sanef.groupe","VPAIIAPVD2","00-50-56-82-01-5F","10.41.11.16","fe80::70c9:19a4:b4a:d1fd","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763)","1809","Computers / Unidentified","Computers","","","","","","VMware-42 02 42 91 23 f0 13 82-21 4f 5b 6a f8 c4 cd b7","","'+01:00","","","Cloud Agent","0a8e448e-4186-46b8-8a2a-ce15eb243a64","2025-11-20T04:53:22.000+02:00","2025-11-20T04:53:21.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent","0.0" +"160946714","214305484","lampoct1.sanef.groupe","","00:17:A4:77:08:90","10.42.40.140","fe80::217:a4ff:fe77:890","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G7 Server","24","2930","Intel(R) Xeon(R) CPU X5670 @ 2.93GHz","48298","","VCX000020F","","'+01:00","2022-06-20T11:45:34.000+02:00","cybadmsys","Cloud Agent","881f98f1-c501-4042-b9df-c64d6cd7a79a","2023-02-28T16:20:23.000+02:00","2025-11-14T06:06:33.000+02:00","x86_64","3","SCA,VM,GAV","Obsolete,DFIN,Cloud Agent,Linux Server,Satisf'aire,log4j,BDD-POS DYN,OS-LIN-SRV DYN","527.0" +"213853736","251126729","lamppea1","","00:17:A4:77:00:00, 00:17:A4:77:00:04","10.41.20.10,10.41.20.12,192.168.70.10","fe80::217:a4ff:fe77:0,fe80::217:a4ff:fe77:4","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32182","","VCX0000000","","'+01:00","2025-09-23T10:32:45.000+02:00","admpea07","Cloud Agent","59355bb3-2085-4d63-b9b5-39ca69986e8c","2024-02-05T20:00:29.000+02:00","2025-11-14T05:56:44.000+02:00","x86_64","2","SCA,VM,GAV","log4j,DEX,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server,Central péage,Obsolete","348.0" +"213859268","251132944","lampadp1","","00:17:A4:77:00:20, 00:17:A4:77:00:24","10.41.20.15,10.41.20.17,10.41.20.19,192.168.70.20","fe80::217:a4ff:fe77:20,fe80::217:a4ff:fe77:24","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32182","","VCX0000002","","'+01:00","2025-05-26T09:59:11.000+02:00","oracle","Cloud Agent","22052064-e40c-4332-b57d-e43591418bdc","2024-02-05T21:10:26.000+02:00","2025-11-14T05:52:10.000+02:00","x86_64","2","SCA,VM,GAV","DEX,OS-LIN-SRV DYN,Obsolete,BDD-POS DYN,Central péage,Cloud Agent,Linux Server,log4j","348.0" +"139144075","198259285","vadvpapp3","","00:50:56:AC:00:77","10.30.11.59","","Linux / Server","Red Hat Enterprise Linux Server 5.6","5.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","5963","","VMware-42 2c e1 b7 71 43 b6 86-3c 61 d3 c8 e9 b2 0a d3","No Asset Tag","'+01:00","2025-05-15T10:38:32.000+02:00","cybrecon","Cloud Agent","cee15a96-8f06-4018-8103-839770b1fdb4","2022-09-07T12:13:13.000+02:00","2025-11-14T05:42:31.000+02:00","x86_64","2","SCA,VM,GAV","DEX,ServersInCyberark,log4j,Obsolete,ADV-U,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,Gestion commerciale,VRF_INCONNUE","350.0" +"137349545","197589746","vairtom1.sanef.groupe","","00:50:56:AC:00:43","10.42.40.134","","Linux / Server","Red Hat Enterprise Linux Server 5.8","5.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","12010","","VMware-56 4d d2 69 8c da 52 b9-43 4d 37 e7 3f b1 4b 3d","No Asset Tag","'+01:00","2023-01-13T12:17:05.000+02:00","cybreconcile","Cloud Agent","21f35f97-dc8b-4b3d-8771-4434127a33cc","2022-08-30T17:17:45.000+02:00","2025-11-14T05:39:04.000+02:00","x86_64","3","SCA,VM,GAV","Obsolete,Aires,Production,VRF_AIRES_DC,Satisf'aire,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,DFIN,ServersInCyberark,log4j,BDD-POS DYN","525.0" +"113463686","181096708","vadvpapp1","","00:50:56:AC:00:06","10.30.11.51","","Linux / Server","Red Hat Enterprise Linux Server 5.6","5.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","5963","","VMware-42 2c 75 05 0f 51 69 51-a5 35 f7 07 ab ac 41 95","No Asset Tag","'+01:00","2025-05-15T10:05:04.000+02:00","cybrecon","Cloud Agent","92d7bf22-b54e-474d-86da-56329c4ef959","2022-02-14T16:25:37.000+02:00","2025-11-14T05:30:02.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Gestion commerciale,Production,Sans,VRF_INCONNUE,DEX,ADV-U,Cloud Agent,Obsolete,Linux Server,log4j","349.0" +"130580382","192830726","lamtpfe1.sanef.groupe","","00:17:A4:77:14:CA","10.45.11.222","fe80::217:a4ff:fe77:14ca","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G8 Server","32","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","64422","","CZ3232T6J5","","'+01:00","2025-06-11T15:43:01.000+02:00","cybsupapp","Cloud Agent","e985d185-db61-458a-850a-d6f7f5ba3130","2022-07-07T10:57:53.000+02:00","2025-11-14T05:26:57.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,Obsolete,log4j,BDD-POS DYN,MID-APACHE-TOMCAT DYN,DEX,XFB,Recette,Exploitation IT","352.0" +"160941710","214301549","lamppea2","","00:17:A4:77:00:10, 00:17:A4:77:00:14","10.41.20.11,10.41.20.13,10.41.20.14,192.168.70.11","fe80::217:a4ff:fe77:10,fe80::217:a4ff:fe77:14","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32183","","VCX0000001","","'+01:00","2025-09-23T09:59:26.000+02:00","cybreconcile","Cloud Agent","5bf45439-5714-47de-9d06-81c61813cc39","2023-02-28T15:30:58.000+02:00","2025-11-14T05:18:28.000+02:00","x86_64","2","SCA,VM,GAV","DEX,log4j,Cloud Agent,Linux Server,BDD-POS DYN,Obsolete,Central péage,OS-LIN-SRV DYN","348.0" +"213858623","251128418","lampadp2","","00:17:A4:77:00:30, 00:17:A4:77:00:34","10.41.20.16,10.41.20.18,192.168.70.21","fe80::217:a4ff:fe77:30,fe80::217:a4ff:fe77:34","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32055","","VCX0000003","","'+01:00","2025-05-26T09:18:36.000+02:00","cybreconcile","Cloud Agent","67f8269a-3b2b-474b-9adf-76419084d59e","2024-02-05T20:21:26.000+02:00","2025-11-14T05:17:32.000+02:00","x86_64","2","SCA,VM,GAV","Central péage,log4j,Obsolete,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,BDD-POS DYN","348.0" +"130580114","192828848","lamrsip1","","00:17:A4:77:00:40, 00:17:A4:77:00:44","10.43.254.10,10.43.254.12,192.168.70.30","fe80::217:a4ff:fe77:40,fe80::217:a4ff:fe77:44","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","48295","","VCX0000004","","'+01:00","2025-10-09T11:49:09.000+02:00","cybastapp","Cloud Agent","97a0e7ef-d966-4d51-971d-564193fba1ea","2022-07-07T10:47:06.000+02:00","2025-11-14T04:40:47.000+02:00","x86_64","2","SCA,VM,GAV","VRF_LEGACY,Obsolete,DEX,OS-LIN-SRV DYN,BDD-POS DYN,MID-APACHE-TOMCAT DYN,Central péage,log4j,Cloud Agent,Linux Server,Péage,Recette","348.0" +"340432326","336673041","10.43.192.7","","","10.43.192.7","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2025-07-09T15:52:44.000+02:00","2025-11-13T11:39:20.000+02:00","","2","VM,GAV","","50.0" +"373087005","350025889","vpsicavcs1.sanef.groupe","","","10.44.200.36","","Virtualization / Hypervisor Type-1 (Bare Metal)","VMware vCenter Server Appliance 8.0.3 Build 24853646","8.0","Virtualized / Virtual Machine","Virtual Machine","","","","","","","","","","","IP Scanner","","2025-10-31T18:13:53.000+02:00","2025-10-31T18:13:42.000+02:00","","2","VM,GAV","TAG-SIA,TAG-SIC","246.0" +"373096988","350036954","spsicevir1.sanef.groupe","","","10.44.200.38","","Virtualization / Hypervisor Type-1 (Bare Metal)","VMware ESXi 8.0.3 Build 24784735","8.0","Computers / Server","Server","","","","","","","","","","","IP Scanner","","2025-10-31T18:13:14.000+02:00","2025-10-31T18:13:06.000+02:00","","2","VM,GAV","TAG-SIA,TAG-SIC","40.0" +"373199500","350075137","spsicevir2.sanef.groupe","","","10.44.200.37","","Virtualization / Hypervisor Type-1 (Bare Metal)","VMware ESXi 8.0.3 Build 24784735","8.0","Computers / Server","Server","","","","","","","","","","","IP Scanner","","2025-10-31T18:13:14.000+02:00","2025-10-31T18:13:05.000+02:00","","2","VM,GAV","TAG-SIA,TAG-SIC","40.0" +"372772962","349896413","vpdatafrt1.sanef.groupe","","","10.43.192.19","","Linux / Unidentified","Canonical Ubuntu","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2025-10-30T13:09:55.000+02:00","2025-10-30T13:09:49.000+02:00","","2","VM,GAV","","240.0" +"10175904","98898342","bipandgo.com","","","87.98.139.229","","Linux / Unidentified","Canonical Ubuntu","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2015-02-26T08:08:16.000+02:00","2025-10-29T05:41:30.000+02:00","","4","VM,GAV","VRF_INCONNUE,Internet Facing Assets,Bip&Go","591.0" +"358974660","344337590","agc14-h02-176-173-219-171.dsl.sta.abo.bbox.fr","","","176.173.219.171","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2025-09-11T17:50:05.000+02:00","2025-09-11T17:49:55.000+02:00","","2","VM,GAV","Internet Facing Assets","0.0" +"318286912","328050387","10.43.253.7","","","10.43.253.7","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","","2025-09-01T18:35:48.000+02:00","","2","SCA,GAV","","0.0" +"350286021","340451129","10.45.11.101","","","10.45.11.101","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR / F5 Networks Big-IP","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2025-08-11T12:28:39.000+02:00","2025-08-11T12:28:26.000+02:00","","2","VM,GAV","","240.0" +"349685531","340130026","10.45.12.251","","50:2D:F4:39:54:51","10.45.12.251","","Linux / Unidentified","Canonical Ubuntu","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2025-08-07T18:06:32.000+02:00","2025-08-07T18:06:20.000+02:00","","2","VM,GAV","","332.0" +"193564953","241029307","83.68.99.83","","","83.68.99.83","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR / F5 Networks Big-IP","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2023-10-16T22:34:52.000+02:00","2025-06-16T11:36:08.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","579.0" +"180917347","233174345","PCB18098.sanef.groupe","PCB18098","64:D6:9A:1D:39:13","10.255.4.199","fe80::c628:1abc:1b42:fa7c","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.5737) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG2376HS6","","'+01:00","2025-06-05T09:19:20.000+02:00","SANEF\GRAZINA","Cloud Agent","c0d53e30-a579-409f-b725-7c9e776ec329","2023-08-01T16:34:57.000+02:00","2025-06-06T09:50:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"680936","","LAN_Sanef","","","","","","","","","","","","","","","","","","","","","","2013-06-14T16:36:51.000+02:00","2026-04-22T10:16:33.000+02:00","","","GAV","test_rhel9,Forescout,Unassigned Business Unit","" +"154878292","208504014","nac.sanef.fr","","","10.44.2.100","","/ Unidentified","UNKNOWN","","Unidentified / Unidentified","Unidentified","","","","","","","","'+01:00","","","Cloud Agent","9bca7598-3d2b-458d-9b2f-f5daf301e1f7","2023-01-10T16:49:15.000+02:00","2025-03-13T06:20:03.000+02:00","x64","2","SCA,VM,GAV","Cloud Agent,Linux Server","0.0" +"158264408","210999775","10.87.17.55","","00:0B:4B:20:27:30","10.87.17.55","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","IP Scanner","","2023-02-07T03:05:08.000+02:00","2025-02-28T10:13:12.000+02:00","","4","VM,GAV","Forescout","680.0" +"300617677","320507318","vtdsiawdm1.sanef.groupe","","","10.45.7.195","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2025-02-17T13:33:27.000+02:00","2025-02-17T13:12:08.000+02:00","","2","VM,GAV","","244.0" +"160268509","213628469","gmaogroupe-temp.sanef.fr","","","10.43.192.44","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2023-02-24T12:50:26.000+02:00","2024-12-19T13:16:27.000+02:00","","2","VM,GAV","","334.0" +"154927850","208613979","83.68.99.41","","","83.68.99.41","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x / IBM ASM / HP StoreOnce / F5 Networks Big-IP","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2023-01-11T20:48:31.000+02:00","2024-12-18T18:44:32.000+02:00","64-Bit","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","801.0" +"285683545","309762012","10.45.13.3","","","10.45.13.3","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR / F5 Networks Big-IP","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2024-12-11T11:58:43.000+02:00","2024-12-13T12:46:59.000+02:00","","2","VM,GAV","","50.0" +"10737461","103820301","83.68.96.56","","","83.68.96.56","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2016-07-18T15:04:49.000+02:00","2024-12-10T11:26:54.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","26.0" +"280801291","305597811","10.69.4.210","","A8:74:1D:1F:64:5E","10.69.4.210","","Network Operating System / Unidentified","Ethernet bus terminal","","Networking Device / Unidentified","Networking Device","","","","","","","","","","","IP Scanner","","2024-11-20T13:48:43.000+02:00","2024-11-20T13:48:33.000+02:00","","2","VM,GAV","","140.0" +"276350487","303352826","10.72.42.34","","","10.72.42.34","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","IP Scanner","","2024-11-04T16:55:33.000+02:00","2024-11-04T16:55:25.000+02:00","","4","VM,GAV","Forescout","146.0" +"271039217","300240014","83.68.99.57","","","83.68.99.57","","Network Operating System / Unidentified","F5 BIG-IP","","Networking Device / Server Load Balancer","F5 Server Load Balancer","","","","","","","","","","","IP Scanner","","2024-10-09T11:52:38.000+02:00","2024-11-04T09:38:59.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","36.0" +"271046443","300186817","83.68.99.58","","","83.68.99.58","","Network Operating System / Unidentified","F5 BIG-IP","","Networking Device / Server Load Balancer","F5 Server Load Balancer","","","","","","","","","","","IP Scanner","","2024-10-09T14:29:17.000+02:00","2024-10-24T16:42:50.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","36.0" +"270874959","300225494","83.66.99.57","","","83.66.99.57","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2024-10-09T09:03:06.000+02:00","2024-10-09T09:03:00.000+02:00","","2","VM,GAV","Internet Facing Assets","0.0" +"161101497","214501902","10.200.31.82","","","10.200.31.82","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","","2024-06-17T10:03:37.000+02:00","","2","SCA,GAV","","0.0" +"161084505","214496662","10.192.16.47","","","10.192.16.47","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","","2024-06-17T10:03:37.000+02:00","","2","SCA,GAV","","0.0" +"243852337","283164456","83.68.99.60","","","83.68.99.60","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR / F5 Networks Big-IP","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2024-06-14T11:03:41.000+02:00","2024-06-14T11:03:34.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","40.0" +"216815652","252309112","10.101.31.138","","","10.101.31.138","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","","2024-06-14T10:02:34.000+02:00","","2","SCA,GAV","","0.0" +"239845921","272907846","83.68.99.115","","","83.68.99.115","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR / F5 Networks Big-IP","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2024-05-28T18:43:49.000+02:00","2024-05-29T11:26:45.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","122.0" +"193678149","241081898","83.68.99.50","","","83.68.99.50","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2023-10-17T11:21:38.000+02:00","2023-10-17T11:21:38.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"157970858","210766328","83.68.99.74","","","83.68.99.74","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2023-02-04T16:37:23.000+02:00","2023-10-17T11:15:34.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"157996591","210761977","83.68.99.68","","","83.68.99.68","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2023-02-04T15:11:38.000+02:00","2023-10-17T10:15:11.000+02:00","","4","VM,CERT,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"161596922","215051146","83.68.99.48","","","83.68.99.48","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2023-03-04T16:01:39.000+02:00","2023-10-17T09:17:34.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"10175779","103375606","83.68.96.55","","","83.68.96.55","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2016-06-09T15:32:56.000+02:00","2023-10-17T00:26:20.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"10174832","93698094","83.68.96.66","","","83.68.96.66","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:13.000+02:00","2023-10-17T00:17:15.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"193551375","241034588","83.68.99.52","","","83.68.99.52","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2023-10-17T00:14:12.000+02:00","2023-10-17T00:14:12.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"10979126","104023868","83.68.96.95","","","83.68.96.95","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2016-08-07T04:46:10.000+02:00","2023-10-16T23:46:56.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"10175780","103375602","83.68.96.53","","","83.68.96.53","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2016-06-09T15:32:56.000+02:00","2023-10-16T23:31:50.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"193543583","241031755","mailg.sanef.com","","","83.68.99.64","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2023-10-16T23:22:46.000+02:00","2023-10-16T23:22:46.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"10175234","93698085","83.68.96.33","","","83.68.96.33","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:13.000+02:00","2023-10-16T22:55:31.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"10175489","93825152","83.68.99.67","VPTRABCAM1","","83.68.99.67","","Unidentified / Unidentified","Ubuntu / Fedora / Tiny Core Linux / Linux 3.x","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:17.000+02:00","2023-10-16T22:43:45.000+02:00","","4","VM,GAV","Adresses IP publiques,Trafic,DMZ,Production,Sans,Internet Facing Assets","0.0" +"10175240","93698091","83.68.96.43","","","83.68.96.43","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:13.000+02:00","2023-10-16T22:34:10.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","19.0" +"10175450","93698112","83.68.96.98","","","83.68.96.98","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:14.000+02:00","2023-10-16T22:07:04.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"10175778","103375600","83.68.96.54","","","83.68.96.54","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2016-06-09T15:32:56.000+02:00","2023-10-16T22:03:24.000+02:00","","4","VM,CERT,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"10174829","93698072","83.68.96.5","","","83.68.96.5","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:12.000+02:00","2023-10-16T21:57:59.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","19.0" +"193678020","241027010","mailg2.sanef.com","","","83.68.99.76","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2023-10-16T21:56:14.000+02:00","2023-10-16T21:56:14.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","12.0" +"10175781","103395467","83.68.96.60","","","83.68.96.60","","Windows / Unidentified","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2016-06-09T15:32:56.000+02:00","2023-10-16T21:48:53.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"10175452","93698114","83.68.96.100","","","83.68.96.100","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"10175236","93698087","83.68.96.35","","","83.68.96.35","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:13.000+02:00","2023-10-16T21:08:18.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","19.0" +"10175984","102845223","83.68.96.50","","","83.68.96.50","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:32:57.000+02:00","2023-10-16T21:05:29.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","19.0" +"10175473","93825135","83.68.99.33","","","83.68.99.33","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"10175485","93825148","83.68.99.59","VPBURAWAP1","","83.68.99.59","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques,Production,DMZ,Compte & Acces,Sans","0.0" +"10175449","93698111","83.68.96.97","","","83.68.96.97","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:14.000+02:00","2023-10-16T20:35:58.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"10174830","93698073","83.68.96.6","","","83.68.96.6","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"10175487","93825150","83.68.99.65","","","83.68.99.65","","Network Operating System / Unidentified","Pulse Secure","","Networking Device / Unidentified","Pulse Secure Networking Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:17.000+02:00","2023-10-16T20:14:38.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"10175241","93698092","83.68.96.44","","","83.68.96.44","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:13.000+02:00","2023-10-16T20:16:14.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"10174840","93698101","83.68.96.81","","","83.68.96.81","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:13.000+02:00","2023-10-16T20:13:15.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","19.0" +"10174827","93698070","83.68.96.1","","","83.68.96.1","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:12.000+02:00","2023-10-16T19:59:20.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","19.0" +"10175235","93698086","83.68.96.34","","","83.68.96.34","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","19.0" +"10175512","94450501","83.68.96.45","","","83.68.96.45","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:22.000+02:00","2023-10-16T19:38:09.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","19.0" +"10978047","104022922","83.68.96.111","","","83.68.96.111","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"10175514","94450503","83.68.99.84","","","83.68.99.84","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2013-12-09T10:50:49.000+02:00","2023-10-16T19:25:49.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"10976824","104022131","83.68.96.47","","","83.68.96.47","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"10972904","104018294","83.68.96.39","","","83.68.96.39","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"11481756","104479390","83.68.99.114","","","83.68.99.114","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2016-09-15T11:51:06.000+02:00","2023-10-16T19:18:46.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"20898832","113005192","83.68.96.58","","","83.68.96.58","","Linux / Unidentified","i586 Linux/4.9.7","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2017-10-27T11:25:25.000+02:00","2023-10-16T19:17:57.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"10175242","93698093","83.68.96.65","","","83.68.96.65","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:13.000+02:00","2023-10-16T19:16:14.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"10175657","95549943","83.68.99.82","","","83.68.99.82","","Linux / Unidentified","Linux 2.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques,MID-APACHE-TOMCAT DYN","0.0" +"10973232","104018630","83.68.96.63","","","83.68.96.63","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2016-08-06T01:20:58.000+02:00","2023-10-16T18:52:41.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"10175982","102842811","83.68.96.49","","","83.68.96.49","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","19.0" +"10976684","104021907","83.68.96.79","","","83.68.96.79","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2016-08-06T16:00:39.000+02:00","2023-10-16T18:42:52.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"10175237","93698088","83.68.96.36","","","83.68.96.36","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"32860169","122572094","83.68.99.121","","","83.68.99.121","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2019-01-08T15:30:27.000+02:00","2023-10-16T18:35:24.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"136743621","197333267","83.68.96.102","","","83.68.96.102","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2022-08-26T11:51:21.000+02:00","2023-10-16T18:33:46.000+02:00","","4","VM,GAV","PCI DSS - IP publiques -FW,Internet Facing Assets,Adresses IP publiques","0.0" +"10175989","103115299","83.68.96.51","","","83.68.96.51","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:32:58.000+02:00","2023-10-16T18:33:54.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"10174828","93698071","83.68.96.2","","","83.68.96.2","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"10174838","93698102","83.68.96.82","","","83.68.96.82","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:13.000+02:00","2023-10-16T18:23:33.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"10174841","93698103","83.68.96.83","","","83.68.96.83","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","19.0" +"10175983","102843248","83.68.96.52","","","83.68.96.52","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"10175659","95550041","83.68.96.17","","","83.68.96.17","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"10175451","93698113","83.68.96.99","","","83.68.96.99","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2013-12-09T10:50:33.000+02:00","2023-10-16T17:59:05.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"10977631","104022579","83.68.96.7","","","83.68.96.7","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","0.0" +"10174833","93698095","83.68.96.67","","","83.68.96.67","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","19.0" +"10175238","93698089","83.68.96.41","","","83.68.96.41","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:13.000+02:00","2023-10-16T17:51:50.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"10175239","93698090","83.68.96.42","","","83.68.96.42","","Network Operating System / Unidentified","Juniper Networks JUNOS","","Network Security Device / Firewall Device","Juniper Networks SRX Services Gateway Firewall Device","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:13.000+02:00","2023-10-16T17:46:50.000+02:00","","4","VM,GAV","Internet Facing Assets,Adresses IP publiques","19.0" +"10175501","93966438","VMODALISA","VMODALISA","","83.68.99.80","","Unidentified / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x / IBM ASM / HP StoreOnce","","Unidentified / Unidentified","","","","","","","","","","","","IP Scanner","","2016-06-09T15:31:21.000+02:00","2023-10-16T17:33:40.000+02:00","","4","VM,GAV","Adresses IP publiques,Internet Facing Assets","0.0" +"192856670","240629082","10.70.42.100","","00:90:E8:57:D5:46","10.70.42.100","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","2","VM,GAV","","340.0" +"186908232","237084328","10.3.4.30","","","10.3.4.30","","Unidentified / Unidentified","Axis Network Camera / Axis Network Camera / Alpine Linux / HP Envy Photo Printer / Avocent / Dell iDRAC","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","2","VM,GAV","","57.0" +"185278129","236171108","pcb16119.sanef.groupe","PCB16119","58:6C:25:2B:1A:47","10.255.4.200","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185263944","236171107","pcb17887.sanef.groupe","PCB17887","70:A8:D3:85:76:77","10.255.4.197","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185271320","236171106","pcb18441.sanef.groupe","PCB18441","70:A8:D3:85:76:27","10.255.4.194","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185268146","236171105","pcb16153.sanef.groupe","PCB16153","DC:21:48:FE:84:40","10.255.4.192","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185261969","236171104","pcb18090.sanef.groupe","PCB18090","64:D6:9A:1D:39:77","10.255.4.191","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185258565","236171103","pcb16597.sanef.groupe","PCB16597","94:E7:0B:73:60:7C","10.255.4.190","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185237173","236171102","pcb18105.sanef.groupe","PCB18105","64:D6:9A:21:82:AC","10.255.4.189","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185268529","236171101","pcb16059.sanef.groupe","PCB16059","F4:4E:E3:9D:BC:AF","10.255.4.185","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185268145","236171100","pcb15678.sanef.groupe","PCB15678","DC:1B:A1:EE:2B:2C","10.255.4.183","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185236785","236171099","pcb14856.sanef.groupe","PCB14856","DC:FB:48:F6:18:5A","10.255.4.176","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185255162","236171098","pcb14807.sanef.groupe","PCB14807","DC:FB:48:F6:73:59","10.255.4.175","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185253155","236170787","pcb13088.sanef.groupe","","","10.255.4.188","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"185270347","236170785","pcb13234.sanef.groupe","PCB13234","38:BA:F8:C7:CE:DC","10.255.4.174","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","2","VM,GAV","","0.0" +"175178979","229181687","10.187.6.30","","00:0B:4B:20:14:01","10.187.6.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","338.0" +"16422229","109095129","192.168.101.111","","","192.168.101.111","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","106.0" +"16422255","109095194","192.168.101.102","","","192.168.101.102","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","106.0" +"16422220","109095092","192.168.101.118","","","192.168.101.118","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","105.0" +"16422330","109095036","192.168.101.105","","","192.168.101.105","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","105.0" +"16422323","109095001","192.168.101.110","","","192.168.101.110","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","278.0" +"16421979","109094910","192.168.101.112","","","192.168.101.112","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","106.0" +"16421977","109094909","192.168.101.101","","","192.168.101.101","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","106.0" +"16421662","109094806","192.168.101.117","","","192.168.101.117","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","105.0" +"16421617","109094666","192.168.101.104","","","192.168.101.104","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","105.0" +"16421490","109094704","192.168.101.106","","","192.168.101.106","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","105.0" +"16421852","109094778","192.168.101.103","","","192.168.101.103","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","107.0" +"16421612","109094654","192.168.101.113","","","192.168.101.113","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard v17","107.0" +"19543562","111985121","192.168.100.134","","","192.168.100.134","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Supervision/Admin","489.0" +"12257181","105177662","192.168.100.120","","","192.168.100.120","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Supervision/Admin","284.0" +"19543960","111985762","192.168.100.128","","","192.168.100.128","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Supervision/Admin","101.0" +"154082973","207974067","spburaexc1.sanef.groupe","SPBURAEXC1","","10.42.30.10","","Windows / Unidentified","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2023-01-03T12:51:11.000+02:00","2023-11-09T13:01:09.000+02:00","","5","VM,GAV","Critical,VRF_INCONNUE,Obsolete","124.0" +"19543731","111985426","192.168.100.133","","","192.168.100.133","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Supervision/Admin","103.0" +"10666612","103756916","192.168.100.46","","","192.168.100.46","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Supervision/Admin,Forescout","97.0" +"19543963","111985759","192.168.100.127","","","192.168.100.127","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Supervision/Admin","101.0" +"12257267","105178166","192.168.100.132","","","192.168.100.132","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Supervision/Admin","103.0" +"10666670","103756955","192.168.100.45","","","192.168.100.45","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Supervision/Admin,Forescout","97.0" +"19543661","111985419","192.168.100.126","","","192.168.100.126","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","MID-APACHE-TOMCAT DYN,PCI Bunker EMV - VLAN Supervision/Admin","98.0" +"157864047","210709468","192.168.100.74","","","192.168.100.74","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout,PCI Bunker EMV - VLAN Supervision/Admin","104.0" +"12258902","105179786","192.168.100.104","","","192.168.100.104","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - Switchs & FW","81.0" +"10174974","95385057","192.168.100.220","","","192.168.100.220","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker Supervision,PCI Bunker EMV - Switchs & FW","0.0" +"12258901","105179785","192.168.100.103","","","192.168.100.103","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - Switchs & FW","0.0" +"19554711","111994321","192.168.101.91","","","192.168.101.91","","Network Operating System / Unidentified","Broadcom","","Network Security Device / Firewall Device","Broadcom Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Endian","97.0" +"19553280","111994186","192.168.104.91","","","192.168.104.91","","Network Operating System / Unidentified","Broadcom","","Network Security Device / Firewall Device","Broadcom Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Endian","96.0" +"10175964","101132358","192.168.101.92","","","192.168.101.92","","Network Operating System / Unidentified","Broadcom","","Network Security Device / Firewall Device","Broadcom Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Stecard + VIP + SCAN,PCI Bunker EMV - VLAN Endian","97.0" +"10176067","101130570","192.168.104.92","","","192.168.104.92","","Network Operating System / Unidentified","Broadcom","","Network Security Device / Firewall Device","Broadcom Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker EMV - VLAN Endian","97.0" +"10175544","95384295","192.168.101.90","","","192.168.101.90","","Network Operating System / Unidentified","Broadcom","","Network Security Device / Firewall Device","Broadcom Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker SC,PCI Bunker EMV - VLAN Stecard + VIP + SCAN,PCI Bunker EMV - VLAN Endian","97.0" +"10175667","95624640","192.168.104.90","","","192.168.104.90","","Network Operating System / Unidentified","Broadcom","","Network Security Device / Firewall Device","Broadcom Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","PCI Bunker Endian,PCI Bunker EMV - VLAN Endian","96.0" +"155999641","209236732","vpameatra1.sanef.groupe","","","10.43.192.17","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","2","VM,GAV","VRF_INCONNUE","119.0" +"158274643","211036427","10.92.5.143","","","10.92.5.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158249312","211036428","10.191.11.190","","00:A0:45:18:23:AC","10.191.11.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158273241","211036223","10.212.26.154","","","10.212.26.154","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158285607","211035884","10.82.3.144","","","10.82.3.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158325750","211035886","10.210.51.204","","","10.210.51.204","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158244333","211035601","10.181.7.190","","00:A0:45:18:A3:15","10.181.7.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158317561","211035440","10.11.50.15","","","10.11.50.15","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257274","211035296","10.199.14.14","","","10.199.14.14","","Unidentified / Unidentified","Axis Network Camera / Axis Network Camera / Alpine Linux / HP Envy Photo Printer / Avocent / Dell iDRAC","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158306376","211035237","10.22.3.106","","","10.22.3.106","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158276621","211035270","10.217.28.53","","00:0B:4B:70:06:FD","10.217.28.53","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257104","211035047","10.229.21.205","","","10.229.21.205","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219537","211034854","10.211.28.231","","","10.211.28.231","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158306373","211034667","10.112.1.140","","","10.112.1.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158285800","211034456","10.21.2.191","","00:A0:45:18:06:9A","10.21.2.191","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158274640","211034338","10.152.7.132","","00:0B:4B:70:04:80","10.152.7.132","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158239928","211033759","10.104.1.205","","","10.104.1.205","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158263666","211033774","10.187.13.30","","00:0B:4B:20:28:D1","10.187.13.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158312755","211033706","10.219.51.17","","","10.219.51.17","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158258108","211033500","10.137.5.65","","00:0B:4B:20:27:7B","10.137.5.65","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158276425","211033519","10.142.2.143","","","10.142.2.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158305573","211033477","10.75.190.46","","CC:F4:07:00:3D:B4","10.75.190.46","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158271858","211033433","10.210.1.201","","","10.210.1.201","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158256519","211033427","10.99.41.20","","00:00:00:00:00:00","10.99.41.20","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158249307","211033434","10.229.27.46","","00:0B:4B:20:1F:29","10.229.27.46","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158243118","211033422","10.89.50.14","","","10.89.50.14","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158242523","211033126","10.189.90.45","","CC:F4:07:00:6D:5A","10.189.90.45","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275445","211033134","10.212.31.151","","","10.212.31.151","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158241327","211032848","10.73.90.40","","CC:F4:07:00:6C:36","10.73.90.40","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158271647","211032822","10.74.41.12","","00:00:00:00:00:00","10.74.41.12","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158289192","211032631","10.132.2.152","","","10.132.2.152","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158302968","211032221","sanefpea034p03","SANEFPEA034P03","C4:00:AD:1D:C1:07","10.192.13.44","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158280635","211032222","10.211.40.210","","","10.211.40.210","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267877","211032051","10.29.50.21","","","10.29.50.21","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275032","211032054","10.182.7.89","","","10.182.7.89","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158306365","211031911","10.192.4.140","","","10.192.4.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158242519","211031771","10.22.1.93","","","10.22.1.93","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275442","211031773","polycom64167f614fec.sanef.groupe","","","10.100.60.142","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257501","211031710","10.142.3.185","","","10.142.3.185","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158272241","211031739","10.229.61.155","","","10.229.61.155","","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","Unknown","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158264888","211031719","dozul-red-3.sapn.fr","DOZUL-RED-3","00:1E:4F:50:A5:10","10.212.40.210","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Unidentified / Unidentified","Dell","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158235939","211031512","10.81.10.202","","","10.81.10.202","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158285794","211031337","10.132.5.174","","","10.132.5.174","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158295977","211031331","10.117.1.39","","00:0B:4B:20:29:AF","10.117.1.39","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158290994","211031062","10.72.91.61","","00:0D:CA:01:18:4A","10.72.91.61","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287207","211031289","10.87.2.31","","00:0B:4B:20:2E:51","10.87.2.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158272051","211031025","10.92.8.85","","","10.92.8.85","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287800","211031034","10.191.14.190","","00:A0:45:18:1D:FE","10.191.14.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275628","211030857","10.104.51.10","","","10.104.51.10","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158253698","211030853","10.91.9.205","","","10.91.9.205","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158289188","211030867","10.192.21.80","","","10.192.21.80","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286607","211030460","10.210.12.143","","","10.210.12.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287205","211030375","10.211.21.202","","","10.211.21.202","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158280631","211030373","10.89.51.21","","","10.89.51.21","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158271642","211030372","mmtziip3","MMTZIIP3","50:65:F3:2E:9E:32","10.12.20.101","","Windows / Client","Microsoft Windows 7 (6.1 SP1 Build 7601)","6.1","Unidentified / Unidentified","HP","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287990","211030376","10.212.28.149","","","10.212.28.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275626","211030377","10.218.23.11","","E2:81:1E:E6:90:FF","10.218.23.11","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158295976","211029589","10.98.7.33","","","10.98.7.33","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268290","211029174","10.82.8.143","","","10.82.8.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287201","211028837","10.181.11.110","","","10.181.11.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158288580","211028836","10.155.7.34","","00:0B:4B:20:27:92","10.155.7.34","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275623","211028506","8058s-0c5a50.sanef.groupe","","","10.100.6.21","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264681","211028115","10.211.29.216","","","10.211.29.216","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158273037","211028055","10.79.121.190","","00:A0:45:18:25:12","10.79.121.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158269024","211028039","10.22.2.95","","","10.22.2.95","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158284008","211028108","8058s-0c64a0.sanef.groupe","","","10.200.6.128","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158288579","211028121","10.217.24.30","","00:0B:4B:20:1D:E7","10.217.24.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286806","211028095","10.182.15.140","","","10.182.15.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158296173","211028124","10.219.42.14","","00:40:9D:30:48:BA","10.219.42.14","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158283811","211028046","10.71.191.32","","00:0D:CA:01:33:5E","10.71.191.32","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158272048","211028077","10.117.3.52","","00:0B:4B:20:2E:2E","10.117.3.52","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158239919","211028072","10.108.1.190","","00:A0:45:18:90:38","10.108.1.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267659","211028113","10.210.22.196","","","10.210.22.196","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264680","211028050","10.73.91.45","","00:0D:CA:01:14:A3","10.73.91.45","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158242516","211028090","10.147.2.65","","00:0B:4B:70:04:BB","10.147.2.65","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158306359","211028087","10.142.1.149","","","10.142.1.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219526","211028098","10.191.1.190","","00:A0:45:18:A2:DF","10.191.1.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257694","211028118","10.212.29.158","","","10.212.29.158","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267873","211028070","c530-ip-36568.sanef.groupe","","","10.105.60.21","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286392","211028047","10.72.50.10","","","10.72.50.10","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158285593","211028057","10.82.15.86","","","10.82.15.86","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158256866","211028083","10.137.2.66","","00:0B:4B:60:0D:9F","10.137.2.66","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158292187","211028076","10.112.2.156","","","10.112.2.156","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275622","211028127","10.229.44.53","","00:40:9D:3D:B5:FA","10.229.44.53","","Firmware / Unidentified","Honeywell Firmware","","Printers / Unidentified","Honeywell Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158290590","211028062","10.97.3.34","","00:0B:4B:70:04:0D","10.97.3.34","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158283608","211028089","10.142.3.115","","","10.142.3.115","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158258281","211028049","10.73.42.11","","00:40:9D:35:54:B3","10.73.42.11","","Firmware / Unidentified","Honeywell Firmware","","Printers / Unidentified","Honeywell Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158248494","211028043","10.61.3.12","","","10.61.3.12","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158280625","211028104","10.197.16.30","","00:0B:4B:20:07:5B","10.197.16.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158248498","211028094","10.182.4.82","","","10.182.4.82","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158290988","211028101","sanefpea008e02","SANEFPEA008E02","C4:00:AD:2E:63:5C","10.192.9.31","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158243113","211028116","10.211.34.21","","","10.211.34.21","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286200","211028123","10.217.34.41","","00:0B:4B:20:32:EA","10.217.34.41","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158302962","211028064","10.100.32.161","","","10.100.32.161","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158253696","211028052","10.74.91.36","","","10.74.91.36","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158271637","211028060","10.91.2.202","","","10.91.2.202","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158263658","211028102","10.192.14.86","","","10.192.14.86","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158288186","211028117","10.212.24.148","","","10.212.24.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158248497","211028092","10.154.2.146","","","10.154.2.146","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158263476","211028103","10.192.16.152","","","10.192.16.152","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158258101","211028079","10.127.9.30","","00:0B:4B:20:16:5E","10.127.9.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158288578","211028100","10.191.19.201","","","10.191.19.201","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158253697","211028112","10.209.7.161","","00:0B:4B:40:37:8E","10.209.7.161","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158282012","211028097","10.189.51.19","","","10.189.51.19","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257695","211028122","10.217.30.41","","00:0B:4B:20:1D:B4","10.217.30.41","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158284007","211028067","10.100.90.50","","00:26:04:00:0F:4C","10.100.90.50","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267658","211028084","10.139.41.13","","00:40:9D:7A:45:B7","10.139.41.13","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158261890","211028059","10.88.17.56","","","10.88.17.56","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287797","211028093","10.181.4.200","","","10.181.4.200","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264461","211028126","10.229.21.159","","","10.229.21.159","","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","Unknown","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158299770","211028054","10.79.31.201","","00:A0:45:18:51:BB","10.79.31.201","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268288","211028120","sanefpea391c24","SANEFPEA391C24","C4:00:AD:2B:8A:BF","10.212.36.24","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158290589","211028040","10.22.3.155","","","10.22.3.155","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286807","211028106","10.199.41.23","","00:00:00:00:00:00","10.199.41.23","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158258100","211028041","10.27.2.53","","00:0B:4B:70:01:BD","10.27.2.53","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158261891","211028114","10.211.28.190","","00:A0:45:92:A8:0F","10.211.28.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158305958","211028078","10.121.11.150","","","10.121.11.150","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158256867","211028085","10.139.91.31","","00:0D:CA:01:83:D9","10.139.91.31","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158269025","211028128","192.168.100.75","","","192.168.100.75","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch / Ricoh Printer","","Printers / Unidentified","Ricoh Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268287","211028082","sanefpea441c06","SANEFPEA441C06","C4:00:AD:16:E8:DD","10.132.4.46","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158265048","211028096","10.188.7.10","","E2:81:1E:E6:90:FF","10.188.7.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158281200","211028048","10.72.142.10","","00:40:9D:45:64:CA","10.72.142.10","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264272","211028075","10.112.1.157","","","10.112.1.157","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264886","211028109","10.200.42.10","","00:40:9D:56:22:C4","10.200.42.10","","Firmware / Unidentified","Honeywell Firmware","","Printers / Unidentified","Honeywell Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158297381","211028061","sanefpea721p02","SANEFPEA721P02","C4:00:AD:23:26:2B","10.92.4.41","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158237128","211028088","10.142.2.163","","","10.142.2.163","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158306358","211028053","10.76.91.31","","","10.76.91.31","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158258102","211028119","10.212.33.20","","","10.212.33.20","","Unidentified / Unidentified","Linksys Wireless Ethernet Bridge / Konica Printer","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158250880","211028111","004DD778N0","004DD778N0","","10.207.42.50","","Linux / Unidentified","Linux 2.2-2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287784","211019493","10.81.17.190","","00:A0:45:18:07:79","10.81.17.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158265042","211019328","10.182.8.82","","","10.182.8.82","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158272038","211019091","10.132.2.170","","","10.132.2.170","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275230","211019089","10.81.12.24","","","10.81.12.24","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264263","211019092","10.192.5.142","","","10.192.5.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158285589","211019088","10.22.1.111","","","10.22.1.111","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158263465","211019093","10.229.61.198","","00:A0:45:38:9A:FB","10.229.61.198","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267640","211018739","10.211.42.21","","","10.211.42.21","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275611","211018740","10.212.42.140","","","10.212.42.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158303154","211018381","rsaaucv1","RSAAUCV1","00:90:FB:2E:33:85","10.117.2.10","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158250869","211018378","10.108.2.87","","","10.108.2.87","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158281194","211018256","10.87.9.30","","00:0B:4B:70:02:8D","10.87.9.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286984","211018057","10.199.42.20","","","10.199.42.20","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158297366","211018025","10.92.9.80","","","10.92.9.80","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158299752","211018022","10.79.124.151","","","10.79.124.151","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch / Ricoh Printer","","Printers / Unidentified","Ricoh Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158256851","211017791","10.147.1.58","","00:0B:4B:20:16:AB","10.147.1.58","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158281614","211017671","10.137.1.42","","00:0B:4B:20:2E:5D","10.137.1.42","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158239907","211017672","10.211.23.205","","","10.211.23.205","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158235921","211017577","10.212.28.175","","","10.212.28.175","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158283794","211017382","10.89.90.15","","","10.89.90.15","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213528","211017383","10.191.15.116","","","10.191.15.116","","Unidentified / Unidentified","Rockwell Automation","","Industrial Control System (ICS) / Unidentified","Rockwell Automation Industrial Control System (ICS)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158299354","211017029","10.82.10.143","","","10.82.10.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158272032","211017031","10.181.13.13","","","10.181.13.13","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267631","211016562","10.192.9.154","","","10.192.9.154","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268271","211016561","10.70.191.34","","00:0D:CA:01:82:20","10.70.191.34","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158282201","211016563","10.194.16.110","","","10.194.16.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158211542","211016408","8058s-0cedce.sanef.groupe","","","10.100.6.142","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158282200","211016409","10.211.30.207","","","10.211.30.207","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158285985","211016407","10.22.2.143","","","10.22.2.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158295953","211016238","10.229.31.151","","","10.229.31.151","","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","Unknown","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158283792","211016019","10.182.16.144","","","10.182.16.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268839","211015969","pcb18064.sanef.groupe","","","10.100.39.118","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout,VRF_INCONNUE","0.0" +"158285982","211015839","10.147.2.87","","00:0B:4B:20:2B:E9","10.147.2.87","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268270","211015843","10.192.1.81","","","10.192.1.81","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287569","211015831","10.104.91.31","","00:0D:CA:01:83:B0","10.104.91.31","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158248478","211015691","10.217.26.49","","00:0B:4B:20:22:BE","10.217.26.49","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257467","211015696","10.219.50.24","","","10.219.50.24","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158256494","211015684","10.71.191.48","","00:0D:CA:01:32:FB","10.71.191.48","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158289171","211015672","10.212.29.184","","","10.212.29.184","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158281608","211015641","10.74.191.31","","","10.74.191.31","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158289170","211015666","10.210.21.28","","","10.210.21.28","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158249287","211015401","10.218.30.35","","","10.218.30.35","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264254","211015334","10.191.2.202","","","10.191.2.202","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287379","211015117","10.137.3.46","","00:0B:4B:20:2D:84","10.137.3.46","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264253","211015101","10.112.2.173","","","10.112.2.173","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286377","211014553","10.61.4.190","","00:A0:45:18:52:B6","10.61.4.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158276408","211014207","10.82.16.25","","","10.82.16.25","","Windows / Client","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264250","211014186","10.142.3.131","","","10.142.3.131","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158235914","211014194","10.182.5.83","","","10.182.5.83","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257070","211013983","10.97.4.52","","00:0B:4B:40:36:A6","10.97.4.52","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228938","211013990","10.212.37.146","","","10.212.37.146","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158235913","211013824","10.211.35.200","","","10.211.35.200","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158290563","211013652","10.229.51.164","","","10.229.51.164","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158290972","211013563","10.132.4.155","","","10.132.4.155","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158243102","211013513","10.81.3.201","","","10.81.3.201","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158297753","211013535","10.119.50.13","","","10.119.50.13","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158276809","211013152","10.198.5.10","","E2:81:1E:E6:90:FF","10.198.5.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213511","211013128","10.107.2.148","","","10.107.2.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158235910","211013172","10.210.31.200","","","10.210.31.200","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158290560","211013033","10.217.36.30","","00:0B:4B:20:1E:C2","10.217.36.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158258079","211013002","10.92.4.143","","","10.92.4.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158290558","211012772","10.212.25.161","","","10.212.25.161","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158285973","211012585","10.29.41.11","","00:40:9D:41:46:87","10.29.41.11","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267851","211012587","10.229.57.38","","00:0B:4B:20:32:A0","10.229.57.38","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158290967","211012558","alcatel-ipphone-00809f54ae89.sanef.groupe","","","10.189.60.33","","Firmware / Unidentified","Crestron Firmware","","Networking Device / Unidentified","Crestron Networking Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158288560","211012545","flm-reddition-3","FLM-REDDITION-3","","10.142.2.12","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158241287","211012570","10.192.12.85","","","10.192.12.85","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158290965","211012425","10.70.90.48","","","10.70.90.48","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267623","211012579","10.192.17.140","","","10.192.17.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158258077","211012432","10.101.32.94","","","10.101.32.94","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275007","211012137","aabvlsg5","AABVLSG5","8C:DC:D4:3F:E9:7C","10.132.1.27","","Windows / Client","Microsoft Windows 7 (6.1 SP1 Build 7601)","6.1","Unidentified / Unidentified","HP","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286370","211012131","10.82.1.143","","","10.82.1.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264658","211012151","10.229.21.188","","00:A0:45:91:95:2F","10.229.21.188","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158235905","211011924","10.73.90.11","","","10.73.90.11","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158296150","211011898","004DD77BH8","004DD77BH8","","10.202.42.50","","Linux / Unidentified","Linux 2.2-2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268257","211011899","10.211.28.215","","","10.211.28.215","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158288165","211011897","10.103.91.33","","00:0D:CA:01:1B:D1","10.103.91.33","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264056","211011723","10.22.3.90","","","10.22.3.90","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158235902","211011531","10.79.41.191","","00:A0:45:18:3D:0F","10.79.41.191","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158244293","211011503","10.106.2.92","","","10.106.2.92","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158259850","211011501","10.100.1.118","","","10.100.1.118","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264654","211010996","004DD778GS","004DD778GS","","10.75.142.52","","Linux / Unidentified","Linux 2.2-2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158218321","211010671","10.112.1.84","","","10.112.1.84","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158226135","211010672","10.149.51.12","","","10.149.51.12","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287765","211010670","10.89.41.23","","","10.89.41.23","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158249273","211010608","10.142.2.109","","","10.142.2.109","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212943","211010609","10.217.27.38","","00:0B:4B:20:22:47","10.217.27.38","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264242","211010583","10.71.91.31","","00:0D:CA:01:81:ED","10.71.91.31","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158276804","211010582","10.70.141.16","","00:40:9D:36:14:3C","10.70.141.16","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158256483","211010191","10.187.6.61","","00:0B:4B:50:06:E3","10.187.6.61","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257667","211010055","10.212.30.152","","","10.212.30.152","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158249271","211010054","10.137.5.47","","00:0B:4B:60:0E:5B","10.137.5.47","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268826","211009794","10.97.8.56","","00:0B:4B:20:21:F3","10.97.8.56","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158280595","211009664","10.82.17.143","","","10.82.17.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158261858","211009665","10.132.1.151","","","10.132.1.151","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264439","211009497","10.112.3.150","","","10.112.3.150","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158269005","211009241","10.211.39.202","","","10.211.39.202","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268635","211009242","10.219.50.56","","","10.219.50.56","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267617","211008781","10.142.3.165","","","10.142.3.165","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158283973","211008779","10.100.2.147","","","10.100.2.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287761","211008780","polycom64167f60fdc0.sanef.groupe","","","10.100.60.53","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158274601","211008633","10.212.40.143","","","10.212.40.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286180","211008632","10.104.2.148","","","10.104.2.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213740","211008634","10.217.41.50","","00:0B:4B:20:22:AC","10.217.41.50","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286362","211008527","10.182.6.152","","","10.182.6.152","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158229127","211008458","10.72.91.45","","00:0D:CA:01:6A:D0","10.72.91.45","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158273010","211008461","10.155.2.90","","","10.155.2.90","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267843","211008460","10.132.5.158","","","10.132.5.158","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158263441","211006943","10.12.3.14","","00:17:C8:2E:4E:6E","10.12.3.14","","Firmware / Unidentified","Kyocera Firmware","","Printers / Unidentified","Kyocera Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287558","211006768","10.92.7.89","","","10.92.7.89","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212936","211006769","10.210.61.111","","","10.210.61.111","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212935","211006606","10.191.12.24","","","10.191.12.24","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158276797","211006607","10.192.8.89","","","10.192.8.89","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158276796","211006598","10.212.27.143","","","10.212.27.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158273008","211006571","10.79.121.122","","","10.79.121.122","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158222732","211006593","10.82.6.84","","","10.82.6.84","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275403","211006144","10.192.19.141","","","10.192.19.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158281178","211006203","10.199.91.46","","00:0D:CA:01:83:AF","10.199.91.46","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158261854","211006134","10.181.10.13","","","10.181.10.13","","Other / Unidentified","Dell PowerVault NAS Operating System","","Storage Devices / Network Attached Storage (NAS) Device","Dell Network Attached Storage (NAS) Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158226128","211005910","10.229.21.224","","","10.229.21.224","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158218313","211005666","10.100.41.11","","00:00:00:00:00:00","10.100.41.11","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158242486","211005400","10.211.29.200","","","10.211.29.200","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268820","211005395","sathpcv1","SATHPCV1","EC:B1:D7:36:AC:33","10.192.3.26","","Windows / Client","Microsoft Windows 7 (6.1 SP1 Build 7601)","6.1","Unidentified / Unidentified","HP","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158265013","211005043","10.189.91.43","","00:0D:CA:01:84:19","10.189.91.43","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158274994","211005013","10.22.1.174","","","10.22.1.174","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158283966","211005014","10.105.18.142","","","10.105.18.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158281175","211005016","10.182.13.143","","","10.182.13.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158259841","211005015","10.117.2.67","","00:0B:4B:40:39:BA","10.117.2.67","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268236","211004809","10.72.42.10","","00:40:9D:39:71:D7","10.72.42.10","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158282180","211004686","10.147.2.46","","00:0B:4B:20:1E:9F","10.147.2.46","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158276579","211004656","10.100.29.20","","","10.100.29.20","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158265011","211004529","10.92.11.85","","","10.92.11.85","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257237","211004533","10.217.22.50","","00:0B:4B:40:37:80","10.217.22.50","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286957","211004324","10.89.50.30","","","10.89.50.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158287949","211004327","10.210.22.157","","","10.210.22.157","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158258064","211004325","10.142.1.100","","","10.142.1.100","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158282178","211004169","pcb16195.sanef.groupe","","","10.219.31.22","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout,VRF_INCONNUE","0.0" +"158211520","211004166","10.73.90.56","","CC:F4:07:00:72:00","10.73.90.56","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158272003","211004168","10.137.2.50","","00:0B:4B:60:0D:EE","10.137.2.50","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286557","211004100","10.212.29.141","","","10.212.29.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286165","211003857","10.197.9.31","","00:0B:4B:20:2E:34","10.197.9.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158258236","211003866","10.210.11.10","","","10.210.11.10","","Firmware / Unidentified","Huawei Firmware","","Networking Device / Switch","Huawei Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158276790","211003706","10.74.90.43","","CC:F4:07:00:3D:E2","10.74.90.43","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158280581","211003709","10.82.14.143","","","10.82.14.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158271603","211003522","10.141.3.29","","","10.141.3.29","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268996","211003276","10.112.2.112","","","10.112.2.112","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158286357","211003275","10.29.91.31","","00:0D:CA:01:82:05","10.29.91.31","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158196542","211003067","10.181.2.150","","","10.181.2.150","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158272391","211003068","10.211.33.201","","","10.211.33.201","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268995","211003066","10.142.3.98","","","10.142.3.98","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158229122","211003070","10.219.91.41","","","10.219.91.41","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158263434","211002798","10.79.131.197","","00:A0:45:18:90:B0","10.79.131.197","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212922","211002799","10.229.41.156","","","10.229.41.156","","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","Unknown","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158249254","211002522","10.212.33.192","","","10.212.33.192","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158183540","211001957","10.182.1.145","","","10.182.1.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228907","211001959","10.217.31.61","","00:0B:4B:70:04:D6","10.217.31.61","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158272380","211001052","10.99.51.20","","","10.99.51.20","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194332","211001081","10.132.3.147","","","10.132.3.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212908","211000995","10.92.3.82","","","10.92.3.82","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158237066","211000307","10.111.1.190","","00:A0:45:18:52:6B","10.111.1.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158256816","211000253","10.100.70.45","","00:90:E8:50:D8:3A","10.100.70.45","","Unidentified / Unidentified","Cabletron SmartSTACK / Vertical Horizon Stack / Cisco IP Phone / magicolor 3300 Printer","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158237065","211000109","10.70.41.17","","","10.70.41.17","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158276369","210999910","10.199.51.21","","","10.199.51.21","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158281957","211000007","10.212.23.148","","","10.212.23.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158280559","210999788","10.192.16.97","","","10.192.16.97","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194321","210999761","10.189.50.17","","00:20:4A:D8:74:EF","10.189.50.17","","Firmware / Unidentified","Lantronix Firmware","","Networking Device / Terminal Server","Lantronix Xport Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158281956","210999765","10.217.30.51","","00:0B:4B:40:35:15","10.217.30.51","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158229103","210999751","10.27.1.60","","00:0B:4B:20:2B:C1","10.27.1.60","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228503","210999762","10.191.17.15","","","10.191.17.15","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158198733","210999764","10.211.26.224","","","10.211.26.224","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158249235","210999758","10.131.5.26","","","10.131.5.26","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158197127","210999753","10.73.41.10","","00:40:9D:23:7D:D5","10.73.41.10","","Network Operating System / Unidentified","Cisco Systems","","Networking Device / Unidentified","Cisco Systems Networking Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158274574","210999752","10.71.41.11","","","10.71.41.11","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158282150","210999766","10.229.67.32","","00:0B:4B:20:17:CD","10.229.67.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158272585","210999754","10.79.31.110","","","10.79.31.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158250828","210999755","10.92.1.92","","","10.92.1.92","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193522","210999767","192.168.100.27","","","192.168.100.27","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch / Ricoh Printer","","Printers / Unidentified","Ricoh Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158271976","210999504","10.112.2.86","","","10.112.2.86","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267592","210999500","10.27.1.30","","00:0B:4B:70:02:7F","10.27.1.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257629","210999514","10.192.14.200","","00:21:5A:97:0F:BF","10.192.14.200","","Firmware / Unidentified","HP Firmware","","Printers / Unidentified","HP Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158207904","210999511","10.142.2.171","","","10.142.2.171","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158283947","210999501","10.72.190.10","","","10.72.190.10","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158281953","210999519","10.212.33.152","","","10.212.33.152","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158271977","210999505","10.132.3.82","","","10.132.3.82","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158261818","210999506","10.139.41.22","","00:40:9D:25:56:FB","10.139.41.22","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS 4 Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257628","210999331","10.154.1.190","","00:A0:45:18:93:54","10.154.1.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158271584","210999200","10.188.15.10","","E2:81:1E:E6:90:FF","10.188.15.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158229101","210999205","10.192.7.88","","","10.192.7.88","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257413","210999212","10.211.42.208","","","10.211.42.208","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158253641","210999174","10.76.191.31","","","10.76.191.31","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213095","210998373","10.22.1.149","","","10.22.1.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158271769","210995810","10.212.42.148","","","10.212.42.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158207693","210995371","10.182.9.142","","","10.182.9.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174312","210995213","10.87.9.50","","00:0B:4B:50:13:39","10.87.9.50","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158243027","210994814","10.74.42.10","","00:40:9D:2F:A1:0F","10.74.42.10","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158239842","210994703","10.117.2.42","","00:0B:4B:60:0D:6E","10.117.2.42","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194119","210994705","10.199.42.250","","","10.199.42.250","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158237043","210994702","10.92.9.89","","","10.92.9.89","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158169336","210994704","10.147.1.69","","00:0B:4B:50:07:69","10.147.1.69","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158272956","210994581","10.191.16.12","","","10.191.16.12","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174310","210994459","10.99.50.13","","","10.99.50.13","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158243026","210994458","10.72.41.11","","","10.72.41.11","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158191316","210994420","10.137.1.55","","00:0B:4B:20:27:89","10.137.1.55","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267791","210994422","10.211.24.201","","","10.211.24.201","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158169335","210994280","10.212.28.184","","","10.212.28.184","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158191314","210994141","10.82.12.82","","","10.82.12.82","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158184523","210994105","rctvucv1","RCTVUCV1","00:90:FB:2B:9B:BD","10.1.6.10","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267570","210993940","10.108.50.11","","00:80:A3:D0:4C:91","10.108.50.11","","Unidentified / Unidentified","V6.10.0.1 (141023)","","Unidentified / Unidentified","Lantronix","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160943","210993761","10.197.7.32","","00:0B:4B:20:28:94","10.197.7.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158259801","210993752","10.181.14.190","","00:A0:45:18:92:ED","10.181.14.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275351","210993685","10.192.10.144","","","10.192.10.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158263587","210993404","10.210.37.34","","00:0B:4B:20:17:D1","10.210.37.34","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193499","210993438","10.211.30.215","","","10.211.30.215","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158190931","210993390","10.22.2.151","","","10.22.2.151","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268961","210993274","10.70.191.42","","00:0D:CA:01:80:F4","10.70.191.42","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158226071","210993187","10.89.90.45","","","10.89.90.45","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158182319","210993230","sanef","SANEF","44:1E:A1:58:E1:C4","10.100.11.10","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1)","6.1","Computers / Server","Server","","","","","","","","","","","","","","","","4","VM,GAV","Windows Server 2008,Forescout","0.0" +"158193692","210992792","10.79.131.116","","","10.79.131.116","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158275346","210992801","10.119.51.11","","","10.119.51.11","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158244241","210992916","10.229.31.192","","","10.229.31.192","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170944","210992585","10.217.26.58","","00:0B:4B:40:2F:B4","10.217.26.58","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158263585","210992582","10.105.17.110","","","10.105.17.110","","Unidentified / Unidentified","Rockwell Automation","","Industrial Control System (ICS) / Unidentified","Rockwell Automation Industrial Control System (ICS)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228870","210992583","10.142.2.83","","","10.142.2.83","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158211468","210992167","10.187.5.37","","00:0B:4B:20:17:18","10.187.5.37","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168538","210992169","10.191.3.190","","00:A0:45:18:25:14","10.191.3.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268573","210992041","10.210.21.36","","","10.210.21.36","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268171","210991972","10.212.29.192","","","10.212.29.192","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158197093","210991968","10.137.3.56","","00:0B:4B:20:2E:62","10.137.3.56","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158211466","210991973","10.218.34.64","","","10.218.34.64","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212872","210991729","10.132.1.89","","","10.132.1.89","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193494","210991728","10.82.16.145","","","10.82.16.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158183901","210991416","10.112.3.85","","","10.112.3.85","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174304","210991363","004DD7797S","004DD7797S","","10.75.42.54","","Linux / Unidentified","Linux 2.2-2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158259794","210991372","10.97.6.33","","00:0B:4B:20:23:BB","10.97.6.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193687","210991403","10.192.1.141","","","10.192.1.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158211463","210991185","polycom_0004f2effa80.sanef.groupe","","","10.101.60.48","","Unidentified / Unidentified","Unknown OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158272152","210990824","10.219.50.32","","","10.219.50.32","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158268758","210990588","10.61.8.111","","","10.61.8.111","","Unidentified / Unidentified","Rockwell Automation","","Industrial Control System (ICS) / Unidentified","Rockwell Automation Industrial Control System (ICS)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158237027","210990238","10.211.36.203","","","10.211.36.203","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158243014","210990237","10.100.2.83","","","10.100.2.83","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158267771","210990233","10.89.42.10","","00:40:9D:3A:8B:B3","10.89.42.10","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181723","210989954","10.142.3.140","","","10.142.3.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158256791","210989957","10.229.51.189","","00:A0:45:92:A8:42","10.229.51.189","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158250801","210989956","10.182.5.91","","","10.182.5.91","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181923","210989718","10.212.38.145","","","10.212.38.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158249193","210989512","10.132.4.163","","","10.132.4.163","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264370","210989096","10.72.90.46","","CC:F4:07:00:95:37","10.72.90.46","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168526","210989101","10.148.3.33","","","10.148.3.33","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219667","210988709","10.92.5.82","","","10.92.5.82","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158218248","210988612","10.198.14.10","","02:1F:82:C9:9D:F6","10.198.14.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181715","210988610","10.91.5.22","","","10.91.5.22","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158259778","210988608","10.71.141.11","","00:40:9D:2F:8A:1E","10.71.141.11","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257384","210988490","10.191.10.113","","","10.191.10.113","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158205241","210988492","10.217.37.31","","00:0B:4B:20:22:37","10.217.37.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163940","210988491","10.212.26.144","","","10.212.26.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158182294","210988298","10.192.17.148","","","10.192.17.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158264768","210988281","10.82.2.145","","","10.82.2.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158258176","210988291","10.107.7.32","","00:0B:4B:70:04:1A","10.107.7.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158156721","210987997","10.217.28.42","","00:0B:4B:20:1F:8E","10.217.28.42","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185096","210987857","10.192.12.146","","","10.192.12.146","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212667","210987853","10.70.91.36","","00:0D:CA:01:32:67","10.70.91.36","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158226046","210987789","10.22.3.98","","","10.22.3.98","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212666","210987738","10.189.90.15","","","10.189.90.15","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163933","210987428","10.229.21.196","","00:A0:45:38:9B:B2","10.229.21.196","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174497","210987364","10.106.2.149","","","10.106.2.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158242412","210987379","10.211.28.223","","","10.211.28.223","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158197074","210986599","10.79.41.199","","","10.79.41.199","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181707","210986602","10.112.1.93","","","10.112.1.93","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158184497","210986519","10.199.90.47","","CC:F4:07:00:72:2C","10.199.90.47","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174492","210986074","10.104.1.111","","","10.104.1.111","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158207659","210985962","10.142.2.117","","","10.142.2.117","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160126","210985385","10.187.11.35","","00:0B:4B:60:0E:06","10.187.11.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158218236","210985358","10.137.5.57","","00:0B:4B:20:2E:64","10.137.5.57","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158235804","210985043","10.212.30.161","","","10.212.30.161","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158156713","210984937","10.82.17.151","","","10.82.17.151","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160906","210984508","10.132.1.161","","","10.132.1.161","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153540","210984511","10.229.27.36","","00:0B:4B:20:20:47","10.229.27.36","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257171","210984509","10.210.1.115","","","10.210.1.115","","Unidentified / Unidentified","Axis Network Camera / Axis Network Camera / Alpine Linux / HP Envy Photo Printer / Avocent / Dell iDRAC","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158156711","210984505","10.97.9.37","","00:0B:4B:70:06:A5","10.97.9.37","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158186685","210984500","10.75.190.15","","","10.75.190.15","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213264","210984176","10.121.6.190","","00:A0:45:18:B5:84","10.121.6.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153538","210984177","10.211.40.202","","","10.211.40.202","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160515","210984044","10.229.61.30","","","10.229.61.30","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153536","210984041","10.112.3.160","","","10.112.3.160","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158263949","210984042","10.219.50.64","","","10.219.50.64","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257568","210983936","10.29.50.13","","","10.29.50.13","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158248384","210983910","10.192.3.143","","","10.192.3.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158205222","210983689","10.70.190.10","","","10.70.190.10","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158261757","210983692","10.210.78.10","","","10.210.78.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158145518","210983690","10.182.7.81","","","10.182.7.81","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257567","210983691","10.199.41.32","","00:40:9D:6A:92:51","10.199.41.32","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158195082","210983613","10.149.90.41","","CC:F4:07:00:72:8C","10.149.90.41","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174273","210983549","10.100.2.158","","","10.100.2.158","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158118540","210983544","10.72.91.53","","00:0D:CA:01:22:0F","10.72.91.53","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158166906","210983550","10.203.3.10","","00:17:C8:48:2C:31","10.203.3.10","","Firmware / Unidentified","Kyocera Firmware","","Printers / Unidentified","Kyocera Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170303","210983551","10.217.42.50","","00:0B:4B:20:22:6D","10.217.42.50","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153535","210983381","10.142.3.175","","","10.142.3.175","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158152932","210983380","10.91.9.11","","","10.91.9.11","","Other / Unidentified","Nokia Bell Labs Plan9","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132339","210983334","10.212.40.151","","","10.212.40.151","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158242992","210983142","10.191.13.190","","00:A0:45:18:24:BD","10.191.13.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153533","210983141","10.132.5.166","","","10.132.5.166","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159904","210982982","10.192.20.86","","","10.192.20.86","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158197062","210982528","10.89.51.13","","","10.89.51.13","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158166898","210982117","10.92.7.147","","","10.92.7.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193652","210982261","10.212.28.141","","","10.212.28.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158187289","210982217","10.104.41.13","","","10.104.41.13","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228424","210982102","10.82.7.86","","","10.82.7.86","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219423","210982226","10.155.2.147","","","10.155.2.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160105","210981015","10.192.8.142","","","10.192.8.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158211422","210980977","10.217.23.56","","00:0B:4B:20:24:A2","10.217.23.56","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158191265","210980778","10.22.2.85","","","10.22.2.85","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158183465","210980780","10.72.42.19","","00:40:9D:4E:57:96","10.72.42.19","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158253563","210980782","10.182.15.80","","","10.182.15.80","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158241183","210980784","10.211.29.208","","","10.211.29.208","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130738","210980472","10.219.41.21","","00:40:9D:31:E4:B5","10.219.41.21","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130737","210980469","10.79.121.130","","","10.79.121.130","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158196455","210979878","10.117.3.31","","00:0B:4B:20:27:2F","10.117.3.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130733","210979611","10.189.91.51","","00:0D:CA:01:84:02","10.189.91.51","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158181878","210979610","10.147.2.57","","00:0B:4B:70:04:00","10.147.2.57","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158187281","210979443","10.73.91.37","","00:0D:CA:01:18:2F","10.73.91.37","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213411","210979102","10.71.190.46","","CC:F4:07:00:6D:59","10.71.190.46","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185062","210978862","10.105.41.12","","00:60:66:01:4D:DB","10.105.41.12","","Unidentified / Unidentified","lwIP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181678","210978794","10.210.11.202","","","10.210.11.202","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194255","210978828","10.210.22.182","","","10.210.22.182","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158178894","210978787","10.142.1.141","","","10.142.1.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228800","210978777","10.137.2.58","","00:0B:4B:60:0E:88","10.137.2.58","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125745","210978837","10.212.29.150","","","10.212.29.150","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158248373","210978532","10.70.42.18","","00:40:9D:36:14:4D","10.70.42.18","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219631","210978281","10.60.1.201","","","10.60.1.201","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158248370","210978015","10.211.33.215","","","10.211.33.215","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158169288","210977917","10.97.1.31","","00:0B:4B:60:0D:E9","10.97.1.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158169287","210977909","10.79.131.205","","","10.79.131.205","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158229003","210977972","10.181.3.150","","","10.181.3.150","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158257148","210977830","10.142.3.106","","","10.142.3.106","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212636","210977696","10.74.90.51","","CC:F4:07:00:3E:80","10.74.90.51","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158199434","210977707","10.112.2.146","","","10.112.2.146","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168500","210977664","10.71.42.10","","00:40:9D:3A:8D:6D","10.71.42.10","","Firmware / Unidentified","Honeywell Firmware","","Printers / Unidentified","Honeywell Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193440","210977667","10.82.14.200","","","10.82.14.200","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158235790","210977668","10.197.11.35","","00:0B:4B:20:27:C2","10.197.11.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158218211","210977669","10.229.41.192","","","10.229.41.192","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181461","210977469","10.100.90.23","","","10.100.90.23","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158133544","210977471","10.212.35.142","","","10.212.35.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158157312","210977294","10.100.32.153","","","10.100.32.153","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159895","210977296","10.182.2.145","","","10.182.2.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158143529","210977297","10.217.34.31","","00:0B:4B:70:02:AF","10.217.34.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158145496","210977083","10.103.42.10","","00:40:9D:3D:4D:6A","10.103.42.10","","Firmware / Unidentified","Honeywell Firmware","","Printers / Unidentified","Honeywell Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158142524","210977082","10.91.2.12","","","10.91.2.12","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158184473","210977084","10.132.3.155","","","10.132.3.155","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158145495","210976863","10.199.51.29","","","10.199.51.29","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158183460","210976483","10.92.3.140","","","10.92.3.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194046","210976484","10.192.16.106","","","10.192.16.106","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194047","210976508","10.212.23.157","","","10.212.23.157","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161500","210976142","10.191.8.20","","","10.191.8.20","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158179259","210975981","10.189.51.11","","","10.189.51.11","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158178884","210975979","10.72.141.15","","00:40:9D:36:8E:57","10.72.141.15","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174464","210975764","10.217.30.33","","00:0B:4B:20:16:D1","10.217.30.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158183678","210975648","10.192.13.144","","","10.192.13.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132322","210975464","10.22.3.147","","","10.22.3.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158241172","210975395","10.76.42.10","","00:40:9D:6A:F1:92","10.76.42.10","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158191251","210975332","10.211.27.202","","","10.211.27.202","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130725","210975328","10.27.2.35","","00:0B:4B:70:07:09","10.27.2.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158182251","210975333","10.229.21.112","","","10.229.21.112","","Unidentified / Unidentified","Rockwell Automation","","Industrial Control System (ICS) / Unidentified","Rockwell Automation Industrial Control System (ICS)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219410","210975331","10.191.18.191","","00:A0:45:18:A2:6A","10.191.18.191","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158239780","210975084","10.79.31.193","","00:A0:45:18:25:5A","10.79.31.193","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158183849","210975085","10.112.1.148","","","10.112.1.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158154089","210974880","10.73.41.18","","","10.73.41.18","","Unidentified / Unidentified","Cabletron SmartSTACK / Vertical Horizon Stack / Cisco IP Phone / magicolor 3300 Printer","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158196444","210974736","192.168.100.47","","","192.168.100.47","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch / Ricoh Printer","","Printers / Unidentified","Ricoh Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160495","210974531","10.142.2.151","","","10.142.2.151","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158162096","210974538","10.187.14.34","","00:0B:4B:60:0E:77","10.187.14.34","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158218204","210974385","10.212.31.160","","","10.212.31.160","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158186652","210974387","10.219.51.25","","","10.219.51.25","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158199426","210974383","10.208.91.30","","","10.208.91.30","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181456","210974360","10.88.12.35","","","10.88.12.35","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132318","210974236","10.81.16.23","","","10.81.16.23","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158190867","210974091","10.132.2.162","","","10.132.2.162","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185056","210974093","10.229.27.58","","00:0B:4B:20:1D:E5","10.229.27.58","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158166877","210974092","10.192.5.81","","","10.192.5.81","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132316","210973671","10.121.23.111","","","10.121.23.111","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170882","210973669","10.99.41.10","","","10.99.41.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158198639","210973668","10.22.1.102","","","10.22.1.102","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193432","210973489","10.138.4.10","","","10.138.4.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168486","210973244","10.154.1.207","","","10.154.1.207","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170281","210973245","10.212.41.145","","","10.212.41.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213597","210973029","10.211.41.14","","","10.211.41.14","","Firmware / Unidentified","Huawei Firmware","","Networking Device / Switch","Huawei Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158244172","210973024","10.81.11.191","","00:A0:45:18:25:01","10.81.11.191","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158139527","210973030","10.229.61.190","","00:A0:45:38:9A:DD","10.229.61.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158157304","210972785","10.87.6.30","","00:0B:4B:20:2E:4E","10.87.6.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158154084","210972789","10.199.42.11","","00:40:9D:3A:8B:D3","10.199.42.11","","Firmware / Unidentified","Honeywell Firmware","","Printers / Unidentified","Honeywell Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123734","210972786","10.106.17.190","","00:A0:45:18:A2:64","10.106.17.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228403","210972788","10.117.1.53","","00:0B:4B:40:1C:60","10.117.1.53","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158167299","210972534","10.191.15.17","","","10.191.15.17","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158133533","210972082","10.152.50.13","","","10.152.50.13","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158090136","210971907","10.182.7.147","","","10.182.7.147","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158211408","210971905","10.147.1.39","","00:0B:4B:70:04:13","10.147.1.39","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158244169","210971908","10.211.22.202","","","10.211.22.202","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158248352","210971901","10.91.10.203","","","10.91.10.203","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181864","210971359","10.92.8.143","","","10.92.8.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158211407","210971357","c530-ip-35467.sanef.groupe","","","10.89.60.24","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158199420","210971135","10.212.28.164","","","10.212.28.164","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213594","210971011","10.137.1.33","","00:0B:4B:20:2B:C7","10.137.1.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158211406","210971009","10.82.10.80","","","10.82.10.80","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185237","210970711","10.192.21.141","","","10.192.21.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158190864","210970710","10.70.190.46","","","10.70.190.46","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163668","210970523","10.181.12.190","","00:A0:45:18:A2:1D","10.181.12.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158169277","210970488","10.192.9.89","","","10.192.9.89","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158179249","210970487","10.12.50.11","","","10.12.50.11","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160488","210970036","10.217.25.34","","00:0B:4B:20:1E:7B","10.217.25.34","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158197035","210970035","10.155.7.53","","00:0B:4B:40:37:8A","10.155.7.53","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083930","210970034","10.73.91.53","","00:0D:CA:01:18:45","10.73.91.53","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158184462","210970033","10.22.2.104","","","10.22.2.104","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158225990","210969795","8058s-0c8df8.sanef.groupe","","","10.100.6.133","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158222591","210969633","10.79.121.198","","","10.79.121.198","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123731","210969585","10.182.16.83","","","10.182.16.83","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158241161","210969569","10.74.142.10","","00:40:9D:6A:F1:3B","10.74.142.10","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132308","210969575","10.118.1.10","","02:1F:82:C9:9D:F6","10.118.1.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158133522","210969143","10.211.30.29","","","10.211.30.29","","Unidentified / Unidentified","Linksys Wireless Ethernet Bridge / Konica Printer","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160484","210969026","10.219.50.13","","","10.219.50.13","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158139521","210968793","10.71.191.40","","00:0D:CA:01:33:9F","10.71.191.40","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083335","210968796","10.147.2.74","","00:0B:4B:70:04:05","10.147.2.74","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158092343","210968797","10.210.27.53","","00:0B:4B:40:2F:9E","10.210.27.53","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159882","210968719","10.210.21.20","","","10.210.21.20","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158196428","210968544","10.89.41.13","","00:00:00:00:00:00","10.89.41.13","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158190859","210968546","sanefpea032e02","SANEFPEA032E02","C4:00:AD:1D:C2:2B","10.108.2.31","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170275","210968548","10.191.2.23","","00:00:54:1E:19:29","10.191.2.23","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158187258","210968313","10.72.41.28","","00:00:00:00:00:00","10.72.41.28","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160481","210968122","10.142.1.158","","","10.142.1.158","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213222","210968121","10.137.3.37","","00:0B:4B:20:2D:85","10.137.3.37","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158166872","210968124","10.212.29.171","","","10.212.29.171","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158169273","210967998","10.72.90.15","","","10.72.90.15","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158222586","210967553","10.70.90.40","","","10.70.90.40","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158139518","210967186","10.82.15.142","","","10.82.15.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158133519","210967182","10.61.3.116","","","10.61.3.116","","Unidentified / Unidentified","Axis Network Camera / Axis Network Camera / Alpine Linux / HP Envy Photo Printer / Avocent / Dell iDRAC","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158162077","210966926","10.131.3.190","","00:A0:45:18:A2:A5","10.131.3.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158242356","210966776","10.197.21.36","","","10.197.21.36","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158143499","210966773","10.101.31.119","","","10.101.31.119","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194024","210966711","10.211.34.207","","","10.211.34.207","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158205187","210966701","10.142.3.123","","","10.142.3.123","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158167291","210966686","10.112.2.165","","","10.112.2.165","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228774","210966179","10.97.4.31","","00:0B:4B:60:0E:53","10.97.4.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158187248","210966198","10.229.51.152","","","10.229.51.152","","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","Unknown","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158187242","210965932","10.212.36.150","","","10.212.36.150","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158167283","210965609","10.217.34.56","","00:0B:4B:50:05:F8","10.217.34.56","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168868","210965570","10.182.4.145","","","10.182.4.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130710","210965564","10.100.32.170","","","10.100.32.170","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158241148","210964984","10.91.4.10","","","10.91.4.10","","Other / Unidentified","Nokia Bell Labs Plan9","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213387","210964988","10.107.2.86","","","10.107.2.86","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158183653","210964750","10.132.4.146","","","10.132.4.146","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228971","210964674","10.92.4.87","","","10.92.4.87","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158157277","210964479","10.192.17.82","","","10.192.17.82","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158162070","210964100","10.212.25.149","","","10.212.25.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168865","210964060","10.199.90.16","","","10.199.90.16","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158242350","210964054","10.189.60.11","","","10.189.60.11","","Firmware / Unidentified","Brother Firmware","","Printers / Unidentified","Brother Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158133505","210964045","10.189.41.17","","00:00:00:00:00:00","10.189.41.17","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158167068","210963854","10.99.91.30","","00:0D:CA:01:81:B3","10.99.91.30","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158168864","210963702","10.106.2.84","","","10.106.2.84","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158196416","210963517","10.192.11.145","","","10.192.11.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158186615","210963348","10.28.1.10","","02:1F:82:C9:9D:F6","10.28.1.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174441","210963349","10.229.21.168","","","10.229.21.168","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163650","210963197","10.22.3.82","","","10.22.3.82","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158154071","210963200","10.211.28.207","","","10.211.28.207","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185035","210963199","10.154.51.10","","","10.154.51.10","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161089","210963198","10.73.42.34","","","10.73.42.34","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163860","210962763","10.191.20.190","","00:A0:45:18:06:62","10.191.20.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168462","210962761","10.127.17.31","","00:0B:4B:20:17:16","10.127.17.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158190840","210962759","10.79.41.112","","","10.79.41.112","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158187232","210961888","192.168.100.94","","","192.168.100.94","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch / Ricoh Printer","","Printers / Unidentified","Ricoh Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158196412","210961882","10.21.1.225","","","10.21.1.225","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158156665","210961885","10.100.51.20","","","10.100.51.20","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174436","210961887","10.217.26.77","","00:0B:4B:20:2E:7B","10.217.26.77","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161478","210961884","10.71.90.42","","CC:F4:07:00:72:2F","10.71.90.42","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158191223","210961470","10.199.41.15","","00:40:9D:39:72:5E","10.199.41.15","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077542","210961466","10.187.6.53","","00:0B:4B:50:06:D0","10.187.6.53","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174435","210961245","10.142.2.101","","","10.142.2.101","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158156663","210961197","10.210.52.151","","","10.210.52.151","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219584","210960875","10.137.5.37","","00:0B:4B:20:27:C5","10.137.5.37","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158086136","210960768","10.212.30.144","","","10.212.30.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158179231","210960700","10.229.54.155","","","10.229.54.155","","Unidentified / Unidentified","Cabletron SmartSTACK / Vertical Horizon Stack / Cisco IP Phone / magicolor 3300 Printer","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194821","210960531","10.82.17.110","","","10.82.17.110","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158152871","210960336","10.141.2.22","","","10.141.2.22","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158082729","210960334","10.75.141.14","","","10.75.141.14","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161467","210960049","10.132.1.142","","","10.132.1.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158166846","210960051","004DD8J10S","004DD8J10S","","10.149.42.50","","Linux / Unidentified","Linux 2.2-2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212600","210959837","10.211.38.204","","","10.211.38.204","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158143485","210959760","10.219.50.48","","","10.219.50.48","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077144","210959544","10.100.2.105","","","10.100.2.105","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158102715","210959545","10.112.3.142","","","10.112.3.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158222565","210959546","10.192.2.141","","","10.192.2.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091913","210959371","10.81.7.200","","","10.81.7.200","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158099913","210959372","10.97.8.30","","00:0B:4B:70:04:15","10.97.8.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123709","210959373","10.142.3.157","","","10.142.3.157","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158167265","210959197","10.104.2.87","","","10.104.2.87","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076543","210959194","10.72.91.37","","00:0D:CA:01:81:DE","10.72.91.37","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158170847","210958909","10.212.39.145","","","10.212.39.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158184433","210958906","10.182.6.141","","","10.182.6.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158197006","210958907","10.191.12.13","","","10.191.12.13","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158198602","210958713","10.217.41.37","","00:0B:4B:50:06:EA","10.217.41.37","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158197203","210958712","10.132.5.101","","","10.132.5.101","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212782","210958575","10.72.41.21","","00:00:00:00:00:00","10.72.41.21","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158082723","210958563","10.210.7.34","","00:0B:4B:20:1D:CE","10.210.7.34","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158184432","210958208","10.199.91.38","","00:0D:CA:01:80:F8","10.199.91.38","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158191216","210958146","10.92.6.143","","","10.92.6.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163847","210957940","10.155.2.80","","","10.155.2.80","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158143482","210957762","10.71.190.12","","","10.71.190.12","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228366","210957436","10.212.26.166","","","10.212.26.166","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123707","210957434","10.70.91.52","","00:0D:CA:01:32:F4","10.70.91.52","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158167053","210957175","10.192.18.145","","","10.192.18.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219573","210957174","10.192.8.81","","","10.192.8.81","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212780","210957173","10.82.5.140","","","10.82.5.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077529","210956450","c530-ip-35313.sanef.groupe","","","10.29.60.20","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185023","210956019","10.211.28.242","","","10.211.28.242","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158154059","210956018","10.79.121.114","","","10.79.121.114","","Unidentified / Unidentified","Axis Network Camera / Axis Network Camera / Alpine Linux / HP Envy Photo Printer / Avocent / Dell iDRAC","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158211379","210955323","10.117.2.58","","00:0B:4B:60:0E:F9","10.117.2.58","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212776","210955314","10.105.18.81","","","10.105.18.81","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076533","210955328","10.189.91.35","","00:0D:CA:01:81:AE","10.189.91.35","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158154058","210955296","10.79.131.156","","","10.79.131.156","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158152862","210955290","10.22.1.166","","","10.22.1.166","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158207793","210955123","10.182.12.142","","","10.182.12.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132104","210954832","10.217.21.35","","00:0B:4B:20:22:34","10.217.21.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181621","210954800","10.147.2.36","","00:0B:4B:20:17:0B","10.147.2.36","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158199386","210954842","10.219.13.50","","A8:74:1D:09:AA:D9","10.219.13.50","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132101","210954370","10.89.50.22","","","10.89.50.22","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193601","210954290","10.73.90.48","","CC:F4:07:00:72:46","10.73.90.48","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219364","210954100","10.142.1.91","","","10.142.1.91","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083303","210954103","10.197.8.53","","00:0B:4B:40:29:CF","10.197.8.53","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158082717","210954105","10.210.22.146","","","10.210.22.146","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213194","210953919","10.92.9.151","","","10.92.9.151","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193599","210953680","10.137.2.42","","00:0B:4B:20:07:86","10.137.2.42","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219362","210953678","10.82.13.140","","","10.82.13.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228949","210953402","10.100.13.50","","00:A0:45:18:3C:E0","10.100.13.50","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160050","210953174","10.131.2.115","","","10.131.2.115","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158102705","210953080","10.112.2.104","","","10.112.2.104","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123697","210952776","10.181.1.150","","","10.181.1.150","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213364","210952433","10.229.41.112","","","10.229.41.112","","Unidentified / Unidentified","Rockwell Automation","","Industrial Control System (ICS) / Unidentified","Rockwell Automation Industrial Control System (ICS)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083299","210952192","10.142.3.87","","","10.142.3.87","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158228947","210951957","10.211.31.23","","","10.211.31.23","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174207","210951954","10.70.13.12","","00:A0:45:37:E5:C8","10.70.13.12","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161452","210951902","10.189.41.23","","00:40:9D:6A:F1:4F","10.189.41.23","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219564","210951905","10.212.33.182","","","10.212.33.182","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219358","210951394","10.132.3.102","","","10.132.3.102","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158211374","210950996","10.99.51.12","","","10.99.51.12","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158099902","210950994","10.12.80.11","","","10.12.80.11","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132093","210950691","10.217.31.53","","00:0B:4B:40:2A:09","10.217.31.53","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174415","210950687","10.92.2.83","","","10.92.2.83","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168437","210950334","10.89.91.43","","00:0D:CA:01:80:EC","10.89.91.43","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158099900","210949986","10.191.5.202","","","10.191.5.202","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158195005","210949944","10.212.22.147","","","10.212.22.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158183416","210949946","sanefpea121c51","SANEFPEA121C51","00:0B:AB:BC:AA:58","10.212.29.51","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158196992","210949943","10.199.51.13","","","10.199.51.13","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158145448","210949940","10.87.17.36","","00:0B:4B:20:2E:AC","10.87.17.36","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158118472","210949638","10.219.91.33","","","10.219.91.33","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212971","210949367","10.139.51.13","","","10.139.51.13","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153459","210949110","10.217.31.35","","00:0B:4B:70:01:D8","10.217.31.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064741","210948927","10.192.15.140","","","10.192.15.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159677","210948929","10.212.21.215","","3C:4A:92:40:47:14","10.212.21.215","","Firmware / Unidentified","HP Firmware","","Networking Device / Print Server","HP JetDirect Print Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158178833","210948928","10.192.15.201","","","10.192.15.201","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125685","210948923","10.191.16.204","","","10.191.16.204","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163828","210948717","10.211.26.216","","","10.211.26.216","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158156638","210948712","10.27.1.51","","00:0B:4B:20:2B:C2","10.27.1.51","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158196990","210948140","10.79.21.198","","00:A0:45:18:24:FB","10.79.21.198","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067744","210948064","10.112.2.96","","","10.112.2.96","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158156636","210947534","sanefpea414c01","SANEFPEA414C01","C4:00:AD:1C:88:EA","10.182.1.41","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158207567","210947219","10.27.1.44","","00:0B:4B:20:27:34","10.27.1.44","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161058","210947373","10.219.90.41","","CC:F4:07:00:30:CC","10.219.90.41","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158162031","210946797","10.106.51.10","","","10.106.51.10","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158063733","210946832","10.132.3.94","","","10.132.3.94","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158166828","210946633","10.70.191.58","","00:0D:CA:01:81:D4","10.70.191.58","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158142450","210946538","10.212.33.174","","","10.212.33.174","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132262","210946537","10.191.16.150","","","10.191.16.150","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125678","210946164","10.199.50.46","","00:20:4A:A7:3D:E4","10.199.50.46","","Firmware / Unidentified","Lantronix EZWebCon","","Industrial Networking / Industrial Serial Device Server","Lantronix MSS100 Industrial Serial Device Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158142449","210945981","polycom64167f612698.sanef.groupe","","","10.100.61.33","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194190","210945957","10.72.190.44","","CC:F4:07:00:41:71","10.72.190.44","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159849","210945219","10.229.71.194","","00:A0:45:38:9B:D3","10.229.71.194","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212963","210945218","10.121.17.111","","","10.121.17.111","","Unidentified / Unidentified","Rockwell Automation","","Industrial Control System (ICS) / Unidentified","Rockwell Automation Industrial Control System (ICS)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158197182","210944956","10.192.7.145","","","10.192.7.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158196982","210944952","004DD8HXPG","004DD8HXPG","","10.139.42.51","","Linux / Unidentified","Linux 2.2-2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212763","210944957","10.229.71.156","","","10.229.71.156","","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","Unknown","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158160825","210944675","10.100.11.170","","","10.100.11.170","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185005","210944672","10.22.1.160","","","10.22.1.160","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185004","210944612","10.212.43.142","","","10.212.43.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181601","210944589","polycom64167f614fc0.sanef.groupe","","","10.100.61.26","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194791","210944599","10.182.11.140","","","10.182.11.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213558","210944587","10.87.16.31","","00:0B:4B:20:0F:2F","10.87.16.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194990","210944600","10.207.91.31","","","10.207.91.31","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158092297","210944588","10.92.1.201","","78:E7:D1:A9:BA:89","10.92.1.201","","Firmware / Unidentified","HP Firmware","","Networking Device / Print Server","HP JetDirect Print Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158219551","210944047","10.79.131.150","","","10.79.131.150","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076516","210943899","10.117.2.52","","00:0B:4B:40:37:8F","10.117.2.52","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185193","210943913","10.142.1.85","","","10.142.1.85","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168825","210943993","10.147.2.30","","00:0B:4B:20:2B:EC","10.147.2.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212762","210943527","10.210.22.135","","","10.210.22.135","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213353","210943518","10.92.9.145","","","10.92.9.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158207565","210943537","10.211.26.208","","","10.211.26.208","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193383","210943213","10.212.28.195","","","10.212.28.195","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123863","210943164","10.79.21.192","","00:A0:45:18:3C:E4","10.79.21.192","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076515","210942974","10.197.8.35","","00:0B:4B:70:02:66","10.197.8.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158199368","210942913","10.137.2.35","","00:0B:4B:20:27:B5","10.137.2.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161431","210942927","sanefpea001e09","SANEFPEA001E09","C4:00:AD:2E:62:A8","10.142.3.38","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170820","210942908","10.82.12.142","","","10.82.12.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194182","210942634","10.99.50.23","","","10.99.50.23","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159667","210942295","10.70.191.52","","00:0D:CA:01:1C:4E","10.70.191.52","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213165","210942412","10.74.90.12","","","10.74.90.12","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158196374","210942471","10.181.15.204","","","10.181.15.204","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158196978","210941814","10.229.31.204","","","10.229.31.204","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064144","210941793","10.155.90.10","","","10.155.90.10","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158118461","210941565","10.22.2.162","","","10.22.2.162","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170228","210941567","10.192.11.87","","","10.192.11.87","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158197176","210941569","10.211.31.12","","","10.211.31.12","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077114","210940996","pcb18107.sanef.groupe","PCB18107","38:CA:84:52:10:F5","10.149.31.6","","Windows / Unidentified","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","VRF_INCONNUE,Forescout","0.0" +"158185185","210940357","10.187.6.32","","00:0B:4B:20:14:05","10.187.6.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158072732","210940358","10.217.26.71","","00:0B:4B:20:1E:9E","10.217.26.71","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181803","210940355","10.142.2.94","","","10.142.2.94","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158157231","210940344","10.105.17.206","","","10.105.17.206","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076891","210939780","10.210.52.144","","","10.210.52.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158092290","210939773","10.89.91.37","","00:0D:CA:01:33:58","10.89.91.37","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123851","210939772","10.75.91.31","","","10.75.91.31","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193576","210939503","10.192.2.84","","","10.192.2.84","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168815","210939397","10.137.4.34","","00:0B:4B:70:04:02","10.137.4.34","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158182192","210939399","10.218.40.52","","","10.218.40.52","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123677","210939018","10.191.5.15","","","10.191.5.15","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161042","210938574","10.212.29.217","","78:E7:D1:AA:16:63","10.212.29.217","","Firmware / Unidentified","HP Firmware","","Networking Device / Print Server","HP JetDirect Print Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174394","210938383","10.82.17.104","","","10.82.17.104","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181586","210938410","10.229.51.200","","","10.229.51.200","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158142433","210938398","10.132.1.101","","","10.132.1.101","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158152829","210938396","10.112.3.97","","","10.112.3.97","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181585","210938384","10.97.7.36","","00:0B:4B:20:1F:8A","10.97.7.36","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158127265","210938351","10.61.10.110","","","10.61.10.110","","Unidentified / Unidentified","Rockwell Automation","","Industrial Control System (ICS) / Unidentified","Rockwell Automation Industrial Control System (ICS)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194780","210938349","10.11.51.10","","","10.11.51.10","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058137","210938403","10.211.37.202","","","10.211.37.202","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181796","210938353","10.71.142.14","","00:40:9D:3A:8D:49","10.71.142.14","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS 4 Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123844","210938391","10.100.2.98","","","10.100.2.98","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158139454","210938382","10.81.6.20","","","10.81.6.20","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158198573","210938397","10.131.4.206","","","10.131.4.206","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194175","210938380","10.72.91.31","","00:0D:CA:01:80:E3","10.72.91.31","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158167224","210938407","10.219.50.42","","","10.219.50.42","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159837","210938401","10.142.3.151","","","10.142.3.151","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158167223","210938404","10.212.38.158","","","10.212.38.158","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193976","210938405","10.217.41.30","","00:0B:4B:20:14:00","10.217.41.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194973","210938394","10.104.2.23","","","10.104.2.23","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158212948","210938399","10.132.5.94","","","10.132.5.94","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158213150","210938402","10.182.5.148","","","10.182.5.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185180","210938395","10.106.1.206","","","10.106.1.206","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158167013","210938010","10.100.50.21","","","10.100.50.21","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193369","210938014","10.199.91.32","","00:0D:CA:01:1C:53","10.199.91.32","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158152828","210938009","10.92.6.82","","","10.92.6.82","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158086087","210938008","10.91.6.202","","","10.91.6.202","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159831","210938013","10.192.18.87","","","10.192.18.87","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163611","210938016","10.212.26.159","","","10.212.26.159","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170804","210937565","10.189.90.47","","CC:F4:07:00:72:94","10.189.90.47","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153437","210937559","10.82.4.140","","","10.82.4.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158060935","210937566","10.192.13.82","","","10.192.13.82","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130657","210937567","10.199.14.18","","","10.199.14.18","","Unidentified / Unidentified","Axis Network Camera / Axis Network Camera / Alpine Linux / HP Envy Photo Printer / Avocent / Dell iDRAC","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089667","210937489","10.217.28.57","","00:0B:4B:60:0E:61","10.217.28.57","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125655","210937484","10.70.91.46","","00:0D:CA:01:81:B9","10.70.91.46","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158198567","210937491","10.229.21.207","","","10.229.21.207","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054945","210937483","10.22.3.141","","","10.22.3.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067725","210937487","10.211.28.233","","","10.211.28.233","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158207551","210937281","10.79.121.31","","","10.79.121.31","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158139446","210935898","10.112.1.142","","","10.112.1.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045542","210935929","10.152.7.161","","00:0B:4B:50:1D:1F","10.152.7.161","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076875","210935836","10.75.191.31","","","10.75.191.31","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158086083","210935917","10.142.2.145","","","10.142.2.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174386","210935590","10.187.13.32","","00:0B:4B:20:28:9D","10.187.13.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132234","210935628","10.219.51.19","","","10.219.51.19","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159823","210932123","10.212.31.153","","","10.212.31.153","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158183384","210932093","10.137.5.67","","00:0B:4B:60:0E:49","10.137.5.67","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055338","210931571","10.89.50.16","","","10.89.50.16","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158191177","210931583","10.210.1.203","","","10.210.1.203","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181576","210930639","10.73.90.42","","CC:F4:07:00:72:04","10.73.90.42","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159637","210930640","10.229.27.48","","00:0B:4B:20:1D:E8","10.229.27.48","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158118435","210930344","10.107.50.11","","","10.107.50.11","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067718","210930347","10.132.2.155","","","10.132.2.155","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077709","210929870","10.199.41.44","","00:40:9D:47:B3:82","10.199.41.44","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089663","210928980","10.22.1.96","","","10.22.1.96","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058126","210928983","10.192.4.142","","","10.192.4.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158183380","210928984","10.211.41.7","","","10.211.41.7","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158196357","210928391","10.29.50.24","","","10.29.50.24","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158156610","210927875","10.182.7.141","","","10.182.7.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091857","210927876","10.229.61.157","","","10.229.61.157","","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","Unknown","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158118434","210927873","10.121.9.113","","","10.121.9.113","","Unidentified / Unidentified","Axis Network Camera / Axis Network Camera / Alpine Linux / HP Envy Photo Printer / Avocent / Dell iDRAC","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158198552","210927874","10.132.5.176","","","10.132.5.176","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161405","210927540","10.117.1.41","","00:0B:4B:20:2B:C5","10.117.1.41","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193563","210927537","10.92.8.87","","","10.92.8.87","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056143","210927455","10.72.114.12","","","10.72.114.12","","Unidentified / Unidentified","Axis Network Camera / Axis Network Camera / Alpine Linux / HP Envy Photo Printer / Avocent / Dell iDRAC","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158139436","210927458","sanefpea197p80","SANEFPEA197P80","00:0B:AB:D4:0E:8F","10.212.41.80","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158193359","210927160","10.87.2.33","","00:0B:4B:20:2E:4A","10.87.2.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077881","210926844","10.147.1.31","","00:0B:4B:20:16:AD","10.147.1.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158187168","210926847","10.192.9.82","","","10.192.9.82","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077707","210926848","10.192.21.82","","","10.192.21.82","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194759","210926693","10.91.9.207","","","10.91.9.207","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158146022","210926414","10.212.28.152","","","10.212.28.152","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158167203","210926407","10.89.51.23","","","10.89.51.23","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161999","210926413","10.191.14.201","","","10.191.14.201","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159814","210925988","10.218.25.10","","E2:81:1E:E6:90:FF","10.218.25.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161018","210925985","10.211.22.10","","","10.211.22.10","","Firmware / Unidentified","Huawei Firmware","","Networking Device / Switch","Huawei Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194154","210925983","10.98.8.30","","","10.98.8.30","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158184972","210925516","sanefpea900e01","SANEFPEA900E01","00:0B:AB:E6:36:39","10.12.29.40","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174177","210925518","10.82.9.140","","","10.82.9.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046731","210925519","10.155.7.36","","00:0B:4B:20:27:B4","10.155.7.36","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158156607","210925108","10.181.11.190","","00:A0:45:18:51:45","10.181.11.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158190754","210924791","10.70.190.40","","CC:F4:07:00:95:7D","10.70.190.40","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158118429","210924428","10.22.2.97","","","10.22.2.97","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158143426","210924001","10.217.24.32","","00:0B:4B:20:22:A4","10.217.24.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132224","210923938","10.211.29.218","","","10.211.29.218","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194949","210923936","10.73.91.47","","00:0D:CA:01:76:49","10.73.91.47","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158099857","210923560","8058s-0c8e44.sanef.groupe","","","10.200.6.130","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158143424","210923554","10.117.3.54","","00:0B:4B:20:2B:F4","10.117.3.54","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163589","210923559","10.182.15.142","","","10.182.15.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158187159","210923241","10.79.121.192","","00:A0:45:18:24:68","10.79.121.192","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132029","210922843","10.147.2.67","","00:0B:4B:70:06:07","10.147.2.67","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046345","210922412","10.210.22.198","","","10.210.22.198","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158194947","210922410","10.72.50.12","","","10.72.50.12","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054927","210922409","10.71.191.34","","00:0D:CA:01:81:B2","10.71.191.34","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158099853","210922041","10.212.29.163","","","10.212.29.163","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076858","210922040","10.142.1.151","","","10.142.1.151","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153416","210921804","10.82.15.88","","","10.82.15.88","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158157194","210921748","10.137.3.31","","00:0B:4B:20:2D:82","10.137.3.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170787","210921573","10.191.1.201","","","10.191.1.201","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158118423","210921552","10.108.1.201","","","10.108.1.201","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055520","210921160","10.210.21.12","","","10.210.21.12","","Firmware / Unidentified","Huawei Firmware","","Networking Device / Switch","Huawei Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158166993","210920894","10.197.21.30","","00:0B:4B:20:25:3B","10.197.21.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170786","210920911","10.229.51.8","","","10.229.51.8","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067706","210920699","10.61.3.14","","","10.61.3.14","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125627","210920700","10.97.3.36","","00:0B:4B:20:27:01","10.97.3.36","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158183574","210920703","10.112.2.159","","","10.112.2.159","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029745","210920457","10.211.34.201","","","10.211.34.201","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158178780","210920452","10.74.141.10","","00:60:66:01:20:C4","10.74.141.10","","Unidentified / Unidentified","lwIP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158191152","210920453","10.89.41.26","","00:00:00:00:00:00","10.89.41.26","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181773","210920455","10.142.3.117","","","10.142.3.117","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055322","210920256","10.182.4.84","","","10.182.4.84","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181561","210920160","10.70.90.14","","","10.70.90.14","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158060901","210919396","10.217.34.44","","00:0B:4B:70:02:45","10.217.34.44","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181364","210919394","10.212.36.141","","","10.212.36.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160997","210919347","10.81.1.202","","","10.81.1.202","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125618","210919348","10.219.42.31","","","10.219.42.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153992","210919124","10.100.32.163","","","10.100.32.163","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123641","210919126","10.132.4.140","","","10.132.4.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158092251","210918950","10.111.2.14","","","10.111.2.14","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049539","210918553","10.99.90.12","","","10.99.90.12","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158034543","210918164","10.212.24.150","","","10.212.24.150","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091835","210918147","10.154.2.150","","","10.154.2.150","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089643","210918155","10.192.16.154","","","10.192.16.154","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091833","210917706","c530-ip-44150.sanef.groupe","","","10.209.60.20","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158184356","210917616","10.100.91.40","","","10.100.91.40","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077466","210917659","10.189.51.21","","","10.189.51.21","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158152796","210917568","10.73.42.13","","00:40:9D:30:49:BF","10.73.42.13","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132208","210916566","10.181.4.202","","","10.181.4.202","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158072692","210916582","10.192.14.140","","","10.192.14.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158044340","210916266","10.217.30.43","","00:0B:4B:20:26:0D","10.217.30.43","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158082646","210916235","10.139.41.15","","00:40:9D:38:6A:DB","10.139.41.15","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046714","210916201","10.27.2.55","","00:0B:4B:70:01:CA","10.27.2.55","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067697","210916246","10.191.20.15","","","10.191.20.15","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158184954","210916255","10.211.28.201","","","10.211.28.201","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153398","210915759","10.229.21.162","","","10.229.21.162","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185150","210915758","10.127.10.30","","00:0B:4B:20:16:51","10.127.10.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158072688","210915757","10.22.3.158","","","10.22.3.158","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058311","210915223","10.79.31.203","","00:A0:45:38:9A:E9","10.79.31.203","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181758","210914984","10.99.42.12","","00:40:9D:3A:8D:65","10.99.42.12","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158060889","210914973","10.89.3.200","","1C:C1:DE:13:B0:30","10.89.3.200","","Firmware / Unidentified","HP Firmware","","Networking Device / Print Server","HP JetDirect Print Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058307","210914660","10.139.91.33","","00:0D:CA:01:18:4B","10.139.91.33","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158185148","210914683","10.188.8.10","","","10.188.8.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158061285","210914186","10.21.1.219","","","10.21.1.219","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158102636","210913735","10.142.2.165","","","10.142.2.165","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158184948","210913734","sanefpea017e01","SANEFPEA017E01","00:0B:AB:92:F5:0A","10.107.2.30","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125609","210913632","10.212.33.140","","","10.212.33.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158178763","210913566","polycom64167f61250e.sanef.groupe","","","10.100.61.60","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158179153","210913483","sanefpea721c53","SANEFPEA721C53","C4:00:AD:20:33:74","10.92.4.47","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049736","210913579","10.229.64.150","","","10.229.64.150","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158157179","210913049","10.72.142.12","","00:40:9D:4D:5C:75","10.72.142.12","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130616","210912954","10.199.42.22","","00:40:9D:7A:20:4B","10.199.42.22","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064678","210912594","10.132.2.172","","","10.132.2.172","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091822","210912368","10.22.1.113","","","10.22.1.113","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160380","210912369","10.211.42.200","","","10.211.42.200","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158145990","210912310","10.74.41.14","","00:40:9D:6A:F1:26","10.74.41.14","","Firmware / Unidentified","Honeywell Firmware","","Printers / Unidentified","Honeywell Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089633","210912314","10.192.5.144","","","10.192.5.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051910","210912315","10.200.42.12","","00:40:9D:23:67:B2","10.200.42.12","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158181549","210911972","10.212.42.142","","","10.212.42.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091820","210911971","10.182.8.140","","","10.182.8.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058086","210911676","10.87.9.32","","00:0B:4B:20:1E:77","10.87.9.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055505","210911606","10.76.141.12","","","10.76.141.12","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055304","210911176","10.117.2.33","","00:0B:4B:70:03:90","10.117.2.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161974","210910870","10.108.2.141","","","10.108.2.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046704","210910639","10.92.9.82","","","10.92.9.82","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158028339","210910631","10.147.1.60","","00:0B:4B:20:16:A9","10.147.1.60","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160378","210910351","10.191.15.190","","00:A0:45:18:90:8B","10.191.15.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158033938","210910350","rsaapcv8","RSAAPCV8","8C:DC:D4:32:EC:0D","10.112.2.23","","Windows / Client","Microsoft Windows 7 (6.1 SP1 Build 7601)","6.1","Unidentified / Unidentified","HP","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158063676","210910201","10.91.11.14","","","10.91.11.14","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163774","210910202","10.211.23.207","","","10.211.23.207","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158166765","210909875","10.212.28.178","","","10.212.28.178","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158174151","210909874","10.137.1.44","","00:0B:4B:60:0E:C5","10.137.1.44","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043341","210909446","10.192.10.83","","","10.192.10.83","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158152778","210909445","10.89.90.17","","","10.89.90.17","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158152777","210909220","10.82.11.141","","","10.82.11.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158145378","210909221","10.181.13.190","","00:A0:45:18:A2:E2","10.181.13.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046920","210908505","10.22.2.145","","","10.22.2.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041937","210908507","10.70.191.36","","00:0D:CA:01:32:FC","10.70.191.36","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170162","210908263","10.79.131.19","","","10.79.131.19","","Network Operating System / Unidentified","Huawei Quidway Switch","","Networking Device / Switch","Huawei Quidway Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158170758","210908269","8058s-0c8e05.sanef.groupe","","","10.100.6.144","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158169160","210908270","10.211.30.209","","","10.211.30.209","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158166758","210907729","pcb13547.sanef.groupe","","","10.100.39.125","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","VRF_INCONNUE,Forescout","0.0" +"158042936","210907731","10.217.26.52","","00:0B:4B:70:04:39","10.217.26.52","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158034922","210907369","10.229.31.153","","","10.229.31.153","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046317","210907313","10.104.91.33","","00:0D:CA:01:1C:55","10.104.91.33","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158145377","210906975","10.192.1.84","","","10.192.1.84","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158145980","210906741","10.71.191.50","","00:0D:CA:01:82:06","10.71.191.50","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158153972","210906743","10.137.3.48","","00:0B:4B:20:2E:CF","10.137.3.48","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049520","210906742","10.105.90.10","","","10.105.90.10","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168754","210906711","10.212.29.186","","","10.212.29.186","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083236","210906655","10.82.16.82","","","10.82.16.82","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159776","210906692","10.132.1.82","","","10.132.1.82","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153375","210906701","10.210.21.30","","","10.210.21.30","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159580","210906178","10.218.31.34","","","10.218.31.34","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158139392","210906015","10.191.2.204","","","10.191.2.204","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058285","210906016","10.197.6.30","","","10.197.6.30","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125599","210905708","10.142.3.134","","","10.142.3.134","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158050306","210905709","10.182.5.85","","","10.182.5.85","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158161966","210905707","polycom_64167f063941.sanef.groupe","","","10.101.60.24","","Unidentified / Unidentified","Unknown OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125598","210905442","10.61.7.12","","00:18:A9:00:0E:1D","10.61.7.12","","Other / Unidentified","Dell PowerVault NAS Operating System","","Storage Devices / Network Attached Storage (NAS) Device","Dell Network Attached Storage (NAS) Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029536","210905408","10.97.5.30","","00:0B:4B:20:2E:59","10.97.5.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158152772","210905426","10.212.37.148","","","10.212.37.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158052305","210905417","10.211.35.202","","","10.211.35.202","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058077","210905128","10.219.50.26","","","10.219.50.26","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163764","210905037","10.75.41.12","","","10.75.41.12","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158034915","210904771","10.229.51.166","","","10.229.51.166","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064081","210904770","10.132.4.157","","","10.132.4.157","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046692","210904769","10.119.50.15","","","10.119.50.15","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055491","210904498","10.148.1.45","","","10.148.1.45","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056094","210904497","10.107.2.150","","","10.107.2.150","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158139390","210904225","10.82.2.61","","","10.82.2.61","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158044314","210904222","10.29.42.10","","00:40:9D:3A:8B:81","10.29.42.10","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159571","210904224","10.72.90.40","","CC:F4:07:00:72:76","10.72.90.40","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041927","210904226","10.92.4.145","","","10.92.4.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091802","210903933","10.210.31.202","","","10.210.31.202","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020945","210903931","10.198.9.10","","E2:81:1E:E6:90:FF","10.198.9.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158028326","210903783","10.217.36.32","","00:0B:4B:20:1E:92","10.217.36.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158028324","210903498","alcatel-ipphone-00809f54e143.sanef.groupe","","","10.189.60.35","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049510","210903505","10.192.17.142","","","10.192.17.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158042924","210902992","sanefpea015p06","SANEFPEA015P06","C4:00:AD:26:EC:EA","10.142.2.44","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067672","210902905","10.192.12.87","","","10.192.12.87","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158163762","210902736","10.73.90.13","","","10.73.90.13","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056092","210902691","10.22.3.92","","","10.22.3.92","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046504","210902703","10.70.91.30","","00:0D:CA:01:81:D2","10.70.91.30","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158102616","210902383","10.229.21.190","","00:A0:45:38:9A:DB","10.229.21.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160762","210902351","10.112.2.209","","38:63:BB:05:EA:7F","10.112.2.209","","Firmware / Unidentified","HP Firmware","","Printers / Laser","HP LaserJet Laser","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168753","210902361","10.199.90.41","","CC:F4:07:00:72:A9","10.199.90.41","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158143380","210902122","10.211.28.217","","","10.211.28.217","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153365","210902109","10.106.2.141","","","10.106.2.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067669","210902000","10.79.41.193","","00:A0:45:18:52:22","10.79.41.193","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158168750","210901938","10.100.1.122","","","10.100.1.122","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158028323","210901965","10.121.5.110","","","10.121.5.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029526","210901653","c530-ip-36841.sanef.groupe","","","10.149.60.33","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153964","210901445","10.71.91.33","","00:0D:CA:01:32:F3","10.71.91.33","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159762","210901447","10.72.91.47","","00:0D:CA:01:80:EE","10.72.91.47","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158169151","210901113","10.112.1.87","","","10.112.1.87","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158090016","210901116","10.210.1.4","","","10.210.1.4","","Network Operating System / Unidentified","Huawei Quidway Switch","","Networking Device / Switch","Huawei Quidway Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077647","210901117","sanefpea311p80","SANEFPEA311P80","C4:00:AD:2B:90:D6","10.212.26.80","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158033924","210900906","10.217.27.50","","00:0B:4B:50:13:3E","10.217.27.50","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045732","210900909","10.219.50.58","","","10.219.50.58","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046908","210900668","10.187.7.31","","00:0B:4B:70:06:52","10.187.7.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077040","210900666","10.142.2.111","","","10.142.2.111","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029344","210900270","10.212.30.154","","","10.212.30.154","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153363","210900216","10.137.5.49","","00:0B:4B:40:37:9A","10.137.5.49","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130592","210900226","10.191.12.111","","","10.191.12.111","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158152764","210900199","10.97.9.31","","00:0B:4B:20:24:A1","10.97.9.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091798","210900254","10.199.41.25","","00:40:9D:38:69:CC","10.199.41.25","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158060864","210899683","10.81.9.13","","","10.81.9.13","","Network Operating System / Unidentified","Huawei Quidway Switch","","Networking Device / Switch","Huawei Quidway Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158052301","210899667","c530-ip-34046.sanef.groupe","","","10.12.6.13","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158167151","210899705","10.82.17.145","","","10.82.17.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045482","210899538","10.132.1.155","","","10.132.1.155","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158082630","210899551","10.192.3.82","","","10.192.3.82","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158061261","210899432","10.210.61.191","","00:A0:45:92:A4:4A","10.210.61.191","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056088","210899414","10.112.3.153","","","10.112.3.153","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158034907","210899163","10.229.61.5","","","10.229.61.5","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055292","210898762","10.100.2.149","","","10.100.2.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045723","210898368","10.211.40.10","","","10.211.40.10","","Firmware / Unidentified","Huawei Firmware","","Networking Device / Switch","Huawei Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077034","210898364","10.142.3.167","","","10.142.3.167","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130589","210897932","10.217.42.31","","00:0B:4B:70:06:94","10.217.42.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159565","210897925","004DD77890","004DD77890","","10.75.142.54","","Linux / Unidentified","Linux 2.2-2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160954","210897928","10.212.40.145","","","10.212.40.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158082629","210897927","10.182.6.154","","","10.182.6.154","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024744","210897919","10.70.142.12","","00:40:9D:22:E8:11","10.70.142.12","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091796","210897697","10.192.8.91","","","10.192.8.91","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158143373","210897428","10.132.5.160","","","10.132.5.160","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153360","210897109","10.92.7.91","","","10.92.7.91","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083227","210896867","10.199.91.48","","","10.199.91.48","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158131987","210896605","10.212.27.148","","","10.212.27.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158133377","210896214","10.155.2.141","","","10.155.2.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030519","210896202","10.229.24.51","","00:40:9D:6A:F1:64","10.229.24.51","","Firmware / Unidentified","Honeywell Firmware","","Printers / Unidentified","Honeywell Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024341","210896195","10.192.19.143","","","10.192.19.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123786","210895834","10.82.6.141","","","10.82.6.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153953","210895682","10.104.3.10","","00:17:C8:08:6A:AA","10.104.3.10","","Firmware / Unidentified","Kyocera Firmware","","Printers / Unidentified","Kyocera Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158033919","210895689","10.181.10.23","","","10.181.10.23","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158142361","210895627","10.217.23.31","","00:0B:4B:70:04:2E","10.217.23.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051884","210895285","10.100.29.140","","","10.100.29.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024540","210895335","10.211.29.202","","","10.211.29.202","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076812","210895039","sstqucv4","SSTQUCV4","00:90:FB:31:D3:CB","10.103.7.192","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158145361","210894869","10.105.18.144","","","10.105.18.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024539","210894871","10.182.13.145","","","10.182.13.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158018728","210894602","10.79.121.124","","","10.79.121.124","","Unidentified / Unidentified","Axis Network Camera / Axis Network Camera / Alpine Linux / HP Envy Photo Printer / Avocent / Dell iDRAC","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030518","210894603","10.117.2.69","","00:0B:4B:20:36:9D","10.117.2.69","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158131982","210894424","10.189.91.45","","00:0D:CA:01:18:22","10.189.91.45","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158139372","210894418","10.73.91.31","","00:0D:CA:01:80:F3","10.73.91.31","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158043313","210894213","10.147.2.51","","00:0B:4B:70:04:28","10.147.2.51","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158052287","210894205","10.71.190.40","","CC:F4:07:00:6D:5C","10.71.190.40","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158139369","210893960","10.142.1.103","","","10.142.1.103","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125582","210893930","10.89.50.32","","","10.89.50.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002744","210893447","10.210.22.163","","","10.210.22.163","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046897","210893431","10.92.11.141","","","10.92.11.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023945","210893455","10.212.29.143","","","10.212.29.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158139368","210893224","10.137.2.52","","00:0B:4B:40:38:A2","10.137.2.52","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020740","210893188","10.74.90.45","","CC:F4:07:00:39:09","10.74.90.45","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158102603","210893189","10.197.9.33","","00:0B:4B:20:2E:35","10.197.9.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132172","210892924","10.82.14.145","","","10.82.14.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076808","210892922","10.72.42.12","","00:40:9D:73:13:23","10.72.42.12","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158160746","210892620","10.112.2.115","","","10.112.2.115","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030513","210892558","10.29.91.33","","00:0D:CA:01:35:E0","10.29.91.33","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158131978","210892568","10.100.80.12","","","10.100.80.12","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158061254","210892587","10.142.3.100","","","10.142.3.100","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043308","210892082","10.211.33.203","","","10.211.33.203","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130579","210892023","nmonucv2","NMONUCV2","00:90:FB:2A:3B:C9","10.229.17.33","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029701","210892017","10.219.41.12","","00:60:66:01:20:BD","10.219.41.12","","Unidentified / Unidentified","lwIP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158099797","210891932","10.79.131.199","","00:A0:45:18:93:00","10.79.131.199","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091789","210891933","10.229.41.160","","","10.229.41.160","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158050285","210891672","10.217.31.63","","00:0B:4B:40:29:C7","10.217.31.63","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017545","210891588","sanefpea136c12","SANEFPEA136C12","C4:00:AD:36:11:5A","10.22.2.55","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158159546","210891589","10.70.41.21","","","10.70.41.21","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067650","210891591","10.132.3.149","","","10.132.3.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056083","210891590","10.99.51.22","","","10.99.51.22","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056272","210891379","10.92.3.84","","","10.92.3.84","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077428","210891380","beuze-deport-1.sapn.fr","","","10.212.33.205","","Windows / Unidentified","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020737","210891162","10.199.51.23","","","10.199.51.23","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046894","210890955","10.88.3.10","","E2:81:1E:E6:90:FF","10.88.3.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030510","210890956","10.212.23.150","","","10.212.23.150","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158102596","210890754","10.192.16.99","","","10.192.16.99","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158028313","210890366","10.73.41.12","","","10.73.41.12","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158145953","210890326","10.229.67.34","","00:0B:4B:20:2E:9D","10.229.67.34","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158102595","210889818","10.191.17.17","","","10.191.17.17","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158127177","210889816","10.27.1.62","","00:0B:4B:20:2B:B3","10.27.1.62","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158011542","210889819","sanefpea011c03","SANEFPEA011C03","C4:00:AD:2E:63:6A","10.192.15.40","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158019333","210889558","10.217.30.53","","00:0B:4B:40:35:1A","10.217.30.53","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041715","210889556","10.131.5.110","","","10.131.5.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029512","210889406","10.71.41.13","","","10.71.41.13","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123582","210889409","10.189.50.25","","00:20:4A:93:22:24","10.189.50.25","","Network Operating System / Unidentified","Lantronix Firmware","6.1","Networking Device / Unidentified","Lantronix Networking Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158038917","210889408","10.92.1.95","","","10.92.1.95","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077818","210889407","10.79.31.112","","","10.79.31.112","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158042905","210888802","10.211.26.228","","","10.211.26.228","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158153947","210888667","sanefpea430p01","SANEFPEA430P01","88:88:88:88:87:88","10.182.2.44","","Windows / Unidentified","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049488","210888668","10.199.41.35","","00:00:00:00:00:00","10.199.41.35","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023740","210888438","192.168.100.29","","","192.168.100.29","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch / Ricoh Printer","","Printers / Unidentified","Ricoh Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123778","210888434","10.112.2.88","","","10.112.2.88","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051488","210887987","10.27.1.33","","00:0B:4B:70:01:DA","10.27.1.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049486","210887749","10.139.41.24","","00:40:9D:55:FB:09","10.139.41.24","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067641","210887751","10.189.14.10","","","10.189.14.10","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051873","210887750","10.142.2.173","","","10.142.2.173","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030923","210887545","10.212.33.156","","","10.212.33.156","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027940","210887255","10.132.3.84","","","10.132.3.84","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064646","210887148","10.192.7.90","","","10.192.7.90","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024930","210887059","10.121.20.111","","","10.121.20.111","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027536","210887060","10.199.50.17","","00:20:4A:E8:20:DD","10.199.50.17","","Firmware / Unidentified","Lantronix Firmware","","Networking Device / Terminal Server","Lantronix Xport Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158092199","210886799","10.72.41.13","","00:40:9D:39:72:A9","10.72.41.13","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027532","210886480","10.121.14.111","","","10.121.14.111","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083809","210886481","10.211.42.211","","","10.211.42.211","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017935","210886479","10.22.1.152","","","10.22.1.152","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158011539","210886279","10.212.42.150","","","10.212.42.150","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158152746","210886276","polycom64167f60cd72.sanef.groupe","","","10.100.61.14","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158034893","210886095","10.87.9.52","","00:0B:4B:50:13:62","10.87.9.52","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043510","210886097","10.182.10.140","","","10.182.10.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030507","210886096","10.147.1.71","","00:0B:4B:20:16:90","10.147.1.71","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043509","210885718","10.117.2.44","","00:0B:4B:60:0E:EC","10.117.2.44","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158092196","210885655","10.100.11.97","","","10.100.11.97","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027530","210885475","10.106.24.74","","","10.106.24.74","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002543","210885474","10.92.9.91","","","10.92.9.91","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158127172","210885476","10.137.1.59","","00:0B:4B:20:27:31","10.137.1.59","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055271","210885473","10.74.42.30","","","10.74.42.30","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023735","210885325","10.191.16.14","","","10.191.16.14","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046891","210885155","10.212.28.186","","","10.212.28.186","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017539","210884975","10.100.41.13","","00:40:9D:6A:F1:84","10.100.41.13","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125574","210884974","10.82.12.84","","","10.82.12.84","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158042682","210884596","10.211.25.11","","","10.211.25.11","","Firmware / Unidentified","Huawei Firmware","","Networking Device / Switch","Huawei Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056072","210884348","10.99.50.15","","","10.99.50.15","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123573","210884351","10.192.10.146","","","10.192.10.146","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055268","210884224","10.131.4.100","","","10.131.4.100","","Unidentified / Unidentified","Signature System","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054857","210884223","10.70.191.44","","00:0D:CA:01:32:F0","10.70.191.44","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023937","210883997","10.197.7.35","","00:0B:4B:60:0D:5A","10.197.7.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030916","210883998","10.211.31.2","","","10.211.31.2","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029507","210883995","10.22.2.153","","","10.22.2.153","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002541","210883428","c530-ip-34812.sanef.groupe","","","10.119.60.20","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043505","210883398","10.229.31.194","","00:A0:45:38:9A:D2","10.229.31.194","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158143355","210883397","10.89.90.47","","CC:F4:07:00:72:89","10.89.90.47","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029690","210883396","10.79.131.118","","","10.79.131.118","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158028305","210883004","10.217.26.61","","00:0B:4B:70:04:14","10.217.26.61","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043504","210882852","10.219.50.34","","","10.219.50.34","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023935","210882850","10.142.2.85","","","10.142.2.85","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064639","210882692","10.210.21.38","","","10.210.21.38","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054476","210882689","10.105.17.112","","","10.105.17.112","","Unidentified / Unidentified","Axis Network Camera / Axis Network Camera / Alpine Linux / HP Envy Photo Printer / Avocent / Dell iDRAC","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158127169","210882691","10.187.5.39","","00:0B:4B:20:26:B0","10.187.5.39","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158014529","210882690","10.132.1.93","","","10.132.1.93","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030913","210882563","10.212.29.194","","","10.212.29.194","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089597","210882361","10.82.16.147","","","10.82.16.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158019322","210882379","10.218.36.20","","","10.218.36.20","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023933","210882377","10.137.3.58","","00:0B:4B:20:2E:30","10.137.3.58","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158131964","210882169","shdnlsg2","SHDNLSG2","2C:44:FD:2E:7B:4F","10.142.1.26","","Windows / Client","Microsoft Windows 7 (6.1 SP1 Build 7601)","6.1","Unidentified / Unidentified","HP","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158072638","210882168","10.108.50.13","","","10.108.50.13","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056070","210882148","10.112.3.87","","","10.112.3.87","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024923","210881900","10.97.6.35","","00:0B:4B:20:28:CE","10.97.6.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158003341","210881894","10.61.8.113","","","10.61.8.113","","Unidentified / Unidentified","Rockwell Automation","","Industrial Control System (ICS) / Unidentified","Rockwell Automation Industrial Control System (ICS)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027936","210881956","10.198.17.10","","E2:81:1E:E6:90:FF","10.198.17.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158145946","210881733","s0406-hp5.prn.sanef.fr","","","10.100.2.85","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083205","210881735","10.192.1.143","","","10.192.1.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049678","210881508","10.211.36.205","","","10.211.36.205","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158025130","210881509","10.229.51.191","","00:A0:45:38:9B:03","10.229.51.191","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158044280","210881506","10.71.141.13","","00:40:9D:38:67:83","10.71.141.13","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158034886","210881507","10.142.3.142","","","10.142.3.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041705","210881239","10.89.42.14","","00:40:9D:7A:45:FA","10.89.42.14","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158060842","210880970","10.81.4.202","","","10.81.4.202","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046887","210880972","10.182.5.140","","","10.182.5.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158015145","210880973","10.212.38.149","","","10.212.38.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077008","210880840","10.148.3.44","","","10.148.3.44","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123768","210880653","10.72.90.48","","CC:F4:07:00:72:06","10.72.90.48","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023729","210880469","10.132.4.165","","","10.132.4.165","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158052267","210880464","10.92.5.84","","","10.92.5.84","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158038696","210880304","10.191.10.115","","","10.191.10.115","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030911","210880061","10.212.26.147","","","10.212.26.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158092185","210880034","10.217.37.33","","00:0B:4B:20:1D:C2","10.217.37.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024523","210879790","10.210.51.11","","","10.210.51.11","","Firmware / Unidentified","Huawei Firmware","","Networking Device / Switch","Huawei Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158133356","210879788","10.192.17.150","","","10.192.17.150","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158038695","210879783","10.82.2.147","","","10.82.2.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076419","210879486","10.107.7.35","","00:0B:4B:70:04:2C","10.107.7.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029685","210879487","10.210.1.151","","","10.210.1.151","","Firmware / Unidentified","Uninterruptible Power Supply Device","","Power Conditioning Equipment / Uninterruptible Power Supply (UPS)","Uninterruptible Power Supply (UPS)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158072635","210879484","10.70.91.38","","00:0D:CA:01:81:BC","10.70.91.38","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158041700","210879485","10.72.141.17","","00:00:00:00:00:00","10.72.141.17","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051861","210879333","10.192.12.148","","","10.192.12.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076801","210879332","10.189.90.17","","","10.189.90.17","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020916","210879330","10.22.3.100","","","10.22.3.100","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158028296","210879009","10.217.28.44","","00:0B:4B:20:1E:42","10.217.28.44","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024327","210878772","10.211.28.225","","","10.211.28.225","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158082608","210878773","10.229.21.198","","00:A0:45:38:9B:29","10.229.21.198","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017742","210878489","10.79.41.201","","","10.79.41.201","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064637","210878165","10.112.1.96","","","10.112.1.96","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049673","210877996","10.199.90.49","","CC:F4:07:00:27:33","10.199.90.49","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158050264","210877993","10.21.2.26","","","10.21.2.26","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158050265","210877995","10.104.1.113","","","10.104.1.113","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089987","210877865","10.187.12.31","","00:0B:4B:20:28:97","10.187.12.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041698","210877864","10.142.2.119","","","10.142.2.119","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158061237","210877708","10.155.1.18","","","10.155.1.18","","Network Operating System / Unidentified","Huawei Quidway Switch","","Networking Device / Switch","Huawei Quidway Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077006","210877501","10.219.51.11","","","10.219.51.11","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158019318","210877483","10.137.5.59","","00:0B:4B:20:2D:7D","10.137.5.59","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046881","210877225","10.75.190.40","","CC:F4:07:00:3D:9A","10.75.190.40","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055468","210877243","10.97.9.51","","00:0B:4B:40:2E:E0","10.97.9.51","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091781","210876587","10.82.17.153","","","10.82.17.153","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002727","210876765","10.229.27.38","","00:0B:4B:20:1D:DF","10.229.27.38","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076415","210876739","10.132.1.163","","","10.132.1.163","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055467","210876194","10.211.40.204","","","10.211.40.204","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029681","210876225","10.212.31.82","","","10.212.31.82","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024518","210876185","10.101.61.38","","","10.101.61.38","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077804","210876087","10.104.42.10","","00:40:9D:3A:8C:73","10.104.42.10","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158060835","210875780","10.29.50.15","","","10.29.50.15","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041890","210875783","10.203.50.10","","","10.203.50.10","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029679","210875781","10.121.8.190","","00:A0:45:18:B3:A5","10.121.8.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158127161","210875782","10.192.4.80","","","10.192.4.80","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158006330","210875399","10.229.61.32","","","10.229.61.32","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158102579","210875374","polycom64167f614be8.sanef.groupe","","","10.100.60.122","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158033895","210875387","10.217.42.52","","00:0B:4B:40:2E:50","10.217.42.52","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024710","210875358","10.100.2.161","","","10.100.2.161","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051470","210875198","10.182.7.83","","","10.182.7.83","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158006329","210875191","10.149.90.43","","CC:F4:07:00:95:F7","10.149.90.43","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056064","210875168","10.142.3.179","","","10.142.3.179","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020717","210875008","10.212.40.153","","","10.212.40.153","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076412","210874831","10.91.9.190","","00:A0:45:18:52:0F","10.91.9.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051468","210874683","10.132.5.168","","","10.132.5.168","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158006138","210874682","10.117.1.32","","00:0B:4B:70:04:07","10.117.1.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030905","210874684","10.191.13.201","","","10.191.13.201","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158052264","210874510","10.72.91.55","","00:0D:CA:01:81:F3","10.72.91.55","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158058042","210874511","10.200.3.14","","00:17:C8:2E:4E:B4","10.200.3.14","","Firmware / Unidentified","Kyocera Firmware","","Printers / Unidentified","Kyocera Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002725","210874508","8058s-0c89f9.sanef.groupe","","","10.12.6.133","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043491","210874342","10.92.7.149","","","10.92.7.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130557","210874223","10.212.28.143","","","10.212.28.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046875","210874222","10.211.21.10","","","10.211.21.10","","Firmware / Unidentified","Huawei Firmware","","Networking Device / Switch","Huawei Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130556","210874221","10.89.51.15","","","10.89.51.15","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027931","210874076","10.155.2.149","","","10.155.2.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054467","210873902","10.217.23.58","","00:0B:4B:20:32:E7","10.217.23.58","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077411","210873894","10.192.20.140","","","10.192.20.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158038897","210873874","10.82.7.141","","","10.82.7.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132152","210873887","10.192.8.144","","","10.192.8.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158133354","210873883","10.181.10.203","","","10.181.10.203","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058039","210873498","10.22.2.87","","","10.22.2.87","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158025121","210873473","10.72.42.21","","00:40:9D:38:6A:1B","10.72.42.21","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051853","210873040","10.211.29.210","","","10.211.29.210","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043488","210872923","10.73.91.39","","00:0D:CA:01:80:E4","10.73.91.39","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158077797","210872925","10.117.3.33","","00:0B:4B:20:2B:AB","10.117.3.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158028293","210872924","10.79.121.132","","","10.79.121.132","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045684","210872683","10.147.2.59","","00:0B:4B:70:04:75","10.147.2.59","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158072628","210872586","rmaldep3","RMALDEP3","50:65:F3:34:F4:70","10.22.1.25","","Windows / Client","Microsoft Windows 7 (6.1 SP1 Build 7601)","6.1","Unidentified / Unidentified","HP","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020713","210872427","10.189.91.53","","00:0D:CA:01:18:42","10.189.91.53","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158132149","210872426","10.105.41.14","","00:40:9D:6A:92:04","10.105.41.14","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055461","210872357","10.60.2.151","","","10.60.2.151","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158042886","210872115","10.71.190.48","","CC:F4:07:00:72:D9","10.71.190.48","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023714","210872032","10.74.91.30","","","10.74.91.30","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020908","210872086","10.210.22.186","","","10.210.22.186","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027514","210871758","10.108.1.110","","","10.108.1.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045458","210871767","10.137.2.60","","00:0B:4B:20:27:11","10.137.2.60","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158082597","210871772","10.142.1.143","","","10.142.1.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020710","210871592","10.210.11.204","","","10.210.11.204","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055458","210871599","10.212.29.152","","","10.212.29.152","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158060830","210871431","10.82.15.80","","","10.82.15.80","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089588","210871021","10.219.41.23","","00:60:66:01:23:14","10.219.41.23","","Unidentified / Unidentified","lwIP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158072625","210870985","10.191.8.110","","","10.191.8.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158130551","210870996","10.211.33.217","","","10.211.33.217","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158003326","210870980","10.70.42.21","","00:40:9D:36:14:1B","10.70.42.21","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055247","210870818","10.97.1.33","","00:0B:4B:60:0E:86","10.97.1.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158015138","210870575","10.112.2.149","","","10.112.2.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067619","210870778","10.229.41.194","","00:A0:45:38:9B:1F","10.229.41.194","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064044","210870735","10.197.11.50","","00:0B:4B:40:37:3B","10.197.11.50","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158127156","210870582","10.142.3.108","","","10.142.3.108","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023710","210870285","10.79.131.207","","00:A0:45:37:E4:EA","10.79.131.207","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020704","210870131","10.211.28.1","","","10.211.28.1","","Firmware / Unidentified","Xerox Firmware","","Printers / Multi-Function Printer (MFP)","Xerox Document Centre Multi-Function Printer (MFP)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158021314","210870129","10.182.15.82","","","10.182.15.82","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158014513","210870133","10.217.34.33","","00:0B:4B:70:02:4A","10.217.34.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076405","210870128","10.100.32.155","","","10.100.32.155","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158123753","210870132","10.212.35.144","","","10.212.35.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023914","210869999","10.199.60.11","","","10.199.60.11","","Firmware / Unidentified","AudioCodes Firmware","","Networking Device / Unidentified","AudioCodes Networking Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045457","210869998","10.182.2.147","","","10.182.2.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017525","210869889","10.132.3.158","","","10.132.3.158","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158021311","210869766","10.71.42.12","","00:40:9D:4E:87:11","10.71.42.12","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017524","210869768","10.91.2.14","","","10.91.2.14","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027703","210869624","10.92.3.143","","","10.92.3.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077608","210869118","10.212.23.159","","","10.212.23.159","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002526","210869089","10.103.50.18","","00:20:4A:AD:BD:5B","10.103.50.18","","Network Operating System / Unidentified","Lantronix CoBox/UDS","","Networking Device / Terminal Server","Lantronix Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046463","210869060","10.154.2.140","","","10.154.2.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089586","210869071","10.192.16.145","","","10.192.16.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024699","210868615","10.189.51.13","","","10.189.51.13","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158028286","210868618","10.217.30.35","","00:0B:4B:20:1D:B5","10.217.30.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158125551","210868410","10.181.3.200","","","10.181.3.200","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041877","210868194","10.27.2.37","","00:0B:4B:70:01:EC","10.27.2.37","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158033878","210868198","10.139.90.13","","","10.139.90.13","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020516","210868193","10.22.3.149","","","10.22.3.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083786","210868196","10.73.41.20","","","10.73.41.20","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045452","210868197","10.88.16.10","","E2:81:1E:E6:90:FF","10.88.16.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158127149","210868026","10.79.31.195","","00:A0:45:18:24:FD","10.79.31.195","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064623","210867971","10.229.21.150","","","10.229.21.150","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051458","210867900","pvp19754.sanef-int.adds","PVP19754","00:0B:AB:73:34:68","10.192.14.30","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158034470","210867899","10.191.18.201","","","10.191.18.201","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158063627","210867901","8068s-033394.sanef.groupe","","","10.206.61.6","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049662","210867673","10.112.1.150","","","10.112.1.150","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046864","210867503","10.76.42.12","","00:40:9D:6A:F1:AA","10.76.42.12","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158044257","210867486","10.199.42.13","","00:40:9D:3B:0D:4B","10.199.42.13","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi PortServer TS Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046646","210867494","192.168.100.55","","","192.168.100.55","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch / Ricoh Printer","","Printers / Unidentified","Ricoh Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041875","210867478","10.21.1.211","","","10.21.1.211","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046258","210867085","10.209.3.11","","00:17:C8:08:69:3D","10.209.3.11","","Firmware / Unidentified","Kyocera Firmware","","Printers / Unidentified","Kyocera Printers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045675","210867066","10.142.2.154","","","10.142.2.154","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158099768","210866985","10.99.41.12","","00:40:9D:3D:B5:2B","10.99.41.12","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064036","210866926","10.107.1.111","","","10.107.1.111","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077601","210866776","10.212.31.162","","","10.212.31.162","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077785","210866782","10.229.27.61","","00:0B:4B:70:01:D9","10.229.27.61","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158038686","210866766","10.192.5.83","","","10.192.5.83","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158118356","210866635","10.132.2.164","","","10.132.2.164","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089973","210866090","10.121.23.191","","00:A0:45:18:90:7A","10.121.23.191","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045673","210866100","10.188.1.10","","","10.188.1.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158006318","210865959","10.22.1.104","","","10.22.1.104","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051455","210865963","10.211.41.16","","","10.211.41.16","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023707","210865964","10.229.61.192","","00:A0:45:38:9D:9D","10.229.61.192","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158015128","210865867","10.121.11.110","","","10.121.11.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083783","210865869","10.212.41.147","","","10.212.41.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046862","210865736","10.108.2.81","","","10.108.2.81","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029309","210865737","10.182.7.149","","","10.182.7.149","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158012345","210865735","10.87.6.32","","00:0B:4B:20:2E:54","10.87.6.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020901","210865549","10.117.1.55","","00:0B:4B:40:37:98","10.117.1.55","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158025099","210865507","10.200.32.40","","","10.200.32.40","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029490","210865407","10.152.50.15","","","10.152.50.15","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089972","210865248","10.92.8.145","","","10.92.8.145","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064034","210865249","10.147.1.51","","00:0B:4B:70:02:04","10.147.1.51","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023908","210865247","10.91.10.205","","","10.91.10.205","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027503","210865250","10.191.15.110","","","10.191.15.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158014508","210865203","c530-ip-35823.sanef.groupe","","","10.89.60.42","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077781","210865113","10.138.4.30","","","10.138.4.30","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024507","210865011","10.137.1.35","","00:0B:4B:20:2B:CA","10.137.1.35","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158044252","210865012","10.212.28.166","","","10.212.28.166","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049660","210864887","10.70.190.48","","CC:F4:07:00:5A:B0","10.70.190.48","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045672","210864888","10.192.21.143","","","10.192.21.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029664","210864890","10.211.23.10","","","10.211.23.10","","Firmware / Unidentified","Huawei Firmware","","Networking Device / Switch","Huawei Switch","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067608","210864532","10.192.9.141","","","10.192.9.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051842","210864533","10.217.25.36","","00:0B:4B:20:2E:78","10.217.25.36","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041872","210864382","10.82.10.82","","","10.82.10.82","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043476","210864336","10.22.2.106","","","10.22.2.106","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027502","210864113","10.182.16.85","","","10.182.16.85","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158006317","210864023","10.74.142.12","","00:40:9D:6A:F1:10","10.74.142.12","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067606","210864100","10.211.30.201","","","10.211.30.201","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064032","210864076","8058s-172a6d.sanef.groupe","","","10.100.6.135","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158061222","210864106","10.229.51.154","","","10.229.51.154","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"157996737","210864032","10.79.121.200","","00:A0:45:18:A3:1D","10.79.121.200","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158102562","210863680","10.73.91.55","","00:0D:CA:01:6A:D7","10.73.91.55","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158125548","210863686","10.210.27.55","","00:0B:4B:40:2F:BD","10.210.27.55","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020515","210863612","pcb13587.sanef.groupe","","","10.100.38.28","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","VRF_INCONNUE,Forescout","0.0" +"158017514","210863360","10.147.2.81","","00:0B:4B:20:2B:F0","10.147.2.81","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046860","210863334","10.71.191.42","","00:0D:CA:01:81:AB","10.71.191.42","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158029662","210863336","10.210.21.22","","","10.210.21.22","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017716","210863227","10.191.2.111","","","10.191.2.111","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023902","210863079","10.218.28.60","","","10.218.28.60","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024303","210863075","10.142.1.160","","","10.142.1.160","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041870","210863078","10.212.29.174","","","10.212.29.174","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045670","210863076","10.155.50.11","","","10.155.50.11","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064620","210862883","10.72.90.17","","","10.72.90.17","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158012343","210862893","10.137.3.39","","00:0B:4B:20:2E:28","10.137.3.39","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089580","210862746","10.82.15.144","","","10.82.15.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158072614","210862747","10.112.2.167","","","10.112.2.167","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041868","210862745","10.61.3.190","","00:A0:45:18:3C:1C","10.61.3.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158033873","210862604","pcb18106.sanef.groupe","","","10.101.31.131","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","VRF_INCONNUE,Forescout","0.0" +"158083779","210862471","10.211.34.209","","","10.211.34.209","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020896","210862303","10.142.3.125","","","10.142.3.125","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045669","210862304","10.197.21.38","","00:0B:4B:70:06:FC","10.197.21.38","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158061219","210862305","10.219.50.18","","","10.219.50.18","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045449","210862235","10.89.41.15","","00:40:9D:38:6A:43","10.89.41.15","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055445","210862208","10.118.2.67","","","10.118.2.67","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058231","210862207","10.97.4.33","","00:0B:4B:70:03:8D","10.97.4.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002521","210862100","10.217.34.58","","00:0B:4B:50:06:25","10.217.34.58","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058230","210862099","10.81.3.110","","","10.81.3.110","","Unidentified / Unidentified","Rockwell Automation","","Industrial Control System (ICS) / Unidentified","Rockwell Automation Industrial Control System (ICS)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051451","210862035","10.212.36.152","","","10.212.36.152","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027696","210861969","10.132.4.148","","","10.132.4.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056044","210861833","10.107.2.88","","","10.107.2.88","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055236","210861694","10.192.17.84","","","10.192.17.84","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058229","210861690","10.92.4.89","","","10.92.4.89","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023700","210861570","10.91.4.12","","","10.91.4.12","","Network Operating System / Unidentified","Cisco Systems PIX OS","","Network Security Device / Firewall Device","Cisco Systems Firewall Services Module (FWSM) Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051840","210861207","10.212.25.155","","","10.212.25.155","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054836","210861098","10.229.57.31","","00:0B:4B:20:1D:B6","10.229.57.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002715","210860978","10.127.17.33","","00:0B:4B:20:17:1B","10.127.17.33","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029305","210860927","10.191.21.200","","","10.191.21.200","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029304","210860925","10.70.90.42","","CC:F4:07:00:72:47","10.70.90.42","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067603","210860857","10.99.91.32","","00:0D:CA:01:32:70","10.99.91.32","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077780","210860858","c530-ip-33034.sanef.groupe","","","10.154.61.0","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049462","210860662","10.229.21.182","","00:A0:45:90:C7:83","10.229.21.182","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027500","210860660","10.73.42.36","","00:00:00:00:00:00","10.73.42.36","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046642","210860612","10.211.28.209","","","10.211.28.209","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054449","210860548","10.22.3.84","","","10.22.3.84","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049655","210860407","10.106.2.86","","","10.106.2.86","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158016112","210860406","10.79.41.114","","","10.79.41.114","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158019294","210860408","pvp19340.sanef-int.adds","PVP19340","","10.192.12.47","","Windows / Unidentified","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158018919","210860304","10.121.4.111","","","10.121.4.111","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027907","210860204","aamnlsg1","AAMNLSG1","2C:44:FD:37:4A:21","10.182.5.25","","Windows / Client","Microsoft Windows 7 (6.1 SP1 Build 7601)","6.1","Unidentified / Unidentified","HP","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158038877","210860099","10.71.90.44","","","10.71.90.44","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158099765","210859988","10.219.50.50","","","10.219.50.50","","Firmware / Unidentified","JVCKENWOOD Firmware","","Audio and Visual Devices / Audio Amplifier","JVCKENWOOD RX-8000VBK Audio Amplifier","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024504","210859987","10.142.2.103","","","10.142.2.103","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056226","210859942","10.217.26.79","","00:0B:4B:20:2E:81","10.217.26.79","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056041","210859848","10.149.50.26","","00:20:4A:B1:6A:6F","10.149.50.26","","Firmware / Unidentified","Lantronix EZWebCon","","Industrial Networking / Industrial Serial Device Server","Lantronix MSS100 Industrial Serial Device Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"157985145","210859847","10.75.142.10","","","10.75.142.10","","Firmware / Unidentified","Lantronix Firmware","","Networking Device / Unidentified","Lantronix Networking Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045445","210859846","10.28.2.10","","02:1F:82:C9:9D:F6","10.28.2.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029485","210859850","10.187.6.55","","00:0B:4B:50:0F:07","10.187.6.55","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158085976","210859704","10.212.30.146","","","10.212.30.146","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041864","210859703","10.210.57.39","","00:0B:4B:20:1F:93","10.210.57.39","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083183","210859642","10.137.5.39","","00:0B:4B:20:27:C1","10.137.5.39","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158092165","210859596","10.141.2.110","","","10.141.2.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158041678","210859462","10.82.17.112","","","10.82.17.112","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158016111","210859360","10.132.1.144","","","10.132.1.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158015120","210859239","10.112.3.144","","","10.112.3.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064613","210859240","10.211.38.206","","","10.211.38.206","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076779","210859132","10.192.2.143","","","10.192.2.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055234","210859074","polycom64167f9e8f78.sanef.groupe","","","10.100.60.28","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054834","210859075","10.199.41.17","","00:00:00:00:00:00","10.199.41.17","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027905","210858966","10.97.8.34","","00:0B:4B:70:04:0E","10.97.8.34","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017510","210858837","10.72.91.39","","00:0D:CA:01:84:03","10.72.91.39","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158023897","210858810","10.81.7.202","","","10.81.7.202","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046640","210858812","10.104.2.89","","","10.104.2.89","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158063613","210858811","10.100.2.141","","","10.100.2.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058227","210858813","10.142.3.159","","","10.142.3.159","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051835","210858707","10.217.41.39","","00:0B:4B:50:06:DF","10.217.41.39","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046857","210858706","10.212.39.147","","","10.212.39.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045444","210858705","10.72.41.17","","00:00:00:00:00:00","10.72.41.17","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027904","210858542","10.182.6.143","","","10.182.6.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083180","210858512","10.132.5.104","","","10.132.5.104","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158050246","210858078","10.155.2.82","","","10.155.2.82","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158118348","210858046","10.92.7.81","","","10.92.7.81","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158082580","210857852","10.191.12.16","","","10.191.12.16","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043468","210857863","10.199.91.40","","00:0D:CA:01:1B:E7","10.199.91.40","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055443","210857869","10.210.7.36","","00:0B:4B:20:1D:C3","10.210.7.36","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077777","210857737","10.192.19.80","","","10.192.19.80","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158085974","210857738","10.212.26.169","","","10.212.26.169","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043467","210857735","10.11.90.40","","CC:F4:07:00:6C:C7","10.11.90.40","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083775","210857642","10.82.5.142","","","10.82.5.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054832","210857531","10.70.141.10","","","10.70.141.10","","Unidentified / Unidentified","Cabletron SmartSTACK / Vertical Horizon Stack / Cisco IP Phone / magicolor 3300 Printer","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027496","210857532","10.229.21.215","","","10.229.21.215","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027690","210857423","10.192.8.83","","","10.192.8.83","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158044246","210857319","c530-ip-35233.sanef.groupe","","","10.29.60.22","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158011508","210856906","10.105.18.83","","","10.105.18.83","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091762","210856848","10.79.121.116","","","10.79.121.116","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158018696","210856884","10.117.2.61","","00:0B:4B:40:3A:41","10.117.2.61","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058022","210856789","10.22.1.168","","","10.22.1.168","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027903","210856893","10.211.29.21","","","10.211.29.21","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017508","210856551","10.182.12.144","","","10.182.12.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002714","210856425","10.189.91.37","","00:0D:CA:01:18:48","10.189.91.37","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"157998540","210856305","10.217.21.37","","00:0B:4B:20:22:9C","10.217.21.37","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067595","210856231","10.72.41.31","","00:00:00:00:00:00","10.72.41.31","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055440","210856188","10.147.2.38","","00:0B:4B:20:17:46","10.147.2.38","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158015539","210856187","10.142.2.90","","","10.142.2.90","","Firmware / Unidentified","Advantech Firmware","","Networking Device / Unidentified","Advantech Networking Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158034460","210856186","10.142.1.94","","","10.142.1.94","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029480","210856185","10.89.50.24","","","10.89.50.24","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023893","210856019","10.210.22.148","","","10.210.22.148","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089574","210856017","10.73.90.50","","CC:F4:07:00:72:0D","10.73.90.50","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158021303","210855884","10.197.8.55","","00:0B:4B:70:01:D2","10.197.8.55","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045439","210855821","10.137.2.44","","00:0B:4B:20:2E:A8","10.137.2.44","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158061209","210855591","10.219.14.11","","","10.219.14.11","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046448","210855586","10.82.13.142","","","10.82.13.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055229","210855411","10.182.1.70","","","10.182.1.70","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158072606","210855410","10.100.13.52","","00:A0:45:37:E6:63","10.100.13.52","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054444","210855315","10.92.10.25","","","10.92.10.25","","Windows / Client","Microsoft Windows 10","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"157996935","210855316","10.108.90.10","","","10.108.90.10","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064604","210855317","10.112.2.106","","","10.112.2.106","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058020","210855212","10.74.90.20","","","10.74.90.20","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158014497","210855171","10.79.131.191","","00:A0:45:18:A2:C7","10.79.131.191","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158050245","210855185","10.229.41.150","","","10.229.41.150","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056032","210855160","10.70.14.10","","","10.70.14.10","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054830","210855178","10.142.3.91","","","10.142.3.91","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158018691","210854950","10.211.31.192","","00:A0:45:90:C7:98","10.211.31.192","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030468","210854915","10.212.33.186","","","10.212.33.186","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046246","210854835","10.132.3.104","","","10.132.3.104","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158038865","210854692","10.217.31.55","","00:0B:4B:20:1F:DD","10.217.31.55","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024897","210854597","10.99.51.14","","","10.99.51.14","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051830","210854471","10.199.51.15","","","10.199.51.15","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158007334","210854410","polycom_64167f063af1.sanef.groupe","","","10.101.61.109","","Unidentified / Unidentified","Unknown OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158018690","210854356","10.89.91.45","","00:0D:CA:01:33:98","10.89.91.45","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158014739","210854358","sanefpea122c61","SANEFPEA122C61","C4:00:AD:15:2B:ED","10.212.29.61","","Windows / Unidentified","Microsoft Windows","","Unidentified / Unidentified","Advantech","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158085971","210854240","10.92.2.140","","","10.92.2.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158072605","210854185","10.189.42.11","","00:40:9D:4D:5C:10","10.189.42.11","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051829","210854134","10.212.23.140","","","10.212.23.140","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158011943","210853915","10.192.15.84","","","10.192.15.84","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158063611","210853917","10.219.91.35","","","10.219.91.35","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020504","210853756","10.87.17.38","","00:0B:4B:20:27:60","10.87.17.38","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002514","210853652","10.139.51.15","","","10.139.51.15","","Firmware / Unidentified","Corero Firmware","","Network Security Device / Firewall Device","Corero Firewall Device","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023890","210853628","10.211.26.218","","","10.211.26.218","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017885","210853627","10.191.16.207","","","10.191.16.207","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158007333","210853625","10.27.1.53","","00:0B:4B:20:2E:20","10.27.1.53","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023696","210853513","10.79.21.200","","00:A0:45:18:24:C1","10.79.21.200","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158082574","210853239","10.112.2.92","","","10.112.2.92","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077776","210853238","10.92.1.143","","","10.92.1.143","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051443","210853096","10.12.90.40","","CC:F4:07:00:72:39","10.12.90.40","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076981","210853058","10.139.42.15","","","10.139.42.15","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023889","210852974","10.70.191.60","","00:0D:CA:01:32:04","10.70.191.60","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017504","210853065","pcm15280.sanef.groupe","PCM15280","84:A9:3E:70:0A:76","10.217.31.16","","Windows / Unidentified","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076775","210853026","pcb17135.sanef.groupe","PCB17135","C8:5A:CF:C4:58:4D","10.106.31.0","","Windows / Unidentified","Microsoft Windows","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout,VRF_INCONNUE","0.0" +"158020690","210852787","10.27.1.39","","00:0B:4B:20:27:6E","10.27.1.39","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158067594","210852671","10.199.41.40","","00:00:00:00:00:00","10.199.41.40","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158014738","210852540","10.189.41.13","","","10.189.41.13","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089571","210852275","10.212.33.168","","","10.212.33.168","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158011503","210852274","10.72.190.16","","","10.72.190.16","","Unidentified / Unidentified","NetBSD 1.3-1.3.3 / VxWorks Based Device / Nortel Switch","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158014737","210852225","10.72.190.46","","CC:F4:07:00:73:4A","10.72.190.46","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023695","210852167","10.132.3.89","","","10.132.3.89","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158014496","210851932","10.121.17.113","","","10.121.17.113","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158042644","210851405","10.192.16.91","","","10.192.16.91","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158014736","210851406","10.229.71.196","","00:A0:45:38:9B:CF","10.229.71.196","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158014912","210851356","10.199.50.32","","","10.199.50.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058221","210851291","10.121.16.190","","00:A0:45:18:52:3A","10.121.16.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076387","210851293","10.192.7.141","","","10.192.7.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056221","210851296","10.229.71.152","","","10.229.71.152","","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","Unknown","Unknown","ComPack(405002.009) Rev: 1.05, Jul 6 2011 OS:2.5.2","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158099758","210851159","10.87.14.32","","00:0B:4B:70:01:EB","10.87.14.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"157998534","210851160","10.100.11.152","","","10.100.11.152","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029654","210851158","10.22.1.156","","","10.22.1.156","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158052248","210851004","10.212.42.154","","","10.212.42.154","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"157996932","210850874","10.182.10.144","","","10.182.10.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024498","210850875","10.211.43.206","","","10.211.43.206","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158019288","210850815","10.117.2.48","","00:0B:4B:20:33:49","10.117.2.48","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064022","210850753","10.142.1.81","","","10.142.1.81","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002510","210850746","10.92.9.95","","","10.92.9.95","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158099757","210850758","10.147.1.75","","00:0B:4B:40:2E:4C","10.147.1.75","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158015111","210850588","10.137.2.31","","00:0B:4B:20:27:53","10.137.2.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023887","210850597","10.192.11.83","","","10.192.11.83","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158056031","210850604","10.211.26.201","","","10.211.26.201","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"157998532","210850407","10.191.16.110","","","10.191.16.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051828","210850339","10.212.28.191","","","10.212.28.191","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158011942","210850335","10.197.8.31","","00:0B:4B:20:1A:21","10.197.8.31","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051827","210850334","10.142.2.204","","34:64:A9:6E:C8:A5","10.142.2.204","","Firmware / Unidentified","HP Firmware","","Printers / Laser","HP LaserJet Laser","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051439","210850332","10.79.21.110","","","10.79.21.110","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158011941","210850333","10.82.12.88","","","10.82.12.88","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043262","210850067","10.99.50.19","","","10.99.50.19","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158003308","210850074","10.181.15.190","","00:A0:45:18:B5:52","10.181.15.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158050242","210849751","10.70.191.48","","00:0D:CA:01:33:65","10.70.191.48","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158055225","210849720","10.229.31.200","","","10.229.31.200","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076979","210849592","004DD777BG","004DD777BG","","10.74.42.53","","Linux / Unidentified","Linux 2.2-2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"157998531","210849510","10.211.31.6","","","10.211.31.6","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023694","210849489","10.22.2.157","","","10.22.2.157","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054826","210849478","10.72.42.33","","00:00:00:00:00:00","10.72.42.33","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024894","210849048","10.79.131.122","","","10.79.131.122","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158046632","210848976","10.218.40.42","","","10.218.40.42","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158014909","210848861","10.217.26.65","","00:0B:4B:70:04:51","10.217.26.65","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158023692","210848782","10.105.17.116","","","10.105.17.116","","Unidentified / Unidentified","Axis Network Camera / Axis Network Camera / Alpine Linux / HP Envy Photo Printer / Avocent / Dell iDRAC","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158050239","210848777","10.89.91.33","","00:0D:CA:01:32:2E","10.89.91.33","","Linux / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158019287","210848754","10.187.5.52","","00:0B:4B:40:2F:77","10.187.5.52","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077773","210848756","10.191.4.190","","00:A0:45:18:24:16","10.191.4.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158016101","210848650","10.212.29.198","","","10.212.29.198","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083176","210848557","10.137.3.62","","00:0B:4B:20:2E:66","10.137.3.62","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158012330","210848532","10.219.50.38","","","10.219.50.38","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089964","210848529","10.82.17.100","","","10.82.17.100","","Unidentified / Unidentified","EulerOS / Ubuntu / Fedora / Tiny Core Linux / Linux 3.x / IBM / FortiSOAR","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158011939","210848531","10.132.1.97","","","10.132.1.97","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002506","210848528","10.70.91.42","","00:0D:CA:01:83:B4","10.70.91.42","","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","Unknown","Unknown","Tait Communications, TB9300/TB7300, DMR Base Station, QBC30BSM, Version: dmr-3.05.00.0007","","","","","","","","","","","","","","","Unknown","4","VM,GAV","Forescout","0.0" +"158027893","210848331","10.210.21.160","","","10.210.21.160","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158091757","210848110","10.97.7.32","","00:0B:4B:70:04:93","10.97.7.32","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058017","210848114","10.211.36.209","","","10.211.36.209","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158058218","210848109","10.61.9.111","","","10.61.9.111","","Unidentified / Unidentified","Rockwell Automation","","Industrial Control System (ICS) / Unidentified","Rockwell Automation Industrial Control System (ICS)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158044238","210848113","10.112.3.91","","","10.112.3.91","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158045436","210847973","10.181.6.150","","","10.181.6.150","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158060808","210847758","10.198.21.10","","","10.198.21.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158033865","210847735","10.71.141.19","","00:40:9D:89:4A:0A","10.71.141.19","","Firmware / Unidentified","Digi Firmware","","Networking Device / Terminal Server","Digi Digi One SP Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077583","210847736","10.229.51.195","","00:A0:45:37:A8:43","10.229.51.195","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043462","210847732","10.100.2.89","","","10.100.2.89","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158018914","210847628","10.75.90.41","","CC:F4:07:00:3D:76","10.75.90.41","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020687","210847630","10.132.5.89","","","10.132.5.89","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158063608","210847629","10.81.5.201","","","10.81.5.201","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158033864","210847571","10.142.3.147","","","10.142.3.147","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158024677","210847552","10.212.38.154","","","10.212.38.154","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158015110","210847546","10.182.5.144","","","10.182.5.144","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158002505","210847532","10.100.50.10","","","10.100.50.10","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054442","210847525","10.72.90.52","","CC:F4:07:00:6C:F7","10.72.90.52","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158043261","210847319","10.192.2.80","","","10.192.2.80","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158007330","210847111","10.92.5.141","","","10.92.5.141","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051825","210846965","10.91.6.20","","","10.91.6.20","","Embedded / Unidentified","Wind River VxWorks","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158018689","210846966","10.111.3.190","","00:A0:45:18:3D:56","10.111.3.190","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158030885","210846967","10.212.26.151","","","10.212.26.151","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158077389","210846968","ndoz2ecv3","NDOZ2ECV3","00:90:FB:34:C0:D3","10.217.40.35","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158019286","210846670","10.191.10.191","","00:A0:45:9E:F7:A4","10.191.10.191","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158007329","210846669","10.82.3.142","","","10.82.3.142","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158020882","210846671","10.210.51.202","","","10.210.51.202","","Linux / Unidentified","Ubuntu / Tiny Core Linux / Linux 2.6.x","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051824","210846469","10.11.50.13","","","10.11.50.13","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / IBM ASM / Supermicro","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158089565","210846272","10.192.12.152","","","10.192.12.152","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158076385","210846181","10.229.21.203","","","10.229.21.203","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083770","210846176","10.22.3.104","","","10.22.3.104","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017883","210846038","10.217.28.49","","00:0B:4B:70:07:02","10.217.28.49","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158082570","210845994","10.79.44.153","","","10.79.44.153","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158051436","210845908","10.139.41.11","","00:00:00:00:00:00","10.139.41.11","","Firmware / Unidentified","Server Technology Firmware","","Power Conditioning Equipment / Power Adapters or Inverters","Server Technology Sentry Remote Power Manager Power Adapters or Inverters","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158064597","210845914","10.211.28.229","","","10.211.28.229","","Unidentified / Unidentified","USR/Linksys Wireless Access Point","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158017704","210845746","10.112.1.100","","","10.112.1.100","","Linux / Unidentified","armv7l Linux/5.4.59-v7","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158034454","210845617","10.21.2.113","","","10.21.2.113","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158102550","210845342","10.199.90.53","","CC:F4:07:00:5A:B2","10.199.90.53","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158054439","210845268","10.187.12.36","","00:0B:4B:60:0E:04","10.187.12.36","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158029652","210845179","10.89.50.11","","","10.89.50.11","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Management Module / Microsoft CIFS Server","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158034453","210845182","10.210.1.191","","00:A0:45:37:A7:37","10.210.1.191","","Firmware / Unidentified","Phoenix Contact Firmware","","Industrial Control System (ICS) / Programmable Logic Controller (PLC)","Phoenix Contact Inline Controller Programmable Logic Controller (PLC)","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158034853","210845090","10.219.51.15","","","10.219.51.15","","Unidentified / Unidentified","Unidentified","","Unidentified / Unidentified","Unidentified","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158049644","210845089","10.189.90.43","","CC:F4:07:00:72:84","10.189.90.43","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158027679","210845087","10.75.190.44","","CC:F4:07:00:3D:BD","10.75.190.44","","Linux / Unidentified","Linux 2.6","","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158007328","210845060","10.107.8.31","","","10.107.8.31","","Linux / Unidentified","Avocent Terminal Servers","","Networking Device / Terminal Server","Vertiv Terminal Server","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" +"158083768","210845061","10.137.5.63","","00:0B:4B:20:27:8B","10.137.5.63","","Unidentified / Unidentified","Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / Integrated Dell Remote Access Controller / Linux 2.4-2.6 / Embedded Device / F5 Networks Big-IP / NetBotz Appliance / Fabric OS","","Unidentified / Unidentified","","","","","","","","","","","","","","","","","4","VM,GAV","Forescout","0.0" diff --git a/inputs/AI_Asset_List_sanef-km1_20260422.csv b/inputs/AI_Asset_List_sanef-km1_20260422.csv new file mode 100644 index 0000000..af2c49d --- /dev/null +++ b/inputs/AI_Asset_List_sanef-km1_20260422.csv @@ -0,0 +1,3216 @@ +"Asset ID","Host ID","Asset Name","NetBIOS Name","MAC Address","IPV4 Address","IPV6 Address","Operating System Category","Operating System","Operating System Version","Hardware Category","Hardware","CPU Count","CPU Speed (MHz)","CPU Description","Total Memory (MB)","BIOS Description","BIOS Serial Number","BIOS Asset Tag","Timezone","Last System Boot","Last Logged On User","Inventory Source","Agent ID","Inventory Created On","Inventory Last Updated On","Architecture","CriticalityScore","Modules","Tags","TruRisk Score" +"392620270","358316603","VRSIGAFRT1","","00:50:56:9c:95:f8","10.45.2.30","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 9f d5 6a 2a 5e f9-44 65 bf 9d 87 fb 80 e4","No Asset Tag","'+02:00","2026-02-05T16:20:10.000+02:00","cybsupapp","Cloud Agent","8d3fa3dd-efb7-49a7-be36-fb674f82e453","2026-01-16T11:07:44.000+02:00","2026-04-22T11:11:27.000+02:00","x86_64","3","SCA,VM,PM,GAV","Recette,SIG,OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","209.0" +"397923227","360470619","PCB21090.sanef.groupe","PCB21090","E4:60:17:CA:40:27","10.205.0.231,192.168.1.80","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764MM","","'+02:00","2026-04-17T15:33:25.000+02:00","SANEF\SLAMA-ext","Cloud Agent","5c828d65-24e5-408d-87e1-0726d5cd8356","2026-02-05T13:12:17.000+02:00","2026-04-22T10:33:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"397149291","360233116","vrtrabwaz1.sanef-rec.fr","","00:50:56:9c:e7:8b","10.45.2.122","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 17 40 34 86 d1 1d-3c 88 67 37 0c 23 a0 61","No Asset Tag","'+02:00","2026-02-03T15:02:51.000+02:00","cybadmsys","Cloud Agent","57f46af5-a757-4507-9732-85f9416913e8","2026-02-03T15:03:11.000+02:00","2026-04-22T11:02:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Waze,DSI,Recette,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-NGINX DYN,BDD-ELA DYN","141.0" +"395373817","359431292","PCB21088.sanef.groupe","PCB21088","D0:AD:08:AA:50:A1","192.168.1.3,10.101.243.140","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M1","","'+02:00","2026-04-09T15:11:00.000+02:00","SANEF\AFIFI-ext","Cloud Agent","748fab57-8fc8-465e-aa10-07d2842a94e1","2026-01-27T17:19:11.000+02:00","2026-04-22T10:57:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"370705148","349069563","PCB16326.sanef.groupe","PCB16326","58:6C:25:2B:1B:05","10.205.0.111,192.168.1.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.04.02","5CG13363T5","","'+02:00","2026-03-30T09:01:02.000+02:00","SANEF\lebourhis","Cloud Agent","e4431fb3-c976-4bae-8ca1-ac73b202c5b7","2025-10-22T13:38:55.000+02:00","2026-04-22T11:00:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"323163331","329802410","PCB20836.sanef.groupe","PCB20836","C8:6E:08:49:2D:BB","10.255.2.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H48","","'+02:00","2026-04-16T09:15:58.000+02:00","SANEF\demol","Cloud Agent","f7a6ae45-5ace-41e5-8a00-7d0b5be29867","2025-05-09T11:04:10.000+02:00","2026-04-22T11:00:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"340717645","336792510","PCB21097.sanef.groupe","PCB21097","E4:60:17:CA:30:14","10.255.2.183,192.168.1.67","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M0","","'+02:00","2026-04-16T08:25:02.000+02:00","SANEF\BADRI-ext","Cloud Agent","d7cea546-aa30-44b8-9ec5-249a7df9c698","2025-07-10T10:46:39.000+02:00","2026-04-22T11:00:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","240.0" +"223167444","255071206","ls-ormes","LS-ORMES","00:50:56:90:13:DA","10.22.3.20","fe80::95dc:5e9a:35ef:4cec","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a1 07 21 54 ce 85-b1 17 76 02 a8 b2 b0 04","NoAssetTag","'+02:00","2026-02-19T16:25:54.000+02:00","svpadmin","Cloud Agent","d47d34be-aa0e-4ead-9eeb-785a82124719","2024-03-18T16:13:24.000+02:00","2026-04-22T10:59:54.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,SVP,Haute,Production,Péage,High","635.0" +"167744583","224051603","vppciaquo1.sanef.groupe","","00:50:56:82:b0:c3","10.100.16.7","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 0a db 33 18 00 31-85 ee aa f6 39 56 64 14","No Asset Tag","'+02:00","2026-01-29T16:14:16.000+02:00","cybreconcile","Cloud Agent","03dd0271-a066-49a4-b810-02d4a3549e2a","2023-04-24T15:01:14.000+02:00","2026-04-22T10:59:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,3PAR","142.0" +"343140417","337789917","PCB20717.sanef.groupe","PCB20717","58:1C:F8:EA:66:40","10.255.1.215,10.255.1.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CS4","","'+02:00","2026-04-03T09:21:47.000+02:00","SANEF\BAILLOT","Cloud Agent","f32d46e9-9a0c-4f7f-8e49-a8ab2131755b","2025-07-18T14:16:26.000+02:00","2026-04-22T11:35:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"270805290","300127172","SVP21067.sanef-int.adds","SVP21067","D0:AD:08:A3:7B:32","10.22.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX7","","'+02:00","2026-04-21T14:15:07.000+02:00","Superviseur","Cloud Agent","65f03322-08e4-486b-80cc-75aac36409a3","2024-10-08T12:19:25.000+02:00","2026-04-22T10:58:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"271067968","300276606","SVP21039.sanef-int.adds","SVP21039","D0:AD:08:A3:7C:C2","10.182.6.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYD","","'+02:00","2026-04-18T10:18:30.000+02:00","Superviseur","Cloud Agent","1ddc47ac-c067-40ec-ac0f-2f60635a098c","2024-10-09T16:11:26.000+02:00","2026-04-22T10:58:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"227715620","257227449","ls-st-witz","LS-ST-WITZ","00:50:56:90:86:64","10.41.2.23","fe80::4600:7820:c9b7:5f78","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a6 e9 15 14 d9 f0-88 03 2f b6 c6 db e5 57","NoAssetTag","'+02:00","2026-03-04T10:46:52.000+02:00","svpadmin","Cloud Agent","53a48627-2957-433d-a32c-8c64097ebf14","2024-04-05T11:05:45.000+02:00","2026-04-22T10:58:31.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,VRF_PEAGE_DC,Production,Péage,High,DEX","508.0" +"353723925","342061133","PCB20698.sanef.groupe","PCB20698","BC:0F:F3:3D:58:B4","10.101.243.169","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224CT2","","'+02:00","2026-04-20T14:21:17.000+02:00","SANEF\proly","Cloud Agent","dea67318-f1bb-4cb4-ae92-8478c123fd20","2025-08-22T11:24:23.000+02:00","2026-04-22T10:58:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"377386658","352033413","PCV21074.sanef-int.adds","PCV21074","D0:AD:08:A3:7C:C9","10.106.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YY4","","'+02:00","2025-12-09T17:05:06.000+02:00","Operateur","Cloud Agent","42beac30-7f80-4c91-9d33-0c815bc2fa84","2025-11-18T11:16:18.000+02:00","2026-04-22T10:58:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"340053174","336780155","vppwdapod2.sanef.groupe","","00:50:56:94:ad:ab","10.44.1.201","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 4a 37 e9 9b ea 21-a3 99 f3 77 a9 17 30 1e","No Asset Tag","'+02:00","2026-01-07T11:18:29.000+02:00","cybreconcile","Cloud Agent","b251eede-5a9f-4dca-91b2-ca4b548ab442","2025-07-08T10:16:06.000+02:00","2026-04-22T10:58:03.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD,Production","330.0" +"303906796","322171226","vrdepaapp1.sanef-rec.fr","","00:50:56:9c:66:a4","10.45.13.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 5f 6d 29 e6 4f 92-1f a9 bb b3 58 54 7b 1f","No Asset Tag","'+02:00","2026-01-15T16:42:52.000+02:00","cybsupapp","Cloud Agent","4c109497-abf2-404a-9f8b-924ba90a89fc","2025-02-27T19:22:22.000+02:00","2026-04-22T10:57:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion dépanneurs,Linux Server,Cloud Agent,Recette,MID-NGINX DYN,OS-LIN-SRV DYN","142.0" +"128588879","191407358","ls-boulogne","LS-BOULOGNE","00:50:56:90:D3:E5","10.41.2.103","fe80::1a3e:c2c6:5d8b:e4dd","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 2d bd 1e 2f 1d 44-4b 23 16 91 2b 98 98 ea","NoAssetTag","'+02:00","2026-03-23T16:17:29.000+02:00","svpadmin","Cloud Agent","85c9118f-a3f2-4338-9538-8efd30add52c","2022-06-21T10:53:37.000+02:00","2026-04-22T10:57:50.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Haute,SVP,Windows Server,High,Production,Péage,Cloud Agent,DEX,VRF_PEAGE_DC","633.0" +"417984887","368437277","PCB23660.sanef.groupe","PCB23660","6C:0B:5E:EE:BC:40","10.101.243.94","fe80::f6ed:7250:b1fa:f13b","Windows / Client","Microsoft Windows 11 Enterprise (Insider Preview Build 26200)","11","Computers / Unidentified","Computers","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L3Z","","'+02:00","2026-04-22T09:47:29.000+02:00","","Cloud Agent","f96fab3e-bbcc-4b99-951a-60b387b4eafa","2026-04-22T09:52:05.000+02:00","2026-04-22T10:57:22.000+02:00","64 bits","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"354586794","342450032","PCB18087.sanef.groupe","PCB18087","64:D6:9A:1D:39:72","192.168.1.116","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HTR","","'+02:00","2026-04-15T14:10:50.000+02:00","SANEF\SIMON","Cloud Agent","85b45694-a6b4-49ba-8aca-ed6d52ded037","2025-08-26T10:55:25.000+02:00","2026-04-22T10:57:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"238501960","269491573","ls-st-gibrien","LS-ST-GIBRIEN","00:50:56:90:29:EE","10.41.2.70","fe80::50f2:f3da:1356:b34e","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 fb 04 48 e4 12 1d-48 d4 87 8f 14 22 6c a0","NoAssetTag","'+02:00","2026-03-03T16:33:59.000+02:00","svpadmin","Cloud Agent","df0c6f79-82ce-403f-94a5-0764df04e3fc","2024-05-22T12:25:15.000+02:00","2026-04-22T10:57:07.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Péage,OS-WIN-SRV DYN,Cloud Agent,Windows Server","508.0" +"379117183","352758771","PSX18691.sanef-int.adds","PSX18691","30:13:8B:6C:79:F6","10.100.40.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WR","","'+02:00","2025-12-01T13:01:08.000+02:00","UserSextan","Cloud Agent","a607270a-d084-44ad-be08-7c83fc9fe185","2025-11-25T12:22:41.000+02:00","2026-04-22T10:57:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"324640354","330317950","PCB23725.sanef.groupe","PCB23725","C8:6E:08:48:DD:11","10.205.0.107,10.255.3.250","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2F","","'+02:00","2026-03-30T09:31:43.000+02:00","SANEF\rochette","Cloud Agent","1d75d04f-8a32-41e4-bbe4-ce78d3cf28d0","2025-05-14T09:54:46.000+02:00","2026-04-22T10:56:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"321551581","329072946","PCB22823.sanef.groupe","PCB22823","D0:AD:08:A3:E6:9E","10.8.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQL","8CC3502YQL","'+02:00","2026-03-29T05:04:34.000+02:00","SANEF\negele","Cloud Agent","d596068b-10c9-45a3-b7b3-d0517d5cd190","2025-05-02T10:20:01.000+02:00","2026-04-22T10:56:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"415580155","367518622","SVP21613.sanef-int.adds","SVP21613","D0:AD:08:A4:4E:49","10.252.2.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711KF","","'+02:00","2026-01-26T15:47:44.000+02:00","Admin","Cloud Agent","c03e829e-743a-4442-9ad6-fa297c6ceb8a","2026-04-13T22:03:04.000+02:00","2026-04-22T10:56:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"188895648","238252322","lpgesanas1.sanef.groupe","LPGESANAS1","02:D0:2F:70:24:7B, EE:50:33:80:00:08, EE:50:33:80:00:05","169.254.1.16,10.43.1.66,10.46.30.5,10.46.30.11,10.46.30.12,10.46.30.13,10.46.30.14,10.46.30.15","fe80::2329:7faf:51fe:5024,fe80::7db:2c41:b88d:ca78,fe80::7514:f7d8:cced:343","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Computers / Server","HPE Synergy 480 G10 Server","32","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","65223","HPE I44","VCGCIOJ000","","'+02:00","2026-01-26T11:08:52.000+02:00","Administrateur","Cloud Agent","da761171-24d2-41ba-b23f-fb94e65ba56c","2023-09-20T11:03:28.000+02:00","2026-04-22T10:56:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DFS","348.0" +"229361884","257999675","vpsupacen1.sanef.groupe","","00:50:56:8d:f7:2f","10.44.5.99","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 07 75 63 a4 b8 eb-7b da 58 0b 66 9a fe fc","No Asset Tag","'+02:00","2026-03-30T10:14:48.000+02:00","cybreconcile","Cloud Agent","7dd688ec-3925-434e-99cc-5fb2cb56ea12","2024-04-11T15:33:08.000+02:00","2026-04-22T10:56:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,MID-NGINX DYN,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","147.0" +"214502631","251415990","vipeaabst2.sanef.groupe","","00:50:56:90:d6:99","10.41.29.54","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31887","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 dd 4a 01 cf c9 73-00 f2 23 5c 48 14 bc 74","No Asset Tag","'+02:00","2026-03-19T11:07:03.000+02:00","cybintsys","Cloud Agent","16ba225b-3ebd-4d20-94b3-681bca23e83d","2024-02-08T14:29:40.000+02:00","2026-04-22T10:55:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,flux_libre,OS-LIN-SRV DYN,MID-NGINX DYN,ServersInCyberark,Production,FreeFlow,Cloud Agent,Linux Server,DSI,BOOST","138.0" +"303886597","322164389","vrdepbels1.sanef-rec.fr","","00:50:56:9c:9d:7a","10.45.13.69","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 95 98 f1 c2 2e db-e4 64 6d f5 d1 af d9 fe","No Asset Tag","'+02:00","2026-01-15T16:11:41.000+02:00","cybsupapp","Cloud Agent","34249e96-671f-43b7-935d-f5a5d28b93ca","2025-02-27T17:39:09.000+02:00","2026-04-22T10:55:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion dépanneurs,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-ELA DYN,Recette","141.0" +"320507201","328732650","PCB23631.sanef.groupe","PCB23631","6C:0B:5E:ED:A2:32","10.152.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4X","","'+02:00","2026-04-21T10:25:55.000+02:00","SANEF\LELIEVRED","Cloud Agent","207d15d0-9737-465e-ae72-8e6147ffe292","2025-04-29T15:20:38.000+02:00","2026-04-22T11:39:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"370464427","348915117","PCB21110.sanef.groupe","PCB21110","E4:60:17:C4:EC:CB","10.205.0.198,192.168.1.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H3","","'+02:00","2026-04-15T10:48:41.000+02:00","SANEF\RAFFEI-ext","Cloud Agent","ee9f8e76-7ef9-4a49-bfde-c191f7214ba2","2025-10-21T17:16:41.000+02:00","2026-04-22T10:54:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"354679518","342495237","vpechaetl1.sanef.groupe","","00:50:56:90:13:ae","10.42.16.141","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 61 ad e4 e1 c4 e6-50 86 97 42 1a 06 6a c4","No Asset Tag","'+02:00","2026-03-27T16:31:11.000+02:00","cybexpapp","Cloud Agent","593594e4-9804-4fe4-802a-adfb88685958","2025-08-26T17:08:59.000+02:00","2026-04-22T10:53:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","144.0" +"173355077","227828424","vvboomocr1.sanef-rec.fr","","00:50:56:9c:34:ff","10.45.6.72","fe80::250:56ff:fe9c:34ff","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a1 4b 9f 48 e9 62-7c b2 8e c5 d8 29 5e 86","No Asset Tag","'+02:00","2026-03-12T11:22:06.000+02:00","cybsupsys","Cloud Agent","760759b1-6518-417e-ab86-e7506e32e626","2023-06-07T10:48:55.000+02:00","2026-04-22T10:53:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Cloud Agent,Linux Server,Flux Libre,FreeFlow","335.0" +"370758189","349072009","PCB21293.sanef.groupe","PCB21293","30:F6:EF:A3:92:CE","10.255.3.130","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKR","","'+02:00","2026-04-14T07:47:58.000+02:00","SANEF\chanat","Cloud Agent","2636ca73-4706-4d06-96d7-c6a5f3b7110f","2025-10-22T13:48:19.000+02:00","2026-04-22T10:53:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"344378834","338329338","PCB18033.sanef.groupe","PCB18033","38:CA:84:52:F8:99","10.101.243.222","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HS7","","'+02:00","2026-04-02T10:34:33.000+02:00","SANEF\DOLIQUE","Cloud Agent","8a1a8c6d-890c-4569-b3cc-9d3403883358","2025-07-23T12:22:20.000+02:00","2026-04-22T10:53:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"212726115","250631962","PCB18008.sanef.groupe","PCB18008","C0:18:03:85:61:7B","10.200.40.24","fe80::9a49:41a:ba46:2d03","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.13.00","8CC206174W","","'+02:00","2026-03-17T02:19:56.000+02:00","SANEF\PCI-SAPN","Cloud Agent","b9919e34-fd72-4ee2-89b7-f49494cde694","2024-01-30T14:33:09.000+02:00","2026-04-22T10:53:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"298442394","319181985","vpameapmv2.sanef.groupe","","00:50:56:8f:67:12, 00:50:56:8f:c6:bd","10.44.201.4,10.44.201.5,172.16.255.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","11729","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 0f c5 37 86 2e 75 2d-f8 cf 44 ad a0 21 cc 8d","No Asset Tag","'+02:00","2026-03-18T14:16:03.000+02:00","cybreconcile","Cloud Agent","f8fe228c-2645-47c2-a24b-e13d254312ad","2025-02-07T10:24:08.000+02:00","2026-04-22T10:53:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,TAG-MIVISUPMV,TAG-SIC","140.0" +"227211624","256872749","ls-vallee-somme","LS-VALLEE-SOMME","00:50:56:90:22:55","10.41.2.30","fe80::3d6a:4dd7:caa4:c5a3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 0d 94 96 0b 53 58-98 a2 9e 3c 8f 1b 64 40","NoAssetTag","'+02:00","2026-03-04T12:34:32.000+02:00","svpadmin","Cloud Agent","33260931-f680-4f64-a147-8f0a732a4b89","2024-04-03T11:27:35.000+02:00","2026-04-22T10:53:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,High,Production,Péage","508.0" +"350018634","340230698","PCB25807.sanef.groupe","PCB25807","28:95:29:1E:73:00","10.101.243.214,192.168.1.129","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSH","","'+02:00","2026-04-14T11:08:11.000+02:00","SANEF\ROQUEJOFFRE","Cloud Agent","33e6720f-18d7-4bee-b3ae-8907f73882b6","2025-08-08T12:14:35.000+02:00","2026-04-22T10:53:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","52.0" +"186261448","236709465","ls-spare-etv","LS-SPARE-ETV","00:50:56:82:65:D8","10.152.2.252","fe80::5371:34a3:f025:e494","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 5d 6e be 15 5c ad-59 b3 ec c8 f6 52 a8 56","NoAssetTag","'+02:00","2026-02-16T11:21:46.000+02:00","gare","Cloud Agent","70a900ad-1676-434d-80ed-4cdfb3b7e542","2023-09-05T17:39:58.000+02:00","2026-04-22T10:52:42.000+02:00","64-Bit","4","SCA,VM,GAV","DEX,SVP,Péage,Cloud Agent,OS-WIN-SRV DYN","683.0" +"137331600","197583171","vpairahtp1.sanef.groupe","","00:50:56:82:e0:c4","10.42.40.136","fe80::250:56ff:fe82:e0c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 72 4e 68 04 83 7e-58 b6 7b d5 ca 9f 17 59","No Asset Tag","'+02:00","2026-01-20T16:45:09.000+02:00","cybreconcile","Cloud Agent","56fa8823-0386-4790-8b91-3d896b270b3a","2022-08-30T15:47:32.000+02:00","2026-04-22T10:51:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_AIRES_DC,Production,VISIONAIRE,DSG,Cloud Agent,Linux Server,OS-LIN-SRV DYN","208.0" +"378283970","352415582","PCV20962.sanef-int.adds","PCV20962","BC:0F:F3:87:6F:8E","10.210.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LL9","","'+02:00","2026-04-16T16:08:02.000+02:00","Operateur","Cloud Agent","6f0c159b-6ba8-4afd-a1f7-6ad735d47004","2025-11-21T12:35:34.000+02:00","2026-04-22T10:51:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"412683112","366360381","PCB25824.sanef.groupe","PCB25824","F8:ED:FC:AB:02:3D","10.101.243.122","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT9","","'+02:00","2026-04-07T17:54:56.000+02:00","SANEF\GINISTYTANI","Cloud Agent","9c804060-bc9f-460a-ba38-e1a7c0bc3e1b","2026-03-31T16:22:58.000+02:00","2026-04-22T11:23:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"354676610","342490002","vpdsiarad2.sanef.groupe","","00:50:56:94:21:0f","10.44.5.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 ef 2e e0 26 26 f3-ff 9b df c2 a7 54 5d 8a","No Asset Tag","'+02:00","2026-03-24T11:02:46.000+02:00","cybsupsys","Cloud Agent","92dcb81c-7828-431a-bb3d-fa959e0012eb","2025-08-26T16:07:05.000+02:00","2026-04-22T10:50:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Radius,Production,OS-LIN-SRV DYN","152.0" +"129356148","191961893","vphrqanvr1","VPHRQANVR1","00:50:56:82:D2:7A","10.137.3.11","fe80::3574:8853:34d7:ed8f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 19 d3 fe 08 c9 c4-f9 4c 7e 09 e0 02 f2 8f","NoAssetTag","'+02:00","2026-03-12T13:28:14.000+02:00","Administrateur","Cloud Agent","75ffaeef-6e1e-4705-815d-86d7f32ac31e","2022-06-27T18:03:20.000+02:00","2026-04-22T10:50:58.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,Exploitation,Production,Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_INCONNUE,NVR","508.0" +"322597044","329578375","PCS22825.sanef-int.adds","PCS22825","D0:AD:08:A3:E6:60","10.100.13.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3476) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YQW","","'+02:00","2026-02-18T18:34:17.000+02:00","user_stl","Cloud Agent","9533de13-42df-4914-8f7d-ea2255f69fea","2025-05-07T11:36:53.000+02:00","2026-04-22T11:06:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","343.0" +"213124947","250790137","vpbckangw2","","00:50:56:90:38:e1","192.168.18.53","fe80::250:56ff:fe90:38e1","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e5 42 78 14 7e ac-70 23 d5 d7 f9 a5 1e ae","No Asset Tag","'+02:00","2026-02-03T16:26:24.000+02:00","tbaad-ext","Cloud Agent","fe53c135-a3e3-4b9e-8799-d5a69e262ece","2024-02-01T12:19:29.000+02:00","2026-04-22T10:50:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","53.0" +"395334739","359414322","PCB20609.sanef.groupe","PCB20609","58:1C:F8:E9:A6:FB","10.101.243.127,192.168.1.196","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3G","","'+02:00","2026-03-30T11:18:30.000+02:00","SANEF\VERGNAUD","Cloud Agent","0f329e0a-ce6e-456f-b694-88b5d741c3d0","2026-01-27T14:19:28.000+02:00","2026-04-22T10:46:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"335485295","334622705","PCB24179.sanef.groupe","PCB24179","24:FB:E3:F3:0A:AF","10.209.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XC","","'+02:00","2026-03-30T09:06:06.000+02:00","SANEF\tournatory","Cloud Agent","40772507-43e6-4745-b597-a03cb0134483","2025-06-23T12:19:35.000+02:00","2026-04-22T10:50:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"401234526","361776900","PCV18679.sanef-int.adds","PCV18679","30:13:8B:6C:79:B9","10.100.7.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473W4","","'+02:00","2026-02-17T18:10:13.000+02:00","Operateur","Cloud Agent","a2a0be15-127a-4adc-ab23-670338f574bd","2026-02-17T16:18:12.000+02:00","2026-04-22T10:50:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"399388387","361109979","vpemvgrid1.sanef.groupe","","00:50:56:98:14:19","192.168.100.134","fe80::250:56ff:fe98:1419","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12014","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 bb 96 25 25 31 2f-51 61 f2 c8 80 9b 2f f4","No Asset Tag","'+02:00","2026-02-23T13:42:54.000+02:00","oracle","Cloud Agent","b3ab440e-70fb-464c-a39e-732fe598b29c","2026-02-11T16:29:42.000+02:00","2026-04-22T10:49:53.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Supervision/Admin","675.0" +"228724304","257679746","vpbocarep1.sanef.groupe","","00:50:56:90:4d:3f","10.41.22.15","fe80::250:56ff:fe90:4d3f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 eb d4 a9 d7 76 f8-6e 5d 1f c0 70 0a ff 91","No Asset Tag","'+02:00","2026-04-01T15:24:47.000+02:00","root","Cloud Agent","963196f6-3330-423e-a96d-169fbf6bd5f9","2024-04-09T15:45:58.000+02:00","2026-04-22T10:49:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","141.0" +"356654578","343428640","PCB21706.sanef.groupe","PCB21706","D0:AD:08:AA:50:37","10.220.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HM","","'+02:00","2026-04-01T07:36:16.000+02:00","anne-sophie.lemercier@sapn.fr","Cloud Agent","50ae1406-42fc-40a3-92f5-2615d5dbaa7f","2025-09-03T17:41:20.000+02:00","2026-04-22T10:49:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"347441583","339169259","PCB20735.sanef.groupe","PCB20735","BC:0F:F3:3D:58:AB","10.101.243.116","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224CSX","","'+02:00","2026-04-21T14:29:04.000+02:00","SANEF\DUQUIN","Cloud Agent","744305cb-b692-4a7d-81a2-745a5faa3386","2025-07-30T14:28:15.000+02:00","2026-04-22T10:49:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"370357368","348862836","PCB22712.sanef.groupe","PCB22712","D0:AD:08:AA:50:41","10.220.31.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764HY","","'+02:00","2026-04-14T08:56:57.000+02:00","walid.guerza@sapn.fr","Cloud Agent","96b5de3f-9b8a-45d1-9aac-09229fd7ec7b","2025-10-21T08:49:07.000+02:00","2026-04-22T11:30:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"356636844","343426186","PCB24225.sanef.groupe","PCB24225","70:15:FB:7E:20:AC","10.205.0.127,192.168.1.88","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYY","","'+02:00","2026-04-14T07:41:49.000+02:00","SANEF\HAMZA-ext","Cloud Agent","422033b3-9e0a-448f-8de0-9ce13039afb9","2025-09-03T17:09:56.000+02:00","2026-04-22T10:48:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","331.0" +"324955368","330451240","PCB23751.sanef.groupe","PCB23751","6C:0B:5E:EE:93:54","10.5.31.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4X","","'+02:00","2026-03-30T17:16:48.000+02:00","SANEF\MICHELOT","Cloud Agent","a4efa506-b477-42c3-b4c7-2c3640996ab3","2025-05-15T11:17:01.000+02:00","2026-04-22T10:48:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"363277770","346047538","SVP22612.sanef-int.adds","SVP22612","D0:AD:08:A4:73:B5","10.1.1.18","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764D5","","'+02:00","2026-03-21T07:01:00.000+02:00","Superviseur","Cloud Agent","c80bf15d-77f8-4476-a876-f5d21342901a","2025-09-26T14:56:10.000+02:00","2026-04-22T10:48:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"273997305","302200542","vpbocjump1.sanef.groupe","VPBOCJUMP1","00:50:56:90:4E:C6","10.41.22.14","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 d5 9e 3a c2 55 4a-9f ef 42 ba 70 05 51 7f","NoAssetTag","'+02:00","2026-04-01T15:55:36.000+02:00","Administrateur","Cloud Agent","79efa878-79e9-4043-8c06-798f6d8de1b8","2024-10-23T15:55:14.000+02:00","2026-04-22T10:47:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","flux_libre,Cloud Agent,Production,Flux Libre,OS-WIN-SRV DYN","349.0" +"344869190","338496195","PCB21309.sanef.groupe","PCB21309","D0:AD:08:0C:8D:0B","10.101.243.58","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GJH","","'+02:00","2026-04-14T11:36:03.000+02:00","SANEF\ragelle","Cloud Agent","9de04ab6-8553-46b7-9afe-7e08734bfc44","2025-07-24T17:16:08.000+02:00","2026-04-22T11:18:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"269850043","299451570","SVP21073.sanef-int.adds","SVP21073","D0:AD:08:A7:28:6C","10.5.20.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLC","","'+02:00","2026-04-12T09:44:53.000+02:00","Superviseur","Cloud Agent","cc5869a3-9629-4f5b-8038-5575acd97c17","2024-10-03T11:19:23.000+02:00","2026-04-22T10:47:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"322014450","329321017","PCB22437.sanef.groupe","PCB22437","D0:AD:08:A7:27:C6","10.11.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKZ","8CC3502YKZ","'+02:00","2026-04-16T12:34:35.000+02:00","SANEF\negele","Cloud Agent","858e0385-c9df-464b-84a3-8d1374378e29","2025-05-05T11:49:36.000+02:00","2026-04-22T10:47:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"378055243","352306883","vpdsiahap3.sanef.groupe","","00:50:56:90:c5:fa","192.168.19.144","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 97 fc c2 b8 0c 7e-f6 b5 af 0c 61 d8 ad 2b","No Asset Tag","'+02:00","2025-11-20T13:34:06.000+02:00","cybintsys","Cloud Agent","c5dde6fe-987d-4bdb-8ceb-b9b0c2ae9450","2025-11-20T13:35:25.000+02:00","2026-04-22T10:47:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0" +"196660267","242432304","vpboobsql2.sanef.groupe","","00:50:56:90:b3:02","10.41.22.134","fe80::250:56ff:fe90:b302","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ce 59 56 16 2c 22-65 32 42 14 2c 26 84 20","No Asset Tag","'+02:00","2026-04-07T11:46:42.000+02:00","cybreconcile","Cloud Agent","7dc6ec33-0e00-4be0-9fb2-f511617b86bc","2023-10-31T18:19:55.000+02:00","2026-04-22T10:47:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,FreeFlow,Production,flux_libre","334.0" +"361948001","345511607","PCB17789.sanef.groupe","PCB17789","D0:AD:08:8A:60:45","10.101.243.216","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4G","","'+02:00","2026-04-20T09:27:48.000+02:00","SANEF\MIRDAS","Cloud Agent","8a2b74b4-67ca-4a90-aac0-d16e883ac2d1","2025-09-22T11:38:59.000+02:00","2026-04-22T10:47:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","248.0" +"383235630","354362153","PCB18011.sanef.groupe","PCB18011","C0:18:03:85:64:BD","10.200.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206174S","8CC206174S","'+02:00","2026-03-30T22:04:04.000+02:00","SANEF\laine","Cloud Agent","eaa142ae-eb3f-4407-aa98-0a81b6c62407","2025-12-11T12:54:09.000+02:00","2026-04-22T11:28:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"196663725","242433778","vpbooangx1.sanef.groupe","","00:50:56:90:8b:75","10.41.22.147","fe80::250:56ff:fe90:8b75","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 5a 08 bf 7c 15 ff-c6 77 73 1c 71 3f d7 52","No Asset Tag","'+02:00","2026-04-07T11:44:54.000+02:00","cybreconcile","Cloud Agent","dc64af1f-5e04-4377-9ece-46ead1446236","2023-10-31T18:38:48.000+02:00","2026-04-22T10:46:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Production,flux_libre,Cloud Agent,Linux Server","329.0" +"340145305","336514116","PCB17786.sanef.groupe","PCB17786","28:C5:D2:9F:C3:79","10.205.0.6,192.168.1.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3M","","'+02:00","2026-04-20T08:59:21.000+02:00","SANEF\FERCHAUD","Cloud Agent","9c4b32dc-eb9a-4684-9fb0-b64feb82f170","2025-07-08T15:36:55.000+02:00","2026-04-22T10:45:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"321066786","328926383","PCB18754.sanef.groupe","PCB18754","BC:0F:F3:3D:08:C1","10.4.31.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQL","","'+02:00","2026-04-01T08:32:17.000+02:00","SANEF\MARTINEZA","Cloud Agent","14764d67-742f-4427-984d-d14c6f2f32fb","2025-04-30T17:00:23.000+02:00","2026-04-22T10:29:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"390363422","357624956","PBM20982.sanef-int.adds","PBM20982","00:18:9E:A9:88:00, BC:0F:F3:88:FD:37","192.168.63.100,10.200.50.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LMC","","'+02:00","2026-04-16T12:11:57.000+02:00","Operateur","Cloud Agent","4aaacfa3-4381-4f21-8335-2b7cb1e4a47e","2026-01-10T05:11:43.000+02:00","2026-04-22T10:45:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","347.0" +"363043551","345952489","PCB16374.sanef.groupe","PCB16374","74:3A:F4:CB:23:5C","10.255.3.196,10.255.3.192","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","64758","HP U21 Ver. 02.16.00","8CC327145G","","'+02:00","2026-03-30T10:03:11.000+02:00","SANEF\OCTAU","Cloud Agent","c049b6ba-4a76-4892-8faf-9822698fe928","2025-09-25T17:57:10.000+02:00","2026-04-22T10:53:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"130582850","192832077","vmamrgtc2","","00:50:56:82:7D:66, 00:50:56:82:07:63, 00:50:56:82:6A:AF","10.45.3.161,10.45.3.163,10.45.4.161,10.45.2.161,10.45.2.163","fe80::250:56ff:fe82:7d66,fe80::250:56ff:fe82:763,fe80::250:56ff:fe82:6aaf","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 03 1b b4 15 d0 7a-05 7e 5f fb bf 72 e0 31","No Asset Tag","'+02:00","2025-10-09T12:05:15.000+02:00","cybadmsys","Cloud Agent","fe8956e8-cc60-44ed-93e2-95a307f07f07","2022-07-07T11:12:20.000+02:00","2026-04-22T11:11:24.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,log4j,Obsolete,MIVISU,Recette,Sans,Trafic,DEX,VRF_INCONNUE,OS-LIN-SRV DYN","876.0" +"189172820","238405709","vvpeaarcv1.sanef-rec.fr","","00:50:56:9c:45:ba","10.45.6.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 61 6f 3e 31 c1 79-c2 ac 1f 06 da a9 f8 45","No Asset Tag","'+02:00","2026-03-12T10:33:09.000+02:00","cybreconcile","Cloud Agent","4df11211-78c4-4dac-bc9f-fd7df91d89d4","2023-09-21T13:11:50.000+02:00","2026-04-22T10:45:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Recette,flux_libre","333.0" +"213849711","251124343","sppeaanvr23","SPPEAANVR23","20:67:7C:D6:45:75","10.41.7.122","fe80::254a:3dfa:cecd:d8cb","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ8380396","","'+02:00","2026-02-05T11:27:13.000+02:00","Administrateur","Cloud Agent","a118d752-2d3c-45f7-8111-f1657a762f00","2024-02-05T19:17:47.000+02:00","2026-04-22T10:45:10.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,NVR","523.0" +"139157052","198270704","vmamptd1.sanef.groupe","","00:50:56:82:5B:C6","10.41.40.165","fe80::250:56ff:fe82:5bc6","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 81 c7 66 1d 69-91 26 2c 88 c7 a1 34 9d","No Asset Tag","'+02:00","2025-09-29T15:02:30.000+02:00","cybreconcile","Cloud Agent","dbadc8c6-f389-483b-b396-cf73f4190b36","2022-09-07T14:36:49.000+02:00","2026-04-22T10:44:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,Obsolete,Production,Trafic,Traffic,Cloud Agent,Linux Server,VRF_TRAFIC_DC,OS-LIN-SRV DYN","692.0" +"198996312","243707595","vpisibtel1.sanef.groupe","VPISIBTEL1","00:50:56:9C:31:EF, 00:50:56:9C:14:06","10.41.40.123,10.41.6.188","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 1c 86 87 ba 61 6f 31-69 a5 0b b5 80 2f 55 08","NoAssetTag","'+02:00","2026-04-02T14:35:50.000+02:00","SANEF\DELCOUR","Cloud Agent","611b620c-c4f7-4589-a833-31304234a1e7","2023-11-14T19:19:00.000+02:00","2026-04-22T10:44:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","ISI-COM,OS-WIN-SRV DYN,DSI,Cloud Agent,Windows Server","337.0" +"314908353","326677556","vrdsiasaf1","","f6:61:32:36:b7:b5, 00:50:56:9c:e5:c6, fe:33:26:30:9c:77","10.88.0.1,192.168.19.24","fe80::f8b1:5eff:fe68:216d,fe80::fc33:26ff:fe30:9c77","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3654","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c ac e5 79 a1 c0 a5-4a 99 9d 16 77 01 76 51","No Asset Tag","'+02:00","2026-04-20T17:49:21.000+02:00","cybadmroot","IP Scanner, Cloud Agent","ff0da179-fcc8-4758-8ed2-0b28c8518524","2025-04-09T16:45:51.000+02:00","2026-04-22T10:43:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Radius,Recette","248.0" +"157615760","210413258","vppintaels1.sanef.groupe","","00:50:56:82:56:38","10.46.39.15","fe80::250:56ff:fe82:5638","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 67 e6 ec 03 d8 ff-cd 63 a1 e6 58 67 72 c4","No Asset Tag","'+02:00","2026-02-25T10:47:56.000+02:00","cybadmbdd","Cloud Agent","7cf47c07-db57-42f5-85a7-946d89b050c1","2023-02-01T16:29:03.000+02:00","2026-04-22T10:43:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,VRF_INCONNUE,Gestion institutionnel,Cloud Agent,Linux Server","142.0" +"308850037","323875092","vrdsibetc2.sanef-rec.fr","","00:50:56:9c:90:88","10.45.1.177","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c e6 68 6c 62 dc b0-23 8f 1c 27 bc e3 ba 97","No Asset Tag","'+02:00","2026-01-06T13:52:01.000+02:00","cybadmbdd","Cloud Agent","14801267-3beb-415f-9814-d19dfa280886","2025-03-17T18:36:36.000+02:00","2026-04-22T10:43:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD,Recette","141.0" +"139156976","198270451","vmamprdt1","","00:50:56:82:25:F8, 00:50:56:82:4B:AD, 00:50:56:82:09:77","10.43.4.70,10.41.40.70,10.41.40.72,10.41.40.73,10.43.40.70,10.43.40.72,10.43.40.73","fe80::250:56ff:fe82:25f8,fe80::250:56ff:fe82:4bad,fe80::250:56ff:fe82:977","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 ea be bd f8 2c 6f-19 ab 4a da 29 5a d0 7d","No Asset Tag","'+02:00","2024-02-13T14:07:37.000+02:00","cybreconcile","Cloud Agent","76dece7b-0c6b-4cc5-9b36-abc9e5c62828","2022-09-07T14:30:36.000+02:00","2026-04-22T10:43:09.000+02:00","x86_64","5","SCA,VM,PM,GAV","VRF_TRAFIC_DC,Production,Cloud Agent,Linux Server,log4j,MIVISU,Obsolete,OS-LIN-SRV DYN,Trafic,DEX","873.0" +"152255312","206859174","vpsasapil1.sanef.groupe","","00:50:56:82:dd:e9","10.41.32.20","fe80::250:56ff:fe82:dde9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7f 0d 6d e4 1d 96-c0 af 50 d0 23 ae 67 95","No Asset Tag","'+02:00","2026-03-25T16:10:58.000+02:00","cybreconcile","Cloud Agent","3ed9295c-e2c3-464f-875e-3a275e57972b","2022-12-16T15:39:51.000+02:00","2026-04-22T10:43:06.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,SAS,VRF_BURO_DC,OS-LIN-SRV DYN,Cloud Agent,Linux Server","92.0" +"173357493","227829060","vvbooaori1.sanef-rec.fr","","00:50:56:9c:37:83","10.45.6.79","fe80::250:56ff:fe9c:3783","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 19 cb 03 85 c0 a7-a8 dd bf e6 55 b5 91 e8","No Asset Tag","'+02:00","2026-03-12T11:20:36.000+02:00","podman_app","Cloud Agent","9b7e7cf0-343a-44f4-8a57-947a81ee0c3b","2023-06-07T10:53:31.000+02:00","2026-04-22T10:16:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","140.0" +"406279962","363583300","PCV20919.sanef-int.adds","PCV20919","30:13:8B:6C:5E:47","10.12.7.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q84","","'+02:00","2026-03-05T16:26:26.000+02:00","Operateur","Cloud Agent","fd819ce6-8ef9-45d0-822a-3207a59e8176","2026-03-05T15:40:52.000+02:00","2026-04-22T10:42:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"362978365","345924982","PCB22708.sanef.groupe","PCB22708","E4:60:17:CB:E8:19","10.255.2.139,10.255.2.213","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.05.05","5CD34764DX","","'+02:00","2026-04-08T15:20:53.000+02:00","SANEF\GARMY-ext","Cloud Agent","1e5cc313-9233-4f13-b2af-93c226099c49","2025-09-25T12:39:04.000+02:00","2026-04-22T11:45:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"318424837","328042212","vrameakfk1.sanef-rec.fr","","00:50:56:9c:c4:6a","10.45.2.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d4 f5 49 4e da 8d-98 48 7e af d0 57 37 53","No Asset Tag","'+02:00","2026-04-20T09:03:47.000+02:00","cybsupapp","Cloud Agent","0fc3c02f-b771-4d49-8ef4-7a25ef38c735","2025-04-22T14:33:15.000+02:00","2026-04-22T10:59:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Amelie,Recette,OS-LIN-SRV DYN","48.0" +"320292420","328639451","PCB23595.sanef.groupe","PCB23595","C8:6E:08:8A:45:D5","192.168.1.12,10.205.0.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L7D","","'+02:00","2026-03-30T08:38:47.000+02:00","SANEF\murez","Cloud Agent","1f7eacbc-c07c-4501-9317-630cf5458cd6","2025-04-28T16:46:53.000+02:00","2026-04-22T10:41:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"379841430","353008348","vtdsiatmp1.sanef.groupe","","00:50:56:82:3a:d6","10.43.253.4","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 15 56 a7 e3 a7 24-c6 67 23 21 67 98 c5 76","No Asset Tag","'+02:00","2026-04-14T14:17:53.000+02:00","root","Cloud Agent","cf933cbc-f4d7-4fd2-8840-4d3d428abf86","2025-11-27T18:45:57.000+02:00","2026-04-22T11:00:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"360913777","345087474","PCB18736.sanef.groupe","PCB18736","BC:0F:F3:3D:68:37","10.4.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSG","","'+02:00","2026-04-07T10:19:13.000+02:00","SANEF\lhotelain","Cloud Agent","b9622c36-148c-4254-83f2-15adb6524f29","2025-09-18T10:54:50.000+02:00","2026-04-22T11:33:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"320047252","328598799","PCB24045.sanef.groupe","PCB24045","EC:4C:8C:C0:1A:61","10.255.4.211,10.255.4.217","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDJ","","'+02:00","2026-03-30T08:37:27.000+02:00","SANEF\HAVARD","Cloud Agent","8d6448fe-edd9-46a9-8b13-f58c6806ab46","2025-04-28T10:01:06.000+02:00","2026-04-22T10:41:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"382795575","354126727","PCB25814.sanef.groupe","PCB25814","28:95:29:22:5D:9E","10.252.42.155,10.255.2.190","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSB","","'+02:00","2026-04-16T21:19:02.000+02:00","SANEF\jardin","Cloud Agent","0bc2ed42-21e2-4a87-a49c-d63c2e65d571","2025-12-09T17:32:32.000+02:00","2026-04-22T10:41:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","331.0" +"331385324","333860818","vpmonaftp1.sanef.groupe","","00:50:56:90:7f:60","10.41.20.80","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 19 aa 94 6a 9b c1-e9 8f 8c 58 2e d0 b9 40","No Asset Tag","'+02:00","2025-11-20T16:13:29.000+02:00","cybreconcile","Cloud Agent","11292117-193f-4e71-860e-893257d74414","2025-06-06T09:58:55.000+02:00","2026-04-22T10:41:09.000+02:00","x86_64","2","SCA,VM,GAV","Production,EMV,OS-LIN-SRV DYN,Cloud Agent,Linux Server","332.0" +"386997086","356436525","vmdtrac04.recette.adds","VMDTRAC04","00:50:56:9C:69:F8","10.45.17.6","fe80::ff7b:5a6c:795:f666","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c c4 b2 1c f8 02 80-03 50 c0 49 74 84 ba 13","NoAssetTag","'+02:00","2026-04-16T17:35:45.000+02:00","supwindev","Cloud Agent","dc7a9140-3861-45f9-bc5f-4f86e8addf24","2025-12-30T17:04:57.000+02:00","2026-04-22T10:41:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"346581131","339053246","PCB21121.sanef.groupe","PCB21121","E4:60:17:CA:30:19","10.101.243.157,192.168.1.68","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MY","","'+02:00","2026-04-17T10:24:21.000+02:00","SANEF\NAFFETI-ext","Cloud Agent","6d8bf619-e8a5-4970-9492-28db1328f656","2025-07-29T14:38:16.000+02:00","2026-04-22T10:41:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","242.0" +"287513653","311426823","vpstlbtel1.sanef-int.adds","VPSTLBTEL1","00:50:56:90:EB:12","10.41.13.52","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3453) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 fd 8b 4a 92 54 ad-b3 c1 aa f0 e7 07 36 5d","NoAssetTag","'+02:00","2026-04-20T16:08:25.000+02:00","user_stl","Cloud Agent","70e767f6-66ea-4196-8255-0e322066dfe6","2024-12-19T10:44:40.000+02:00","2026-04-22T10:41:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,BDD-SQL DYN,Cloud Agent","346.0" +"387117872","356492878","vmdtrac08.recette.adds","VMDTRAC08","00:50:56:9C:0F:8C","10.45.17.10","fe80::4801:3c04:37ed:b08","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 6f a1 44 4f 03 17-7c 58 46 63 77 12 f9 86","NoAssetTag","'+02:00","2026-04-16T02:20:37.000+02:00","supwindev","Cloud Agent","6a30913b-5a84-4262-ac43-942feffb04f2","2025-12-31T10:56:58.000+02:00","2026-04-22T10:40:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"382446975","353976509","PCB25937.sanef.groupe","PCB25937","4C:CF:7C:0A:4C:3F","10.252.42.146","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222M","","'+02:00","2026-04-14T08:36:51.000+02:00","SANEF\liegeois","Cloud Agent","e5a6dff2-2ffd-4cf3-9d4c-3ecf8dfaca59","2025-12-08T11:14:53.000+02:00","2026-04-22T10:40:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"342506007","337558498","PCB21096.sanef.groupe","PCB21096","D0:AD:08:AA:50:8A","10.205.0.91,10.101.243.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764L9","","'+02:00","2026-04-01T09:07:55.000+02:00","SANEF\GAUTIERJ-ext","Cloud Agent","aa42c157-3b7e-4ffb-a96f-17a5d16b2c47","2025-07-17T11:40:27.000+02:00","2026-04-22T10:40:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"318721619","328182820","PCB22933.sanef.groupe","PCB22933","D0:AD:08:A3:E7:A2","10.100.38.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YL7","8CC3502YL7","'+02:00","2026-04-14T15:53:31.000+02:00","SANEF\auclairp","Cloud Agent","930277ad-56aa-4847-a933-fe1f125d8e19","2025-04-23T11:26:13.000+02:00","2026-04-22T10:40:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"160009590","212917304","PVP19957.sanef-int.adds","PVP19957","C4:00:AD:25:F4:32, C4:00:AD:25:F4:33","10.192.16.47,192.168.0.1","fe80::3694:9d30:f8ac:b889,fe80::cd8a:4ccd:a6cd:3ee1","Windows / Client","Microsoft Windows 10 Enterprise LTSC (1809 Build 17763.7678) 64-Bit","1809","Unidentified / Unidentified","Advantech","4","2400","Intel(R) Core(TM) i3-4330TE CPU @ 2.40GHz","8100","American Megatrends Inc. 4.6.5","To be filled by O.E.M.","ToBeFilledByO.E.M.","'+02:00","2026-04-01T09:44:04.000+02:00","admvoie","Cloud Agent","eb6386ff-1bee-4567-a527-95d3577990b4","2023-02-20T21:08:15.000+02:00","2026-04-22T10:40:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"346596772","339058454","PCB25844.sanef.groupe","PCB25844","F8:ED:FC:AB:02:D3","10.205.0.150,10.101.243.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVC","","'+02:00","2026-04-15T09:14:14.000+02:00","eolia.boufflers@bipandgo.com","Cloud Agent","56a4cde6-77e8-4b0a-9f1f-0cc3f7705728","2025-07-29T15:08:41.000+02:00","2026-04-22T11:31:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"404732912","362922935","PCB21118.sanef.groupe","PCB21118","E4:60:17:CA:41:21","10.205.0.186,192.168.1.72","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KR","","'+02:00","2026-04-17T13:52:44.000+02:00","SANEF\ELWAFI-ext","Cloud Agent","aa1c04b6-b38d-49cd-8145-4f161fa65e76","2026-02-27T11:48:09.000+02:00","2026-04-22T10:40:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"321548577","329070728","PCB22351.sanef.groupe","PCB22351","D0:AD:08:A3:7C:C5","10.202.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YY9","8CC3502YY9","'+02:00","2026-03-29T09:13:17.000+02:00","SANEF\beaudouin","Cloud Agent","2585a931-1587-4918-ba89-264ed1c9cb69","2025-05-02T09:51:17.000+02:00","2026-04-22T10:40:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"372445056","349730968","PBM22807.sanef-int.adds","PBM22807","D0:AD:08:A7:27:E9","10.5.50.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YPN","","'+02:00","2026-04-13T10:37:10.000+02:00","Operateur","Cloud Agent","df979ecf-bb05-4142-a1d3-b42d6dfd247b","2025-10-28T16:20:27.000+02:00","2026-04-22T10:40:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"159244834","211843609","vpsasamic1.sanef.groupe","","00:50:56:82:e5:84","10.41.32.5","fe80::250:56ff:fe82:e584","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257421","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 cd 78 4d 4f 8a e3-1d 73 04 3c 11 19 0a df","No Asset Tag","'+02:00","2026-03-25T16:22:52.000+02:00","cybreconcile","Cloud Agent","30c1f6a2-779c-4e60-ac63-dadd36a9ca46","2023-02-14T16:13:31.000+02:00","2026-04-22T10:39:58.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,SAS,VRF_BURO_DC,log4j","504.0" +"322357044","329431162","PCS22781.sanef-int.adds","PCS22781","D0:AD:08:A3:E6:BB","10.5.13.100","fe80::424e:727:1009:3279","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YQT","","'+02:00","2026-03-12T10:58:14.000+02:00","user_stl","Cloud Agent","6258493e-2105-4d48-945c-2acd06d740b2","2025-05-06T11:19:53.000+02:00","2026-04-22T10:39:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","346.0" +"401496198","361788484","PCV20918.sanef-int.adds","PCV20918","30:13:8B:6C:5E:3C","10.100.7.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q7Y","","'+02:00","2026-02-17T18:13:17.000+02:00","Operateur","Cloud Agent","02e67f6b-b34e-4fdf-9fb1-e9d57df7744e","2026-02-17T18:23:11.000+02:00","2026-04-22T10:39:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"317401026","327603108","PCB21361.sanef.groupe","PCB21361","E4:60:17:C4:7B:A1","10.205.0.129,192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","2496","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764H7","","'+02:00","2026-03-30T09:18:42.000+02:00","SANEF\BOURASS-ext","Cloud Agent","e926db14-1e85-4f6a-9de4-e665ce00ea21","2025-04-17T14:44:14.000+02:00","2026-04-22T10:39:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"343643752","338035889","PCB20699.sanef.groupe","PCB20699","58:1C:F8:EB:78:19","10.101.243.70,192.168.1.143","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DR5","","'+02:00","2026-04-20T09:21:42.000+02:00","nathalie.courbe@sanef.com","Cloud Agent","acc4fb40-ac43-46a4-beeb-4222ab4b2630","2025-07-21T10:56:30.000+02:00","2026-04-22T11:17:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"322362730","329442018","PCB23701.sanef.groupe","PCB23701","6C:0B:5E:EE:BC:C1","10.200.31.72","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L74","","'+02:00","2026-04-17T10:15:44.000+02:00","SANEF\DUPAYS","Cloud Agent","d78f1807-5d18-4190-85d0-3e84127f5c4b","2025-05-06T12:50:19.000+02:00","2026-04-22T11:29:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"392444844","358235882","vrvpnaaov1.recette.adds","VRVPNAAOV1","00:50:56:9C:AA:8F, 00:50:56:9C:AC:C0","10.205.10.3,192.168.188.19","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 1c 16 e3 dc 7c 0b 98-c8 5a 1b c1 ef 37 0a e3","NoAssetTag","'+02:00","2026-02-16T17:58:15.000+02:00","recette.adds\b03987@recette","Cloud Agent","fa7f045d-b6ed-4d21-9a52-2e93217c6a81","2026-01-15T18:26:31.000+02:00","2026-04-22T10:38:56.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,High,TAG-SRVEXPOSEINTERNET,Compte & Acces,Haute,DSI","595.0" +"335714568","336779950","vrdatafrt1.sanef-rec.fr","","00:50:56:9c:83:76","192.168.40.115","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c2 78 9b 72 94 09-bf 19 40 9d 8a 3c 7d 6b","No Asset Tag","'+02:00","2026-04-20T10:38:48.000+02:00","root","Cloud Agent","097fd4df-1bf5-4aed-ab5a-87ec60e2de2d","2025-06-23T16:58:58.000+02:00","2026-04-22T11:07:37.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","152.0" +"395097762","359308288","PCB20648.sanef.groupe","PCB20648","BC:0F:F3:3D:18:32","10.4.31.80","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRS","","'+02:00","2026-04-20T07:48:50.000+02:00","SANEF\robertf","Cloud Agent","7126cdc1-5e9c-4ae3-a1b1-3f5e2b4d4fef","2026-01-26T15:39:39.000+02:00","2026-04-22T10:38:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"313114324","325676070","vraiiavid1.sanef.groupe","VRAIIAVID1","00:50:56:82:8C:8B","10.41.79.100","fe80::3972:b343:77e9:2074","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 4a 3d 9d 40 69 fb-93 50 c1 c6 f0 bf 0c 46","NoAssetTag","'+02:00","2026-02-16T16:58:15.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","3fa57a0c-0603-4a7f-b51d-0368278c6e17","2025-04-02T10:43:56.000+02:00","2026-04-22T10:38:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Péage,OS-WIN-SRV DYN,VRF_VIDEO,Recette,Cloud Agent","341.0" +"334752929","336779981","vrdataapp1.sanef-rec.fr","","00:50:56:9c:8c:9c","10.45.14.165","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 48 45 d3 3c 6c 25-84 c4 6d fc 6f 22 b5 59","No Asset Tag","'+02:00","2026-04-20T10:08:27.000+02:00","cybsupapp","Cloud Agent","644f99af-3c7a-4b65-aa36-f504e6c931a8","2025-06-19T16:49:55.000+02:00","2026-04-22T10:38:21.000+02:00","x86_64","3","SCA,VM,GAV","DATI,Recette,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","71.0" +"354633506","342477894","PCB20723.sanef.groupe","PCB20723","BC:0F:F3:3D:18:3E","10.101.243.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DQZ","","'+02:00","2026-04-21T08:01:50.000+02:00","SANEF\MARION","Cloud Agent","a43c7662-994d-4d3e-bb6b-d90e844185ad","2025-08-26T14:40:59.000+02:00","2026-04-22T08:49:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"412657468","366356238","SVP22873.sanef-int.adds","SVP22873","D0:AD:08:A3:7B:5A","10.252.12.201","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRG","","'+02:00","2026-03-31T15:16:34.000+02:00","Superviseur","Cloud Agent","07b5d09f-d203-4dcb-84c3-c1bc45bae4fc","2026-03-31T15:20:51.000+02:00","2026-04-22T10:38:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"368821229","348250691","PCB21299.sanef.groupe","PCB21299","D0:AD:08:0C:7D:FD","10.101.243.91","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK2","","'+02:00","2026-04-14T09:43:53.000+02:00","SANEF\CORDONNIER","Cloud Agent","18ff07ed-eb05-408c-8560-6639e0e0bc77","2025-10-15T14:18:29.000+02:00","2026-04-22T11:33:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"213853725","251126540","sppeaanvr16","SPPEAANVR16","D4:F5:EF:50:75:D0","10.41.7.115","fe80::4063:32fc:7d9b:ec7a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DV8","","'+02:00","2026-03-26T12:42:01.000+02:00","Administrateur","Cloud Agent","ff457dd0-ebdb-4aa0-ba35-f036ab2be964","2024-02-05T19:57:59.000+02:00","2026-04-22T10:38:06.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,NVR,DEX,Cloud Agent,Windows Server","523.0" +"321972468","329308235","vpintbweb2.sanef.groupe","","00:50:56:9c:ad:90","10.46.33.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c be 84 af 23 67 18-73 4c 71 63 63 67 d9 51","No Asset Tag","'+02:00","2026-02-24T12:22:48.000+02:00","cybreconcile","Cloud Agent","137bf765-a1cc-46d1-8e4e-17baba61d960","2025-05-05T09:03:07.000+02:00","2026-04-22T10:38:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Production,Gestion institutionnel,Linux Server,Cloud Agent","144.0" +"129345792","191952854","vpsecawin1.sanef.groupe","VPSECAWIN1","00:50:56:82:39:BE","10.30.10.60","fe80::8540:9f1:8b3e:d02e","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 94 dd 58 57 41 91-81 e9 35 a9 64 fe 67 a4","NoAssetTag","'+02:00","2026-02-09T11:02:25.000+02:00","Administrateur","Cloud Agent","465df7ea-2d51-42a0-a5c4-34d8785ffa9c","2022-06-27T16:07:02.000+02:00","2026-04-22T10:37:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,VRF_INCONNUE,Sécurité IT,OS-WIN-SRV DYN,DSI,SECOPS,Cloud Agent,Windows Server","346.0" +"236313681","264524364","vpemvagtw1.sanef.groupe","","00:50:56:98:1f:a9","192.168.101.110","fe80::250:56ff:fe98:1fa9","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 18 1a af b2 0d 22 1e-ce 36 4c fb bd 16 0a a1","No Asset Tag","'+02:00","2025-12-04T11:44:29.000+02:00","synchro","Cloud Agent","55a2a761-1ea4-412e-b400-d94e53c0632a","2024-05-13T15:52:33.000+02:00","2026-04-22T10:37:44.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17,PCI Bunker EMV,EMV,Production","504.0" +"175919695","229595373","vpaiiapol10","","00:50:56:82:62:ed","10.30.12.130","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7820","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 57 9e a1 3d 32 8e-43 cf b5 a6 a0 8d 2c 2f","No Asset Tag","'+02:00","2024-06-06T15:58:59.000+02:00","cybadmsys","Cloud Agent","1644939b-679d-4342-a633-4cf639c86cdc","2023-06-26T12:26:01.000+02:00","2026-04-22T11:43:25.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,BDD-ELA DYN,BDD-SQL DYN,Centreon,Obsolete,MID-APACHE-TOMCAT DYN,DSI,MID-NGINX DYN","82.0" +"265688076","297448165","vpexpatex1.sanef.groupe","","00:50:56:90:91:60","10.41.40.25","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e8 75 8c 3f ac e7-38 1e 36 fc f3 00 00 ab","No Asset Tag","'+02:00","2026-01-27T12:14:44.000+02:00","root","Cloud Agent","841a123c-c7bc-4642-a6bb-ab32bd00aa4a","2024-09-16T11:44:59.000+02:00","2026-04-22T10:37:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Transports Exceptionnels","139.0" +"353304779","341953316","srlogbels2.sanef-rec.fr","","20:67:7c:e8:d1:14","10.45.15.167","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31496","HPE U41 07/14/2022","CZJ8470B2F","","'+02:00","2026-02-24T12:19:01.000+02:00","cybintsys","Cloud Agent","e298aece-c7bf-4023-a38e-b6217f6fad0e","2025-08-21T12:18:21.000+02:00","2026-04-22T10:37:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Elasticsearch,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","66.0" +"380544038","353288156","PCB16096.sanef.groupe","PCB16096","48:9E:BD:4B:90:C2","10.100.39.158","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.13.00","8CC129284W","","'+02:00","2026-04-01T08:41:19.000+02:00","SANEF\PSI","Cloud Agent","abe197a2-f160-4718-bd0a-3be692a1539c","2025-12-01T14:36:55.000+02:00","2026-04-22T10:37:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"376111395","351381036","PCB17984.sanef.groupe","PCB17984","C0:18:03:85:64:09","10.200.31.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC2061748","8CC2061748","'+02:00","2026-04-09T13:53:53.000+02:00","SANEF\GOMBART","Cloud Agent","e951b3b3-787a-4525-9655-2d3d827460f6","2025-11-12T13:37:37.000+02:00","2026-04-22T10:37:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"128594378","191410395","ls-courbes","LS-COURBES","00:50:56:90:57:96","10.41.2.47","fe80::71f1:fd75:4dac:6306","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 ce a3 87 0a 7b 8d-9c 15 fd a3 25 5e d1 5c","NoAssetTag","'+02:00","2026-04-02T11:55:27.000+02:00","svpadmin","Cloud Agent","7f8b6380-cd12-4880-bde4-63a1d62a106e","2022-06-21T11:44:40.000+02:00","2026-04-22T10:36:57.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,VRF_PEAGE_DC,Windows Server,Péage,Production,High,OS-WIN-SRV DYN,Haute","634.0" +"229387995","258011538","vpsupbmap1.sanef.groupe","","00:50:56:8d:2b:a5","10.44.5.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","9713","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d 16 ae 81 f5 62 d4-a5 dd 10 be 53 9d 02 31","No Asset Tag","'+02:00","2026-03-30T11:31:03.000+02:00","cybreconcile","Cloud Agent","e6412e32-9ce5-4e98-b321-4bfe6f05f37f","2024-04-11T17:28:44.000+02:00","2026-04-22T10:36:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","57.0" +"394534768","359062315","PCB23742.sanef.groupe","PCB23742","6C:0B:5E:EE:93:08","10.100.39.180","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4Q","","'+02:00","2026-04-17T11:05:24.000+02:00","SANEF\LEFEBVREE","Cloud Agent","ee56f3da-0002-4700-9072-08545c87560f","2026-01-23T12:43:44.000+02:00","2026-04-22T10:36:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"129354939","191958083","vburimp2.sanef.groupe","VBURIMP2","00:50:56:82:3F:E4","10.30.12.146","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24356)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 95 9b e1 c3 61 2d-b0 86 40 6e eb 0f e8 ba","NoAssetTag","'+01:00","2025-03-19T11:30:59.000+02:00","SANEF\atrad","Cloud Agent","e21b8df9-5dee-4ede-bdff-5a08b7981127","2022-06-27T17:22:53.000+02:00","2026-04-22T10:36:44.000+02:00","64 bits","2","SCA,VM,PM,GAV","DSI,Windows Server 2008,Cloud Agent,Production,Obsolete,OS-WIN-SRV DYN,Gestion IMPRESSION","348.0" +"129006381","191708677","PCM13449.sanef.groupe","PCM13449","C8:D9:D2:33:53:BC","10.4.31.12","fe80::3112:c7c:5d24:184f","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.4046) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G4 Desktop","6","3000","Intel(R) Core(TM) i5-8500 CPU @ 3.00GHz","7971","HP Q01 Ver. 02.07.01","CZC924CX9C","CZC924CX9C","'+02:00","2025-04-15T12:03:54.000+02:00","SANEF\admin_astia","Cloud Agent","fd3722f7-0a2e-4719-933d-06812ed2fd3b","2022-06-24T10:46:57.000+02:00","2026-04-22T10:36:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Workstation","349.0" +"324680968","330336688","PCB23787.sanef.groupe","PCB23787","C8:6E:08:47:73:04","10.205.0.109,192.168.0.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3X","","'+02:00","2026-03-31T08:03:09.000+02:00","SANEF\pouplier","Cloud Agent","2e7baefa-b690-4d20-84ef-321dbf17f2d1","2025-05-14T12:14:40.000+02:00","2026-04-22T11:24:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"239823210","272569954","vpdsiasat2.sanef.groupe","","00:50:56:8d:01:12","10.44.2.133","","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","19793","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d a0 01 33 3d 8d 86-aa 11 8d 81 8d 5e 10 8b","No Asset Tag","'+02:00","2026-04-14T15:15:05.000+02:00","cybreconcile","Cloud Agent","c89ac5e5-e7bc-4aad-a699-734f852ac621","2024-05-28T12:53:15.000+02:00","2026-04-22T10:36:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,MID-APACHE-TOMCAT DYN,Production,Satellite","331.0" +"130582564","192832076","vmamrgtc1","","00:50:56:82:30:83, 00:50:56:82:29:fb, 00:50:56:82:68:ff","10.45.3.160,10.45.3.162,10.45.2.160,10.45.2.162,10.45.4.160","fe80::250:56ff:fe82:3083,fe80::250:56ff:fe82:29fb,fe80::250:56ff:fe82:68ff","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 fe 04 d3 c1 9c b5-c4 75 10 69 d5 71 e8 ca","No Asset Tag","'+02:00","2025-10-09T11:38:50.000+02:00","cybadmsys","Cloud Agent","e754412e-d12f-4949-b585-58087a9402e7","2022-07-07T11:11:35.000+02:00","2026-04-22T10:36:35.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,MIVISU,DEX,log4j,Recette,Sans,Trafic,Obsolete","876.0" +"228428106","257530557","ls-st-avold-b","LS-ST-AVOLD-B","00:50:56:90:A1:69","10.41.2.115","fe80::8501:ff7c:ee12:9eb4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 09 f7 67 94 f7 5e-85 bb 3e bf 9a 13 e8 ea","NoAssetTag","'+02:00","2026-03-03T15:40:34.000+02:00","svpadmin","Cloud Agent","4db07c90-e715-4ae2-8278-c455e96b33ff","2024-04-08T12:06:17.000+02:00","2026-04-22T10:36:34.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,High,Production,Péage,SVP,Cloud Agent,Windows Server,OS-WIN-SRV DYN","681.0" +"397469862","360372010","PCB24232.sanef.groupe","PCB24232","24:FB:E3:BE:98:F9","10.4.31.52,192.168.1.90","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M4V","","'+02:00","2026-03-30T18:45:50.000+02:00","SANEF\COUPE-ext","Cloud Agent","bfdc08d0-bf75-4e15-90fb-935f2ea28aed","2026-02-04T18:05:25.000+02:00","2026-04-22T10:36:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"326855610","331310287","PCB24039.sanef.groupe","PCB24039","6C:0B:5E:F8:C7:A9","10.205.0.171,10.100.39.111","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDC","","'+02:00","2026-04-21T18:13:25.000+02:00","SANEF\gontier","Cloud Agent","466f859f-6522-42bc-8ad7-a654b77dc5f8","2025-05-23T14:55:52.000+02:00","2026-04-22T11:34:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"382795127","354123734","PCB25770.sanef.groupe","PCB25770","28:95:29:22:41:29","192.168.1.17,10.101.243.77","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT1","","'+02:00","2026-04-15T09:21:17.000+02:00","SANEF\MOUHLI-GHARBI","Cloud Agent","feb58dcd-cd37-41d7-84a7-4d6498af9d0c","2025-12-09T16:54:43.000+02:00","2026-04-22T10:36:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","243.0" +"389128701","357254093","PCB25902.sanef.groupe","PCB25902","C4:0F:08:B5:3B:50","10.255.2.132","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG534221M","","'+02:00","2026-04-10T13:52:57.000+02:00","SANEF\BONANSEA","Cloud Agent","2896ba9c-4e2e-403a-9137-57bc55a44533","2026-01-07T19:45:10.000+02:00","2026-04-22T10:35:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"377757145","352186178","vrdsiahax1.sanef-rec.fr","","00:50:56:9c:7b:57","192.168.19.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cf ae ac b0 86 9a-13 e5 31 18 b1 42 f9 66","No Asset Tag","'+02:00","2026-01-29T15:36:52.000+02:00","root","Cloud Agent","ca202fc2-fb1c-45f0-8d59-b042c1dce9b9","2025-11-19T15:03:26.000+02:00","2026-04-22T10:35:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","DMZ,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","329.0" +"378966700","352687375","PSX18690.sanef-int.adds","PSX18690","30:13:8B:6C:5B:8A","10.100.40.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473VV","","'+02:00","2026-04-19T13:10:39.000+02:00","UserSextan","Cloud Agent","9346697d-a7cf-4eaf-b0c4-4bcebee98a12","2025-11-24T18:50:09.000+02:00","2026-04-22T10:35:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"296273892","317660426","REX21544.sanef-int.adds","REX21544","D0:AD:08:A3:7B:28","10.100.91.82","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXJ","","'+02:00","2026-03-24T15:51:53.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","2d468a8a-ba61-46a7-a4a8-12fc673dbe58","2025-01-30T17:59:09.000+02:00","2026-04-22T10:35:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"131269839","193319056","vpaiibcen1","","00:50:56:82:ad:1d","10.30.12.122","fe80::250:56ff:fe82:ad1d","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9837","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 69 4a 7c 68 92 64-c6 df 7d 32 79 3b be 83","No Asset Tag","'+02:00","2026-04-20T11:01:43.000+02:00","cybreconcile","Cloud Agent","8d2f6e58-7506-413d-bf6d-fe1037e6390a","2022-07-12T15:26:49.000+02:00","2026-04-22T10:35:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,DSI,Centreon,VRF_INCONNUE,Production,Linux Server,Outils prod (Monitoring, NMS, gestion de parc)","699.0" +"400644771","361581219","PCB18729.sanef.groupe","PCB18729","BC:0F:F3:3D:F7:EE","10.208.31.14,10.220.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224D42","","'+02:00","2026-04-20T08:47:07.000+02:00","SANEF\HERVIEUX","Cloud Agent","80c36f7b-5e24-49f4-acae-ddc6df6cdf48","2026-02-16T13:19:58.000+02:00","2026-04-22T10:35:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"347403825","339171828","PCB21102.sanef.groupe","PCB21102","E4:60:17:CA:2F:8D","10.205.0.92,192.168.1.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M7","","'+02:00","2026-04-02T09:07:43.000+02:00","SANEF\BENTALEB-ext","Cloud Agent","73495a91-05fd-49e1-af71-3ee56a071d1e","2025-07-30T14:48:55.000+02:00","2026-04-22T11:39:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","245.0" +"356059125","343124000","PCB20703.sanef.groupe","PCB20703","58:1C:F8:EA:66:31","10.101.243.82,192.168.1.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.13.01","5CG3224CSP","","'+02:00","2026-03-30T22:22:19.000+02:00","SANEF\lampin","Cloud Agent","274c2130-fcee-47f5-934b-fe20ad4b7cca","2025-09-01T14:02:31.000+02:00","2026-04-22T11:17:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"351067100","341030765","SVP22614.sanef-int.adds","SVP22614","D0:AD:08:A4:72:E8","10.82.5.29,169.254.85.51","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6649) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764DV","","'+02:00","2026-03-25T07:54:23.000+02:00","Superviseur","Cloud Agent","271c2173-4249-4720-b364-72ab02070b5b","2025-08-13T11:29:23.000+02:00","2026-04-22T10:34:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"413141837","366552051","PCB21317.sanef.groupe","PCB21317","D0:AD:08:AA:50:AD","10.4.31.78","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MF","","'+02:00","2026-04-14T17:52:25.000+02:00","SANEF\nowak-ext","Cloud Agent","c0722c92-7884-4173-a95f-aa78bc29dcf9","2026-04-02T15:25:29.000+02:00","2026-04-22T10:34:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"380788141","353378282","PCB22344.sanef.groupe","PCB22344","D0:AD:08:A3:E6:DC","10.252.42.131","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQ7","8CC3502YQ7","'+02:00","2026-04-18T20:41:04.000+02:00","SANEF\BABUS","Cloud Agent","5688a4e2-01bb-428d-8819-17b6feef5c88","2025-12-02T11:26:12.000+02:00","2026-04-22T10:34:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"366364463","347361807","MTR-5J775R3","MTR-5J775R3","90:8D:6E:8E:1D:C0","10.101.246.209","fe80::4304:b0fe:73e7:b92b","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","5J775R3","","'+02:00","2026-04-22T02:32:55.000+02:00","Skype","Cloud Agent","9f2965ec-8298-44a4-ba5e-6ccd06ae0e9e","2025-10-08T11:48:54.000+02:00","2026-04-22T10:34:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"350795419","340901851","PCB25832.sanef.groupe","PCB25832","28:95:29:1A:F7:5C","10.205.0.169,10.255.2.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTX","","'+02:00","2026-04-17T14:57:29.000+02:00","SANEF\KHERBAHACHACHE","Cloud Agent","6bc84919-f5cf-47cf-ad99-a09a7b306f3f","2025-08-12T12:00:02.000+02:00","2026-04-22T10:34:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"368890436","348257494","PCB17234.sanef.groupe","PCB17234","84:3A:5B:AA:22:5E","10.220.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T39 Ver. 01.16.00","5CG13365HZ","","'+02:00","2026-04-15T07:51:12.000+02:00","SANEF\guillet","Cloud Agent","d5a6e753-096f-47e5-8488-cbbd2b8e2f49","2025-10-15T15:35:06.000+02:00","2026-04-22T10:34:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"270620850","299995302","SVP21038.sanef-int.adds","SVP21038","D0:AD:08:A3:7B:38","10.152.2.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX3","","'+02:00","2026-04-13T15:36:38.000+02:00","Superviseur","Cloud Agent","d3d93db6-27cc-4379-84d0-f49e05a0c9b1","2024-10-07T16:54:41.000+02:00","2026-04-22T10:34:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"397950357","360470234","PCB20611.sanef.groupe","PCB20611","BC:0F:F3:3D:D7:DA","10.205.0.208,10.101.243.76","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQJ","","'+02:00","2026-04-03T09:07:57.000+02:00","SANEF\omahony","Cloud Agent","f92101d4-b94e-48cd-9937-68578c6568f1","2026-02-05T13:09:09.000+02:00","2026-04-22T10:34:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"350779189","340862368","PCB25799.sanef.groupe","PCB25799","28:95:29:1B:32:4E","10.205.0.82,192.168.1.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTB","","'+02:00","2026-04-16T15:26:05.000+02:00","marc.douis@bipandgo.com","Cloud Agent","5c88c9ab-8e78-4ff0-a07a-e1ac42252672","2025-08-12T10:51:54.000+02:00","2026-04-22T11:17:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"362607255","345801428","PCB25772.sanef.groupe","PCB25772","F8:ED:FC:AB:12:71","10.4.31.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVP","","'+02:00","2026-04-20T09:10:43.000+02:00","SANEF\bouche","Cloud Agent","a2600324-2974-48b1-b558-a33a3a6dfb2e","2025-09-24T13:52:27.000+02:00","2026-04-22T10:34:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"370439767","348900040","vmdtrac02.recette.adds","VMDTRAC02","00:50:56:9C:99:24","10.45.17.5","fe80::e012:8fec:9fa:6925","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 06 d2 00 39 6c c3-08 be 27 d0 95 f2 17 5e","NoAssetTag","'+02:00","2026-04-16T17:35:44.000+02:00","supwindev","Cloud Agent","5623f886-29f5-48d3-a1b9-40cafe9c5e35","2025-10-21T14:39:04.000+02:00","2026-04-22T10:34:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"305189609","322675309","vpsicardp1.sanef-int.adds","VPSICARDP1","00:50:56:94:AE:16","10.44.6.195","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4297) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 14 65 dd d4 bd 06 4a-17 74 96 4a 24 ac 65 00","NoAssetTag","'+02:00","2025-11-12T15:59:31.000+02:00","SANEF-INT\b03987","Cloud Agent","0dcf0db7-9e11-482d-a1ad-c2f2bf321f3a","2025-03-04T16:34:10.000+02:00","2026-04-22T10:34:24.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Production,MIVISU,Cloud Agent,OS-WIN-SRV DYN","868.0" +"380043837","353070318","DAI22947.sanef-int.adds","DAI22947","28:C5:C8:41:A2:86","10.207.70.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC4271YWC","","'+02:00","2025-12-11T12:54:03.000+02:00","DAIUSER","Cloud Agent","983068fd-f0fb-473c-9844-ba5d9f29a81d","2025-11-28T12:38:06.000+02:00","2026-04-22T10:34:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"234569455","262099083","vrechatre1.sanef-rec.fr","","00:50:56:9c:f0:7a","10.45.11.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 72 3c 45 55 1f 05-e3 f8 1c 54 2a bc f0 74","No Asset Tag","'+02:00","2026-03-25T12:20:47.000+02:00","cybadmsys","Cloud Agent","4bbf0e2b-df4d-49e9-a1ec-52be59ab5310","2024-05-06T12:58:52.000+02:00","2026-04-22T10:34:14.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,TALEND,Cloud Agent,Linux Server","215.0" +"358425181","344141354","PCB21204.sanef.groupe","PCB21204","D0:AD:08:AA:50:61","10.202.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JZ","","'+02:00","2026-04-02T08:27:08.000+02:00","SANEF\becquet","Cloud Agent","edfc8ec3-5de0-4fb7-b436-909b951378bf","2025-09-10T11:37:19.000+02:00","2026-04-22T10:34:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"130330682","192653555","VPPEAAIPH1.sanef.groupe","VRPEAAIPH1","00:50:56:90:AE:60","10.45.9.50","","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 10 d0 84 31 c1 7f f4-46 f2 8d 8a 6f 3b 39 e9","NoAssetTag","'+02:00","2025-10-13T15:44:39.000+02:00","RECETTE\b03987","Cloud Agent","5a544233-117f-4756-9706-a5670742cf0d","2022-07-05T13:39:45.000+02:00","2026-04-22T10:34:07.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Production,Péage,DSI,VRF_INCONNUE,Alpha,Cloud Agent,Windows Server,Workstation,Obsolete","697.0" +"324421657","330227927","PCB23775.sanef.groupe","PCB23775","6C:0B:5E:EE:83:6C","10.5.31.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4B","","'+02:00","2026-03-31T09:36:14.000+02:00","SANEF\paul","Cloud Agent","b7d30ca0-fe1b-4c4f-8649-d9d035e954ac","2025-05-13T14:26:34.000+02:00","2026-04-22T11:31:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","147.0" +"131401795","193422093","lamaprac1.sanef.groupe","","00:17:A4:77:0C:B8, 00:17:A4:77:0C:B4, 00:17:A4:77:0C:B0, 00:17:A4:77:0C:BC","192.168.17.120,10.43.4.130,169.254.104.213,10.41.40.50,10.41.40.51,10.41.40.59,10.43.40.50","fe80::217:a4ff:fe77:cb8,fe80::217:a4ff:fe77:cb4,fe80::217:a4ff:fe77:cb0,fe80::217:a4ff:fe77:cbc","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ35002DJ","","'+02:00","2024-06-04T14:00:14.000+02:00","cybreconcile","Cloud Agent","a6bf3a46-ae5a-4539-ab4c-a30e626174c3","2022-07-13T10:09:09.000+02:00","2026-04-22T10:33:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,DEX,Sextan,Obsolete,log4j,VRF_TRAFIC_DC,Production,Trafic,Sans","692.0" +"381903284","353724211","PCB22312.sanef.groupe","PCB22312","D0:AD:08:A3:7C:69","10.252.42.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZX","","'+02:00","2026-03-30T07:04:53.000+02:00","SANEF\berbara","Cloud Agent","6b7b47d9-0ebf-4fb4-8951-619423fc9b22","2025-12-05T13:28:46.000+02:00","2026-04-22T10:33:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"313110685","325672444","vraiiavid2.sanef.groupe","VRAIIAVID2","00:50:56:82:73:AB","10.41.79.101","fe80::605c:5deb:7300:3b47","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2500","Intel(R) Xeon(R) CPU E5-2640 0 @ 2.50GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 48 62 63 d0 e7 dd-34 a5 72 ff 0a 7a 4e ec","NoAssetTag","'+02:00","2026-02-16T18:35:13.000+02:00","SANEF.GROUPE\tbaad-ext@sanef.com","Cloud Agent","d4cac81e-8574-4b09-bda6-21baecfb35b8","2025-04-02T09:57:45.000+02:00","2026-04-22T11:29:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Péage,VRF_VIDEO,Recette,OS-WIN-SRV DYN,Cloud Agent","339.0" +"364984841","346727843","PCV21523.sanef-int.adds","PCV21523","D0:AD:08:A3:E6:CE","10.87.14.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YSN","","'+02:00","2026-04-15T20:01:36.000+02:00","Operateur","Cloud Agent","306455ba-cca1-4ee6-8ee4-a985c5ec378e","2025-10-02T15:33:42.000+02:00","2026-04-22T10:33:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"381711057","353639420","spbckamag8.sanef.groupe","","6c:29:d2:30:51:04, 6c:29:d2:30:51:05","10.42.16.103,10.43.1.41","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192294","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3P","Unknown","'+02:00","2025-12-04T18:02:10.000+02:00","root","Cloud Agent","b33873db-0da1-43e7-9af7-ce8570252f12","2025-12-04T17:34:56.000+02:00","2026-04-22T10:33:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0" +"223439899","255202978","ls-abbeville-nord","LS-ABBEVILLE-NO","00:50:56:90:F1:65","10.182.6.20","fe80::5a01:eeb6:bef6:5074","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 f4 66 71 f6 79 1d-6c ba fa 03 72 9a 89 af","NoAssetTag","'+02:00","2026-02-17T11:36:24.000+02:00","svpadmin","Cloud Agent","39b3ae09-7926-4c85-ac97-58b3bde4771a","2024-03-19T18:10:05.000+02:00","2026-04-22T10:33:46.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,SVP,Péage,Cloud Agent,Windows Server,High,DEX","508.0" +"411392831","365636868","OSA20987.sanef-int.adds","OSA20987","BC:0F:F3:87:70:A3","10.100.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LMQ","","'+02:00","2026-04-14T12:58:28.000+02:00","Superviseur","Cloud Agent","903cafc6-5ce7-4bc8-b2f5-6ebbd0a8e940","2026-03-25T16:20:25.000+02:00","2026-04-22T10:33:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"322341389","329422314","PCB22912.sanef.groupe","PCB22912","D0:AD:08:A3:E6:5F","10.149.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQX","8CC3502YQX","'+02:00","2026-04-13T15:08:45.000+02:00","SANEF\fialkowski","Cloud Agent","d05e0804-63d6-4191-8634-2e9482d8ebf8","2025-05-06T09:45:46.000+02:00","2026-04-22T10:33:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"223188722","255081330","ls-beaumont","LS-BEAUMONT","00:50:56:90:17:24","10.112.3.20","fe80::e0c1:b4ce:df4:51d1","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 c6 3a 91 1c 02 55-4d 3f 39 0f 5b f5 31 77","NoAssetTag","'+02:00","2026-04-02T10:37:51.000+02:00","svpadmin","Cloud Agent","eec432e4-5fcc-40e3-99d5-7e018b0eb3c3","2024-03-18T18:17:53.000+02:00","2026-04-22T10:33:31.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN,High,Production,Péage","509.0" +"407162519","363957723","vrpctatsf2.recette.adds","VRPCTATSF2","00:50:56:9C:86:22","10.45.13.198","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","65535","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 31 e3 6e 23 88 2d-65 e7 cd 76 63 f3 da 8d","NoAssetTag","'+02:00","2026-03-09T16:28:52.000+02:00","Administrator","Cloud Agent","102df9c4-ada5-46ac-aead-aa686922876c","2026-03-09T16:32:28.000+02:00","2026-04-22T10:33:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","253.0" +"383506473","354490601","PCB17787.sanef.groupe","PCB17787","D0:AD:08:8A:40:F7","10.100.39.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y4B","","'+02:00","2026-04-15T08:48:12.000+02:00","SANEF\ferrel","Cloud Agent","aee48f8d-ee48-4a25-8a61-ff16eaf10697","2025-12-12T17:19:38.000+02:00","2026-04-22T10:33:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"320968788","328823985","PCB24044.sanef.groupe","PCB24044","EC:4C:8C:C6:1A:24","10.205.0.92,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDG","","'+02:00","2026-04-20T08:25:42.000+02:00","SANEF\BARREIRA","Cloud Agent","97e18297-656f-4dc9-ac89-f85846722f84","2025-04-30T12:12:19.000+02:00","2026-04-22T10:33:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"354600307","342464674","PCB20700.sanef.groupe","PCB20700","BC:0F:F3:3D:08:E8","10.101.243.65","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.20.00","5CG3224DQK","","'+02:00","2026-04-20T09:10:58.000+02:00","robin.mignot@sanef.com","Cloud Agent","51aafeb8-8449-4a82-9ab7-368a474d1625","2025-08-26T12:24:05.000+02:00","2026-04-22T10:33:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"343089288","337765210","PCB20716.sanef.groupe","PCB20716","58:1C:F8:EA:00:79","10.101.243.125,10.255.4.251","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3Z","","'+02:00","2026-04-15T17:17:21.000+02:00","SANEF\LEGOURRIEREC","Cloud Agent","b43c106c-ee80-46e6-a05c-7608bd3f1962","2025-07-18T10:23:57.000+02:00","2026-04-22T11:42:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"372963503","349961268","PSX18558.sanef-int.adds","PSX18558","30:13:8B:6C:5B:78","10.100.40.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TH","","'+02:00","2026-02-17T16:15:27.000+02:00","UserSextan","Cloud Agent","e47f8b0e-8e64-4ac2-b7ef-a6f17fc6c045","2025-10-30T14:02:37.000+02:00","2026-04-22T10:32:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"186249269","236697336","ls-spare-eco","LS-SPARE-ECO","00:50:56:82:11:9E","10.4.2.253","fe80::50f4:ac3e:5ab1:1c97","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 2e 5e ce 74 bc 1f-9e 88 09 f5 12 58 b5 26","NoAssetTag","'+02:00","2026-02-16T10:36:12.000+02:00","gare","Cloud Agent","d855f860-d647-4734-b1b8-927d9c1edfb0","2023-09-05T16:07:44.000+02:00","2026-04-22T10:32:56.000+02:00","64-Bit","4","SCA,VM,GAV","OS-WIN-SRV DYN,Péage,DEX,SVP,Cloud Agent","681.0" +"340176500","336524040","PCB21287.sanef.groupe","PCB21287","30:F6:EF:A3:FE:85","10.205.0.134,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKH","","'+02:00","2026-04-20T09:09:43.000+02:00","SANEF\FRARMA","Cloud Agent","400e3e29-7cb6-46dd-afdb-d2510b825a8c","2025-07-08T16:47:10.000+02:00","2026-04-22T11:21:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"321562826","329077094","PCB23679.sanef.groupe","PCB23679","6C:0B:5E:EE:A3:3B","10.105.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBX","","'+02:00","2026-03-31T07:31:09.000+02:00","SANEF\VERET","Cloud Agent","6744b22a-d7fa-4795-bbb5-3241e15d3879","2025-05-02T11:24:44.000+02:00","2026-04-22T10:32:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"390278077","357581169","PCB23709.sanef.groupe","PCB23709","C8:6E:08:88:FD:8D","10.255.3.218,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8Q","","'+02:00","2026-03-30T22:04:26.000+02:00","SANEF\HARDY","Cloud Agent","f4cc953c-2f2c-4bdb-b134-498a4c954738","2026-01-09T18:34:41.000+02:00","2026-04-22T11:43:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"173073664","227646812","vdbocjump1.recette.adds","VDBOCJUMP1","00:50:56:9C:B2:06","10.45.8.3","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c ea 14 1d 7d 6d d5-dd cf 67 59 18 59 44 34","NoAssetTag","'+02:00","2026-04-13T16:54:28.000+02:00","RECETTE\ap01072","Cloud Agent","151d07cb-b55c-4807-a820-28731e5d429e","2023-06-05T14:24:31.000+02:00","2026-04-22T10:32:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Recette,OS-WIN-SRV DYN,Flux Libre,Cloud Agent,Windows Server,flux_libre","256.0" +"347834883","339384743","PCB24026.sanef.groupe","PCB24026","EC:4C:8C:C0:1A:6B","10.205.0.166,10.255.2.215","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDH","","'+02:00","2026-03-30T09:43:20.000+02:00","SANEF\BOYADJIAN","Cloud Agent","82ef07bb-546c-4545-87d6-cbd6079d5bc6","2025-07-31T11:37:05.000+02:00","2026-04-22T10:32:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"204326479","246307064","vpcybapsm4.sanef-int.adds","VPCYBAPSM4","00:50:56:82:03:D2","10.44.1.73","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 02 4a be 22 aa ad 74-25 a1 7d 86 e9 7b a1 bd","NoAssetTag","'+02:00","2026-03-26T08:54:14.000+02:00","kmoad-ext","Cloud Agent","76e208ba-f603-49b7-a277-4261fbfa65cb","2023-12-14T16:26:36.000+02:00","2026-04-22T10:32:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,CyberArk","56.0" +"326134718","331288786","vposapapp1.sanef.groupe","","00:50:56:90:0c:7d","10.41.20.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","39952","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 71 17 72 e1 8f 01-2f b0 da 31 86 62 f6 bb","No Asset Tag","'+02:00","2026-03-04T07:39:03.000+02:00","cybreconcile","Cloud Agent","542cb2d0-bc99-41ff-ad1d-9179f9349ee4","2025-05-21T06:58:46.000+02:00","2026-04-22T10:32:12.000+02:00","x86_64","2","SCA,VM,GAV","Production,Péage,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","141.0" +"222290141","254684659","vibotcach1.sanef.groupe","","00:50:56:90:83:91","10.41.23.138","fe80::250:56ff:fe90:8391","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","13745","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 46 63 33 70 94 5a-1b fd bf 36 e5 9b 6f d8","No Asset Tag","'+02:00","2026-03-18T13:02:16.000+02:00","cybreconcile","Cloud Agent","613c7371-b7b2-4f1a-85eb-f895cb5a102e","2024-03-14T15:04:48.000+02:00","2026-04-22T10:32:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,flux_libre,FreeFlow,Production,Cloud Agent,Linux Server","140.0" +"228426057","257530556","ls-farebersviller","LS-FAREBERSVILL","00:50:56:90:62:5E","10.41.2.116","fe80::9aef:78a3:c424:bc0f","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 6b 4a 84 a6 a4 a3-ff d5 4d 03 fd 82 6a 34","NoAssetTag","'+02:00","2026-04-02T14:06:27.000+02:00","svpadmin","Cloud Agent","71424087-4260-42a8-aaaf-da0bc282fa68","2024-04-08T12:06:26.000+02:00","2026-04-22T10:32:00.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Péage,SVP,VRF_PEAGE_DC,Production,High,DEX","680.0" +"392590176","358313681","vrdsiaada1.recette.adds","VRDSIAADA1","00:50:56:9C:DA:47","10.45.0.144","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c b9 28 69 44 67 5f-b1 03 6d c6 d6 74 f3 fb","NoAssetTag","'+02:00","2026-04-20T16:11:34.000+02:00","RECETTE\a03987","Cloud Agent","69a9d751-9e52-4ef3-832d-99e288141cf9","2026-01-16T10:37:52.000+02:00","2026-04-22T10:31:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","52.0" +"305549366","322795680","vpgesbref1","","00:50:56:9c:b0:29","10.46.33.30","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f1 f8 ac 77 86 d1-87 e7 e6 08 00 3b 7d 31","No Asset Tag","'+02:00","2026-02-24T12:53:58.000+02:00","cybsecope","Cloud Agent","b787ffe4-7fd9-4005-b101-b8ca88e239c8","2025-03-05T19:51:45.000+02:00","2026-04-22T10:31:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Production,Linux Server,Cloud Agent,BDD","144.0" +"335004263","336780127","vrresardp1.recette.adds","VRRESARDP1","00:50:56:9C:78:05","10.45.8.163","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","4095","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 88 73 b3 94 23 6d-f4 43 eb 06 ef f2 7e d4","NoAssetTag","'+02:00","2026-04-21T00:30:22.000+02:00","Administrateur","Cloud Agent","525fb1c0-5e6c-4ef2-bf02-ce910310e284","2025-06-20T15:43:25.000+02:00","2026-04-22T10:31:50.000+02:00","64-Bit","2","SCA,VM,GAV","Cloud Agent,OS-WIN-SRV DYN,Radius,Recette","52.0" +"333991638","333993869","VRBURXBAN4.sanef.groupe","VRBURXBAN4","00:50:56:82:8A:02","10.30.4.4","fe80::ae8c:868a:cda4:f2f8","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 24 3a 2f a3 e9 67-0c d7 de b5 39 be 72 7c","NoAssetTag","'+02:00","2026-01-28T17:32:22.000+02:00","","Cloud Agent","5c86a922-4547-459a-bc79-42aa6a593381","2025-06-17T11:38:21.000+02:00","2026-04-22T10:31:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","347.0" +"367245149","347681437","DAI20950.sanef-int.adds","DAI20950","BC:0F:F3:87:6F:AF","10.100.70.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LLP","","'+02:00","2025-11-13T18:21:18.000+02:00","DAIUSER","Cloud Agent","a9941a36-3c7b-4650-b1b4-a82334490419","2025-10-10T14:40:21.000+02:00","2026-04-22T10:31:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"236303036","264488390","lpemvaste1","","00:17:a4:77:1c:48, 00:17:a4:77:1c:44","192.168.102.101,192.168.101.101","fe80::217:a4ff:fe77:1c48,fe80::217:a4ff:fe77:1c44","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000709","","'+02:00","2025-06-19T10:30:57.000+02:00","sanefmaj","Cloud Agent","c7591f06-e641-4961-aa38-3f79afcde08c","2024-05-13T14:57:35.000+02:00","2026-04-22T10:31:39.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,PCI Bunker EMV,EMV,PCI Bunker EMV - VLAN Stecard v17,Cloud Agent,Linux Server","668.0" +"324956494","330445994","PCB20659.sanef.groupe","PCB20659","58:1C:F8:E9:51:A1","10.255.2.225","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG3224DSM","","'+02:00","2026-03-30T08:48:54.000+02:00","SANEF\menardf","Cloud Agent","5d90b62b-4b5e-4e10-ac79-e83a41e8f70a","2025-05-15T10:37:09.000+02:00","2026-04-22T10:31:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"139157910","198270158","vmamphtp1.sanef.groupe","","00:50:56:82:6D:A2, 00:50:56:82:4A:D4, 00:50:56:82:76:04","10.41.40.35,10.41.40.37,10.41.40.38,10.43.40.35,10.43.4.35","fe80::250:56ff:fe82:6da2,fe80::250:56ff:fe82:4ad4,fe80::250:56ff:fe82:7604","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 78 5e 41 48 cd 66-58 8b 3e 5e c8 9e c5 ec","No Asset Tag","'+02:00","2024-02-13T13:59:34.000+02:00","cybreconcile","Cloud Agent","40de57c4-09f4-4a7d-9365-ecf0d6008fbd","2022-09-07T14:24:58.000+02:00","2026-04-22T10:31:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,Amelie,DEX,log4j,Trafic,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Production","349.0" +"367200068","347661226","PCB16430.sanef.groupe","PCB16430","E0:70:EA:C0:0D:10","10.100.39.40","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP ProBook 630 G8 Notebook","8","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.23.00","5CD14383YW","","'+02:00","2026-04-17T13:38:44.000+02:00","SANEF\SALUR-ext","Cloud Agent","a98a3c39-c0c8-4ddf-81bc-79b462d9af8f","2025-10-10T11:21:57.000+02:00","2026-04-22T10:31:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"176394880","229970025","vpdaibctc1","VPDAIBCTC1","00:50:56:90:C9:BA","10.41.70.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 0c ea f8 88 c9 a3-0c c9 67 e7 c3 0d 71 a2","NoAssetTag","'+02:00","2026-04-15T15:07:54.000+02:00","Administrateur","Cloud Agent","adc2e063-c3db-4fd2-98f4-8674b6bc2afa","2023-06-29T10:25:47.000+02:00","2026-04-22T10:31:16.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,DAI","484.0" +"176257351","229856102","PCB20674.sanef.groupe","PCB20674","BC:0F:F3:3D:28:16","10.205.0.87,10.26.1.115","fe80::b4a1:b642:2c3:534e","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.13.01","5CG3224DSP","","'+02:00","2026-04-20T09:01:11.000+02:00","SANEF\bacheletj","Cloud Agent","22b10833-62a3-4cd0-9728-cfa7b41fb54b","2023-06-28T15:00:19.000+02:00","2026-04-22T10:31:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"397921252","360471839","PCB18413.sanef.groupe","PCB18413","84:69:93:E1:8A:7F","10.101.243.146","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724CR","","'+02:00","2026-04-13T15:03:02.000+02:00","SANEF\MARGUIER","Cloud Agent","f50afb37-41ea-40d2-aef6-294b93bc3a89","2026-02-05T13:22:48.000+02:00","2026-04-22T10:31:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"180272387","232737900","MTR-1G1CXM3","MTR-1G1CXM3","A4:BB:6D:95:C7:24","10.100.32.209","fe80::e490:3854:1bf9:9664","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","1G1CXM3","","'+02:00","2026-04-22T02:33:18.000+02:00","Skype","Cloud Agent","8e57647b-4f93-48b9-bbc6-111a35c5365d","2023-07-27T17:51:00.000+02:00","2026-04-22T10:31:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"270583136","299979358","vpiadapki4.sanef-int.adds","VPIADAPKI4","00:50:56:9A:FB:78","10.44.3.13","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1a af fb 7d 14 5f b2-d5 c7 34 7e c6 1f a3 34","NoAssetTag","'+02:00","2026-03-23T13:04:01.000+02:00","SANEF-INT\A17402","Cloud Agent","53980d58-bdf2-4a52-9124-9104d28d2671","2024-10-07T14:44:16.000+02:00","2026-04-22T10:31:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Gestion_PKI,Production,DSI,OS-WIN-SRV DYN","253.0" +"357895561","343914997","PCB21137.sanef.groupe","PCB21137","48:EA:62:C3:70:61","10.101.243.111","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HW2","","'+02:00","2026-04-20T09:13:59.000+02:00","SANEF\THOUVENOT","Cloud Agent","c44ea5df-e795-4ef9-bc05-bb5637bcc6c0","2025-09-08T16:02:58.000+02:00","2026-04-22T11:34:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","333.0" +"364919240","346687626","PCV18560.sanef-int.adds","PCV18560","30:13:8B:6C:5B:5F","10.100.7.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TC","","'+02:00","2026-04-22T09:16:32.000+02:00","Operateur","Cloud Agent","078ab02d-953d-4dc0-b959-50be29dcc960","2025-10-02T10:03:54.000+02:00","2026-04-22T10:30:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"364961612","346701852","PCV21626.sanef-int.adds","PCV21626","D0:AD:08:A4:4E:4C","10.155.7.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711KJ","","'+02:00","2026-04-20T15:17:16.000+02:00","Operateur","Cloud Agent","05be2ac0-2987-4364-b6ae-ff1b7ceeea7a","2025-10-02T12:10:54.000+02:00","2026-04-22T10:30:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"411397277","365647003","PCB25769.sanef.groupe","PCB25769","F8:ED:FC:AB:F1:E0","10.255.3.208,10.101.243.166","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CS7","","'+02:00","2026-04-20T09:04:44.000+02:00","SANEF\MARTIN","Cloud Agent","4cd8d219-3c29-4c82-8b68-2991a15eb1ca","2026-03-25T17:38:34.000+02:00","2026-04-22T11:35:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"323213012","329817616","PCB23688.sanef.groupe","PCB23688","6C:0B:5E:EE:A3:94","10.5.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBS","","'+02:00","2026-04-20T08:33:42.000+02:00","SANEF\perardelle","Cloud Agent","a44d591d-4975-4793-b43b-b762d641b976","2025-05-09T14:12:30.000+02:00","2026-04-22T10:30:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"180099540","232621475","vdosapsrv1.sanef-rec.fr","","00:50:56:9c:8e:b5","10.45.9.66","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c e0 75 22 fd e2 d2-b7 6f 6f a8 05 e6 fe c7","No Asset Tag","'+02:00","2026-03-03T15:14:48.000+02:00","cybsupsys","Cloud Agent","c192df7b-6e91-4547-b0f1-e0e695a33d0a","2023-07-26T17:29:11.000+02:00","2026-04-22T10:30:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,DEX,Cloud Agent,Linux Server","140.0" +"372434228","349725324","PCB24185.sanef.groupe","PCB24185","10:B6:76:97:D4:E3","10.4.31.90","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLW","","'+02:00","2026-04-17T17:04:40.000+02:00","SANEF\demet-ext","Cloud Agent","77754d3b-0ef4-400f-a15d-475297b4c2e7","2025-10-28T15:11:40.000+02:00","2026-04-22T11:40:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"249286903","288667197","vrsvpasan3","VRSVPASAN3","00:50:56:9C:C3:BF","10.45.9.175","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c b4 8f 39 cb 1a be-0d 31 b3 bb 36 e1 e3 f6","NoAssetTag","'+02:00","2026-02-17T15:27:07.000+02:00","svpadmin","Cloud Agent","a5998af8-4925-44ea-8a8a-22e37cb37e7f","2024-07-08T12:33:14.000+02:00","2026-04-22T10:30:18.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Recette,SVP","500.0" +"223190130","255082708","OSA20934.sanef-int.adds","OSA20934","BC:0F:F3:87:6F:98","10.100.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LKY","","'+02:00","2026-04-09T08:30:39.000+02:00","Superviseur","Cloud Agent","dbc10f92-d610-4852-a179-01215657e6d3","2024-03-18T18:43:59.000+02:00","2026-04-22T11:45:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"321548463","329074484","PCB21535.sanef.groupe","PCB21535","D0:AD:08:A7:27:E2","10.4.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSP","8CC3502YSP","'+02:00","2026-03-29T09:12:46.000+02:00","SANEF\trevet","Cloud Agent","d28dc6ce-7e21-4e8c-886f-66175edb1f3b","2025-05-02T10:47:10.000+02:00","2026-04-22T10:30:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"165493903","221784823","vrdsiatse1.recette.adds","VRDSIATSE1","00:50:56:82:B5:25","10.45.7.39","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 9b 11 67 df 1d ce-e1 d7 8d 01 19 6a 4a af","NoAssetTag","'+02:00","2026-03-25T15:04:13.000+02:00","RECETTE\b03987","Cloud Agent","756cced4-e515-4cae-a668-829bb6811dfd","2023-04-05T16:05:59.000+02:00","2026-04-22T10:30:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","AgileTime,Recette,DRH,OS-WIN-SRV DYN,Cloud Agent,Windows Server","249.0" +"174238444","228465462","sppeaanvr22","SPPEAANVR22","20:67:7C:D8:04:71","10.41.7.121","fe80::2083:cdc6:4167:4de0","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ83804D4","","'+02:00","2026-02-06T13:09:32.000+02:00","Administrateur","Cloud Agent","6541813f-8a1d-4874-ae0a-3b72090bbdf0","2023-06-13T11:55:39.000+02:00","2026-04-22T10:30:10.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,NVR,Cloud Agent,Windows Server","523.0" +"403878605","362597201","PCV20917.sanef-int.adds","PCV20917","30:13:8B:6C:60:26","10.100.7.69","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q80","","'+02:00","2026-02-17T13:10:35.000+02:00","Operateur","Cloud Agent","3c9526fa-ed46-4426-bcb1-45cb20489ffa","2026-02-24T17:58:20.000+02:00","2026-04-22T10:30:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"311198745","331288572","vrgawagtw1.sanef-rec.fr","","00:50:56:9c:f9:9b","192.168.19.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c c5 ca c7 c2 fe 3c-05 b5 fa 43 02 8b 07 ea","No Asset Tag","'+02:00","2026-02-11T13:15:26.000+02:00","root","Cloud Agent","f2df81d0-fd0d-4e6d-8293-2d347f1fffc5","2025-03-26T20:03:06.000+02:00","2026-04-22T10:29:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Plateforme d'échange,Recette,Linux Server,Cloud Agent","58.0" +"343130510","337790143","PCB23638.sanef.groupe","PCB23638","6C:0B:5E:ED:82:07","10.152.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L75","","'+02:00","2026-04-20T08:58:11.000+02:00","SANEF\DONASCIMENTO","Cloud Agent","015dae00-7347-42c5-b7fe-e46336148280","2025-07-18T14:19:22.000+02:00","2026-04-22T10:29:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"327519043","333625855","vpgeobody1.sanef.groupe","VPGEOBODY1","00:50:56:90:CB:A2","10.41.40.171","fe80::1d43:83e0:d130:7fb2","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.18993) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 06 1e 10 6f ea d9-34 b7 13 54 26 6c 95 c7","NoAssetTag","'+02:00","2025-12-18T14:37:05.000+02:00","VPGEOBODY1\CYBSUPAPP","Cloud Agent","662e6d27-f3ab-4091-a0e2-0fcec5655f2e","2025-05-27T11:14:20.000+02:00","2026-04-22T10:29:55.000+02:00","64-Bit","2","SCA,VM,GAV","Obsolete,VRF_TRAFIC_DC,Trafic,Production,Cloud Agent,Géolocalisation,BDD-POS DYN,OS-WIN-SRV DYN","351.0" +"271287627","300466130","SVP21056.sanef-int.adds","SVP21056","D0:AD:08:A3:7B:60","10.106.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWX","","'+02:00","2026-04-16T05:02:09.000+02:00","Superviseur","Cloud Agent","92b8b64a-874a-4171-88c4-e1b8b793bd9d","2024-10-10T15:57:01.000+02:00","2026-04-22T10:29:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"159378661","211975851","VRNMSATSE1","VRNMSATSE1","00:50:56:82:D9:D4","10.43.253.5","fe80::ce5d:60d3:7bb4:3870","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 26 1c 7c b0 2a 2c-ef 34 15 40 53 08 65 35","NoAssetTag","'+02:00","2026-04-13T09:40:32.000+02:00","Administrateur","Cloud Agent","6a3be782-ee9b-40ca-bb8b-a972e8c683d9","2023-02-15T15:21:53.000+02:00","2026-04-22T10:29:53.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,DSI,OS-WIN-SRV DYN,Recette,U2000","498.0" +"139156912","198270160","vmampgtc2","","00:50:56:82:2C:BA, 00:50:56:82:1A:8B, 00:50:56:82:54:84","10.41.40.86,10.41.40.87,10.43.4.86,10.43.40.86,10.43.40.87","fe80::250:56ff:fe82:2cba,fe80::250:56ff:fe82:1a8b,fe80::250:56ff:fe82:5484","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 71 54 08 b5 2e bc-ae be e6 6f 45 96 49 92","No Asset Tag","'+02:00","2025-10-08T11:58:20.000+02:00","cybreconcile","Cloud Agent","d152cb18-e02a-415b-8806-c7afdf242069","2022-09-07T14:23:35.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MIVISU,Trafic,VRF_TRAFIC_DC,Production,Cloud Agent,Linux Server,log4j,Obsolete,DEX","876.0" +"269338854","299222837","vtdsiaquo1.sanef-rec.fr","","00:50:56:90:cb:e0","10.100.16.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 25 7e df 61 65 15-97 23 d2 66 c7 88 34 f4","No Asset Tag","'+02:00","2026-01-06T14:03:16.000+02:00","cybsecope","Cloud Agent","b1250051-e4ae-40d9-9a85-43cbe7743c73","2024-10-01T11:14:57.000+02:00","2026-04-22T10:29:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,OS-LIN-SRV DYN,BDD-ELA DYN,Linux Server,Cloud Agent","141.0" +"322326438","329422562","PCB23586.sanef.groupe","PCB23586","C8:6E:08:8A:51:01","10.205.0.152,172.20.10.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7S","","'+02:00","2026-04-21T10:52:42.000+02:00","SANEF\chaventres","Cloud Agent","d3212d34-1663-468b-b982-e19df46ff312","2025-05-06T09:49:33.000+02:00","2026-04-22T10:29:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"128593762","191409560","ls-chateau-thierry","LS-CHATEAU-THIE","00:50:56:90:24:45","10.41.2.58","fe80::f71f:7715:e547:2bfe","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 fa 71 c0 52 9a 22-6c ef c5 ef 8c 7e d6 a0","NoAssetTag","'+02:00","2026-03-24T12:51:42.000+02:00","svpadmin","Cloud Agent","569e56c1-7a4e-4fc9-ba76-92a029d74c9d","2022-06-21T11:27:23.000+02:00","2026-04-22T10:29:24.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,SVP,OS-WIN-SRV DYN,Production,Péage,High,Windows Server,Cloud Agent,VRF_PEAGE_DC","507.0" +"128622563","191429560","ls-st-omer2","LS-ST-OMER2","00:50:56:90:B2:E7","10.41.2.36","fe80::4280:cdd1:bfe3:dad7","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 20 2c 27 49 fb 5f-b5 6f 1e ee 78 ca 6a 0d","NoAssetTag","'+02:00","2026-03-04T10:33:03.000+02:00","svpadmin","Cloud Agent","a6ae2fa5-f672-43a4-86fc-98793da16e43","2022-06-21T16:56:49.000+02:00","2026-04-22T10:29:19.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,OS-WIN-SRV DYN,Windows Server,VRF_PEAGE_DC,VRF_INCONNUE,DEX,High,Péage,Production,Cloud Agent,Haute","635.0" +"295291112","317082444","vpvsaasic2","","00:50:56:8f:13:64","10.44.200.105","fe80::250:56ff:fe8f:1364","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 00 68 0b 72 0b fa-4d 1a 61 c2 af fb 06 33","No Asset Tag","'+02:00","2026-03-18T14:17:29.000+02:00","reboot","Cloud Agent","34934209-83bd-499c-90d8-93c76d3e8618","2025-01-28T12:10:02.000+02:00","2026-04-22T10:29:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIC,TAG-SIA,Cloud Agent,Linux Server","52.0" +"344395322","338350024","PCB20640.sanef.groupe","PCB20640","BC:0F:F3:3D:08:FA","10.205.0.142,10.101.243.87","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG3224DS6","","'+02:00","2026-04-20T12:37:52.000+02:00","SANEF\DEBREVERN","Cloud Agent","ce39423e-7628-40f0-8fde-55b1a54e60c5","2025-07-23T14:48:58.000+02:00","2026-04-22T11:08:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"201103950","244676640","PCM20931.sanef.groupe","GTC20931","BC:0F:F3:87:6F:8C","10.78.210.20","fe80::4996:10fd:b964:8967","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.3570) 64-Bit","22H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LL7","","'+02:00","2026-04-21T15:29:11.000+02:00","SANEF\ADELINE","Cloud Agent","2648a895-cc00-4788-8f3c-64de76a38d91","2023-11-27T11:53:57.000+02:00","2026-04-22T10:29:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"395594796","359535533","PCB23624.sanef.groupe","PCB23624","C8:6E:08:8A:3C:2F","10.255.4.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5T","","'+02:00","2026-04-20T16:17:35.000+02:00","SANEF\MOULINS","Cloud Agent","0c5a5dca-4995-4ac1-8932-21dd482a2f13","2026-01-28T14:32:14.000+02:00","2026-04-22T11:36:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"238271861","269259134","ls-abbeville-est","LS-ABBEVILLE-ES","00:50:56:90:7E:72","10.41.2.98","fe80::db:ba35:af87:b24a","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 b0 10 18 d2 42 91-12 2a fb ec 8e 58 5a c9","NoAssetTag","'+02:00","2026-03-23T10:05:13.000+02:00","svpadmin","Cloud Agent","b2a25060-8525-4562-bbfd-1ec6b722b6a7","2024-05-21T14:23:07.000+02:00","2026-04-22T11:38:44.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,SVP,Péage,OS-WIN-SRV DYN","507.0" +"374356809","350587947","PCB16337.sanef.groupe","PCB16337","50:81:40:B9:A1:60","10.200.31.75","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.04.02","5CG13363SX","","'+02:00","2026-04-08T18:22:59.000+02:00","SANEF\daoudi-frikel-ext","Cloud Agent","c36e0e96-a398-4772-b3d0-4ffe646ef753","2025-11-05T11:07:37.000+02:00","2026-04-22T10:37:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"322590821","329576098","PCB18400.sanef.groupe","PCB18400","84:69:93:E1:2A:49","10.101.243.85","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724L1","","'+02:00","2026-03-30T12:29:16.000+02:00","SANEF\PACE","Cloud Agent","7d82208c-038a-436c-8fa6-63e39d99f7d9","2025-05-07T11:07:50.000+02:00","2026-04-22T11:43:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"129476951","192043843","vrbipbdec1.sanef.groupe","VRBIPBDEC1","00:50:56:82:F2:6A","10.45.13.163","fe80::387f:db6c:a7bb:6249","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 8d f7 03 30 d7 3d-2f 0b 58 5a ee 11 0b aa","NoAssetTag","'+02:00","2026-02-24T12:36:53.000+02:00","SANEF.GROUPE\tbaad-ext@sanef.com","Cloud Agent","5e8a7776-387c-46b2-a847-b96798868426","2022-06-28T14:40:58.000+02:00","2026-04-22T10:28:32.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Gestion commerciale,Cloud Agent,Windows Server,Recette,BDD-SQL DYN,OS-WIN-SRV DYN,DFIN,INSIDE,VRF_INCONNUE","504.0" +"322101765","329334784","PCB23647.sanef.groupe","PCB23647","6C:0B:5E:EC:DD:05","10.200.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8H","","'+02:00","2026-03-28T18:30:51.000+02:00","SANEF\HAMMADI","Cloud Agent","5d32f982-7bff-4ae0-9330-d01764f2fea0","2025-05-05T14:33:59.000+02:00","2026-04-22T10:20:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"305487413","322754062","PCB22629.sanef.groupe","PCB22629","D0:AD:08:AA:4F:DF","10.107.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DS","","'+02:00","2026-04-09T08:53:04.000+02:00","SANEF\pichard","Cloud Agent","fa51fb2a-ac76-4402-bd0b-381f45087c39","2025-03-05T11:36:06.000+02:00","2026-04-22T10:28:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","50.0" +"143622225","201025557","vpemvaldap1.sanef.groupe","","00:50:56:82:0b:a2","192.168.100.127","fe80::250:56ff:fe82:ba2","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 d2 4d cb d3 26 9f-c2 1c 8b 6d 00 9b 1c fb","No Asset Tag","'+02:00","2024-09-05T11:43:35.000+02:00","root","IP Scanner, Cloud Agent","2228916e-04d4-4923-adbc-66783544dec8","2022-10-11T17:32:31.000+02:00","2026-04-22T10:28:07.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,BDD-POS DYN,PCI Bunker EMV - VLAN Supervision/Admin,Cloud Agent,Linux Server,VRF_INCONNUE,PCI Bunker EMV,EMV,DEX","287.0" +"174238482","228465676","sppeaanvr24","SPPEAANVR24","98:F2:B3:27:4D:B4","10.41.7.123","fe80::58d4:4d8e:9dbe:e699","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LM0","","'+02:00","2026-02-05T15:05:02.000+02:00","Administrateur","Cloud Agent","55f51f0d-5dcb-47eb-ae9d-4d40338f5f09","2023-06-13T11:58:24.000+02:00","2026-04-22T10:28:03.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,NVR,DEX","523.0" +"173084373","227657349","vdbocbsap1.sanef-rec.fr","","00:50:56:9c:5e:98","10.45.6.39","fe80::250:56ff:fe9c:5e98","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","515467","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 60 80 7d 55 e4 1e-03 07 99 46 7f 09 0b 9d","No Asset Tag","'+02:00","2026-03-11T10:05:08.000+02:00","cybsecope","Cloud Agent","f565c704-8967-4b19-9576-bc489230516a","2023-06-05T16:08:32.000+02:00","2026-04-22T10:27:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Flux Libre,Recette,flux_libre,Cloud Agent,Linux Server","141.0" +"191424454","239728562","vibooaori2.sanef.groupe","","00:50:56:90:ef:9f","10.41.22.209","fe80::250:56ff:fe90:ef9f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 36 fb e6 64 84 b1-4f fa 64 cd 12 1e c4 6e","No Asset Tag","'+02:00","2026-03-16T10:46:53.000+02:00","cybsupemo","Cloud Agent","dff34fb2-5ab0-4ac9-8202-27b31c5f9d7d","2023-10-04T18:05:31.000+02:00","2026-04-22T10:27:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,flux_libre,OS-LIN-SRV DYN,Production,Flux Libre","140.0" +"322344604","329425104","PCB23799.sanef.groupe","PCB23799","6C:0B:5E:EE:93:85","10.200.31.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3F","","'+02:00","2026-03-30T09:54:59.000+02:00","SANEF\DOREE","Cloud Agent","c98b2267-2c24-43ae-b558-1ce73ad358d8","2025-05-06T10:14:04.000+02:00","2026-04-22T10:27:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"175043726","229008771","vpaiiacol1.sanef.groupe","","00:50:56:82:80:08","10.30.11.130","fe80::250:56ff:fe82:8008","Linux / Server","The CentOS Project CentOS 8.2 (2004)","8.2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3939","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 71 a8 76 99 38 10-5a 56 59 67 16 e7 ea ba","No Asset Tag","'+02:00","2024-10-24T08:39:04.000+02:00","cybadmsys","Cloud Agent","27f4df5b-d678-4a76-854f-e96720e739b1","2023-06-19T18:42:15.000+02:00","2026-04-22T10:27:45.000+02:00","x86_64","2","SCA,VM,GAV","Collecte,Obsolete,DSI,Cloud Agent,Linux Server","59.0" +"379334198","352776055","PCB20602.sanef.groupe","PCB20602","BC:0F:F3:3B:D9:25","10.200.31.80","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3P","","'+02:00","2026-04-03T09:14:06.000+02:00","SANEF\vincents","Cloud Agent","0daf4d52-c0a7-4c1e-969b-0b8a2bc79df1","2025-11-25T15:00:39.000+02:00","2026-04-22T10:20:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"319342781","328391943","PCB23620.sanef.groupe","PCB23620","C8:6E:08:8A:45:2B","10.255.3.168","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6Z","","'+02:00","2026-03-30T08:44:41.000+02:00","SANEF\DUTRIAU","Cloud Agent","1188feb3-e825-45dd-9cea-f728ef3bd97e","2025-04-25T10:27:22.000+02:00","2026-04-22T11:00:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"377767567","352193679","PCV20828.sanef-int.adds","PCV20828","30:13:8B:6C:5B:FF","10.12.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q88","","'+02:00","2026-04-21T12:59:57.000+02:00","Operateur","Cloud Agent","4fafe561-ebaf-488a-851c-429e4dfa0f5e","2025-11-19T16:07:06.000+02:00","2026-04-22T10:27:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"387187542","356515207","vmdgest05.recette.adds","VMDGEST05","00:50:56:9C:61:97","10.45.17.135","fe80::82eb:9019:7ac7:4de3","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c e3 2c 7e c8 b4 25-da 41 fc aa 93 da 4f 23","NoAssetTag","'+02:00","2026-04-16T01:34:48.000+02:00","supwindev","Cloud Agent","aa9ff005-bdf3-4b9b-b1ed-11f910feb697","2025-12-31T16:16:45.000+02:00","2026-04-22T10:27:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"359136877","344907763","vprpaangx1.sanef.groupe","","00:50:56:90:a1:66","10.42.0.140","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 a2 e9 6d fd 0c 29-e5 7e e7 75 40 a7 ce d9","No Asset Tag","'+02:00","2026-02-25T15:24:43.000+02:00","cybreconcile","Cloud Agent","17465e5f-6624-458b-8686-1f2032631037","2025-09-12T10:01:58.000+02:00","2026-04-22T11:34:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Péage,MID-NGINX DYN","140.0" +"322061860","329333296","PCB21278.sanef.groupe","PCB21278","30:F6:EF:A3:FE:80","192.168.1.29,10.205.0.112","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3440GJS","","'+02:00","2026-04-03T09:45:42.000+02:00","SANEF\chobriat","Cloud Agent","fbc5aa5f-1258-4b2d-b078-6a8b01f4e468","2025-05-05T14:16:00.000+02:00","2026-04-22T10:27:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"197037005","242639198","vpbckmcse2","VPBCKMCSE2","00:50:56:98:43:1E","192.168.109.5","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8027) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24575","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 18 76 bd 9d d6 d2 33-81 03 03 1a 33 0d 42 1d","NoAssetTag","'+02:00","2026-03-10T10:51:26.000+02:00","Administrator","Cloud Agent","d31c5900-e5df-4445-a5f2-b8c3bd6da3b0","2023-11-02T15:37:27.000+02:00","2026-04-22T11:02:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,BDD-SQL DYN,Gestion SAUVEGARDE,PCI Bunker EMV","347.0" +"335429142","","PCB21284.sanef.groupe","PCB21284","30:F6:EF:A6:93:C0","10.255.1.225","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK7","","'+02:00","2026-04-20T16:31:45.000+02:00","SANEF\BESNARD","Cloud Agent","086667bb-02d5-4a86-b0ea-55acc450ec40","2025-06-23T09:58:53.000+02:00","2026-04-22T10:27:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129450969","192026711","vpradbtef1.sanef.groupe","VPRADBTEF1","00:50:56:82:34:0C, 00:50:56:82:77:FC","10.41.91.41,10.41.91.42","fe80::4812:1b2c:3b43:dc2d,fe80::a730:5ed3:3712:4426","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16383","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 43 b3 18 4c d3 2e-02 c8 07 e0 0b c6 a8 4e","NoAssetTag","'+02:00","2026-04-13T09:41:29.000+02:00","Administrateur","Cloud Agent","d9dacd91-5c4b-4b12-abeb-39f6a3e24174","2022-06-28T10:46:37.000+02:00","2026-04-22T10:27:01.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,VRF_INCONNUE,BDD-SQL DYN,OS-WIN-SRV DYN,Production,Cloud Agent,Windows Server,TAIT","370.0" +"160244154","213434437","vpameaoct1","","00:50:56:82:43:9a","10.41.40.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 3a 23 80 47 a1 c1-ef 4d 30 55 c6 7c 7b 40","No Asset Tag","'+02:00","2026-01-21T10:59:29.000+02:00","cybreconcile","Cloud Agent","16907c14-62ff-4640-aee8-6b8cbf3f91db","2023-02-22T16:34:38.000+02:00","2026-04-22T11:38:05.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OCTAN,OS-LIN-SRV DYN,DEX","511.0" +"204587145","246439792","MTR-CBD4804","MTR-CBD4804","6C:3C:8C:56:3C:0A","10.209.32.200","fe80::c1d4:acb4:c070:d24a","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","CBD4804","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","5da89508-59f0-46df-af36-55326403cffc","2023-12-15T23:07:03.000+02:00","2026-04-22T10:27:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"363228698","346032420","PCB18496.sanef.groupe","PCB18496","D0:AD:08:A4:72:D5","10.205.0.27,192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FB","","'+02:00","2026-04-01T09:02:48.000+02:00","SANEF\gaillard-ext","Cloud Agent","0672bb9d-ea4b-4a96-91a0-bb63a6834708","2025-09-26T11:54:59.000+02:00","2026-04-22T10:26:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"377741241","352184805","PCV21507.sanef-int.adds","PCV21507","D0:AD:08:A3:7B:2B","10.12.7.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YXF","","'+02:00","2026-04-02T06:22:44.000+02:00","Operateur","Cloud Agent","b3dfad45-6cb8-486e-9272-dc978660e283","2025-11-19T14:48:29.000+02:00","2026-04-22T10:26:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"309350005","324171921","SVP21504.sanef-int.adds","SVP21504","D0:AD:08:A7:27:AB","10.5.2.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTF","","'+02:00","2026-04-22T07:11:00.000+02:00","Superviseur","Cloud Agent","14b435e5-4f67-4fa7-b864-c5b75f0ecac5","2025-03-19T16:14:47.000+02:00","2026-04-22T10:26:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"128614031","191424524","ls-nordausques","LS-NORDAUSQUES","00:50:56:90:B1:22","10.41.2.35","fe80::a019:9ca3:ec73:2ce3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 aa d5 90 51 c3 49-8d 1a e8 cd 86 84 fd 13","NoAssetTag","'+02:00","2026-03-02T12:33:28.000+02:00","svpadmin","Cloud Agent","83afc5fb-ea9e-49d9-8483-cc5aeffd6fb4","2022-06-21T15:42:13.000+02:00","2026-04-22T10:26:40.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,High,Péage,Production,DEX,Haute,Cloud Agent,OS-WIN-SRV DYN,Windows Server,SVP","634.0" +"223174845","255074776","ls-fresnes","LS-FRESNES","00:50:56:90:80:6E","10.142.2.20","fe80::930f:3940:f50a:f897","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 bf 76 4c 2b e5 2f-06 70 9d cd 1f 5c 45 98","NoAssetTag","'+02:00","2026-03-24T15:09:14.000+02:00","svpadmin","Cloud Agent","1f955a70-b294-480b-926f-c465a8f0a259","2024-03-18T16:52:24.000+02:00","2026-04-22T10:26:40.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,High,Péage,Production,DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN","507.0" +"236303035","264488388","lpemvaste2","","00:17:a4:77:1c:50, 00:17:a4:77:1c:4c","192.168.102.102,192.168.101.102","fe80::217:a4ff:fe77:1c50,fe80::217:a4ff:fe77:1c4c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070A","","'+02:00","2025-08-20T02:42:51.000+02:00","root","Cloud Agent","48a4db20-c5cf-4cec-8d1c-5a586d74072c","2024-05-13T14:57:35.000+02:00","2026-04-22T10:26:34.000+02:00","x86_64","4","SCA,VM,PM,GAV","PCI Bunker EMV,EMV,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17","679.0" +"231861643","259509287","vrcybapvwa1","VRCYBAPVWA1","00:50:56:9C:6E:6C","10.45.11.131","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 0e 70 68 5c 6b c1-67 31 37 52 c2 22 30 4a","NoAssetTag","'+02:00","2026-04-16T11:11:44.000+02:00","Administrator","Cloud Agent","fe3ea62a-3548-479e-b516-f335a3c8b96b","2024-04-23T18:01:23.000+02:00","2026-04-22T10:26:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN","12.0" +"392410566","358213495","vdpataels1.sanef-rec.fr","","00:50:56:9c:a9:de","10.45.9.131","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 50 06 29 fa 6b 92-c6 b7 68 76 36 60 9e 1f","No Asset Tag","'+02:00","2026-04-07T10:20:27.000+02:00","cybadmsys","Cloud Agent","6260bc0c-2644-4456-b0b2-c7744bfea354","2026-01-15T15:04:43.000+02:00","2026-04-22T11:45:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DFIN,ISIS","61.0" +"358116950","344015507","PCV22847.sanef-int.adds","PCV22847","D0:AD:08:A7:27:E6","10.100.7.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YPW","","'+02:00","2026-04-21T12:58:40.000+02:00","Operateur","Cloud Agent","af6edd4c-909e-4151-9e9d-9aacad400220","2025-09-09T12:02:39.000+02:00","2026-04-22T10:26:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"364967263","346712040","PCB21583.sanef.groupe","PCB21583","D0:AD:08:A3:E6:5D","10.5.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQN","8CC3502YQN","'+02:00","2026-04-20T13:47:49.000+02:00","SANEF\glod","Cloud Agent","83240509-74da-42f8-83b3-e6979ed695df","2025-10-02T13:44:14.000+02:00","2026-04-22T10:26:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"240378938","274668324","vibocaprx1.sanef.groupe","","00:50:56:90:14:09","192.168.21.227","fe80::250:56ff:fe90:1409","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 09 69 37 21 af 7e-b7 22 39 52 4b ba 8d 2d","No Asset Tag","'+02:00","2026-03-16T10:41:18.000+02:00","cybreconcile","Cloud Agent","0c5bac1a-0aea-4f6f-9867-7b2c9a202087","2024-05-30T10:36:42.000+02:00","2026-04-22T11:40:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,flux_libre,FreeFlow,Flux Libre,Production","144.0" +"412386089","366130708","PCB22719.sanef.groupe","PCB22719","D0:AD:08:AA:50:5D","10.208.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JV","","'+02:00","2026-04-08T10:52:10.000+02:00","SANEF\roulot","Cloud Agent","8d5f7c89-ad16-486d-87d5-8f6ea76920f4","2026-03-30T13:11:21.000+02:00","2026-04-22T10:26:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"364461654","346502400","PCV21511.sanef-int.adds","PCV21511","D0:AD:08:A7:27:B9","10.217.26.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YND","","'+02:00","2026-04-13T06:51:08.000+02:00","Operateur","Cloud Agent","e615c282-4078-40bb-a12c-85a057f7b8b7","2025-09-30T16:48:26.000+02:00","2026-04-22T10:26:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"186523049","236835850","vpiadawdc3.sanef-int.adds","VPIADAWDC3","00:50:56:9A:D8:9E","10.44.3.6","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1a 32 1c df f4 dd a7-4e 2c a3 85 6f 36 35 03","NoAssetTag","'+02:00","2026-03-24T11:51:57.000+02:00","SANEF-INT\A17402","Cloud Agent","d8fdf8e7-e633-4faa-a7f5-54609464b7bb","2023-09-06T15:59:17.000+02:00","2026-04-22T11:45:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,AD","250.0" +"160222392","213244072","vrsupbmap1.sanef.groupe","","00:50:56:82:b1:ad","10.45.0.198","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 82 1d c5 cf 36 0f-7b 06 b7 a8 c8 f9 f4 74","No Asset Tag","'+02:00","2026-03-11T11:25:54.000+02:00","cybadmsys","Cloud Agent","4fe54dac-8a51-4245-8075-07d26fb341f3","2023-02-22T13:03:42.000+02:00","2026-04-22T10:26:10.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,DSI,flux_libre,Flux Libre,Production","288.0" +"208784156","248752400","vibotatsp1.sanef.groupe","","00:50:56:90:f4:eb","10.41.23.144","fe80::250:56ff:fe90:f4eb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 35 6b 1e ea d8 f9-74 c2 b6 f3 29 18 a7 c8","No Asset Tag","'+02:00","2026-03-18T10:30:12.000+02:00","root","Cloud Agent","d4710f92-cb1c-44d5-953b-527a94b38c0a","2024-01-10T13:43:46.000+02:00","2026-04-22T10:26:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","140.0" +"408007431","364324874","PCB18443.sanef.groupe","PCB18443","70:A8:D3:85:B8:EE","10.205.0.16,172.20.10.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724L9","","'+02:00","2026-04-20T09:19:26.000+02:00","SANEF\hammadou-ext","Cloud Agent","f3b4ee29-93e2-496f-83e9-131a5d4c499f","2026-03-12T17:17:50.000+02:00","2026-04-22T11:47:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"370158037","348777008","PCB21112.sanef.groupe","PCB21112","E4:60:17:CB:7C:8F","10.205.0.141,192.168.8.219","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764F3","","'+02:00","2026-04-16T14:16:47.000+02:00","SANEF\FELOUAT-ext","Cloud Agent","a749b150-fb9d-426d-b31e-edc02ac4476a","2025-10-20T12:42:03.000+02:00","2026-04-22T11:36:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"305327615","322689789","PCB22628.sanef.groupe","PCB22628","D0:AD:08:AA:50:0D","10.107.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764G8","","'+02:00","2026-04-21T11:38:00.000+02:00","SANEF\petriaux","Cloud Agent","c353ba5c-5606-4e4d-9bb3-447be80e8959","2025-03-04T19:28:59.000+02:00","2026-04-22T10:08:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"321058844","328926997","PCB23758.sanef.groupe","PCB23758","6C:0B:5E:EE:83:82","10.105.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H44","","'+02:00","2026-03-30T12:18:37.000+02:00","SANEF\BIGAND","Cloud Agent","e2c426e9-5ac6-41d2-8054-50d19c566841","2025-04-30T17:08:16.000+02:00","2026-04-22T10:25:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"213850235","251125958","sppeaanvr11","SPPEAANVR11","D4:F5:EF:50:56:4D","10.41.7.110","fe80::3639:b9ea:5a49:ec64","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DVB","","'+02:00","2026-02-03T11:07:05.000+02:00","Administrateur","Cloud Agent","6dc6ccce-0687-40ab-ad35-a709772c1ebd","2024-02-05T19:47:01.000+02:00","2026-04-22T10:25:36.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN,DEX","523.0" +"363889479","346366629","PCB21608.sanef.groupe","PCB21608","D0:AD:08:A4:4D:B1","10.12.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JY","8CC34711JY","'+02:00","2026-04-20T12:59:10.000+02:00","SANEF\schmitto","Cloud Agent","a7e39a88-b787-4172-bd6e-f9d4fa55dd31","2025-09-29T13:34:08.000+02:00","2026-04-22T10:25:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"139157943","198270298","vmampmet2","","00:50:56:82:2B:88, 00:50:56:82:21:85, 00:50:56:82:66:C4","10.41.40.78,10.41.40.79,10.43.40.78,10.43.40.79,10.43.4.78","fe80::250:56ff:fe82:2b88,fe80::250:56ff:fe82:2185,fe80::250:56ff:fe82:66c4","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 70 9d 87 5f df 23-cb 06 4c 49 6e b6 8d 73","No Asset Tag","'+02:00","2024-02-14T14:14:42.000+02:00","cybreconcile","Cloud Agent","72fb8c0b-b87a-4c72-b45e-7de93f23ecf1","2022-09-07T14:28:06.000+02:00","2026-04-22T10:25:28.000+02:00","x86_64","5","SCA,VM,PM,GAV","Production,Obsolete,VRF_TRAFIC_DC,OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,log4j,Trafic,MIVISU","878.0" +"197806642","243075126","nvr-spare-sen","NVR-SPARE-SEN","00:50:56:82:1A:CB","10.100.7.252","fe80::7528:d7bc:a9a5:421a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 45 02 72 5f 3f 0e-c8 a3 5c 8b d7 30 bb 82","NoAssetTag","'+02:00","2026-01-28T15:18:36.000+02:00","Administrateur","Cloud Agent","5b15fe79-3ccc-4ba6-9687-d3908f115a35","2023-11-07T11:15:53.000+02:00","2026-04-22T10:25:25.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,NVR","523.0" +"287937932","311537311","vrosapels2.sanef-rec.fr","","00:50:56:9c:33:b0","10.45.9.72","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f2 57 d9 e5 2c 78-d1 5e b5 e1 ad e9 62 81","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","reboot","Cloud Agent","d6e43cba-b9c2-4040-8c1e-b517722e33ce","2024-12-20T13:09:32.000+02:00","2026-04-22T10:25:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server","142.0" +"365237392","346827582","PCV22900.sanef-int.adds","PCV22900","D0:AD:08:A3:E7:8C","10.100.7.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YMW","","'+02:00","2026-03-30T09:56:49.000+02:00","Operateur","Cloud Agent","ee7ca3e0-a218-487d-b893-f9f04f90170c","2025-10-03T14:31:50.000+02:00","2026-04-22T11:15:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"127940862","190974340","vpemvatse2.sanef.groupe","VPEMVATSE2","00:50:56:82:49:D5","192.168.100.123","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 a4 61 29 10 06 99-4f d7 9c e4 b7 e0 d1 77","NoAssetTag","'+02:00","2025-10-14T10:04:09.000+02:00","VPEMVATSE2\dumont","Cloud Agent","274335d6-9183-4540-b028-84a6b45731cb","2022-06-15T09:27:03.000+02:00","2026-04-22T10:25:17.000+02:00","64-Bit","4","SCA,VM,PM,GAV","PCI Bunker EMV - VLAN Supervision/Admin,DEX,OS-WIN-SRV DYN,Sans,DMZ,Production,Windows Server,PCI Bunker EMV,EMV,Cloud Agent","695.0" +"399595897","361209935","PCB21071.sanef.groupe","PCB21071","D0:AD:08:A3:E6:AF","10.100.39.126","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMK","","'+02:00","2026-04-09T20:51:50.000+02:00","SANEF\alvesa","Cloud Agent","3cc04e9e-9ff1-4f2b-b046-c0b8d1b590ce","2026-02-12T13:03:30.000+02:00","2026-04-22T10:25:15.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Workstation,Cloud Agent,Forescout","493.0" +"113584905","181185075","vpdecasas8.sanef.groupe","","00:50:56:82:21:8d","10.30.11.156","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2200","Intel(R) Xeon(R) CPU E5-4660 v4 @ 2.20GHz","257964","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 aa 81 37 79 5d 13-9b 16 72 cf 17 10 38 43","No Asset Tag","'+02:00","2026-03-25T11:53:14.000+02:00","cybreconcile","Cloud Agent","c9cc1609-7e02-495f-bd01-409cde65e06e","2022-02-15T15:08:08.000+02:00","2026-04-22T10:25:13.000+02:00","x86_64","3","SCA,VM,PM,GAV","Production,VRF_INCONNUE,SAS,OS-LIN-SRV DYN,ServersInCyberark,Cloud Agent,Linux Server,Obsolete,DSI","71.0" +"345675238","338901927","PCB23559.sanef.groupe","PCB23559","C8:6E:08:88:F0:59","10.205.0.7,10.255.4.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5L","","'+02:00","2026-04-08T09:08:46.000+02:00","SANEF\TOUTAIN","Cloud Agent","7140e411-40b8-4ba0-a178-a0cd89d029c2","2025-07-28T14:24:34.000+02:00","2026-04-22T11:43:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"363225908","346028426","PCV18682.sanef-int.adds","PCV18682","30:13:8B:6C:79:90","10.100.7.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473W0","","'+02:00","2026-04-22T06:59:23.000+02:00","Operateur","Cloud Agent","f3a193d0-b64c-4cf5-ab64-f00121aaf051","2025-09-26T11:09:26.000+02:00","2026-04-22T10:25:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"175948102","229616407","vppatbsip1.sanef.groupe","","00:50:56:82:9d:b6","10.42.40.10","fe80::875:558:2c8f:990d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63886","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 04 53 a7 0b 19 47-f5 65 cd a9 59 b7 1c d6","No Asset Tag","'+02:00","2026-04-16T16:09:23.000+02:00","cybreconcile","Cloud Agent","238ba139-c4ff-4e05-88e4-315c0d456ba9","2023-06-26T16:20:40.000+02:00","2026-04-22T10:24:54.000+02:00","x86_64","4","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,ISIS,Cloud Agent,Linux Server,TAG-SRVEXPOSEINDIRECT,DFIN","113.0" +"320081168","328605106","PCB23667.sanef.groupe","PCB23667","C8:6E:08:97:E0:BE","10.255.4.212,10.255.4.178","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L3Y","","'+02:00","2026-04-13T09:49:51.000+02:00","SANEF\mulette","Cloud Agent","249301d1-71a5-4430-9945-8f5fc571f088","2025-04-28T11:08:48.000+02:00","2026-04-22T11:03:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"175415700","229250370","vvbocharg2.sanef-rec.fr","","00:50:56:9c:f6:5c","10.45.6.8","fe80::250:56ff:fe9c:f65c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 2a 02 73 5d 71 89-fe 0d 0a 73 4e f7 43 d3","No Asset Tag","'+02:00","2026-03-09T11:12:28.000+02:00","cybsupsys","Cloud Agent","0bc8a46d-7335-4c96-b45d-aa680d71c021","2023-06-22T11:01:56.000+02:00","2026-04-22T10:24:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,MID-APACHE-TOMCAT DYN,Flux Libre","142.0" +"363309467","346059428","vrdsiaadg1.recette.adds","VRDSIAADG1","00:50:56:9C:E1:2C","10.45.16.3","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 48 ed 70 3e fe 85-da ce 3a de 2b f2 86 c4","NoAssetTag","'+02:00","2026-04-20T17:26:12.000+02:00","Administrateur","Cloud Agent","32b78cc6-7488-469c-87c9-d6ebc99b0fd2","2025-09-26T16:52:26.000+02:00","2026-04-22T10:24:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Recette,AD,OS-WIN-SRV DYN,Cloud Agent","52.0" +"220106403","253726787","OSA20952.sanef-int.adds","OSA20952","BC:0F:F3:87:6F:A1","10.12.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LKT","","'+02:00","2026-04-09T13:01:40.000+02:00","Superviseur","Cloud Agent","43f1dd4c-384d-4b20-8cf3-91aff7f053c4","2024-03-05T13:39:12.000+02:00","2026-04-22T11:39:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"382798622","354134334","PCB22283.sanef.groupe","PCB22283","D0:AD:08:A3:7D:00","10.252.42.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZD","8CC3502YZD","'+02:00","2026-04-21T08:17:39.000+02:00","SANEF\perrinse","Cloud Agent","ff748616-80f7-4902-8567-87361dee16d6","2025-12-09T18:40:03.000+02:00","2026-04-22T10:24:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"295300195","317119406","vpvsaasic1","","00:50:56:8f:35:45","10.44.200.104","fe80::250:56ff:fe8f:3545","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 55 23 06 2b d2 c0-fa ed 85 7f 9a 6f 7c 07","No Asset Tag","'+02:00","2026-02-02T13:02:56.000+02:00","root","Cloud Agent","75424e16-2fee-4d17-a073-6dc653ef1520","2025-01-28T14:30:58.000+02:00","2026-04-22T10:24:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,TAG-SIC,TAG-SIA","52.0" +"363969483","346387491","vptrabmut1.sanef.groupe","","52:54:00:7d:a0:29, 52:54:00:43:7d:b5, 52:54:00:63:38:b5","192.168.17.6,10.41.40.230,10.41.40.232,10.41.40.234,10.41.40.235,192.168.17.133","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-26T15:52:24.000+02:00","oracle","Cloud Agent","2c191b39-4c8b-4d5e-8fbe-40599367b65b","2025-09-29T16:50:18.000+02:00","2026-04-22T10:38:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Production,BDD,MID-APACHE-TOMCAT DYN","339.0" +"240208314","274077840","vpbooardp1.sanef.groupe","VPBOOARDP1","00:50:56:90:5D:3B","10.44.6.131","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 da b6 a1 1e 8b 9e-96 a8 c6 ec ef e6 32 17","NoAssetTag","'+02:00","2026-04-07T10:51:44.000+02:00","SANEF\ndead","Cloud Agent","2ece3099-539b-4a4f-9e8f-e7a0f7f07b04","2024-05-29T17:37:25.000+02:00","2026-04-22T10:24:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,Production,flux_libre,OS-WIN-SRV DYN,Cloud Agent,Windows Server","250.0" +"191424299","239728327","vibooaori1.sanef.groupe","","00:50:56:90:bf:0a","10.41.22.208","fe80::250:56ff:fe90:bf0a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1c a2 e3 a1 9a 47-e2 48 00 9c a6 34 16 5f","No Asset Tag","'+02:00","2026-03-16T10:43:53.000+02:00","cybsupemo","Cloud Agent","c017ef11-d65e-4155-8681-9c96b9abfea1","2023-10-04T18:03:36.000+02:00","2026-04-22T10:23:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","142.0" +"333168741","333625858","vrvidanvr2.recette.adds","VRVIDANVR2","00:50:56:9C:1E:AC","10.45.7.102","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 96 54 b2 e1 93 38-96 5d 51 21 53 e7 d3 ea","NoAssetTag","'+02:00","2026-01-05T10:23:38.000+02:00","Administrateur","Cloud Agent","d04c8fe4-d3a9-4ba0-9544-f7102dae68f6","2025-06-13T12:29:56.000+02:00","2026-04-22T10:23:54.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,OS-WIN-SRV DYN,Cloud Agent,Recette","519.0" +"366063141","347188660","PCB24144.sanef.groupe","PCB24144","80:C0:1E:16:60:C0","10.101.243.84,10.255.1.206","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook X G1i Notebook","8","2200","Intel(R) Core(TM) Ultra 7 258V","32241","HP X90 Ver. 01.01.07","5CG5112759","","'+02:00","2026-04-13T11:14:02.000+02:00","SANEF\CHAIX","Cloud Agent","39645925-df68-41bc-b265-8ce832ffeda4","2025-10-07T11:52:47.000+02:00","2026-04-22T11:41:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"355464746","342872821","PBM22810.sanef-int.adds","PBM22810","D0:AD:08:A7:28:53","10.100.50.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YP5","","'+02:00","2026-04-07T15:43:54.000+02:00","Operateur","Cloud Agent","683a340d-5d44-4327-b769-2d4b89cda980","2025-08-29T14:32:51.000+02:00","2026-04-22T10:23:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"335441959","334612886","vtdsiatmp4.sanef.groupe","","00:50:56:9c:4f:67","10.43.253.7","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 91 dc 94 43 2e bb-81 8e bf 75 ee 1e 93 2e","No Asset Tag","'+02:00","2026-04-14T14:37:24.000+02:00","root","Cloud Agent","8866e5e5-d66b-4ac4-9800-a8e3525be2c1","2025-06-23T10:44:00.000+02:00","2026-04-22T10:23:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","test_rhel9,Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"213847569","251124491","sppeaanvr5","SPPEAANVR5","F4:03:43:3E:DA:5F","10.41.7.104","fe80::f4e2:1bb2:d154:d8bc","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLX","","'+02:00","2026-01-28T15:57:25.000+02:00","Administrateur","Cloud Agent","7b23fdbe-178d-40fa-9fd9-a9e478ff42e4","2024-02-05T19:20:56.000+02:00","2026-04-22T10:23:31.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,NVR","509.0" +"384791163","355167261","PCB16089.sanef.groupe","PCB16089","48:9E:BD:4B:90:F7","10.100.39.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129283H","8CC129283H","'+02:00","2026-04-01T08:25:35.000+02:00","SANEF\psi","Cloud Agent","645af519-f12f-4c60-a14d-4b7d30d22afe","2025-12-18T13:48:58.000+02:00","2026-04-22T10:23:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"354366742","342354079","PCB20638.sanef.groupe","PCB20638","58:1C:F8:EB:40:42","10.205.0.130,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224CT9","","'+02:00","2026-03-31T19:53:11.000+02:00","astrid.dohou@sanef.com","Cloud Agent","0d76f518-6ffc-4ba6-a342-e1ff36e79e3b","2025-08-25T14:35:35.000+02:00","2026-04-22T10:14:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"364163892","346466171","PCB21584.sanef.groupe","PCB21584","D0:AD:08:A3:7B:D2","10.5.30.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVW","8CC3502YVW","'+02:00","2026-03-28T09:13:40.000+02:00","SANEF\dumas","Cloud Agent","e36b6a73-98fb-491a-a4e8-7cc461aa2856","2025-09-30T11:06:26.000+02:00","2026-04-22T10:23:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"372122822","349584353","vppciamft1.sanef.groupe","","00:50:56:86:f9:ac","192.168.101.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 06 9b be e3 fd be 93-2f 5f 46 bd 01 4a fd 3d","No Asset Tag","'+02:00","2025-06-10T14:29:29.000+02:00","root","Cloud Agent","a8669d13-053b-4aa8-9e3f-b23f852d9a05","2025-10-27T13:56:29.000+02:00","2026-04-22T10:23:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","334.0" +"193226459","240735722","vibocs4ci1.sanef.groupe","","00:50:56:90:e0:2c","10.41.22.69","fe80::250:56ff:fe90:e02c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","92112","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c7 20 18 e4 be 9f-46 22 ff d7 3f b9 28 3c","No Asset Tag","'+02:00","2026-03-16T16:13:00.000+02:00","root","Cloud Agent","5a870b8a-94dc-4da1-83f6-46abced9cf6d","2023-10-13T13:27:19.000+02:00","2026-04-22T10:23:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,flux_libre,Flux Libre","143.0" +"131275076","193321025","vpaiiapol6","","00:50:56:82:80:89","10.40.2.40","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ca 4d 52 2a c3 ed-d6 0e 34 dd 06 91 ee f3","No Asset Tag","'+02:00","2024-06-05T14:32:22.000+02:00","cybadmsys","Cloud Agent","c557d007-c6ac-4eb6-8413-cddc52b3e53f","2022-07-12T15:48:39.000+02:00","2026-04-22T10:23:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,Centreon,DSI,BDD-POS DYN,BDD-SQL DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,Sans,Production,Outils prod (Monitoring, NMS, gestion de parc),Obsolete","462.0" +"129356503","191963822","vpsaaanvr1","VPSAAANVR1","00:50:56:82:91:E0","10.117.2.11","fe80::dff1:76c0:14af:311d","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 27 28 19 a3 c1 b0-6d 34 5b b9 89 48 44 7c","NoAssetTag","'+02:00","2026-03-02T14:20:06.000+02:00","Administrateur","Cloud Agent","5e21a4af-3ded-402d-a109-2ee0b217b2d8","2022-06-27T18:17:35.000+02:00","2026-04-22T10:23:07.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Production,Exploitation,VRF_INCONNUE,DEX","508.0" +"178201254","231275965","ls-hochfelden-ouest","LS-HOCHFELDEN-O","00:50:56:90:91:0A","10.41.2.114","fe80::d55e:1578:a803:55c3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 31 20 c9 b9 35 c3-04 9f db bb 1c 43 2f ed","NoAssetTag","'+02:00","2026-04-02T15:20:26.000+02:00","svpadmin","Cloud Agent","5c1359d2-657f-46f8-99fe-287ab3e2332a","2023-07-12T15:48:20.000+02:00","2026-04-22T08:42:55.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,DEX,OS-WIN-SRV DYN,SVP","680.0" +"362017413","345539808","PCB24097.sanef.groupe","PCB24097","10:B6:76:95:8B:95","10.202.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYP","","'+02:00","2026-04-21T08:59:09.000+02:00","SANEF\PILLOND","Cloud Agent","892a989d-f542-4754-a633-33efcbc16502","2025-09-22T15:49:44.000+02:00","2026-04-22T10:23:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"348983322","341472430","PCB18102.sanef.groupe","PCB18102","38:CA:84:52:F8:8C","10.205.0.183,10.101.243.123","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRJ","","'+02:00","2026-04-20T14:55:46.000+02:00","SANEF\HALLAK","Cloud Agent","f8781a99-2474-4189-bb76-9220c19dc330","2025-08-18T11:54:30.000+02:00","2026-04-22T11:22:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"365792814","347053025","vpdatafrt1.sanef.groupe","","00:50:56:90:37:c5","192.168.40.99","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 32 5c c2 b4 f2 1d-01 04 cc 83 de 99 f6 de","No Asset Tag","'+02:00","2026-01-27T15:49:10.000+02:00","cybreconcile","Cloud Agent","9deacc13-d798-41ec-b0ca-7638a295b0b5","2025-10-06T10:46:20.000+02:00","2026-04-22T11:47:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent","141.0" +"167745827","224050667","vpmetaquo1.sanef.groupe","","00:50:56:82:bd:67","10.100.16.5","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 be 69 76 a2 c5 c6-cd a1 17 01 56 e8 4b 59","No Asset Tag","'+02:00","2026-01-29T15:52:00.000+02:00","cybreconcile","Cloud Agent","e45a9a3d-9c60-4b85-a734-9a4c7f17a71d","2023-04-24T14:45:11.000+02:00","2026-04-22T11:47:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DSI,Cloud Agent,Linux Server,3PAR","142.0" +"281019346","305755499","PCB21331.sanef.groupe","PCB21331","D0:AD:08:AA:50:AE","10.202.31.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MG","","'+02:00","2026-04-14T14:55:27.000+02:00","SANEF\noelm","Cloud Agent","35d7fcce-9f7d-4b63-9a4c-cee14df0a8ec","2024-11-21T13:45:46.000+02:00","2026-04-22T10:29:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"397215782","360255955","PCB24338.sanef.groupe","PCB24338","10:B6:76:95:8B:BC","10.4.31.72","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZY","","'+02:00","2026-04-07T09:22:42.000+02:00","SANEF\champy","Cloud Agent","021e003d-b67a-4f9b-8052-928e29d1e6e3","2026-02-03T18:58:21.000+02:00","2026-04-22T10:22:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"364969640","346712263","PCV21516.sanef-int.adds","PCV21516","D0:AD:08:A3:E7:2F","10.100.7.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YTR","","'+02:00","2026-03-29T02:20:29.000+02:00","Operateur","Cloud Agent","6a08887d-2a4a-47c7-857d-40ef7c1a64b1","2025-10-02T13:47:39.000+02:00","2026-04-22T10:12:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"381719252","353650440","VRBURXBAN6.sanef.groupe","VRBURXBAN6","00:50:56:82:11:D9","10.30.4.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 89 79 06 a6 f9 11-ea 35 02 a7 19 cc 53 14","NoAssetTag","'+02:00","2026-04-15T08:59:07.000+02:00","","Cloud Agent","4043910d-6a8c-4b06-8518-79ce684141ff","2025-12-04T18:49:29.000+02:00","2026-04-22T10:22:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"370394464","348882264","PCB21159.sanef.groupe","PCB21159","F0:20:FF:9B:0A:CD","10.205.0.158,192.168.1.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HV3","","'+02:00","2026-04-16T14:05:06.000+02:00","SANEF\gaspards","Cloud Agent","e8b80660-6360-4691-b10c-471732e01bad","2025-10-21T11:44:47.000+02:00","2026-04-22T10:22:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"236872619","266140980","vpechatre4.sanef.groupe","","00:50:56:90:e7:4f","10.42.16.136","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7d 1c 93 aa ac dd-d9 02 10 09 ba 24 9e 4d","No Asset Tag","'+02:00","2025-11-18T16:03:15.000+02:00","cybreconcile","Cloud Agent","4668f5d0-df8d-4488-89d9-af1275a5aa73","2024-05-15T12:24:05.000+02:00","2026-04-22T10:06:20.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,TALEND,Production,Cloud Agent,Linux Server","208.0" +"334993487","","PCB24116.sanef.groupe","PCB24116","C8:58:B3:0B:5B:F3","10.255.1.223","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6J","","'+02:00","2026-04-18T21:18:30.000+02:00","SANEF\BROCHOT","Cloud Agent","52d0909f-35df-4777-b8d3-3884b8ad3bfd","2025-06-20T15:04:05.000+02:00","2026-04-22T10:22:40.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"355211523","342758565","PCB20714.sanef.groupe","PCB20714","58:1C:F8:EA:65:F5","10.255.3.234,10.205.0.160","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224CSQ","","'+02:00","2026-04-10T10:36:27.000+02:00","SANEF\BEEHAREE","Cloud Agent","1587ef44-d11d-49ac-8b6f-cc33526e4a23","2025-08-28T15:44:26.000+02:00","2026-04-22T11:46:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"128519851","191357881","ls-beauvais-nord","LS-BEAUVAIS-NOR","00:50:56:90:35:FC","10.41.2.91","fe80::148:3589:905c:1a7d","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 c5 f4 58 c0 34 bd-c4 a7 4c 0a 02 08 d5 ba","NoAssetTag","'+02:00","2026-03-23T15:33:17.000+02:00","svpadmin","Cloud Agent","f49e83c7-e21d-4f03-8e06-69c7ff9e40cd","2022-06-20T18:08:47.000+02:00","2026-04-22T10:22:29.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_PEAGE_DC,SVP,OS-WIN-SRV DYN,Cloud Agent,DEX,Production,High,Péage,Windows Server","507.0" +"202413303","245310749","vrameasxt3.sanef-rec.fr","","00:50:56:9c:14:8b, 00:50:56:9c:39:30","10.45.4.62,10.45.2.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 86 19 b0 fe 39 4c-c1 f0 ac 35 71 b1 a2 30","No Asset Tag","'+02:00","2026-04-20T15:20:56.000+02:00","cybadmsys","Cloud Agent","fb7b130d-8e2f-429c-939f-a07d0fa2cfd4","2023-12-04T17:29:51.000+02:00","2026-04-22T10:22:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","95.0" +"408021532","364319420","PCB21068.sanef.groupe","PCB21068","D0:AD:08:A3:7B:39","10.100.39.168","fe80::4ff9:db25:473a:b9ea","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.21.00","8CC3502YV6","","'+02:00","2026-03-30T16:54:59.000+02:00","SANEF\PSI","Cloud Agent","42054544-0fd5-4c47-9bdc-d80780361f39","2026-03-12T16:22:02.000+02:00","2026-04-22T10:22:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"316480701","327280954","PCB9998.sanef.groupe","PCB9998","3C:52:82:4F:19:B5","10.4.31.15","fe80::81bc:b82a:fe03:dd98","Windows / Client","Microsoft Windows 7 Enterprise (6.1 SP1 Build 7601.24544)","6.1","Computers / Desktop","HP EliteDesk 800 G3 Desktop","4","3201","Intel(R) Core(TM) i5-6500 CPU @ 3.20GHz","8071","HP P01 Ver. 02.07","CZC74589GB","CZC74589GB","'+02:00","2025-11-20T10:32:48.000+02:00","SANEF\pctsanef","Cloud Agent","216e6922-de9e-454b-8a0f-d285be1f7507","2025-04-15T12:25:32.000+02:00","2026-04-22T10:22:21.000+02:00","64 bits","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"129362237","191964726","vphdnanvr1","VPHDNANVR1","00:50:56:82:1F:72","10.147.1.10","fe80::6ccf:223b:6020:6040","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 cb b1 a3 4a 8c c5-05 09 82 49 83 36 ef 13","NoAssetTag","'+02:00","2026-03-17T14:04:37.000+02:00","Administrateur","Cloud Agent","7fdd04d7-73dd-4760-af3b-f358a02000d4","2022-06-27T18:34:13.000+02:00","2026-04-22T10:22:14.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,DEX,Exploitation,Production,NVR,OS-WIN-SRV DYN","508.0" +"321554503","329081443","PCB21066.sanef.groupe","PCB21066","D0:AD:08:A3:7C:CA","10.139.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YY5","8CC3502YY5","'+02:00","2026-03-28T09:11:28.000+02:00","SANEF\verhulstf","Cloud Agent","761408d4-b694-411f-9b51-e73ab827ebcc","2025-05-02T12:19:41.000+02:00","2026-04-22T11:05:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"138994660","198163269","RMILRAU1","","10:60:4b:9c:27:dc, 10:60:4b:9c:27:e0","10.43.4.201,10.41.40.200,10.41.40.201","fe80::1260:4bff:fe9c:27dc,fe80::1260:4bff:fe9c:27e0","Linux / Server","Red Hat Enterprise Linux Server 6.3","6.3","Computers / Server","HPE ProLiant DL360 G7 Server","8","2400","Intel(R) Xeon(R) CPU E5620 @ 2.40GHz","7858","HP P68 05/05/2011","CZJ24400HL","","'+02:00","2023-04-26T18:10:47.000+02:00","cybreconcile","Cloud Agent","7800337f-f123-481e-b26b-807801c6d492","2022-09-06T12:31:09.000+02:00","2026-04-22T10:15:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,ASUR,Obsolete,OS-LIN-SRV DYN,Cloud Agent,Linux Server,log4j,Production,Exploitation,VRF_INCONNUE","524.0" +"351146339","341063799","VRBURXBAN10.sanef.groupe","VRBURXBAN10","00:50:56:82:B7:D9","10.30.4.10","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 f7 8b ce fb c7 69-52 3e 18 ef 16 e1 de 1f","NoAssetTag","'+02:00","2026-04-15T10:15:17.000+02:00","SANEF\BILLARD-ext","Cloud Agent","759c3c1c-16f4-42c7-87b3-f107da04a51c","2025-08-13T17:28:24.000+02:00","2026-04-22T10:22:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","351.0" +"323153594","329804022","PCB22851.sanef.groupe","PCB22851","D0:AD:08:A7:28:2B","10.219.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJR","","'+02:00","2026-04-10T12:48:29.000+02:00","SANEF\lambertl","Cloud Agent","460abfb5-fb6e-4a19-92a3-07e186b42375","2025-05-09T11:23:30.000+02:00","2026-04-22T10:22:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"358926256","344346980","PCB24226.sanef.groupe","PCB24226","10:B6:76:95:8B:B0","10.89.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZK","","'+02:00","2026-04-10T14:00:27.000+02:00","SANEF\couvreur","Cloud Agent","40fbcb08-228b-4b23-87eb-429003c64927","2025-09-11T18:05:34.000+02:00","2026-04-22T10:22:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","253.0" +"414925193","367241504","SVP22876.sanef-int.adds","SVP22876","D0:AD:08:A7:27:CB","10.142.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.21.00","8CC3502YL1","","'+02:00","2026-04-18T09:34:53.000+02:00","Superviseur","Cloud Agent","780acbb8-a46f-45d5-b0e0-560538703ef4","2026-04-10T12:04:57.000+02:00","2026-04-22T10:22:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"155037339","208611641","ls-saverne","LS-SAVERNE","00:50:56:90:4A:20","10.41.2.112","fe80::e3f:f085:f701:2a38","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a3 f2 31 85 43 ea-10 53 73 dc d8 07 84 eb","NoAssetTag","'+02:00","2026-03-03T10:03:26.000+02:00","svpadmin","Cloud Agent","108e8d5e-3e71-4e3e-84c4-15e88cba307a","2023-01-11T20:12:38.000+02:00","2026-04-22T10:21:54.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,High,Production,Péage,VRF_PEAGE_DC,OS-WIN-SRV DYN,SVP,Cloud Agent,Windows Server","681.0" +"358140645","344038672","vrdsibarc1.sanef-rec.fr","","00:50:56:9c:e6:6a","10.45.15.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a4 e1 44 00 0e 2f-83 ae a4 21 0c 33 0e 58","No Asset Tag","'+02:00","2026-04-20T15:37:16.000+02:00","cybsupapp","Cloud Agent","acc111a7-8e4c-48cb-aa3b-74104257f29c","2025-09-09T15:12:14.000+02:00","2026-04-22T10:21:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,BDD,Recette,Linux Server,Cloud Agent,BDD-POS DYN","152.0" +"397475889","360376396","vmmvscdem3.sanef-int.adds","VMMVSCDEM3","00:50:56:90:55:8C","10.41.7.237","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 9c 12 f2 32 d8 c5-77 a2 45 8d 02 aa dc 48","NoAssetTag","'+02:00","2026-04-02T16:07:05.000+02:00","Operateur","Cloud Agent","903617c9-4561-42fa-afed-d77d58f61ac1","2026-02-04T18:57:53.000+02:00","2026-04-22T10:21:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"188071336","237782793","MTR-5Q3J8Y3","MTR-5Q3J8Y3","6C:3C:8C:3D:5C:52","10.12.32.202","fe80::6967:3d23:bb54:958b","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","5Q3J8Y3","","'+02:00","2026-04-22T02:33:05.000+02:00","Skype","Cloud Agent","226c1142-9d1f-4352-991b-9a96e1563686","2023-09-15T11:28:46.000+02:00","2026-04-22T10:21:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"195401077","241773075","vpbotrssm2.sanef.groupe","","00:50:56:90:56:56","10.41.23.9","fe80::250:56ff:fe90:5656","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 72 d8 03 18 55 c7-ad 9e 33 08 c8 c7 fe 77","No Asset Tag","'+02:00","2026-04-21T11:17:35.000+02:00","cybreconcile","Cloud Agent","c165f7bf-9fb6-4f01-8d85-f785caab184e","2023-10-24T23:34:18.000+02:00","2026-04-22T10:21:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Production","139.0" +"395080589","359295982","MIO22284.sanef-int.adds","MIO22284","D0:AD:08:A3:7C:F9","10.200.40.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YZH","","'+02:00","2026-04-19T14:56:51.000+02:00","Operateur","Cloud Agent","5385de83-6c3d-4ed6-8566-4e6bd05086c3","2026-01-26T13:34:18.000+02:00","2026-04-22T10:21:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"204376373","246340955","MTR-BBD4804","MTR-BBD4804","6C:3C:8C:56:39:4F","10.154.32.200","fe80::9292:85d5:c373:e914","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","BBD4804","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","d8fd5c76-5a1b-44fa-9a7f-00b481d8a66c","2023-12-14T22:50:59.000+02:00","2026-04-22T10:21:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"282888814","313088162","vrdsiagit1.sanef-rec.fr","","00:50:56:9c:44:d5","10.45.7.229","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 01 ac 23 c6 f6 6a-52 07 e7 92 59 43 f0 9d","No Asset Tag","'+02:00","2025-12-10T16:46:10.000+02:00","root","Cloud Agent","29eef19b-47bf-4321-b9d0-5f5954622254","2024-11-28T11:04:17.000+02:00","2026-04-22T11:42:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Recette,GitLab,Linux Server,Cloud Agent","141.0" +"131401680","193422309","lampasu1.sanef.groupe","","00:17:A4:77:08:E8, 00:17:A4:77:08:EC","10.41.40.190,10.41.40.192,10.41.40.194,10.43.4.193,169.254.155.254","fe80::217:a4ff:fe77:8e8,fe80::217:a4ff:fe77:8ec","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","4","2500","Intel(R) Xeon(R) CPU E5-2609 v2 @ 2.50GHz","32069","HP I31 01/22/2018","VCX000020P","","'+02:00","2025-08-12T11:10:07.000+02:00","cybreconcile","Cloud Agent","d4bf24ea-0482-46c9-a9b4-644bdcf9bb95","2022-07-13T10:13:42.000+02:00","2026-04-22T10:21:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,Production,Exploitation,Sans,ServersInCyberark,OS-LIN-SRV DYN,Obsolete,DSI,log4j,Cloud Agent,Linux Server","528.0" +"230369388","258598753","ls-clermont-en-arg","LS-CLERMONT-EN-","00:50:56:90:7E:11","10.41.2.107","fe80::9fe9:7065:d0b1:e4ff","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 f9 f6 fe d1 5b b7-cd bc 03 08 38 08 76 41","NoAssetTag","'+02:00","2026-03-24T12:31:31.000+02:00","svpadmin","Cloud Agent","67b82724-0428-473f-8c02-94fbbeafa70a","2024-04-16T15:59:12.000+02:00","2026-04-22T10:21:23.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,Péage","679.0" +"130335698","192656718","VPAIIAPVD5.sanef.groupe","VPAIIAPVD5","00:50:56:82:48:23","10.41.11.19","fe80::9c95:1217:69bb:fbc3","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 f0 9b 56 29 32 21-7e 29 9c f7 e8 cd 6f ff","NoAssetTag","'+02:00","2025-06-04T16:55:27.000+02:00","SANEF\dewilde","Cloud Agent","7d5cc352-af1c-4d76-a0b5-a7fab193ebe2","2022-07-05T14:37:10.000+02:00","2026-04-22T10:21:20.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,NVR,DEX,Workstation,Sans,Exploitation,Production,VRF_INCONNUE,Obsolete","518.0" +"175414997","229251321","vvbocmedi2.sanef-rec.fr","","00:50:56:9c:87:9b","10.45.6.9","fe80::250:56ff:fe9c:879b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c fa 7b 56 cf 71 32-3c eb bb 3b 8f a3 66 b2","No Asset Tag","'+02:00","2026-03-09T11:47:14.000+02:00","cybsupsys","Cloud Agent","d1ed673e-21bf-4d0f-b1e0-95fab51d8e62","2023-06-22T11:09:16.000+02:00","2026-04-22T10:21:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN,FreeFlow,Flux Libre","337.0" +"331378739","333860817","vrmonaftp1.sanef-rec.fr","","00:50:56:9c:30:c7","10.45.14.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 47 e3 1b ba 61 28-5b b8 9a 64 74 90 36 cc","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","reboot","Cloud Agent","763903e4-d4e7-4ca6-b374-d0441c6a28ef","2025-06-06T09:46:24.000+02:00","2026-04-22T10:21:12.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,EMV","332.0" +"362315090","345693011","PCB21351.sanef.groupe","PCB21351","D0:AD:08:AA:4F:F2","10.101.243.141","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FD","","'+02:00","2026-04-17T09:06:32.000+02:00","SANEF\FAOUAJI-ext","Cloud Agent","714c767e-b020-4e40-81ab-a90d61c7f643","2025-09-23T16:40:26.000+02:00","2026-04-22T10:44:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"395319668","359409516","PCB25942.sanef.groupe","PCB25942","C4:0F:08:B3:29:A0","10.255.2.214,10.255.2.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222C","","'+02:00","2026-04-22T09:08:33.000+02:00","SANEF\SACHOT","Cloud Agent","4272f1e2-0401-45a1-9c1a-b17cdd001099","2026-01-27T13:25:38.000+02:00","2026-04-22T10:21:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"230083469","258396524","vdechatal3.recette.adds","VDECHATAL3","00:50:56:9C:13:68","10.45.11.200","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","65535","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 9e bd c8 20 de 15-7b 39 63 d8 3a 5a 3f 2e","NoAssetTag","'+02:00","2026-03-25T12:00:24.000+02:00","Administrateur","Cloud Agent","fbafa337-0be3-4ec8-8f0b-699d059583be","2024-04-15T12:29:47.000+02:00","2026-04-22T10:20:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,BDD-SQL DYN,Recette","333.0" +"223171074","255073048","ls-courcy","LS-COURCY","00:50:56:90:B7:84","10.22.2.20","fe80::3073:5175:d6c3:12f3","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 c4 00 7b 3a 17 68-42 3a 77 34 e1 61 01 a3","NoAssetTag","'+02:00","2026-03-05T15:02:10.000+02:00","svpadmin","Cloud Agent","a2c882ab-4fd2-4efe-bf26-c75381d64382","2024-03-18T16:33:17.000+02:00","2026-04-22T10:20:57.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,SVP,OS-WIN-SRV DYN,DEX,Péage,Haute,High","635.0" +"239875267","272842734","PCB22769.sanef.groupe","PCB22769","D0:AD:08:A7:27:D0","10.100.39.118","fe80::c642:c493:e79b:f026","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKY","","'+02:00","2026-04-08T13:41:49.000+02:00","SANEF\brequel","Cloud Agent","cb3e95c7-33a5-43ec-98db-a3710c2f3e79","2024-05-28T17:33:49.000+02:00","2026-04-22T10:20:56.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Workstation,Forescout","684.0" +"225058556","255954595","ls-amiens-sud","LS-AMIENS-SUD","00:50:56:90:81:FB","10.132.2.20","fe80::1fe9:a1a7:cd79:3cb4","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 f1 98 a5 bc 4d 24-6e 34 e4 ef 7b f2 95 dd","NoAssetTag","'+02:00","2026-02-19T12:32:57.000+02:00","svpadmin","Cloud Agent","5ebfb637-283b-4f8d-b4f0-cd52acdcf612","2024-03-25T11:47:13.000+02:00","2026-04-22T10:20:53.000+02:00","64-Bit","5","SCA,VM,PM,GAV","High,Haute,Péage,SVP,Production,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","635.0" +"358822881","344256478","PCB18062.sanef.groupe","PCB18062","38:CA:84:52:F8:A4","10.101.243.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSH","","'+02:00","2026-04-20T11:49:13.000+02:00","SANEF\BAHET","Cloud Agent","6027f0f8-1014-4b68-910f-e5664ca9cccb","2025-09-11T11:11:01.000+02:00","2026-04-22T10:20:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"329815109","332420304","PCB23655.sanef.groupe","PCB23655","C8:6E:08:88:FD:BA","10.255.2.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBT","","'+02:00","2026-04-14T09:52:28.000+02:00","muriel.foucu@sapn.fr","Cloud Agent","1cb2c445-c6f8-4ba5-b441-1e5a1693df0a","2025-06-03T15:26:17.000+02:00","2026-04-22T10:20:43.000+02:00","64-Bit","2","SCA,VM,GAV","Workstation,Cloud Agent","251.0" +"395905873","359675952","vpnapamed1.sanef.groupe","","00:50:56:90:4f:bd","10.100.16.9","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 e1 af 9c 87 94 f4-b8 f4 f3 2b 33 73 dc e6","No Asset Tag","'+02:00","2026-01-29T18:34:20.000+02:00","cybreconcile","Cloud Agent","bf23870f-082d-4f25-a572-a62b1992f590","2026-01-29T18:17:16.000+02:00","2026-04-22T11:35:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","Quorum,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","336.0" +"209599636","249215479","vpbotarmq2.sanef.groupe","","00:50:56:90:38:06","10.41.23.23","fe80::250:56ff:fe90:3806","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 9a ec 2b 1f 4b e8-84 2a b4 51 03 06 01 be","No Asset Tag","'+02:00","2026-04-21T11:47:46.000+02:00","cybadmsys","Cloud Agent","d084200a-8e4c-44b1-9123-34e14f6717cd","2024-01-15T13:34:46.000+02:00","2026-04-22T10:20:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,FreeFlow,flux_libre,Production","141.0" +"207904430","248272120","viaflbsta1.sanef.groupe","VIAFLBSTA1","00:50:56:9C:8D:DF","10.46.34.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c ae 2e 5c 54 b0 90-e5 c2 3c d0 03 d3 40 c5","NoAssetTag","'+02:00","2026-03-19T16:01:57.000+02:00","Administrateur","Cloud Agent","5263cb60-f1cc-4516-b1ef-58b980884157","2024-01-05T10:55:49.000+02:00","2026-04-22T10:20:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,BDD-SQL DYN,Flux Libre,OS-WIN-SRV DYN,FreeFlow","257.0" +"324426868","330231872","PCB20832.sanef.groupe","PCB20832","6C:0B:5E:EE:A3:29","10.5.31.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H35","","'+02:00","2026-03-30T12:25:32.000+02:00","SANEF\BRANCOURT","Cloud Agent","6d0e9d93-e2ab-4306-8cdc-55a489c27498","2025-05-13T14:53:00.000+02:00","2026-04-22T10:59:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"236555919","265282309","nvr-spare-tqx","NVR-SPARE-TQX","00:50:56:82:18:C6","10.1.27.251","fe80::ccab:f6c9:7cd5:aad0","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 b0 8c 6c fe 45 4b-27 00 96 ac 2b e3 36 cb","NoAssetTag","'+02:00","2026-01-28T15:24:05.000+02:00","Administrateur","Cloud Agent","6a744aea-c93e-46a4-a30e-78344d97cfd7","2024-05-14T14:37:12.000+02:00","2026-04-22T10:20:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN","348.0" +"320480375","328723998","PCB23568.sanef.groupe","PCB23568","C8:6E:08:88:E2:94","10.205.0.125,192.168.1.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5V","","'+02:00","2026-04-02T11:04:34.000+02:00","SANEF\ALLEGRE","Cloud Agent","93cd563e-5891-4466-a2f8-0dcf4517c863","2025-04-29T13:47:18.000+02:00","2026-04-22T10:20:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"327512345","331624013","PCB23577.sanef.groupe","PCB23577","C8:6E:08:8A:45:D0","10.205.0.58,192.168.1.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBF","","'+02:00","2026-03-30T09:18:05.000+02:00","SANEF\LEMAIRE","Cloud Agent","289f3b03-488a-4ea6-a7d0-b5badc738a37","2025-05-27T09:54:11.000+02:00","2026-04-22T10:20:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"358173066","344042678","PCB24167.sanef.groupe","PCB24167","DC:90:09:E1:1A:59","10.205.0.147,10.255.4.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG52136X8","","'+02:00","2026-03-30T10:56:37.000+02:00","SANEF\STIRN","Cloud Agent","be5d95b2-0b4d-48d0-880e-533e743b34fc","2025-09-09T15:54:57.000+02:00","2026-04-22T10:20:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"367219018","347672154","PBM20984.sanef-int.adds","PBM20984","BC:0F:F3:88:FD:3E","10.100.50.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LM9","","'+02:00","2026-04-08T14:02:28.000+02:00","Operateur","Cloud Agent","efa0eb42-3963-4b96-9e26-5eef1668192c","2025-10-10T12:44:22.000+02:00","2026-04-22T11:28:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"378358100","352442063","PSX18703.sanef-int.adds","PSX18703","30:13:8B:6C:5C:09","10.200.40.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WV","","'+02:00","2026-04-22T05:01:32.000+02:00","UserSextan","Cloud Agent","d69d3211-9fec-4797-907c-b9ee8f8e2325","2025-11-21T17:27:14.000+02:00","2026-04-22T10:20:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"305487492","322759720","PCB22640.sanef.groupe","PCB22640","D0:AD:08:AA:4F:D3","10.107.31.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DD","","'+02:00","2026-04-01T07:03:16.000+02:00","SANEF\POTDEVIN","Cloud Agent","37e0776f-82b6-47c4-9313-f75a988be371","2025-03-05T12:20:59.000+02:00","2026-04-22T10:20:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"305108644","322677327","PCB22663.sanef.groupe","PCB22663","D0:AD:08:AA:4F:D1","10.107.31.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DB","","'+02:00","2026-04-13T09:04:21.000+02:00","SANEF\vare","Cloud Agent","2aab1725-8f0c-4fd5-8abb-006393bad0bf","2025-03-04T17:01:28.000+02:00","2026-04-22T10:21:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"128609803","191420973","ls-la-veuve-mourmelon","LS-LA-VEUVE-MOU","00:50:56:90:A2:FF","10.41.2.72","fe80::10be:27a0:7769:e103","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 90 53 4c 98 57 23-da 2d c9 48 fd 85 fb ec","NoAssetTag","'+02:00","2026-03-04T16:04:45.000+02:00","svpadmin","Cloud Agent","38e1d6ea-6b54-4eba-9179-6925155ded62","2022-06-21T14:44:21.000+02:00","2026-04-22T10:19:53.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,SVP,OS-WIN-SRV DYN,Windows Server,High,Péage,Production,DEX,VRF_PEAGE_DC","507.0" +"391648857","357934418","vmmvscdem1.sanef-int.adds","VMMVSCDEM1","00:50:56:90:A5:3D","10.41.7.235","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 5d 7f c6 a4 77 92-e2 15 5d 28 97 18 e1 50","NoAssetTag","'+02:00","2026-02-02T17:47:41.000+02:00","uservideo","Cloud Agent","423c9358-4751-479e-bea5-f26411f22f38","2026-01-13T12:59:49.000+02:00","2026-04-22T10:19:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"218330049","252975223","vpagtaweb1.sanef.groupe","VPAGTAWEB1","00:50:56:9C:E9:64","10.46.33.22","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c a2 89 1c b0 12 3a-62 cc d1 a8 0a d0 0c c8","NoAssetTag","'+02:00","2026-02-24T16:40:43.000+02:00","Administrateur","Cloud Agent","3bee6b1c-e85a-40b4-a7d1-cb3062e5f306","2024-02-26T15:48:56.000+02:00","2026-04-22T10:19:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,AgileTime,Windows Server,DRH,Cloud Agent","253.0" +"241549584","276516748","vpvsaaahz2.sanef.groupe","","00:50:56:9c:0d:eb","192.168.18.80","fe80::250:56ff:fe9c:deb","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c ef a5 9c cc 09 a8-e8 ee 76 b6 32 81 ca ea","No Asset Tag","'+02:00","2026-02-04T13:39:00.000+02:00","tbaad-ext","Cloud Agent","ed68b9ed-6e4b-4348-aa33-fc4c57d3f8cd","2024-06-04T12:46:47.000+02:00","2026-04-22T11:46:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"407377442","364056617","vpbckmcse1","VPBCKMCSE1","00:50:56:98:75:8F","192.168.109.4","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8027) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24575","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 18 3f d4 e1 cf 86 01-c3 af 9f 0b fa b9 b4 8f","NoAssetTag","'+02:00","2026-03-10T14:27:12.000+02:00","Administrator","Cloud Agent","7b21a439-724d-45b5-a84a-4ad1f35677c7","2026-03-10T13:55:07.000+02:00","2026-04-22T10:19:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,VRF_INCONNUE,Gestion SAUVEGARDE,PCI Bunker EMV,BDD-SQL DYN","347.0" +"165442546","221733692","vppataels1","","00:50:56:82:26:e6","10.42.40.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 fa 07 a0 61 4c dd-cb 35 30 c6 b4 63 2f fc","No Asset Tag","'+02:00","2026-04-02T14:23:50.000+02:00","cybadmsys","Cloud Agent","17645695-a79d-4089-a9d9-4b1021e0c9b7","2023-04-05T11:10:12.000+02:00","2026-04-22T10:19:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,DFIN,Cloud Agent,Linux Server,ISIS","66.0" +"139155574","198270091","vampsychtp1.sanef.groupe","","00:50:56:82:08:63","10.41.40.102","fe80::250:56ff:fe82:863","Linux / Server","Red Hat Enterprise Linux Server 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 de e9 ce 1c 20 7e-77 be 84 8e 7a 72 3a fb","No Asset Tag","'+02:00","2023-12-21T15:54:07.000+02:00","cybreconcile","Cloud Agent","3b2d3777-cf64-459e-87b6-e977684cbe5b","2022-09-07T14:20:37.000+02:00","2026-04-22T11:45:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,DEX,VRF_TRAFIC_DC,Production,Patrimoine","524.0" +"335495684","334630311","PCB24170.sanef.groupe","PCB24170","DC:90:09:E1:CF:DF","10.255.1.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XM","","'+02:00","2026-03-28T09:28:09.000+02:00","SANEF\locquard","Cloud Agent","96083f98-bc0e-432f-89e8-08be88859df1","2025-06-23T13:19:47.000+02:00","2026-04-22T10:19:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"380799479","353392213","PCV21522.sanef-int.adds","PCV21522","D0:AD:08:A3:E6:B8","10.152.7.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YRD","","'+02:00","2026-04-02T10:44:29.000+02:00","Operateur","Cloud Agent","5d833995-f892-46ae-a6e7-569a87104b22","2025-12-02T13:41:20.000+02:00","2026-04-22T10:19:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"364978252","346720465","PCV21058.sanef-int.adds","PCV21058","D0:AD:08:A3:E7:2A","10.100.7.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YXQ","","'+02:00","2026-01-22T14:00:33.000+02:00","Operateur","Cloud Agent","990d6c28-5f98-400c-b698-a61f85394e7d","2025-10-02T15:02:08.000+02:00","2026-04-22T10:19:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"352603936","341602737","PCB25862.sanef.groupe","PCB25862","28:95:29:1A:E6:77","10.205.0.20,192.168.1.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW5","","'+02:00","2026-04-21T11:35:06.000+02:00","SANEF\LAUNE","Cloud Agent","12652ab7-70a3-4064-bb7c-96a1394b51bb","2025-08-19T14:44:02.000+02:00","2026-04-22T10:19:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","57.0" +"322043434","329330025","PCB23641.sanef.groupe","PCB23641","6C:0B:5E:ED:A2:59","10.200.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4P","","'+02:00","2026-04-16T08:56:36.000+02:00","SANEF\crevel","Cloud Agent","e9fc5232-dc83-4e37-bf87-81d7ee62ae10","2025-05-05T13:31:58.000+02:00","2026-04-22T10:19:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"377809009","352213444","vpdsiangx1.sanef.groupe","","00:50:56:90:a8:30","192.168.19.160","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 16 6a c4 ab e8 0d-aa 1c be 7d a0 14 54 7a","No Asset Tag","'+02:00","2026-04-13T14:25:03.000+02:00","cybreconcile","Cloud Agent","40de4338-c22b-46aa-90ac-1e8b80ec5800","2025-11-19T18:56:10.000+02:00","2026-04-22T10:19:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","329.0" +"412395439","366137236","PCB20705.sanef.groupe","PCB20705","BC:0F:F3:3D:58:C0","10.101.243.63","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224CT5","","'+02:00","2026-04-09T11:41:55.000+02:00","SANEF\mesdon-ext","Cloud Agent","33695284-96ce-493b-9018-cd4de5a2cd14","2026-03-30T13:59:40.000+02:00","2026-04-22T10:54:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"347776899","339369664","PCB18043.sanef.groupe","PCB18043","38:CA:84:52:19:5A","10.101.243.105","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.18.00","5CG2376HT8","","'+02:00","2026-04-09T16:04:40.000+02:00","SANEF\lopezl","Cloud Agent","cae67689-20ce-4c3d-81a2-6499b68ca0a4","2025-07-31T10:07:06.000+02:00","2026-04-22T10:19:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"318364496","328015777","PCB22929.sanef.groupe","PCB22929","D0:AD:08:A7:28:26","10.105.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJX","8CC3502YJX","'+02:00","2026-04-21T09:40:03.000+02:00","SANEF\batko","Cloud Agent","81e9e879-b136-4bee-b1a4-840e84fb3157","2025-04-22T09:44:09.000+02:00","2026-04-22T10:57:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"399338908","361094808","PCB16447.sanef.groupe","PCB16447","DC:21:48:FE:84:36","10.205.0.136,10.0.11.53","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","8","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15664","HP T72 Ver. 01.22.00","5CD1438400","","'+02:00","2026-04-14T09:39:42.000+02:00","SANEF\CHAMPY-ext","Cloud Agent","4e4a9936-ff7a-4f6c-84dd-8f2eb6d76196","2026-02-11T13:56:12.000+02:00","2026-04-22T11:18:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"404163179","362715216","PCB18621.sanef.groupe","PCB18621","64:D6:9A:74:74:03","10.205.0.32,10.255.4.246","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDJ","","'+02:00","2026-04-15T15:23:55.000+02:00","SANEF\benbouslah-ext","Cloud Agent","68ebacb0-9b5f-4064-885b-bd757bc74e53","2026-02-25T16:06:04.000+02:00","2026-04-22T11:44:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"335905349","336780143","vrrpnangx1.sanef-rec.fr","","00:50:56:9c:4f:9c","10.45.14.229","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a8 de 8a 4a f7 76-92 5c 50 9e 49 ab 6d d4","No Asset Tag","'+02:00","2026-02-23T10:35:27.000+02:00","cybsecope","Cloud Agent","2ad21bec-0e15-48d3-ba8d-ce21d0af3547","2025-06-24T11:02:57.000+02:00","2026-04-22T10:18:58.000+02:00","x86_64","2","SCA,VM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Péage,Linux Server,Cloud Agent","140.0" +"342140592","337420805","PCB24321.sanef.groupe","PCB24321","10:B6:76:93:FA:98","10.200.31.54","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YGD","","'+02:00","2026-04-15T10:21:37.000+02:00","SANEF\Mediouni-ext","Cloud Agent","6118be24-a103-4594-811e-0f56c129fe39","2025-07-16T08:49:04.000+02:00","2026-04-22T10:18:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"370646430","348979218","PCB21346.sanef.groupe","PCB21346","E4:60:17:CA:40:F9","10.205.0.34,192.168.1.55","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LS","","'+02:00","2026-04-01T06:44:46.000+02:00","SANEF\godefroyg","Cloud Agent","7bc2edeb-70f9-4d20-a74c-52bade35bdbe","2025-10-22T06:58:24.000+02:00","2026-04-22T10:18:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"130588628","192836893","vmamrsxt3","","00:50:56:82:60:09, 00:50:56:82:12:4D, 00:50:56:82:23:4D","10.33.16.62,10.32.16.62,10.30.16.62","fe80::250:56ff:fe82:6009,fe80::250:56ff:fe82:124d,fe80::250:56ff:fe82:234d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7d e6 2b 46 18 6d-cc 34 58 02 61 87 44 84","No Asset Tag","'+02:00","2025-10-09T11:39:38.000+02:00","cybexpapp","Cloud Agent","0d432158-cbf2-44af-a96b-158976ac6f3d","2022-07-07T12:05:53.000+02:00","2026-04-22T10:18:43.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Obsolete,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sans,Trafic,Recette,log4j,MID-APACHE-TOMCAT DYN,Sextan","699.0" +"340186410","336523816","PCB21298.sanef.groupe","PCB21298","64:4E:D7:49:1A:A2","10.152.30.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3440GKT","","'+02:00","2026-03-30T07:58:18.000+02:00","SANEF\vermeersch","Cloud Agent","4aa6d1b3-67c8-43c9-aca8-94609508f437","2025-07-08T16:43:15.000+02:00","2026-04-22T10:18:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"165477473","221770801","vrdsiawsus1.recette.adds","VRDSIAWSUS1","00:50:56:82:43:79","10.45.0.163","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 02 a1 32 2b 33 04 93-24 26 d6 19 0a c6 55 01","NoAssetTag","'+02:00","2026-04-15T11:27:28.000+02:00","RECETTE\b03987","Cloud Agent","4b089775-6ecd-4a1d-97f3-669be854518a","2023-04-05T14:38:53.000+02:00","2026-04-22T10:18:41.000+02:00","64-Bit","2","VM,GAV","DSI,BDD-SQL DYN,OS-WIN-SRV DYN,Recette,WSUS,Cloud Agent","232.0" +"295835229","317388750","vpngwasia1","","00:50:56:94:77:7d","10.44.2.196","fe80::250:56ff:fe94:777d","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 fd 85 a2 bc 8d 35-8a 61 7b 87 bb e6 14 b2","No Asset Tag","'+02:00","2026-02-02T16:44:55.000+02:00","tbaad","Cloud Agent","9f3dadeb-d99e-40cb-9749-876934fc2c26","2025-01-29T11:30:35.000+02:00","2026-04-22T10:18:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server","53.0" +"129343396","191950529","sppeaanvr9","SPPEAANVR9","98:F2:B3:27:4D:65","10.41.7.108","fe80::577d:d7e8:b662:eb21","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLS","","'+02:00","2026-02-02T15:45:53.000+02:00","Administrateur","Cloud Agent","488e3989-b588-4739-a3da-f01f6228516e","2022-06-27T15:34:38.000+02:00","2026-04-22T10:18:36.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,DEX,OS-WIN-SRV DYN,NVR,Windows Server,Cloud Agent,Sans,Production,Exploitation","523.0" +"211399224","250073992","vrpeabbst2.sanef-rec.fr","","00:50:56:9c:b1:be","10.45.10.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 85 d0 cd af 0d a8-00 69 b7 36 f7 38 2b 47","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","cybadmsys","Cloud Agent","ecfe5959-6a9e-49ab-a7b9-d042ddf918bf","2024-01-23T16:34:55.000+02:00","2026-04-22T10:18:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","DSI,Péage,BOOST,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN","141.0" +"169723549","225427800","vpdsiagit1.sanef.groupe","","00:50:56:82:a9:a3","10.30.11.216","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 3a 4b 2f 86 5f 03-22 a8 d0 1a 85 58 5f 55","No Asset Tag","'+02:00","2026-01-29T10:27:50.000+02:00","cybexpapp","Cloud Agent","69ea2e8a-9170-42ac-bdfb-3ecc80d170bc","2023-05-10T11:56:17.000+02:00","2026-04-22T10:18:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,CVS","140.0" +"183949377","235204371","vmamdpmv1","","00:50:56:82:18:5B","10.45.2.128","fe80::250:56ff:fe82:185b","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7c a1 fd 72 70 8d-57 f4 c1 96 c8 2a d1 cc","No Asset Tag","'+02:00","2025-10-08T13:43:04.000+02:00","cybexpapp","Cloud Agent","50ab478b-ce5c-4f6e-a556-5021d0b0d58d","2023-08-22T12:03:22.000+02:00","2026-04-22T10:18:27.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,MIVISU,Obsolete","867.0" +"378865939","352656721","PCB25827.sanef.groupe","PCB25827","28:95:29:1A:F1:C1","10.255.3.207,192.168.1.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVM","","'+02:00","2026-04-14T01:34:22.000+02:00","SANEF\SCHEMBRI","Cloud Agent","5cd6cc75-0e7e-48d8-bde5-5a425b1a00db","2025-11-24T13:29:41.000+02:00","2026-04-22T10:18:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"180099331","232620255","vrrauaast1.sanef-rec.fr","","00:50:56:9c:d9:be, 00:50:56:9c:05:31","10.45.9.227,10.45.5.33","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 06 b5 77 3b a8 49-0b 7a 92 6c 8b de 96 aa","No Asset Tag","'+02:00","2026-04-21T14:27:18.000+02:00","cybadmsys","Cloud Agent","6ea8fff9-b501-435a-bbbc-b252b4b77110","2023-07-26T17:16:56.000+02:00","2026-04-22T10:18:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,OS-LIN-SRV DYN,DSI,Cloud Agent,Linux Server","201.0" +"160222343","213244601","vrsupbcen1.sanef.groupe","","00:50:56:82:6e:11","10.45.0.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 07 e0 e6 17 72 3e-f2 47 c7 28 72 d1 af 72","No Asset Tag","'+02:00","2026-03-11T13:10:16.000+02:00","cybadmsys","Cloud Agent","3cb2591d-3ba7-4f13-9492-fe0c05ad5fcf","2023-02-22T13:06:10.000+02:00","2026-04-22T10:18:23.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,DSI,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Centreon","288.0" +"346615227","339059982","PCB25845.sanef.groupe","PCB25845","28:95:29:22:5D:DA","10.101.243.99,192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT2","","'+02:00","2026-04-20T09:00:24.000+02:00","SANEF\DEFOSSE","Cloud Agent","6d30bd4b-f9fe-4ed0-b3be-141d2745608f","2025-07-29T15:20:33.000+02:00","2026-04-22T10:18:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","333.0" +"138994697","198163433","RSMIRAU1","","10:60:4B:9C:57:E4, 10:60:4B:9C:57:DC","10.41.40.202,10.43.4.202","fe80::1260:4bff:fe9c:57e4,fe80::1260:4bff:fe9c:57dc","Linux / Server","Red Hat Enterprise Linux Server 6.3","6.3","Computers / Server","HPE ProLiant DL360 G7 Server","8","2400","Intel(R) Xeon(R) CPU E5620 @ 2.40GHz","7858","HP P68 05/05/2011","CZJ24400DR","","'+02:00","2025-06-10T15:52:29.000+02:00","cybsupapp","Cloud Agent","6ab0aef7-5896-4bab-9b42-24f63f46107c","2022-09-06T12:34:31.000+02:00","2026-04-22T10:18:11.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,OS-LIN-SRV DYN,DSI,Obsolete,VRF_INCONNUE,ServersInCyberark,Cloud Agent,Linux Server,Production,Exploitation","522.0" +"363318959","346060213","vrsamaext1.recette.adds","VRSAMAEXT1","00:50:56:9C:72:0C","192.168.10.3","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c a4 79 99 ba 96 84-19 93 6f 48 9f 90 64 35","NoAssetTag","'+02:00","2026-04-15T13:35:21.000+02:00","RECETTE\b03987","Cloud Agent","83876750-e173-4a4d-a7fc-837cc90fac62","2025-09-26T17:03:12.000+02:00","2026-04-22T10:18:10.000+02:00","64-Bit","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,Cloud Agent,OS-WIN-SRV DYN","479.0" +"240163727","273864824","LS-BOULAY-PSB","LS-BOULAY-PSB","20:67:7C:E7:54:94","10.92.10.21","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Computers / Server","HPE ProLiant ML350 G10 Server","6","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","15914","HPE U41","CZJ8470B2H","","'+02:00","2026-03-05T12:00:32.000+02:00","gare","Cloud Agent","4aa38478-8607-46a1-a6ae-9eeb8eb9b6e7","2024-05-29T14:02:03.000+02:00","2026-04-22T10:30:25.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Haute,Production,OS-WIN-SRV DYN,Péage,Cloud Agent,VRF_PEAGE_DC,VRF_BACKUP_DC,High","876.0" +"234568952","262085964","vrechatre3.sanef-rec.fr","","00:50:56:9c:b9:4f","10.45.11.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 7f d6 67 4a 43 36-82 22 54 0f 10 94 eb 6c","No Asset Tag","'+02:00","2026-03-25T13:39:53.000+02:00","cybadmsys","Cloud Agent","31668934-7f52-4255-ba90-da54b19172a6","2024-05-06T12:42:21.000+02:00","2026-04-22T10:18:02.000+02:00","x86_64","3","SCA,VM,PM,GAV","Recette,TALEND,OS-LIN-SRV DYN,Cloud Agent,Linux Server","221.0" +"139158116","198270707","vmampsxt4","","00:50:56:82:17:A2, 00:50:56:82:38:61, 00:50:56:82:61:C3","10.43.40.33,10.41.40.33,10.43.4.33","fe80::250:56ff:fe82:17a2,fe80::250:56ff:fe82:3861,fe80::250:56ff:fe82:61c3","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 5f 5a 21 87 08-cc 4f 12 18 2b 59 23 ba","No Asset Tag","'+02:00","2024-11-06T21:15:53.000+02:00","cybreconcile","Cloud Agent","41ed86ae-1ab0-4c15-b2a0-1a63aaadb290","2022-09-07T14:36:03.000+02:00","2026-04-22T10:17:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,VRF_TRAFIC_DC,DEX,Obsolete,log4j,Production,Trafic","699.0" +"338803303","","PCB21521.sanef.groupe","PCB21521","D0:AD:08:A3:E0:AE","10.100.39.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK3","","'+02:00","2026-04-15T12:50:51.000+02:00","SANEF\piotf","Cloud Agent","abc5e9a8-1fbd-4391-97d0-ed7febb0c695","2025-07-03T09:56:01.000+02:00","2026-04-22T10:17:56.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"165610538","221971339","vpameatra1.sanef.groupe","","00:50:56:82:73:2e","192.168.40.20","fe80::250:56ff:fe82:732e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 92 ce 9d 33 0d 0e-76 91 d2 15 d8 8d 62 e6","No Asset Tag","'+02:00","2026-04-15T10:05:10.000+02:00","cybreconcile","Cloud Agent","e527400e-fa04-45e6-914d-8b1af9fba2fb","2023-04-06T12:22:04.000+02:00","2026-04-22T10:17:34.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,DEX,OS-LIN-SRV DYN,Production,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,Cloud Agent,Linux Server","132.0" +"344320163","338308514","PCB20713.sanef.groupe","PCB20713","BC:0F:F3:3B:C9:F2","10.101.243.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D46","","'+02:00","2026-04-07T17:22:30.000+02:00","SANEF\yvert","Cloud Agent","a4c1d01a-3fe5-4d22-b576-c670ab00b92d","2025-07-23T10:04:12.000+02:00","2026-04-22T11:04:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"244968772","286215492","MTO21618.sanef.groupe","MTO21618","D0:AD:08:A4:4D:AF","10.89.31.7","fe80::ae10:6d62:8e37:7f85","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6199) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K3","","'+02:00","2026-03-04T11:52:52.000+02:00","SANEF\meteonewsW11","Cloud Agent","11282fcf-9cde-42f9-b2d1-973b15f0473f","2024-06-19T09:13:13.000+02:00","2026-04-22T10:17:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"356882850","343535435","PCB22517.sanef.groupe","PCB22517","E4:60:17:C5:07:BA","10.205.0.114,192.168.1.87","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GS","","'+02:00","2026-04-01T07:57:51.000+02:00","stephanie.dutacq@sapn.fr","Cloud Agent","11b5365a-2039-48b5-83ea-3aeb9610705d","2025-09-04T14:40:23.000+02:00","2026-04-22T10:17:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"191127169","239553778","vpiadapki2.sanef-int.adds","VPIADAPKI2","00:50:56:9A:8E:DC","10.44.3.11","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1a b7 8b 85 ce 4a 26-8d 96 ff 0d 76 0c 37 ac","NoAssetTag","'+02:00","2026-03-24T14:49:02.000+02:00","SANEF-INT\A17402","Cloud Agent","10007022-2138-4b68-aca2-360ae8fe7ac3","2023-10-03T11:49:46.000+02:00","2026-04-22T10:17:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,Gestion_PKI,Cloud Agent,Windows Server","253.0" +"130360055","192671645","vpppeaasvp1","VPPPEAASVP1","00:50:56:82:BB:94","10.41.29.11","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 e4 5f 75 14 c1 df-cb f3 40 f9 18 32 61 33","NoAssetTag","'+02:00","2026-02-19T13:05:12.000+02:00","SANEF-INT\b03987","Cloud Agent","d350fce0-cdba-4b71-bfc3-fa34648c4042","2022-07-05T17:33:40.000+02:00","2026-04-22T10:17:12.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,Haute,SVP,Recette,Péage,High,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN","634.0" +"395825841","359643460","VRAIRAHTP2","","00:50:56:9c:e7:1c","10.45.1.103","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 45 c1 34 37 27 d0-15 0c 45 3c 97 d0 d6 d6","No Asset Tag","'+02:00","2026-02-05T17:21:20.000+02:00","cybintsys","Cloud Agent","4ca0a099-f07f-42f4-967e-d964de9cc715","2026-01-29T12:20:23.000+02:00","2026-04-22T10:17:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,OS-LIN-SRV DYN,Linux Server,MID-NGINX DYN","139.0" +"372123651","349584354","vppciagtw1.sanef.groupe","","00:50:56:86:e6:08","192.168.105.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 06 ca 03 b6 92 21 00-01 ff e6 c6 ae e6 1b b5","No Asset Tag","'+02:00","2025-07-21T16:40:09.000+02:00","root","Cloud Agent","f56ee2eb-ffb7-4fef-934b-e486ad36bf19","2025-10-27T13:54:20.000+02:00","2026-04-22T10:17:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","333.0" +"197021705","242625488","MTR-CQ3J8Y3","MTR-CQ3J8Y3","6C:3C:8C:3D:5E:49","10.203.32.200","fe80::e165:e42c:a790:8729","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","CQ3J8Y3","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","57ce3233-1c03-4585-96bd-e4b07a7c576b","2023-11-02T13:54:46.000+02:00","2026-04-22T11:18:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"374115560","350463348","PCB21295.sanef.groupe","PCB21295","D0:AD:08:0C:6D:8E","10.1.31.1,10.255.1.145","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GKG","","'+02:00","2026-04-22T07:44:17.000+02:00","rodrigue.marques@sanef.com","Cloud Agent","6e979370-5a38-49e0-a628-d3979e25723d","2025-11-04T12:30:42.000+02:00","2026-04-22T10:17:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"141441506","199670184","vpbckacse2","VPBCKACSE2","00:50:56:82:58:88","10.42.16.70","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","49151","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 02 09 13 8e 01 1b f5-ef 97 37 81 bc 57 da 6c","NoAssetTag","'+02:00","2026-03-30T10:29:10.000+02:00","Administrator","Cloud Agent","e337cff1-0435-4f0a-8e5e-59f567513635","2022-09-23T10:49:11.000+02:00","2026-04-22T10:17:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,BDD-SQL DYN,VRF_BACKUP_DC,OS-WIN-SRV DYN,Cloud Agent,Windows Server","351.0" +"380784580","353377233","PCB18230.sanef.groupe","PCB18230","5C:60:BA:59:EC:D7","10.100.39.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y8Z","8CC2250Y8Z","'+02:00","2026-04-20T12:56:25.000+02:00","SANEF\guilluy","Cloud Agent","685b35a4-73fb-44ee-a8d2-a85f404943e6","2025-12-02T11:18:19.000+02:00","2026-04-22T10:16:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"341899839","337304876","PCB21527.sanef.groupe","PCB21527","D0:AD:08:A3:7B:5F","10.209.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWY","8CC3502YWY","'+02:00","2026-04-20T19:00:00.000+02:00","SANEF\leonard","Cloud Agent","4a36d3a3-6dd6-44da-99a1-9344da15f710","2025-07-15T10:02:22.000+02:00","2026-04-22T10:16:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"280792658","305600068","PCB21337.sanef.groupe","PCB21337","D0:AD:08:AA:50:BF","10.202.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764N0","","'+02:00","2026-04-06T09:18:37.000+02:00","SANEF\becquetv","Cloud Agent","e1ad1007-ef44-44cc-9b16-58b975be18b5","2024-11-20T12:12:48.000+02:00","2026-04-22T10:16:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"305488465","322759721","PCB18483.sanef.groupe","PCB18483","D0:AD:08:AA:50:15","10.107.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GJ","","'+02:00","2026-04-06T13:03:07.000+02:00","SANEF\cambay","Cloud Agent","0505e19b-2c65-4141-b84b-b7d6a4b93591","2025-03-05T12:21:51.000+02:00","2026-04-22T10:13:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"382721458","354098156","spbckmmag2.sanef.groupe","","04:bd:97:3e:68:b4","192.168.109.9","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C240 M5 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","31534","Cisco Systems, Inc. C240M5.4.3.2g.0.0515250954 05/15/2025","WZP25500WKY","Unknown","'+02:00","2025-12-09T13:29:34.000+02:00","root","Cloud Agent","fe8e0cdb-dc07-4295-8fdc-ab368b2ff599","2025-12-09T12:50:44.000+02:00","2026-04-22T11:39:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","328.0" +"383422407","354449836","PCV22822.sanef-int.adds","PCV22822","D0:AD:08:A3:7D:BB","10.27.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YNN","","'+02:00","2026-04-17T15:48:36.000+02:00","Operateur","Cloud Agent","87f8fec0-8d0a-4522-9463-31140b3a9367","2025-12-12T10:14:32.000+02:00","2026-04-22T10:16:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"175949260","229617190","vvbotarep1.sanef-rec.fr","","00:50:56:9c:fd:ec","10.45.6.140","fe80::250:56ff:fe9c:fdec","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 45 5d 19 e3 bf 42-83 28 d6 3a 84 43 0a 86","No Asset Tag","'+02:00","2026-03-12T15:18:59.000+02:00","cybreconcile","Cloud Agent","e382a969-d1de-4f96-84ca-249a19b63936","2023-06-26T16:30:00.000+02:00","2026-04-22T10:16:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,FreeFlow,flux_libre,Flux Libre","329.0" +"326648225","331288789","vpvsampci2","","00:50:56:86:09:5e","192.168.109.15","fe80::250:56ff:fe86:95e","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 6b 63 3d e5 6e 51-34 20 ee fa 34 b4 63 b3","No Asset Tag","'+02:00","2026-02-02T12:26:36.000+02:00","tbaad","Cloud Agent","b5809d2d-36ec-44f7-b02d-72d7b3211eb9","2025-05-22T17:21:07.000+02:00","2026-04-22T10:16:35.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent","52.0" +"241575082","276534362","vrdepaast1.sanef-rec.fr","","00:50:56:9c:d1:ef","10.45.13.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3664","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c f0 51 af e8 1a ae-3d df 78 87 80 4f b0 e8","No Asset Tag","'+02:00","2026-01-15T16:39:32.000+02:00","cybastsys","Cloud Agent","d3bbea99-fd05-45b1-b063-1ed639f99e63","2024-06-04T15:16:09.000+02:00","2026-04-22T10:16:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","144.0" +"213849842","251124346","spboomcla1.sanef.groupe","","5c:ba:2c:60:ae:c0","10.41.22.143","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95787","HPE U30 07/20/2023","CZ22410FKD","","'+02:00","2026-04-07T09:43:49.000+02:00","cybreconcile","Cloud Agent","0bc1bab5-67be-4531-a686-14b7644b08ec","2024-02-05T19:17:09.000+02:00","2026-04-22T10:16:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,FreeFlow,Flux Libre,Production,Cloud Agent,Linux Server","337.0" +"353262715","341935606","PCB18074.sanef.groupe","PCB18074","64:D6:9A:1D:2B:CB","10.101.243.30,10.0.0.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG2376HSS","","'+02:00","2026-04-15T09:01:30.000+02:00","SANEF\LHOMMEO","Cloud Agent","5a6bf9b9-5e43-4e8c-8a2c-5833370d104a","2025-08-21T09:53:44.000+02:00","2026-04-22T10:16:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","240.0" +"232016361","259578151","ls-charmont","LS-CHARMONT","00:50:56:90:93:E4","10.41.2.66","fe80::9556:1f56:3275:77d6","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 93 c7 56 9d c6 fe-f2 e8 e2 f4 c9 ad 53 7b","NoAssetTag","'+02:00","2026-03-24T12:06:02.000+02:00","svpadmin","Cloud Agent","c524706b-a53c-480a-99ce-a195f11e89a7","2024-04-24T09:21:10.000+02:00","2026-04-22T10:16:13.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,VRF_PEAGE_DC,High,DEX,OS-WIN-SRV DYN,Péage,SVP,Production","507.0" +"129337968","191946280","ls-yvetot","LS-YVETOT","00:50:56:90:A0:8D","10.41.2.86","fe80::111e:a59c:c6:ac2","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 eb 26 1d b7 ce ee-aa ae 62 03 59 0f 39 d1","NoAssetTag","'+02:00","2026-03-04T16:11:55.000+02:00","svpadmin","Cloud Agent","a34f84a6-65e2-4720-b4cb-dc7f1faca2af","2022-06-27T14:23:41.000+02:00","2026-04-22T10:16:11.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,High,Péage,Production,VRF_PEAGE_DC,SVP,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Haute","629.0" +"129355489","191960136","vpcotanvr1","VPCOTANVR1","00:50:56:82:29:22","10.217.36.10","fe80::272b:138:a256:e659","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 71 1e 27 fc 1d 7f-25 63 01 00 59 d9 1c a9","NoAssetTag","'+02:00","2026-02-16T16:15:16.000+02:00","Administrateur","Cloud Agent","b14cf4af-71ba-4732-b412-148acec05ef5","2022-06-27T17:55:03.000+02:00","2026-04-22T10:16:10.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Production,Exploitation,VRF_INCONNUE,NVR","508.0" +"322650851","329610124","PCB23754.sanef.groupe","PCB23754","C8:6E:08:48:DC:D0","10.255.3.138,10.255.3.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H26","","'+02:00","2026-03-30T09:16:30.000+02:00","SANEF\DESSENNE","Cloud Agent","685089f1-5b13-4673-9ff2-8b488e946305","2025-05-07T16:47:37.000+02:00","2026-04-22T10:16:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"167744458","224051351","vpgesaquo1.sanef.groupe","","00:50:56:82:ee:fa","10.100.16.6","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 bb c5 f5 be d4 74-24 70 0e fa 80 22 ca 2e","No Asset Tag","'+02:00","2026-01-29T12:04:55.000+02:00","cybreconcile","Cloud Agent","7af802e0-6711-4b9f-8be4-201679e24cac","2023-04-24T14:58:05.000+02:00","2026-04-22T10:16:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,Quorum,3PAR","142.0" +"383250509","354378659","PCB22349.sanef.groupe","PCB22349","D0:AD:08:A3:E7:97","10.252.42.149","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM9","8CC3502YM9","'+02:00","2026-04-13T07:06:50.000+02:00","SANEF\ravier","Cloud Agent","8d499e56-5c5f-4422-8d74-1dd71515ce66","2025-12-11T15:46:51.000+02:00","2026-04-22T11:19:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"241563624","276522522","vpvsaages2.sanef.groupe","","00:50:56:9c:02:61","10.42.16.83","fe80::250:56ff:fe9c:261","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c f9 3d e3 54 b3 61-09 4d 38 db 1e 3e 2d 7d","No Asset Tag","'+02:00","2026-02-04T15:59:26.000+02:00","tbaad-ext","Cloud Agent","0daeaf3f-26f3-41e5-9a42-41fbd8198ed2","2024-06-04T13:53:01.000+02:00","2026-04-22T10:16:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"415447090","367469151","PCB17502.sanef.groupe","PCB17502","70:A8:D3:85:73:FC","10.100.39.116,10.255.2.220","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG21724NZ","","'+02:00","2026-04-20T10:22:54.000+02:00","SANEF\DAHLKE","Cloud Agent","1b471fec-e0d8-48bb-96cf-b1ef0580a087","2026-04-13T11:52:15.000+02:00","2026-04-22T11:43:05.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Workstation,Forescout","677.0" +"410850412","365479897","PCB18618.sanef.groupe","PCB18618","38:CA:84:DB:E6:B1","10.4.30.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WD3","","'+02:00","2026-03-31T08:19:38.000+02:00","SANEF\digbeu-ext","Cloud Agent","ce190a82-1ade-4722-8476-2aca0b273c91","2026-03-24T11:08:27.000+02:00","2026-04-22T10:15:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"130588882","192836205","vmamrsxt1","","00:50:56:82:73:93, 00:50:56:82:2E:73, 00:50:56:82:69:1E","10.33.16.60,10.30.16.60,10.32.16.60","fe80::250:56ff:fe82:7393,fe80::250:56ff:fe82:2e73,fe80::250:56ff:fe82:691e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a6 8e eb 83 91 b8-d0 69 ec a5 7a d6 f9 b7","No Asset Tag","'+02:00","2025-10-09T11:39:32.000+02:00","cybexpapp","Cloud Agent","12d97d2c-e53a-486e-8273-da5ef8c65d95","2022-07-07T12:04:45.000+02:00","2026-04-22T10:15:36.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sextan,DEX,Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE,log4j,Recette,Sans,Trafic","699.0" +"351157832","341068665","VRBURXBAN7.sanef.groupe","VRBURXBAN7","00:50:56:82:BB:00","10.30.4.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 02 09 cd c4 c1 da 76-71 5b 04 58 ab 61 fe a5","NoAssetTag","'+02:00","2026-04-15T13:37:50.000+02:00","","Cloud Agent","8622926d-0132-41d8-b7bd-c18061af592e","2025-08-13T18:16:10.000+02:00","2026-04-22T10:15:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"208777986","248746837","vibotapps2.sanef.groupe","","00:50:56:90:1d:96","10.41.23.137","fe80::250:56ff:fe90:1d96","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 94 04 c8 9e 5c 19-48 57 ca 74 4f e4 a8 ac","No Asset Tag","'+02:00","2026-03-17T11:09:14.000+02:00","cybreconcile","Cloud Agent","cc4bb2b8-2c99-41b0-813e-3f01a5645dd0","2024-01-10T12:58:35.000+02:00","2026-04-22T10:02:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,FreeFlow,Cloud Agent,Linux Server","141.0" +"346258649","339006015","PCB25847.sanef.groupe","PCB25847","28:95:29:1A:FE:87","10.205.0.5,192.168.1.57","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV9","","'+02:00","2026-04-16T09:37:21.000+02:00","alexandre.beauge@sanef.com","Cloud Agent","5264de20-143e-4da0-b203-d25e3bf8dc99","2025-07-29T12:38:36.000+02:00","2026-04-22T10:15:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"317343007","327571264","nvr-spare-alb","NVR-SPARE-ALB","00:50:56:90:F2:FD","10.252.17.254","fe80::7095:3fc5:75e6:3265","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 10 ff 10 68 f6 38 46-78 2e 56 4d 6c 51 9e a7","NoAssetTag","'+02:00","2026-02-25T12:04:14.000+02:00","Administrateur","Cloud Agent","6147de41-9ae1-4334-b021-5a991c331d04","2025-04-17T08:45:10.000+02:00","2026-04-22T10:15:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,Péage","245.0" +"321548725","329078771","PCB23652.sanef.groupe","PCB23652","C8:6E:08:89:0A:A3","10.255.3.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB6","","'+02:00","2026-04-15T14:06:46.000+02:00","SANEF\LIVENAIS","Cloud Agent","42e5949f-6586-4405-8885-c6c3eb8ee07d","2025-05-02T11:49:48.000+02:00","2026-04-22T10:15:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"171734767","226770082","lragtbpla1.sanef.groupe","","3e:33:fb:a0:00:a5, 3e:33:fb:a0:00:a4","10.45.1.227","fe80::3c33:fbff:fea0:a5,fe80::3c33:fbff:fea0:a4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63887","HPE I44 06/13/2025","VCGBW5200K","/n/Bios Asset Tag :","'+02:00","2026-02-23T17:19:46.000+02:00","oracle","Cloud Agent","8911252f-42b8-4a22-aa5b-fd12d7f3c2e8","2023-05-25T11:20:04.000+02:00","2026-04-22T10:15:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,AgileTime,DRH","339.0" +"148429963","223597160","vppatbcao1.sanef.groupe","VPPATBCAO1","00:50:56:82:D2:04","10.41.50.12","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-56 4d 5f 9d 99 48 14 99-c8 44 f7 cf 43 73 2a a7","NoAssetTag","'+02:00","2026-04-15T13:07:05.000+02:00","SANEF\ndead","Cloud Agent","5a73015a-cbba-4e60-a781-c3c171ceddd0","2022-11-17T19:02:47.000+02:00","2026-04-22T11:47:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,BDD-SQL DYN,Administration_MS","203.0" +"327577343","333860585","vrdsibetc3.sanef-rec.fr","","00:50:56:bf:85:20","10.100.16.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 3f e1 47 4c e6 87 c6-8f a5 dc 27 b2 4d 00 02","No Asset Tag","'+02:00","2026-01-06T13:53:56.000+02:00","cybadmbdd","Cloud Agent","aad2d7ad-d15c-4b5e-92a4-94921c6b4541","2025-05-27T15:24:08.000+02:00","2026-04-22T10:15:08.000+02:00","x86_64","2","SCA,VM,GAV","BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","141.0" +"159249333","211845831","vpsasactr1.sanef.groupe","","00:50:56:82:e1:6d","10.41.32.6","fe80::250:56ff:fe82:e16d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","128400","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7e 68 66 a1 6c aa-c6 3a e1 d6 dc 9c 09 7e","No Asset Tag","'+02:00","2026-03-25T16:02:01.000+02:00","cybreconcile","Cloud Agent","af6606fc-6a57-4b19-8632-834a308f2af4","2023-02-14T16:35:03.000+02:00","2026-04-22T10:15:07.000+02:00","x86_64","3","SCA,VM,PM,GAV","SAS,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,VRF_BURO_DC,BDD-POS DYN","93.0" +"213855690","251126730","lampdec1.sanef.groupe","","00:17:A4:77:14:E6","10.30.13.140","fe80::217:a4ff:fe77:14e6","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G8 Server","24","2000","Intel(R) Xeon(R) CPU E5-2620 0 @ 2.00GHz","48262","","CZ3232T6EL","","'+02:00","2024-09-17T10:37:46.000+02:00","cybadmbdd","Cloud Agent","156d7940-47a5-496d-a3fd-08a5a9f1150e","2024-02-05T20:01:30.000+02:00","2026-04-22T10:15:01.000+02:00","x86_64","3","SCA,VM,GAV","log4j,Cloud Agent,Linux Server,BusinessObjects,BDD-POS DYN,OS-LIN-SRV DYN,Obsolete,DFIN","529.0" +"335897723","336780141","vrrpaangx1.sanef-rec.fr","","00:50:56:9c:16:d2","10.45.14.227","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 1d 78 01 8c 4a d0-cd 00 26 9a 79 43 18 d9","No Asset Tag","'+02:00","2026-02-23T10:33:33.000+02:00","cybsupcar","Cloud Agent","44586578-1757-4548-b297-a52e315c4347","2025-06-24T10:23:46.000+02:00","2026-04-22T10:15:00.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Péage,MID-NGINX DYN,Linux Server,Cloud Agent","140.0" +"195074577","241703494","vvbocrsap1.sanef-rec.fr","","00:50:56:9c:55:c1","10.45.6.12","fe80::250:56ff:fe9c:55c1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c7 15 4c 32 fc 78-29 df 68 ce e2 c0 b1 ca","No Asset Tag","'+02:00","2026-03-10T10:11:12.000+02:00","cybsupsys","Cloud Agent","704b4548-7fc8-49e9-ae47-baa62e733487","2023-10-24T08:03:31.000+02:00","2026-04-22T10:14:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server,Flux Libre","334.0" +"404429706","362844343","PCB25818.sanef.groupe","PCB25818","28:95:29:22:6B:31","10.255.1.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CST","","'+02:00","2026-04-14T08:14:27.000+02:00","SANEF\HERVALET","Cloud Agent","dff09f1f-8855-4053-9cbe-c960455e1307","2026-02-26T17:29:22.000+02:00","2026-04-22T10:14:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"406013806","363470533","PCM18569.sanef-int.adds","PCR18569","30:13:8B:6C:5B:B2","10.45.13.200","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473TP","","'+02:00","2026-03-19T16:24:59.000+02:00","UserPCT","Cloud Agent","e7c20ba6-38b2-4eb2-83f2-9ca31c79b341","2026-03-04T16:40:08.000+02:00","2026-04-22T10:14:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"373789062","350330628","PSX18689.sanef-int.adds","PSX18689","30:13:8B:6C:5E:56","10.12.40.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473W7","","'+02:00","2026-01-16T16:56:41.000+02:00","UserSextan","Cloud Agent","b065b30b-ba32-47ef-8830-e79499516bc8","2025-11-03T12:14:50.000+02:00","2026-04-22T11:23:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"322374316","329449367","PCB23687.sanef.groupe","PCB23687","6C:0B:5E:EE:A3:58","10.200.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBL","","'+02:00","2026-03-30T08:56:35.000+02:00","SANEF\avinin","Cloud Agent","b0ccb98a-2481-4c5d-a9da-111bb07910dc","2025-05-06T14:06:59.000+02:00","2026-04-22T10:14:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"175461662","229280306","vvbotreco2.sanef-rec.fr","","56:ed:ae:09:e6:94, ea:fc:6a:70:d1:2c, 6e:70:e9:cb:2e:8a, c2:94:47:eb:4b:a0, 00:50:56:9c:93:d3, 02:b2:4d:b0:18:d0","10.45.6.155,10.89.0.1","fe80::54ed:aeff:fe09:e694,fe80::e8fc:6aff:fe70:d12c,fe80::6c70:e9ff:fecb:2e8a,fe80::c094:47ff:feeb:4ba0,fe80::250:56ff:fe9c:93d3,fe80::b2:4dff:feb0:18d0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f8 f4 f9 b9 d3 44-08 9f 36 b4 e3 36 1c 85","No Asset Tag","'+02:00","2026-03-10T15:11:05.000+02:00","cybreconcile","Cloud Agent","47dac430-a3d2-4dc3-84c3-2d5c3ea604fd","2023-06-22T16:50:06.000+02:00","2026-04-22T10:14:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Recette,flux_libre","140.0" +"350533261","340461433","PCB25828.sanef.groupe","PCB25828","28:95:29:1A:FE:C8","10.205.0.98,192.168.1.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT5","","'+02:00","2026-04-18T20:19:45.000+02:00","SANEF\GUENAND","Cloud Agent","f89eb558-97a3-4515-8ae6-937cbdf9d335","2025-08-11T11:41:21.000+02:00","2026-04-22T10:13:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"360522982","344983043","PCB18640.sanef.groupe","PCB18640","38:CA:84:DB:E6:DD","10.200.31.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDY","","'+02:00","2026-04-20T14:02:05.000+02:00","SANEF\SEGUIN","Cloud Agent","fb98fccf-c986-4390-a059-0853dd5780ce","2025-09-17T14:01:07.000+02:00","2026-04-22T10:13:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"399698917","361244581","PCV20889.sanef-int.adds","PCV20889","30:13:8B:6C:60:82","10.100.7.61","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q7W","","'+02:00","2026-03-30T15:08:57.000+02:00","Operateur","Cloud Agent","652ea2d4-e87f-4e13-ab57-d412f7864d66","2026-02-12T19:04:38.000+02:00","2026-04-22T10:13:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"130586805","192835988","vmamrdif1.sanef.groupe","","00:50:56:82:0C:04","10.45.2.25","fe80::250:56ff:fe82:c04","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 b7 da fe 38 e7 af-c5 f8 4a 09 65 33 bf 74","No Asset Tag","'+02:00","2025-10-09T11:37:48.000+02:00","root","Cloud Agent","4b4cc9e0-1393-4bd2-a872-473ff5d2607f","2022-07-07T11:59:30.000+02:00","2026-04-22T11:47:26.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,VRF_INCONNUE,BDD-POS DYN,OS-LIN-SRV DYN,DEX,Sextan,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,log4j,Trafic,Recette,Sans","696.0" +"334495487","336780139","vrdsiarad1.sanef-rec.fr","","00:50:56:9c:41:8f","10.45.14.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 8f e8 03 a0 cd 70-bf 12 f0 4b 25 5b 2c a1","No Asset Tag","'+02:00","2026-04-20T16:55:11.000+02:00","cybadmroot","Cloud Agent","091c8c68-abea-443f-8477-5cece3743e9f","2025-06-18T17:35:29.000+02:00","2026-04-22T10:13:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette,Radius","66.0" +"162519244","216734613","RSMIWDC1.sanef.groupe","RSMIWDC1","00:50:56:82:50:83","10.30.22.30","fe80::4c9d:c820:8775:1571","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 f1 c1 fd b2 81 c3-e5 6a 2b a8 22 d4 77 99","NoAssetTag","'+02:00","2026-02-25T10:47:44.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","02433872-6f9c-469f-8a5d-7bcd902f7912","2023-03-13T16:47:21.000+02:00","2026-04-22T10:13:36.000+02:00","64-Bit","5","SCA,VM,PM,GAV","AD,DSI,Cloud Agent,Windows Server,Critical,OS-WIN-SRV DYN","845.0" +"411158635","365551022","vplogakib1","","00:50:56:94:f3:0c","10.44.7.37","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 21 fe ed f3 95 c5-06 92 34 c4 70 65 6c 79","No Asset Tag","'+02:00","2026-04-15T10:55:05.000+02:00","cybintsys","Cloud Agent","8cf0a59b-7c48-4da0-bde5-d939c657fd99","2026-03-24T19:05:08.000+02:00","2026-04-22T10:13:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","103.0" +"175950696","229618441","vvbocharg1.sanef-rec.fr","","00:50:56:9c:8d:a8","10.45.6.4","fe80::250:56ff:fe9c:8da8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 84 e2 ba e7 23 1b-f3 1f e2 1c 6e 37 fe e6","No Asset Tag","'+02:00","2026-03-11T16:01:47.000+02:00","cybsupsys","Cloud Agent","79393a41-1ae4-4e20-a725-73faabdf17bf","2023-06-26T16:42:59.000+02:00","2026-04-22T10:13:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Cloud Agent,Linux Server,Flux Libre,MID-APACHE-TOMCAT DYN,Recette,OS-LIN-SRV DYN","142.0" +"378308167","352424268","PSX18702.sanef-int.adds","PSX18702","30:13:8B:6C:5D:48","10.100.40.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WL","","'+02:00","2026-04-19T12:49:58.000+02:00","UserSextan","Cloud Agent","9490eb13-b688-4a7d-849c-503110446069","2025-11-21T14:07:03.000+02:00","2026-04-22T10:13:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"378055027","352307187","vpdsiangx4.sanef.groupe","","00:50:56:90:b6:c0","192.168.19.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 58 e0 f3 49 5a cd-a1 4b 62 d7 2f 21 93 33","No Asset Tag","'+02:00","2025-11-20T13:40:09.000+02:00","root","Cloud Agent","7be8f63a-d7f7-49bc-956a-d6f883f75240","2025-11-20T13:41:29.000+02:00","2026-04-22T10:13:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","330.0" +"176109783","229744363","MTR-D1DSNT3","MTR-D1DSNT3","00:15:5D:42:DA:45, 90:8D:6E:93:CB:A9","172.19.80.1,10.2.32.201","fe80::4647:b54f:4158:f318,fe80::c5a2:db25:7e4:4d26","Windows / Client","Microsoft Windows 10 IoT Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","1992","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","D1DSNT3","","'+02:00","2026-04-22T02:32:44.000+02:00","Skype","Cloud Agent","21c0029e-682b-4175-8674-aac80e782b3d","2023-06-27T17:07:59.000+02:00","2026-04-22T10:13:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"400732597","361612568","PCV20864.sanef-int.adds","PCV20864","30:13:8B:6C:5B:EA","10.5.7.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q8D","","'+02:00","2026-02-18T11:40:07.000+02:00","Operateur","Cloud Agent","cdff5af6-a14c-4cc0-82cb-12e410a4fc96","2026-02-16T18:31:14.000+02:00","2026-04-22T11:05:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"351067078","341029049","PCB25808.sanef.groupe","PCB25808","F8:ED:FC:AB:02:4A","10.101.243.71","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVV","","'+02:00","2026-04-14T09:39:53.000+02:00","SANEF\BENHADDOU","Cloud Agent","c4f4693a-bb85-46be-a9c0-fb94d35d4bae","2025-08-13T11:13:59.000+02:00","2026-04-22T09:34:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"130588848","192836203","vmamrrdt1","","00:50:56:82:0C:6D, 00:50:56:82:09:BB","10.45.2.185,10.45.2.189,10.45.2.190,10.45.2.191,10.45.2.193,10.45.3.185,10.45.3.189,10.45.3.190,10.45.3.191,10.45.3.193","fe80::250:56ff:fe82:c6d,fe80::250:56ff:fe82:9bb","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 40 aa b1 b8 96 ee-ca 32 05 82 2c 6a be 61","No Asset Tag","'+02:00","2025-10-09T11:38:41.000+02:00","cybexpapp","Cloud Agent","8fb0d821-c304-4c9d-9bc4-1bea5285db80","2022-07-07T12:03:10.000+02:00","2026-04-22T10:13:12.000+02:00","x86_64","5","SCA,VM,PM,GAV","DEX,log4j,OS-LIN-SRV DYN,Obsolete,Trafic,Sans,Recette,VRF_INCONNUE,MIVISU,Cloud Agent,Linux Server","873.0" +"173079542","227655711","vdbocmedi1.sanef-rec.fr","","00:50:56:9c:2e:2f","10.45.6.37","fe80::250:56ff:fe9c:2e2f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d2 43 f7 d2 cf b3-01 ce 33 e0 9a 55 5d a6","No Asset Tag","'+02:00","2026-03-11T10:03:59.000+02:00","ibmsysuser","Cloud Agent","56d77215-91cc-4a3c-a9d7-1115975bdce9","2023-06-05T15:51:34.000+02:00","2026-04-22T10:12:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre,OS-LIN-SRV DYN","333.0" +"318377516","328022255","PCB22843.sanef.groupe","PCB22843","D0:AD:08:A3:E6:DA","10.107.31.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQQ","8CC3502YQQ","'+02:00","2026-03-24T15:20:11.000+02:00","SANEF\bocquetp","Cloud Agent","51d78c3f-b88b-4061-af9f-efe4c28236f0","2025-04-22T10:57:41.000+02:00","2026-04-22T10:12:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"407337019","364036786","MAC16761","MAC16761","be:74:3d:d4:10:06","10.255.1.178,192.168.1.63","2a01:cb0c:82e4:9d00:5df:fd0d:fbbc:a62e,2a01:cb0c:82e4:9d00:1c29:7e9:901f:c0f8,fe80::437:dcc1:5ddc:d184","Mac / Client","Apple macOS Tahoe (26.4)","26.4","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFF94DDQ05P","","'+02:00","2026-03-26T10:51:00.000+02:00","Sylvain.DAVROU","Cloud Agent","0e51b99e-2b91-4e5b-a65b-0f9e4da0bfdc","2026-03-10T11:00:05.000+02:00","2026-04-22T10:12:52.000+02:00","arm64_M1","2","SCA,VM,PM,GAV","Cloud Agent,MID-NGINX DYN,BDD-POS DYN","64.0" +"294384825","316468985","vptrabwaz1.sanef.groupe","","00:50:56:90:eb:a7","10.41.40.124","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 81 00 bc 47 3a d7-67 52 ba 14 24 0f 77 35","No Asset Tag","'+02:00","2026-01-21T15:15:10.000+02:00","cybintsys","Cloud Agent","4716d04a-9ddd-447e-b8d4-7fe20ca5c32f","2025-01-23T13:48:18.000+02:00","2026-04-22T10:12:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,BDD-ELA DYN,OS-LIN-SRV DYN","142.0" +"323162176","329803515","PCB23720.sanef.groupe","PCB23720","C8:6E:08:45:1B:A9","10.220.31.31,10.82.165.71","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H31","","'+02:00","2026-04-08T17:32:25.000+02:00","SANEF\FIOREV","Cloud Agent","9c74ee56-4133-4a84-88c5-a9a6e8366ea8","2025-05-09T11:17:49.000+02:00","2026-04-22T11:13:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"322126626","329347477","PCB21593.sanef.groupe","PCB21593","60:45:2E:10:9D:2F","10.255.2.234","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS6","8CC3502YS6","'+02:00","2026-03-29T09:11:36.000+02:00","SANEF\GUHRING","Cloud Agent","2ee97cac-697b-4702-8cbe-39cb31335717","2025-05-05T16:22:20.000+02:00","2026-04-22T10:12:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"189179496","238409385","vvpeaarcv2.sanef-rec.fr","","00:50:56:9c:2e:91","10.45.6.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c b9 78 20 06 79 a2-ad 17 ca 6a 65 ff ff 78","No Asset Tag","'+02:00","2026-03-09T13:04:38.000+02:00","cybreconcile","Cloud Agent","8358e818-71b8-4b64-8f6d-38275e33642f","2023-09-21T13:59:29.000+02:00","2026-04-22T11:38:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN,Recette,flux_libre,Flux Libre","336.0" +"177828430","231012596","vpdsiatse1.sanef-int.adds","VPDSIATSE1","00:50:56:8D:32:9D","10.44.2.40","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2800","INTEL(R) XEON(R) GOLD 6526Y","4095","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 0d 9f b7 18 ff cd 73-59 96 c3 b2 35 93 4a 02","NoAssetTag","'+02:00","2026-04-13T11:35:39.000+02:00","SANEF-INT\B05604","Cloud Agent","65be929f-e674-4a81-a807-cba2973cee83","2023-07-10T10:30:01.000+02:00","2026-04-22T10:12:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Rebond","246.0" +"238296972","269274161","lpemvbpemv4.sanef.groupe","","00:17:a4:77:1c:94, 00:17:a4:77:1c:24, 00:17:a4:77:1c:20","169.254.17.11,172.16.0.118,192.168.103.118,192.168.101.118,192.168.101.148","fe80::217:a4ff:fe77:1c94,fe80::217:a4ff:fe77:1c24,fe80::217:a4ff:fe77:1c20","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","CZ255300JN","","'+02:00","2025-10-08T16:33:15.000+02:00","grid","Cloud Agent","bffc7a43-eac3-4dbb-8f25-1cd79473640b","2024-05-21T16:48:50.000+02:00","2026-04-22T10:12:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,EMV,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17,Production","684.0" +"407771009","364205182","splogbels4","","d4:f5:ef:39:84:5d","10.44.7.44","fe80::d6f5:efff:fe39:845d","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G10 Server","16","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","31493","HPE U30 08/06/2025","CZ2051091W","","'+02:00","2026-03-27T16:25:40.000+02:00","cybintsys","Cloud Agent","560222bd-b1c6-49c2-99a3-59a8d298040d","2026-03-11T18:30:30.000+02:00","2026-04-22T10:12:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Cloud Agent,OS-LIN-SRV DYN,Linux Server,Production,BDD-ELA DYN","152.0" +"332880170","333625720","vpagtaftp1.sanef.groupe","VPAGTAFTP1","00:50:56:82:D2:66","10.46.33.20","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 4a 31 18 3b bd 68-fe ef 97 cf 6b aa f4 42","NoAssetTag","'+02:00","2026-03-26T15:01:27.000+02:00","SANEF\tbead","Cloud Agent","0b581902-f4aa-4d41-bead-26382e2b591a","2025-06-12T12:02:48.000+02:00","2026-04-22T10:12:16.000+02:00","64-Bit","2","SCA,VM,GAV","OS-WIN-SRV DYN,Cloud Agent","59.0" +"165730508","236955949","vrvidavsc2.recette.adds","VRVIDAVSC2","00:50:56:9C:0F:43","10.45.7.100","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1c b0 f5 ee d5 3d 72-b2 c6 fe d3 19 f5 13 fe","NoAssetTag","'+02:00","2026-01-05T15:04:23.000+02:00","RECETTE\ndessoye","Cloud Agent","f8fe790f-1387-41a7-9b0a-46977dcba96f","2023-04-07T10:40:06.000+02:00","2026-04-22T10:12:03.000+02:00","64-Bit","3","SCA,VM,GAV","OS-WIN-SRV DYN,DEX,NVR,Cloud Agent,Recette","517.0" +"323186398","329818130","PCB23770.sanef.groupe","PCB23770","6C:0B:5E:EE:B3:F8","10.3.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4V","","'+02:00","2026-04-20T07:18:09.000+02:00","SANEF\russoj","Cloud Agent","dbfe840f-5a7b-4c85-b766-bdb994242d6e","2025-05-09T14:22:24.000+02:00","2026-04-22T10:12:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"360834094","345069350","vrrauafrt1.sanef-rec.fr","","00:50:56:9c:5c:ed, 00:50:56:9c:18:ff","10.45.9.235,10.45.5.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c c1 ae b8 80 17 13-bd 2a a6 c7 93 d4 cc 41","No Asset Tag","'+02:00","2026-04-21T15:17:32.000+02:00","cybadmsys","Cloud Agent","bfe3f61e-251b-4f25-b3ea-8df35e5bfaa0","2025-09-18T07:47:18.000+02:00","2026-04-22T10:12:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","47.0" +"380802560","353385274","PCB17971.sanef.groupe","PCB17971","C0:18:03:85:64:0A","10.100.39.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC2061747","8CC2061747","'+02:00","2026-04-16T05:00:14.000+02:00","SANEF\chaves","Cloud Agent","997d96d2-754f-42b0-9359-31dde9cb6d3d","2025-12-02T12:45:57.000+02:00","2026-04-22T10:11:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"194984819","241652733","vpbotbsql1.sanef.groupe","VPBOTBSQL1","00:50:56:90:0B:08, 02:E5:04:1E:05:EE","10.41.23.12,169.254.1.116","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 10 10 78 4a 09 f6 53-49 2b 3b 1c b7 d8 7b 6d","NoAssetTag","'+02:00","2026-04-21T15:46:07.000+02:00","SANEF\ndead","Cloud Agent","dd33cb73-139d-4169-9695-e512ea181f7f","2023-10-23T17:39:53.000+02:00","2026-04-22T10:11:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,FreeFlow,Flux Libre,Cloud Agent,Windows Server,flux_libre,Production","254.0" +"322648531","329616868","PCS22776.sanef-int.adds","PCS22776","D0:AD:08:A3:E7:A6","10.152.13.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YL3","","'+02:00","2026-04-01T09:59:59.000+02:00","user_stl","Cloud Agent","6d7e9ff0-e896-4a9d-abf0-9fc27f072c14","2025-05-07T17:42:16.000+02:00","2026-04-22T10:11:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","346.0" +"314663097","326546973","vpdsiakib1.sanef.groupe","","00:50:56:94:87:c4","10.44.5.165","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 41 44 1c 7d d8 ce-ca 45 1e 1f 74 cc 25 3f","No Asset Tag","'+02:00","2026-02-10T10:24:43.000+02:00","cybreconcile","Cloud Agent","fc28a327-5742-4f5b-a645-7c184930d7a0","2025-04-08T17:03:59.000+02:00","2026-04-22T10:11:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server","140.0" +"321551175","329071331","PCB22814.sanef.groupe","PCB22814","D0:AD:08:A3:E6:D9","10.103.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQP","8CC3502YQP","'+02:00","2026-04-19T13:02:45.000+02:00","SANEF\swaertvaeger","Cloud Agent","e76ce93d-3d9c-4758-ab01-a6d117fd0300","2025-05-02T09:56:24.000+02:00","2026-04-22T10:11:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"375600264","351158513","DAI20967.sanef-int.adds","DAI20967","BC:0F:F3:88:FD:3A","10.100.70.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LM6","","'+02:00","2025-11-13T18:31:22.000+02:00","DAIUSER","Cloud Agent","45122d92-2740-4359-b113-3f379d50dc9f","2025-11-10T16:58:50.000+02:00","2026-04-22T10:11:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"199138445","243767693","vptchagtc2","VPTCHAGTC2","00:50:56:82:02:1D","10.41.19.46","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 ae 23 2c ba ff e0-6d 80 d3 b4 97 56 0f 70","NoAssetTag","'+02:00","2026-03-24T15:57:38.000+02:00","admin_gtc","Cloud Agent","3fc2ad16-d593-4fc3-b8d1-398a93e3dc45","2023-11-15T13:19:31.000+02:00","2026-04-22T11:39:10.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,BDD-SQL DYN,GTC,DEX,OS-WIN-SRV DYN","831.0" +"270790245","300117334","SVP21041.sanef-int.adds","SVP21041","D0:AD:08:A7:28:13","10.154.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK4","","'+02:00","2026-04-20T05:08:24.000+02:00","Superviseur","Cloud Agent","633bd512-1b3d-421d-bef3-b9c739645c53","2024-10-08T10:24:40.000+02:00","2026-04-22T10:11:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"387115105","356492877","vmdtrac09.recette.adds","VMDTRAC09","00:50:56:9C:37:63","10.45.17.11","fe80::fd80:245e:2758:9f76","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 1e c5 6c 18 d7 a6-8b 40 88 de 2b c5 2f 84","NoAssetTag","'+02:00","2026-04-16T02:50:52.000+02:00","supwindev","Cloud Agent","089ed4c8-d023-47c3-861b-72d9f3bd1598","2025-12-31T10:57:02.000+02:00","2026-04-22T10:11:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"320612891","328743971","PCB23637.sanef.groupe","PCB23637","6C:0B:5E:EE:A3:46","10.5.31.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBR","","'+02:00","2026-04-13T10:46:42.000+02:00","SANEF\floquets","Cloud Agent","f21ebfcb-df2f-4a79-9ffd-1f69ae802d4c","2025-04-29T17:09:21.000+02:00","2026-04-22T11:37:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"332233886","","PCB21174.sanef.groupe","PCB21174","F0:20:FF:9A:A7:D1","10.255.4.220","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HV8","","'+02:00","2026-04-13T13:22:45.000+02:00","SANEF\VINCENT","Cloud Agent","8473c510-32b3-4349-8dc4-039018c66011","2025-06-10T10:49:13.000+02:00","2026-04-22T10:11:14.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"354639273","342479604","vpdsiasaf1.sanef.groupe","","00:50:56:90:31:5a, b2:2c:a3:11:f1:e1, b6:c5:71:61:e3:86","192.168.19.8,10.88.0.1","fe80::b02c:a3ff:fe11:f1e1,fe80::b4c5:71ff:fe61:e386","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3654","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 18 f1 f2 d9 9f 21-1d 7b b0 2f ea 0a 2b 23","No Asset Tag","'+02:00","2026-03-24T11:14:21.000+02:00","cybsupsys","Cloud Agent","05c67cdb-9eb6-4732-b336-1b3a5a338677","2025-08-26T15:03:25.000+02:00","2026-04-22T11:14:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","144.0" +"169599230","225349571","vrpeaabst1","","ba:f3:68:f1:12:88, 00:50:56:9c:19:a2","10.88.0.1,192.168.31.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8c ba 46 dd f6 5c-87 b2 62 4e 52 99 23 2d","No Asset Tag","'+02:00","2026-02-18T10:30:01.000+02:00","cybastapp","Cloud Agent","e860f3f8-0fb1-47d1-a9bf-03ee4de3146c","2023-05-09T15:02:28.000+02:00","2026-04-22T10:11:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,DMZ,BOOST,Cloud Agent,Linux Server,DSI,Péage,OS-LIN-SRV DYN","327.0" +"159252140","211849458","vpsasawrk1.sanef.groupe","","00:50:56:82:97:37","10.41.32.10","fe80::250:56ff:fe82:9737","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 5a 6d 3c 43 b4 c2-31 62 2c 0b 7c 39 7a 2d","No Asset Tag","'+02:00","2026-03-25T16:03:56.000+02:00","cybreconcile","Cloud Agent","54c2b156-2f0e-4b01-8fbb-36327c43c9b1","2023-02-14T17:09:43.000+02:00","2026-04-22T10:11:04.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,VRF_BURO_DC,OS-LIN-SRV DYN,BDD-POS DYN,SAS,Cloud Agent,Linux Server","93.0" +"191765853","239933428","vragtatse2.recette.adds","VRAGTATSE2","00:50:56:9C:43:55","10.45.1.229","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c f1 8f 94 76 6c e2-ae 62 d0 6a 98 bb 18 ab","NoAssetTag","'+02:00","2026-02-23T16:35:48.000+02:00","RECETTE\B07185","Cloud Agent","32a897e3-a0fa-42bd-9af9-df9b07fe5271","2023-10-06T12:05:08.000+02:00","2026-04-22T10:11:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DRH,OS-WIN-SRV DYN,Cloud Agent,Windows Server,AgileTime,Recette","254.0" +"373797096","350330421","MacBook-Pro.sanef.groupe","MACBOOK-PRO-4","3e:ac:d0:93:0f:7e","192.168.1.115,10.204.70.141","fe80::189a:9816:1487:3816","Mac / Client","Apple macOS Tahoe (26.3.1)","26.3","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFF76D2Q05N","","'+02:00","2026-04-18T11:28:00.000+02:00","julien.pointillart","Cloud Agent","fc100b8f-172c-4195-a427-59ed1ae155da","2025-11-03T12:13:15.000+02:00","2026-04-22T10:11:01.000+02:00","arm64_M1","2","SCA,VM,PM,GAV","Cloud Agent","63.0" +"188895660","238252323","lpgesanas2.sanef.groupe","LPGESANAS2","02:E3:AB:43:6D:CF, 3E:33:FB:A0:00:05, 3E:33:FB:A0:00:09","169.254.2.74,10.46.30.6,10.46.30.10,10.43.1.67","fe80::5106:3f7d:2c33:4fcc,fe80::12b:5f13:aea1:d222,fe80::125:5db5:8ab1:33ca","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Computers / Server","HPE Synergy 480 G10 Server","32","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","65223","HPE I44","VCGBW52000","","'+02:00","2026-01-29T11:31:54.000+02:00","Administrateur","Cloud Agent","43814114-511e-429b-ad01-d7e92d7a00b0","2023-09-20T11:03:53.000+02:00","2026-04-22T10:10:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DFS,Cloud Agent,Windows Server","348.0" +"396161645","359784957","vmdtrac14.recette.adds","VMDTRAC14","00:50:56:9C:8A:5B","10.45.17.16","fe80::e691:fe78:141b:944b","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 27 e4 59 ee 77 1f-ca 4e 41 63 b3 62 20 99","NoAssetTag","'+02:00","2026-04-16T17:37:32.000+02:00","supwindev","Cloud Agent","5609fda0-844d-4131-b11f-aa3a87779c64","2026-01-30T18:37:03.000+02:00","2026-04-22T11:46:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"280788729","305600067","PCB21325.sanef.groupe","PCB21325","D0:AD:08:AA:50:9D","10.220.31.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LX","","'+02:00","2026-04-01T10:43:25.000+02:00","SANEF\graveleaun","Cloud Agent","3b048d80-d65c-464a-aca5-2ae1be469108","2024-11-20T12:11:55.000+02:00","2026-04-22T11:44:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","146.0" +"281406923","305953568","vtpataels1.sanef-rec.fr","","00:50:56:9c:b6:b3","10.45.9.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c7 9a 4d 53 0c 32-65 e0 44 6f f3 07 80 1d","No Asset Tag","'+02:00","2026-04-14T16:00:43.000+02:00","cybsecope","Cloud Agent","fe05b703-706a-4324-ae6c-0952a9bc8caa","2024-11-22T11:14:25.000+02:00","2026-04-22T10:10:30.000+02:00","x86_64","2","VM,PM,GAV","Recette,Patrimoine,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","65.0" +"366064116","347186417","PCB25784.sanef.groupe","PCB25784","F8:ED:FC:AB:02:99","10.5.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVH","","'+02:00","2026-04-15T11:40:40.000+02:00","SANEF\vengadassalame","Cloud Agent","c95c8ebe-4671-404d-92e9-3e0909414d95","2025-10-07T11:37:09.000+02:00","2026-04-22T10:59:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","147.0" +"387155302","356516515","vmdtrac13.recette.adds","VMDTRAC13","00:50:56:9C:D4:00","10.45.17.15","fe80::b111:bf7e:14b6:6bfa","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 69 3d 81 69 88 4e-f3 4e 49 6c a6 69 8f f7","NoAssetTag","'+02:00","2026-04-16T17:37:04.000+02:00","supwindev","Cloud Agent","61ebeb29-2896-429c-a953-e90bdc01c05e","2025-12-31T16:27:50.000+02:00","2026-04-22T11:34:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"364982225","346726315","PCB22263.sanef.groupe","PCB22263","D0:AD:08:A7:27:DC","10.5.30.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YST","","'+02:00","2026-04-21T15:01:59.000+02:00","SANEF\bregoli","Cloud Agent","0c59da4a-9f6f-4b2b-a91b-08c0a472e050","2025-10-02T15:20:28.000+02:00","2026-04-22T10:10:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"175416002","229251780","vvbocs4as2.sanef-rec.fr","","00:50:56:9c:0b:6b","10.45.6.10","fe80::250:56ff:fe9c:b6b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 12 88 ad 5a c9 fd-2b 42 24 7c e1 69 48 a2","No Asset Tag","'+02:00","2026-03-09T11:36:12.000+02:00","cybsupsys","Cloud Agent","962f14d5-aa5d-453f-9736-a87f28712b1f","2023-06-22T11:15:17.000+02:00","2026-04-22T10:10:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Recette,Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN","142.0" +"227199088","256869360","ls-athies","LS-ATHIES","00:50:56:90:78:37","10.41.2.51","fe80::eeea:5484:4cf4:108f","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 5d 0e c3 d1 39 ae-1a 7c 58 cd 16 76 03 27","NoAssetTag","'+02:00","2026-04-02T09:43:27.000+02:00","svpadmin","Cloud Agent","5bb309bc-6e4d-4e91-9d19-5a2bd380a8c1","2024-04-03T10:42:00.000+02:00","2026-04-22T10:10:03.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,SVP,High,Péage","507.0" +"324401372","330231590","PCB20833.sanef.groupe","PCB20833","6C:0B:5E:EE:A3:0D","10.5.31.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H32","","'+02:00","2026-03-31T16:19:22.000+02:00","SANEF\callec","Cloud Agent","ecd75740-cbe4-490b-accd-366d7c0063a8","2025-05-13T14:48:16.000+02:00","2026-04-22T10:10:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"249841179","288937560","vpbocardp1.sanef.groupe","VPBOCARDP1","00:50:56:90:36:0F","10.44.6.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 ce 76 21 21 94 98-74 9e 9b f3 6c d1 59 d2","NoAssetTag","'+02:00","2026-04-01T10:36:13.000+02:00","SANEF\ndead","Cloud Agent","93e9065a-e8e9-438f-b169-e61b8c59bdb1","2024-07-10T17:46:18.000+02:00","2026-04-22T10:09:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,flux_libre,Cloud Agent","245.0" +"130588308","192835991","vmamrhtp2","","00:50:56:82:6A:A5, 00:50:56:82:47:9D, 00:50:56:82:4A:25","10.33.16.51,10.30.16.51,10.30.16.54,10.30.16.55,10.30.16.56,10.32.16.51,10.32.16.54,10.32.16.55,10.32.16.56","fe80::250:56ff:fe82:6aa5,fe80::250:56ff:fe82:479d,fe80::250:56ff:fe82:4a25","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 4b 5e e6 a2 bd cc-12 db 6d 7c 85 60 a4 9d","No Asset Tag","'+02:00","2025-10-09T11:55:07.000+02:00","cybexpapp","Cloud Agent","577d5ed6-0449-42c4-b1d6-54d920fc49a4","2022-07-07T12:00:59.000+02:00","2026-04-22T11:31:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Cloud Agent,Linux Server,DEX,VRF_INCONNUE,Obsolete,Amelie","349.0" +"131403992","193422091","lamaprac2.sanef.groupe","","00:17:A4:77:10:30, 00:17:A4:77:10:2C, 00:17:A4:77:10:24, 00:17:A4:77:10:28","10.43.40.52,192.168.17.121,10.41.40.52,10.41.40.53,10.43.4.132,169.254.214.18","fe80::217:a4ff:fe77:1030,fe80::217:a4ff:fe77:102c,fe80::217:a4ff:fe77:1024,fe80::217:a4ff:fe77:1028","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DH","","'+02:00","2025-10-06T11:06:39.000+02:00","cybadmbdd","Cloud Agent","ce87a0f9-a504-4146-9a16-6a37638d429f","2022-07-13T10:10:23.000+02:00","2026-04-22T10:09:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,OS-LIN-SRV DYN,log4j,VRF_TRAFIC_DC,Sans,Trafic,Production","351.0" +"292150349","314800832","ls-spare-tqx","LS-SPARE-TQX","00:50:56:82:B1:FE","10.4.2.252","fe80::6b41:6b3c:ae09:56ae","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 3f 94 27 77 d5 aa-62 a0 85 e0 f2 11 b0 36","NoAssetTag","'+02:00","2026-02-16T14:13:46.000+02:00","gare","Cloud Agent","86a31016-7c98-475d-aea0-da188fbafc34","2025-01-14T10:26:44.000+02:00","2026-04-22T11:33:59.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Péage,SVP,OS-WIN-SRV DYN","680.0" +"374169822","350494751","PCV18544.sanef-int.adds","PCV18544","30:13:8B:6C:5B:4F","10.5.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473SZ","","'+02:00","2026-04-16T10:56:34.000+02:00","Operateur","Cloud Agent","8fdeb10d-18ea-4406-b433-fa2ab269b341","2025-11-04T17:11:35.000+02:00","2026-04-22T11:09:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"216883440","252316001","vpaflgsys1.sanef.groupe","","00:50:56:9c:b2:c4","10.46.34.8","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 49 a9 85 65 58 62-44 16 76 34 12 cc c7 e7","No Asset Tag","'+02:00","2026-04-01T10:04:25.000+02:00","cybsupapp","Cloud Agent","53dcd2a6-a9b8-4b6a-bd86-653e7a553ef0","2024-02-19T12:34:56.000+02:00","2026-04-22T11:33:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,flux_libre,Cloud Agent,Linux Server,Flux Libre","143.0" +"320444685","328709020","PCB24029.sanef.groupe","PCB24029","6C:0B:5E:F8:D8:8B","10.100.39.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDL","","'+02:00","2026-04-20T10:05:36.000+02:00","SANEF\BLANCHOT","Cloud Agent","dd065323-22b7-4363-8641-3a69d11eebaa","2025-04-29T11:17:33.000+02:00","2026-04-22T10:54:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"407049273","363914030","PCB23593.sanef.groupe","PCB23593","C8:6E:08:8A:3C:2A","10.255.3.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5W","","'+02:00","2026-04-07T16:21:45.000+02:00","SANEF\ottevaere","Cloud Agent","32afbc12-abd6-45ab-a9af-910bd56335f9","2026-03-09T09:13:19.000+02:00","2026-04-22T10:18:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"242127639","276920601","vpvsaaiad2","","00:50:56:9a:20:fb","10.44.0.105","fe80::250:56ff:fe9a:20fb","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a ff 99 15 58 8c 88-35 5e 93 3a 9d 82 57 2d","No Asset Tag","'-04:00","2026-02-04T18:09:39.000+02:00","tbaad-ext","Cloud Agent","7f232d97-39f9-4718-a716-f12f7b69e0aa","2024-06-06T15:32:26.000+02:00","2026-04-22T10:56:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"397495753","360376399","vmmvscdem4.sanef-int.adds","VMMVSCDEM4","00:50:56:90:90:97","10.41.7.238","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 9c fa 06 87 56 c5-0a ea b7 df c7 1d 9b e0","NoAssetTag","'+02:00","2026-02-05T12:59:34.000+02:00","Operateur","Cloud Agent","ca96ab59-e33d-4372-93a9-a8bc4053ba6f","2026-02-04T18:58:37.000+02:00","2026-04-22T10:09:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"324333089","330196639","PCB18634.sanef.groupe","PCB18634","64:D6:9A:74:73:EF","10.205.0.99,10.255.1.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WD0","","'+02:00","2026-04-03T11:52:53.000+02:00","SANEF\CONTREIRAS","Cloud Agent","6b63bb09-6cbf-4ff1-9b0e-b8a4a0bbe3c1","2025-05-13T09:41:49.000+02:00","2026-04-22T11:36:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"131405505","193423067","rmila150.sanef.groupe","","A0:D3:C1:FB:60:28","10.30.11.42","fe80::a2d3:c1ff:fefb:6028","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant DL360p G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","64386","HP P71 05/21/2018","CZJ429008S","","'+02:00","2025-10-22T09:42:22.000+02:00","cybexpapp","Cloud Agent","16d71e28-4c81-4b1f-be5d-590341dfacf0","2022-07-13T10:22:07.000+02:00","2026-04-22T10:31:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,Production,Sans,VRF_INCONNUE,Obsolete,OS-LIN-SRV DYN,log4j,DEX,Central péage,ServersInCyberark,Cloud Agent,Linux Server","346.0" +"417983498","368438752","MTO22918.sanef.groupe","MTO22918","60-45-2E-11-62-C8, 60-45-2E-11-62-C9, D0-AD-08-A3-7B-E7, 62-45-2E-11-62-C8, 60-45-2E-11-62-CC","10.252.4.7","fe80::1c7f:c169:2354:6c42","Windows / Client","Microsoft Windows 11 Enterprise (Insider Preview Build 26200)","11","Computers / Unidentified","Computers","","","","","","8CC3502YVJ","","'+02:00","","","Cloud Agent","2aef0277-ab6f-41f7-b587-ecd0feeeebc8","2026-04-22T10:09:31.000+02:00","2026-04-22T10:09:30.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"376333333","351479848","PCB24092.sanef.groupe","PCB24092","C8:58:B3:34:29:D4","10.205.0.44,192.168.1.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M6S","","'+02:00","2026-04-16T08:55:09.000+02:00","SANEF\saidani-ext","Cloud Agent","59c64de1-23d7-4552-af68-5c91b83f3971","2025-11-13T11:19:00.000+02:00","2026-04-22T10:09:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"364174784","346468694","PCV18551.sanef-int.adds","PCV18551","30:13:8B:6C:58:C4","10.152.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473T7","","'+02:00","2026-02-23T10:24:02.000+02:00","Operateur","Cloud Agent","68c49748-f12c-4783-af66-3f80a59b3cf9","2025-09-30T11:18:52.000+02:00","2026-04-22T10:09:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"366892020","347534122","vrpatbsip1.sanef.groupe","","00:50:56:9c:59:c3","10.43.255.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6d 29 5c a0 81 a1-77 aa 6c 2e dd 19 c7 8f","No Asset Tag","'+02:00","2026-04-07T14:24:42.000+02:00","cybsupapp","Cloud Agent","3c25e3ab-a99d-4d69-8049-c2f141f32163","2025-10-09T12:26:18.000+02:00","2026-04-22T10:52:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","60.0" +"324329964","330197568","PCB18617.sanef.groupe","PCB18617","64:D6:9A:74:70:E8","10.4.31.74,192.168.1.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDB","","'+02:00","2026-03-30T17:12:18.000+02:00","SANEF\mathieu","Cloud Agent","ddfe41d6-895f-4d9c-998c-2e1dc7dda92c","2025-05-13T09:54:36.000+02:00","2026-04-22T11:40:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"362737044","345821231","PCB17878.sanef.groupe","PCB17878","70:A8:D3:85:C5:EB","192.168.1.196","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG217247P","","'+02:00","2026-04-22T09:10:40.000+02:00","SANEF\valdegamberi","Cloud Agent","09be7180-eb17-48d4-8fed-1385099a1b81","2025-09-24T16:51:22.000+02:00","2026-04-22T10:09:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"324324774","330196892","PCB18615.sanef.groupe","PCB18615","38:CA:84:DB:E6:CA","10.4.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDH","","'+02:00","2026-04-17T13:28:22.000+02:00","SANEF\zabajewski","Cloud Agent","c9e5544a-a263-474f-86d8-d8bca3598134","2025-05-13T09:46:03.000+02:00","2026-04-22T10:09:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"207907268","248274035","vpaflbsta1.sanef.groupe","VPAFLBSTA1","00:50:56:9C:54:C9","10.46.34.4","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 7f e6 41 c1 7f a6-73 ad 2e bb 19 34 52 3c","NoAssetTag","'+02:00","2026-04-01T15:07:21.000+02:00","Administrateur","Cloud Agent","51f7c157-2957-456c-8edd-853703367264","2024-01-05T11:20:10.000+02:00","2026-04-22T10:09:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,flux_libre,BDD-SQL DYN,OS-WIN-SRV DYN,Flux Libre,FreeFlow,Cloud Agent,Windows Server","254.0" +"371887041","349552432","PCB22449.sanef.groupe","PCB22449","D0:AD:08:A3:E6:CD","10.105.31.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSK","8CC3502YSK","'+02:00","2026-04-14T09:42:00.000+02:00","SANEF\delahaye","Cloud Agent","d712f0b7-8404-4eb0-a761-84d2665ea949","2025-10-27T08:51:17.000+02:00","2026-04-22T10:09:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"381854279","353709866","PCB22280.sanef.groupe","PCB22280","D0:AD:08:A3:7B:DC","10.252.42.141","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVQ","8CC3502YVQ","'+02:00","2026-04-09T10:18:41.000+02:00","SANEF\fontained","Cloud Agent","d1f5a865-0e09-42ab-8796-93a63055ea81","2025-12-05T10:34:07.000+02:00","2026-04-22T11:33:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"208624727","248644832","vibotrssm2.sanef.groupe","","00:50:56:90:69:c2","10.41.23.153","fe80::250:56ff:fe90:69c2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 21 65 d0 bb f0 bc-fa 79 45 bc 6f 83 c7 fa","No Asset Tag","'+02:00","2026-03-18T16:38:50.000+02:00","cybreconcile","Cloud Agent","b6c6fa77-f6ed-44e3-a92d-9467175a1d35","2024-01-09T18:19:50.000+02:00","2026-04-22T10:08:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Production,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Cloud Agent,Linux Server,flux_libre","139.0" +"323156235","329793780","PCB22314.sanef.groupe","PCB22314","D0:AD:08:A3:7B:E4","10.200.30.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZR","8CC3502YZR","'+02:00","2026-03-30T09:34:21.000+02:00","SANEF\breval","Cloud Agent","838182af-fb6c-491f-86c2-424d3aed026a","2025-05-09T09:32:44.000+02:00","2026-04-22T10:08:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"380798367","353383553","PCB17968.sanef.groupe","PCB17968","C0:18:03:85:61:62","10.100.39.157","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206175K","8CC206175K","'+02:00","2026-04-06T22:46:47.000+02:00","SANEF\PSI","Cloud Agent","8c2d1305-36e4-484e-b775-0e69cc5fc308","2025-12-02T12:27:47.000+02:00","2026-04-22T10:08:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"321578354","329094786","PCB22325.sanef.groupe","PCB22325","D0:AD:08:A3:7C:BD","10.207.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYK","8CC3502YYK","'+02:00","2026-04-07T13:04:09.000+02:00","SANEF\belloc","Cloud Agent","14032de5-179b-4306-8757-a301d6afb305","2025-05-02T15:01:59.000+02:00","2026-04-22T10:08:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"271509896","300534723","PCM16040.sanef.groupe","PCM16040","48:9E:BD:4B:90:39","10.200.61.6","fe80::209c:af45:5765:904e","Windows / Client","Microsoft Windows 10 Enterprise (20H2 Build 19042.746)","20H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129285J","8CC129285J","'+02:00","2026-02-19T11:19:34.000+02:00","SANEF\opessarts","Cloud Agent","33953a53-0949-4911-a82a-32138461c342","2024-10-11T10:01:01.000+02:00","2026-04-22T10:08:27.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","685.0" +"272326721","300954740","vvbotaapm2.sanef-rec.fr","","2a:6b:d6:c3:8a:75, 00:50:56:9c:73:de, 7a:3c:ba:2d:1a:de, 2e:4a:5a:df:b9:7d, 4a:80:9b:0e:a8:dd, ba:51:e4:e5:73:f8, 32:b0:53:b2:af:ef","10.45.6.157,10.89.0.1","fe80::286b:d6ff:fec3:8a75,fe80::250:56ff:fe9c:73de,fe80::783c:baff:fe2d:1ade,fe80::2c4a:5aff:fedf:b97d,fe80::4880:9bff:fe0e:a8dd,fe80::b851:e4ff:fee5:73f8,fe80::30b0:53ff:feb2:afef","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 22 b4 ed d0 bb 55-bd c6 34 0a 12 17 3a 11","No Asset Tag","'+02:00","2026-03-10T10:48:23.000+02:00","kapschsysuser","Cloud Agent","2e9b3aa9-4441-49d9-a57b-d87526c3176f","2024-10-15T12:09:05.000+02:00","2026-04-22T11:46:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","142.0" +"218502735","253210495","viosapquo1.sanef.groupe","","00:50:56:90:5a:44","10.100.16.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 f2 8e be 55 ad fe-e6 88 8d cc 59 f3 c5 51","No Asset Tag","'+02:00","2026-02-19T15:45:05.000+02:00","cybadmroot","Cloud Agent","e95202a1-eb90-4277-a712-a8862f9b648e","2024-02-28T15:03:52.000+02:00","2026-04-22T11:06:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,Péage","141.0" +"210040166","249438986","siboomcla1.sanef.groupe","","5c:ba:2c:61:34:d0","10.41.22.204","fe80::87:a7ad:d2b7:8033","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95780","HPE U30 07/20/2023","CZ22410FK8","","'+02:00","2026-03-16T12:58:26.000+02:00","cybsupemo","Cloud Agent","c8cf4951-9272-4efe-9a0a-53b3b1d1ed4d","2024-01-17T12:56:03.000+02:00","2026-04-22T10:08:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN","337.0" +"225055358","255954594","ls-jules-verne","LS-JULES-VERNE","00:50:56:90:AD:45","10.132.5.20","fe80::a0cb:a872:d8e0:358f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 ed bf a3 fc 33 04-92 97 48 4a c5 88 4d 25","NoAssetTag","'+02:00","2026-03-03T11:35:55.000+02:00","svpadmin","Cloud Agent","d80565ac-361a-4fbd-88b9-6807b8848589","2024-03-25T11:49:15.000+02:00","2026-04-22T10:07:59.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Production,SVP,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,High,Haute,Péage","635.0" +"201283026","244756870","PCB18081.sanef.groupe","PCB18081","38:CA:84:52:67:75","10.100.39.234","fe80::f92d:1025:3bc0:7302","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG2376HR9","","'+02:00","2026-04-22T08:40:01.000+02:00","SANEF\AMATO","Cloud Agent","fe39d4fa-cf05-41ea-a777-46807b62b3bb","2023-11-28T10:21:03.000+02:00","2026-04-22T11:35:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"297474042","318646029","OSA22819.sanef-int.adds","OSA22819","D0:AD:08:A3:E6:AE","10.209.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQH","","'+02:00","2026-04-17T08:47:28.000+02:00","Superviseur","Cloud Agent","169fb878-5224-4ceb-bb39-4d206dffcd47","2025-02-04T10:22:49.000+02:00","2026-04-22T10:07:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"377802815","352206901","PCB25888.sanef.groupe","PCB25888","4C:CF:7C:0A:5C:62","10.252.42.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534221F","","'+02:00","2026-04-14T08:41:41.000+02:00","SANEF\MAURICE","Cloud Agent","0c319727-8354-4ee4-b76b-17ec0fff1170","2025-11-19T17:41:01.000+02:00","2026-04-22T10:07:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","331.0" +"214115359","251250678","MTR-6Q3J8Y3","MTR-6Q3J8Y3","6C:3C:8C:3D:5C:53","10.6.32.200","fe80::a007:e93a:ab37:6ad9","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","6Q3J8Y3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","3048119f-bfc2-4bb5-a368-5fa76779b849","2024-02-07T00:53:21.000+02:00","2026-04-22T10:07:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"168303463","224523362","PCB15685.sanef.groupe","PCB15685","DC:1B:A1:EE:A6:83","10.100.39.162,192.168.1.203","fe80::dc3c:89ad:8516:2a84","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G7 Notebook","8","2208","Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz","7961","HP S70 Ver. 01.01.06","5CG0415494","","'+02:00","2026-04-15T09:07:19.000+02:00","SANEF\HASNAOUI-ext","Cloud Agent","d1440b14-a635-4d31-8170-ef714a95e052","2023-04-28T12:42:24.000+02:00","2026-04-22T10:07:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320047241","328597898","PCB22913.sanef.groupe","PCB22913","D0:AD:08:A7:27:B5","10.139.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNH","8CC3502YNH","'+02:00","2026-04-08T16:22:07.000+02:00","SANEF\leclercqfr","Cloud Agent","97837b52-f2b0-48a6-a0db-02a6d95f9f1c","2025-04-28T09:49:57.000+02:00","2026-04-22T10:07:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"374708992","350744324","PCV18564.sanef-int.adds","PCV18564","30:13:8B:6C:5B:48","10.5.7.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TF","","'+02:00","2026-03-15T18:11:43.000+02:00","Operateur","Cloud Agent","de4e0881-debd-44a1-8c6f-92574bc1899b","2025-11-06T16:36:32.000+02:00","2026-04-22T11:06:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"323212275","329820454","PCB23587.sanef.groupe","PCB23587","6C:0B:5E:ED:A2:33","10.100.39.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4Q","","'+02:00","2026-04-17T18:32:15.000+02:00","SANEF\SVAY","Cloud Agent","2a9c65c3-0051-4218-8ef5-7c1ae92563eb","2025-05-09T14:52:39.000+02:00","2026-04-22T10:07:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","144.0" +"186260446","236704966","vvafljump1.recette.adds","VVAFLJUMP1","00:50:56:9C:D7:C9","10.45.8.131","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c a4 aa 33 7b 91 c5-e8 a0 cc 13 78 f2 fd 3c","NoAssetTag","'+02:00","2026-04-22T01:00:50.000+02:00","RECETTE\B03987","Cloud Agent","3c291609-9875-430d-a6c1-748edb1289ee","2023-09-05T17:23:14.000+02:00","2026-04-22T10:07:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,FreeFlow,Recette,OS-WIN-SRV DYN,BDD-SQL DYN,flux_libre,Flux Libre","257.0" +"322331213","329420220","PCB21275.sanef.groupe","PCB21275","D0:AD:08:0C:6D:6C","10.4.31.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GJL","","'+02:00","2026-04-16T08:15:20.000+02:00","SANEF\hemery","Cloud Agent","40e37670-53db-46ae-bce9-b2003b5fa4ce","2025-05-06T09:23:25.000+02:00","2026-04-22T10:07:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"324031877","","PCB20687.sanef.groupe","PCB20687","BC:0F:F3:3B:B9:82","10.200.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3C","","'+02:00","2026-04-08T14:07:45.000+02:00","SANEF\lebourg","Cloud Agent","c3cc36bf-1a84-437e-9aad-dab0e3effe99","2025-05-12T12:00:20.000+02:00","2026-04-22T10:07:09.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"395321155","359405551","PCB21099.sanef.groupe","PCB21099","E4:60:17:CA:3F:CD","10.205.0.133,10.172.239.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L1","","'+02:00","2026-04-20T11:20:27.000+02:00","SANEF\glokpor-ext","Cloud Agent","cd918eba-de32-4621-8353-3f7d88721a3c","2026-01-27T12:44:52.000+02:00","2026-04-22T11:05:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"129336695","191946450","VPPATBL2R1.sanef.groupe","VPPATBL2R1","00:50:56:82:09:40","10.42.40.13","fe80::7c04:8771:dc55:13c0","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-56 4d ea a0 4e d1 96 45-91 ba ed 21 e7 e6 7f 00","NoAssetTag","'+02:00","2026-01-22T11:28:17.000+02:00","SANEF\delcour","Cloud Agent","52dba2b0-1cac-4ff0-ba0b-4502a18b5d12","2022-06-27T14:28:34.000+02:00","2026-04-22T10:07:08.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,L2R,DFIN,Patrimoine,OS-WIN-SRV DYN,VRF_PATRIMOINE_DC,Production","509.0" +"318969382","328233350","MTR-CJRTL64","MTR-CJRTL64","D0:46:0C:95:30:6A","10.108.32.201","fe80::8c6d:584a:2e5d:ef45","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","CJRTL64","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","4f62a4fb-6b93-47f3-9c97-ec1bd57efb59","2025-04-23T21:07:30.000+02:00","2026-04-22T10:07:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"240046093","273674969","SVP20974.sanef-int.adds","SVP20974","BC:0F:F3:87:6F:A2","10.142.2.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.10.04","8CC3290LMP","","'+02:00","2026-04-22T07:57:34.000+02:00","Superviseur","Cloud Agent","7a967986-2152-4436-bbcf-3d9510d61c36","2024-05-29T10:36:24.000+02:00","2026-04-22T10:07:05.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Cloud Agent,Workstation","686.0" +"392818522","358345782","vrdsialab1.sanef-rec.fr","","00:50:56:9c:c1:6d, f6:b2:59:e4:24:8c","10.45.16.35,172.28.0.1","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 03 94 48 e5 29 52-01 30 01 ad a1 7d a9 ae","No Asset Tag","'+02:00","2026-03-12T12:45:36.000+02:00","egret","Cloud Agent","47369580-1000-4a85-9a51-601646181033","2026-01-16T16:53:03.000+02:00","2026-04-22T11:01:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,Recette","144.0" +"382417790","353964318","PCB25867.sanef.groupe","PCB25867","F8:ED:FC:AB:02:61","10.252.42.129","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVK","","'+02:00","2026-04-20T09:38:20.000+02:00","SANEF\RIVA","Cloud Agent","c3607099-274e-458e-89cc-29e2901396d5","2025-12-08T09:50:04.000+02:00","2026-04-22T10:07:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"378067606","352316852","PCV22450.sanef-int.adds","PCV22450","D0:AD:08:A3:E6:BA","10.217.36.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YQB","","'+02:00","2026-03-20T19:59:37.000+02:00","Operateur","Cloud Agent","b1d90c42-5502-468d-a558-ffbab45a64ed","2025-11-20T15:31:41.000+02:00","2026-04-22T10:58:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"378054296","352301512","PCV21555.sanef-int.adds","PCV21555","D0:AD:08:A3:7B:55","10.209.7.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YRM","","'+02:00","2026-04-17T08:54:18.000+02:00","Operateur","Cloud Agent","13998a87-b23c-426b-9ee6-ac32499e6619","2025-11-20T12:42:22.000+02:00","2026-04-22T10:06:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"348824677","339744813","PCB24013.sanef.groupe","PCB24013","44:A3:BB:95:D2:BF","10.205.0.120,10.255.1.203","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","Dell Latitude 7350 Notebook","14","1700","Intel(R) Core(TM) Ultra 7 165U","32213","Dell Inc. 1.15.1","85VTX64","","'+02:00","2026-04-17T09:30:46.000+02:00","SANEF\TOUZOT","Cloud Agent","436f70fb-fd01-4410-a95b-fff57a72c3d7","2025-08-04T10:13:18.000+02:00","2026-04-22T10:06:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"246261768","286964920","MTO22332.sanef.groupe","MTO22332","D0:AD:08:A7:27:DD","10.202.31.10","fe80::818c:7b45:e9d:65f9","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.4037) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSX","","'+02:00","2025-04-24T10:54:42.000+02:00","SANEF\meteonewsW11","Cloud Agent","9486e58b-500a-4b95-8a89-f92369afb16f","2024-06-25T10:48:54.000+02:00","2026-04-22T10:06:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"295110908","316903631","vpngwasic1","","00:50:56:8f:2a:08","10.44.200.100","fe80::250:56ff:fe8f:2a08","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 8c 8c 10 61 a3 3e-2c 38 cd e7 ed a9 d2 17","No Asset Tag","'+02:00","2026-02-02T17:06:04.000+02:00","root","Cloud Agent","be9b172d-c0d6-47a0-bea9-380445f251fc","2025-01-27T16:06:15.000+02:00","2026-04-22T11:24:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,TAG-SIA,TAG-SIC","53.0" +"365863055","347087251","vpresardp2.sanef-int.adds","VPRESARDP2","00:50:56:94:AB:05","10.44.7.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 14 89 16 80 06 41 9e-c5 d0 d7 73 15 c2 d6 7f","NoAssetTag","'+02:00","2025-11-12T15:59:32.000+02:00","b03987@sanef-int","Cloud Agent","9e14b2e8-0c07-4984-857d-3fa6ed6a4d9a","2025-10-06T15:43:27.000+02:00","2026-04-22T10:06:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Production,Radius,Cloud Agent","346.0" +"196660167","242432943","vpbooaori2.sanef.groupe","","00:50:56:90:d4:76","10.41.22.140","fe80::250:56ff:fe90:d476","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7e 22 57 82 fd 6c-88 dc d8 6c 06 55 0b f5","No Asset Tag","'+02:00","2026-04-07T15:15:07.000+02:00","cybreconcile","Cloud Agent","a4da858e-2083-4d84-a008-757940e37101","2023-10-31T18:27:14.000+02:00","2026-04-22T10:06:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Flux Libre,flux_libre,Cloud Agent,Linux Server,FreeFlow","335.0" +"131270365","193318815","vpaiiarda1.sanef.groupe","","00:50:56:82:51:9f","10.30.10.75","fe80::250:56ff:fe82:519f","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7982","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 fe 90 65 4f 1d 60-a9 51 72 cc dc 3b ac 2e","No Asset Tag","'+02:00","2024-09-10T09:40:14.000+02:00","cybreconcile","Cloud Agent","e4ad2df0-22c5-4f84-b526-6ac743d97f59","2022-07-12T15:25:26.000+02:00","2026-04-22T10:06:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,Cloud Agent,Linux Server,Production,Obsolete,VRF_INCONNUE,Rebond","53.0" +"218315519","252974484","viboobquo1.sanef.groupe","","00:50:56:90:97:24","10.100.16.11","fe80::250:56ff:fe90:9724","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 d4 4f 35 f5 f9 fe-7a 3e 58 29 08 a1 76 e6","No Asset Tag","'+02:00","2026-03-16T11:16:12.000+02:00","cybreconcile","Cloud Agent","2359e7a8-4ea6-44bd-b7ce-16fc12a4d629","2024-02-26T15:32:46.000+02:00","2026-04-22T11:46:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre","141.0" +"374439355","350622031","SMI18193.sanef.groupe","SMI18193","00:90:FB:76:F9:E5","10.100.40.222","","Windows / Client","Microsoft Windows 10 Enterprise LTSC 2019 (1809 Build 17763.3887) 64-Bit","1809","Unidentified / Unidentified","Advantech Default_string","8","3601","Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz","32678","American Megatrends Inc. R1.00.E0C.DP01","Default string","Defaultstring","'+02:00","2026-04-16T17:14:07.000+02:00","eyevis","Cloud Agent","37fb137f-b733-43dd-b6f7-0fe39c434bd6","2025-11-05T15:53:08.000+02:00","2026-04-22T10:06:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","355.0" +"380072288","353084949","PCB23573.sanef.groupe","PCB23573","6C:0B:5E:EE:DC:64","10.202.31.18,10.220.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L58","","'+02:00","2026-04-19T17:02:32.000+02:00","SANEF\dasilvac","Cloud Agent","059d0cee-58ae-4c88-9fe3-3722f32b2e32","2025-11-28T15:13:11.000+02:00","2026-04-22T10:06:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"363025279","345948973","PCV20827.sanef-int.adds","PCV20827","30:13:8B:6C:56:1C","10.100.7.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q86","","'+02:00","2026-04-21T22:02:11.000+02:00","Operateur","Cloud Agent","8ba66b19-1ebd-43ae-ab46-454a2d2bb83d","2025-09-25T16:58:24.000+02:00","2026-04-22T10:06:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"339877892","336780154","vppwdahap2.sanef.groupe","","00:50:56:94:f7:20","10.44.1.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3665","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 51 10 8c b1 aa 1e-7d 56 dd 98 cc d3 28 5d","No Asset Tag","'+02:00","2026-01-07T11:28:26.000+02:00","cybreconcile","Cloud Agent","c7543c65-896a-409a-8810-a647189f369d","2025-07-07T17:43:19.000+02:00","2026-04-22T10:05:58.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,BDD","331.0" +"129931386","192382346","vmampgis3.sanef.groupe","VMAMPGIS3","00:50:56:82:58:7C","10.41.40.107","fe80::f9e4:a388:57bc:431b","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21563) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 f2 9c df 71 99 3b-91 8f 63 b7 f7 f7 d4 d5","NoAssetTag","'+02:00","2024-11-07T12:45:00.000+02:00","SANEF.GROUPE\delcour","Cloud Agent","4a99a93f-59db-4dd6-a4bd-0cd46ce82599","2022-07-01T08:58:40.000+02:00","2026-04-22T10:05:55.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Production,Obsolete,DEX,GIS,Cloud Agent,Windows Server,VRF_TRAFIC_DC,Patrimoine","521.0" +"372939353","349951976","PCB22840.sanef.groupe","PCB22840","D0:AD:08:A3:7D:C2","10.154.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKS","8CC3502YKS","'+02:00","2026-04-20T21:01:12.000+02:00","SANEF\frobert","Cloud Agent","78405a6e-5669-4707-899b-ebcf5635a2fd","2025-10-30T12:30:35.000+02:00","2026-04-22T10:05:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"320134680","328625929","PCB23544.sanef.groupe","PCB23544","6C:0B:5E:EE:DC:C6","10.205.0.44,10.100.39.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6F","","'+02:00","2026-04-16T17:02:55.000+02:00","SANEF\RIVIEREF","Cloud Agent","53f14bad-330d-4e5c-a03b-8eba28ddb6b8","2025-04-28T14:43:25.000+02:00","2026-04-22T10:05:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"362206490","345649267","PCB22459.sanef.groupe","PCB22459","F0:20:FF:9A:DF:17","10.255.2.212","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.07.00","5CG3501HV7","","'+02:00","2026-04-01T04:42:32.000+02:00","SANEF\BARAT","Cloud Agent","7e35bdad-77a8-4911-b603-cdf741197281","2025-09-23T10:20:57.000+02:00","2026-04-22T10:05:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"364994659","346736918","PCV21586.sanef-int.adds","PCV21586","D0:AD:08:A3:7B:4F","10.117.3.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YRS","","'+02:00","2026-04-07T20:36:01.000+02:00","Operateur","Cloud Agent","77afe91e-2ef5-453c-b28a-d58635881c34","2025-10-02T16:26:46.000+02:00","2026-04-22T10:57:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"285274690","309490336","SVP22867.sanef-int.adds","SVP22867","D0:AD:08:A7:28:4C","10.212.36.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YP6","","'+02:00","2026-04-21T14:33:43.000+02:00","Superviseur","Cloud Agent","0cf2dfb8-4a32-479b-a593-10c8738d20cf","2024-12-09T18:39:10.000+02:00","2026-04-22T10:05:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"329229740","","PCB21095.sanef.groupe","PCB21095","E4:60:17:CA:3F:37","10.255.2.241","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LH","","'+02:00","2026-04-08T08:34:59.000+02:00","SANEF\ALOUEKE-ext","Cloud Agent","a59ade0f-3aa1-4e9f-af36-b10f369e1957","2025-06-02T15:25:41.000+02:00","2026-04-22T10:05:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321997482","329316066","PCB23612.sanef.groupe","PCB23612","6C:0B:5E:ED:A2:12","10.200.30.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L47","","'+02:00","2026-03-28T09:27:27.000+02:00","SANEF\chauffour","Cloud Agent","cd8d6a3d-ca8a-4dc8-b808-bbb9f1bea267","2025-05-05T10:41:09.000+02:00","2026-04-22T10:05:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"322005587","329312674","PCB23767.sanef.groupe","PCB23767","6C:0B:5E:EE:B3:93","10.13.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4C","","'+02:00","2026-03-31T09:21:31.000+02:00","SANEF\sinnes","Cloud Agent","42cab750-a809-48d8-a672-f3a2fe9bd2ff","2025-05-05T10:03:08.000+02:00","2026-04-22T10:05:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"358892330","344328747","PCB24244.sanef.groupe","PCB24244","24:FB:E3:CD:06:36","10.99.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M64","","'+02:00","2026-04-20T13:32:43.000+02:00","SANEF\NOWAK","Cloud Agent","eae54b3a-0985-46d6-8126-aff47751051a","2025-09-11T15:15:42.000+02:00","2026-04-22T11:18:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"399074773","360968875","vtdsibpgs2.sanef-rec.fr","","00:50:56:9c:6f:a2","10.45.1.173","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d4 af 7e cb cc 73-0b c7 2c ff ba f7 84 f8","No Asset Tag","'+02:00","2026-03-11T11:25:24.000+02:00","root","Cloud Agent","8ca1a11f-9165-460c-b7db-2593c97ade73","2026-02-10T12:46:31.000+02:00","2026-04-22T11:01:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","PATRIMOINE,Linux Server,OS-LIN-SRV DYN,Cloud Agent,BDD-POS DYN,Recette","144.0" +"411132159","365523556","PCB24245.sanef.groupe","PCB24245","C8:58:B3:34:29:93","10.255.2.169,10.255.2.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M69","","'+02:00","2026-04-20T10:54:34.000+02:00","SANEF\THIL","Cloud Agent","34f9a0de-2788-431e-b904-cabf0a77a374","2026-03-24T16:39:44.000+02:00","2026-04-22T10:05:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"175564471","229349435","vvbotatvv2.sanef-rec.fr","","be:7a:55:25:e7:92, 6e:43:48:cb:e2:1a, 00:50:56:9c:cd:e1","10.89.0.1,10.45.6.167","fe80::bc7a:55ff:fe25:e792,fe80::6c43:48ff:fecb:e21a,fe80::250:56ff:fe9c:cde1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 88 d4 32 31 8a 91-29 87 2a 7e 46 60 c6 16","No Asset Tag","'+02:00","2026-03-10T12:17:09.000+02:00","cybreconcile","Cloud Agent","d46e8ae6-c69f-4fd7-b681-2e8c53bafb0a","2023-06-23T12:02:56.000+02:00","2026-04-22T11:45:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,FreeFlow,Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,flux_libre","141.0" +"322391623","329450900","PCB23633.sanef.groupe","PCB23633","6C:0B:5E:EE:BC:89","10.2.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7W","","'+02:00","2026-04-20T14:08:55.000+02:00","SANEF\lacour","Cloud Agent","599cd9c3-d4ef-4780-8f79-3dfb5791e2c7","2025-05-06T14:17:07.000+02:00","2026-04-22T10:05:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"279153754","304713612","vrdecasas3.sanef.groupe","","00:50:56:82:9e:6b","10.45.1.6","fe80::250:56ff:fe82:9e6b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d4 c2 ec 31 d8 d7-55 0e 43 0b 2b cf 47 06","No Asset Tag","'+02:00","2026-03-23T11:57:06.000+02:00","cybsupsys","Cloud Agent","493fd2a6-8277-49c0-83bf-acb2d49090da","2024-11-14T15:54:04.000+02:00","2026-04-22T10:04:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,BDD-POS DYN,OS-LIN-SRV DYN","139.0" +"369610774","348496345","PCB18101.sanef.groupe","PCB18101","38:CA:84:52:E8:5E","10.200.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSN","","'+02:00","2026-03-31T19:49:40.000+02:00","laura.dubos@sapn.fr","Cloud Agent","7da15f98-67b7-4126-aa0f-d25510e842a7","2025-10-17T15:10:12.000+02:00","2026-04-22T11:43:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"350002387","340224291","PCB25850.sanef.groupe","PCB25850","28:95:29:1B:32:67","10.255.3.185","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW1","","'+02:00","2026-03-19T14:41:14.000+02:00","SANEF\TONNOIR","Cloud Agent","e49c33d1-257b-497a-ba73-d22eb98dc7e5","2025-08-08T10:50:28.000+02:00","2026-04-22T10:04:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"342524098","337582298","PCB21281.sanef.groupe","PCB21281","30:F6:EF:A5:EB:28","10.101.243.232,10.255.4.222","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJQ","","'+02:00","2026-04-21T09:02:02.000+02:00","SANEF\PARET","Cloud Agent","55490448-06a4-4604-a553-a22da834bb8d","2025-07-17T13:35:46.000+02:00","2026-04-22T11:12:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"344751012","338445084","PCB20709.sanef.groupe","PCB20709","58:1C:F8:EB:77:C4","192.168.1.87","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DQP","","'+02:00","2026-04-07T09:40:37.000+02:00","SANEF\WATREMEZ","Cloud Agent","389b6157-a490-4b5a-9953-d372df6aefed","2025-07-24T10:17:38.000+02:00","2026-04-22T10:04:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"163770271","218816308","vptraatai2.sanef.groupe","VPTRAATAI2","00:50:56:82:B7:CA","10.41.60.52","fe80::457:ab94:ec4a:bd13","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 d1 d3 17 b3 be b3-ba a1 f4 2c f7 f4 e0 a6","NoAssetTag","'+02:00","2026-02-12T17:09:29.000+02:00","administrateur","Cloud Agent","9c5e9f31-83a2-45be-a598-7dff191c72b4","2023-03-21T16:52:14.000+02:00","2026-04-22T11:46:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Outils transverses,OS-WIN-SRV DYN,DEX,Enregistrement_COM,Cloud Agent,Windows Server","258.0" +"318712993","328171399","PCB22928.sanef.groupe","PCB22928","D0:AD:08:A3:7B:3E","10.1.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV1","8CC3502YV1","'+02:00","2026-03-29T09:13:08.000+02:00","SANEF\pereira","Cloud Agent","56e1c7cd-cfed-4af0-a094-8bbae85cde16","2025-04-23T10:07:34.000+02:00","2026-04-22T10:03:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"319394905","328419254","PCB23741.sanef.groupe","PCB23741","6C:0B:5E:EE:93:7A","10.4.30.14,10.4.31.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7462) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H51","","'+02:00","2026-04-21T08:11:17.000+02:00","SANEF\dessoye","Cloud Agent","36425c90-6ab0-44c1-a2ea-c2498047c040","2025-04-25T15:21:28.000+02:00","2026-04-22T10:03:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"143793491","201145998","vrintbweb2.sanef.groupe","","00:50:56:82:83:8f","10.45.1.196","fe80::250:56ff:fe82:838f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 f4 51 81 c1 24 1b-be b4 cd d4 fb b0 4a fa","No Asset Tag","'+02:00","2026-02-23T13:33:18.000+02:00","cybadmsys","Cloud Agent","cd070384-a015-4313-8a18-5e498034d13c","2022-10-12T18:26:56.000+02:00","2026-04-22T10:03:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,BDD-POS DYN,OS-LIN-SRV DYN,VRF_INCONNUE,Cloud Agent,Linux Server","334.0" +"361915686","345507041","PCB24249.sanef.groupe","PCB24249","24:FB:E3:BE:98:E4, 0A:00:27:00:00:06","10.208.31.8,169.254.58.81","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M63","","'+02:00","2026-04-21T08:19:37.000+02:00","SANEF\portaz","Cloud Agent","9866ed10-f01f-4cec-99bc-fc088ac701b8","2025-09-22T10:50:31.000+02:00","2026-04-22T10:03:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"363887034","346364338","PCV21567.sanef-int.adds","PCV21567","D0:AD:08:A3:E7:20","10.152.7.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YXY","","'+02:00","2026-04-20T14:11:26.000+02:00","Operateur","Cloud Agent","11f1e574-8ff6-4c22-a24d-eb3d7d9a3aa9","2025-09-29T13:04:59.000+02:00","2026-04-22T11:37:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"382503949","354000669","PCB22291.sanef.groupe","PCB22291","D0:AD:08:A3:7C:BB","10.252.42.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYL","8CC3502YYL","'+02:00","2026-03-29T09:12:01.000+02:00","SANEF\chevreau","Cloud Agent","a644fb3e-37b1-49cf-9bd5-aa8a0702e502","2025-12-08T15:12:54.000+02:00","2026-04-22T10:55:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"382409868","353964136","PCB25781.sanef.groupe","PCB25781","F8:ED:FC:AB:F1:D4","10.252.42.132","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CS8","","'+02:00","2026-04-13T08:32:12.000+02:00","SANEF\riffard","Cloud Agent","38a8a7d0-fa35-4e31-87cb-377392d1adbd","2025-12-08T09:46:33.000+02:00","2026-04-22T10:03:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","331.0" +"151113330","206059871","PCM15848.sanef.groupe","PCM15848","6C:02:E0:BB:9A:AF","10.100.40.210","fe80::fb5a:da77:7379:ad04","Windows / Client","Microsoft Windows 10 Enterprise (21H2 Build 19044.2604) 64-Bit","21H2","Computers / Notebook","HP EIiteBook 830 G7 Notebook","8","2208","Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz","7965","HP S70 Ver. 01.03.02","5CG1011GFW","","'+02:00","2023-08-17T11:59:47.000+02:00","SANEF\cascales","Cloud Agent","fb85eaf5-2cf2-45af-beb4-901e513d1f54","2022-12-08T12:34:36.000+02:00","2026-04-22T11:21:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","350.0" +"382417791","353964319","PCB25780.sanef.groupe","PCB25780","F8:ED:FC:AB:F1:F8","10.252.42.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVJ","","'+02:00","2026-04-20T09:10:22.000+02:00","SANEF\belgasmi","Cloud Agent","41af39f4-bf42-4b17-af1a-ae1b1a7778bd","2025-12-08T09:50:13.000+02:00","2026-04-22T10:03:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","335.0" +"129356109","191960837","vpctvanvr1","VPCTVANVR1","00:50:56:82:E9:F6","10.1.6.12","fe80::1c16:85d1:e59c:4210","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 0c 8f 30 b8 7b c1-a5 d7 c8 a2 9a 92 05 70","NoAssetTag","'+02:00","2026-03-24T13:46:20.000+02:00","Administrateur","Cloud Agent","ba829cd9-520c-4f57-bf21-ded3ccf00dc7","2022-06-27T17:57:04.000+02:00","2026-04-22T10:03:13.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Cloud Agent,Windows Server,Production,Exploitation,OS-WIN-SRV DYN,VRF_INCONNUE,DEX","508.0" +"321001260","328905407","PCB23614.sanef.groupe","PCB23614","C8:6E:08:8A:3F:CC","10.255.4.206,10.255.4.209","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6K","","'+02:00","2026-03-31T09:04:54.000+02:00","SANEF\COGET","Cloud Agent","d76ab477-20ce-442b-9383-cc4be1902871","2025-04-30T14:37:45.000+02:00","2026-04-22T11:43:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"334380244","334124571","PCB24110.sanef.groupe","PCB24110","48:EA:62:C8:93:1A","10.104.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6G","","'+02:00","2026-03-29T09:28:52.000+02:00","pascal.fournet@sanef.com","Cloud Agent","c397af7e-fbeb-4f0d-a835-e822dd04d968","2025-06-18T10:35:01.000+02:00","2026-04-22T10:03:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"377809988","352213955","vpdsiangx2.sanef.groupe","","00:50:56:90:09:4a","192.168.19.161","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 1e 47 82 d6 0c 90-43 35 b8 c5 d5 49 9e e0","No Asset Tag","'+02:00","2026-04-13T14:28:28.000+02:00","cybreconcile","Cloud Agent","f1f66d97-cb1c-45c1-bce7-3174862cb0ab","2025-11-19T18:59:11.000+02:00","2026-04-22T10:02:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production","329.0" +"395535068","359520750","vrsigaags1.sanef-rec.fr","","00:50:56:9c:fb:29","10.45.2.34","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","96044","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 35 eb b0 06 e8 f7-3c 0b b7 24 dc 5e 8d 60","No Asset Tag","'+02:00","2026-02-25T13:38:54.000+02:00","cybsupapp","Cloud Agent","6e83ddb8-2fde-4e1e-979a-38b727b186e6","2026-01-28T11:51:07.000+02:00","2026-04-22T10:57:28.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,MID-APACHE-TOMCAT DYN,Recette,Cloud Agent,OS-LIN-SRV DYN,Linux Server","215.0" +"357896652","343916086","vprpsangx1.sanef.groupe","","00:50:56:90:06:8c","10.41.20.25","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 fe 7a 14 54 29 cb-a3 e6 3a ee b0 34 f9 9c","No Asset Tag","'+02:00","2026-02-25T15:35:39.000+02:00","cybreconcile","Cloud Agent","2031410a-7022-4386-a664-ea11cab03d86","2025-09-08T16:15:13.000+02:00","2026-04-22T10:01:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,Péage,Production","140.0" +"319172684","328319440","MTR-3LRTL64","MTR-3LRTL64","D0:46:0C:95:2F:28","10.101.246.204","fe80::8b74:b626:90b6:ef8f","Windows / Client","Microsoft Windows 11 IoT Enterprise (22H2 Build 22621.6060) 64-Bit","22H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","3LRTL64","","'+02:00","2026-04-22T02:32:47.000+02:00","Skype","Cloud Agent","0c9300af-933c-4757-9ffb-631114a2052b","2025-04-24T16:13:34.000+02:00","2026-04-22T11:25:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"238482775","269481978","ls-cote-picarde","LS-COTE-PICARDE","00:50:56:90:47:FE","10.41.2.99","fe80::c7dd:1f5d:741d:df28","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 36 50 5a 11 9c f1-fc 06 61 b5 a3 d6 e5 0d","NoAssetTag","'+02:00","2026-03-24T11:38:54.000+02:00","svpadmin","Cloud Agent","2c446709-963e-485f-a88f-44da425592b2","2024-05-22T10:59:10.000+02:00","2026-04-22T11:24:16.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Péage,SVP,Cloud Agent,Windows Server","506.0" +"324698955","330493463","vpgawamft1.sanef.groupe","","00:50:56:90:b3:a6","10.42.16.15,10.42.16.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1b e7 6e 16 15 0f-90 06 de 1b c5 d5 0c 74","No Asset Tag","'+02:00","2026-03-19T15:43:25.000+02:00","cybexpapp","Cloud Agent","7a6f02f3-0895-4742-848b-1602f842ebb0","2025-05-14T14:11:29.000+02:00","2026-04-22T10:58:47.000+02:00","x86_64","2","SCA,VM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","146.0" +"320452039","328710856","PCB22930.sanef.groupe","PCB22930","D0:AD:08:A3:E7:8E","10.149.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMN","8CC3502YMN","'+02:00","2026-04-21T15:08:53.000+02:00","SANEF\BOUVIERS","Cloud Agent","f6f4ddb4-30df-4c70-9c3c-f01bb12ee929","2025-04-29T11:37:18.000+02:00","2026-04-22T10:02:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"196660522","242432946","vpboomocr1.sanef.groupe","","00:50:56:90:3d:93","10.41.22.138","fe80::250:56ff:fe90:3d93","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3664","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 25 2e 6b e5 7a 60-79 50 1b 9d 3e f5 42 16","No Asset Tag","'+02:00","2026-04-07T16:01:15.000+02:00","cybadmroot","Cloud Agent","e6a968e9-e277-454a-a0d0-626b7279ee29","2023-10-31T18:27:14.000+02:00","2026-04-22T10:02:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,ServersInCyberark,flux_libre,OS-LIN-SRV DYN,Production,Flux Libre,Cloud Agent,Linux Server","336.0" +"407940862","364290035","PCV18546.sanef-int.adds","PCV18546","30:13:8B:6C:5C:83","10.210.7.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473T0","","'+02:00","2026-04-09T17:04:38.000+02:00","Operateur","Cloud Agent","311d5e2b-4fb6-44ef-8987-ba17ba71b474","2026-03-12T11:53:39.000+02:00","2026-04-22T10:02:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"141340202","199609318","vpbckaadm1","VPBCKAADM1","00:50:56:8D:33:B7","10.44.2.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 0d b4 46 ce 9e ea 3a-cd 4f 8b 89 01 f5 da 64","NoAssetTag","'+02:00","2026-02-03T13:46:44.000+02:00","Administrateur","Cloud Agent","6e0401ec-f0fd-4d8b-95ef-301d3ef4a8e0","2022-09-22T16:37:43.000+02:00","2026-04-22T10:02:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Gestion SAUVEGARDE","346.0" +"357841979","343886392","PCB24203.sanef.groupe","PCB24203","10:B6:76:97:D4:A5","10.100.39.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YJW","","'+02:00","2026-04-14T08:30:14.000+02:00","SANEF\CHAMPION-ext","Cloud Agent","13ce5d36-2ec8-4558-95c1-ddbb4c97872a","2025-09-08T11:20:01.000+02:00","2026-04-22T10:02:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"342249673","337459772","PCB23719.sanef.groupe","PCB23719","C8:6E:08:47:0B:53","10.205.0.103,10.0.0.65","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460H3N","","'+02:00","2026-04-21T07:46:02.000+02:00","SANEF\durmarque","Cloud Agent","d66aa7b2-75eb-4df6-97f0-196adc91644e","2025-07-16T14:46:47.000+02:00","2026-04-22T10:02:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"340063685","336780158","lpamebrac2.sanef.groupe","","3e:33:fb:a0:00:f1, 3e:33:fb:a0:00:ed","10.43.4.139,10.41.41.111,10.41.41.115","fe80::3c33:fbff:fea0:f1,fe80::3c33:fbff:fea0:ed","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63822","HPE I44 06/13/2025","VCGBW52014","/n/Bios Asset Tag :","'+02:00","2025-11-20T11:16:01.000+02:00","cybreconcile","Cloud Agent","cde7c92e-3baa-4fcd-8dd5-d076d06fed26","2025-07-08T10:21:20.000+02:00","2026-04-22T11:45:54.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,OS-LIN-SRV DYN,Amelie,Production,Cloud Agent","335.0" +"230624144","258742189","vpsupapol3.sanef.groupe","","00:50:56:8d:0f:61","10.44.5.105","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","1778","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 01 97 6d b8 39 77-d1 38 9d 2f e4 52 82 94","No Asset Tag","'+02:00","2026-03-30T11:03:58.000+02:00","cybreconcile","Cloud Agent","0e5dcde3-eb25-459e-b3d3-9b65a36b1545","2024-04-17T18:08:36.000+02:00","2026-04-22T11:27:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","66.0" +"304687011","322548349","PCB17652.sanef.groupe","PCB17652","D0:AD:08:8A:60:AB","10.107.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y52","","'+02:00","2026-04-20T11:22:27.000+02:00","SANEF\delsarte","Cloud Agent","048bdd8c-e3a8-4d1f-9d88-ce58c3805f55","2025-03-03T17:45:20.000+02:00","2026-04-22T10:01:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"128143034","191077225","VPSSIAPKI3","VPSSIAPKI3","00:50:56:82:2D:66","192.168.90.72","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 97 21 0a bc 10 ff-9b 14 56 f0 fd bd 5c 48","NoAssetTag","'+02:00","2026-04-15T14:22:44.000+02:00","SANEF.GROUPE\tbaad-ext@sanef.com","Cloud Agent","3b67b1e2-a6e5-4b4c-87c1-a1f5e99b873d","2022-06-16T11:59:24.000+02:00","2026-04-22T11:30:52.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,OS-WIN-SRV DYN,Windows Server,Cloud Agent,TAG-SRVEXPOSEINTERNET,DMZ,Production,Sans,Sécurité IT,DSI,Gestion_PKI","24.0" +"158198255","210926887","vpdsiaumds1","","00:50:56:82:84:3a","192.168.18.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7696","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 64 33 40 32 68 07-fe d2 af c0 d9 78 99 20","No Asset Tag","'+02:00","2026-01-29T11:54:35.000+02:00","cybreconcile","Cloud Agent","1c49e4cf-d9a6-4534-9b4a-82b7aaf7ac1b","2023-02-06T13:40:20.000+02:00","2026-04-22T11:29:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,DSI,VCENTER,OS-LIN-SRV DYN","140.0" +"376646340","351624062","PCV21571.sanef-int.adds","PCV21571","D0:AD:08:A3:E6:BD","10.12.7.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YSC","","'+02:00","2026-03-23T18:02:22.000+02:00","Operateur","Cloud Agent","e83d2ccd-4fa6-4f18-a84d-577e09acf58d","2025-11-14T14:39:16.000+02:00","2026-04-22T10:01:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"129474881","192042964","vamrsycapp2.sanef.groupe","VAMRSYCAPP2","00:50:56:82:13:16","10.45.2.22","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24130)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","32768","Phoenix Technologies LTD 6.00","VMware-42 02 5d cb a3 79 d5 f7-2f 24 4a d0 f5 5d c1 18","NoAssetTag","'+01:00","2025-07-18T23:24:51.000+02:00","Administrateur","Cloud Agent","d165627e-7316-4a22-bada-157827eaa36d","2022-06-28T14:27:33.000+02:00","2026-04-22T11:31:54.000+02:00","64 bits","3","SCA,VM,PM,GAV","DEX,Windows Server 2008,Obsolete,Patrimoine,Sans,Recette,VRF_INCONNUE,Cloud Agent,Windows Server,OS-WIN-SRV DYN,SIG","527.0" +"344777514","338451627","PCB18105.sanef.groupe","PCB18105","64:D6:9A:21:82:AC","10.255.4.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HT5","","'+02:00","2026-04-14T18:21:10.000+02:00","SANEF\GAYN","Cloud Agent","1bfac866-f582-4558-9e2d-832ebb97f2ab","2025-07-24T11:11:07.000+02:00","2026-04-22T10:01:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"343989065","338199585","PCB21105.sanef.groupe","PCB21105","D0:AD:08:AA:50:7C","10.205.0.90,10.101.243.195","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764KV","","'+02:00","2026-04-01T08:56:08.000+02:00","SANEF\SOBOLEWSKI-ext","Cloud Agent","06533a5b-4538-48c1-8d71-14507689d0d3","2025-07-22T14:46:58.000+02:00","2026-04-22T11:45:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"295268950","317053652","PCB22963.sanef.groupe","PCB22963","6C:0B:5E:5C:1A:BD","10.100.39.31","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","2688","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4433DPB","","'+02:00","2026-04-22T08:04:36.000+02:00","SANEF\BILLARD-ext","Cloud Agent","64bfa9da-b8a3-463c-928f-5b7b8c27ecc4","2025-01-28T11:13:50.000+02:00","2026-04-22T10:01:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","241.0" +"207904238","248272332","vpaflbdwh1.sanef.groupe","VPAFLBDWH1","00:50:56:9C:0C:C1","10.46.34.6","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","65535","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 40 ba 1a 46 a0 d8-97 a8 9f ae f9 e1 39 72","NoAssetTag","'+02:00","2026-04-01T15:04:52.000+02:00","Administrateur","Cloud Agent","f84c829c-e866-4fa7-877f-764a0baaf773","2024-01-05T10:56:52.000+02:00","2026-04-22T10:00:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Production,flux_libre,BDD-SQL DYN,Cloud Agent,Windows Server,FreeFlow,Flux Libre","252.0" +"214011840","251196911","OSA20949.sanef-int.adds","OSA20949","BC:0F:F3:88:FD:39","10.100.20.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LM7","","'+02:00","2026-04-21T20:59:08.000+02:00","Superviseur","Cloud Agent","2931dd30-3a19-4326-939b-7e8d50166256","2024-02-06T11:58:30.000+02:00","2026-04-22T10:00:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"414697998","367164746","PCB18110.sanef.groupe","PCB18110","64:D6:9A:1D:39:A4","10.101.243.110,192.168.1.230","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.23.00","5CG2376HTD","","'+02:00","2026-04-14T22:39:08.000+02:00","SANEF\samir.kecili-ext","Cloud Agent","afec88ab-6969-45b3-ad94-4bba1d3cf355","2026-04-09T17:54:23.000+02:00","2026-04-22T11:13:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"331039777","333860583","vrameahtp1.sanef-rec.fr","","00:50:56:9c:58:38, 00:50:56:9c:91:5c","10.45.4.50,10.45.2.50,10.45.2.52,10.45.2.55,10.45.2.54,10.45.2.53","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d0 3b 2f e9 cd 48-3c 44 a6 6f 73 62 4d 10","No Asset Tag","'+02:00","2026-04-02T16:26:08.000+02:00","cybintsys","Cloud Agent","5a65a923-f1a4-4bf8-a3b6-2f0a5b3748a5","2025-06-05T08:32:31.000+02:00","2026-04-22T10:00:22.000+02:00","x86_64","4","SCA,VM,GAV","Sextan,Recette,OS-LIN-SRV DYN,MID-NGINX DYN,DEX,Linux Server,Cloud Agent","284.0" +"377784871","352196223","PCB25946.sanef.groupe","PCB25946","C4:0F:08:B2:7E:33","10.255.1.152,10.255.1.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534221B","","'+02:00","2026-04-21T10:43:57.000+02:00","SANEF\makaia","Cloud Agent","b926e870-14c6-4970-940b-c377a2127430","2025-11-19T16:18:15.000+02:00","2026-04-22T10:11:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","335.0" +"320284533","328628715","PCB24035.sanef.groupe","PCB24035","EC:4C:8C:C0:1A:39","10.205.0.40,192.168.1.171","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDR","","'+02:00","2026-03-31T08:07:06.000+02:00","SANEF\willem","Cloud Agent","f3db2a13-bfd8-4682-8134-fb160fca4796","2025-04-28T15:10:21.000+02:00","2026-04-22T10:16:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"320080778","328605105","PCB23517.sanef.groupe","PCB23517","C8:6E:08:88:E2:B2","10.255.3.160","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L73","","'+02:00","2026-04-08T12:00:36.000+02:00","SANEF\WAGNERO","Cloud Agent","5c57b466-336b-4437-b8c8-67976d82e64f","2025-04-28T11:09:48.000+02:00","2026-04-22T10:00:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"405651420","363317254","PCB23636.sanef.groupe","PCB23636","6C:0B:5E:ED:72:FC","10.101.243.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4R","","'+02:00","2026-04-16T08:34:53.000+02:00","SANEF\medaci","Cloud Agent","f897054a-93f4-4715-9578-b8d02b96ee3a","2026-03-03T10:33:17.000+02:00","2026-04-22T10:00:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"389544206","357337205","PCB21320.sanef.groupe","PCB21320","D0:AD:08:AA:50:80","10.202.31.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KZ","","'+02:00","2026-04-10T08:42:42.000+02:00","Sophie.hemery@sapn.fr","Cloud Agent","f155c5e4-657b-4e16-8c43-e6b81cff80fb","2026-01-08T11:48:32.000+02:00","2026-04-22T10:00:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"112576691","180430333","vpssiapki1.sanef.groupe","","52:54:00:4c:07:2e, 00:50:56:82:de:2e","192.168.122.1,10.30.10.157","fe80::7829:ca19:ffd9:5c41","Linux / Server","The CentOS Project CentOS Stream 8","","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7954","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 73 4f c5 4d dd f3-5a 0e 55 80 de 8d 4d 76","No Asset Tag","'+02:00","2025-02-18T11:12:27.000+02:00","root","Cloud Agent","41bf3f3e-26ff-4f0e-a179-38fd3d0af892","2022-02-07T12:17:45.000+02:00","2026-04-22T11:31:01.000+02:00","x86_64","2","SCA,VM,GAV","DSI,Linux Server,Outils prod (Monitoring, NMS, gestion de parc),Production,Gestion_PKI,Obsolete,Cloud Agent","41.0" +"320061853","328602648","PCB22934.sanef.groupe","PCB22934","D0:AD:08:A3:7B:3D","10.139.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV2","8CC3502YV2","'+02:00","2026-04-10T14:46:56.000+02:00","SANEF\leclercqfr","Cloud Agent","437c1500-824e-41e3-890e-8b706f693bd0","2025-04-28T10:48:45.000+02:00","2026-04-22T09:59:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"320971878","328895475","PCB23646.sanef.groupe","PCB23646","C8:6E:08:8A:3C:34","10.205.0.163,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4V","","'+02:00","2026-03-30T12:10:38.000+02:00","SANEF\DUCONSEIL","Cloud Agent","3c24974e-eb3b-4437-8f8d-30ad790708e0","2025-04-30T13:44:26.000+02:00","2026-04-22T11:35:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"323177281","329807899","PCB23738.sanef.groupe","PCB23738","6C:0B:5E:EE:A3:62","10.5.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2Z","","'+02:00","2026-04-22T08:50:03.000+02:00","SANEF\buczkowski","Cloud Agent","51ff6a6b-845b-48b0-acb2-9fd5feddd400","2025-05-09T12:15:54.000+02:00","2026-04-22T11:44:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"129304117","191925465","LAMPSAS1.sanef.groupe","LAMPSAS1","00:17:A4:77:14:EA","10.30.10.145","fe80::58be:8eb5:320f:60ef","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19573) 64-Bit","6.3","Computers / Server","HPE ProLiant BL460c G8 Server","24","2500","Intel(R) Xeon(R) CPU E5-2640 0 @ 2.50GHz","98269","HP I31","CZJ42903SG","","'+02:00","2026-01-20T12:15:07.000+02:00","LAMPSAS1\CYBADMSYS","Cloud Agent","fdf08f06-becd-4f78-863c-6f4dc0cd87f9","2022-06-27T09:55:56.000+02:00","2026-04-22T09:59:42.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-SQL DYN,log4j,DSI,Finances Comptabilité / Consolidation,Production,SAS,VRF_INCONNUE,Cloud Agent,Windows Server,Obsolete,OS-WIN-SRV DYN","535.0" +"114204409","181635177","lamaprac4.sanef.groupe","","00:17:A4:77:10:3A, 00:17:A4:77:10:42, 00:17:A4:77:10:36, 00:17:A4:77:10:3E","10.43.4.136,169.254.242.4,10.43.40.56,10.41.40.56,10.41.40.57,192.168.17.123","fe80::217:a4ff:fe77:103a,fe80::217:a4ff:fe77:1042,fe80::217:a4ff:fe77:1036,fe80::217:a4ff:fe77:103e","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DG","","'+02:00","2025-10-08T15:12:32.000+02:00","cybastapp","Cloud Agent","cc6d440d-dc99-48e3-afcc-84d6e1697c1c","2022-02-21T14:47:16.000+02:00","2026-04-22T09:59:32.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Obsolete,Haute,Trafic,Sans,Production,Cloud Agent,DEX,OS-LIN-SRV DYN,Sextan,Linux Server,VRF_TRAFIC_DC","879.0" +"358919587","344336582","PCB18493.sanef.groupe","PCB18493","D0:AD:08:AA:50:0E","10.101.243.168","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764G9","","'+02:00","2026-04-16T17:47:35.000+02:00","SANEF\DAMEZ-ext","Cloud Agent","c65cedbc-d35f-4650-931f-7a14f70717a3","2025-09-11T16:40:59.000+02:00","2026-04-22T10:19:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"137331581","197582940","vpairatom1.sanef.groupe","","00:50:56:82:54:15","10.42.40.135","fe80::250:56ff:fe82:5415","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d c6 e7 7d d5 52 2d-df 8a 92 09 b5 75 f3 13","No Asset Tag","'+02:00","2026-01-20T17:08:53.000+02:00","cybreconcile","Cloud Agent","8079b5ee-91f7-4d2d-ad3f-3ffbacb536ee","2022-08-30T15:45:52.000+02:00","2026-04-22T09:59:16.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_AIRES_DC,Production,VISIONAIRE,DSG,OS-LIN-SRV DYN","210.0" +"310532594","324633202","PCB17803.sanef.groupe","PCB17803","28:C5:D2:9F:C4:3C","10.205.0.85,192.168.1.28","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4C","","'+02:00","2026-03-30T09:37:52.000+02:00","SANEF\SANCTUSSY-ext","Cloud Agent","eab36701-4e41-4136-a031-c5e94fc9f800","2025-03-24T13:28:56.000+02:00","2026-04-22T10:54:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"377730248","352179527","PCV21152.sanef-int.adds","PCV21152","D0:AD:08:A3:7B:EE","10.12.7.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YVG","","'+02:00","2026-03-30T07:33:24.000+02:00","Operateur","Cloud Agent","86411316-20e3-4046-beb1-efac50406e61","2025-11-19T13:42:33.000+02:00","2026-04-22T09:59:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"378018869","352286612","PCB23702.sanef.groupe","PCB23702","C8:6E:08:8A:45:C1","10.255.1.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L83","","'+02:00","2026-04-07T12:31:52.000+02:00","SANEF\perrinc","Cloud Agent","05540da9-3704-4a26-9199-03363780ea78","2025-11-20T10:43:57.000+02:00","2026-04-22T11:41:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"187965585","237724684","MTR-7Q3J8Y3","MTR-7Q3J8Y3","6C:3C:8C:3D:5C:62","10.11.32.200","fe80::f45e:d9cf:658d:9972","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.10.0","7Q3J8Y3","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","7093e708-8c3d-4d8a-86e1-cca73efb11e0","2023-09-14T22:09:34.000+02:00","2026-04-22T09:59:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"372192071","349615262","PCB24209.sanef.groupe","PCB24209","10:B6:76:95:8B:A9","10.99.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZB","","'+02:00","2026-04-15T14:05:39.000+02:00","SANEF\BAILLY","Cloud Agent","5215affe-7496-4eb9-804f-1caf7951d918","2025-10-27T18:37:37.000+02:00","2026-04-22T09:59:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"238501906","269490999","vibotapps1.sanef.groupe","","00:50:56:90:0b:f3","10.41.23.136","fe80::250:56ff:fe90:bf3","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f4 3f cf 82 a3 92-bb 86 76 de a1 6b bd e7","No Asset Tag","'+02:00","2026-03-17T11:13:35.000+02:00","cybadmroot","Cloud Agent","8a264ccc-f947-4bd7-a824-0b94f380bd44","2024-05-22T12:19:05.000+02:00","2026-04-22T11:46:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","140.0" +"361928844","345508985","REX21539.sanef-int.adds","REX21539","D0:AD:08:A3:7B:CB","10.12.91.81","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW6","","'+02:00","2026-04-02T16:12:49.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","f89b0a31-e1f8-4244-a658-5fee5a9c9b2e","2025-09-22T11:09:23.000+02:00","2026-04-22T09:58:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"243225301","280557946","MTO22898.sanef.groupe","MTO22898","D0:AD:08:A3:E7:25","10.152.31.31","fe80::520d:d552:4704:2969","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.2428) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTP","","'+02:00","2026-04-01T14:50:33.000+02:00","SANEF\meteonewsW11","Cloud Agent","765b662f-ffb6-4b55-aa27-bba098a4c874","2024-06-11T15:28:45.000+02:00","2026-04-22T11:40:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"334994056","","PCB24079.sanef.groupe","PCB24079","08:B4:D2:2A:05:35","10.255.1.217","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437Q","","'+02:00","2026-04-21T12:22:04.000+02:00","SANEF\lazrek-ext","Cloud Agent","6fdcd730-fb33-4d34-8c47-e9583abde50d","2025-06-20T14:54:04.000+02:00","2026-04-22T09:58:49.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"131275232","193320762","vpaiiapol4","","00:50:56:82:66:07","10.30.12.128","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 f8 a6 89 02 81 7e-81 e6 9e f3 aa e1 26 31","No Asset Tag","'+02:00","2024-06-04T14:25:32.000+02:00","cybadmsys","Cloud Agent","54648c63-aabb-4fb8-a46f-812b36bc707a","2022-07-12T15:46:44.000+02:00","2026-04-22T11:39:40.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,Outils prod (Monitoring, NMS, gestion de parc),Sans,Production,Centreon,Cloud Agent,Linux Server,Obsolete,VRF_INCONNUE","82.0" +"241539604","276514044","vpvsaaafz1.sanef.groupe","","00:50:56:90:46:9a","192.168.18.78","fe80::250:56ff:fe90:469a","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 c6 5b 4b 7b fa 21-eb 83 ac 6a ce fc 8a 09","No Asset Tag","'+02:00","2026-02-04T12:19:48.000+02:00","tbaad","Cloud Agent","96356976-305b-4ed0-939b-7dd7c5bb0fc5","2024-06-04T12:22:32.000+02:00","2026-04-22T11:47:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"324418064","330226734","PCB20824.sanef.groupe","PCB20824","6C:0B:5E:EE:93:17","10.5.31.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3G","","'+02:00","2026-04-08T08:38:15.000+02:00","SANEF\beghin","Cloud Agent","ef194ff2-7f24-4c21-9713-929f024b8a77","2025-05-13T14:14:20.000+02:00","2026-04-22T09:58:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"416426637","367815128","PCB18191.sanef.groupe","PCB18191","64:4E:D7:0F:F2:7C","10.255.1.201,10.100.39.90","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD3295RYH","","'+02:00","2026-04-21T16:35:58.000+02:00","SANEF\SALUR-ext","Cloud Agent","f28b7c6e-8e00-4556-ab22-4f316d2c2d15","2026-04-16T11:45:24.000+02:00","2026-04-22T09:58:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"363856796","346347618","PCV22836.sanef-int.adds","PCV22836","D0:AD:08:A3:7B:35","10.152.7.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YV7","","'+02:00","2026-04-18T12:01:36.000+02:00","Operateur","Cloud Agent","c60f39cf-14af-4380-bbbb-10e0c9847da1","2025-09-29T10:52:56.000+02:00","2026-04-22T09:58:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"320461965","328712807","PCB23663.sanef.groupe","PCB23663","6C:0B:5E:EE:EC:11","10.105.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L67","","'+02:00","2026-04-13T18:58:44.000+02:00","SANEF\DEBLOCK","Cloud Agent","7454cada-cf10-4111-bdf3-73ff50e4bf13","2025-04-29T11:59:42.000+02:00","2026-04-22T09:58:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"181718030","233677871","vrsvpasap1","VRSVPASAP1","00:50:56:9C:59:5F","10.45.9.167","fe80::ac8f:f1ea:fa5b:1a3a","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 32 ff 5e 99 bb 41-8f 0f d6 55 a6 f0 06 fd","NoAssetTag","'+02:00","2026-02-17T15:31:47.000+02:00","gare","Cloud Agent","ea8f128c-8acf-4efd-92aa-fbefacfb71d2","2023-08-07T12:17:14.000+02:00","2026-04-22T11:40:30.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP","501.0" +"175112254","229075254","vvbotbsql1.recette.adds","VVBOTBSQL1","00:50:56:9C:5B:D9","10.45.6.131","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 33 07 0e 95 f5 40-de 2d 85 8e 08 97 81 27","NoAssetTag","'+02:00","2026-03-12T11:33:27.000+02:00","RECETTE\b03987","Cloud Agent","1f336311-753c-42c2-918b-11392f02e8b5","2023-06-20T09:21:46.000+02:00","2026-04-22T09:58:01.000+02:00","64-Bit","2","VM,GAV","BDD-SQL DYN,flux_libre,OS-WIN-SRV DYN,Flux Libre,Cloud Agent,FreeFlow,Recette","252.0" +"326582596","","PCB20726.sanef.groupe","PCB20726","58:1C:F8:E9:A7:00","10.255.3.224","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2N","","'+02:00","2026-04-20T08:23:53.000+02:00","SANEF\LUQUE","Cloud Agent","c09551c2-aa5a-4273-9b53-35a6b3f4e69b","2025-05-22T14:18:44.000+02:00","2026-04-22T09:58:01.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"365189729","346810517","PCV22828.sanef-int.adds","PCV22828","D0:AD:08:A3:7D:C9","10.100.7.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YKP","","'+02:00","2026-04-07T16:50:35.000+02:00","Operateur","Cloud Agent","8a2e7b1d-58ba-40d2-a3b0-73354dfd9775","2025-10-03T11:06:15.000+02:00","2026-04-22T09:57:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"366152124","347225549","vpsicapol1.sanef.groupe","","00:50:56:8f:b1:82","10.44.200.132","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 0f fd b6 35 ab 48 ae-a8 6d c7 9e 39 2a 84 34","No Asset Tag","'+02:00","2026-03-18T14:15:58.000+02:00","cybreconcile","Cloud Agent","d79638ce-e667-4ec9-bfff-2a76a06d6dc1","2025-10-07T17:43:35.000+02:00","2026-04-22T10:52:37.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Centreon,TAG-SIA,Linux Server,Cloud Agent","285.0" +"375550014","351130845","PCB21505.sanef.groupe","PCB21505","D0:AD:08:A3:7B:40","10.5.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXP","8CC3502YXP","'+02:00","2026-04-20T14:26:40.000+02:00","SANEF\bartiaux","Cloud Agent","1355b31b-bd58-4b0b-baf7-f18017087116","2025-11-10T12:11:18.000+02:00","2026-04-22T09:57:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"322034706","329331841","PCB23674.sanef.groupe","PCB23674","C8:6E:08:8A:3F:BD","10.205.0.59,192.168.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5Q","","'+02:00","2026-03-31T09:13:45.000+02:00","SANEF\dufourc","Cloud Agent","2d5a040f-4eaa-4560-8ec2-95e55ab9259f","2025-05-05T13:57:08.000+02:00","2026-04-22T09:57:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"269822805","299449552","vragtatse3.recette.adds","VRAGTATSE3","00:50:56:9C:C9:12","10.45.1.231","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","32767","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 90 46 f0 01 44 0c-45 80 15 6c 8c dc d7 42","NoAssetTag","'+02:00","2026-03-03T15:14:45.000+02:00","sos","Cloud Agent","e5ac836a-c0fe-47cf-8a71-86a526194ef6","2024-10-03T10:47:04.000+02:00","2026-04-22T09:57:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Recette","256.0" +"249819387","288930684","vraptapsh1.recette.adds","VRAPTAPSH1","00:50:56:9C:F5:6C","10.45.10.228","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 82 ff e5 84 4c b6-5d d9 09 f6 8e c0 8a 3a","NoAssetTag","'+02:00","2026-03-03T15:14:40.000+02:00","RECETTE\b03987","Cloud Agent","22f3d660-330f-4d88-b1b0-c14c0e4ca740","2024-07-10T16:08:48.000+02:00","2026-04-22T11:42:32.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,SHAREPOINT,Recette","376.0" +"322326539","329428047","PCB23555.sanef.groupe","PCB23555","C8:6E:08:8A:50:C0","10.255.1.191,10.255.1.226","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBP","","'+02:00","2026-04-03T16:22:59.000+02:00","SANEF\michel","Cloud Agent","ec38214c-4f92-4e9d-992c-321931dfbd72","2025-05-06T10:47:02.000+02:00","2026-04-22T09:27:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"213857752","251129293","sptrabenr1.sanef.groupe","SPTRABENR1","08:F1:EA:7E:BC:4C, 08:F1:EA:7E:BC:4E","10.41.60.40,169.254.148.36","fe80::c4a8:2f0f:49fd:9012,fe80::fd44:913d:6474:9424","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Computers / Server","HPE ProLiant DL360 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16042","HPE U32","CZJ01203FQ","","'+02:00","2026-02-25T14:25:52.000+02:00","SANEF.GROUPE\ndead@sanef","Cloud Agent","30d6284b-8953-4875-a99d-4080616ae4fd","2024-02-05T20:34:19.000+02:00","2026-04-22T09:57:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Enregistrement_COM,DEX,OS-WIN-SRV DYN,BDD-SQL DYN","255.0" +"236266412","264400190","ls-amiens-ouest","LS-AMIENS-OUEST","00:50:56:90:DB:87","10.41.2.95","fe80::5b68:2ee8:941f:ed62","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 01 2b 16 7d ea 8b-d8 7d 66 bc 79 62 56 b3","NoAssetTag","'+02:00","2026-03-23T11:11:06.000+02:00","svpadmin","Cloud Agent","52a90464-c3e5-4feb-bea6-737af9a46b5f","2024-05-13T12:41:59.000+02:00","2026-04-22T11:29:41.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Péage,SVP,VRF_PEAGE_DC,High,Production","507.0" +"349447362","339999510","PCB25840.sanef.groupe","PCB25840","F8:ED:FC:AA:D5:8D","10.5.31.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSM","","'+02:00","2026-04-14T08:29:41.000+02:00","SANEF\larcher","Cloud Agent","a0241f59-af14-4a51-b44d-50770369ad00","2025-08-06T10:53:55.000+02:00","2026-04-22T11:35:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"221316812","254242657","ls-arsy","LS-ARSY","00:50:56:90:ED:14","10.41.2.27","fe80::bd60:d9a:d99:d938","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a9 4c cc 78 07 3f-b8 2f 65 f3 b1 c8 bf b5","NoAssetTag","'+02:00","2026-02-17T11:02:34.000+02:00","svpadmin","Cloud Agent","0bf7012a-4e42-49be-a9a7-2bf37b38b8cd","2024-03-11T10:54:48.000+02:00","2026-04-22T11:33:27.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Péage,VRF_PEAGE_DC,High,Haute,Production,SVP,Cloud Agent,Windows Server","634.0" +"324636772","330317454","PCB17799.sanef.groupe","PCB17799","D0:AD:08:0C:7D:6E","10.200.31.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y42","","'+02:00","2026-04-15T10:45:02.000+02:00","SANEF\OLMO","Cloud Agent","0ce18ddc-9f83-4832-826f-1acc7657077e","2025-05-14T09:47:42.000+02:00","2026-04-22T09:56:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"391149540","357847899","vmddops01.recette.adds","VMDDOPS01","00:50:56:9C:67:BD","10.45.17.67","fe80::70f8:8b63:91d3:43ad","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 43 33 84 6b 92 fd-19 0f f0 7d 63 ee a6 77","NoAssetTag","'+02:00","2026-04-16T17:36:20.000+02:00","supwindev","Cloud Agent","e80435b9-e9a5-4d8b-a097-c87dae33ee7a","2026-01-12T19:02:28.000+02:00","2026-04-22T09:56:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"395060526","359285323","MIO22878.sanef-int.adds","MIO22878","D0:AD:08:A7:28:4D","10.12.40.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YPD","","'+02:00","2026-02-03T17:40:44.000+02:00","Operateur","Cloud Agent","bd6b7dc7-1994-4ddd-a064-9614a2e35383","2026-01-26T11:47:38.000+02:00","2026-04-22T09:56:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"228697918","257670138","vvbocasec1","","00:50:56:9c:27:8f","10.45.6.14","fe80::250:56ff:fe9c:278f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 49 1f 8e c9 09 9c-0e c4 3e 15 c0 98 a2 4d","No Asset Tag","'+02:00","2026-03-11T15:52:36.000+02:00","cybsecope","Cloud Agent","930af021-95b8-4dde-8621-f7b4b89e54b8","2024-04-09T14:13:08.000+02:00","2026-04-22T11:41:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN","141.0" +"385738268","355836246","PCB18061.sanef.groupe","PCB18061","38:CA:84:52:F8:3A","10.101.243.173","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HRR","","'+02:00","2026-04-20T12:35:09.000+02:00","SANEF\OUAMMOU","Cloud Agent","f7589431-6d0f-4e49-bcf8-52822dbed860","2025-12-23T11:16:56.000+02:00","2026-04-22T11:32:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"130586766","192835849","lamarrac2.sanef.groupe","","00:17:A4:77:0C:7C, 00:17:A4:77:0C:74, 00:17:A4:77:0C:70, 00:17:A4:77:0C:78","10.45.3.101,169.254.120.200,10.45.5.3,10.45.2.102,10.45.2.103,10.45.5.19","fe80::217:a4ff:fe77:c7c,fe80::217:a4ff:fe77:c74,fe80::217:a4ff:fe77:c70,fe80::217:a4ff:fe77:c78","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ32903SJ","","'+02:00","2026-02-25T16:10:32.000+02:00","root","Cloud Agent","7e2d8833-dcbb-465a-971d-e9bab8ca47a1","2022-07-07T11:56:14.000+02:00","2026-04-22T09:56:31.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,Obsolete,Sans,Trafic,Recette,Sextan,Cloud Agent,Linux Server,DEX,OS-LIN-SRV DYN,VRF_INCONNUE","693.0" +"131407949","193425885","vpaiiapol9","","00:50:56:82:05:74","10.30.12.129","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 d4 e1 7c 78 61 16-bf 7c e7 39 5a 03 30 a6","No Asset Tag","'+02:00","2024-06-06T11:44:26.000+02:00","cybreconcile","Cloud Agent","7ab828f1-6a6d-463d-bb63-22f925fff320","2022-07-13T10:49:27.000+02:00","2026-04-22T11:45:06.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,DSI,MID-APACHE-TOMCAT DYN,BDD-ELA DYN,BDD-POS DYN,BDD-SQL DYN,MID-NGINX DYN,Centreon,VRF_INCONNUE,Outils prod (Monitoring, NMS, gestion de parc),Sans,Production","462.0" +"241562936","276524405","vpvsaagez1","","00:50:56:9c:32:9d","192.168.18.75","fe80::250:56ff:fe9c:329d","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 3c 0e 6b c2 82 a7-9b 3f 38 e5 9e 1f 61 89","No Asset Tag","'+02:00","2026-02-04T16:17:24.000+02:00","tbaad","Cloud Agent","f7737ced-5ff5-472b-b284-24939729a6b2","2024-06-04T13:59:35.000+02:00","2026-04-22T11:28:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"233075560","260341158","ls-fresnes-en-woevre","LS-FRESNES-EN-W","00:50:56:90:85:38","10.41.2.78","fe80::e009:b7a2:df6a:89e","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 61 1d c4 1d 10 5d-6c 28 59 91 68 f6 b6 1c","NoAssetTag","'+02:00","2026-04-02T14:40:35.000+02:00","svpadmin","Cloud Agent","bbda46f9-0e74-4cf2-b0b2-8e581e450ede","2024-04-29T13:06:31.000+02:00","2026-04-22T11:24:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,SVP,Production,Péage,High,VRF_PEAGE_DC","507.0" +"241531310","276507273","vpvsaaafl2.sanef.groupe","","00:50:56:90:27:24","10.42.16.86","fe80::250:56ff:fe90:2724","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 7a c2 fd 69 79 c2-be f1 88 47 2e 46 1d 7d","No Asset Tag","'+02:00","2026-02-04T11:52:09.000+02:00","tbaad-ext","Cloud Agent","1c018fe9-244b-414e-90a5-b24fce8caa78","2024-06-04T11:39:07.000+02:00","2026-04-22T10:59:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"324358337","330210524","PCB18711.sanef.groupe","PCB18711","58:1C:F8:E9:C0:B9","10.205.0.106,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224D3N","","'+02:00","2026-03-29T09:23:11.000+02:00","SANEF\menissier","Cloud Agent","3e7e3d58-28e2-40b3-bc2f-560152ab5cc4","2025-05-13T11:38:37.000+02:00","2026-04-22T11:37:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"343092142","337768593","PCB23730.sanef.groupe","PCB23730","C8:6E:08:47:8B:CD","10.101.243.104,10.255.4.225","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2M","","'+02:00","2026-03-29T21:29:16.000+02:00","syl.demarquay@sanef.com","Cloud Agent","18f67fdc-8537-4a24-b933-f2183f288790","2025-07-18T11:00:01.000+02:00","2026-04-22T11:05:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"411849639","365824822","vpgrsangx1.sanef.groupe","","00:50:56:90:0f:2e","10.41.20.85","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 09 74 7b 39 d0 d4-96 e9 14 4a 79 ca 3b 7e","No Asset Tag","'+02:00","2026-04-07T15:49:03.000+02:00","cybreconcile","Cloud Agent","26288a73-39be-4247-a117-243ff9321bc3","2026-03-27T12:21:28.000+02:00","2026-04-22T09:56:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-NGINX DYN,BDD-POS DYN","65.0" +"321999185","329311107","PCB21145.sanef.groupe","PCB21145","D0:AD:08:A3:E7:22","10.29.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTZ","8CC3502YTZ","'+02:00","2026-04-19T18:38:51.000+02:00","SANEF\zeimet","Cloud Agent","15a70b99-4615-4ab1-b1f3-834f3736503e","2025-05-05T09:44:25.000+02:00","2026-04-22T09:56:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"209161378","248966234","vibotreco1.sanef.groupe","","00:50:56:90:9b:e5","10.41.23.139","fe80::250:56ff:fe90:9be5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 ec cd c6 d3 40 12-1e cf b4 3d 27 b3 9d d6","No Asset Tag","'+02:00","2026-03-18T15:10:27.000+02:00","cybreconcile","Cloud Agent","bf13b879-30b9-4164-bd94-22c98344237e","2024-01-12T11:59:05.000+02:00","2026-04-22T09:56:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre","140.0" +"321980901","329312315","PCB23756.sanef.groupe","PCB23756","6C:0B:5E:EE:93:8D","10.13.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3W","","'+02:00","2026-03-31T15:11:08.000+02:00","SANEF\saladin","Cloud Agent","4dc224e2-21e1-4248-9efe-7440e79b3a44","2025-05-05T10:00:15.000+02:00","2026-04-22T11:27:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"314655310","326546335","vpdsibels2.sanef.groupe","","00:50:56:94:96:34","10.44.5.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","31888","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 60 40 b3 ee 11 5c-9c b0 f2 d9 86 56 4b fb","No Asset Tag","'+02:00","2026-02-10T11:05:28.000+02:00","cybadmbdd","Cloud Agent","f427b4d3-0ec6-4dc6-8995-9c381ee2a225","2025-04-08T16:55:59.000+02:00","2026-04-22T11:14:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production,BDD","140.0" +"128614531","191424692","ls-phalsbourg","LS-PHALSBOURG","00:50:56:90:6A:E6","10.41.2.111","fe80::8777:c6b0:e85b:247d","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 10 8f f4 f2 11 ec-c1 3d af 6d d1 17 67 02","NoAssetTag","'+02:00","2026-03-02T12:54:51.000+02:00","svpadmin","Cloud Agent","daa74d10-73c9-487e-aec4-05ef2f17feab","2022-06-21T15:46:51.000+02:00","2026-04-22T09:55:55.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Windows Server,SVP,OS-WIN-SRV DYN,VRF_PEAGE_DC,Péage,High,Production,Cloud Agent,DEX,Haute","634.0" +"313690077","326069856","vpdsibpmm1.sanef.groupe","","00:50:56:94:00:f8","10.44.5.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","15761","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 7f b4 d5 3b 1c 62-e2 1c 90 22 30 75 98 36","No Asset Tag","'+02:00","2026-02-10T11:05:12.000+02:00","cybreconcile","Cloud Agent","5b8204f5-bd25-4913-ae45-f144b7e8f7fe","2025-04-04T10:33:58.000+02:00","2026-04-22T09:55:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,BDD","139.0" +"347908376","339417274","PCB18052.sanef.groupe","PCB18052","38:CA:84:52:39:D8","10.101.243.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HV1","","'+02:00","2026-03-31T08:21:22.000+02:00","SANEF\GRAFFAGNINO","Cloud Agent","08878819-cf05-4152-982c-63643b9cfce6","2025-07-31T16:12:59.000+02:00","2026-04-22T09:55:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","251.0" +"383528725","354493243","vptrabtpv1.sanef.groupe","VPTRABTPV1","00:50:56:82:A1:00","10.41.40.11","fe80::61a8:e208:f63e:36b9","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","Phoenix Technologies LTD 6.00","VMware-42 02 2e ba 6a a9 f6 8f-a8 ed 35 96 a4 aa f5 60","NoAssetTag","'+02:00","2026-01-20T12:03:57.000+02:00","Administrateur","Cloud Agent","583438c6-68df-4fe0-af91-15a14bd7d529","2025-12-12T18:00:34.000+02:00","2026-04-22T11:25:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-POS DYN,Cloud Agent,OS-WIN-SRV DYN","339.0" +"407781441","364215505","PCV18676.sanef-int.adds","PCV18676","30:13:8B:6C:7A:16","10.209.7.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473WT","","'+02:00","2026-03-11T21:06:11.000+02:00","Operateur","Cloud Agent","96046d38-f933-4d82-959b-c3016b260a71","2026-03-11T20:27:56.000+02:00","2026-04-22T09:55:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"402455407","362027513","PCB24239.sanef.groupe","PCB24239","C8:58:B3:34:17:05","10.205.0.148,10.255.2.214","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M51","","'+02:00","2026-04-14T09:14:36.000+02:00","SANEF\allali-ext","Cloud Agent","cb42fdcb-158e-4abd-9400-263b323b2eef","2026-02-19T19:02:23.000+02:00","2026-04-22T10:26:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"263390489","297610057","vpexpbtex1","","00:50:56:90:c0:39","10.41.40.26","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 62 82 88 d0 ee 44-e9 67 ea 57 98 11 a4 d9","No Asset Tag","'+02:00","2026-01-27T12:14:47.000+02:00","cybadmsys","Cloud Agent","6af103f5-23a9-41b0-b8c6-8f835ca4a28d","2024-09-05T16:32:37.000+02:00","2026-04-22T10:48:01.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,Transports Exceptionnels,Production","140.0" +"320970310","328891976","PCB23662.sanef.groupe","PCB23662","C8:6E:08:8A:45:26","10.255.4.157","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L65","","'+02:00","2026-04-21T11:06:31.000+02:00","SANEF\dewarlez","Cloud Agent","8b6d2e46-766b-448a-96c7-b081c10beaf0","2025-04-30T13:38:17.000+02:00","2026-04-22T09:55:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"223163371","255070310","ls-herquelingue","LS-HERQUELINGUE","00:50:56:90:D5:BF","10.132.3.20","fe80::c9d7:798e:11c8:fd32","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 93 9b c3 66 41 d7-5d 6c 3e 56 ce 9f 95 d0","NoAssetTag","'+02:00","2026-03-05T15:33:01.000+02:00","svpadmin","Cloud Agent","c70ab170-f2f6-4a2f-a754-c607a33efafc","2024-03-18T16:00:35.000+02:00","2026-04-22T09:54:59.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,Péage,Haute,High,Production,OS-WIN-SRV DYN,SVP,Cloud Agent,Windows Server","636.0" +"130588736","192836894","vmamrsxt2","","00:50:56:82:38:AC, 00:50:56:82:10:63, 00:50:56:82:35:7E","10.30.16.61,10.32.16.61,10.33.16.61","fe80::250:56ff:fe82:38ac,fe80::250:56ff:fe82:1063,fe80::250:56ff:fe82:357e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8d bf ac 8d f7 1f-af c6 c5 0a 46 ec 9b a7","No Asset Tag","'+02:00","2025-10-09T11:39:35.000+02:00","cybexpapp","Cloud Agent","fedd9208-8c4b-45e2-bec4-4424ba542a92","2022-07-07T12:05:18.000+02:00","2026-04-22T09:54:58.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Cloud Agent,Linux Server,log4j,VRF_INCONNUE,OS-LIN-SRV DYN,DEX,Obsolete,Sextan","699.0" +"225744238","256215595","ls-taissy","LS-TAISSY","00:50:56:90:39:80","10.82.17.20","fe80::ad2c:f83:e94f:98ac","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 ee db c7 fa 59 78-eb 47 93 5b e3 79 f2 17","NoAssetTag","'+02:00","2026-03-04T11:02:22.000+02:00","svpadmin","Cloud Agent","dcfd009f-0895-4690-844e-94f268d5b336","2024-03-27T14:16:22.000+02:00","2026-04-22T09:54:54.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Production,Péage,High,SVP,Cloud Agent,Windows Server","508.0" +"334429377","334153252","PCB24118.sanef.groupe","PCB24118","48:EA:62:C8:93:DD","10.104.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V71","","'+02:00","2026-04-13T07:58:57.000+02:00","SANEF\MIDA","Cloud Agent","80a3e06e-9c2c-4d76-be3f-8b685a8b0759","2025-06-18T14:30:52.000+02:00","2026-04-22T11:23:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"323150669","329795187","PCB21288.sanef.groupe","PCB21288","30:F6:EF:A3:FE:62","10.205.0.83,10.255.3.162","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKQ","","'+02:00","2026-04-15T20:25:11.000+02:00","SANEF\garcia","Cloud Agent","d00be938-3ca3-49a1-8639-d3ad6ddd15a3","2025-05-09T09:48:07.000+02:00","2026-04-22T11:04:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"379735235","352966403","PCB17655.sanef.groupe","PCB17655","F0:20:FF:9A:8C:EC","10.205.0.104,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HW3","","'+02:00","2026-04-21T09:14:31.000+02:00","SANEF\SENEGAS","Cloud Agent","84aec5f4-acb5-4a26-b43b-904a34cd65f2","2025-11-27T10:40:44.000+02:00","2026-04-22T09:54:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"332364676","333860645","vpameakfk2.sanef.groupe","","00:50:56:90:62:fb","10.41.41.41","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 64 2f ce 71 ca b3-79 bb ce 4b f5 6f 33 2e","No Asset Tag","'+02:00","2025-10-29T11:31:29.000+02:00","cybadmbdd","Cloud Agent","5451e375-b869-4489-86d7-b19519650c27","2025-06-10T16:31:40.000+02:00","2026-04-22T10:55:46.000+02:00","x86_64","4","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","278.0" +"388102188","356872571","PCB24240.sanef.groupe","PCB24240","C8:58:B3:12:EA:C6","10.255.2.202,10.255.2.237","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.04.01","5CD5085GHP","","'+02:00","2026-03-04T11:21:44.000+02:00","SANEF\bartiaux","Cloud Agent","d67932b4-0169-4557-93da-cd2045416cea","2026-01-05T11:20:04.000+02:00","2026-04-22T10:50:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"352581103","341591227","PCB25851.sanef.groupe","PCB25851","F8:ED:FC:AA:A5:50","10.101.242.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSS","","'+02:00","2026-04-14T07:56:38.000+02:00","SANEF\CARBONNAUX","Cloud Agent","3f32a228-0392-4d16-9d9e-400cfc7c4147","2025-08-19T12:30:35.000+02:00","2026-04-22T09:54:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"356281593","343240103","vpdsiadep1.sanef.groupe","","00:50:56:94:aa:b4","10.44.6.5","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","9684","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 8f 6e c6 cc c9 bb-c2 9f 14 db 5f fa 0c 8e","No Asset Tag","'+02:00","2026-02-10T12:07:18.000+02:00","cybadmroot","Cloud Agent","459ae527-bb2c-4372-8da8-8020e6694172","2025-09-02T10:54:05.000+02:00","2026-04-22T11:27:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,NextCloud,Production,Linux Server,Cloud Agent","332.0" +"321090803","328938512","PCB21179.sanef.groupe","PCB21179","F0:20:FF:9B:08:F2","10.205.0.31,192.168.1.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVS","","'+02:00","2026-04-20T09:31:32.000+02:00","SANEF\rondeau","Cloud Agent","f00b4c32-bb5a-4f26-bd31-7d9fb2f13a38","2025-04-30T20:46:11.000+02:00","2026-04-22T11:42:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"389643535","357460667","PCB21107.sanef.groupe","PCB21107","D0:AD:08:AA:50:95","10.205.0.43,10.101.243.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764LN","","'+02:00","2026-04-03T11:30:49.000+02:00","SANEF\consejo-ext","Cloud Agent","406541ab-9228-45a8-aeca-73af663e28bd","2026-01-08T18:44:42.000+02:00","2026-04-22T11:29:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"320073836","328604714","PCB24028.sanef.groupe","PCB24028","6C:0B:5E:F8:F7:B2","10.101.243.64","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4502HF1","","'+02:00","2026-04-21T09:04:52.000+02:00","SANEF\DREUX","Cloud Agent","94bc38bc-7f1a-4c93-bc11-92a57f0033a3","2025-04-28T11:06:31.000+02:00","2026-04-22T09:54:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"383464215","354471589","PCV21512.sanef-int.adds","PCV21512","D0:AD:08:A3:7B:69","10.1.6.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YWK","","'+02:00","2026-01-05T21:07:47.000+02:00","Operateur","Cloud Agent","f3b58bb5-a682-4327-979f-b52da7d18f51","2025-12-12T14:02:48.000+02:00","2026-04-22T09:53:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"184274823","235418455","vpsimaapi1","","00:50:56:82:09:8a","10.41.20.30","fe80::583f:dea5:8ddc:2bec","Linux / Server","The CentOS Project CentOS 7.4 (1708)","7.4","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7984","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 88 e4 f4 8d 79 b0-18 b6 c7 6b ad 9a b1 4f","No Asset Tag","'+02:00","2025-02-24T16:01:53.000+02:00","cybreconcile","Cloud Agent","9e4e4ac7-3f61-4a3e-bf90-933107c8f924","2023-08-24T12:18:59.000+02:00","2026-04-22T11:47:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,BDD-POS DYN,FreeFlow,log4j,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,Obsolete","343.0" +"381588691","353599262","PCB22440.sanef.groupe","PCB22440","D0:AD:08:A7:28:5D","10.219.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM5","","'+02:00","2026-03-29T09:12:19.000+02:00","SANEF\lambertl","Cloud Agent","45ef763a-7fad-4ae9-87b4-5ec9581aa023","2025-12-04T10:42:21.000+02:00","2026-04-22T11:11:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"184256628","235404729","vpcybapvwa2","VPCYBAPVWA2","00:50:56:82:57:9F","10.44.1.101","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","Phoenix Technologies LTD 6.00","VMware-42 02 d7 e9 13 e0 8e 4c-ee d7 a3 72 69 d9 90 dd","NoAssetTag","'+02:00","2026-03-24T10:20:57.000+02:00","Administrator","Cloud Agent","5bc01f3a-d326-41f3-af33-1d94835b1b84","2023-08-24T10:03:45.000+02:00","2026-04-22T09:53:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","CyberArk,DSI,OS-WIN-SRV DYN,Cloud Agent,Windows Server","65.0" +"374170362","350492704","PCV21625.sanef-int.adds","PCV21625","D0:AD:08:A4:4D:BA","10.5.7.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711JN","","'+02:00","2026-04-19T21:02:46.000+02:00","Operateur","Cloud Agent","ecbe38f2-6e42-4ccd-ba46-764b2b9dbca5","2025-11-04T16:50:01.000+02:00","2026-04-22T09:53:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"358637191","344173500","PCB17767.sanef.groupe","PCB17767","F0:20:FF:9A:FB:82","10.255.1.151","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVG","","'+02:00","2026-04-22T07:58:26.000+02:00","SANEF\HUEN","Cloud Agent","2e489da1-1759-480c-9993-f96d8553f560","2025-09-10T16:09:05.000+02:00","2026-04-22T11:46:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"303906738","322166974","vpdsismtp1.sanef.groupe","","00:50:56:9c:52:31","192.168.19.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 3e e5 84 98 21 b6-d6 b8 ae 6a bd 09 14 06","No Asset Tag","'+02:00","2026-04-09T12:08:30.000+02:00","cybsecope","Cloud Agent","f68793dc-d81e-4c88-b8e0-4044c40554d4","2025-02-27T18:09:30.000+02:00","2026-04-22T11:47:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,TAG-SRVEXPOSEINTERNET,EXCHANGE,Production","132.0" +"408011773","364319419","PCB20620.sanef.groupe","PCB20620","BC:0F:F3:3D:F7:D6","10.200.31.79","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DSN","","'+01:00","2026-04-14T22:39:45.000+02:00","SANEF\tamboura","Cloud Agent","76b62eb4-3c67-449a-b570-a6a939db609b","2026-03-12T16:23:59.000+02:00","2026-04-22T09:53:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"139158024","198270620","vmampsxt2","","00:50:56:82:77:D6, 00:50:56:82:34:57, 00:50:56:82:30:7E","10.41.40.31,10.43.40.31,10.43.4.31","fe80::250:56ff:fe82:77d6,fe80::250:56ff:fe82:3457,fe80::250:56ff:fe82:307e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 91 fb 5b cb 7f 86-3e 56 f5 cd 77 f3 57 ec","No Asset Tag","'+02:00","2023-05-31T07:04:09.000+02:00","cybreconcile","Cloud Agent","0d8914c4-4d68-4530-8886-bbdb7c9420e2","2022-09-07T14:34:34.000+02:00","2026-04-22T11:32:18.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_TRAFIC_DC,OS-LIN-SRV DYN,Sextan,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server,DEX,Trafic,Production,Obsolete","699.0" +"227259072","256900169","OSA20936.sanef-int.adds","OSA20936","BC:0F:F3:87:6F:9D","10.5.20.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LKW","","'+02:00","2026-04-20T13:55:26.000+02:00","Superviseur","Cloud Agent","5418f775-14e2-4f21-8f08-62d1aa0aad34","2024-04-03T15:11:24.000+02:00","2026-04-22T09:53:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"325240938","","PCB20610.sanef.groupe","PCB20610","58:1C:F8:E9:51:47","10.255.4.219","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DS4","","'+02:00","2026-03-30T13:41:07.000+02:00","Matheo.MAUCORT@sanef.com","Cloud Agent","49cc29fb-1f19-42bc-91c4-61fe22217e66","2025-05-16T15:09:14.000+02:00","2026-04-22T09:53:25.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"139157311","198270449","vmamprdt2","","00:50:56:82:4d:83, 00:50:56:82:73:0e, 00:50:56:82:1e:cc","10.41.40.71,10.41.40.74,10.41.40.75,10.43.40.71,10.43.40.74,10.43.40.75,10.43.4.71","fe80::250:56ff:fe82:4d83,fe80::250:56ff:fe82:730e,fe80::250:56ff:fe82:1ecc","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3a 36 7c ea da 33-d1 92 df 39 0a 2d 2f 32","No Asset Tag","'+02:00","2024-02-14T14:45:03.000+02:00","cybreconcile","Cloud Agent","2390c953-cec7-401c-9d98-461499419684","2022-09-07T14:31:30.000+02:00","2026-04-22T09:53:24.000+02:00","x86_64","5","SCA,VM,PM,GAV","Obsolete,VRF_TRAFIC_DC,Trafic,log4j,DEX,Cloud Agent,Linux Server,Production,MIVISU,OS-LIN-SRV DYN","873.0" +"244023476","283221410","MTO22447.sanef.groupe","MTO22447","D0:AD:08:A3:7B:4E","10.103.31.10","fe80::e871:8c4:e1d5:26da","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6060) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRV","","'+02:00","2026-04-02T14:01:24.000+02:00","SANEF\meteonewsW11","Cloud Agent","df618932-b813-42f4-8bd6-8b43d9f4f427","2024-06-14T15:54:54.000+02:00","2026-04-22T11:31:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"383465193","354470820","PCB22320.sanef.groupe","PCB22320","D0:AD:08:A3:7B:E3","10.252.42.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZS","8CC3502YZS","'+02:00","2026-03-29T09:12:19.000+02:00","SANEF\bellaton","Cloud Agent","69920b08-f41b-4dd2-8672-059f117a9639","2025-12-12T13:57:43.000+02:00","2026-04-22T10:33:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"314334821","326364429","PCB18630.sanef.groupe","PCB18630","38:CA:84:DB:E6:51","10.4.31.87","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WDC","","'+02:00","2026-04-20T08:59:37.000+02:00","SANEF\RIJO-ext","Cloud Agent","d4f2121d-cbfb-4a6d-99e5-74eeca5ecfd7","2025-04-07T09:47:27.000+02:00","2026-04-22T11:00:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"358126652","344033176","PCB24093.sanef.groupe","PCB24093","70:15:FB:7E:44:A6","10.101.243.37,10.255.3.198","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZD","","'+02:00","2026-04-16T09:18:11.000+02:00","SANEF\ALTINBASAK-ext","Cloud Agent","df23b5f7-5c87-442d-ac30-0f1343fb31ce","2025-09-09T14:06:45.000+02:00","2026-04-22T11:43:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"322118634","329345003","PCB21270.sanef.groupe","PCB21270","D0:AD:08:0C:8D:15","10.4.31.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJV","","'+02:00","2026-04-21T16:08:31.000+02:00","SANEF\puffay","Cloud Agent","af6fc953-6365-45e7-8baf-2bb999fc9b13","2025-05-05T16:02:19.000+02:00","2026-04-22T11:13:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","254.0" +"382992167","354208654","vrpeabrac2.sanef-rec.fr","","52:54:00:54:39:20, 9a:53:a6:01:38:c3, 52:54:00:bf:eb:9c","192.168.17.5,192.168.16.24,10.45.15.37","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","64413","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-07T15:41:12.000+02:00","oracle","Cloud Agent","9821a6e3-ac73-475b-b388-35462434174b","2025-12-10T12:11:02.000+02:00","2026-04-22T09:52:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN","339.0" +"305247249","322678526","PCB18482.sanef.groupe","PCB18482","D0:AD:08:AA:4F:E6","10.107.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764F0","","'+02:00","2026-04-02T08:32:42.000+02:00","SANEF\bouvierd","Cloud Agent","485bb439-d209-454e-8438-291a267aa0c9","2025-03-04T17:15:53.000+02:00","2026-04-22T09:52:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"416487289","367845342","vrzbxaapp1.sanef-rec.fr","","00:50:56:9c:25:44","10.45.15.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 64 2f 45 34 33 f8-91 16 9d bd 35 38 8b cb","No Asset Tag","'+02:00","2026-04-16T17:07:58.000+02:00","cybintsys","Cloud Agent","25db37e5-6c59-40dc-8a3d-c58d87cf3053","2026-04-16T17:08:17.000+02:00","2026-04-22T11:38:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","66.0" +"238272359","269262153","vipeahbst1.sanef.groupe","","00:50:56:90:10:e3","192.168.31.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 de 88 b6 2b cd 2b-3c 44 43 0e b9 e9 28 23","No Asset Tag","'+02:00","2026-04-14T10:29:18.000+02:00","cybsecope","Cloud Agent","b46fa68f-ff5c-405c-bd2d-5cad329b7181","2024-05-21T14:50:12.000+02:00","2026-04-22T10:44:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,TAG-SRVEXPOSEINTERNET,flux_libre,Flux Libre,Cloud Agent,Linux Server,Recette","132.0" +"320920854","328810161","PCB23654.sanef.groupe","PCB23654","C8:6E:08:88:FD:CE","10.205.0.55,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8M","","'+02:00","2026-03-28T10:49:35.000+02:00","SANEF\poos","Cloud Agent","18a9d321-328e-419a-a100-96c446b2765f","2025-04-30T10:03:12.000+02:00","2026-04-22T09:52:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"382436600","353976508","PCB25815.sanef.groupe","PCB25815","F8:ED:FC:AB:02:9A","10.252.42.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTG","","'+02:00","2026-04-13T12:53:37.000+02:00","SANEF\ETIENNE","Cloud Agent","7bb52d5a-de47-4750-8198-fc9acb11aa9f","2025-12-08T11:14:47.000+02:00","2026-04-22T10:57:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","330.0" +"322363728","329442834","PCB23773.sanef.groupe","PCB23773","C8:6E:08:49:2E:0B","10.205.0.49,192.168.1.68","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4M","","'+02:00","2026-04-10T07:39:48.000+02:00","SANEF\zahzouh","Cloud Agent","d37a2a82-6121-4d95-b0f4-f6f3e12c1d67","2025-05-06T12:54:53.000+02:00","2026-04-22T09:52:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"344364139","338329864","PCB18034.sanef.groupe","PCB18034","38:CA:84:52:F8:74","10.101.243.97","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSB","","'+02:00","2026-04-22T07:58:33.000+02:00","SANEF\HEURTEBISE","Cloud Agent","baea6410-b62a-4070-8379-9ca4fbc8ee84","2025-07-23T12:24:13.000+02:00","2026-04-22T09:52:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","143.0" +"382990199","354209251","vrpeabrac1.sanef-rec.fr","","52:54:00:0c:48:7e, 52:54:00:d5:33:4b, 1a:08:40:51:70:fb","10.45.15.36,192.168.17.5,192.168.16.24","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","64413","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:43:49.000+02:00","oracle","Cloud Agent","8ea1a893-c52b-45dd-aca0-8e8e3a787bfc","2025-12-10T12:11:44.000+02:00","2026-04-22T11:43:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0" +"349750444","340113666","PCB24205.sanef.groupe","PCB24205","10:B6:76:97:D4:AE","10.4.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YK5","","'+02:00","2026-04-21T08:08:54.000+02:00","SANEF\BERRIOT-ext","Cloud Agent","53921c51-e175-4f95-8944-121a05fce742","2025-08-07T10:47:25.000+02:00","2026-04-22T09:52:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"324455640","330242564","PCB23777.sanef.groupe","PCB23777","6C:0B:5E:EE:B3:09","10.5.30.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3P","","'+02:00","2026-03-29T11:36:05.000+02:00","SANEF\boulland","Cloud Agent","91341f18-c490-4196-865e-5fa089c492f3","2025-05-13T16:21:31.000+02:00","2026-04-22T09:52:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"370420720","348902679","PCB22468.sanef.groupe","PCB22468","D0:AD:08:E4:A1:17","10.200.31.83","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.05.21","5CG3501HWH","","'+02:00","2026-03-30T08:48:41.000+02:00","SANEF\sanson","Cloud Agent","5c3dd3ca-09e3-4343-bc62-67c5376bd520","2025-10-21T15:09:36.000+02:00","2026-04-22T11:11:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"350537152","340464312","PCB25820.sanef.groupe","PCB25820","F8:ED:FC:AB:12:18","10.101.243.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVB","","'+02:00","2026-04-14T09:31:51.000+02:00","SANEF\PINHO","Cloud Agent","69c887e1-8d3c-41bf-a73f-3fd76ad630bb","2025-08-11T12:10:38.000+02:00","2026-04-22T11:12:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"137339569","197584629","vptraagas1","","00:50:56:82:05:5d","10.41.40.150","fe80::250:56ff:fe82:55d","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 66 78 f5 41 da e3-68 15 1c ce 99 bf 0c c9","No Asset Tag","'+02:00","2025-01-16T11:16:46.000+02:00","cybadmsys","Cloud Agent","76d7296f-4d35-4c0b-b317-0602fb796e2a","2022-08-30T16:11:51.000+02:00","2026-04-22T09:51:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Exploitation,Production,DEX,OS-LIN-SRV DYN,Obsolete,VRF_TRAFIC_DC,Gaspar","517.0" +"382728208","354100586","PCB24065.sanef.groupe","PCB24065","08:B4:D2:2A:09:5E","10.205.0.94,192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506438W","","'+02:00","2026-04-16T09:13:40.000+02:00","SANEF\benaissa-ext","Cloud Agent","3ba9f11c-f960-448a-95bb-40147c5e168f","2025-12-09T13:13:41.000+02:00","2026-04-22T11:42:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","242.0" +"412358345","366106323","PCB18119.sanef.groupe","PCB18119","64:D6:9A:21:81:DF","10.101.243.155,10.255.4.224","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T39 Ver. 01.12.00","5CG2376HS0","","'+02:00","2026-04-07T15:40:54.000+02:00","SANEF\ZAARI","Cloud Agent","9f5c9aeb-14e4-427b-a202-73651dc4e30d","2026-03-30T09:21:28.000+02:00","2026-04-22T11:29:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"359801548","344907765","vrcybapsp1.sanef-rec.fr","","00:50:56:9c:27:27","10.45.11.103","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3654","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9c d3 87 0e c5 1c-1f 79 4e 63 20 02 3d 82","No Asset Tag","'+02:00","2026-04-16T11:21:29.000+02:00","cybreconcile","Cloud Agent","67758aed-02ba-4179-ab10-9b51b3787577","2025-09-15T15:54:53.000+02:00","2026-04-22T09:51:28.000+02:00","x86_64","2","SCA,VM,GAV","Recette,Linux Server,Cloud Agent,CyberArk,OS-LIN-SRV DYN","66.0" +"143625427","201026716","vpemvaldap2.sanef.groupe","","00:50:56:82:51:0c","192.168.100.128","fe80::250:56ff:fe82:510c","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 09/21/2015","VMware-42 02 9c 59 10 65 fe cb-d8 4b 37 07 c2 47 70 33","No Asset Tag","'+02:00","2025-06-03T11:06:33.000+02:00","root","Cloud Agent","d3575692-9abd-4cfe-8bf1-b4ee8afa001a","2022-10-11T17:44:53.000+02:00","2026-04-22T09:51:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,DEX,BDD-POS DYN,PCI Bunker EMV - VLAN Supervision/Admin,VRF_INCONNUE,Cloud Agent,Linux Server,Obsolete","107.0" +"241859199","276775641","vpdsiawik1.sanef.groupe","","00:50:56:9c:a3:a4","192.168.31.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 9c f5 a8 72 94 b0-56 cb 50 f9 c6 65 94 22","No Asset Tag","'+02:00","2026-04-13T11:20:26.000+02:00","cybreconcile","Cloud Agent","f44f74c6-1b54-40d2-abb1-8238f56a3f8c","2024-06-05T16:19:37.000+02:00","2026-04-22T11:44:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DocuWiki,Production","67.0" +"322342951","329432201","PCS22792.sanef-int.adds","PCS22792","D0:AD:08:A3:E6:DE","10.12.13.100","fe80::71f7:1be5:1e38:78a7","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YQC","","'+02:00","2026-02-18T18:47:43.000+02:00","user_stl","Cloud Agent","fd4c5b6d-60ba-4ad9-a65d-682f7eeb0d56","2025-05-06T11:30:18.000+02:00","2026-04-22T11:37:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","346.0" +"322598573","329577160","PCB21628.sanef.groupe","PCB21628","D0:AD:08:A3:7B:5C","10.4.31.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRK","8CC3502YRK","'+02:00","2026-04-21T07:58:36.000+02:00","SANEF\cardinale","Cloud Agent","75ca9f9c-8c71-46a4-9765-0d23d9d423b7","2025-05-07T11:21:14.000+02:00","2026-04-22T11:34:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"396850110","360089022","PCB18614.sanef.groupe","PCB18614","38:CA:84:DB:E6:E4","10.106.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDF","","'+02:00","2026-04-13T13:00:04.000+02:00","SANEF\DISTINGUIN","Cloud Agent","3c994821-e79f-4deb-a477-8463801c2103","2026-02-02T13:24:34.000+02:00","2026-04-22T11:46:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"303928250","322166975","vpdsismtp2.sanef.groupe","","00:50:56:9c:a0:a8","192.168.19.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 00 68 5b 39 44 33-bc 21 52 75 63 7b 5c 22","No Asset Tag","'+02:00","2026-04-08T11:53:27.000+02:00","cybsecope","Cloud Agent","3e6b3e9e-bc4f-47d7-a791-9aca43d21382","2025-02-27T18:09:58.000+02:00","2026-04-22T09:50:58.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,OS-LIN-SRV DYN,Linux Server,Cloud Agent,EXCHANGE,Production","132.0" +"190511242","239173148","vibotbquo1.sanef-int.adds","VIBOTBQUO1","00:50:56:90:40:FD","10.100.16.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 94 9b 1d 02 6d 24-15 c9 c2 7b 1e fc 50 1b","NoAssetTag","'+02:00","2026-03-18T11:44:58.000+02:00","SANEF\ndead","Cloud Agent","0da1037a-061e-45c4-ae92-fca1c116ba07","2023-09-29T11:57:03.000+02:00","2026-04-22T09:50:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,OS-WIN-SRV DYN,flux_libre,Cloud Agent,Windows Server","256.0" +"373866362","350361990","PSX18688.sanef-int.adds","PSX18688","30:13:8B:6C:79:4C","10.12.40.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473VY","","'+02:00","2026-01-13T09:39:02.000+02:00","UserSextan","Cloud Agent","413a701c-07a6-483c-b49a-3a54342b7d45","2025-11-03T16:25:47.000+02:00","2026-04-22T09:50:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"200012633","244159298","vppeaabst2.sanef.groupe","","00:50:56:90:0c:39","10.41.20.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 77 fd f2 0c 9c 7d-53 62 bf db 8b fa a2 df","No Asset Tag","'+02:00","2026-04-16T14:46:56.000+02:00","cybreconcile","Cloud Agent","10a98a33-ca7c-49b4-b122-44d54db84dfb","2023-11-20T18:32:46.000+02:00","2026-04-22T09:50:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,flux_libre,Flux Libre,TAG-SRVEXPOSEINDIRECT,FreeFlow,Production","485.0" +"322331256","329422563","PCB23800.sanef.groupe","PCB23800","C8:6E:08:47:0C:02","10.205.0.4,192.168.0.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4N","","'+02:00","2026-04-20T16:54:15.000+02:00","SANEF\lefebvremi","Cloud Agent","514cff40-0345-4805-ba39-e43b74a3e02b","2025-05-06T09:48:46.000+02:00","2026-04-22T11:47:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"320931046","328811910","PCB22787.sanef.groupe","PCB22787","D0:AD:08:A3:E7:91","10.149.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMF","8CC3502YMF","'+02:00","2026-04-20T14:13:54.000+02:00","SANEF\dauchez","Cloud Agent","c304ea5b-e11e-472f-a1ae-6edcffc92a3d","2025-04-30T10:21:19.000+02:00","2026-04-22T09:50:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"324654124","330319322","PCB20667.sanef.groupe","PCB20667","58:1C:F8:E9:50:E8","10.255.2.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224DSY","","'+02:00","2026-04-13T10:12:35.000+02:00","SANEF\DUMONTM","Cloud Agent","62e1d0eb-e611-43c5-a402-1f5d8be262b7","2025-05-14T10:05:37.000+02:00","2026-04-22T09:50:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"354947020","342628143","PCB25777.sanef.groupe","PCB25777","F8:ED:FC:AB:02:72","10.101.243.83","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTQ","","'+02:00","2026-04-14T08:53:48.000+02:00","SANEF\GUILLOCHON","Cloud Agent","fd426fed-b697-468b-89d0-65ac63eec8c0","2025-08-27T16:52:53.000+02:00","2026-04-22T11:07:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"382416807","353964317","PCB25853.sanef.groupe","PCB25853","28:95:29:1A:F1:A8","10.255.4.189","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW7","","'+02:00","2026-04-13T22:12:36.000+02:00","SANEF\vagnon","Cloud Agent","107c6e39-7f8c-4233-a128-8642c11b0fa6","2025-12-08T09:49:34.000+02:00","2026-04-22T10:58:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","331.0" +"130346127","192664642","VMAMPWEB1.sanef.groupe","VMAMPWEB1","02:B9:3C:27:74:C9, 00:50:56:90:11:F0","169.254.2.244,10.41.40.111,10.41.40.113","fe80::88c7:ff94:1117:d134,fe80::fd9d:cd61:39ca:5304","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 10 94 01 a9 35 ea 17-5d e7 36 59 38 30 b2 a9","NoAssetTag","'+02:00","2024-02-13T14:07:57.000+02:00","SANEF.GROUPE\tbead","Cloud Agent","9c85f8e4-448f-409f-b1f8-d47fa5324a3a","2022-07-05T15:50:41.000+02:00","2026-04-22T09:50:23.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Production,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Obsolete,Patrimoine,DEX,VRF_TRAFIC_DC,SIG","537.0" +"222529119","254800462","vppatakib1.sanef.groupe","","00:50:56:90:59:ba","10.42.40.15","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 6f fd 1c cd de 1f-ce 83 16 7d ad c6 7e 9f","No Asset Tag","'+02:00","2026-04-09T16:12:53.000+02:00","cybadmbdd","Cloud Agent","83451f3c-6805-458b-979e-1fb6ffcd2068","2024-03-15T12:10:59.000+02:00","2026-04-22T11:18:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","PATRIMOINE,DFIN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","57.0" +"184089794","235299816","vpcybapsm2.sanef.groupe","VPCYBAPSM2","00:50:56:82:33:57","10.44.1.69","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","Phoenix Technologies LTD 6.00","VMware-42 02 4e 3f c4 5c 21 f4-3a f1 68 7b 6d 41 af 17","NoAssetTag","'+02:00","2026-03-24T10:19:18.000+02:00","SANEF-INT\CYBP01481","Cloud Agent","2015b96b-e6e7-455a-86c1-5e284adf255b","2023-08-23T09:27:47.000+02:00","2026-04-22T09:50:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","CyberArk,DSI,OS-WIN-SRV DYN,Cloud Agent,Windows Server","246.0" +"406509483","363684781","PCB24062.sanef.groupe","PCB24062","10:B6:76:93:FA:D1","10.5.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YJ7","","'+02:00","2026-04-17T13:07:28.000+02:00","SANEF\DELSUC","Cloud Agent","5e5e12e4-a6cd-43fd-9ece-76b05296451e","2026-03-06T13:38:03.000+02:00","2026-04-22T10:49:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"183457732","234863518","vtdsibpgs1.sanef-rec.fr","","00:50:56:9c:77:7e","10.45.1.167","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c b6 7b 71 22 01 84-ec fe 04 26 bf 3b 4f 17","No Asset Tag","'+02:00","2026-01-06T15:54:48.000+02:00","cybsecope","Cloud Agent","ec852b1a-f855-46a4-88ae-903b37921bed","2023-08-18T17:11:51.000+02:00","2026-04-22T09:50:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,PATRIMOINE","141.0" +"236895900","266301960","vpvpnarad2","","02:42:9c:2f:9f:bb, b6:47:fe:27:d8:89, 00:50:56:90:40:f5","172.17.0.1,192.168.19.7","fe80::42:9cff:fe2f:9fbb,fe80::b447:feff:fe27:d889,fe80::250:56ff:fe90:40f5","Linux / Server","Red Hat Enterprise Linux 8.3","8.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 2a 03 6f bc c2 e7-10 f6 d6 6c 6e 29 9c e9","No Asset Tag","'+02:00","2026-02-24T12:31:12.000+02:00","cybsupsys","Cloud Agent","db63d141-d056-4287-9e53-31930fdb766e","2024-05-15T14:46:02.000+02:00","2026-04-22T11:36:13.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,GEMALTO,VPN,Radius,DSI","207.0" +"381698913","353634169","spbckamag7.sanef.groupe","","6c:29:d2:30:51:dc, 6c:29:d2:30:51:dd","10.42.16.101,10.43.1.9","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192295","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3G","Unknown","'+02:00","2025-12-04T17:01:36.000+02:00","root","Cloud Agent","de6ae98a-1867-41a0-98a2-043a932172c8","2025-12-04T16:39:03.000+02:00","2026-04-22T11:40:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"408839040","364697527","PCB18007.sanef.groupe","PCB18007","60:DD:8E:EE:03:E0","10.255.3.4","fe80::25d4:dc37:3a0d:29ef","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.25.00","8CC206174T","","'+02:00","2026-04-14T22:50:48.000+02:00","SANEF\Mediouni-ext","Cloud Agent","3012903e-c8eb-4b0f-8e9b-ac5a413cc459","2026-03-16T17:55:30.000+02:00","2026-04-22T09:50:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","237.0" +"130586812","192835992","vmamrhtp1","","00:50:56:82:00:63, 00:50:56:82:1F:DC, 00:50:56:82:46:63","10.32.16.50,10.30.16.50,10.30.16.57,10.30.16.59,10.33.16.50","fe80::250:56ff:fe82:63,fe80::250:56ff:fe82:1fdc,fe80::250:56ff:fe82:4663","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d3 dc 26 d6 b0 47-13 65 44 3c 3c 1d b0 59","No Asset Tag","'+02:00","2025-10-09T11:37:38.000+02:00","cybexpapp","Cloud Agent","946a2d3a-0f88-464a-986b-a92a377b8afd","2022-07-07T12:00:23.000+02:00","2026-04-22T11:45:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,DEX,log4j,Amelie,Obsolete,Sans,Trafic,Recette,VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN","349.0" +"128614292","191424818","ls-plateau","LS-PLATEAU","00:50:56:90:3C:39","10.41.2.83","fe80::b7cb:1019:15c3:43b1","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 ad 97 ac 62 7a 6d-11 46 1d a1 fd db 02 b3","NoAssetTag","'+02:00","2026-03-02T15:04:17.000+02:00","svpadmin","Cloud Agent","cebda2d7-ab45-45b2-8276-68eb9a1c9336","2022-06-21T15:49:46.000+02:00","2026-04-22T11:08:04.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,Cloud Agent,Haute,Production,Péage,High,DEX,VRF_PEAGE_DC,OS-WIN-SRV DYN,Windows Server","635.0" +"376693686","351648052","PCB20683.sanef.groupe","PCB20683","58:1C:F8:EA:53:8F","10.255.3.201,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DS1","","'+02:00","2026-04-17T09:10:18.000+02:00","SANEF\FALEYRAS-SEVELE","Cloud Agent","3a8e6072-7754-4748-bcef-250421c6013d","2025-11-14T17:42:08.000+02:00","2026-04-22T09:49:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"320491264","328732388","PCB23698.sanef.groupe","PCB23698","6C:0B:5E:EC:3E:27","10.6.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8C","","'+02:00","2026-04-16T07:52:00.000+02:00","SANEF\neimer","Cloud Agent","d3670d04-6136-4dc3-a259-720e46b52114","2025-04-29T15:19:49.000+02:00","2026-04-22T09:49:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"343661247","338037186","PCB21354.sanef.groupe","PCB21354","E4:60:17:C4:EC:F8","10.220.31.54,10.255.4.220","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HZ","","'+02:00","2026-04-02T09:01:59.000+02:00","chaima.fakkake@sapn.fr","Cloud Agent","d60075e0-7cb1-4859-9023-39f5de62702b","2025-07-21T11:09:17.000+02:00","2026-04-22T11:33:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"383948228","354712737","PCB22337.sanef.groupe","PCB22337","D0:AD:08:A3:7B:41","10.252.42.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS8","8CC3502YS8","'+02:00","2026-03-29T09:13:54.000+02:00","SANEF\mohamadi","Cloud Agent","4fdf0e17-6a8d-4d74-bf2f-9209c5e8fa47","2025-12-15T10:25:50.000+02:00","2026-04-22T09:49:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"333994544","333992320","PCB24131.sanef.groupe","PCB24131","08:B4:D2:2E:D5:1F","10.205.0.17,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6Y","","'+02:00","2026-04-22T07:30:37.000+02:00","SANEF\cousin","Cloud Agent","b4dc53da-aebd-4b82-bd34-6a04e9263aee","2025-06-17T11:26:46.000+02:00","2026-04-22T09:49:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"191660245","239874257","sibocbsap2.sanef.groupe","","88:e9:a4:75:25:08","10.41.22.76","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL560 G10 Server","144","2600","Intel(R) Xeon(R) Gold 6240L CPU @ 2.60GHz","4127749","HPE U34 07/20/2023","CZ22420F50","","'+02:00","2026-03-16T16:22:43.000+02:00","cybastapp","Cloud Agent","af2ca818-f1c9-4b0c-a5c2-33213852a9bb","2023-10-05T21:48:59.000+02:00","2026-04-22T09:49:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Production,Flux Libre","337.0" +"294135637","316159330","vradvangx1.sanef-rec.fr","","00:50:56:9c:1d:06","192.168.20.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d3 be 42 6a 65 f4-d8 e7 02 31 3c 8d b4 35","No Asset Tag","'+02:00","2026-02-18T15:08:00.000+02:00","root","Cloud Agent","8feb517e-05d5-42e2-8b25-112def6329c1","2025-01-22T13:33:18.000+02:00","2026-04-22T10:22:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,ADV-U,Recette","54.0" +"324670706","330328738","PCB20679.sanef.groupe","PCB20679","BC:0F:F3:3B:D9:5D","10.100.39.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3J","","'+02:00","2026-04-20T08:46:30.000+02:00","SANEF\LEFEBVREC","Cloud Agent","2726c25b-7c6b-44f7-980b-ec4594419818","2025-05-14T11:10:37.000+02:00","2026-04-22T09:49:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","143.0" +"356604589","343405611","PCB22733.sanef.groupe","PCB22733","E4:60:17:C5:08:5F","10.220.31.61,10.255.2.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GW","","'+02:00","2026-04-01T08:56:10.000+02:00","doriane.petit@sapn.fr","Cloud Agent","b7010b1e-5201-4e59-ad83-44f881cb65ae","2025-09-03T13:47:15.000+02:00","2026-04-22T11:00:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"413950453","366887050","PCB23798.sanef.groupe","PCB23798","6C:0B:5E:EE:B3:6B","10.13.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4Z","","'+02:00","2026-04-17T08:40:53.000+02:00","SANEF\SAINT-DIZIER","Cloud Agent","d75b17dd-360b-471f-b4f8-c469088b031f","2026-04-07T08:02:05.000+02:00","2026-04-22T09:49:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"332353560","333860644","vpameakfk1.sanef.groupe","","00:50:56:90:04:1c","10.41.41.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 b3 9d 5a d9 91 de-49 0d d0 9b 5b 6b 02 07","No Asset Tag","'+02:00","2025-10-29T11:06:09.000+02:00","cybadmbdd","Cloud Agent","51544ed6-bde3-4faa-b97f-31bb7e0d44f9","2025-06-10T16:29:00.000+02:00","2026-04-22T10:08:16.000+02:00","x86_64","4","SCA,VM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Sextan,Production","278.0" +"130590027","192837854","vdameassl1.sanef.groupe","","00:50:56:82:f1:1a","10.43.255.45","fe80::f672:80e6:59b3:f788","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2b b7 30 78 5e 8a-ad a8 29 5f 73 57 24 cb","No Asset Tag","'+02:00","2026-04-20T15:24:04.000+02:00","cybexpapp","Cloud Agent","a5692cec-00b3-4117-a659-3b436eaa851d","2022-07-07T12:12:12.000+02:00","2026-04-22T09:38:36.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,VRF_INCONNUE,DEX,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","268.0" +"281049216","","PCB22530.sanef.groupe","PCB22530","E4:60:17:CB:F4:E9","172.16.208.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JL","","'+02:00","2026-04-06T14:11:40.000+02:00","SANEF\sardinha","Cloud Agent","7ed4a3bd-44e8-45e0-aba5-78081c613f9e","2024-11-21T17:21:42.000+02:00","2026-04-22T09:49:06.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"362249908","345661801","PCB24074.sanef.groupe","PCB24074","24:FB:E3:CF:FD:4A","10.205.0.67,10.202.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5162X3T","","'+02:00","2026-04-15T08:14:50.000+02:00","SANEF\rivard","Cloud Agent","0a97331c-c82b-462c-b382-71c645ed578c","2025-09-23T11:45:52.000+02:00","2026-04-22T10:30:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"175464814","229282552","vvbotatst3.sanef-rec.fr","","00:50:56:9c:ba:92","10.45.6.161","fe80::250:56ff:fe9c:ba92","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7696","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 97 75 e5 1f ac c9-75 c6 00 62 09 fb 2d e9","No Asset Tag","'+02:00","2026-03-10T12:00:04.000+02:00","cybreconcile","Cloud Agent","475dd744-3781-4643-97b0-8ce87c3e0672","2023-06-22T17:17:41.000+02:00","2026-04-22T09:49:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Recette,Flux Libre,flux_libre,Cloud Agent,Linux Server","334.0" +"402351359","361981115","PCB18094.sanef.groupe","PCB18094","64:D6:9A:1D:39:0E","10.255.3.183,192.168.1.120","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HTH","","'+02:00","2026-04-14T12:10:51.000+02:00","SANEF\MAJERUS","Cloud Agent","6ef9a191-413d-48a1-b810-3f85d6d129bc","2026-02-19T11:27:48.000+02:00","2026-04-22T09:49:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"238272367","269262155","vipeabbst2.sanef.groupe","","00:50:56:90:ce:4e","10.41.29.56","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 fc 3a 2e ef 88 c6-05 2a 0d ba 91 ec 80 aa","No Asset Tag","'+02:00","2026-03-19T11:10:15.000+02:00","cybintsys","Cloud Agent","391e4720-a981-4d5b-bb7e-ebb0db648bb9","2024-05-21T14:51:21.000+02:00","2026-04-22T11:02:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,Cloud Agent,Linux Server,FreeFlow","141.0" +"223166642","255070312","ls-haudricourt","LS-HAUDRICOURT","00:50:56:90:72:A8","10.132.4.20","fe80::3d8e:ef30:d61b:87ca","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 b8 b0 c2 d8 96 1f-7c 78 70 87 69 f6 18 07","NoAssetTag","'+02:00","2026-03-24T16:07:41.000+02:00","svpadmin","Cloud Agent","8c6fd665-ea25-4a14-a2e8-7febb3fcff8d","2024-03-18T16:02:00.000+02:00","2026-04-22T11:41:26.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,SVP,Péage,Haute,High,Cloud Agent,Windows Server","633.0" +"341032622","336926772","vrpatbcao1.recette.adds","VRPATBCAO1","00:50:56:9C:19:23","10.45.10.195","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 68 e6 c5 5e 67 7f-60 27 69 00 df 7f 28 01","NoAssetTag","'+02:00","2026-04-07T15:31:00.000+02:00","Administrateur","Cloud Agent","7e4a0e85-f52e-4c97-8096-28936f2f77fa","2025-07-11T10:50:32.000+02:00","2026-04-22T11:34:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Administration_MS,DSI,Recette,BDD-SQL DYN,OS-WIN-SRV DYN","246.0" +"201783484","245012499","vrameastg2","","00:50:56:9c:17:d8, 00:50:56:9c:bb:2e","10.45.2.11,10.45.4.11","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c fc 36 79 54 6c ba-ca 12 cd 69 db a2 8b 97","No Asset Tag","'+02:00","2026-04-21T11:03:11.000+02:00","cybadmsys","Cloud Agent","be788eb3-66f5-44eb-a642-ec84a40a79e1","2023-11-30T16:16:30.000+02:00","2026-04-22T11:44:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","47.0" +"356275330","343235595","PCB18042.sanef.groupe","PCB18042","38:CA:84:52:39:1F","10.101.243.55","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HV5","","'+02:00","2026-04-21T14:39:13.000+02:00","SANEF\HERROUIN-ORANGE","Cloud Agent","7b1b8777-3fa4-4df9-b252-1776e3b39049","2025-09-02T10:01:55.000+02:00","2026-04-22T11:47:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"334967788","334372216","PCB24090.sanef.groupe","PCB24090","08:B4:D2:2C:64:10","10.155.31.8,10.255.3.149","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437H","","'+02:00","2026-04-22T07:57:42.000+02:00","SANEF\SMIS","Cloud Agent","b4f23953-fabc-41bf-88a6-fd9df3304bb2","2025-06-20T12:05:25.000+02:00","2026-04-22T10:52:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"279155823","304713613","vrdecasas2.sanef.groupe","","00:50:56:82:7f:e4","10.45.1.5","fe80::250:56ff:fe82:7fe4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2b 63 fb 72 01 f6-47 5d 14 e5 e3 22 ca 28","No Asset Tag","'+02:00","2026-03-23T11:55:09.000+02:00","cybadmsys","Cloud Agent","4b70bd06-8ae2-45da-baee-f2f13c404985","2024-11-14T15:53:41.000+02:00","2026-04-22T11:30:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","54.0" +"388368806","357006395","PCB17647.sanef.groupe","PCB17647","F0:20:FF:9A:19:F6","10.205.0.54,192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVP","","'+02:00","2026-04-20T09:22:13.000+02:00","SANEF\guiheux","Cloud Agent","316865bc-811b-46a5-aa48-1666b689265d","2026-01-06T13:10:14.000+02:00","2026-04-22T09:48:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"202869826","245559410","viosapapp1.sanef.groupe","","00:50:56:90:3e:29","10.41.29.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 c9 cc 4b d1 aa 40-5e d3 90 16 07 fd 9b 1b","No Asset Tag","'+02:00","2026-02-16T11:43:08.000+02:00","cybadmbdd","Cloud Agent","c53e3b0e-dbdb-44c5-837b-aeab50fdfe98","2023-12-06T19:43:12.000+02:00","2026-04-22T09:48:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,Péage","140.0" +"356625275","343406227","PCB21098.sanef.groupe","PCB21098","D0:AD:08:AA:50:03","10.220.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FY","","'+02:00","2026-03-31T08:56:59.000+02:00","David.chaventre@sapn.fr","Cloud Agent","17f845a8-23a9-4532-8879-11b64ee37811","2025-09-03T13:51:36.000+02:00","2026-04-22T11:24:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"240051824","273691428","ls-bouville","LS-BOUVILLE","00:50:56:90:5A:4B","10.252.12.200","fe80::c8dc:5997:49f0:2241","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 10 19 0c 6b 75 8e 0f-e2 b1 a0 f4 c0 e9 42 75","NoAssetTag","'+02:00","2026-03-05T12:17:20.000+02:00","svpadmin","Cloud Agent","e05ddd1f-b450-4f53-b13d-b6466eaaa8c3","2024-05-29T11:02:01.000+02:00","2026-04-22T09:48:20.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Péage,OS-WIN-SRV DYN,SVP,Cloud Agent,Windows Server","508.0" +"354650363","342479605","vpdsiasaf2.sanef.groupe","","d6:b8:e4:b9:10:87, ce:74:ea:04:3a:03, 00:50:56:90:e0:5d","10.88.0.1,192.168.19.9","fe80::d4b8:e4ff:feb9:1087,fe80::cc74:eaff:fe04:3a03","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 37 7d df 6f 8b 51-fc 8b fb 03 1c 3c 2a 09","No Asset Tag","'+02:00","2026-03-24T11:06:59.000+02:00","cybsupsys","Cloud Agent","8412c1c3-7f0d-4706-8013-12195e7a40d9","2025-08-26T15:04:36.000+02:00","2026-04-22T09:58:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","144.0" +"175412357","229249002","vvbocs4ci2.sanef-rec.fr","","00:50:56:9c:28:55","10.45.6.7","fe80::250:56ff:fe9c:2855","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7d d4 67 db 36 a4-b2 20 38 1b 76 a4 90 b8","No Asset Tag","'+02:00","2026-03-09T11:21:57.000+02:00","cybsupsys","Cloud Agent","e5198541-430d-44e4-bc45-e454d68ee3b3","2023-06-22T10:40:04.000+02:00","2026-04-22T11:00:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,FreeFlow,Cloud Agent,Linux Server","143.0" +"322071111","329340612","PCB23747.sanef.groupe","PCB23747","6C:0B:5E:EE:B3:75","10.152.31.16,10.205.0.137","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3H","","'+02:00","2026-03-28T09:26:01.000+02:00","SANEF\BOULET","Cloud Agent","24c8466d-d55e-4678-9b2c-d746fd8f7b6b","2025-05-05T15:30:00.000+02:00","2026-04-22T09:55:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"376636656","351625364","PCB18260.sanef.groupe","PCB18260","5C:60:BA:59:E5:FA","10.200.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y9C","8CC2250Y9C","'+02:00","2026-04-01T08:51:49.000+02:00","SANEF\JOULAIN","Cloud Agent","deacb4c6-082b-4ace-86e5-a992d493d012","2025-11-14T14:51:33.000+02:00","2026-04-22T09:48:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"176097843","229734619","vvbooaboo2.sanef-rec.fr","","00:50:56:9c:38:43","10.45.6.77","fe80::250:56ff:fe9c:3843","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7696","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 31 06 3a 3d 3d 43-73 bb 58 b6 5b 60 c1 05","No Asset Tag","'+02:00","2026-03-10T17:14:03.000+02:00","cybsupsys","Cloud Agent","75335249-80f8-47bc-98d0-ea1d1ccf6fe1","2023-06-27T15:28:32.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow","140.0" +"362256073","345665238","PCB24200.sanef.groupe","PCB24200","30:E3:A4:D6:80:FD","10.255.1.132","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKP","","'+02:00","2026-04-20T14:05:43.000+02:00","SANEF\LEJOLLIOT","Cloud Agent","07c1fd99-abb0-4ec3-8461-c5984210231a","2025-09-23T12:18:21.000+02:00","2026-04-22T09:47:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"213849721","251124345","specmadpr2.sanef-int.adds","SPECMADPR2","08:F1:EA:76:B0:70","10.44.2.42","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Computers / Server","HPE ProLiant ML350 G10 Server","1","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","32297","HPE U41","CZJ95002KQ","","'+02:00","2026-01-26T15:07:25.000+02:00","Damon","Cloud Agent","a11eb395-9529-436a-b49e-2e917ebe89e6","2024-02-05T19:19:51.000+02:00","2026-04-22T09:47:41.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,BDD-SQL DYN,OS-WIN-SRV DYN,SCCM","521.0" +"356624693","343405612","PCB17805.sanef.groupe","PCB17805","28:C5:D2:9E:3E:C8","10.255.4.175,10.255.4.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4J","","'+02:00","2026-04-16T09:10:21.000+02:00","SANEF\DELATRE","Cloud Agent","e799e6cb-4b59-4a77-a6dc-421008c6ccba","2025-09-03T13:46:46.000+02:00","2026-04-22T10:27:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"175460796","229280307","vvbotcach2.sanef-rec.fr","","ce:99:89:14:9f:e6, 00:50:56:9c:91:57, 52:ea:5f:a9:20:e6, 9e:33:db:81:69:e3, 0a:e7:2e:8c:32:81, 9a:44:a6:b3:90:86, 6e:f1:e1:71:87:fe, ce:f6:b2:09:40:ae, fe:81:27:e9:b3:11","10.45.6.154,10.89.0.1","fe80::cc99:89ff:fe14:9fe6,fe80::250:56ff:fe9c:9157,fe80::50ea:5fff:fea9:20e6,fe80::9c33:dbff:fe81:69e3,fe80::8e7:2eff:fe8c:3281,fe80::9844:a6ff:feb3:9086,fe80::6cf1:e1ff:fe71:87fe,fe80::ccf6:b2ff:fe09:40ae,fe80::fc81:27ff:fee9:b311","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c8 1c 08 b4 fb 22-19 5e 0c bf ea d6 cd 38","No Asset Tag","'+02:00","2026-03-10T13:14:04.000+02:00","cybreconcile","Cloud Agent","659cee55-a9c2-4202-937d-3d0bf3b1a279","2023-06-22T16:51:38.000+02:00","2026-04-22T11:37:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,Recette,flux_libre,FreeFlow","140.0" +"324936733","330448379","vpstlbtel2.sanef-int.adds","VPSTLBTEL2","00:50:56:90:E3:08","10.41.13.53","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3453) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 78 e5 58 3d 04 8a-71 cc 17 a9 f6 4e 23 b9","NoAssetTag","'+02:00","2026-03-04T18:03:19.000+02:00","user_stl","Cloud Agent","ac8bd201-be19-424b-8d8a-0a1ac1de7456","2025-05-15T09:18:16.000+02:00","2026-04-22T11:46:07.000+02:00","64-Bit","2","SCA,VM,GAV","Systel,Production,Cloud Agent,BDD-SQL DYN,OS-WIN-SRV DYN","346.0" +"324439316","330242095","PCB23790.sanef.groupe","PCB23790","C8:6E:08:49:2D:A7","10.255.2.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H49","","'+02:00","2026-04-17T11:05:54.000+02:00","SANEF\micheln","Cloud Agent","a2469ff1-c6a5-4834-87fb-28e2a152e6da","2025-05-13T16:17:51.000+02:00","2026-04-22T09:47:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"269834129","299451295","SVP21060.sanef-int.adds","SVP21060","D0:AD:08:A3:7B:63","10.5.20.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWP","","'+02:00","2026-04-19T17:31:48.000+02:00","Superviseur","Cloud Agent","e91a7580-665c-430a-86ac-5520d854646b","2024-10-03T11:15:43.000+02:00","2026-04-22T09:47:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"322014778","329317303","PCB23727.sanef.groupe","PCB23727","C8:6E:08:48:C3:E9","10.205.0.39,192.168.1.75","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2N","","'+02:00","2026-04-13T14:12:10.000+02:00","SANEF\TOULOTTE","Cloud Agent","27873774-c9ed-4e36-85f5-13dcadeb0909","2025-05-05T10:53:37.000+02:00","2026-04-22T11:37:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","143.0" +"356632998","343419674","PCB17943.sanef.groupe","PCB17943","84:69:93:E1:89:9D","10.101.243.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724BQ","","'+02:00","2026-03-30T12:13:17.000+02:00","SANEF\DAVIDB","Cloud Agent","d9abb653-3806-4902-a953-542aaea19f91","2025-09-03T16:21:01.000+02:00","2026-04-22T10:18:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"312827606","325605227","vpgawgtw1.sanef.groupe","","00:50:56:90:64:a2","192.168.19.67,192.168.19.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0f fb 4d 00 1c 82-1c 5b c8 be 84 eb 2c 4f","No Asset Tag","'+02:00","2026-03-17T17:09:54.000+02:00","root","Cloud Agent","4dc116ec-ca5a-49b6-be94-dcba58afe9db","2025-04-01T16:29:23.000+02:00","2026-04-22T11:04:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","144.0" +"370189451","348792427","PCB25783.sanef.groupe","PCB25783","28:95:29:22:6B:6D","10.205.0.62,10.255.1.193","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSN","","'+02:00","2026-04-13T10:17:29.000+02:00","SANEF\ROCHE","Cloud Agent","ab3446a1-b0f4-4bf8-b7b6-cc28ce5ae7a2","2025-10-20T15:16:19.000+02:00","2026-04-22T11:44:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"332979745","333625721","vpsimaxsr1","VPSIMAXSR1","00:50:56:82:76:7E","192.168.230.31","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 93 38 f6 f5 1e 1d-10 bd 54 71 f4 2f 25 e1","NoAssetTag","'+02:00","2026-04-15T10:55:31.000+02:00","Administrateur","Cloud Agent","469e2ea9-7853-40a6-93ed-485d9331f141","2025-06-12T19:32:09.000+02:00","2026-04-22T09:46:31.000+02:00","64-Bit","4","SCA,VM,GAV","Cloud Agent,OS-WIN-SRV DYN,DEX,TAG-SRVEXPOSEINTERNET,XFB","24.0" +"280843816","305646175","PCB22511.sanef.groupe","PCB22511","D0:AD:08:AA:50:83","10.208.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L2","","'+02:00","2026-04-09T18:58:03.000+02:00","SANEF\nuyens","Cloud Agent","1e21d414-c732-4c3e-9a44-b18aee3c33c5","2024-11-20T18:41:58.000+02:00","2026-04-22T09:46:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"378363780","352445448","PSX18699.sanef-int.adds","PSX18699","30:13:8B:6C:5D:BE","10.200.40.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WG","","'+02:00","2026-04-14T13:01:27.000+02:00","UserSextan","Cloud Agent","891b8700-975a-476a-a6f6-3fd82ff69416","2025-11-21T18:18:54.000+02:00","2026-04-22T09:46:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"269936877","299502490","vragtatse1.recette.adds","VRAGTATSE1","00:50:56:9C:4B:EB","10.45.1.228","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c e3 6d 4b 6a 41 7a-f0 cf 93 be cb ca 75 75","NoAssetTag","'+02:00","2026-02-23T16:30:40.000+02:00","sos","Cloud Agent","5f44db17-6553-4751-bc6e-e8d3995af033","2024-10-03T19:50:53.000+02:00","2026-04-22T11:07:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,Recette","255.0" +"228421026","257494831","ls-chamant2","LS-CHAMANT2","00:50:56:90:18:39","10.41.2.25","fe80::857:ad43:2d18:2172","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 e3 5c 02 fd 31 6a-9d a8 89 8a e3 d2 b2 a0","NoAssetTag","'+02:00","2026-04-02T11:40:58.000+02:00","svpadmin","Cloud Agent","f3ffdfd5-e59a-46fd-b38e-d3c921a135ea","2024-04-08T11:15:56.000+02:00","2026-04-22T11:27:06.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,Péage,Production,High,VRF_PEAGE_DC,DEX","507.0" +"212764598","250647971","viaflperf1.sanef.groupe","","00:50:56:90:31:5e","192.168.22.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 db f0 ae 7a 40 aa-16 6d c0 a1 34 ab a0 52","No Asset Tag","'+02:00","2026-03-19T17:17:57.000+02:00","cybreconcile","Cloud Agent","b4c016af-9f63-4366-ae08-328deead2f01","2024-01-30T18:29:54.000+02:00","2026-04-22T09:46:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server,Production","142.0" +"296277825","317660427","REX21548.sanef-int.adds","REX21548","D0:AD:08:A3:E6:DB","10.100.91.81","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQ8","","'+02:00","2026-03-24T12:58:48.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","d2464cc3-7733-4048-80ca-69eb3d62c2cd","2025-01-30T17:58:06.000+02:00","2026-04-22T11:00:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"221414626","254284745","vposapels2.sanef.groupe","","00:50:56:90:f9:15","10.41.20.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63887","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ab 73 a3 7d d0 1e-3f e5 88 b0 bf 5d fd fa","No Asset Tag","'+02:00","2026-02-26T12:41:06.000+02:00","cybadmsys","Cloud Agent","920d01ab-2f0d-419c-90ac-a814f489997e","2024-03-11T18:23:25.000+02:00","2026-04-22T11:28:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","DEX,Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production","144.0" +"324382600","330212480","PCB21312.sanef.groupe","PCB21312","30:F6:EF:A3:E3:82","10.205.0.66,10.255.4.196","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKB","","'+02:00","2026-04-20T10:03:35.000+02:00","SANEF\BERGERE","Cloud Agent","221490b8-17d4-4753-bdaa-5f28284f260a","2025-05-13T11:55:22.000+02:00","2026-04-22T09:46:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"416893750","367956474","vrzbxaprx2.sanef-rec.fr","","00:50:56:9c:de:1b","10.45.15.208","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3654","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 45 da d6 aa e0 cf-89 72 1b 4a ad 0c e0 f7","No Asset Tag","'+02:00","2026-04-16T12:36:02.000+02:00","cybintsys","Cloud Agent","62023821-1f5c-487c-869b-1db00aff7e86","2026-04-17T16:50:53.000+02:00","2026-04-22T09:46:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"320925287","328813405","PCB22773.sanef.groupe","PCB22773","D0:AD:08:A3:E7:A4","10.199.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLB","8CC3502YLB","'+02:00","2026-04-01T14:50:21.000+02:00","SANEF\kotula","Cloud Agent","6f1c157e-8264-4156-95ca-3ae3e154e3fb","2025-04-30T10:41:49.000+02:00","2026-04-22T09:45:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"317575147","327677038","PCB23781.sanef.groupe","PCB23781","6C:0B:5E:EE:A3:15","10.1.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H40","","'+02:00","2026-04-02T14:47:33.000+02:00","SANEF\HERROU","Cloud Agent","6c67249b-181f-4bbe-b42f-ca135ab941b3","2025-04-18T11:18:29.000+02:00","2026-04-22T11:19:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"322392766","329448179","PCB23629.sanef.groupe","PCB23629","6C:0B:5E:ED:A2:4B","10.200.30.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L88","","'+02:00","2026-03-30T18:25:05.000+02:00","SANEF\spruyt","Cloud Agent","77c9fe33-5296-487b-bdc1-31b980ace844","2025-05-06T13:51:14.000+02:00","2026-04-22T11:45:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"383456003","354466610","vpbotakpi1.sanef.groupe","","00:50:56:90:30:ef","10.41.23.30","fe80::250:56ff:fe90:30ef","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 9d 32 f3 bf 13 7f-b6 1e 57 c8 72 bd b3 18","No Asset Tag","'+02:00","2026-04-21T10:16:47.000+02:00","root","Cloud Agent","8884854a-42e2-4da4-bbf2-118f4d9d6f53","2025-12-12T13:08:00.000+02:00","2026-04-22T11:32:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","138.0" +"287954932","311552199","vrosapquo1.sanef-rec.fr","","00:50:56:90:21:62","10.100.16.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7696","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 d0 0a 2e 94 88 a6-92 48 b4 ac 8d ce 1a e0","No Asset Tag","'+02:00","2026-02-16T16:21:43.000+02:00","cybintsys","Cloud Agent","4daaa297-2dae-4663-83ef-ff78eb122691","2024-12-20T16:03:16.000+02:00","2026-04-22T11:37:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Péage","142.0" +"320120950","328616627","PCB23558.sanef.groupe","PCB23558","C8:6E:08:97:E0:A0","10.205.0.117,10.255.2.198","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L42","","'+02:00","2026-04-20T09:04:12.000+02:00","SANEF\LEBON","Cloud Agent","7f93d5b6-9367-4a91-bb39-64a0e8350777","2025-04-28T12:52:40.000+02:00","2026-04-22T10:58:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"335498006","334626548","PCB24168.sanef.groupe","PCB24168","6C:0B:5E:FA:64:FB","10.1.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG45107MV","","'+02:00","2026-04-22T07:57:06.000+02:00","SANEF\MARGOT","Cloud Agent","b00f29e6-ab8a-45d1-89e9-a2ca71a0884d","2025-06-23T13:01:10.000+02:00","2026-04-22T11:46:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"342493696","337558317","PCB17764.sanef.groupe","PCB17764","28:C5:D2:9F:C4:32","10.255.3.200","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y4Y","","'+02:00","2026-04-20T09:19:05.000+02:00","SANEF\DUFOUR","Cloud Agent","547f1f78-8112-4325-9fc3-ad254ecbad2a","2025-07-17T11:36:54.000+02:00","2026-04-22T09:45:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","257.0" +"175464703","229281780","vvbotarmq2.sanef-rec.fr","","8e:75:d4:ea:8a:13, ce:41:d0:99:97:2d, 00:50:56:9c:38:22, 8e:42:e1:89:23:73, ce:b5:c5:81:2b:f3, e6:02:b2:64:d1:3f","10.45.6.156,10.89.0.1","fe80::8c75:d4ff:feea:8a13,fe80::cc41:d0ff:fe99:972d,fe80::250:56ff:fe9c:3822,fe80::8c42:e1ff:fe89:2373,fe80::ccb5:c5ff:fe81:2bf3,fe80::e402:b2ff:fe64:d13f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 42 8e 55 99 ed 07-4b d7 16 8e 87 8d 2a f0","No Asset Tag","'+02:00","2026-03-10T11:11:19.000+02:00","cybreconcile","Cloud Agent","b254d0ab-cce8-41d1-a5b2-08d923fb4726","2023-06-22T17:09:38.000+02:00","2026-04-22T11:38:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,flux_libre,Recette,Flux Libre","140.0" +"324673028","330322273","PCB20650.sanef.groupe","PCB20650","BC:0F:F3:3D:D7:35","10.100.39.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQD","","'+02:00","2026-04-07T10:14:16.000+02:00","SANEF\MACHADOF","Cloud Agent","15964aaa-e0b4-4f77-bdd1-cd521e5ed075","2025-05-14T10:25:49.000+02:00","2026-04-22T11:32:38.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Workstation,Cloud Agent,Forescout","292.0" +"333160313","","PCB24037.sanef.groupe","PCB24037","6C:0B:5E:F8:E7:4D","10.255.1.208,10.105.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDS","","'+02:00","2026-04-07T09:08:34.000+02:00","SANEF\ducrocq","Cloud Agent","f6611963-5c84-455b-8bfe-f4c5e46dcdc5","2025-06-13T11:31:48.000+02:00","2026-04-22T09:45:04.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"311159768","330493472","vrosapkib1.sanef-rec.fr","","00:50:56:9c:69:75","10.45.9.73","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5a c3 59 a2 79 00-c7 92 48 57 11 fd 3a 9a","No Asset Tag","'+02:00","2026-02-16T11:13:38.000+02:00","cybsecope","Cloud Agent","eb2ff29b-686b-42f6-89ee-6ef7d53596e8","2025-03-26T17:24:27.000+02:00","2026-04-22T09:44:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,Recette","58.0" +"211148562","249951676","vpbotaapm1.sanef.groupe","","00:50:56:90:70:f7, a2:19:f5:d7:54:80, 6e:3a:41:f6:71:f9","10.41.23.25,10.89.0.1","fe80::250:56ff:fe90:70f7,fe80::a019:f5ff:fed7:5480,fe80::6c3a:41ff:fef6:71f9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1c 3a c4 ba eb 22-a7 69 07 ce d9 f8 c1 df","No Asset Tag","'+02:00","2026-04-16T11:59:37.000+02:00","cybreconcile","Cloud Agent","f4cafacf-be16-46f1-95e5-3fc235f24cb3","2024-01-22T16:37:41.000+02:00","2026-04-22T11:17:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,flux_libre,Production,log4j","337.0" +"330692278","333625849","vdrepapbi1.recette.adds","VDREPAPBI1","00:50:56:9C:AB:85","10.45.7.170","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","65535","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 64 01 97 0e 1c 2c-2e 53 b5 03 ee 5c b3 e0","NoAssetTag","'+02:00","2026-03-17T12:15:25.000+02:00","Administrateur","Cloud Agent","6682e61a-88ba-42ae-9d81-b07a220b0d6e","2025-06-04T10:20:37.000+02:00","2026-04-22T09:44:34.000+02:00","64-Bit","2","SCA,VM,GAV","PowerBI,OS-WIN-SRV DYN,Cloud Agent,Recette","61.0" +"331142306","","PCB23692.sanef.groupe","PCB23692","6C:0B:5E:EE:A3:6C","10.101.243.118","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBQ","","'+02:00","2026-04-21T13:47:09.000+02:00","SANEF\GALLIGANI","Cloud Agent","3c2e872f-efb0-44c0-bd4b-838432fe61f8","2025-06-05T14:11:32.000+02:00","2026-04-22T09:44:30.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"176398964","229973932","vpdaibana2","VPDAIBANA2","00:50:56:90:BC:A7","10.41.70.21","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 92 e2 4e 3f ec dd-c7 40 06 a4 7e 9f 74 4c","NoAssetTag","'+02:00","2026-04-16T10:14:26.000+02:00","ecoad-ext","Cloud Agent","fae75f43-e8f7-4767-8c84-b24022e7cadb","2023-06-29T11:09:42.000+02:00","2026-04-22T09:44:29.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,DAI","352.0" +"231862030","259510243","vrcybapvwa2","VRCYBAPVWA2","00:50:56:9C:CF:C5","10.45.11.132","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 6a 1d 94 66 87 ae-00 79 b4 1d b1 b7 97 74","NoAssetTag","'+02:00","2026-04-16T11:06:25.000+02:00","Administrator","Cloud Agent","da4e978e-35d7-47ee-bc41-455419bc42bd","2024-04-23T18:08:30.000+02:00","2026-04-22T09:44:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Recette,OS-WIN-SRV DYN","12.0" +"399973106","361323512","PCB22296.sanef.groupe","PCB22296","D0:AD:08:A3:7D:E7","10.152.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYT","","'+02:00","2026-04-08T15:59:32.000+02:00","SANEF\belier","Cloud Agent","416f7d39-40b5-40a2-b318-764435090480","2026-02-13T11:09:11.000+02:00","2026-04-22T09:44:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"377517554","352084301","PCB24218.sanef.groupe","PCB24218","10:B6:76:95:8B:BB","10.100.39.94","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZX","","'+02:00","2026-04-20T15:22:46.000+02:00","SANEF\KUREK","Cloud Agent","de39b5b2-4322-4b97-a864-6eeca84a7567","2025-11-18T18:07:01.000+02:00","2026-04-22T09:44:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"208784479","248752401","vibotasim1.sanef.groupe","","00:50:56:90:1f:84","10.41.23.156","fe80::250:56ff:fe90:1f84","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 96 01 67 53 72 c4-2b dc dc 02 45 eb f4 c1","No Asset Tag","'+02:00","2026-03-18T10:13:13.000+02:00","cybreconcile","Cloud Agent","fb0e72e8-aded-416c-b660-261bdf842dae","2024-01-10T13:43:44.000+02:00","2026-04-22T11:30:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,FreeFlow,flux_libre,Flux Libre","141.0" +"318405583","328028344","PCB23762.sanef.groupe","PCB23762","6C:0B:5E:ED:A2:94","10.100.39.25,10.255.3.165","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2B","","'+02:00","2026-04-20T08:13:20.000+02:00","SANEF\LEVAGUERESSE","Cloud Agent","c75fc1ef-7bff-465c-a9e3-eeef81e9b588","2025-04-22T12:18:35.000+02:00","2026-04-22T10:17:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"334971811","","MAC15905","MAC15905","a0:78:17:60:a9:0a","10.255.1.18","fe80::c77:5fc0:61c5:eb23","Mac / Client","Apple macOS Tahoe (26.3.1)","26.3","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFDX09HQ05N","","'+02:00","2026-03-29T14:41:53.000+02:00","Julien.CASTRESSAINTMARTIN","Cloud Agent","392aae5f-bb27-46c0-8966-24ab6202b939","2025-06-20T12:55:58.000+02:00","2026-04-22T09:43:52.000+02:00","arm64_M1","2","GAV","Cloud Agent","0.0" +"356915896","343535525","PCB18028.sanef.groupe","PCB18028","38:CA:84:52:09:05","10.101.243.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSC","","'+02:00","2026-03-31T15:53:53.000+02:00","hugo.neivaferreira@sanef.com","Cloud Agent","aa1370f2-a8ea-41cb-9b24-2e857ccce033","2025-09-04T15:42:00.000+02:00","2026-04-22T11:22:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"165493476","221784822","vriadapki2.recette.adds","VRIADAPKI2","00:50:56:82:1C:13","10.45.0.136","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 91 a7 0c af e2 43-14 5d 5e e9 ca 12 51 dd","NoAssetTag","'+02:00","2026-04-21T13:38:16.000+02:00","RECETTE\A05604","Cloud Agent","28cf6407-7bd9-49f5-965b-d848f7e9ca5f","2023-04-05T16:05:29.000+02:00","2026-04-22T11:32:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Gestion_PKI,Recette","230.0" +"295273598","317083541","vpdepaapp1.sanef.groupe","","00:50:56:90:ec:98","10.41.40.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 66 3d ef bb 75 ab-4e 20 b2 12 90 56 84 7a","No Asset Tag","'+02:00","2026-01-21T16:30:26.000+02:00","cybreconcile","Cloud Agent","b198f1a2-82fc-49d5-beff-3418a84e57b2","2025-01-28T12:18:30.000+02:00","2026-04-22T10:58:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,Production","140.0" +"347124460","339144373","PCB18041.sanef.groupe","PCB18041","64:D6:9A:1D:39:CC","10.205.0.154,10.207.2.246","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HT1","","'+02:00","2026-04-22T08:38:00.000+02:00","SANEF\SILVERT-ext","Cloud Agent","dbeceb51-7da4-4724-accc-280a2bf99c82","2025-07-30T10:27:51.000+02:00","2026-04-22T09:43:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"409523114","364925410","PCB23608.sanef.groupe","PCB23608","C8:6E:08:88:FD:51","10.205.0.29,10.255.3.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5P","","'+02:00","2026-04-16T10:32:55.000+02:00","SANEF\DALMOLIN","Cloud Agent","f094a69c-3f1d-42c4-af95-981568fec492","2026-03-18T14:54:08.000+02:00","2026-04-22T11:23:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"162617883","216919483","VRBURXBAN8.sanef.groupe","VRBURXBAN8","00:50:56:82:F8:33","10.30.4.8","fe80::ff5d:1c2d:9620:4b99","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 91 2d 5b 8c c0 a5-7a b8 e7 d0 df f6 d2 ec","NoAssetTag","'+02:00","2026-04-21T11:51:36.000+02:00","SANEF\BILLARD-ext","Cloud Agent","42628449-cf59-4bcf-856e-873806b51575","2023-03-14T13:59:03.000+02:00","2026-04-22T09:43:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","348.0" +"326335081","","PCB21127.sanef.groupe","PCB21127","E4:60:17:C5:07:1F","10.255.3.221","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HG","","'+02:00","2026-04-01T09:16:25.000+02:00","SANEF\BOURMOU-ext","Cloud Agent","07bd0a25-ac65-48df-af75-d7b8e397f675","2025-05-21T16:15:40.000+02:00","2026-04-22T09:43:15.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"371884493","349554080","PCB17064.sanef.groupe","PCB17064","DC:21:48:9C:69:54","10.255.1.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","8","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.06.03","5CD1431R1W","","'+02:00","2026-03-29T09:30:41.000+02:00","SANEF\DWORACZEK","Cloud Agent","747685fc-7ed2-46be-b1ea-32935c9ace18","2025-10-27T09:12:39.000+02:00","2026-04-22T11:29:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"351409873","341166564","VRBURXBAN2.sanef.groupe","VRBURXBAN2","00:50:56:82:8D:DC","10.30.4.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 be 29 0d ab 03 8f-49 a9 00 7f 10 e0 98 e1","NoAssetTag","'+02:00","2026-04-21T11:08:27.000+02:00","","Cloud Agent","322d53a3-87ff-4fff-babc-d9b58820e60a","2025-08-14T15:26:07.000+02:00","2026-04-22T09:43:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","350.0" +"387139793","356492715","vmdtrac12.recette.adds","VMDTRAC12","00:50:56:9C:BB:27","10.45.17.14","fe80::780d:e6c9:7935:6665","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 4f f9 a9 28 18 c4-8d 69 47 45 f3 8d 3d aa","NoAssetTag","'+02:00","2026-04-16T17:36:05.000+02:00","supwindev","Cloud Agent","84585cba-cbe9-441e-bb4c-48da2ffa7e26","2025-12-31T10:55:05.000+02:00","2026-04-22T09:43:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"383183107","354341140","PCB25895.sanef.groupe","PCB25895","C4:0F:08:F2:7D:A3","10.255.4.171,10.255.4.175","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534221R","","'+02:00","2026-04-14T08:43:30.000+02:00","SANEF\WALTER","Cloud Agent","2c1e9a11-83f4-4f93-ab01-e036445e00e9","2025-12-11T10:03:08.000+02:00","2026-04-22T10:23:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","330.0" +"231863508","259513855","vrcybacpm1.sanef-rec.fr","VRCYBACPM1","00:50:56:9C:6B:50","10.45.11.67","fe80::c481:5526:59fd:e494","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c d9 3a 8d 3b 63 2a-b7 58 0d 85 0f d9 5e 31","NoAssetTag","'+02:00","2026-04-15T16:08:02.000+02:00","Administrator","Cloud Agent","2da285c5-1968-4081-a7ec-4a9bc998cf16","2024-04-23T18:43:25.000+02:00","2026-04-22T09:43:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN","12.0" +"379119003","352759559","PSX18695.sanef-int.adds","PSX18695","30:13:8B:6C:5D:73","10.100.40.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473W6","","'+02:00","2026-04-19T13:23:55.000+02:00","UserSextan","Cloud Agent","f269e86c-9772-4306-a70b-4736cd12e533","2025-11-25T12:26:44.000+02:00","2026-04-22T09:42:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"395117158","359312619","PCB18629.sanef.groupe","PCB18629","38:CA:84:DB:E6:F1","10.4.31.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WDT","","'+02:00","2026-04-17T20:48:03.000+02:00","SANEF\prevot","Cloud Agent","0e7b1db6-ec2c-4a3c-900f-defa73f3077f","2026-01-26T16:37:45.000+02:00","2026-04-22T09:42:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","336.0" +"234568691","262079565","vrechatre2.sanef-rec.fr","","00:50:56:9c:ff:de","10.45.11.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 32 85 b3 6a 36 a8-f5 e9 8e 02 f7 2b cb 10","No Asset Tag","'+02:00","2026-03-25T13:17:02.000+02:00","cybadmsys","Cloud Agent","6bde38f9-f7ad-4c00-85a8-36beeaab7df9","2024-05-06T12:36:30.000+02:00","2026-04-22T09:42:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,TALEND","217.0" +"323988926","","PCB23689.sanef.groupe","PCB23689","C8:6E:08:8A:51:06","10.205.0.193,192.168.1.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8N","","'+02:00","2026-04-21T11:24:25.000+02:00","SANEF\quantin","Cloud Agent","7b19065c-ca3e-43bc-944b-956bf5ab18b8","2025-05-12T10:09:49.000+02:00","2026-04-22T09:42:28.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"349167459","339865423","PCB22723.sanef.groupe","PCB22723","D0:AD:08:AA:4F:D8","10.220.31.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DK","","'+02:00","2026-04-21T08:46:40.000+02:00","salima.berkani@sapn.fr","Cloud Agent","2cf862a6-7bc3-4332-a4b4-16b7c772dc1f","2025-08-05T10:59:29.000+02:00","2026-04-22T10:54:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"352994824","341706644","PCM22309.sanef.groupe","PCM22309","D0:AD:08:A3:7D:E5","10.252.14.15","fe80::f47d:97fb:630:ef4d","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYZ","","'+02:00","2026-02-25T09:47:02.000+02:00","SANEF\GOUT-ext","Cloud Agent","0dc9fa60-d0c2-4ecd-8530-121d8774046b","2025-08-20T10:14:19.000+02:00","2026-04-22T11:30:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"332295040","333860643","vpameakfq1.sanef.groupe","","00:50:56:90:62:92","10.100.16.21","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","5681","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e1 e9 91 f4 4a 8f-b8 31 a2 d8 e7 01 2a 63","No Asset Tag","'+02:00","2025-10-29T11:46:08.000+02:00","cybreconcile","Cloud Agent","0ba58b85-0cc2-4263-abfb-18692205ac40","2025-06-10T14:22:25.000+02:00","2026-04-22T11:37:50.000+02:00","x86_64","4","SCA,VM,GAV","Linux Server,Cloud Agent,Sextan,Production,OS-LIN-SRV DYN","278.0" +"307154463","323299961","PCB21171.sanef.groupe","PCB21171","D0:AD:08:E4:C1:60","192.168.1.230,10.205.0.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HWB","","'+02:00","2026-04-15T16:00:46.000+02:00","SANEF\szpigiel","Cloud Agent","f6d8cb26-b18b-4162-a789-c34aa817125a","2025-03-11T17:00:09.000+02:00","2026-04-22T09:42:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"190479231","239156296","vpecmapss1.sanef-int.adds","VPECMAPSS1","00:50:56:8D:B3:FE","10.44.2.36","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-56 4d fa a7 67 09 68 75-81 3a 41 00 40 bd 48 d2","NoAssetTag","'+02:00","2026-02-23T09:55:48.000+02:00","SANEF-INT\b03987","Cloud Agent","0faebcb6-12df-4725-9f5a-198c856fbae4","2023-09-29T08:56:51.000+02:00","2026-04-22T09:41:54.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,BDD-SQL DYN,SCCM,Cloud Agent,Windows Server,DSI","504.0" +"366118896","347201619","PCB24143.sanef.groupe","PCB24143","80:C0:1E:15:A6:44","10.101.243.130,192.168.1.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook X G1i Notebook","8","2200","Intel(R) Core(TM) Ultra 7 258V","32241","HP X90 Ver. 01.01.07","5CG5112754","","'+02:00","2026-04-20T09:31:54.000+02:00","SANEF\debauge","Cloud Agent","f520c0cd-0f98-4f73-8a44-af98994af430","2025-10-07T13:30:37.000+02:00","2026-04-22T09:41:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"291945704","314534777","vpdaibctc2","VPDAIBCTC2","00:50:56:90:40:53","10.41.70.11","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 76 d9 25 24 77 ca-89 0c 0a 9c 65 e6 29 18","NoAssetTag","'+02:00","2026-04-16T16:15:08.000+02:00","Administrateur","Cloud Agent","32ecbe33-f510-47bb-a602-4de37110e091","2025-01-13T11:26:35.000+02:00","2026-04-22T09:41:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,BDD-POS DYN,OS-WIN-SRV DYN","235.0" +"340753145","336818891","SVP21708.sanef-int.adds","SVP21708","D0:AD:08:A2:AE:5B","10.82.0.248","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","16016","HP V74 Ver. 01.05.05","5CD34764FS","","'+02:00","2026-03-17T12:01:00.000+02:00","Superviseur","Cloud Agent","28858ecd-1889-4d16-a838-1c4ffbe1ede4","2025-07-10T13:47:33.000+02:00","2026-04-22T09:41:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"112571236","180424755","vmrgmao7.sanef.groupe","VMRGMAO7","00:50:56:82:61:86","10.43.255.15","","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21013) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 65 fe 25 53 63 29-7b 3b 61 3e 88 a3 b4 89","NoAssetTag","'+02:00","2026-03-03T15:14:44.000+02:00","SANEF\VANWYNSBERGHE","Cloud Agent","26714801-570a-4058-937a-1e743c199724","2022-02-07T11:19:48.000+02:00","2026-04-22T09:41:35.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Obsolete,Windows Server,Cloud Agent,DSI,OS-WIN-SRV DYN,VRF_INCONNUE,COSWIN","517.0" +"173084420","227656196","vdbocsman1.sanef-rec.fr","","00:50:56:9c:eb:ee","10.45.6.38","fe80::250:56ff:fe9c:ebee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c ce 2d 5c dd 36 8f-71 60 71 45 22 04 76 90","No Asset Tag","'+02:00","2026-03-10T10:22:32.000+02:00","cybadmbdd","Cloud Agent","813a675e-eaf7-44bd-a290-c4894857ae76","2023-06-05T15:56:38.000+02:00","2026-04-22T11:24:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,FreeFlow","334.0" +"395298641","359403738","PCB20618.sanef.groupe","PCB20618","BC:0F:F3:3D:28:5D","10.101.243.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DS9","","'+02:00","2026-03-25T10:09:07.000+02:00","SANEF\CORMERAIS","Cloud Agent","e212ff45-2c4b-4dcf-9616-79389a18e745","2026-01-27T12:26:59.000+02:00","2026-04-22T11:01:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"393273466","358566980","PCB21198.sanef.groupe","PCB21198","D0:AD:08:AA:50:A9","10.220.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M9","","'+02:00","2026-04-08T15:22:41.000+02:00","Marie.DONAT@sapn.fr","Cloud Agent","a44c9b71-83f5-4d7a-a5b4-1c2c1132a43e","2026-01-19T09:51:14.000+02:00","2026-04-22T11:46:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"175948571","229617188","vvbotbtsd1.sanef-rec.fr","","02:41:67:e4:3b:ed, 2e:fa:be:db:1c:f8, 52:d8:68:2d:9a:48, 8e:c8:a4:02:5d:40, ee:9b:02:11:12:7d, 00:50:56:9c:1f:30, b2:2f:5a:a5:4f:d8, f6:87:00:c4:0a:9f, b6:17:1d:64:31:df, 36:56:d2:92:f6:cf, ba:0d:fe:6c:39:64","10.45.6.139,10.89.0.1","fe80::41:67ff:fee4:3bed,fe80::2cfa:beff:fedb:1cf8,fe80::50d8:68ff:fe2d:9a48,fe80::8cc8:a4ff:fe02:5d40,fe80::ec9b:2ff:fe11:127d,fe80::250:56ff:fe9c:1f30,fe80::b02f:5aff:fea5:4fd8,fe80::f487:ff:fec4:a9f,fe80::b417:1dff:fe64:31df,fe80::3456:d2ff:fe92:f6cf,fe80::b80d:feff:fe6c:3964","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c b8 91 d0 d5 c4 33-17 bd 50 00 6f 9a 7d ad","No Asset Tag","'+02:00","2026-03-12T16:23:25.000+02:00","cybreconcile","Cloud Agent","5cf7bbf8-42a1-4971-a80f-3c5db5c78d12","2023-06-26T16:30:04.000+02:00","2026-04-22T11:27:53.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,flux_libre,Recette","142.0" +"322101853","329345002","PCB23651.sanef.groupe","PCB23651","C8:6E:08:8A:3C:07","10.200.31.71,10.255.4.141","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6M","","'+02:00","2026-03-30T17:51:59.000+02:00","SANEF\audoynaud","Cloud Agent","891e6304-73ec-4f28-be7f-e7ac25431454","2025-05-05T15:59:23.000+02:00","2026-04-22T11:38:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"407131864","363955154","vrpctatsf1.recette.adds","VRPCTATSF1","00:50:56:9C:04:39","10.45.13.196","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","131071","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 8b ca 9d d9 ef fa-19 87 0e 67 42 85 1b 64","NoAssetTag","'+02:00","2026-03-09T16:00:10.000+02:00","Administrator","Cloud Agent","e754a9b1-08b0-46d0-a304-3ce6cf475b1f","2026-03-09T16:04:00.000+02:00","2026-04-22T11:28:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","253.0" +"335470917","334615702","PCB24177.sanef.groupe","PCB24177","24:FB:E3:F3:0A:4D","10.203.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XF","","'+02:00","2026-03-30T12:04:24.000+02:00","SANEF\DUBOISF","Cloud Agent","7dd3c763-8695-4c08-83ab-f8b1c7bd112d","2025-06-23T11:12:01.000+02:00","2026-04-22T11:00:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"191624499","239854413","VRPATBL2R1.recette.adds","VRPATBL2R1","00:50:56:9C:4C:5A","10.45.10.131","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","32767","Phoenix Technologies LTD 6.00","VMware-42 1c 26 1e 30 7e 44 e6-96 15 d3 23 17 d4 d7 59","NoAssetTag","'+02:00","2026-04-08T16:15:13.000+02:00","recette.adds\SBP01862@recette","Cloud Agent","89c57ff6-17ab-4156-89a5-6f9e5a8ff5af","2023-10-05T17:15:37.000+02:00","2026-04-22T11:35:15.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DFIN,L2R,OS-WIN-SRV DYN,Recette","367.0" +"340414768","","PCB17794.sanef.groupe","PCB17794","28:C5:D2:9E:44:E5","10.101.243.221,10.255.1.206","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y43","","'+02:00","2026-04-15T14:11:34.000+02:00","SANEF\GALLAIS","Cloud Agent","885919f8-573b-4b96-b0a7-e9c7172642c2","2025-07-09T11:44:56.000+02:00","2026-04-22T09:41:06.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"322005791","329314332","PCB23642.sanef.groupe","PCB23642","C8:6E:08:8A:58:0E","10.205.0.77,192.168.1.30","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7Q","","'+02:00","2026-04-20T08:41:33.000+02:00","SANEF\amaranthe","Cloud Agent","42a2e3e8-d909-415c-92b5-35f41d61c2dc","2025-05-05T10:16:18.000+02:00","2026-04-22T11:25:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"323205153","329824071","vpgawamft2.sanef.groupe","","00:50:56:90:3d:96","10.42.16.17","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e5 4a 4a aa 88 3a-5d bb 57 53 ab 3e 7d b7","No Asset Tag","'+02:00","2026-02-12T15:49:59.000+02:00","cybreconcile","Cloud Agent","afc19412-f025-444a-9f53-4263b507df01","2025-05-09T15:24:02.000+02:00","2026-04-22T09:40:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","142.0" +"377507123","352079657","PCB24046.sanef.groupe","PCB24046","6C:0B:5E:F8:D8:DA","10.149.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDK","","'+02:00","2026-03-29T17:08:59.000+02:00","SANEF\BLANC","Cloud Agent","6cf2df55-88c9-4bdc-8138-1a873258329a","2025-11-18T17:10:45.000+02:00","2026-04-22T09:40:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"361981752","345525135","PCB17944.sanef.groupe","PCB17944","84:69:93:E1:5A:DF","10.200.30.10,10.200.31.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG21724BX","","'+02:00","2026-04-20T17:42:29.000+02:00","SANEF\meillon","Cloud Agent","2a672673-0297-4a97-8649-e26c9143e3dd","2025-09-22T13:55:32.000+02:00","2026-04-22T10:45:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"346242039","339004849","PCB25861.sanef.groupe","PCB25861","28:95:29:1B:40:59","10.101.243.48,10.255.3.187","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVD","","'+02:00","2026-04-14T08:40:05.000+02:00","SANEF\BOYERCHAMMARD","Cloud Agent","733cac01-96c8-4b77-a9e1-de2459577df7","2025-07-29T12:30:59.000+02:00","2026-04-22T09:40:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"374692768","350733652","PCB22506.sanef.groupe","PCB22506","D0:AD:08:AA:4F:C5","10.208.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764CY","","'+02:00","2026-04-01T09:08:28.000+02:00","SANEF\treton","Cloud Agent","bc038960-2d2d-437a-bedc-28597f254102","2025-11-06T15:07:55.000+02:00","2026-04-22T09:40:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"339094295","336780150","vpecmardp1.sanef-int.adds","VPECMARDP1","00:50:56:94:95:1D","10.44.6.227","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 14 6b 48 db 0a c9 8b-72 49 c1 e1 ae 72 e8 db","NoAssetTag","'+02:00","2026-02-23T09:51:29.000+02:00","Administrateur","Cloud Agent","cba11268-64a6-426f-ac1f-9a90e92a916a","2025-07-04T10:45:45.000+02:00","2026-04-22T09:40:02.000+02:00","64-Bit","2","SCA,VM,GAV","Cloud Agent,OS-WIN-SRV DYN","345.0" +"376647924","351625620","PCV21553.sanef-int.adds","PCV21553","D0:AD:08:A3:7B:53","10.12.7.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YRN","","'+02:00","2026-03-20T01:11:02.000+02:00","Operateur","Cloud Agent","77e1c5c4-81d2-4b64-ac56-b98c86560d31","2025-11-14T14:54:08.000+02:00","2026-04-22T09:39:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"366884514","347537076","vrpataels1.sanef.groupe","","00:50:56:82:96:c5","10.43.255.22","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 fa 90 b2 b5 0c 4f-dd 7e e0 1a 8c 11 f2 21","No Asset Tag","'+02:00","2026-03-31T11:25:48.000+02:00","cybastsys","Cloud Agent","f13ef54f-555f-491a-a2f2-4ba0372319f4","2025-10-09T12:49:47.000+02:00","2026-04-22T11:07:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN","255.0" +"352438899","341572028","PCB25849.sanef.groupe","PCB25849","F8:ED:FC:AA:95:9D","10.101.243.172","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSW","","'+02:00","2026-04-20T09:29:34.000+02:00","SANEF\MARS","Cloud Agent","8430323a-0821-42e8-a8d2-e0a520d12634","2025-08-19T09:47:40.000+02:00","2026-04-22T10:59:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","59.0" +"367872200","347959464","PCB18731.sanef.groupe","PCB18731","58:1C:F8:E9:BE:6B","10.205.0.36,192.168.1.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CT8","","'+02:00","2026-04-02T09:59:41.000+02:00","SANEF\botte","Cloud Agent","0f57b8c6-cd8e-4826-952b-d82d8e8f2555","2025-10-13T10:02:43.000+02:00","2026-04-22T11:05:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"395543997","359520554","vrsigaptl1.sanef-rec.fr","","00:50:56:9c:fd:ee","10.45.2.33","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 3d 88 ae a6 e0 f3-92 9e cb 94 f4 dc fd 09","No Asset Tag","'+02:00","2026-02-25T13:23:34.000+02:00","cybsupapp","Cloud Agent","aae97ad2-7cfe-461a-a34d-3d5053bc39e6","2026-01-28T11:49:58.000+02:00","2026-04-22T10:04:09.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,Recette,SIG,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-APACHE-TOMCAT DYN","217.0" +"358634791","344169679","VMMDAIC1.sanef-int.adds","VMMDAIC1","00:50:56:90:7C:85","10.41.70.250","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 9b ad 45 e3 94 66-d2 97 22 27 20 f8 fe e8","NoAssetTag","'+02:00","2026-04-16T16:42:14.000+02:00","DAIUSER","Cloud Agent","1729c81a-3499-4fd4-80e2-00965b8b78ee","2025-09-10T15:37:50.000+02:00","2026-04-22T09:39:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"213848992","251124342","srtrabgas1.sanef.groupe","","50:65:f3:6e:90:04","10.45.1.66","fe80::5265:f3ff:fe6e:9004","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL160 G9 Server","8","3000","Intel(R) Xeon(R) CPU E5-2623 v3 @ 3.00GHz","47830","HP U20 08/29/2024","CZ264901HZ","","'+02:00","2026-01-13T16:00:27.000+02:00","cybsecope","Cloud Agent","197d25c3-7ab3-4332-b0d9-0574a5bb5581","2024-02-05T19:20:11.000+02:00","2026-04-22T11:08:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Gaspar,DEX","507.0" +"311171805","330493461","vrgawamft1.sanef-rec.fr","","00:50:56:9c:95:57","10.45.14.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d1 e1 af 6c 3f da-69 f6 24 76 4c 7f 27 47","No Asset Tag","'+02:00","2026-02-11T11:47:00.000+02:00","root","Cloud Agent","52e66d02-c804-4d11-b693-4f48cda50a88","2025-03-26T18:36:28.000+02:00","2026-04-22T11:27:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Plateforme d'échange,Recette,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","59.0" +"165485951","221778780","vriadapki3.recette.adds","VRIADAPKI3","00:50:56:82:2C:76","10.45.0.137","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 d1 12 fd 86 93 63-38 f2 39 e0 6e 47 a8 7b","NoAssetTag","'+02:00","2026-04-20T15:59:18.000+02:00","Administrateur","Cloud Agent","0f554755-f9ed-4346-b321-aba646da120f","2023-04-05T15:31:18.000+02:00","2026-04-22T11:31:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Gestion_PKI,DSI,Recette,OS-WIN-SRV DYN","230.0" +"346728573","339070705","PCB25859.sanef.groupe","PCB25859","28:95:29:1B:32:71","10.205.0.73,192.168.1.236","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV5","","'+02:00","2026-04-15T08:48:39.000+02:00","SANEF\sissoko","Cloud Agent","a329ac64-0499-4d44-a136-0e0f1d2f161a","2025-07-29T17:07:59.000+02:00","2026-04-22T09:39:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"342188071","337429972","PCB21082.sanef.groupe","PCB21082","E0:C2:64:59:D7:9C","10.205.0.108,192.168.0.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD336NWFD","","'+02:00","2026-04-17T13:37:03.000+02:00","fred.polomack-ext@sanef.com","Cloud Agent","99871ba0-2d81-4ab7-93e0-11baba5687c6","2025-07-16T10:14:41.000+02:00","2026-04-22T11:25:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"150015500","205336038","PCB17214.sanef.groupe","PCB17214","50:81:40:B8:5F:46","10.4.31.68","fe80::83bf:c53c:a206:f14d","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.19.00","5CG13365JN","","'+02:00","2026-04-02T09:31:36.000+02:00","SANEF\leclercqh","Cloud Agent","a5f72c82-347f-4aef-9c89-e804135a16fa","2022-11-30T11:30:14.000+02:00","2026-04-22T10:58:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,VRF_INCONNUE","350.0" +"331437541","","PCB21160.sanef.groupe","PCB21160","F0:20:FF:9A:ED:4A","10.255.3.216","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HWG","","'+02:00","2026-04-22T09:21:59.000+02:00","SANEF\VIVIER","Cloud Agent","166ce361-e0ec-445f-a0aa-3f5e15d8d89c","2025-06-06T14:50:16.000+02:00","2026-04-22T09:39:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"385548399","355733594","PCB24208.sanef.groupe","PCB24208","10:B6:76:97:D4:B8","10.4.31.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKH","","'+02:00","2026-04-14T09:49:16.000+02:00","SANEF\kubiak-ext","Cloud Agent","6dec3e21-d59c-4b44-a5fd-2e88bbeaa07f","2025-12-22T12:54:51.000+02:00","2026-04-22T11:09:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"240161242","273850183","SVP20958.sanef-int.adds","SVP20958","BC:0F:F3:88:FD:3F","10.192.12.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LM4","","'+02:00","2026-04-21T08:26:36.000+02:00","Superviseur","Cloud Agent","c8cfc561-3a08-4ac1-b74b-1adedc8c59c3","2024-05-29T13:43:43.000+02:00","2026-04-22T11:23:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"383452162","354460837","vibotakpi1.sanef.groupe","","00:50:56:90:9e:23","10.41.23.146","fe80::250:56ff:fe90:9e23","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 f3 7b a7 73 58 8d-8e 29 5e aa 27 9c 75 db","No Asset Tag","'+02:00","2026-03-19T12:33:01.000+02:00","cybreconcile","Cloud Agent","93bf39d1-da0d-4937-ad7a-b1dd2d75a698","2025-12-12T11:34:52.000+02:00","2026-04-22T11:27:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Linux Server,OS-LIN-SRV DYN,Cloud Agent","138.0" +"322401949","329478770","PCB23599.sanef.groupe","PCB23599","C8:6E:08:8A:45:49","10.205.0.136,192.168.1.121","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8B","","'+02:00","2026-04-08T13:29:11.000+02:00","SANEF\PIOT","Cloud Agent","1dabf4b8-a27b-414f-9108-664ec5f5526b","2025-05-06T16:42:37.000+02:00","2026-04-22T11:34:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"129308577","191928808","vpaiiafsso1.sanef.groupe","VPAIIAFSSO1","00:50:56:82:2E:55","10.30.11.2","fe80::d8e9:555a:c54:bb6c","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","Phoenix Technologies LTD 6.00","VMware-56 4d 51 20 68 59 be 79-3b cd f7 66 2d d8 b0 88","NoAssetTag","'+02:00","2026-02-26T13:06:02.000+02:00","VPAIIAFSSO1\CYBADMSYS","Cloud Agent","db54025f-0a89-43db-8c14-bffd9949d045","2022-06-27T10:52:28.000+02:00","2026-04-22T09:38:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,Production,Sécurité IT,Sans,VRF_INCONNUE,FSSO,Obsolete","348.0" +"130588548","192836202","vmamrstg1","","00:50:56:82:4B:5E, 00:50:56:82:69:20, 00:50:56:82:0C:DF","10.33.16.10,10.32.16.10,10.32.16.18,10.32.16.17,10.30.16.10,10.30.16.17,10.30.16.18","fe80::250:56ff:fe82:4b5e,fe80::250:56ff:fe82:6920,fe80::250:56ff:fe82:cdf","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a5 3e 1a cc c0 8a-9b 8a f5 2d 87 49 4e 3d","No Asset Tag","'+02:00","2025-10-09T11:38:43.000+02:00","cybexpapp","Cloud Agent","7bb33190-4842-4833-89d2-ef36edd44bd7","2022-07-07T12:03:44.000+02:00","2026-04-22T11:15:13.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,SSTG,OS-LIN-SRV DYN,DEX,Obsolete,Sans,Trafic,Recette,Cloud Agent,Linux Server,VRF_INCONNUE","699.0" +"322003769","329311108","PCB23696.sanef.groupe","PCB23696","6C:0B:5E:EE:EC:3B","10.100.39.165","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6L","","'+02:00","2026-03-29T09:30:10.000+02:00","sylvain.Georges@sanef.com","Cloud Agent","0c2d226c-207e-4975-83ff-474632146fb7","2025-05-05T09:46:30.000+02:00","2026-04-22T11:01:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"397495752","360376398","vmmvsccad4.sanef-int.adds","VMMVSCCAD4","00:50:56:90:8A:D9","10.41.7.234","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 35 ca 74 e2 93 97-42 00 8e 83 e7 f0 e8 7c","NoAssetTag","'+02:00","2026-02-05T12:58:31.000+02:00","Operateur","Cloud Agent","5c13da18-5b32-4c03-94c8-f594c07b7cf1","2026-02-04T18:57:07.000+02:00","2026-04-22T09:38:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"329426618","","MTR-4J775R3","MTR-4J775R3","90:8D:6E:8E:1D:3C","10.101.246.203","","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","4J775R3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","a2667693-7c3e-45a3-87e6-3a800a48ee79","2025-06-02T20:57:40.000+02:00","2026-04-22T09:38:23.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"329737832","","MTR-JH775R3","MTR-JH775R3","90:8D:6E:8E:1C:73","10.101.246.202","fe80::fac1:3201:a69e:1e26","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","JH775R3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","30a134f3-f687-42ce-8401-d91dfc5c241b","2025-06-03T10:37:35.000+02:00","2026-04-22T09:38:14.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"223163472","255070062","ls-coutevroult","LS-COUTEVROULT","00:50:56:90:EF:00","10.1.1.12","fe80::bf74:e7ad:817a:6cfc","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 96 c7 8b c7 02 f3-20 ce e6 25 0f d9 43 89","NoAssetTag","'+02:00","2026-03-05T15:46:11.000+02:00","svpadmin","Cloud Agent","feeffa5f-a95c-4aba-8d0a-878fb8be2178","2024-03-18T15:56:16.000+02:00","2026-04-22T09:38:10.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Péage,OS-WIN-SRV DYN,DEX,SVP,High,Cloud Agent,Windows Server","682.0" +"399337159","361082798","PCB24224.sanef.groupe","PCB24224","70:15:FB:7E:44:8D","10.205.0.16,192.168.1.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZP","","'+02:00","2026-04-20T08:59:53.000+02:00","SANEF\kaczor-ext","Cloud Agent","f03b105a-f967-4c64-bd7d-24d4a2478370","2026-02-11T12:12:25.000+02:00","2026-04-22T09:37:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"379846586","353006855","spbckamag2.sanef.groupe","","04:bd:97:23:06:20, 04:bd:97:23:06:21","10.42.16.75,10.43.1.36","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191547","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP26080HGP","Unknown","'+02:00","2025-11-27T20:26:54.000+02:00","cybsecope","Cloud Agent","86f212c8-4bd0-48b2-93ef-be55f3c829bd","2025-11-27T18:17:58.000+02:00","2026-04-22T11:19:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0" +"176400087","229974599","vpdaibana5","VPDAIBANA5","00:50:56:90:5D:A7","10.41.70.24","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 b7 dd 15 7b 2a 5a-e8 d6 36 e4 f9 46 5c 1b","NoAssetTag","'+02:00","2026-04-16T15:50:25.000+02:00","ecoad-ext","Cloud Agent","9c11cf6e-df39-48ba-b625-97e08010356c","2023-06-29T11:19:15.000+02:00","2026-04-22T11:25:53.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DAI,BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX","353.0" +"324683544","330336087","PCB17795.sanef.groupe","PCB17795","28:C5:D2:9F:C3:DD","10.255.3.188,10.255.3.210","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4W","","'+02:00","2026-04-14T10:04:43.000+02:00","SANEF\GHENIM","Cloud Agent","2ac529af-2e05-4552-9d10-cb5e61dfd335","2025-05-14T12:10:04.000+02:00","2026-04-22T10:48:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"379351234","352792433","PCV22438.sanef-int.adds","PCV22438","D0:AD:08:A7:27:EA","10.210.67.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YPL","","'+02:00","2026-03-03T09:57:56.000+02:00","Operateur","Cloud Agent","ad80cdd4-9663-47a3-b973-3be975b1f6d1","2025-11-25T17:23:39.000+02:00","2026-04-22T11:22:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"143622556","201025275","vpemvantp1.sanef.groupe","","00:50:56:82:2a:4c","192.168.100.132","fe80::250:56ff:fe82:2a4c","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 89 b6 e3 0b e8 e6-23 9d 7d 15 4e 3d da 8a","No Asset Tag","'+02:00","2024-09-04T15:19:33.000+02:00","lamhajeb-ext","Cloud Agent","ca5b415c-1d52-4ab0-b23f-9feaa2cb77af","2022-10-11T17:31:05.000+02:00","2026-04-22T11:29:49.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,Obsolete,VRF_INCONNUE,PCI Bunker EMV - VLAN Supervision/Admin,Cloud Agent,Linux Server,BDD-POS DYN","107.0" +"222335936","254699859","OSA20946.sanef-int.adds","OSA20946","BC:0F:F3:87:70:BB","10.12.20.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.10.04","8CC3290LN1","","'+02:00","2026-04-10T21:02:30.000+02:00","Superviseur","Cloud Agent","1feabc0b-7789-4eae-91e1-8d2dea7000f7","2024-03-14T17:25:12.000+02:00","2026-04-22T09:37:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"378318758","352427009","PSX18694.sanef-int.adds","PSX18694","30:13:8B:6C:76:C4","10.100.40.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WM","","'+02:00","2025-11-24T15:53:05.000+02:00","UserSextan","Cloud Agent","306df3b8-d1a4-4775-ad91-ace8ae0afc10","2025-11-21T14:40:43.000+02:00","2026-04-22T09:37:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"186883762","237060620","MTR-HQ3J8Y3","MTR-HQ3J8Y3","6C:3C:8C:3D:5E:36","10.105.32.200","fe80::75be:6bd2:8e8:563d","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","HQ3J8Y3","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","96282038-5b24-4ccc-a8f3-8ad956a77773","2023-09-08T14:20:14.000+02:00","2026-04-22T11:15:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"128622406","191429388","ls-st-omer","LS-ST-OMER","00:50:56:90:53:F8","10.41.2.37","fe80::2e09:f2c2:455a:9f48","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 f9 bb 5c 1c 53 af-5f 1a 72 ad 4d 71 c5 5f","NoAssetTag","'+02:00","2026-03-04T10:00:46.000+02:00","svpadmin","Cloud Agent","0f2de34f-dcfa-4d4a-85a1-ac1e78682616","2022-06-21T16:54:14.000+02:00","2026-04-22T09:36:59.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,VRF_PEAGE_DC,Windows Server,High,Péage,Production,SVP,OS-WIN-SRV DYN,DEX","681.0" +"321527933","329071330","PCB23744.sanef.groupe","PCB23744","6C:0B:5E:EE:A3:16","10.152.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H34","","'+02:00","2026-04-16T08:12:22.000+02:00","SANEF\tournand","Cloud Agent","15b5bdd7-3f1a-4628-8598-fd9581906b58","2025-05-02T09:57:12.000+02:00","2026-04-22T09:36:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"150933985","205970251","VPAIIAVCL2.sanef.groupe","VPAIIAVCL2","00:50:56:82:E5:66","10.41.11.21","fe80::40d9:5a2e:a5a5:cc32","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 96 78 d6 5a 61 f4-23 fc 92 da ac d2 12 00","NoAssetTag","'+02:00","2026-03-11T13:01:01.000+02:00","SANEF\durmarque","Cloud Agent","59f6b042-4f2e-44d2-b4b4-21d14d0c0367","2022-12-07T17:23:22.000+02:00","2026-04-22T11:29:40.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,VRF_INCONNUE,Workstation,NVR,Obsolete","523.0" +"329750376","","MTR-JF1CXM3","MTR-JF1CXM3","A4:BB:6D:95:91:AD","10.101.246.206","fe80::ca6:e03d:589d:a96b","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","JF1CXM3","","'+02:00","2026-04-22T02:32:55.000+02:00","Skype","Cloud Agent","1db55fe1-0fd4-405d-9113-ac6c9c34865f","2025-06-03T12:38:30.000+02:00","2026-04-22T09:36:41.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"327537152","","PCB20747.sanef.groupe","PCB20747","58:1C:F8:EA:C6:17","192.168.1.109,169.254.47.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CT1","","'+02:00","2026-04-16T16:51:08.000+02:00","SANEF\daunou","Cloud Agent","ee958b76-1853-4f98-b90b-a5905593210e","2025-05-27T12:05:25.000+02:00","2026-04-22T09:36:32.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"210022570","249438985","siboomcla2.sanef.groupe","","5c:ba:2c:1c:94:60","10.41.22.205","fe80::5811:2d9b:7a24:7d54","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95788","HPE U30 07/20/2023","CZ22410FK7","","'+02:00","2026-03-16T13:13:13.000+02:00","cybsupemo","Cloud Agent","c21d0a6d-555b-4861-9119-c3a0f4dcc6d2","2024-01-17T12:55:00.000+02:00","2026-04-22T11:33:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,flux_libre","337.0" +"266513879","297933107","vpecmbsql3.sanef.groupe","VPECMBSQL3","00:50:56:90:0F:58","10.44.5.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 17 fe b5 a6 84 48-2a 09 c7 25 4a 2c b7 bb","NoAssetTag","'+02:00","2026-01-27T10:44:51.000+02:00","Administrateur","Cloud Agent","f340a3f1-42c3-42ac-85b3-a814ca5fd7b2","2024-09-19T16:55:10.000+02:00","2026-04-22T09:36:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent","344.0" +"398248431","360587807","vpdsibetc1.sanef.groupe","","00:50:56:9c:f8:44","10.44.5.131","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c e9 f7 4b 0b 4e a2-06 28 85 8d e6 77 db d2","No Asset Tag","'+02:00","2026-02-11T18:42:39.000+02:00","cybadmbdd","Cloud Agent","7f04098c-1b4e-488c-9826-bbe36367c07b","2026-02-06T12:48:58.000+02:00","2026-04-22T09:36:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,Production","141.0" +"238271912","269259607","vipeaabst1.sanef.groupe","","00:50:56:90:e8:7d","10.41.29.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 5e 6c 94 44 53 a2-1c 58 69 50 e8 f3 ad 3c","No Asset Tag","'+02:00","2026-03-19T10:22:55.000+02:00","cybintsys","Cloud Agent","d87bd183-869a-42bf-82c0-228dd283014d","2024-05-21T14:30:01.000+02:00","2026-04-22T11:37:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,DSI,Flux Libre","141.0" +"376415144","351514141","vipeaarcv1.sanef.groupe","","00:50:56:90:be:56","10.41.29.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 2d 62 a0 05 c7 c3-63 b2 3e 5c 98 bd 4d d0","No Asset Tag","'+02:00","2026-03-19T15:05:55.000+02:00","cybreconcile","Cloud Agent","6824db21-9e8a-41ee-98b6-da91fca300c5","2025-11-13T16:39:51.000+02:00","2026-04-22T11:05:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,MID-NGINX DYN,flux_libre,log4j,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Flux Libre,Production,FreeFlow","334.0" +"139156941","198270159","vmamphtp2.sanef.groupe","","00:50:56:82:75:3B, 00:50:56:82:4E:8C, 00:50:56:82:06:1D","10.41.40.36,10.41.40.39,10.41.40.40,10.41.40.41,10.43.4.36,10.43.40.36,10.43.40.39","fe80::250:56ff:fe82:753b,fe80::250:56ff:fe82:4e8c,fe80::250:56ff:fe82:61d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 87 d0 59 1b 5f 6f-07 1c c6 e7 14 00 7e 0e","No Asset Tag","'+02:00","2025-10-08T15:50:31.000+02:00","cybreconcile","Cloud Agent","950d952c-913d-4f60-89ad-24963c92f040","2022-09-07T14:26:01.000+02:00","2026-04-22T11:19:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,VRF_TRAFIC_DC,Obsolete,Production,Trafic,Amelie","349.0" +"238297816","269274162","lpemvbpemv2.sanef.groupe","","00:17:a4:77:1c:68, 00:17:a4:77:1c:98, 00:17:a4:77:1c:64","169.254.8.81,172.16.0.105,192.168.103.105,192.168.101.105,192.168.101.145","fe80::217:a4ff:fe77:1c68,fe80::217:a4ff:fe77:1c98,fe80::217:a4ff:fe77:1c64","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","PWARU%%LM333IZ","","'+02:00","2026-01-25T23:27:02.000+02:00","root","Cloud Agent","d4a07993-1fa2-45b1-9fa5-a160ba803fc7","2024-05-21T16:48:50.000+02:00","2026-04-22T11:35:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,Production,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17,Cloud Agent,Linux Server","682.0" +"294119824","316124809","vpvsaarec2.sanef.groupe","","00:50:56:9c:65:9b","10.42.16.84","fe80::250:56ff:fe9c:659b","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c fe dd 01 df 68 3f-9f 0d 28 bc 7a 70 7d 1f","No Asset Tag","'+02:00","2026-02-05T13:13:32.000+02:00","tbaad","Cloud Agent","51b00c2e-edd7-4d16-a176-83bdeab2a2d8","2025-01-22T11:43:10.000+02:00","2026-04-22T09:35:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0" +"210406652","249580391","lremvaste1","","00:17:a4:77:1c:28, 00:17:a4:77:1c:2c","192.168.108.114,192.168.107.114","fe80::217:a4ff:fe77:1c28,fe80::217:a4ff:fe77:1c2c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","31879","HP I36 07/18/2022","VCX0000705","","'+02:00","2025-12-02T11:47:45.000+02:00","lamhajeb-ext","Cloud Agent","1b52413a-1e4d-46c5-8179-a64404b83b63","2024-01-18T14:17:38.000+02:00","2026-04-22T09:35:44.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,EMV,PCI Bunker EMV - VLAN Stecard V17 Recette","491.0" +"212748468","250644352","vpbooarep2.sanef.groupe","","00:50:56:90:8f:73","10.41.22.146","fe80::250:56ff:fe90:8f73","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 0a 92 da 66 4b 41-1b 07 52 eb 31 0b 9a 09","No Asset Tag","'+02:00","2026-04-07T12:00:35.000+02:00","cybadmroot","Cloud Agent","4d9fbb90-492c-42fc-83e2-cdb4de0813f9","2024-01-30T17:21:46.000+02:00","2026-04-22T11:38:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server,FreeFlow,ServersInCyberark,Production","140.0" +"370402310","348888173","PCB24325.sanef.groupe","PCB24325","00:72:EE:22:38:50","192.168.2.39,10.4.31.66","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YHC","","'+02:00","2026-04-20T08:58:14.000+02:00","SANEF\decampp","Cloud Agent","2cbed9e3-97bd-4d63-b048-7a8854869a2b","2025-10-21T12:54:12.000+02:00","2026-04-22T10:03:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","668.0" +"119198010","191556755","vpdsiawsus1","VPDSIAWSUS1","00:50:56:82:92:FF","192.168.18.4","fe80::820c:cb93:ba68:92d0","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 7c 98 96 cc 53 df-9a 07 61 3d 1c b5 54 8d","NoAssetTag","'+02:00","2026-04-15T15:18:13.000+02:00","kmoad-ext","Cloud Agent","a77ea24f-21a4-476a-854f-886159937d56","2022-04-01T10:18:28.000+02:00","2026-04-22T09:35:33.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,DSI,BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,TAG-SRVEXPOSEINTERNET,WSUS","0.0" +"186459705","236788724","spcybabkp1","SPCYBABKP1","D4:F5:EF:39:81:A6","10.44.1.36","fe80::6c0c:43a5:1fdd:ca26","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Computers / Server","HPE ProLiant DL380 G10 Server","16","3193","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","32425","HPE U30","CZ2051091R","","'+02:00","2026-03-23T11:53:39.000+02:00","administrateur","Cloud Agent","55fbec37-e5a7-4089-a58b-c886a81a5711","2023-09-06T10:19:29.000+02:00","2026-04-22T09:35:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,CyberArk,Cloud Agent,Windows Server","242.0" +"361952346","345521644","PCB24197.sanef.groupe","PCB24197","30:E3:A4:D5:F5:C5","10.255.3.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5192YLY","","'+02:00","2026-03-30T15:25:41.000+02:00","SANEF\lothg","Cloud Agent","cf047bae-dac1-4042-9083-3ed278b64f2c","2025-09-22T13:21:40.000+02:00","2026-04-22T11:17:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","257.0" +"366599196","347401133","PCB20633.sanef.groupe","PCB20633","58:1C:F8:EA:44:B7","10.205.0.132,192.168.1.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DRN","","'+02:00","2026-04-02T17:33:52.000+02:00","SANEF\martyleridant","Cloud Agent","a583220f-2649-4503-8b50-76dd248e82c3","2025-10-08T16:54:35.000+02:00","2026-04-22T11:31:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"360033209","","PCB18756.sanef.groupe","PCB18756","BC:0F:F3:3D:38:44","10.200.30.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DR8","","'+02:00","2026-03-30T09:07:19.000+02:00","SANEF\fontainea","Cloud Agent","df5b3b5e-1f4b-4289-ac76-b8b86ba590c2","2025-09-16T13:49:27.000+02:00","2026-04-22T09:35:14.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"367949395","347995265","PCB23579.sanef.groupe","PCB23579","C8:6E:08:8A:40:58","10.255.1.158","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6C","","'+02:00","2026-04-08T08:20:55.000+02:00","SANEF\HOUPLAIN","Cloud Agent","28609e06-ec8a-48db-8d92-3d8ec77402f1","2025-10-13T15:36:28.000+02:00","2026-04-22T09:35:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"186259544","236704965","vvafljump2.recette.adds","VVAFLJUMP2","00:50:56:9C:6D:9F","10.45.8.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 66 49 97 21 09 89-b2 b4 41 2c fe 94 94 23","NoAssetTag","'+02:00","2026-04-22T01:00:45.000+02:00","Administrateur","Cloud Agent","8e9a8e68-7af7-4018-906f-5ab357e618b3","2023-09-05T17:21:14.000+02:00","2026-04-22T09:35:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,flux_libre,BDD-SQL DYN,OS-WIN-SRV DYN,Recette,Flux Libre,FreeFlow","253.0" +"359802333","344907561","vrpeahbst1.sanef-rec.fr","","00:50:56:9c:8a:e8","192.168.31.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c e4 3c bb 93 a4 3d-cb 11 9e 0b ee 2c 91 f3","No Asset Tag","'+02:00","2026-04-08T11:05:10.000+02:00","root","Cloud Agent","bc9760af-f453-400d-a64a-5ca2536ef0a6","2025-09-15T15:57:45.000+02:00","2026-04-22T10:45:58.000+02:00","x86_64","4","SCA,VM,GAV","flux_libre,TAG-SED,TAG-SRVEXPOSEINTERNET,Recette,FreeFlow,Flux Libre,OS-LIN-SRV DYN,Linux Server,Cloud Agent","132.0" +"409762886","365046718","PCB22715.sanef.groupe","PCB22715","E4:60:17:CB:E7:65","10.205.0.86,172.28.199.165","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764G6","","'+02:00","2026-04-16T16:04:56.000+02:00","SANEF\MOUTAOUAKIL-ext","Cloud Agent","4afb9398-a2e1-42c9-802b-d6d723171ede","2026-03-19T17:17:59.000+02:00","2026-04-22T09:34:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-POS DYN,Workstation,Cloud Agent","247.0" +"395268286","359387214","DAI18696.sanef-int.adds","DAI18696","30:13:8B:6C:58:15","10.100.70.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.05.01","CZC44473VX","","'+02:00","2026-03-25T12:23:19.000+02:00","DAIUSER","Cloud Agent","a213ac0e-8a84-4405-9f49-75fd7f7db98e","2026-01-27T10:44:57.000+02:00","2026-04-22T09:34:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"129355044","191958657","vpabnanvr1","VPABNANVR1","00:50:56:82:03:FD","10.187.6.10","fe80::d80a:4c23:8a33:dc7f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 1b a2 c7 48 26 de-7e 75 13 c9 d2 63 99 0f","NoAssetTag","'+02:00","2026-03-31T12:43:11.000+02:00","Administrateur","Cloud Agent","fa4d5fd6-8180-44dd-9132-de66ed912c70","2022-06-27T17:32:56.000+02:00","2026-04-22T09:34:45.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,OS-WIN-SRV DYN,DEX,NVR,Production,Exploitation,Cloud Agent,Windows Server","508.0" +"378049638","352306110","vpdsiahap4.sanef.groupe","","00:50:56:90:b1:b1","192.168.19.145","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 a4 1e 78 01 ee 72-08 15 55 ca 9a 49 05 89","No Asset Tag","'+02:00","2025-12-10T15:09:42.000+02:00","cybintsys","Cloud Agent","de87e680-eb6e-4b1e-a78c-e09ce7005235","2025-11-20T13:31:08.000+02:00","2026-04-22T11:29:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"340740272","336808249","PCB21359.sanef.groupe","PCB21359","E4:60:17:CA:3F:FA","10.205.0.100,192.168.68.116","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L0","","'+02:00","2026-04-07T16:08:42.000+02:00","SANEF\LIGIER-ext","Cloud Agent","8105c7d0-8259-4fcc-9eb9-281df4983085","2025-07-10T12:18:40.000+02:00","2026-04-22T11:34:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"175950695","229618442","vvbocs4ci1.sanef-rec.fr","","00:50:56:9c:37:2d","10.45.6.3","fe80::250:56ff:fe9c:372d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c be 0a b0 f1 5e 5e-ea 6a fe 73 5b 41 85 e4","No Asset Tag","'+02:00","2026-03-11T16:15:40.000+02:00","cybsupsys","Cloud Agent","63aa44d5-fbe8-4b22-b643-4e984c0b6104","2023-06-26T16:42:59.000+02:00","2026-04-22T11:07:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Recette","336.0" +"407940473","364292118","splogbels2","","40:5b:7f:e1:ac:78","10.44.7.43","fe80::425b:7fff:fee1:ac78","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G11 Server","32","","INTEL(R) XEON(R) SILVER 4514Y","31586","HPE 2.50 04/22/2025","CZ2D3C0G31","","'+02:00","2026-03-27T16:17:38.000+02:00","cybintsys","Cloud Agent","b523ded9-6eff-429f-8655-ce7b008f4657","2026-03-12T12:08:05.000+02:00","2026-04-22T11:42:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN","152.0" +"318689107","328168117","PCB22894.sanef.groupe","PCB22894","D0:AD:08:A7:27:AC","10.209.31.6","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTB","8CC3502YTB","'+02:00","2026-04-19T21:58:53.000+02:00","SANEF\fourmy","Cloud Agent","8b69e612-ad5d-430d-9347-e1e98b562335","2025-04-23T09:31:53.000+02:00","2026-04-22T09:34:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"331434867","","PCB17802.sanef.groupe","PCB17802","28:C5:D2:9E:3E:91","10.255.3.199","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3T","","'+02:00","2026-04-20T09:16:52.000+02:00","SANEF\pierrepont","Cloud Agent","5c64def2-305b-4ae0-8ff1-d7f3f10fa575","2025-06-06T13:54:20.000+02:00","2026-04-22T09:34:16.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"358107596","344011310","PCB22621.sanef.groupe","PCB22621","E4:60:17:C5:0A:0D","10.205.0.139,192.168.1.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764J8","","'+02:00","2026-04-07T09:08:59.000+02:00","SANEF\BAISSAS-ext","Cloud Agent","0aca4085-83e0-4ed5-827f-ad1415344358","2025-09-09T11:24:32.000+02:00","2026-04-22T09:34:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"291118836","313951221","PCB20921.sanef.groupe","PCB20921","5C:28:86:C0:58:AA","10.4.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","Dell Latitude 7350 Notebook","14","1700","Intel(R) Core(TM) Ultra 7 165U","32213","Dell Inc. 1.12.0","45VTX64","","'+02:00","2026-04-16T10:42:37.000+02:00","SANEF\bideondo","Cloud Agent","a2538818-e294-4a9f-8a59-8218a59bb34b","2025-01-09T12:04:41.000+02:00","2026-04-22T11:42:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"392827254","358345584","PCB18728.sanef.groupe","PCB18728","58:1C:F8:E9:C0:C8","10.255.2.203,10.255.2.202","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3T","","'+02:00","2026-04-03T09:03:56.000+02:00","SANEF\MAZOUZ","Cloud Agent","6fa68d0d-4b89-4341-b8f0-cb6c8d73127e","2026-01-16T16:49:57.000+02:00","2026-04-22T10:53:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"130346274","192664922","VMAMPWEB2.sanef.groupe","VMAMPWEB2","02:3D:DD:2E:28:C5, 00:50:56:90:F6:D2","169.254.1.82,10.41.40.112,10.41.40.114","fe80::2039:b533:eb8d:5a16,fe80::e86b:bba:af54:270b","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 10 ab 11 90 38 72 96-42 f0 e9 3d fb b7 ea 42","NoAssetTag","'+02:00","2024-02-14T14:45:29.000+02:00","VMAMPWEB2\CYBSECOPE","Cloud Agent","6ff045a0-cd11-4b92-92ed-527b498c3d92","2022-07-05T15:53:52.000+02:00","2026-04-22T09:33:56.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,VRF_TRAFIC_DC,OS-WIN-SRV DYN,Obsolete,Production,Patrimoine,SIG,Cloud Agent,Windows Server","537.0" +"399667072","361243015","PCV20830.sanef-int.adds","PCV20830","30:13:8B:6C:60:45","10.100.7.53","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q82","","'+02:00","2026-02-17T18:01:58.000+02:00","Operateur","Cloud Agent","bddb31d9-7015-4477-ba7c-9fb20133aa19","2026-02-12T18:34:07.000+02:00","2026-04-22T11:25:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"376638224","351625365","PCB18270.sanef.groupe","PCB18270","C8:CB:9E:81:17:AD","10.255.3.190,10.255.3.203","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y97","8CC2250Y97","'+02:00","2026-03-30T09:44:58.000+02:00","SANEF\hammadia","Cloud Agent","61d6936a-f22c-47e0-91ed-aee56a5b8e61","2025-11-14T14:51:16.000+02:00","2026-04-22T11:26:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"397486515","360368249","PCB20622.sanef.groupe","PCB20622","BC:0F:F3:3D:68:61","10.220.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.15.02","5CG3224CSH","","'+02:00","2026-04-21T08:06:26.000+02:00","SANEF\ATMANI","Cloud Agent","bd66100d-4520-470f-928e-7077667a835e","2026-02-04T17:24:38.000+02:00","2026-04-22T11:40:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"241863974","276777350","SVP22762.sanef-int.adds","SVP22762","D0:AD:08:A7:28:60","10.209.20.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLR","","'+02:00","2026-04-18T13:05:16.000+02:00","Superviseur","Cloud Agent","8834fb9d-adb3-4d9f-b85c-d146da6494ef","2024-06-05T16:26:59.000+02:00","2026-04-22T09:33:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"195792930","241929201","vpbotreco2.sanef.groupe","","00:50:56:90:d2:5d","10.41.23.19","fe80::250:56ff:fe90:d25d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 b8 38 f4 43 ea 75-23 8f 5e ef 9f 47 e0 84","No Asset Tag","'+02:00","2026-04-16T14:13:14.000+02:00","cybreconcile","Cloud Agent","3b9a017c-694d-4156-b17c-42a71c740a9f","2023-10-26T11:37:58.000+02:00","2026-04-22T10:58:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre","141.0" +"215213259","251724782","ls-beautot","LS-BEAUTOT","00:50:56:90:DA:F4","10.41.2.88","fe80::b055:abba:828a:f685","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c8 06 80 55 3b 58-ad 54 19 49 36 e2 c3 7c","NoAssetTag","'+02:00","2026-04-02T10:48:30.000+02:00","svpadmin","Cloud Agent","d123d0c9-ab32-4e85-a097-9611a64c840f","2024-02-12T15:25:07.000+02:00","2026-04-22T09:33:37.000+02:00","64-Bit","4","SCA,VM,PM,GAV","High,VRF_PEAGE_DC,Production,VRF_BACKUP_DC,Péage,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,SVP","507.0" +"405479460","363237095","vmmgtctchc1.sanef-int.adds","VMMGTCTCHC1","00:50:56:90:F0:6C","10.41.19.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 a4 cb 58 a9 25 ea-7c 70 6f 23 b5 03 2c 94","NoAssetTag","'+02:00","2026-04-02T13:38:27.000+02:00","admin_gtc","Cloud Agent","79994ea4-03f0-4cdf-a870-2ca3288bb72c","2026-03-02T17:46:23.000+02:00","2026-04-22T09:33:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","343.0" +"205606145","246966123","vvbocaprx1.sanef-rec.fr","","00:50:56:9c:fb:60","192.168.22.3","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 96 b7 47 17 66 e2-40 be cf 40 2a 15 b4 5b","No Asset Tag","'+02:00","2026-03-10T10:14:35.000+02:00","cybsupsys","Cloud Agent","281b8add-6df6-428a-aeac-fb4bdc00d3d4","2023-12-21T20:05:47.000+02:00","2026-04-22T11:38:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Recette,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre","335.0" +"188271995","237903345","MTR-G1DSNT3","MTR-G1DSNT3","90:8D:6E:92:4E:B5","10.104.32.200","fe80::5ec5:7cc7:98ba:293c","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","G1DSNT3","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","e49c011a-371c-4dd7-85c5-d9ad3f9022c3","2023-09-16T18:55:49.000+02:00","2026-04-22T09:33:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"129315687","191934840","vpaiia8770.sanef.groupe","VPAIIA8770","00:50:56:82:64:BD","10.41.60.135","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","6143","Phoenix Technologies LTD 6.00","VMware-42 02 ba 5d 80 a2 21 f4-52 a9 1f 57 39 cb 2e fd","NoAssetTag","'+02:00","2026-01-27T14:52:45.000+02:00","Admin_Nextiraone","Cloud Agent","05499784-b8fb-4cdb-9dd4-8795608cd591","2022-06-27T12:08:07.000+02:00","2026-04-22T09:33:16.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Basse,Production,Téléphonie,Low,DSI,OPENTOUCH,Cloud Agent,Windows Server,VRF_INCONNUE","510.0" +"379570961","352896458","PCV18549.sanef-int.adds","PCV18549","30:13:8B:6C:5C:34","10.209.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TK","","'+02:00","2026-04-17T08:47:28.000+02:00","Operateur","Cloud Agent","11fb4b85-ec09-4941-a688-448d80eedb85","2025-11-26T16:44:15.000+02:00","2026-04-22T09:33:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"267399590","298447748","SVP21062.sanef-int.adds","SVP21062","D0:AD:08:A7:28:25","10.142.3.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJW","","'+02:00","2026-04-22T05:39:23.000+02:00","Superviseur","Cloud Agent","8343947f-8844-4aef-ba7f-fe65ca93a4f1","2024-09-24T13:55:45.000+02:00","2026-04-22T09:32:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"339814656","336780130","vrpatbl2r3.sanef-rec.fr","","00:50:56:9c:e9:e1","10.45.10.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5e 5f 2e fb 54 47-32 c3 18 8a e7 f1 cb 68","No Asset Tag","'+02:00","2026-04-08T12:31:52.000+02:00","cybsecope","Cloud Agent","bd717c73-dcb2-42f1-b414-d1bbf77a60b7","2025-07-07T12:40:40.000+02:00","2026-04-22T11:31:46.000+02:00","x86_64","3","SCA,VM,GAV","Linux Server,Cloud Agent,Recette,BDD-POS DYN,L2R,OS-LIN-SRV DYN","216.0" +"241533000","276509051","vpvsaaahp2.sanef.groupe","","00:50:56:9c:67:25","10.42.16.87","fe80::250:56ff:fe9c:6725","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c c8 69 60 5c c6 26-c6 55 85 cc 68 d9 06 4a","No Asset Tag","'+02:00","2026-02-04T13:20:50.000+02:00","tbaad-ext","Cloud Agent","e2fe25e9-9955-4368-ad32-ff54b16be948","2024-06-04T11:57:09.000+02:00","2026-04-22T11:04:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"369207325","348325466","PCB23598.sanef.groupe","PCB23598","6C:0B:5E:EE:93:73","10.8.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L41","","'+02:00","2026-03-28T12:59:26.000+02:00","gaetan.schwaller@sanef.com","Cloud Agent","ca96df67-fb58-4e99-b3b8-3be365c8b78c","2025-10-16T07:09:51.000+02:00","2026-04-22T11:10:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"127861129","190912033","VPBURADHCP1.sanef.groupe","VPBURADHCP1","00:50:56:82:55:EB","10.30.12.142","fe80::4cad:f3cd:9fec:337d","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-56 4d 1d 90 58 a4 a8 18-ad bc 1f 26 5b 95 3a 9f","NoAssetTag","'+02:00","2026-03-30T15:05:17.000+02:00","SANEF.GROUPE\bmiad-ext@sanef.com","Cloud Agent","22f7afb2-8981-4675-a887-250a4fb07178","2022-06-14T15:51:48.000+02:00","2026-04-22T11:20:35.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DHCP,Production,Windows Server,Critical,Cloud Agent,High,OS-WIN-SRV DYN,VRF_INCONNUE","848.0" +"187333435","237343292","MTR-F1DSNT3","MTR-F1DSNT3","90:8D:6E:92:52:1E","10.13.32.200","fe80::2f9e:9f26:bdd8:30da","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","F1DSNT3","","'+02:00","2026-04-22T02:32:56.000+02:00","Skype","Cloud Agent","2fd68197-0770-4939-86e3-2e28f19dd07c","2023-09-11T22:02:20.000+02:00","2026-04-22T09:32:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"395894144","359663970","PCB25894.sanef.groupe","PCB25894","C4:0F:08:B4:39:D5","10.255.4.173","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222R","","'+02:00","2026-04-15T16:30:22.000+02:00","SANEF\dewilde","Cloud Agent","c22782e6-63c2-4111-ae3e-7a8dc0cc96e1","2026-01-29T15:49:47.000+02:00","2026-04-22T09:32:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","253.0" +"368453794","348146988","vppixbams2.sanef-int.adds","VPPIXBAMS2","00:50:56:90:68:0F","10.41.17.11","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 ef a8 d1 9f 33 1d-4b e8 62 b9 c8 e6 f7 d2","NoAssetTag","'+02:00","2026-02-11T15:17:58.000+02:00","b03987@sanef-int","Cloud Agent","e7e92ec1-5ec8-4b82-996f-62eb3c29e61c","2025-10-14T17:08:01.000+02:00","2026-04-22T09:32:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,BDD-POS DYN","346.0" +"333991857","333987938","PCB24125.sanef.groupe","PCB24125","48:EA:62:C8:93:2B","10.104.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6F","","'+02:00","2026-03-31T09:45:37.000+02:00","SANEF\auquiere","Cloud Agent","f8ab77f3-c5ea-456b-a783-67f1243cdcdd","2025-06-17T10:49:48.000+02:00","2026-04-22T10:51:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"360043312","344907767","vrtrabmut1.sanef-rec.fr","","52:54:00:ea:79:1f, 42:19:7e:d4:9b:a4, 52:54:00:39:27:bc","192.168.17.4,192.168.16.24,10.45.15.4","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","48139","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:57:32.000+02:00","oracle","Cloud Agent","30c83049-dcfa-4fc5-875c-e07b656fa40e","2025-09-16T15:15:32.000+02:00","2026-04-22T09:32:27.000+02:00","x86_64","2","SCA,VM,GAV","ORACLE,Recette,Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0" +"403264772","362438704","PCB25778.sanef.groupe","PCB25778","F8:ED:FC:AB:02:1F","10.100.39.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVS","","'+02:00","2026-04-21T11:08:37.000+02:00","SANEF\YOBOULUGEZ","Cloud Agent","ac91ca81-a675-4333-bf44-fd3469a121f8","2026-02-23T13:35:07.000+02:00","2026-04-22T11:27:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"130588099","192835847","vamrsychtp1.sanef.groupe","","00:50:56:82:6F:63","10.45.2.23","fe80::250:56ff:fe82:6f63","Linux / Server","Red Hat Enterprise Linux Server 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 0c f2 5b e6 50 1d-c4 77 7e 11 1e f7 84 ea","No Asset Tag","'+02:00","2025-02-04T10:47:28.000+02:00","cybexpapp","Cloud Agent","cacd808b-cfc7-4ace-9f0f-2d2a6d0896cf","2022-07-07T11:58:05.000+02:00","2026-04-22T10:53:35.000+02:00","x86_64","3","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Patrimoine,Sans,Recette,SIG,VRF_INCONNUE,Obsolete","525.0" +"376076712","351360676","PCB17985.sanef.groupe","PCB17985","C0:18:03:85:61:71","10.200.30.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.13.00","8CC2061752","","'+02:00","2026-04-09T08:04:04.000+02:00","SANEF\gauvreau","Cloud Agent","3fa9dc34-edf7-4e05-b58d-3184d609d919","2025-11-12T10:42:46.000+02:00","2026-04-22T09:31:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"193606163","240976273","vibocs4as1.sanef.groupe","","00:50:56:90:4b:56","10.41.22.72","fe80::250:56ff:fe90:4b56","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 b3 9d 45 c1 b3 06-4e 3b 9a a5 4c d2 f9 a7","No Asset Tag","'+02:00","2026-03-16T16:11:20.000+02:00","cybsupibm","Cloud Agent","d4d5e555-5327-402f-9c71-f08ab8b17d2f","2023-10-16T12:03:22.000+02:00","2026-04-22T10:41:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ServersInCyberark,Flux Libre,flux_libre,Production,Cloud Agent,Linux Server,FreeFlow","141.0" +"300889362","320656720","OSA22767.sanef-int.adds","OSA22767","D0:AD:08:A7:28:28","10.209.20.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJQ","","'+02:00","2026-04-17T08:54:07.000+02:00","Superviseur","Cloud Agent","a32c879f-ed6f-4b43-a5ce-0883c3ddb013","2025-02-18T13:39:37.000+02:00","2026-04-22T11:19:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"185292892","236052811","vproibgtc1","VPROIBGTC1","00:50:56:82:4E:8D","10.41.19.10","fe80::8b92:d20e:5b74:a67f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 31 56 81 4b 18 f4-7c 3b 7c 8a 8f 33 f2 e4","NoAssetTag","'+02:00","2026-03-23T12:42:50.000+02:00","admin_gtc","Cloud Agent","0c090484-4aff-492e-ad2b-e1ad66d82464","2023-08-30T15:20:27.000+02:00","2026-04-22T10:58:28.000+02:00","64-Bit","5","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Windows Server,OS-WIN-SRV DYN,GTC,DEX,Trafic,Haute,High,Production","634.0" +"355126754","342723643","PCB20734.sanef.groupe","PCB20734","58:1C:F8:E9:F6:97","10.205.0.88,192.168.0.159","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DQB","","'+02:00","2026-04-21T09:44:39.000+02:00","SANEF\LEMMET","Cloud Agent","8e9b3df0-0066-4537-bf42-2e141ff67676","2025-08-28T10:13:19.000+02:00","2026-04-22T11:25:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"372648273","349818624","vpsamaext1.sanef-int.adds","VPSAMAEXT1","00:50:56:90:D1:3A","192.168.10.11","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4297) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 00 83 ac 2c 26 89-bf 9f ab 0b 3f 00 34 ef","NoAssetTag","'+02:00","2025-11-12T11:05:03.000+02:00","SANEF-INT\b03987","IP Scanner, Cloud Agent","42773da1-e822-4007-a3df-83a83800b046","2025-10-29T10:18:47.000+02:00","2026-04-22T09:31:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Production","346.0" +"128152928","191086094","VMPKI2.sanef.groupe","VMPKI2","00:50:56:82:26:28","10.30.10.147","fe80::995c:8dcd:6a9:a100","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 d7 2b d0 79 f5 ab-d7 f4 e1 2a a2 2f f6 b2","NoAssetTag","'+02:00","2026-03-12T21:55:48.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","ae165fdf-1fd5-4c5d-adfb-d51376f44c25","2022-06-16T13:09:22.000+02:00","2026-04-22T11:08:22.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Windows Server,VRF_INCONNUE,DSI,Production,Sécurité IT,Gestion_PKI,High,Critical,Cloud Agent","612.0" +"375477015","351124093","PCB23520.sanef.groupe","PCB23520","6C:0B:5E:EE:CC:B5","10.202.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5J","","'+02:00","2026-04-12T14:38:15.000+02:00","SANEF\lepecq","Cloud Agent","09767f60-ec34-4582-8b42-55236bd17805","2025-11-10T11:15:10.000+02:00","2026-04-22T09:30:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"404678116","362912971","vrpctbams2.recette.adds","VRPCTBAMS2","00:50:56:9C:6A:02","10.45.13.197","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c b8 f6 9b bf 39 51-42 0b 9f b8 0d 32 b5 55","NoAssetTag","'+02:00","2026-03-03T15:16:05.000+02:00","Administrator","Cloud Agent","4949f175-9f4a-4beb-af1e-e2fed7e749ee","2026-02-27T10:16:49.000+02:00","2026-04-22T09:30:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN","252.0" +"379713036","352959816","PCB22286.sanef.groupe","PCB22286","D0:AD:08:A3:7C:F8","10.252.42.130","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZK","8CC3502YZK","'+02:00","2026-04-21T05:28:58.000+02:00","SANEF\saint-sorny","Cloud Agent","2428ae36-2aaa-4417-a4bd-a7ca11c5ec3a","2025-11-27T09:17:39.000+02:00","2026-04-22T09:30:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"322014696","329325194","PCB23628.sanef.groupe","PCB23628","C8:6E:08:88:FD:B5","10.255.3.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9W","","'+02:00","2026-04-20T07:52:40.000+02:00","SANEF\DUMONTF","Cloud Agent","6f2a6a21-a6ca-45c7-9797-ef6633b00c93","2025-05-05T12:32:51.000+02:00","2026-04-22T11:21:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"346030468","338984118","PCB17774.sanef.groupe","PCB17774","D0:AD:08:0C:7D:4D","10.205.0.89,10.101.243.81","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3X","","'+02:00","2026-04-22T08:43:55.000+02:00","bastien.raina@sapn.fr","Cloud Agent","b61e4f16-dbdb-4def-bb52-e5af943c6fa4","2025-07-29T09:38:17.000+02:00","2026-04-22T11:39:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"376611618","351608640","PBM22800.sanef-int.adds","PBM22800","D0:AD:08:A3:E7:2E","10.12.50.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YTW","","'+02:00","2026-04-02T14:54:50.000+02:00","Operateur","Cloud Agent","bf8662a1-bc71-4566-92d5-7babc7ecb476","2025-11-14T12:22:31.000+02:00","2026-04-22T09:30:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"373758364","350324415","PCB24195.sanef.groupe","PCB24195","10:B6:76:8A:F3:7F","10.8.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLT","","'+02:00","2026-04-20T15:01:27.000+02:00","SANEF\fraulob","Cloud Agent","15605755-127f-4df1-bf3c-11ba4b0a344e","2025-11-03T11:16:11.000+02:00","2026-04-22T09:30:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"240162557","273864821","SVP20956.sanef-int.adds","SVP20956","BC:0F:F3:87:6F:88","10.22.1.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLC","","'+02:00","2026-04-22T05:02:16.000+02:00","Superviseur","Cloud Agent","5fa9d325-9f14-483c-9178-6239fa478f43","2024-05-29T14:02:02.000+02:00","2026-04-22T09:30:01.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Workstation,Forescout","686.0" +"318938690","328215453","PCB22911.sanef.groupe","PCB22911","D0:AD:08:A3:7B:ED","10.108.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVF","8CC3502YVF","'+02:00","2026-03-28T16:05:32.000+02:00","SANEF\ehret","Cloud Agent","8428aee9-b08f-4984-86f5-70304b38473b","2025-04-23T17:22:28.000+02:00","2026-04-22T09:30:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"230114750","258416507","vvbotatst4.recette.adds","VVBOTATST4","00:50:56:9C:81:B0","10.45.6.162","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 59 4d 23 31 ef 65-c2 93 b5 90 fc be a3 07","NoAssetTag","'+02:00","2026-03-10T12:05:56.000+02:00","Administrateur","Cloud Agent","a7689d6b-1702-4fd3-b1a7-a50117d2745f","2024-04-15T15:13:45.000+02:00","2026-04-22T09:30:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Recette","258.0" +"284156129","308364146","SVP22864.sanef-int.adds","SVP22864","D0:AD:08:A7:27:C1","10.112.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMZ","","'+02:00","2026-04-17T05:33:14.000+02:00","Superviseur","Cloud Agent","5ab99886-4f8a-4864-8b3d-d6114dba01d1","2024-12-04T17:09:01.000+02:00","2026-04-22T09:29:48.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","685.0" +"130359075","192671247","vppeaaexp1","VPPEAAEXP1","00:50:56:82:3B:5D","10.41.21.15","fe80::ee7c:54b9:c1a6:3255","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2594","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","10240","Phoenix Technologies LTD 6.00","VMware-42 02 d3 81 67 5e b9 5f-8e 16 3f b5 ba 7c 43 fd","NoAssetTag","'+02:00","2026-02-26T15:34:11.000+02:00","Administrateur","Cloud Agent","225bb261-dd86-4e8f-8cf5-8b3a006ca809","2022-07-05T17:25:47.000+02:00","2026-04-22T09:29:47.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Cloud Agent,Windows Server,Péage,VRF_PEAGE_DC,OS-WIN-SRV DYN,DEX,Production","673.0" +"319196125","328319441","MTR-2KRTL64","MTR-2KRTL64","D0:46:0C:95:2C:9F","10.101.246.200","fe80::2c24:db8e:64c0:562e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","2KRTL64","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","c888fd44-0f94-4010-be5a-1fec54ba15cd","2025-04-24T16:14:17.000+02:00","2026-04-22T09:29:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"378058864","352313878","PCB22288.sanef.groupe","PCB22288","D0:AD:08:A3:7C:F6","10.200.31.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZP","8CC3502YZP","'+02:00","2026-04-22T04:57:26.000+02:00","SANEF\mechineaup","Cloud Agent","73987bff-8613-4084-9823-566479f1cd87","2025-11-20T14:58:52.000+02:00","2026-04-22T09:29:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"320477208","328721870","PCB24019.sanef.groupe","PCB24019","6C:0B:5E:F8:D8:D9","10.100.39.127","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF5","","'+02:00","2026-04-15T13:35:41.000+02:00","SANEF\HENQUINEZ","Cloud Agent","8622585b-879b-4491-bb32-80cdf656f485","2025-04-29T13:30:48.000+02:00","2026-04-22T11:30:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"407354446","364050078","PCB24122.sanef.groupe","PCB24122","48:EA:62:CC:0C:48","10.5.31.49,10.100.39.148","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V73","","'+02:00","2026-04-17T16:27:28.000+02:00","SANEF\hennechart","Cloud Agent","15daf258-80ff-439a-a405-638ec1b92ddd","2026-03-10T12:42:33.000+02:00","2026-04-22T11:06:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"195796370","241931295","vpbotapps2.sanef.groupe","","00:50:56:90:83:1a","10.41.23.15","fe80::250:56ff:fe90:831a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7a e8 f5 ed a9 da-9f ba 9c e2 b2 ea b3 f4","No Asset Tag","'+02:00","2026-04-16T11:04:07.000+02:00","cybreconcile","Cloud Agent","5966ce31-ac30-4dab-bd4a-9c6f908666f7","2023-10-26T11:59:09.000+02:00","2026-04-22T11:16:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Flux Libre,flux_libre,Production","141.0" +"412381024","366123126","PCB18709.sanef.groupe","PCB18709","58:1C:F8:EB:3F:CF","10.205.0.11,192.168.1.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224CRS","","'+02:00","2026-04-21T08:08:50.000+02:00","SANEF\boudjatit-ext","Cloud Agent","7c0d9008-4283-4496-be6b-6bbd7a6cb613","2026-03-30T11:45:15.000+02:00","2026-04-22T11:21:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"340063684","336780157","lpamebrac1.sanef.groupe","","ee:50:33:80:00:90, ee:50:33:80:00:8c","10.43.4.138,10.41.41.110,10.41.41.114,10.41.41.118","fe80::ec50:33ff:fe80:90,fe80::ec50:33ff:fe80:8c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63822","HPE I44 06/13/2025","VCGCIOJ00L","/n/Bios Asset Tag :","'+02:00","2025-11-19T15:02:39.000+02:00","cybreconcile","Cloud Agent","4579ea91-d9dc-4a08-96e1-64538e06b070","2025-07-08T10:21:16.000+02:00","2026-04-22T11:23:24.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,Amelie","335.0" +"195792948","241929532","vpbotreco3.sanef.groupe","","00:50:56:90:fe:07","10.41.23.20","fe80::250:56ff:fe90:fe07","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37934","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 3f 96 41 bb c3 ba-0f 2b 55 5e 03 95 57 72","No Asset Tag","'+02:00","2026-04-16T14:43:36.000+02:00","cybreconcile","Cloud Agent","38a94212-add9-4f23-a636-ec8a78fefca2","2023-10-26T11:39:01.000+02:00","2026-04-22T11:21:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,Production,flux_libre,FreeFlow","141.0" +"195798232","241931296","vpbotapps1.sanef.groupe","","00:50:56:90:20:d6","10.41.23.14","fe80::250:56ff:fe90:20d6","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48013","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c3 80 01 f1 a1 19-c7 71 bd 66 db 88 44 03","No Asset Tag","'+02:00","2026-04-16T10:57:27.000+02:00","cybreconcile","Cloud Agent","cd6b5702-76f4-42b4-bd7d-c780ca442252","2023-10-26T11:59:07.000+02:00","2026-04-22T11:30:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,FreeFlow,flux_libre","140.0" +"246263460","286957595","vraptbjup1","","00:50:56:9c:68:1f","10.45.10.163","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 73 71 b0 27 0c f4-da e4 3a 1a 03 d0 f9 22","No Asset Tag","'+02:00","2026-03-23T12:26:07.000+02:00","cybadmsys","Cloud Agent","d49a03b3-702f-4f64-9629-4074ab9b2665","2024-06-25T09:57:21.000+02:00","2026-04-22T11:35:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent,BDD,Recette,DSI","65.0" +"191422143","239727391","vibooosea1.sanef.groupe","","00:50:56:90:d0:d2","10.41.22.200","fe80::250:56ff:fe90:d0d2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 60 1e 2d 60 a3 9f-25 e1 a1 e1 07 6a f6 13","No Asset Tag","'+02:00","2026-03-17T16:23:43.000+02:00","cybreconcile","Cloud Agent","4fc0b10a-d5c0-4440-8e54-b5a86c892f55","2023-10-04T17:50:33.000+02:00","2026-04-22T11:31:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,FreeFlow,Flux Libre,Cloud Agent,Linux Server,Production","141.0" +"223188899","255081188","ls-chamant","LS-CHAMANT","00:50:56:90:D9:3F","10.142.3.20","fe80::6c8e:7198:837b:9d82","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 65 8e f1 4e f0 b8-9b ea 19 92 44 b5 42 47","NoAssetTag","'+02:00","2026-03-05T12:44:09.000+02:00","svpadmin","Cloud Agent","6eb4930d-0d47-4e5c-b8fe-5faaa85d229b","2024-03-18T18:16:08.000+02:00","2026-04-22T09:28:15.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,SVP,Péage,Haute,High,Production,Cloud Agent,Windows Server","640.0" +"323216445","329822505","PCB23771.sanef.groupe","PCB23771","6C:0B:5E:EE:93:6D","10.5.31.60","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H5C","","'+02:00","2026-04-03T09:56:50.000+02:00","SANEF\poudras","Cloud Agent","1faf0476-5866-4eba-bf9a-94f2a2fb34f6","2025-05-09T15:14:04.000+02:00","2026-04-22T09:28:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"395126369","359320782","PCB20606.sanef.groupe","PCB20606","BC:0F:F3:3D:68:2B","10.205.0.101,10.4.31.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSD","","'+02:00","2026-04-22T08:33:54.000+02:00","SANEF\lambert","Cloud Agent","fb5fe05c-3616-4e69-bb14-158e359cd63e","2026-01-26T18:28:52.000+02:00","2026-04-22T11:13:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","351.0" +"186524683","236837691","vpiadawdc4.sanef-int.adds","VPIADAWDC4","00:50:56:9A:8B:A2","10.44.3.7","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1a 12 fb 5e e9 b1 6e-0d e3 d2 81 a1 4c 96 b8","NoAssetTag","'+02:00","2026-03-23T15:30:19.000+02:00","SANEF-INT\A17402","Cloud Agent","efb70f52-00dd-46d1-afb1-9b8f984dc9d6","2023-09-06T16:17:11.000+02:00","2026-04-22T11:17:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,OS-WIN-SRV DYN,AD","250.0" +"240060233","273734483","OSA20929.sanef-int.adds","OSA20929","BC:0F:F3:87:70:B5","10.152.20.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMT","","'+02:00","2026-03-17T14:06:54.000+02:00","Superviseur","Cloud Agent","a778db53-49ac-4fe4-b8ba-4f83f3a311db","2024-05-29T12:00:28.000+02:00","2026-04-22T10:39:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"354672880","342490001","vpdsiarad1.sanef.groupe","","00:50:56:94:27:ba","10.44.5.195","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 14 6a 29 aa 1d 18 c4-2e 88 c9 f2 81 5a 1c c0","No Asset Tag","'+02:00","2026-03-24T10:54:33.000+02:00","cybsupsys","Cloud Agent","b96d30e4-ca8d-4182-919d-ff2042485f53","2025-08-26T16:06:56.000+02:00","2026-04-22T11:20:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Radius,Production,Linux Server,Cloud Agent","152.0" +"322656204","329610125","PCB23755.sanef.groupe","PCB23755","6C:0B:5E:EE:93:2B","10.5.31.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H41","","'+02:00","2026-04-17T18:31:27.000+02:00","SANEF\floquet","Cloud Agent","8a57273c-3908-41c2-8f7b-3d3c2cf0da4f","2025-05-07T16:46:33.000+02:00","2026-04-22T09:27:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"377717881","352168080","vdpatbsip1.sanef-rec.fr","","00:50:56:9c:0c:0c","10.45.9.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 2a 35 aa d2 3c b2-c8 27 37 20 22 c4 2d 34","No Asset Tag","'+02:00","2026-04-07T10:38:58.000+02:00","sipat","Cloud Agent","213e9236-7d67-4ff2-9606-768952003ad5","2025-11-19T12:07:59.000+02:00","2026-04-22T09:27:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","65.0" +"321023093","328907271","PCB24034.sanef.groupe","PCB24034","EC:4C:8C:C0:25:88","10.205.0.78,192.168.1.69","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDY","","'+02:00","2026-04-13T08:15:32.000+02:00","SANEF\love","Cloud Agent","111b7098-547a-4c29-9057-42601c170252","2025-04-30T15:01:17.000+02:00","2026-04-22T11:34:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"378007417","352289574","PCB21273.sanef.groupe","PCB21273","D0:AD:08:0C:8D:08","10.205.0.37,192.168.1.105","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GJZ","","'+02:00","2026-04-14T14:43:30.000+02:00","SANEF\ZEROUALI","Cloud Agent","4e111736-7c70-4efe-b6bc-a3f796e198f6","2025-11-20T11:22:23.000+02:00","2026-04-22T09:27:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"219821714","253603316","ls-srom-bpv","LS-SROM-BPV","00:50:56:90:40:2C","10.212.26.201","fe80::3bca:2f5f:25b7:8172","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3193","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 10 db 76 9a d1 fa c1-30 00 94 8f 39 42 de 42","NoAssetTag","'+02:00","2026-03-03T12:34:57.000+02:00","svpadmin","Cloud Agent","9673d92a-a712-4bb6-8f98-436ab9c49b98","2024-03-04T11:55:04.000+02:00","2026-04-22T09:27:06.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,SVP,VRF_PEAGE_DC,High,Péage,Production,Cloud Agent","508.0" +"127861191","190912614","VPBURADHCP2.sanef.groupe","VPBURADHCP2","00:50:56:82:62:12","10.30.12.42","fe80::ac7a:6971:1df6:6e87","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 b6 f0 60 c3 43 59-8a f1 69 36 77 44 67 35","NoAssetTag","'+02:00","2026-04-01T14:15:33.000+02:00","SANEF.GROUPE\bmiad-ext@sanef.com","Cloud Agent","ac945445-ce19-41ad-baa8-56e357d0cd22","2022-06-14T15:59:03.000+02:00","2026-04-22T09:26:43.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Windows Server,VRF_INCONNUE,OS-WIN-SRV DYN,Critical,DHCP,High,Cloud Agent,Production,Réseaux et Télécom","848.0" +"208776231","248746835","vibotarmq1.sanef.groupe","","00:50:56:90:b2:64","10.41.23.141","fe80::250:56ff:fe90:b264","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 89 39 6b 48 96 4c-d8 bc aa 1f cb 1a f6 db","No Asset Tag","'+02:00","2026-03-17T11:49:24.000+02:00","cybreconcile","Cloud Agent","0c4f3d39-21bb-4068-b9ab-68be3541b623","2024-01-10T12:58:43.000+02:00","2026-04-22T11:27:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,FreeFlow,flux_libre,Flux Libre,OS-LIN-SRV DYN","141.0" +"411102519","365542324","PCB25944.sanef.groupe","PCB25944","C4:0F:08:B4:3A:25","10.255.1.168","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342227","","'+02:00","2026-04-17T09:04:24.000+02:00","SANEF\THOMASAU","Cloud Agent","21a38149-7faf-4224-8dd2-b19a0d395e9f","2026-03-24T16:14:54.000+02:00","2026-04-22T11:27:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"196663142","242432307","vpboobsql1.sanef.groupe","","00:50:56:90:0a:8a","10.41.22.133,10.41.22.145","fe80::250:56ff:fe90:a8a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 53 ab fa da 5a 83-0a 5a 28 98 b3 be b8 b4","No Asset Tag","'+02:00","2026-04-07T12:26:31.000+02:00","cybreconcile","Cloud Agent","7ba6ea7c-6f04-46d4-aa2e-b54aa3838cd1","2023-10-31T18:19:55.000+02:00","2026-04-22T11:34:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Flux Libre,flux_libre,Production","334.0" +"173355626","227827000","vvboobsql1.sanef-rec.fr","","00:50:56:9c:10:ac","10.45.6.68","fe80::250:56ff:fe9c:10ac","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 67 8f 66 4d 2f 26-d9 bf 06 b0 89 87 88 0a","No Asset Tag","'+02:00","2026-03-12T11:02:18.000+02:00","cybsupsys","Cloud Agent","27757c4b-5d68-4f2c-b905-3a12dbc66d1e","2023-06-07T10:31:40.000+02:00","2026-04-22T10:42:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Recette,flux_libre","144.0" +"356292342","343241127","vrdsiadep1.sanef-rec.fr","","00:50:56:9c:26:44","10.45.7.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 36 54 65 18 a0 e6-ad 53 24 7d 33 6f d7 ba","No Asset Tag","'+02:00","2026-04-14T11:11:13.000+02:00","cybroasys","Cloud Agent","356f6da7-2195-4d61-bc91-762e197d3a0e","2025-09-02T11:03:45.000+02:00","2026-04-22T11:37:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent","331.0" +"335928595","336780144","vrrpsangx1.sanef-rec.fr","","00:50:56:9c:5b:78","10.45.14.228","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9b a2 72 85 7c 69-27 91 bd 43 a6 92 ba 7e","No Asset Tag","'+02:00","2026-02-23T10:50:21.000+02:00","cybintsys","Cloud Agent","f23ce48a-cce3-452a-961c-1b6c0f8158e7","2025-06-24T10:58:05.000+02:00","2026-04-22T10:59:36.000+02:00","x86_64","2","SCA,VM,GAV","Péage,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server","140.0" +"347738945","339369663","MTO21619.sanef.groupe","MTO21619","D0:AD:08:A4:4E:4B","10.199.31.2","fe80::f51c:e07f:3783:c4b2","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.2428) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711KG","","'+02:00","2026-04-07T13:16:23.000+02:00","SANEF\meteonewsW11","Cloud Agent","b2b1ff9a-d257-4c39-895e-02bdd6f9d040","2025-07-31T10:07:37.000+02:00","2026-04-22T09:25:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"355147671","342736431","PMS20971.sanef-int.adds","PMS20971","BC:0F:F3:87:6F:90","10.44.201.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LL3","","'+02:00","2026-04-20T16:12:36.000+02:00","SANEF-INT\solagnac","Cloud Agent","70350a4b-026a-4b44-8a19-418d646921a4","2025-08-28T12:06:04.000+02:00","2026-04-22T09:25:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,TAG-CAPIV,TAG-SIC,Workstation,Cloud Agent","349.0" +"373868890","350360157","VMMVSCC2.sanef-int.adds","VMMVSCC2","00:50:56:90:16:D1","10.41.7.251","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 69 f7 72 58 e9 e7-66 50 ac c1 f6 2b 3f ff","NoAssetTag","'+02:00","2026-04-16T16:49:40.000+02:00","UserPCT","Cloud Agent","89ed0f46-000a-4da5-8b7b-7d91687a72e0","2025-11-03T16:06:40.000+02:00","2026-04-22T09:25:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"392480138","358246420","vrvpnaaov2.recette.adds","VRVPNAAOV2","00:50:56:9C:CA:FF, 00:50:56:9C:38:34","192.168.188.20,10.205.10.4","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 1c 5b 14 bc df a0 6c-55 78 f7 73 4e 2e c4 ee","NoAssetTag","'+02:00","2026-02-16T16:30:36.000+02:00","recette.adds\SBP01336@recette","Cloud Agent","e61ac537-e955-435a-b06d-06c5643b81c4","2026-01-15T19:49:30.000+02:00","2026-04-22T09:25:32.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,High,TAG-SRVEXPOSEINTERNET,Compte & Acces,Haute,DSI","595.0" +"130590699","192838403","vrameaoct1.sanef.groupe","","00:50:56:82:06:1f","10.45.2.80","fe80::250:56ff:fe82:61f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 91 24 d3 33 d0 86-74 d4 63 bd 71 07 c5 8c","No Asset Tag","'+02:00","2026-01-14T11:19:29.000+02:00","delcour","Cloud Agent","69ca43f0-8e14-4a5d-9390-b03fcbb5cf70","2022-07-07T12:14:57.000+02:00","2026-04-22T11:37:37.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,OS-LIN-SRV DYN,OCTAN,MID-APACHE-TOMCAT DYN,VRF_INCONNUE,Recette","510.0" +"382506671","354005588","PCB22323.sanef.groupe","PCB22323","D0:AD:08:A3:7C:FE","10.252.42.148","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ9","8CC3502YZ9","'+02:00","2026-03-29T09:12:23.000+02:00","SANEF\nlom","Cloud Agent","3373091a-4fe2-4d35-aef7-de13bfd7531f","2025-12-08T15:54:16.000+02:00","2026-04-22T09:25:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"280843592","305646174","PCB22510.sanef.groupe","PCB22510","D0:AD:08:AA:50:84","10.208.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L3","","'+02:00","2026-04-22T08:12:11.000+02:00","SANEF\mocklyn","Cloud Agent","340a51c7-38e5-47e8-99e6-fa257366fb7b","2024-11-20T18:42:19.000+02:00","2026-04-22T09:25:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"324685105","330335438","PCB20743.sanef.groupe","PCB20743","58:1C:F8:EA:54:11","10.255.4.203,10.206.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DSC","","'+02:00","2026-04-13T10:36:10.000+02:00","SANEF\brongniart","Cloud Agent","7c619410-99c3-4135-a9e2-b1f0ab54188d","2025-05-14T12:02:14.000+02:00","2026-04-22T11:44:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","59.0" +"331119694","","PCB21177.sanef.groupe","PCB21177","D0:AD:08:E4:A1:8A","10.101.243.174","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HW9","","'+02:00","2026-04-14T17:23:44.000+02:00","SANEF\ROUVEL","Cloud Agent","00cf2620-22d3-4875-be60-bf1933c1d5ba","2025-06-05T11:55:17.000+02:00","2026-04-22T09:24:41.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"417348859","368155740","PCB20721.sanef.groupe","PCB20721","58:1C:F8:EB:3F:ED","10.101.243.18,192.168.2.132","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224CRX","","'+02:00","2026-04-20T10:52:05.000+02:00","SANEF\goumidi-ext","Cloud Agent","da0e3219-4136-4d58-9226-93c307b76c83","2026-04-20T09:07:09.000+02:00","2026-04-22T11:29:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"414070005","366934358","vpdsiasta2","VPDSIASTA2","00:50:56:90:C3:17","192.168.19.5","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","4095","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 4b 1a 43 1a 86 a4-73 0d 57 dd 41 be d0 83","NoAssetTag","'+02:00","2026-04-08T11:40:37.000+02:00","SANEF-INT\b03987","Cloud Agent","c74ddede-22d4-47da-b7f3-1e2a207d7fdc","2026-04-07T16:14:15.000+02:00","2026-04-22T09:24:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","245.0" +"216910714","252328115","vppeaabst3.sanef.groupe","","00:50:56:90:e3:b2","10.41.20.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 28 89 8d ba 81 f2-cf bf d5 9e ee c5 98 8c","No Asset Tag","'+02:00","2026-04-01T14:32:09.000+02:00","root","Cloud Agent","97b2d5d3-9e23-444a-b621-4dde2406819f","2024-02-19T14:51:50.000+02:00","2026-04-22T11:23:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,MID-NGINX DYN","327.0" +"401525321","361781537","PCV20872.sanef-int.adds","PCV20872","30:13:8B:6C:58:90","10.100.7.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q7X","","'+02:00","2026-02-17T17:19:37.000+02:00","Operateur","Cloud Agent","70ee4747-576a-45d3-8b38-a99c6b499b5f","2026-02-17T17:22:54.000+02:00","2026-04-22T09:24:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"329216178","","PCB21109.sanef.groupe","PCB21109","E4:60:17:CA:2F:6A","192.168.1.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764M2","","'+02:00","2026-04-20T09:41:43.000+02:00","SANEF\MANOUBA-ext","Cloud Agent","e64e25cf-fea3-4061-81d9-9094a95ca75d","2025-06-02T15:28:56.000+02:00","2026-04-22T09:24:11.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"176407089","229980116","vvbotbsql2.recette.adds","VVBOTBSQL2","00:50:56:9C:54:77","10.45.6.151","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 53 33 6e ce c3 e9-d6 54 d4 56 62 3b 08 6c","NoAssetTag","'+02:00","2026-03-10T12:47:12.000+02:00","RECETTE\b03987","Cloud Agent","8ef0a755-60c5-4dbc-8858-bfc5c3418d6a","2023-06-29T12:15:23.000+02:00","2026-04-22T11:21:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Windows Server,BDD-SQL DYN,Recette,OS-WIN-SRV DYN,flux_libre,FreeFlow","258.0" +"129933839","192383567","vampsycapp1.sanef.groupe","VAMPSYCAPP1","00:50:56:82:3B:B1","10.41.40.100","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24130)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","32768","Phoenix Technologies LTD 6.00","VMware-42 02 78 25 f9 51 27 d7-8c 62 04 e5 36 57 7f ae","NoAssetTag","'+01:00","2023-01-12T09:27:59.000+02:00","administrateur","Cloud Agent","0dbe825b-a6ef-4355-a084-d97c3fc92f50","2022-07-01T09:22:25.000+02:00","2026-04-22T09:24:05.000+02:00","64 bits","3","SCA,VM,PM,GAV","Windows Server 2008,Production,Sans,Patrimoine,Cloud Agent,Windows Server,MID-APACHE-TOMCAT DYN,SIG,DEX,OS-WIN-SRV DYN,Obsolete,VRF_TRAFIC_DC","530.0" +"200710325","244490967","vppeahbst1.sanef.groupe","","00:50:56:90:5f:20","192.168.31.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 24 00 49 92 a6 38-67 0d 23 53 6e bd 74 64","No Asset Tag","'+02:00","2026-04-02T06:52:57.000+02:00","root","Cloud Agent","a87f553d-d953-4403-97c1-3f7efa4e73bb","2023-11-24T12:50:45.000+02:00","2026-04-22T09:23:54.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,FreeFlow,Flux Libre,flux_libre","132.0" +"382419017","353968245","PCB25800.sanef.groupe","PCB25800","F8:ED:FC:AB:02:02","10.205.0.24,10.252.42.153","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW2","","'+02:00","2026-04-20T15:16:17.000+02:00","SANEF\NASRALLAH","Cloud Agent","59bdf40b-a40e-43d0-9651-07f80a56a2cd","2025-12-08T10:12:20.000+02:00","2026-04-22T09:23:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"352998720","341693269","PCB17804.sanef.groupe","PCB17804","28:C5:D2:9E:3E:32","10.255.2.196,10.255.2.235","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3J","","'+02:00","2026-04-13T20:55:01.000+02:00","SANEF\lacroixi","Cloud Agent","9171483b-1fcb-4af6-a2de-9bf8d1de0493","2025-08-20T09:57:26.000+02:00","2026-04-22T10:38:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"185591823","236237663","sppeaanvr27","SPPEAANVR27","D4:F5:EF:A6:65:95","10.41.7.126","fe80::86e3:1c9e:f2fe:2879","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ23300BQ9","","'+02:00","2026-02-09T11:14:09.000+02:00","Administrateur","Cloud Agent","a063ab9c-a5d5-4f50-88f8-44b9cbdc1e56","2023-09-01T10:04:47.000+02:00","2026-04-22T09:23:22.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN","523.0" +"384021056","354746955","PCV22833.sanef-int.adds","PCV22833","D0:AD:08:A3:E7:94","10.1.6.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YMM","","'+02:00","2026-02-26T17:37:30.000+02:00","Operateur","Cloud Agent","25bdbb4d-3ca7-42db-998f-52aac7f365a8","2025-12-15T15:24:08.000+02:00","2026-04-22T09:23:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"354362166","342354846","PCB20719.sanef.groupe","PCB20719","BC:0F:F3:3D:18:F4","10.4.31.70","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DSW","","'+02:00","2026-04-20T23:44:48.000+02:00","SANEF\EGRET","Cloud Agent","185e9610-fa5a-4edd-90c4-609c3bd61cec","2025-08-25T14:42:39.000+02:00","2026-04-22T09:23:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"292523826","315076953","vpsimaexp2.sanef.groupe","","00:50:56:90:87:1e, 52:54:00:94:2c:6b","10.30.10.130,192.168.122.1","fe80::15e:a51:8c8b:ddfd","Linux / Server","The CentOS Project CentOS 8.1 (1911)","8.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3940","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e9 13 5e 4f b0 a9-0e e5 c3 62 4a f8 00 fc","No Asset Tag","'+02:00","2025-11-27T14:02:58.000+02:00","cybexpapp","Cloud Agent","d1988b13-f451-461f-9eb0-596894d852d3","2025-01-15T17:40:50.000+02:00","2026-04-22T11:17:10.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server","238.0" +"320286752","328630648","PCB23589.sanef.groupe","PCB23589","6C:0B:5E:EC:ED:3F","10.12.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8G","","'+02:00","2026-04-20T14:49:53.000+02:00","SANEF\hochlander","Cloud Agent","de9a12c2-7758-4c7c-bf3f-50ca080a3aa3","2025-04-28T15:28:41.000+02:00","2026-04-22T11:43:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"321605793","329101496","PCB23793.sanef.groupe","PCB23793","6C:0B:5E:EE:93:CC","10.202.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H43","","'+02:00","2026-04-10T10:07:38.000+02:00","SANEF\vernichon","Cloud Agent","080f01d2-dce0-409f-83d0-73ab1eb61a6f","2025-05-02T16:10:17.000+02:00","2026-04-22T11:15:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"195405316","241775894","vpbotangx1.sanef.groupe","","00:50:56:90:3d:0e","10.41.23.5","fe80::250:56ff:fe90:3d0e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11728","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 2e e4 cb 20 8b 22-8e 5b 7a e8 1c ff 15 a2","No Asset Tag","'+02:00","2026-04-16T10:09:04.000+02:00","cybreconcile","Cloud Agent","9a3c5563-a956-45ac-a79a-887c2907085d","2023-10-25T00:17:46.000+02:00","2026-04-22T11:34:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,flux_libre,FreeFlow","140.0" +"151063467","206019566","PCB16012.sanef.groupe","PCB16012","F4:4E:E3:C2:DB:D9","10.255.2.216","fe80::2e8:3b5f:7eaa:2101","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC1292851","8CC1292851","'+02:00","2026-03-17T02:19:45.000+02:00","SANEF\PCI-SAPN","Cloud Agent","7391519d-8ab9-4d3a-bec1-b3b4843ca9a6","2022-12-08T04:01:21.000+02:00","2026-04-22T09:22:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"339876040","","PCB17065.sanef.groupe","PCB17065","DC:21:48:FD:24:92","10.205.1.8,192.168.1.107","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","1","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15664","HP T72 Ver. 01.06.03","5CD1438406","","'+02:00","2026-03-29T09:23:37.000+02:00","SANEF\BARBIER-ext","Cloud Agent","75347681-098d-4d8b-8b8c-fed99f23ffcc","2025-07-07T16:52:45.000+02:00","2026-04-22T09:22:38.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"177128653","230500289","MTR-2Q3J8Y3","MTR-2Q3J8Y3","6C:3C:8C:3D:5C:59","10.200.32.207","fe80::a4b6:49f8:9a23:f58","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","2Q3J8Y3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","59dc24c5-cf6b-4faf-9d92-a626bd033272","2023-07-04T22:06:52.000+02:00","2026-04-22T09:22:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"176981288","230399402","MTR-4Q3J8Y3","MTR-4Q3J8Y3","6C:3C:8C:3D:5C:4E","10.200.32.206","fe80::93fd:e837:5c7f:880e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","4Q3J8Y3","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","952e7e22-2d76-44da-805d-b8baf72c105d","2023-07-03T22:57:23.000+02:00","2026-04-22T09:22:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"322062131","329336752","PCB21577.sanef.groupe","PCB21577","D0:AD:08:A3:E6:D1","10.3.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNX","8CC3502YNX","'+02:00","2026-03-28T09:13:17.000+02:00","SANEF\guinard","Cloud Agent","b6890b77-7aa8-4bbd-aa0b-bd584e0c30ec","2025-05-05T14:58:56.000+02:00","2026-04-22T09:22:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"308848238","323875091","vrdsibetc1.sanef-rec.fr","","00:50:56:9c:97:30","10.45.1.176","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c bc dc 81 c4 8f 8f-fe bb cb a3 b5 35 b3 1c","No Asset Tag","'+02:00","2026-01-06T13:16:38.000+02:00","cybadmbdd","Cloud Agent","f18ad314-5889-40df-84bc-da4e14f2e1dd","2025-03-17T18:36:34.000+02:00","2026-04-22T10:23:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,BDD,Recette","141.0" +"394284538","358964979","MIO22805.sanef-int.adds","MIO22805","D0:AD:08:A3:7B:68","10.100.40.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YWW","","'+02:00","2026-03-24T12:01:17.000+02:00","Operateur","Cloud Agent","19b3975e-a218-4e8c-981e-142440228fc7","2026-01-22T13:41:40.000+02:00","2026-04-22T09:21:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"231599326","259376530","ls-vallee-nievre","LS-VALLEE-NIEVR","00:50:56:90:B3:B7","10.41.2.97","fe80::813e:a8f8:4d01:6b37","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 13 c3 af 21 35 30-e2 49 41 84 12 6a 7b 86","NoAssetTag","'+02:00","2026-03-04T12:18:38.000+02:00","svpadmin","Cloud Agent","e69cc6e2-effc-40f0-91df-486707c17d69","2024-04-22T16:28:06.000+02:00","2026-04-22T10:49:09.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_PEAGE_DC,High,SVP,Production,Péage,DEX,Cloud Agent,Windows Server","681.0" +"244006598","283218500","MTO22783.sanef.groupe","MTO22783","D0:AD:08:A7:28:5E","10.107.31.10","fe80::cab7:e94c:b00b:a861","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6491) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM4","","'+02:00","2026-03-24T15:20:32.000+02:00","SANEF\meteonewsW11","Cloud Agent","b7c8136f-1466-4048-a664-f17e5a34069c","2024-06-14T14:23:56.000+02:00","2026-04-22T11:17:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"269860731","299466803","SVP21075.sanef-int.adds","SVP21075","D0:AD:08:A3:7C:CB","10.5.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YY2","","'+02:00","2026-04-20T16:13:27.000+02:00","Superviseur","Cloud Agent","71304c9c-aa02-4f23-8bde-db7ebe893a2d","2024-10-03T13:18:23.000+02:00","2026-04-22T09:21:17.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Cloud Agent,Workstation","686.0" +"130588872","192836204","vmamrstg2","","00:50:56:82:2B:DE, 00:50:56:82:7A:6C, 00:50:56:82:53:09","10.32.16.11,10.30.16.11,10.33.16.11","fe80::250:56ff:fe82:2bde,fe80::250:56ff:fe82:7a6c,fe80::250:56ff:fe82:5309","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f7 1e 5b 10 bc d9-1c a0 a7 e3 c8 b3 d1 ca","No Asset Tag","'+02:00","2025-10-09T11:39:29.000+02:00","cybexpapp","Cloud Agent","91d95ee7-0c3c-4d21-b9d3-ac7535dfc197","2022-07-07T12:04:10.000+02:00","2026-04-22T11:02:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,Sans,Trafic,Obsolete,Cloud Agent,Linux Server,SSTG,log4j,DEX,VRF_INCONNUE,OS-LIN-SRV DYN","699.0" +"334435348","336780124","vrdsiasaf2.sanef-rec.fr","","00:50:56:9c:30:bd, e6:86:b8:72:47:09, 22:74:c7:88:61:f8","192.168.19.25,10.88.0.1","fe80::e486:b8ff:fe72:4709,fe80::2074:c7ff:fe88:61f8","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cf 9d 42 d5 c9 83-0d a2 ce 1c ad 0f a7 bf","No Asset Tag","'+02:00","2026-04-20T17:36:47.000+02:00","cybadmroot","Cloud Agent","1f12e31f-8021-4ebc-9f9c-64539c39a30d","2025-06-18T14:36:16.000+02:00","2026-04-22T11:19:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Radius,Recette,OS-LIN-SRV DYN","66.0" +"221331665","254244502","ls-gauchy","LS-GAUCHY","00:50:56:90:09:8B","10.41.2.46","fe80::1525:7a:e35f:f0d0","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 a2 c7 33 40 eb 81-41 f8 d6 b3 c7 4b f3 82","NoAssetTag","'+02:00","2026-04-02T15:06:12.000+02:00","svpadmin","Cloud Agent","3c21c33b-0577-447b-b5d0-eb612ca96856","2024-03-11T11:13:09.000+02:00","2026-04-22T10:37:56.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,SVP,Péage,VRF_PEAGE_DC,Production,High,Haute,OS-WIN-SRV DYN,DEX","640.0" +"221320256","254243756","vpboojump1.sanef.groupe","VPBOOJUMP1","00:50:56:90:9B:93","10.41.22.148","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 29 7a f0 2b b4 b9-7b e4 7a 10 07 5e 18 7a","NoAssetTag","'+02:00","2026-04-07T14:35:32.000+02:00","SANEF\ndead","Cloud Agent","a40050e0-a8fb-4241-a5ba-fcd7b1f654d5","2024-03-11T11:04:02.000+02:00","2026-04-22T11:03:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,flux_libre,FreeFlow,Cloud Agent,Windows Server,Production,Flux Libre","251.0" +"350543270","340465068","PCB25816.sanef.groupe","PCB25816","28:95:29:1A:F1:99","192.168.1.81","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVZ","","'+02:00","2026-04-13T10:39:50.000+02:00","SANEF\THEVENINO","Cloud Agent","8544ace6-6c54-4e93-a1f5-f5947ad6fc85","2025-08-11T12:19:48.000+02:00","2026-04-22T11:13:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"373541986","350229080","PCB23676.sanef.groupe","PCB23676","6C:0B:5E:EE:DC:ED","10.219.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5Y","","'+02:00","2026-04-07T10:09:16.000+02:00","SANEF\beaucamp","Cloud Agent","8ede0d3e-9407-4d34-bee5-c434aea3d5aa","2025-11-02T09:45:51.000+02:00","2026-04-22T11:27:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"128594047","191410264","ls-hordain","LS-HORDAIN","00:50:56:90:AE:3D","10.142.1.20","fe80::dc88:56f4:5bd:f68f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a5 ae cd 37 88 3d-80 d0 35 d7 d5 26 7e be","NoAssetTag","'+02:00","2026-03-05T16:20:07.000+02:00","svpadmin","Cloud Agent","24fd069f-0efb-4cf7-a3f6-3952c19a3cac","2022-06-21T11:42:21.000+02:00","2026-04-22T09:20:38.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,SVP,Haute,High,Péage,Production,VRF_INCONNUE,DEX","635.0" +"222570163","254822434","vpdsiaads1.sanef.groupe","VPDSIAADS1","00:50:56:8D:26:85","10.44.2.166","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 0d cb 8a 38 6c a8 38-a8 e6 97 0c 1a 10 bb 6b","NoAssetTag","'+02:00","2026-01-19T11:24:36.000+02:00","SANEF\ndead","Cloud Agent","15cf5ecf-c679-4a96-8236-f46f10635bf9","2024-03-15T16:05:17.000+02:00","2026-04-22T09:20:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,AD,DSI","349.0" +"381242008","353494697","PCB18231.sanef.groupe","PCB18231","5C:60:BA:59:EC:D8","10.100.39.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.11.00","8CC2250Y94","","'+02:00","2026-04-02T20:59:48.000+02:00","SANEF\malaise","Cloud Agent","4069b313-4f5f-4ddb-93bb-f4b736101b38","2025-12-03T11:59:00.000+02:00","2026-04-22T09:20:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"384204424","354827057","PCB24192.sanef.groupe","PCB24192","10:B6:76:97:D4:C3","10.12.31.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKV","","'+02:00","2026-04-21T15:09:59.000+02:00","SANEF\prola","Cloud Agent","1ff5b2a8-6378-45d4-b4e6-fe4bb26738b0","2025-12-16T09:53:59.000+02:00","2026-04-22T09:19:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"164432571","222938066","PCM18235.sanef.groupe","GTC18235","5C:60:BA:59:EB:2F","10.4.210.20","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y83","8CC2250Y83","'+02:00","2026-04-01T11:37:52.000+02:00","gtc-client","Cloud Agent","c50d66e5-da7a-43bf-846b-cc36478f18a5","2023-03-27T16:06:25.000+02:00","2026-04-22T09:19:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","341.0" +"314384921","326407133","vrpwdamft1.sanef-rec.fr","","00:50:56:9c:a6:f8","10.45.14.99","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c eb 57 47 6b 95 2e-35 89 f1 f3 93 72 36 7f","No Asset Tag","'+02:00","2026-03-03T15:14:49.000+02:00","cybintsys","Cloud Agent","da618b04-5c5b-41b7-af12-4070a153957f","2025-04-07T15:27:16.000+02:00","2026-04-22T11:15:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","141.0" +"151119782","206064706","PCB16046.sanef.groupe","PCB16046","F4:4E:E3:B5:B4:C7","10.255.4.237","fe80::105e:e86b:5e8c:3d80","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC1292844","8CC1292844","'+02:00","2026-04-16T06:03:08.000+02:00","SANEF\PCI-SAPN","Cloud Agent","e034cb65-5725-4a1d-b3ea-7a0978955a71","2022-12-08T13:25:03.000+02:00","2026-04-22T09:19:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,VRF_INCONNUE","341.0" +"324673744","330329922","PCB23748.sanef.groupe","PCB23748","6C:0B:5E:EE:93:42","10.5.31.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H54","","'+02:00","2026-04-08T16:12:57.000+02:00","SANEF\vermersch","Cloud Agent","584980ae-a528-4e80-82d7-0ce747d71634","2025-05-14T11:22:51.000+02:00","2026-04-22T11:41:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"365862687","347089712","vppcmardp1.sanef-int.adds","VPPCMARDP1","00:50:56:94:59:F0","10.44.6.228","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 14 4c 0b 72 3b fc dc-88 fd e3 38 b6 df 6e ca","NoAssetTag","'+02:00","2025-09-25T17:39:43.000+02:00","Administrateur","Cloud Agent","9cb08c2e-2709-42c9-b8e1-02fe2d42f718","2025-10-06T16:00:07.000+02:00","2026-04-22T09:19:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","346.0" +"378081562","352327711","PCV21568.sanef-int.adds","PCV21568","D0:AD:08:A3:7C:CC","10.210.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YY3","","'+02:00","2026-04-21T20:59:56.000+02:00","Operateur","Cloud Agent","07e4dd59-b5f7-42f9-8eee-74eccd8664cf","2025-11-20T16:53:35.000+02:00","2026-04-22T11:24:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"393319958","358592292","VRVPNARAD2.recette.adds","VRVPNARAD2","00:50:56:9C:57:2E","10.45.14.137","fe80::5d01:71f5:3806:a503","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24241)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 1c 48 50 b9 78 ff 6c-72 93 79 f8 a0 74 6f fb","NoAssetTag","'+01:00","2026-01-19T14:10:17.000+02:00","recette.adds\A17904","Cloud Agent","be5196b7-8338-4a4c-9252-fddbb87544c4","2026-01-19T13:40:55.000+02:00","2026-04-22T09:18:50.000+02:00","64 bits","2","SCA,VM,PM,GAV","Obsolete,Windows Server 2008,Cloud Agent,OS-WIN-SRV DYN,Recette,Radius,DSI","358.0" +"343658306","338037179","PCB21079.sanef.groupe","PCB21079","64:4E:D7:B7:03:5C","10.220.31.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD336NWF7","","'+02:00","2026-04-16T10:36:45.000+02:00","SANEF\buchy","Cloud Agent","2f697bcb-43a2-4c90-b973-64dfcc2ed328","2025-07-21T11:10:04.000+02:00","2026-04-22T09:18:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"215213361","251725808","ls-fecamp","LS-FECAMP","00:50:56:90:52:F6","10.41.2.85","fe80::e219:a7df:edf5:b512","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 14 c0 3c e8 78 97-63 00 8b 0f 83 d0 ac f7","NoAssetTag","'+02:00","2026-04-02T14:17:53.000+02:00","svpadmin","Cloud Agent","b1ea819e-1f77-4091-be6a-1e5df02612de","2024-02-12T15:42:41.000+02:00","2026-04-22T09:18:45.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Péage,High,VRF_PEAGE_DC,VRF_BACKUP_DC,Production,SVP,DEX,OS-WIN-SRV DYN,Haute","633.0" +"340425872","","PCB21311.sanef.groupe","PCB21311","30:F6:EF:A6:94:01","10.205.0.126,192.168.0.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK8","","'+02:00","2026-04-22T09:06:34.000+02:00","SANEF\LAFANECHAIRE","Cloud Agent","597ce890-49fc-40d0-9670-2661d1d1ff27","2025-07-09T11:57:26.000+02:00","2026-04-22T09:18:33.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"174236004","228465185","sppeaanvr20","SPPEAANVR20","D4:F5:EF:8A:BB:C9","10.41.7.119","fe80::e171:d14e:2d1b:56e4","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ222807H5","","'+02:00","2026-02-24T11:30:13.000+02:00","admin_astia","Cloud Agent","17300772-663d-4f1b-8bad-30fae4ed503d","2023-06-13T11:52:27.000+02:00","2026-04-22T09:18:17.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN,DEX","524.0" +"327821307","","PCB23704.sanef.groupe","PCB23704","6C:0B:5E:ED:A2:5F","10.207.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4Y","","'+02:00","2026-04-14T13:51:35.000+02:00","SANEF\BOITHEAUVILLE","Cloud Agent","fe1c18be-3ef5-41d7-8e5e-5ac5948cecda","2025-05-28T16:03:17.000+02:00","2026-04-22T09:18:14.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"319344986","328395345","PCB22880.sanef.groupe","PCB22880","60:45:2E:11:61:2E","10.255.2.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLX","8CC3502YLX","'+02:00","2026-03-28T09:11:39.000+02:00","SANEF\bocquetp","Cloud Agent","063ac1c2-780d-48fb-a770-b118e659eae2","2025-04-25T11:01:08.000+02:00","2026-04-22T09:18:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"320134630","328623085","PCB23543.sanef.groupe","PCB23543","6C:0B:5E:EC:DD:1F","10.202.31.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9H","","'+02:00","2026-03-30T10:56:10.000+02:00","SANEF\drancourt","Cloud Agent","2618ba77-5932-46b1-96c0-c017aa93a2ee","2025-04-28T14:07:07.000+02:00","2026-04-22T10:45:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"281019343","305755498","PCB21345.sanef.groupe","PCB21345","D0:AD:08:AA:50:35","10.202.31.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HK","","'+02:00","2026-04-02T08:26:31.000+02:00","SANEF\dutac","Cloud Agent","c0c93a6a-deef-4133-961f-222e4faeada3","2024-11-21T13:44:15.000+02:00","2026-04-22T10:58:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"245297076","286388417","MTO21617.sanef.groupe","MTO21617","D0:AD:08:A4:4D:B9","10.3.31.9","fe80::105d:ac51:2457:de8d","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5472) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JP","","'+02:00","2025-07-23T11:51:49.000+02:00","SANEF\meteonewsW11","Cloud Agent","bbd01cf1-9dca-4cbb-b927-3afbe82bf43a","2024-06-20T14:22:23.000+02:00","2026-04-22T09:18:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"128143157","191077229","VBURWDC2.sanef.groupe","VBURWDC2","00:50:56:82:52:8E","10.30.12.40","fe80::7014:70a5:68c4:26e6","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 15 6d 18 25 c8 17-e4 1a 7e 5c 79 e4 2a c1","NoAssetTag","'+02:00","2026-02-25T10:47:44.000+02:00","SANEF.GROUPE\ndead@sanef","Cloud Agent","e5142ccb-feb7-4072-80fe-75d764f1522e","2022-06-16T12:02:00.000+02:00","2026-04-22T10:55:23.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Critical,DSI,OS-WIN-SRV DYN,VRF_INCONNUE,Cloud Agent,AD,Windows Server,High,Sécurité IT,Production","834.0" +"323214900","329825072","vpgawagtw2.sanef.groupe","","00:50:56:90:af:75","192.168.19.69","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 a2 a7 3f 9c c9 45-93 6b dc 19 a0 61 18 92","No Asset Tag","'+02:00","2026-02-12T15:49:52.000+02:00","cybreconcile","Cloud Agent","eec93e93-8c18-4f5d-97cd-042afbb897d4","2025-05-09T15:39:10.000+02:00","2026-04-22T11:17:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Production,OS-LIN-SRV DYN","142.0" +"417998396","368435201","PCV21151.sanef-int.adds","PCV21151","D0-AD-08-A3-E7-29","10.209.7.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","8CC3502YXR","","'+02:00","","","Cloud Agent","9a24cbb6-9061-4b89-99b8-00751bbd1207","2026-04-22T09:17:40.000+02:00","2026-04-22T09:17:39.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"195878803","241974731","vpbotapps3.sanef.groupe","","00:50:56:90:76:49","10.41.23.16","fe80::250:56ff:fe90:7649","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 20 59 d5 ce 99 14-bc 60 18 a2 3f 67 4d d4","No Asset Tag","'+02:00","2026-04-16T11:25:45.000+02:00","cybreconcile","Cloud Agent","9aba982e-6ce9-477c-95e1-4033af8e070f","2023-10-26T22:36:47.000+02:00","2026-04-22T10:49:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,flux_libre,Production,FreeFlow","337.0" +"337904983","335605077","PCB21313.sanef.groupe","PCB21313","30:F6:EF:A5:F8:CF","10.255.4.185,10.255.4.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK9","","'+02:00","2026-04-20T08:32:43.000+02:00","SANEF\COLLIN","Cloud Agent","affba782-03e0-4234-9b6b-6f6b9c064530","2025-07-01T11:23:51.000+02:00","2026-04-22T11:02:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"228081514","257333517","MTR-JBD4804","MTR-JBD4804","6C:3C:8C:56:3C:4A","10.220.32.201","fe80::1acf:5ea8:e80c:bdf6","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","JBD4804","","'+02:00","2026-04-22T02:32:49.000+02:00","Skype","Cloud Agent","3581fabd-55ef-4925-bfb9-339dccff1dc7","2024-04-06T12:23:10.000+02:00","2026-04-22T09:17:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"195865806","241965090","MTR-3Q3J8Y3","MTR-3Q3J8Y3","6C:3C:8C:3D:5C:58","10.106.32.200","fe80::ea2d:4fb:fbdf:7e55","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","3Q3J8Y3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","e62ae7ef-28bc-4d33-855c-a3594c109ef1","2023-10-26T19:30:32.000+02:00","2026-04-22T09:17:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"417984458","368435200","PCB17963.sanef.groupe","PCB17963","70-A8-D3-85-75-E2, 70-A8-D3-85-75-E5, 84-69-93-E1-1A-AA, 70-A8-D3-85-75-E1","10.252.4.9","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045)","22H2","Computers / Unidentified","Computers","","","","","","5CG217247C","","'+02:00","","","Cloud Agent","e6994c46-1d84-4097-97a4-5c1e7f76f3d8","2026-04-22T09:17:05.000+02:00","2026-04-22T09:17:04.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"239805777","272494035","SVP20943.sanef-int.adds","SVP20943","BC:0F:F3:87:6F:A8","10.22.3.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLT","","'+02:00","2026-04-21T08:20:05.000+02:00","Superviseur","Cloud Agent","3068eda4-2f1d-43a5-9df6-af04d67d164f","2024-05-28T11:14:33.000+02:00","2026-04-22T09:17:01.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Cloud Agent,Workstation","686.0" +"131405384","193423787","vmzeus.sanef.groupe","","00:50:56:AC:00:D4","192.168.230.23","fe80::250:56ff:feac:d4","Linux / Server","The CentOS Project CentOS 6.3","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 2c bf eb 40 21 87 89-83 89 7e f9 55 05 97 8d","No Asset Tag","'+02:00","2023-01-12T08:58:29.000+02:00","cybreconcile","Cloud Agent","cf37f0d2-c026-4734-905d-405ee885e85c","2022-07-13T10:28:24.000+02:00","2026-04-22T11:25:17.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Cloud Agent,Linux Server,VRF_INCONNUE,TAG-SRVEXPOSEINDIRECT,DMZ,Trafic,Sans,Production,DEX,ServersInCyberark,log4j,Obsolete","704.0" +"335459248","334613200","PCB24106.sanef.groupe","PCB24106","48:EA:62:C8:93:55","10.1.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V70","","'+02:00","2026-04-10T12:11:12.000+02:00","SANEF\marteau","Cloud Agent","2f75d5ff-cd0c-4461-aedf-80f5947b44a3","2025-06-23T10:46:40.000+02:00","2026-04-22T11:17:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"398238102","360591179","vpdsibetc3.sanef.groupe","","00:50:56:9c:5c:2d","10.100.16.23","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 4f f3 e2 f9 ae f4-7c 6e c7 6a 08 df 0f fc","No Asset Tag","'+02:00","2026-02-11T18:52:14.000+02:00","cybadmbdd","Cloud Agent","abe171ad-3577-40ab-94e5-0b1c840ae86f","2026-02-06T13:31:16.000+02:00","2026-04-22T11:21:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","141.0" +"408850859","364704148","PCB18738.sanef.groupe","PCB18738","BC:0F:F3:3B:C9:EB","10.4.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D41","","'+02:00","2026-04-22T08:20:56.000+02:00","SANEF\gayr","Cloud Agent","7c5319b6-0b1a-4725-ac9b-8a8330bb8a4b","2026-03-16T19:15:13.000+02:00","2026-04-22T09:16:50.000+02:00","64-Bit","2","SCA,VM,GAV","Cloud Agent,Workstation","251.0" +"221336958","254247420","ls-maurepas","LS-MAUREPAS","00:50:56:90:05:0A","10.41.2.31","fe80::d9c:cf42:1198:8884","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 5b d4 aa 6d e3 7d-f2 67 88 9c 2b 38 35 5f","NoAssetTag","'+02:00","2026-03-02T10:22:14.000+02:00","svpadmin","Cloud Agent","062722b3-56c4-4ec6-a95a-0b374e4c9efc","2024-03-11T11:40:39.000+02:00","2026-04-22T09:16:48.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,SVP,Haute,DEX,VRF_PEAGE_DC,Production,High,Péage","635.0" +"213853706","251126285","spasuagsm2","","5c:ed:8c:3f:33:fc, 5c:ed:8c:3f:33:fd","10.41.40.207,10.43.4.207","fe80::5eed:8cff:fe3f:33fc,fe80::5eed:8cff:fe3f:33fd","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31672","HPE U32 07/14/2022","CZJ81900F1","","'+02:00","2025-06-16T15:47:42.000+02:00","cybastapp","Cloud Agent","8800916c-6443-4be9-8689-6b6841ddca21","2024-02-05T19:50:23.000+02:00","2026-04-22T11:03:48.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,MID-NGINX DYN,Cloud Agent,Linux Server,DSI,Obsolete,ASUR","524.0" +"127865511","190913856","VPAIIADNS1","VPAIIADNS1","00:50:56:82:7C:B9","192.168.2.20","fe80::94b8:1537:fac0:f118","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 90 78 52 3a f8 28-15 96 cf 41 4b 81 3f dc","NoAssetTag","'+02:00","2026-04-15T10:24:17.000+02:00","Administrateur","Cloud Agent","de3fe0bf-bfc9-43a5-a8d2-7a44d3b2f4cc","2022-06-14T16:17:10.000+02:00","2026-04-22T09:16:33.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Critical,Windows Server,OS-WIN-SRV DYN,DNS,High,TAG-SRVEXPOSEINTERNET,Production,Reseau & Telecom,DMZ,SED,Réseaux et Télécom,VRF_INCONNUE,Haute,Cloud Agent","0.0" +"395567531","359520752","vrsigaapp2.sanef-rec.fr","","00:50:56:9c:bc:3e","10.45.2.32","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c a3 8f 33 b2 56 99-1b 87 72 b5 4a ca 23 3a","No Asset Tag","'+02:00","2026-02-05T16:26:02.000+02:00","cybsupapp","Cloud Agent","7803e67a-7128-4ff4-beab-7e22ae0aeed1","2026-01-28T11:52:38.000+02:00","2026-04-22T11:24:25.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent","214.0" +"322379733","329453940","PCB22789.sanef.groupe","PCB22789","D0:AD:08:A3:E7:A8","10.1.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YL6","8CC3502YL6","'+02:00","2026-02-28T14:40:56.000+02:00","SANEF\bastienn","Cloud Agent","f0d2cee4-a97d-4b57-a631-61c1f4eafe16","2025-05-06T14:48:58.000+02:00","2026-04-22T09:16:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"227708370","257227447","ls-bonsecours","LS-BONSECOURS","00:50:56:90:E7:B6","10.41.2.24","fe80::b109:f1d3:21e8:dabf","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 85 63 5d ff a0 fe-d8 59 d4 19 07 c2 45 6c","NoAssetTag","'+02:00","2026-03-05T11:34:28.000+02:00","svpadmin","Cloud Agent","117617fd-0217-4dc2-a8c4-fedc56965743","2024-04-05T11:06:13.000+02:00","2026-04-22T09:15:35.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,VRF_PEAGE_DC,Péage,Production,SVP,High","508.0" +"296278413","317659764","REX21552.sanef-int.adds","REX21552","D0:AD:08:A3:E6:B6","10.100.91.80","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSH","","'+02:00","2026-03-31T22:45:15.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","598d7f7d-1e0b-40d3-ba3d-2f2538340d10","2025-01-30T17:51:34.000+02:00","2026-04-22T09:15:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"382445576","353976183","PCB25864.sanef.groupe","PCB25864","28:95:29:1A:FE:B9","10.255.2.190,10.255.2.183","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTM","","'+02:00","2026-04-17T08:24:03.000+02:00","SANEF\BRAUNV","Cloud Agent","f0528872-5c6d-4221-ad1c-e1fe116a087e","2025-12-08T11:12:31.000+02:00","2026-04-22T11:25:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","256.0" +"395087644","359305705","MIO22295.sanef-int.adds","MIO22295","D0:AD:08:A3:7D:E6","10.12.40.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YZ0","","'+02:00","2026-03-20T01:27:05.000+02:00","Operateur","Cloud Agent","6e35eb93-f268-4c85-828f-5335b7a537fc","2026-01-26T15:17:55.000+02:00","2026-04-22T09:15:14.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","686.0" +"368962198","348265321","PCB16110.sanef.groupe","PCB16110","50:81:40:B9:E0:84","10.220.31.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.22.00","5CG13363Y8","","'+02:00","2026-03-29T16:25:25.000+02:00","catherine.balland@sapn.fr","Cloud Agent","b8c5699f-6b44-4e22-a74e-2398ccc2bdaf","2025-10-15T16:41:45.000+02:00","2026-04-22T11:24:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","59.0" +"280845992","305646178","PCB22508.sanef.groupe","PCB22508","D0:AD:08:AA:50:98","10.202.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LR","","'+02:00","2026-04-14T12:57:07.000+02:00","SANEF\linsey","Cloud Agent","c104ecf3-de33-4d0b-b93d-7810c1af8c52","2024-11-20T18:41:56.000+02:00","2026-04-22T09:14:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"384053776","354760696","PCB21704.sanef.groupe","PCB21704","E4:60:17:CB:7C:99","10.205.0.105,10.255.2.230","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764GK","","'+02:00","2026-04-21T10:28:13.000+02:00","SANEF\demant-ext","Cloud Agent","e3a0aeec-aaf8-410a-8f4f-a6dc117c0cc1","2025-12-15T17:31:56.000+02:00","2026-04-22T11:19:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","240.0" +"292527147","315087804","VMXATR","VMXATR","00:50:56:82:50:8D","10.30.4.16","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5909) 64-Bit","23H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 20 e7 74 46 31 95-e3 ff 71 96 fe 53 33 cd","NoAssetTag","'+02:00","2025-10-24T11:51:17.000+02:00","SANEF\TRON","Cloud Agent","bfd3345d-2f6a-43dc-b5a1-7e3bd0940e2c","2025-01-15T19:13:56.000+02:00","2026-04-22T09:14:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"376166689","351397563","PCB18006.sanef.groupe","PCB18006","C0:18:03:85:64:C6","10.200.31.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206174H","8CC206174H","'+02:00","2026-04-02T09:24:13.000+02:00","SANEF\DEBRABANDERS","Cloud Agent","1541bfe4-6de6-485e-a68d-9e7ae154a5f6","2025-11-12T16:24:30.000+02:00","2026-04-22T11:41:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"411855378","365824048","vpgraangx1.sanef.groupe","","00:50:56:90:8b:59","10.42.0.142","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 44 42 cd fa c0 bd-a4 c6 96 d6 0c 4a 13 af","No Asset Tag","'+02:00","2026-04-07T11:36:53.000+02:00","cybreconcile","Cloud Agent","a9b653c5-ab52-447c-95ce-7d1bf7895047","2026-03-27T12:14:02.000+02:00","2026-04-22T11:10:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,BDD-POS DYN","65.0" +"335450613","","PCB21363.sanef.groupe","PCB21363","D0:AD:08:AA:50:10","10.100.39.187","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GC","","'+02:00","2026-04-01T09:35:46.000+02:00","SANEF\NGATCHUINKOM-ext","Cloud Agent","4d5881d0-651a-4f0c-9706-d4bb4ddd0926","2025-06-23T10:02:38.000+02:00","2026-04-22T09:14:07.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"225965686","256326011","vrsvpasan2","VRSVPASAN2","00:50:56:9C:65:22","10.45.9.169","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c ae 93 39 e2 a2 7d-25 dd bf e1 9d c7 f0 71","NoAssetTag","'+02:00","2026-02-17T15:10:14.000+02:00","svpadmin","Cloud Agent","0f6de576-7932-44c0-9b4e-07a10629c3cb","2024-03-28T12:15:29.000+02:00","2026-04-22T10:53:58.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Recette,Péage,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX","513.0" +"349735151","340111943","vrechbetl1.sanef-rec.fr","","00:50:56:9c:90:9a","10.45.11.205","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c bf da b2 9d 19 a5-a9 78 ff 0a 0c 62 87 03","No Asset Tag","'+02:00","2026-03-03T15:14:41.000+02:00","cybadmbdd","Cloud Agent","b09b590c-0132-4260-96f1-1ebd72a613ef","2025-08-07T10:26:35.000+02:00","2026-04-22T10:29:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,MID-NGINX DYN,BDD-POS DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","341.0" +"331182695","","PCB23554.sanef.groupe","PCB23554","6C:0B:5E:EC:3E:26","10.255.4.209,10.209.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9L","","'+02:00","2026-04-09T10:01:53.000+02:00","SANEF\cozettea","Cloud Agent","1aca768a-c5eb-41f2-b348-00dbdd4bed07","2025-06-05T15:42:42.000+02:00","2026-04-22T09:13:45.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"171882719","226859038","vpdsiatse2.sanef.groupe","VPDSIATSE2","00:50:56:8D:0E:0C","10.44.2.44","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2800","INTEL(R) XEON(R) GOLD 6526Y","4095","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 0d 89 bf 7b af 91 4c-5e 17 fa 5f 8a ce 72 d7","NoAssetTag","'+02:00","2026-04-13T14:02:32.000+02:00","SANEF\ndead","Cloud Agent","ad4adcad-ef79-493b-9533-bf4124b63af8","2023-05-26T10:15:29.000+02:00","2026-04-22T10:37:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Rebond,OS-WIN-SRV DYN,Cloud Agent,Windows Server","250.0" +"379762503","352976791","spbckamag4.sanef.groupe","","04:bd:97:22:cb:7c, 04:bd:97:22:cb:7d","10.42.16.76,10.43.1.37","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP260706B5","Unknown","'+02:00","2025-12-29T10:04:17.000+02:00","root","Cloud Agent","cb4430b2-9f67-42d2-95fa-e8725944b59e","2025-11-27T12:50:22.000+02:00","2026-04-22T11:26:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","330.0" +"163883347","219041521","vpppeaanvr1.sanef.groupe","VPPPEAANVR1","00:50:56:82:05:DB","10.41.79.50","fe80::ea49:724c:109e:bc32","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8146) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 13 c7 7b 8b f0 b9-33 dc 79 96 2b 02 c7 51","NoAssetTag","'+02:00","2026-01-08T17:00:26.000+02:00","SANEF\administrateur","Cloud Agent","2d3e48dd-065d-4e8f-8075-d5f73c8aef00","2023-03-22T15:00:58.000+02:00","2026-04-22T09:13:21.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN,DEX","510.0" +"240210698","274093899","vpbotardp1.sanef.groupe","VPBOTARDP1","00:50:56:90:85:F3","10.44.6.133","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3091) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 10 8f 5f de 7a 6c-45 1a fb 03 18 8b 22 60","NoAssetTag","'+02:00","2026-04-21T09:53:49.000+02:00","SANEF\ndead","Cloud Agent","5194e5a1-81d0-41f6-9b85-b4792dd37e37","2024-05-29T18:00:12.000+02:00","2026-04-22T09:13:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,Production,flux_libre,Flux Libre","344.0" +"326661934","331288841","vpvsampci1","","00:50:56:86:a6:2f","192.168.109.14","fe80::250:56ff:fe86:a62f","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 15 bb e6 f2 ce 4f-d9 ca da c3 6d 16 08 1e","No Asset Tag","'-04:00","2026-02-02T11:43:11.000+02:00","tbaad","Cloud Agent","6a2f41d1-c22e-4da7-bb28-e4f6c4561178","2025-05-22T17:19:59.000+02:00","2026-04-22T11:25:59.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server","52.0" +"326550094","","PCB18056.sanef.groupe","PCB18056","64:D6:9A:21:81:A8","10.255.1.192","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.19.00","5CG2376HRM","","'+02:00","2026-04-13T10:00:23.000+02:00","SANEF\BOUGAM-ext","Cloud Agent","055130cb-0f8f-488f-b864-f754878df337","2025-05-22T10:02:15.000+02:00","2026-04-22T09:13:11.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"387454382","356650111","PCB21205.sanef.groupe","PCB21205","D0:AD:08:AA:50:5C","10.220.31.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764JT","","'+02:00","2026-04-01T08:44:44.000+02:00","maryse.guchez@sapn.fr","Cloud Agent","400536d4-c796-4106-8311-84de2cb7e0ea","2026-01-02T13:06:17.000+02:00","2026-04-22T09:13:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"397490169","360376397","vmmvscdem5.sanef-int.adds","VMMVSCDEM5","00:50:56:90:EB:7A","10.41.7.239","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 07 51 05 bb f3 44-3a bd 9d cf 3c 2d 39 62","NoAssetTag","'+02:00","2026-02-05T12:59:37.000+02:00","Operateur","Cloud Agent","9f2d31c5-772a-41ca-b8db-bd3a42852b90","2026-02-04T18:58:42.000+02:00","2026-04-22T09:12:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"360465499","","PCB18488.sanef.groupe","PCB18488","D0:AD:08:AA:4F:ED","10.101.243.209","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764F7","","'+02:00","2026-04-15T12:11:36.000+02:00","SANEF\BLOMMAERS-ext","Cloud Agent","e76b5923-2e91-4a35-9a71-956b4522a53f","2025-09-17T10:45:14.000+02:00","2026-04-22T09:12:52.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"324041162","","PCB17959.sanef.groupe","PCB17959","84:69:93:E1:1A:90","10.205.0.131,10.200.31.68","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG217247K","","'+02:00","2026-03-31T09:01:17.000+02:00","nathalie.lucas@sapn.fr","Cloud Agent","ca82a0cc-a870-494d-8b13-e75433c08688","2025-05-12T13:11:51.000+02:00","2026-04-22T09:12:48.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"328573634","","PCB17653.sanef.groupe","PCB17653","D0:AD:08:E4:A1:34","10.101.243.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HV4","","'+02:00","2026-04-20T08:47:20.000+02:00","SANEF\OAKES","Cloud Agent","ced63ed6-a7e7-471f-8679-1cc5febfaeaf","2025-05-30T09:55:17.000+02:00","2026-04-22T09:12:41.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129846416","192318805","sppeaanvr3","SPPEAANVR3","98:F2:B3:2C:DF:09","10.41.7.102","fe80::a4c6:8217:b153:8c44","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLY","","'+02:00","2026-01-28T12:15:03.000+02:00","Administrateur","Cloud Agent","90f603c1-a753-449e-bfb5-91d6ff4dc81f","2022-06-30T18:33:47.000+02:00","2026-04-22T09:12:31.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,NVR,Production,Exploitation,Sans","523.0" +"350890895","340948388","PCB22716.sanef.groupe","PCB22716","D0:AD:08:AA:50:4C","10.220.31.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764J9","","'+02:00","2026-04-01T08:43:46.000+02:00","SANEF\guchez","Cloud Agent","84c2f600-f690-4655-835c-75165cdaf134","2025-08-12T17:01:40.000+02:00","2026-04-22T09:12:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"128614386","191424347","ls-noeux-les-mines","LS-NOEUX-LES-MI","00:50:56:90:27:A2","10.41.2.52","fe80::4269:744d:a98c:4b49","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 59 a8 af 2d 2d 0c-13 7c f0 c1 bc 81 f1 39","NoAssetTag","'+02:00","2026-03-02T12:08:29.000+02:00","svpadmin","Cloud Agent","f0f12919-02a0-441f-a4a2-01003b840f00","2022-06-21T15:39:44.000+02:00","2026-04-22T09:12:06.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,SVP,VRF_PEAGE_DC,OS-WIN-SRV DYN,Production,Péage,High,Windows Server,DEX","508.0" +"359192054","","PCB20651.sanef.groupe","PCB20651","58:1C:F8:EB:78:B4","10.255.4.208","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG3224D39","","'+02:00","2026-04-02T12:13:00.000+02:00","SANEF\leclercqm","Cloud Agent","3e4e785c-d4ac-41bb-b17d-8ed6ba0eb7ff","2025-09-12T15:30:46.000+02:00","2026-04-22T09:11:58.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"129304240","191926060","LPDECABI42.sanef.groupe","LPDECABI42","00:17:A4:77:14:C6","10.30.11.131","","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19460) 64-Bit","6.3","Computers / Server","HPE ProLiant BL460c G8 Server","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","32733","HP I31","CZJ30503GB","","'+02:00","2025-10-08T14:46:34.000+02:00","LPDECABI42\CYBSUPAPP","Cloud Agent","21efd861-7420-47ea-ad04-071c401a0eec","2022-06-27T10:05:46.000+02:00","2026-04-22T11:21:29.000+02:00","64-Bit","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,TAG-SRVEXPOSEINDIRECT,BusinessObjects,DFIN,Obsolete,VRF_INCONNUE","701.0" +"225456379","256081081","vpssiandes1.sanef.groupe","VPSSIANDES1","00:50:56:82:E4:9F","192.168.162.80","fe80::abae:eaa2:a3ba:de4e","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","4095","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 2f 94 e7 46 32 cf-4e 17 6b ba da 12 23 26","NoAssetTag","'+02:00","2026-04-15T10:00:24.000+02:00","SANEF\kmoad-ext","Cloud Agent","5007963b-35d1-4095-b63f-6786f9e9de93","2024-03-26T12:48:19.000+02:00","2026-04-22T11:01:45.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Gestion_PKI,DSI,TAG-SRVEXPOSEINTERNET,Production,OS-WIN-SRV DYN,Critical,Cloud Agent,Windows Server","0.0" +"324980888","","PCB17797.sanef.groupe","PCB17797","28:C5:D2:9E:44:C7","10.200.31.18,10.255.3.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3L","","'+02:00","2026-04-21T08:56:59.000+02:00","SANEF\cloarec","Cloud Agent","479a2dc4-3b0d-48ba-b74b-04f900e3553e","2025-05-15T12:11:21.000+02:00","2026-04-22T09:11:41.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"284376210","","SVP22888.sanef-int.adds","SVP22888","D0:AD:08:A3:7D:BE","10.92.11.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNL","","'+02:00","2026-04-19T10:23:39.000+02:00","Superviseur","Cloud Agent","577bf64e-243b-42d2-8773-a85e6b5b02c9","2024-12-05T12:52:08.000+02:00","2026-04-22T09:11:40.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"216433861","252120323","vipeabbst3.sanef.groupe","","00:50:56:90:54:5a","10.41.29.57","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 49 8a d6 d3 ea cd-8d 24 21 de 81 e6 be a2","No Asset Tag","'+02:00","2026-03-19T11:29:37.000+02:00","cybsecope","Cloud Agent","5fc11800-9ca1-4f11-af69-552f915f6a7c","2024-02-16T15:41:51.000+02:00","2026-04-22T11:10:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,Production,flux_libre,ServersInCyberark,FreeFlow","141.0" +"381245853","353496449","PCB22342.sanef.groupe","PCB22342","D0:AD:08:A7:27:D4","10.252.42.139","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YT4","8CC3502YT4","'+02:00","2026-04-09T10:30:55.000+02:00","SANEF\roiret","Cloud Agent","f999fc07-4134-4674-b952-a0110722b6ac","2025-12-03T12:13:52.000+02:00","2026-04-22T09:11:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"379088425","352746595","PCB25877.sanef.groupe","PCB25877","4C:CF:7C:0A:5C:48","10.252.42.143","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534223T","","'+02:00","2026-04-21T09:33:38.000+02:00","SANEF\bruchet","Cloud Agent","4fd2cf28-055d-4817-94cb-bae73b9bf718","2025-11-25T10:04:24.000+02:00","2026-04-22T10:43:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"323157321","329798940","PCB22893.sanef.groupe","PCB22893","D0:AD:08:A3:7B:D1","10.189.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVX","8CC3502YVX","'+02:00","2026-03-31T08:10:22.000+02:00","SANEF\muckem","Cloud Agent","05aa9501-9f4a-45eb-9d6b-ca3d80192d33","2025-05-09T10:30:27.000+02:00","2026-04-22T09:11:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"406548815","363699006","vrboeacst1.recette.adds","VRBOEACST1","00:50:56:9C:62:EF","10.45.6.195","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 95 51 0e 28 95 5e-d2 58 ce c0 40 6e 91 47","NoAssetTag","'+02:00","2026-03-06T18:06:38.000+02:00","Administrateur","Cloud Agent","a5432457-2af3-44ad-8954-917c43b8f073","2026-03-06T16:09:28.000+02:00","2026-04-22T10:51:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Recette,Péage,OS-WIN-SRV DYN,Cloud Agent","252.0" +"321549896","329078653","PCB23643.sanef.groupe","PCB23643","C8:6E:08:88:F0:90","10.255.3.156,10.255.3.152","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6W","","'+02:00","2026-03-30T09:54:35.000+02:00","boris.lembicz@sapn.fr","Cloud Agent","cebc1943-ff69-471f-9f19-9c6c22b6b486","2025-05-02T11:46:20.000+02:00","2026-04-22T11:22:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"170566947","226000752","GTC-CLIENT1.sanef.groupe","VPTCHCGTC1","00:50:56:82:B6:9F","10.41.19.50","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 63 34 22 b1 29 7f-48 17 ff 28 0e c8 db e9","NoAssetTag","'+02:00","2026-04-01T11:18:49.000+02:00","gtc-client","Cloud Agent","cfffb368-8304-4f1b-a65b-0412668901d6","2023-05-17T11:48:29.000+02:00","2026-04-22T09:11:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","347.0" +"178991227","231837430","vpsasawrk3.sanef.groupe","","00:50:56:9c:08:ff","10.41.32.12","fe80::250:56ff:fe9c:8ff","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 05 9f ea 75 e2 6c-6f 45 41 2c 6a bc 29 63","No Asset Tag","'+02:00","2026-03-25T16:06:58.000+02:00","cybreconcile","Cloud Agent","c455e000-b143-4198-bc50-41b8f3799add","2023-07-18T15:56:36.000+02:00","2026-04-22T11:32:10.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,DSI,SAS","86.0" +"232513887","259823391","lrpeabsip1.sanef-rec.fr","","3e:33:fb:a0:00:b8","10.45.1.35","fe80::3c33:fbff:fea0:b8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200Q","/n/Bios Asset Tag :","'+02:00","2026-02-23T10:43:04.000+02:00","cybintsys","Cloud Agent","16c30fdc-aad2-4abe-b866-621ec7a92981","2024-04-26T11:53:58.000+02:00","2026-04-22T11:20:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Péage","336.0" +"395038420","359284786","MIO22267.sanef-int.adds","MIO22267","D0:AD:08:A3:7B:C7","10.200.40.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.19.01","8CC3502YW5","","'+02:00","2026-04-19T14:51:01.000+02:00","Operateur","Cloud Agent","8cf0dc27-1b83-4a4d-99c1-a5c9a75d20e5","2026-01-26T11:38:44.000+02:00","2026-04-22T09:10:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"327559932","","PCB23540.sanef.groupe","PCB23540","C8:6E:08:8A:40:8A","192.168.1.200,169.254.188.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L63","","'+02:00","2026-04-21T09:17:15.000+02:00","SANEF\CAITTE","Cloud Agent","68550df3-3a5d-48f1-844c-f40d722db25c","2025-05-27T13:59:40.000+02:00","2026-04-22T09:10:44.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"379103170","352748171","PCB25885.sanef.groupe","PCB25885","4C:CF:7C:0A:5C:7B","10.252.42.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534223H","","'+02:00","2026-04-14T08:05:30.000+02:00","SANEF\bellet","Cloud Agent","907d2529-3bcb-4a9a-8c2f-83f09779c2a9","2025-11-25T10:20:13.000+02:00","2026-04-22T09:10:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"296257160","317657677","REX21541.sanef-int.adds","REX21541","D0:AD:08:A7:28:54","10.45.11.237","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YP4","","'+02:00","2025-05-16T09:27:30.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","bc46f105-30dc-4d56-9d74-e2a0f4468eae","2025-01-30T17:20:24.000+02:00","2026-04-22T09:10:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"228420904","257495029","ls-hochfelden","LS-HOCHFELDEN","00:50:56:90:84:20","10.41.2.117","fe80::6dad:fe0a:3482:80d","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 e1 6b cb 61 e8 d0-4a 82 59 89 c2 02 7c 7e","NoAssetTag","'+02:00","2026-03-05T15:48:41.000+02:00","svpadmin","Cloud Agent","f46daa1b-a5c3-41f1-8cc7-0eae8a3d7969","2024-04-08T11:18:02.000+02:00","2026-04-22T09:10:00.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP","681.0" +"236870596","266161822","ls-st-jean","LS-ST-JEAN","00:50:56:90:19:C7","10.41.2.62","fe80::7080:49e1:cf62:4676","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 5c f6 b4 59 9e 0c-6e 0b 62 10 2a 85 e7 6b","NoAssetTag","'+02:00","2026-03-03T16:48:24.000+02:00","svpadmin","Cloud Agent","75835a7e-e99e-4a1b-ac93-939d8880d29c","2024-05-15T12:42:31.000+02:00","2026-04-22T09:09:36.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,High,VRF_PEAGE_DC,Péage,SVP,Production","508.0" +"179784561","232376102","vrrauaast2.sanef-rec.fr","","00:50:56:9c:03:d4, 00:50:56:9c:a4:69","10.45.5.34,10.45.9.228","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d6 e4 19 48 87 58-5b 91 7b f4 22 fb c8 99","No Asset Tag","'+02:00","2026-04-21T14:58:28.000+02:00","cybadmsys","Cloud Agent","bf537a6e-e375-4a41-8cb1-b512a6fd1cbc","2023-07-24T19:12:46.000+02:00","2026-04-22T10:56:41.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,ASUR","71.0" +"329730033","332369428","MTR-7PXF2L3","MTR-7PXF2L3","A4:BB:6D:90:96:E2","10.101.246.201","fe80::c70b:ea6e:6653:2b42","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","7PXF2L3","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","cf7eae23-e981-4165-b89f-3d1d7d70742d","2025-06-03T10:13:33.000+02:00","2026-04-22T09:09:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"176096529","229734620","vvboobsql2.sanef-rec.fr","","00:50:56:9c:3a:17","10.45.6.74","fe80::250:56ff:fe9c:3a17","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 0f db ff 24 76 e2-92 43 4b 58 88 1e af ff","No Asset Tag","'+02:00","2026-03-09T16:09:08.000+02:00","cybsupsys","Cloud Agent","220147c2-7bda-4a8b-83c1-437f7ba4e560","2023-06-27T15:28:32.000+02:00","2026-04-22T11:20:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette,flux_libre,FreeFlow,Flux Libre","141.0" +"307146663","323298427","PCB21170.sanef.groupe","PCB21170","F0:20:FF:9A:8B:84","192.168.1.126,10.205.0.173","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HV6","","'+02:00","2026-04-22T08:15:02.000+02:00","SANEF\garnier","Cloud Agent","d6d3d709-bdc5-48ea-b37b-984b80ffd154","2025-03-11T16:38:46.000+02:00","2026-04-22T10:53:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"374190918","350496844","PCV18543.sanef-int.adds","PCV18543","30:13:8B:6C:57:43","10.5.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473T3","","'+02:00","2026-04-15T09:34:48.000+02:00","Operateur","Cloud Agent","5d792689-76e6-4044-9a71-0cbdc36188c5","2025-11-04T17:40:34.000+02:00","2026-04-22T09:08:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"226169190","256425652","ls-la-vallee","LS-LA-VALLEE","00:50:56:90:F2:33","10.41.2.45","fe80::29a9:bfbe:46ba:f0d0","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 66 5f ba 6b d0 4b-d7 20 1d 8a d3 f3 d8 11","NoAssetTag","'+02:00","2026-03-03T12:22:17.000+02:00","svpadmin","Cloud Agent","5a0ae3f9-bbaa-4b46-bae1-248c13109181","2024-03-29T10:49:12.000+02:00","2026-04-22T11:46:03.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Windows Server,Cloud Agent,OS-WIN-SRV DYN,High,VRF_PEAGE_DC,Production,Péage","508.0" +"349162740","339873764","PCB21199.sanef.groupe","PCB21199","D0:AD:08:AA:50:60","10.220.31.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764JY","","'+02:00","2026-04-07T17:32:58.000+02:00","maxime.dore@sapn.fr","Cloud Agent","d9913abb-0a2f-449c-8a95-614e6f05c99e","2025-08-05T11:22:23.000+02:00","2026-04-22T11:34:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"129846548","192316250","sppeaanvr2","SPPEAANVR2","20:67:7C:D8:A2:41","10.41.7.101","fe80::9734:59fd:14c5:3624","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","1","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ921047N","","'+02:00","2026-01-28T11:27:31.000+02:00","Administrateur","Cloud Agent","35fff773-5b22-4e85-8438-2331c3e1b018","2022-06-30T18:24:54.000+02:00","2026-04-22T09:08:23.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,Sans,Production,VRF_INCONNUE,OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR","522.0" +"280811046","305627373","PCB21347.sanef.groupe","PCB21347","D0:AD:08:AA:50:BB","10.202.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6783) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764MW","","'+02:00","2026-04-07T09:08:09.000+02:00","SANEF\gondouinf","Cloud Agent","80d38452-582b-4505-9239-bcf8069c713c","2024-11-20T15:34:14.000+02:00","2026-04-22T09:08:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"359743599","","PCB24086.sanef.groupe","PCB24086","0A:00:27:00:00:03, 24:FB:E3:33:7B:3F","169.254.63.90,10.155.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5062RDX","","'+02:00","2026-04-15T17:04:41.000+02:00","SANEF\ADELINE","Cloud Agent","59e88ad2-8628-4a1a-a3ee-239b2403600d","2025-09-15T11:47:34.000+02:00","2026-04-22T09:08:17.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"194981963","241651145","vpbotrssm1.sanef.groupe","VPBOTRSSM1","00:50:56:90:B9:48","10.41.23.8","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 ef 24 70 41 65 21-be 85 e7 29 de 83 2f 7d","NoAssetTag","'+02:00","2026-04-21T10:46:02.000+02:00","SANEF\ndead","Cloud Agent","27ef7d29-08af-4c3c-8085-6f7f62faa571","2023-10-23T17:17:45.000+02:00","2026-04-22T09:08:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Windows Server,OS-WIN-SRV DYN,FreeFlow,Production,flux_libre","249.0" +"249813575","288925764","lrdsibrac1.sanef-rec.fr","","3e:33:fb:a0:00:c8, 3e:33:fb:a0:00:c4","10.45.5.19,10.45.7.9","fe80::3c33:fbff:fea0:c8,fe80::3c33:fbff:fea0:c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200U","/n/Bios Asset Tag :","'+02:00","2026-03-04T18:18:50.000+02:00","cybintsys","Cloud Agent","fe98673a-1142-4e55-a5ce-b95cc2fcc706","2024-07-10T15:12:02.000+02:00","2026-04-22T11:23:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ORACLE,Recette,Cloud Agent,Linux Server","146.0" +"320288653","328639923","PCB23664.sanef.groupe","PCB23664","6C:0B:5E:EE:BC:59","10.100.39.113","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L81","","'+02:00","2026-03-31T08:57:52.000+02:00","SANEF\DERIMAY","Cloud Agent","84c74f97-1ad7-43b0-91e2-9c19e8f56f40","2025-04-28T16:55:19.000+02:00","2026-04-22T11:26:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"322391768","329447575","PCB23699.sanef.groupe","PCB23699","6C:0B:5E:EF:D2:CB","10.220.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBY","","'+02:00","2026-03-30T19:06:09.000+02:00","SANEF\LEGRAND","Cloud Agent","8a2d5a75-1840-4160-9e4d-25872d9394ad","2025-05-06T13:39:08.000+02:00","2026-04-22T11:24:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"130318092","192644345","VPAIIAVCL1.sanef.groupe","VPAIIAVCL1","00:50:56:82:7F:0D","10.41.11.20","fe80::d18b:f8f1:98e9:5498","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 9c 7e 58 ef b1 ba-70 78 f3 e5 3b 52 82 72","NoAssetTag","'+02:00","2025-06-04T10:25:48.000+02:00","SANEF\ecoad-ext","Cloud Agent","f66e55cc-84d1-4e72-9e01-742f03698e36","2022-07-05T11:29:05.000+02:00","2026-04-22T09:08:00.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,Sans,Production,DEX,NVR,Workstation,VRF_INCONNUE,Obsolete,Cloud Agent,Windows Server","523.0" +"377410288","352034394","vmddops03.recette.adds","VMDDOPS03","00:50:56:9C:17:50","10.45.17.69","fe80::62fa:e691:416e:f804","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 77 39 ae 90 d4-83 ce 11 e0 b6 ff 48 6a","NoAssetTag","'+02:00","2026-04-16T17:35:46.000+02:00","supwindev","Cloud Agent","03dffb7c-44b3-41fd-b06b-f6d644f7d68e","2025-11-18T11:24:39.000+02:00","2026-04-22T09:07:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","333.0" +"378083322","352321025","PCB17978.sanef.groupe","PCB17978","C0:18:03:85:64:C9","10.199.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206174B","","'+02:00","2026-04-07T13:16:57.000+02:00","SANEF\wach","Cloud Agent","7ec829ef-9eab-46f8-aa28-1d2fb5dfce53","2025-11-20T16:09:20.000+02:00","2026-04-22T09:07:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"294564327","316603854","vpdepbels1.sanef.groupe","","00:50:56:90:ee:47","10.41.40.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 bc d0 a9 7c f6 e0-74 e6 9e df e4 3a 9a 4b","No Asset Tag","'+02:00","2026-01-21T16:28:19.000+02:00","cybreconcile","Cloud Agent","4685b369-44e5-4653-ba6f-c714e07e16b9","2025-01-24T12:20:16.000+02:00","2026-04-22T11:20:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Elasticsearch,Production,BDD-ELA DYN,Linux Server,Cloud Agent","141.0" +"354689834","342495239","vpechaetl3.sanef.groupe","","00:50:56:90:40:ee","10.42.16.143","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0e 8b d3 7b 36 51-5f df bd 6a 12 84 de 48","No Asset Tag","'+02:00","2026-02-12T16:12:13.000+02:00","cybsecope","Cloud Agent","9cabca3d-8eb4-4b12-a929-f5ab6bff06e2","2025-08-26T17:09:56.000+02:00","2026-04-22T11:39:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","145.0" +"326865147","331310095","PCB24024.sanef.groupe","PCB24024","EC:4C:8C:C5:CD:B2","10.205.0.102,10.255.3.226","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF0","","'+02:00","2026-03-29T23:36:25.000+02:00","SANEF\daudeg","Cloud Agent","859d1125-928d-40e5-a476-e0e2ca34bd79","2025-05-23T14:51:33.000+02:00","2026-04-22T11:19:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"320261591","328627288","PCB23524.sanef.groupe","PCB23524","C8:6E:08:88:F0:9F","10.205.0.9,192.168.1.126","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9R","","'+02:00","2026-04-22T08:26:34.000+02:00","SANEF\DELOFFRE","Cloud Agent","acecf62a-04f2-4781-8613-dc5d800c0d17","2025-04-28T14:57:29.000+02:00","2026-04-22T09:07:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","146.0" +"329943602","","PCB23541.sanef.groupe","PCB23541","C8:6E:08:8A:45:CB","10.200.31.49,10.255.3.218","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5K","","'+02:00","2026-03-31T09:03:14.000+02:00","SANEF\deleauk","Cloud Agent","96f7977f-e837-4030-80c3-8964c327a6e3","2025-06-03T18:03:39.000+02:00","2026-04-22T09:06:57.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321970327","329310192","PCB21276.sanef.groupe","PCB21276","30:F6:EF:A3:EF:EE","10.4.31.55,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJF","","'+02:00","2026-04-21T08:04:26.000+02:00","SANEF\CAPITAINE","Cloud Agent","00d54ec1-50f1-4dcc-9748-bb3acbc35e2c","2025-05-05T09:31:43.000+02:00","2026-04-22T10:33:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","153.0" +"374458503","350625447","PCB22718.sanef.groupe","PCB22718","D0:AD:08:AA:50:2C","10.208.31.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H8","","'+02:00","2026-04-01T09:10:43.000+02:00","SANEF\SAMIRI","Cloud Agent","db66b6e2-861c-47a4-916e-7f4816525195","2025-11-05T16:34:21.000+02:00","2026-04-22T09:06:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"324004548","","PCB18099.sanef.groupe","PCB18099","64:D6:9A:1D:39:36","192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.09.01","5CG2376HTM","","'+02:00","2026-03-30T09:23:40.000+02:00","SANEF\HENWOOD","Cloud Agent","3c67b826-3df2-418c-9f5e-31cb0a689b22","2025-05-12T11:47:31.000+02:00","2026-04-22T09:06:45.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"318433984","328044306","vrameakfk3.sanef-rec.fr","","00:50:56:9c:dc:24","10.45.2.42","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c fe 9f 88 82 15 48-40 9d 56 1f 19 b1 e2 67","No Asset Tag","'+02:00","2026-04-20T09:48:02.000+02:00","cybsupapp","Cloud Agent","fce6b33d-8765-4afe-b545-f94b0f73361c","2025-04-22T14:58:17.000+02:00","2026-04-22T10:53:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","48.0" +"325731383","","PCB18735.sanef.groupe","PCB18735","58:1C:F8:EB:79:6D","10.205.0.178,192.168.1.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DPX","","'+02:00","2026-04-03T10:10:16.000+02:00","SANEF\hoarau","Cloud Agent","62a15f89-5fc1-4f7f-913e-2424a879eea7","2025-05-19T14:39:00.000+02:00","2026-04-22T09:06:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"282000274","306448317","SVP22766.sanef-int.adds","SVP22766","D0:AD:08:A7:28:16","10.105.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK6","","'+02:00","2026-04-20T08:30:24.000+02:00","Superviseur","Cloud Agent","cc7cc59f-92cf-48f5-8967-e2bad2a56b49","2024-11-25T12:03:44.000+02:00","2026-04-22T09:06:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"281015704","305748072","PCB22507.sanef.groupe","PCB22507","D0:AD:08:AA:50:57","10.202.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JN","","'+02:00","2026-04-01T09:00:26.000+02:00","SANEF\lelievrer","Cloud Agent","43c20ce1-9c83-42df-8ea5-ad2e9beed3c2","2024-11-21T12:42:33.000+02:00","2026-04-22T10:29:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","146.0" +"378080679","352316650","PCV18674.sanef-int.adds","PCV18674","30:13:8B:6C:5E:50","10.209.7.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473W3","","'+02:00","2026-04-17T21:12:42.000+02:00","Operateur","Cloud Agent","0f9c2e5f-b8a0-4f17-9924-a0c713162b43","2025-11-20T15:26:21.000+02:00","2026-04-22T09:05:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"377804143","352206231","PCV21261.sanef-int.adds","PCV21261","D0:AD:08:1F:7E:DC","10.108.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3451GV2","","'+02:00","2025-11-19T16:58:51.000+02:00","Operateur","Cloud Agent","b1243376-82e1-417c-8083-3a40996f11f3","2025-11-19T17:31:53.000+02:00","2026-04-22T09:05:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"320292015","328638452","PCB23594.sanef.groupe","PCB23594","C8:6E:08:88:FD:D3","10.100.39.85,10.255.1.194","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB4","","'+02:00","2026-04-20T08:31:28.000+02:00","SANEF\guilbertcl","Cloud Agent","af6fb503-8736-463e-a613-9e6b398e15d7","2025-04-28T16:34:29.000+02:00","2026-04-22T11:12:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"324759055","330493339","sppeaanvr31","SPPEAANVR31","8C:84:74:E5:DF:12","10.41.7.130","fe80::ac09:85a:2dfb:2b","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G11 Server","16","2600","INTEL(R) XEON(R) SILVER 4509Y","16142","HPE 2.48","CZ2D210MW7","","'+02:00","2026-02-10T10:14:53.000+02:00","Administrateur","Cloud Agent","c1144912-c24e-4f46-815a-adf018d2f6b6","2025-05-14T17:17:28.000+02:00","2026-04-22T09:05:31.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,OS-WIN-SRV DYN,Cloud Agent,Production","508.0" +"339876286","336780153","vppwdahap1.sanef.groupe","","00:50:56:94:ff:24","10.44.1.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3665","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 ec 9d 08 bd a5 59-6f 2d 6a 02 87 c0 89 b6","No Asset Tag","'+02:00","2026-01-07T11:25:09.000+02:00","cybreconcile","Cloud Agent","bb622005-9a99-443e-b3ef-5401b8c6f17e","2025-07-07T17:41:45.000+02:00","2026-04-22T11:29:16.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,Production,OS-LIN-SRV DYN,BDD","331.0" +"354679096","342495682","vpechaetl4.sanef.groupe","","00:50:56:90:36:6c","10.42.16.144","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0b ee b6 64 c0 73-30 6e 16 d7 0f f0 bb f6","No Asset Tag","'+02:00","2026-02-12T16:12:05.000+02:00","cybsecope","Cloud Agent","a7123e67-8e4f-4bcd-a82f-1a6771ff4d57","2025-08-26T17:15:03.000+02:00","2026-04-22T10:41:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","145.0" +"320077906","328613176","PCB18072.sanef.groupe","PCB18072","38:CA:84:50:56:18","10.101.243.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HTQ","","'+02:00","2026-04-08T16:26:10.000+02:00","SANEF\SAUVIGNON","Cloud Agent","53c58b03-34e0-4ea5-aa4f-340f973e7a16","2025-04-28T12:14:36.000+02:00","2026-04-22T10:28:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","59.0" +"357852976","343892476","PCB22666.sanef.groupe","PCB22666","D0:AD:08:AA:50:1E","10.208.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764GT","","'+02:00","2026-04-15T16:11:31.000+02:00","SANEF\pennors","Cloud Agent","44a02470-c9be-4f9c-b929-5acaec563c74","2025-09-08T12:26:50.000+02:00","2026-04-22T09:04:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"327526036","","PCB23521.sanef.groupe","PCB23521","C8:6E:08:8A:50:BB","10.152.31.2,10.255.4.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9F","","'+02:00","2026-04-21T09:44:29.000+02:00","SANEF\sutran","Cloud Agent","630c53d0-11a8-4a60-80b5-5158c217a678","2025-05-27T11:56:39.000+02:00","2026-04-22T09:04:44.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"395909012","359672763","PCB25884.sanef.groupe","PCB25884","4C:CF:7C:0A:5C:3D","10.205.0.70,10.4.31.60","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534223L","","'+02:00","2026-04-22T08:31:07.000+02:00","SANEF\desimeur","Cloud Agent","3df311c8-9eae-442e-b79d-0cdf673407d8","2026-01-29T17:46:01.000+02:00","2026-04-22T10:32:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"374498072","350641565","PCB24348.sanef.groupe","PCB24348","10:B6:76:93:FA:C9","10.152.31.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YHZ","","'+02:00","2026-04-15T08:11:26.000+02:00","SANEF\NORMAND","Cloud Agent","ee5e3652-0cc6-4c6b-b947-9c11e29f68e5","2025-11-05T19:10:06.000+02:00","2026-04-22T11:32:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"334940270","334365195","PCB24066.sanef.groupe","PCB24066","10:B6:76:93:FA:A7","10.155.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YGW","","'+02:00","2026-04-20T11:53:56.000+02:00","SANEF\dores","Cloud Agent","cbdf40f4-b784-49fa-9af9-545c9d839f0a","2025-06-20T10:52:02.000+02:00","2026-04-22T11:27:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"159570303","212142030","vpintanfs1.sanef.groupe","","00:50:56:82:bb:7d, 02:42:ff:d0:be:e0","192.168.20.38,172.17.0.1","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 72 2e ee aa d4 a2-a3 a6 a5 13 14 d9 e6 ae","No Asset Tag","'+02:00","2026-02-24T12:10:54.000+02:00","cybexpapp","Cloud Agent","87fc443a-99ff-498f-96d5-6fdaecc421e7","2023-02-16T15:12:34.000+02:00","2026-04-22T11:20:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Gestion institutionnel","141.0" +"409490442","364922981","PCB22345.sanef.groupe","PCB22345","D0:AD:08:A7:27:E5","10.206.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSM","8CC3502YSM","'+02:00","2026-03-28T09:14:50.000+02:00","SANEF\letellier","Cloud Agent","1eca0c48-48ba-4adb-9d7b-b4e72ff43cbc","2026-03-18T14:21:52.000+02:00","2026-04-22T09:03:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"350781759","340860684","PCB25831.sanef.groupe","PCB25831","F8:ED:FC:AB:02:71","10.205.1.39,192.168.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CTS","","'+02:00","2026-04-09T22:25:31.000+02:00","SANEF\TUNORFE","Cloud Agent","1c37f4d0-e6d2-4a2c-a97e-5b46dfcda727","2025-08-12T10:48:17.000+02:00","2026-04-22T09:03:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"332273716","","PCB21175.sanef.groupe","PCB21175","D0:AD:08:E4:A1:FA","10.12.31.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","32408","HP V70 Ver. 01.03.00","5CG3501HVC","","'+02:00","2026-04-20T17:36:51.000+02:00","SANEF\DEJESUS","Cloud Agent","0a27d7a8-8482-4fd8-a23e-d2a2bbaf3804","2025-06-10T12:42:24.000+02:00","2026-04-22T09:03:03.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"347941250","339425714","vrlogbels2.sanef-rec.fr","","00:50:56:9c:67:bc","10.45.15.165","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c e0 69 ae 3d a8 19-1e 14 8b 09 04 6d 94 24","No Asset Tag","'+02:00","2026-01-21T17:53:23.000+02:00","cybintsys","Cloud Agent","bbe215d2-df89-4f91-9851-de6fa6dada2c","2025-07-31T17:25:49.000+02:00","2026-04-22T11:28:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,BDD-ELA DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"327537099","","PCB23512.sanef.groupe","PCB23512","C8:6E:08:88:FD:C4","192.168.1.195","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7C","","'+02:00","2026-03-30T14:07:24.000+02:00","SANEF\GIMENEZPEREZ","Cloud Agent","54ef4305-2c0b-417d-bfa8-7e3b14ebd9cd","2025-05-27T11:26:14.000+02:00","2026-04-22T09:02:50.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"410521998","365357635","PCV22458.sanef-int.adds","PCV22458","D0:AD:08:A3:E7:92","10.103.7.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YMD","","'+02:00","2026-03-23T09:44:54.000+02:00","Operateur","Cloud Agent","0fd025b7-3d43-4bf8-a793-c4919a92eb16","2026-03-23T09:48:25.000+02:00","2026-04-22T09:02:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"324722790","","PCB18115.sanef.groupe","PCB18115","64:D6:9A:21:81:BC","192.168.1.109","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.19.00","5CG2376HTX","","'+02:00","2026-04-03T08:16:39.000+02:00","SANEF\HENNION","Cloud Agent","7a125c3c-9b2d-4e8f-918e-31889c8a7a03","2025-05-14T16:11:20.000+02:00","2026-04-22T09:02:04.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"329804270","","PCB17642.sanef.groupe","PCB17642","28:C5:D2:9F:C3:10","10.100.39.132,10.255.4.203","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3R","","'+02:00","2026-04-16T07:58:13.000+02:00","SANEF\FERNANDESC","Cloud Agent","b29b8a94-9f95-46cc-8f16-b176c33416d8","2025-06-03T14:43:13.000+02:00","2026-04-22T09:01:59.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"385630145","355780299","PCB17645.sanef.groupe","PCB17645","D0:AD:08:E4:B1:D6","10.101.243.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HW0","","'+02:00","2026-04-21T09:28:59.000+02:00","SANEF\LAVANANT","Cloud Agent","1ee540f9-aede-441e-a68b-ea0e68a1c19c","2025-12-22T19:57:35.000+02:00","2026-04-22T10:56:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"138993195","198163941","PCB17877.sanef.groupe","PCB17877","70:A8:D3:85:C6:54","10.255.1.163","fe80::5f5c:56dd:c787:a247","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T37 Ver. 01.08.11","5CG217247W","","'+02:00","2026-04-22T08:05:23.000+02:00","SANEF\floquet","Cloud Agent","2edc15d6-4dce-481d-8f39-d47498a7dc1f","2022-09-06T12:41:03.000+02:00","2026-04-22T11:42:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Workstation","342.0" +"324698116","330343964","PCB23733.sanef.groupe","PCB23733","C8:6E:08:47:8B:D2","10.205.0.71,192.168.0.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2K","","'+02:00","2026-04-13T21:47:55.000+02:00","SANEF\dossantos","Cloud Agent","452b20ec-a5af-44e6-9686-5f7a1f781318","2025-05-14T13:37:20.000+02:00","2026-04-22T09:01:37.000+02:00","64-Bit","2","VM,PM,GAV","Workstation,Cloud Agent","153.0" +"322010592","329316391","PCB21144.sanef.groupe","PCB21144","D0:AD:08:A3:E7:24","10.2.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXT","8CC3502YXT","'+02:00","2026-03-28T09:11:31.000+02:00","SANEF\jacquetn","Cloud Agent","d5765317-52b8-41cd-b0e1-fa3ded6531a2","2025-05-05T10:42:41.000+02:00","2026-04-22T09:01:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"344816869","338463634","PCB17763.sanef.groupe","PCB17763","28:C5:D2:9E:44:E0","192.168.1.89,10.205.0.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4X","","'+02:00","2026-04-14T09:01:02.000+02:00","SANEF\FAVRIAU","Cloud Agent","6a4b03a9-941c-484c-984a-fdda1476811f","2025-07-24T12:44:53.000+02:00","2026-04-22T09:01:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"204123362","246220794","vpbotbtsd1.sanef.groupe","","00:50:56:90:26:9b","10.41.23.27","fe80::250:56ff:fe90:269b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e1 e2 cb 27 f7 af-5b 9a d7 aa 01 13 03 56","No Asset Tag","'+02:00","2026-04-16T09:56:24.000+02:00","cybreconcile","Cloud Agent","a5ac4389-1c0d-447e-98fd-8d8e7813c9c9","2023-12-13T19:24:32.000+02:00","2026-04-22T11:13:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,FreeFlow","337.0" +"272737296","301239595","SVP21051.sanef-int.adds","SVP21051","D0:AD:08:A3:7B:6C","10.155.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWR","","'+02:00","2026-04-14T11:18:31.000+02:00","Superviseur","Cloud Agent","ee07a38b-9344-4767-b7e0-153cad7929b7","2024-10-17T08:16:23.000+02:00","2026-04-22T09:01:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"322004527","329320570","PCB23675.sanef.groupe","PCB23675","6C:0B:5E:EE:EC:0A","10.200.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6B","","'+02:00","2026-04-20T17:03:56.000+02:00","pascal.roussel2@sanef.com","Cloud Agent","02f757fd-783e-4cb1-93c3-db4b6a701977","2025-05-05T11:43:10.000+02:00","2026-04-22T11:46:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"408734457","364649408","PCB25786.sanef.groupe","PCB25786","28:95:29:1B:24:66","10.255.2.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVX","","'+02:00","2026-04-13T08:40:09.000+02:00","SANEF\BERNARDC","Cloud Agent","b5c50b3e-30d2-4797-8b53-9b01a5b3d5a0","2026-03-16T10:23:53.000+02:00","2026-04-22T11:31:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","244.0" +"249846543","288935029","vpa14bgtc1","VPA14BGTC1","00:50:56:90:84:2B","10.41.19.69,172.27.2.159","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 1e 66 3b 93 41 2d-64 88 43 75 14 87 93 49","NoAssetTag","'+02:00","2026-03-31T12:37:00.000+02:00","admin_gtc","Cloud Agent","d75591b2-cf35-484c-9c6a-c9a54fbd1509","2024-07-10T17:09:07.000+02:00","2026-04-22T09:00:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,BDD-SQL DYN,OS-WIN-SRV DYN","248.0" +"247101827","287402707","MTO21609.sanef.groupe","MTO21609","D0:AD:08:A4:4D:AC","10.6.31.2","fe80::b128:6c23:1ea7:cea3","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6649) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K6","","'+02:00","2026-03-03T12:27:55.000+02:00","SANEF\meteonewsW11","Cloud Agent","31faf8fc-b267-4745-b65d-0883da8558de","2024-06-28T17:07:41.000+02:00","2026-04-22T08:59:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"129362381","191965004","vpsdtanvr1","VPSDTANVR1","00:50:56:82:8E:7B","10.11.7.13","fe80::4345:c426:ab9e:2a37","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 6a ca b0 63 9c 36-70 e2 86 2b ee ba 1c 2b","NoAssetTag","'+02:00","2026-02-05T11:14:56.000+02:00","Administrateur","Cloud Agent","91d1e729-2294-4c0e-818c-7aec8830165e","2022-06-27T18:36:17.000+02:00","2026-04-22T08:59:36.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Exploitation,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,NVR","509.0" +"326655696","","PCB24015.sanef.groupe","PCB24015","44:67:52:1E:84:52","10.101.243.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","Dell Latitude 7350 Notebook","1","1700","Intel(R) Core(TM) Ultra 7 165U","32212","Dell Inc. 1.15.1","H4VTX64","","'+02:00","2026-04-15T16:55:52.000+02:00","SANEF\FISCHERE","Cloud Agent","d05bdcfe-3d64-499a-a0be-9a01a82b8cf8","2025-05-22T16:15:30.000+02:00","2026-04-22T08:59:33.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"373028956","349993406","PSX18565.sanef-int.adds","PSX18565","30:13:8B:6C:5B:1D","10.100.40.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473SX","","'+02:00","2026-02-17T21:59:17.000+02:00","UserSextan","Cloud Agent","1d98bacd-89c6-4503-bcf3-348befcd12be","2025-10-30T18:48:46.000+02:00","2026-04-22T08:59:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"325686787","","PCB18624.sanef.groupe","PCB18624","38:CA:84:DB:D6:E2","10.4.31.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDN","","'+02:00","2026-04-01T14:55:33.000+02:00","SANEF\paquotte","Cloud Agent","cbe900fc-8cec-4b3c-9f87-c5bac2e5062b","2025-05-19T11:00:47.000+02:00","2026-04-22T08:59:02.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"417401361","368224388","MTO18276.sanef.groupe","MTO18276","5C:60:BA:59:EC:E9","10.100.39.53","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.25.00","8CC2250Y8L","8CC2061746","'+02:00","2026-04-21T09:07:37.000+02:00","SANEF\MeteoNewsSanef","Cloud Agent","92b6306f-09aa-431b-ac9c-b849deabf233","2026-04-20T12:16:33.000+02:00","2026-04-22T08:58:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","238.0" +"255418106","294877252","lramebrac3.sanef-rec.fr","","ee:50:33:80:00:82, ee:50:33:80:00:7e","10.45.5.8,169.254.11.217,10.45.2.112,10.45.2.116,10.45.2.120","fe80::ec50:33ff:fe80:82,fe80::ec50:33ff:fe80:7e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00H","/n/Bios Asset Tag :","'+02:00","2026-04-20T12:16:41.000+02:00","grid","Cloud Agent","72e14ef1-7236-4778-866d-6419c0880148","2024-08-02T16:53:13.000+02:00","2026-04-22T11:29:43.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Amelie,Sextan,Cloud Agent,Linux Server,Recette","503.0" +"376650173","351631212","PCV18678.sanef-int.adds","PCV18678","30:13:8B:6C:5C:51","10.12.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473WN","","'+02:00","2026-04-10T21:02:44.000+02:00","Operateur","Cloud Agent","e6f2269a-7544-4c42-8fd5-cb5b7f8f68d5","2025-11-14T15:43:49.000+02:00","2026-04-22T08:58:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"209598658","249215489","vpbotarmq3.sanef.groupe","","00:50:56:90:c1:c7","10.41.23.24","fe80::250:56ff:fe90:c1c7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 ec 0a f2 ca 61 aa-fc 52 9a d3 14 48 f6 b8","No Asset Tag","'+02:00","2026-04-21T14:34:39.000+02:00","cybreconcile","Cloud Agent","baa70ac2-1a90-4737-ba4f-34229f425cc7","2024-01-15T13:34:51.000+02:00","2026-04-22T08:58:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,flux_libre,Production,FreeFlow","141.0" +"310544677","324630464","vptrabtpc1.sanef.groupe","VPTRABTPC1","00:50:56:82:77:46","10.41.40.10","fe80::c373:c2c2:5511:ce57","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","Phoenix Technologies LTD 6.00","VMware-42 02 23 c4 4e de 44 47-2e 36 5e 7b 62 3d 37 1c","NoAssetTag","'+02:00","2026-01-20T12:19:21.000+02:00","Administrateur","Cloud Agent","0d6aaa0e-febd-4d25-8f1d-7dded97a976b","2025-03-24T12:58:35.000+02:00","2026-04-22T11:05:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Trafic,Temps de parcours,Production,OS-WIN-SRV DYN,BDD-POS DYN","338.0" +"228734286","257688280","vvaflblog1.sanef-rec.fr","","00:50:56:9c:2b:2c","10.45.0.205","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c ba df 72 90 8c 32-ea a3 cf ee 99 52 00 1b","No Asset Tag","'+02:00","2026-03-11T15:11:28.000+02:00","cybadmsys","Cloud Agent","57b74fed-61c9-4fe5-81e5-eb3917cf2205","2024-04-09T17:25:46.000+02:00","2026-04-22T11:09:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server,Recette","144.0" +"141870951","199937297","vpbckacse1","VPBCKACSE1","00:50:56:82:F3:83","10.42.16.69","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","49151","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-56 4d 39 43 32 31 67 21-f0 aa b4 59 25 c8 d3 fb","NoAssetTag","'+02:00","2026-03-30T10:52:39.000+02:00","dcrad","Cloud Agent","a6910462-50f2-4c6f-aba0-584b632e78eb","2022-09-27T11:45:42.000+02:00","2026-04-22T10:44:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,BDD-SQL DYN,VRF_BACKUP_DC,Gestion SAUVEGARDE,Cloud Agent,Windows Server","350.0" +"322118778","329339586","PCB23729.sanef.groupe","PCB23729","C8:6E:08:45:1B:8B","10.100.39.134,10.255.4.192","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2W","","'+02:00","2026-03-29T19:45:30.000+02:00","SANEF\plaideux","Cloud Agent","4a6ce2f1-0bd0-4e2b-8250-64f7b6697017","2025-05-05T15:17:54.000+02:00","2026-04-22T11:18:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","143.0" +"139157827","198270294","vmampmet1","","00:50:56:82:1C:70, 00:50:56:82:23:B7, 00:50:56:82:62:FE","10.43.40.77,10.43.4.77,10.41.40.77","fe80::250:56ff:fe82:1c70,fe80::250:56ff:fe82:23b7,fe80::250:56ff:fe82:62fe","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 cd 32 c6 92 58 66-ac b8 8f fe 7e 41 74 68","No Asset Tag","'+02:00","2024-02-13T13:59:47.000+02:00","cybreconcile","Cloud Agent","5f4e0bb0-e430-423d-b645-a68c08edf4b4","2022-09-07T14:26:51.000+02:00","2026-04-22T11:17:03.000+02:00","x86_64","5","SCA,VM,PM,GAV","Obsolete,log4j,OS-LIN-SRV DYN,DEX,Production,Trafic,MIVISU,Cloud Agent,Linux Server,VRF_TRAFIC_DC","876.0" +"322000854","329315714","PCB22834.sanef.groupe","PCB22834","D0:AD:08:A7:27:B1","10.89.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPJ","8CC3502YPJ","'+02:00","2026-03-28T09:11:35.000+02:00","SANEF\porchet","Cloud Agent","44ed40be-e093-4931-81e4-d9474e408b33","2025-05-05T10:36:45.000+02:00","2026-04-22T08:56:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"280841848","305632826","PCB21341.sanef.groupe","PCB21341","E4:60:17:C5:06:84","192.168.1.13,10.205.0.115","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JX","","'+02:00","2026-04-06T07:54:37.000+02:00","SANEF\boissee","Cloud Agent","13146be3-4bc6-4895-ae7c-6f5b75d7e378","2024-11-20T16:32:55.000+02:00","2026-04-22T08:56:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"321605798","329101923","PCB21154.sanef.groupe","PCB21154","D0:AD:08:A3:7C:C8","10.89.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YY7","8CC3502YY7","'+02:00","2026-04-20T10:30:02.000+02:00","SANEF\zeimet","Cloud Agent","c24606af-fcca-422b-9819-6d9a0548af41","2025-05-02T16:13:09.000+02:00","2026-04-22T08:56:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","253.0" +"378316331","352425582","PSX18697.sanef-int.adds","PSX18697","30:13:8B:6C:5D:AD","10.100.40.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WQ","","'+02:00","2026-03-28T14:54:47.000+02:00","UserSextan","Cloud Agent","75f173c5-08f7-46af-b64b-5e5a69f20c90","2025-11-21T14:21:53.000+02:00","2026-04-22T10:58:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"340403894","","PCB21125.sanef.groupe","PCB21125","D0:AD:08:AA:50:26","10.205.0.75,10.101.243.185","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H2","","'+02:00","2026-04-20T09:00:15.000+02:00","SANEF\KAMAL-ext","Cloud Agent","d38b4469-ea3e-4a97-a0ad-048f0bfe584e","2025-07-09T10:52:15.000+02:00","2026-04-22T08:56:16.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"173083621","227654993","vdbocharg1.sanef-rec.fr","","00:50:56:9c:9a:ee","10.45.6.36","fe80::250:56ff:fe9c:9aee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7f ec 9f 0d f7 d5-c8 4d f3 a8 27 28 73 a2","No Asset Tag","'+02:00","2026-03-11T10:03:06.000+02:00","cybsecope","Cloud Agent","332ccdec-af18-42c5-b4f1-a1fb9b9af8f2","2023-06-05T15:43:25.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Flux Libre,FreeFlow,flux_libre,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN","338.0" +"165730592","236956158","vrvidanvr1.recette.adds","VRVIDANVR1","00:50:56:9C:EF:C7","10.45.7.101","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1c 35 95 a3 25 40 45-d8 8a e2 9f 4d 3b 18 62","NoAssetTag","'+02:00","2026-04-21T04:07:25.000+02:00","RECETTE\ndessoye","Cloud Agent","468e367f-109e-4970-a6e1-b2d8162da23b","2023-04-07T10:48:59.000+02:00","2026-04-22T08:56:10.000+02:00","64-Bit","3","SCA,VM,GAV","DEX,Recette,OS-WIN-SRV DYN,Cloud Agent,NVR","516.0" +"313413111","325877000","vrameaquo1.sanef-rec.fr","","00:50:56:90:79:9d","10.100.16.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 0a 4f fb 4e 75 c1-f0 d6 a2 6d 87 7d d7 98","No Asset Tag","'+02:00","2026-04-20T10:01:24.000+02:00","cybsecope","Cloud Agent","4972f0f9-3792-46dd-98ff-9a562b72cf27","2025-04-03T11:30:25.000+02:00","2026-04-22T09:28:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","14.0" +"193617840","240981756","vpbocs4as1.sanef.groupe","","00:50:56:90:ff:70","10.41.22.8","fe80::250:56ff:fe90:ff70","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 9f 64 ec 68 d3 ef-1e 56 f5 62 bf aa f4 22","No Asset Tag","'+02:00","2026-04-01T21:57:40.000+02:00","cyblecibm","Cloud Agent","28b031bd-a7eb-41c0-8723-e914f54013b2","2023-10-16T12:48:26.000+02:00","2026-04-22T11:03:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Production,FreeFlow,Flux Libre","331.0" +"213849175","251125116","sppeaanvr26","SPPEAANVR26","D4:F5:EF:A4:DE:BD","10.41.7.125","fe80::7320:e182:7ba7:c43a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","1","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ23300BQ8","","'+02:00","2026-02-09T10:11:16.000+02:00","Administrateur","Cloud Agent","f960e516-dd54-47fd-b75b-c2c5d1220f21","2024-02-05T19:31:19.000+02:00","2026-04-22T08:55:11.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR","523.0" +"304902203","322669825","vpalbanvr1","VPALBANVR1","00:50:56:90:DD:5B","10.252.17.10","fe80::361e:672c:ffe9:3b8e","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 10 e4 b9 2b 0a 24 a4-7a 8f 86 17 ce ec 5f 45","NoAssetTag","'+02:00","2026-02-25T12:32:05.000+02:00","Administrateur","Cloud Agent","186b87aa-07f8-4ebc-a6a9-d62497046cb3","2025-03-04T15:28:30.000+02:00","2026-04-22T08:55:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,Péage","246.0" +"335602324","","PCB24182.sanef.groupe","PCB24182","24:FB:E3:F3:BA:75","10.101.243.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136X6","","'+02:00","2026-04-20T08:57:57.000+02:00","SANEF\penicaud","Cloud Agent","15edac0b-b67e-4e7d-915e-ad2bd648393c","2025-06-23T14:55:47.000+02:00","2026-04-22T08:55:03.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"129345155","191951686","VPROIAGTC1","VPROIAGTC1","00:50:56:82:6D:4E","10.41.19.15","fe80::e8d1:e467:5e5c:623f","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 b2 7d 84 03 2b 27-6b 97 35 fb ed ab 6f a6","NoAssetTag","'+02:00","2026-04-01T15:14:01.000+02:00","GTC-ROISSY","Cloud Agent","7ad68bd7-b98b-41b7-a25f-df561738cabc","2022-06-27T15:50:24.000+02:00","2026-04-22T08:53:32.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,BDD-SQL DYN,Workstation,GTC,Haute,VRF_INCONNUE,High,Production,Trafic","865.0" +"305242753","322686741","PCB18491.sanef.groupe","PCB18491","D0:AD:08:AA:50:45","10.107.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764J2","","'+02:00","2026-04-14T07:02:09.000+02:00","SANEF\dambrevilles","Cloud Agent","54424453-cc10-4d39-b3ae-3303964de2ee","2025-03-04T18:51:09.000+02:00","2026-04-22T10:52:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"191148215","239566992","vpiadapki3.sanef-int.adds","VPIADAPKI3","00:50:56:9A:04:53","10.44.3.12","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1a 69 d2 dc ad c5 18-88 bc 02 e3 15 24 ff 6e","NoAssetTag","'+02:00","2026-03-23T17:01:12.000+02:00","SANEF-INT\A17402","Cloud Agent","1a94eadf-cad9-4751-a4b1-a4346003656d","2023-10-03T13:38:00.000+02:00","2026-04-22T08:52:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,Cloud Agent,Windows Server,Gestion_PKI,OS-WIN-SRV DYN","253.0" +"240039974","273667505","ls-spare-beu","LS-SPARE-BEU","00:50:56:82:15:7B","10.212.33.254","fe80::3f86:1ead:ea5b:56d1","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 ec fb b8 f4 7e 8b-e2 72 f4 0d 9f 7a 73 ad","NoAssetTag","'+02:00","2026-03-03T12:43:44.000+02:00","gare","Cloud Agent","d3003f6d-da36-4797-93dd-81dfec9aee37","2024-05-29T10:27:55.000+02:00","2026-04-22T08:52:45.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,High,Haute,VRF_PEAGE_DC,VRF_BACKUP_DC,Production,SVP,Péage,OS-WIN-SRV DYN","854.0" +"304663556","322548088","vpdsiacol1.sanef.groupe","","00:50:56:94:78:19","10.44.6.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3633","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 aa 0b 3c 84 76 53-22 9a bc 46 16 89 ec c8","No Asset Tag","'+02:00","2026-02-10T12:02:50.000+02:00","cybreconcile","Cloud Agent","3b9bb29c-fce6-4c73-9004-d11afc152a84","2025-03-03T17:41:39.000+02:00","2026-04-22T11:06:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Collecte,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"360030418","","PCB18716.sanef.groupe","PCB18716","BC:0F:F3:3D:48:8F","10.200.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2V","","'+02:00","2026-04-20T08:50:40.000+02:00","SANEF\SOUVAY","Cloud Agent","e9810c4d-b1d0-42e5-b716-7168d5cd988b","2025-09-16T13:26:26.000+02:00","2026-04-22T08:51:23.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"177186810","230557588","vptchbgtc1","VPTCHBGTC1","00:50:56:82:80:DE","10.41.19.40","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8191","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 b6 10 61 39 05 b9-5e f5 46 9f a3 1e 4e 0b","NoAssetTag","'+02:00","2026-03-31T11:03:12.000+02:00","admin_gtc","Cloud Agent","c509c0e7-d8fa-459e-a6bf-730a3dcce650","2023-07-05T09:06:55.000+02:00","2026-04-22T08:51:13.000+02:00","64-Bit","5","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,GTC,DEX","623.0" +"130583019","192832806","vtexpbdech1.sanef.groupe","","00:50:56:82:32:78","10.45.14.163","fe80::250:56ff:fe82:3278","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f2 5c 11 c8 8e 2e-99 6a 47 bd 0c 40 bf e4","No Asset Tag","'+02:00","2026-03-03T15:15:34.000+02:00","delcour","Cloud Agent","8c9d3abb-5581-4975-bfd8-d8dd1837b75a","2022-07-07T11:28:24.000+02:00","2026-04-22T11:21:37.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,BDD-POS DYN,DECHETS,TAG-SRVEXPOSEINDIRECT,Obsolete,Patrimoine,Recette,VRF_INCONNUE","108.0" +"319353853","328407244","PCB22895.sanef.groupe","PCB22895","D0:AD:08:A3:7B:EB","10.107.30.16","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVD","8CC3502YVD","'+02:00","2026-03-28T09:11:42.000+02:00","SANEF\MATUSZAK","Cloud Agent","cd0d2f45-0365-4cb7-899e-6996f496e509","2025-04-25T13:01:20.000+02:00","2026-04-22T11:04:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"184091720","235300537","vpcybapsm1.sanef.groupe","VPCYBAPSM1","00:50:56:82:2C:FF","10.44.1.68","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 10 f7 02 88 cd 58-8e e0 a2 a1 5b 01 ed 81","NoAssetTag","'+02:00","2026-03-13T09:59:23.000+02:00","SANEF-INT\BP01481","Cloud Agent","294058fb-5e5e-4f9e-b93e-ac7fc7ea59d6","2023-08-23T09:37:28.000+02:00","2026-04-22T08:50:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,CyberArk,OS-WIN-SRV DYN","246.0" +"369633115","348514276","vmdtrac01.recette.adds","VMDTRAC01","00:50:56:9C:4E:D3","10.45.17.4","fe80::1bd8:9174:9592:22ed","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c fe 51 4e 90 67 49-a5 71 7a e9 20 7f 03 6b","NoAssetTag","'+02:00","2026-04-16T00:22:58.000+02:00","supwindev","Cloud Agent","bbc8aa7c-0df2-4531-a569-566d272bdfcb","2025-10-17T18:30:00.000+02:00","2026-04-22T08:50:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"357852646","343894987","PCB22714.sanef.groupe","PCB22714","D0:AD:08:AA:50:64","10.220.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764K2","","'+02:00","2026-04-22T08:43:41.000+02:00","SANEF\bazire","Cloud Agent","3cac8cd7-23f0-4c66-817c-3c177f10bab3","2025-09-08T12:57:11.000+02:00","2026-04-22T08:50:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"384812740","355178116","PCB25837.sanef.groupe","PCB25837","24:FB:E3:5D:13:4B","10.4.31.67","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.11","5CG5282CVQ","","'+02:00","2026-03-23T09:11:13.000+02:00","SANEF\crabs","Cloud Agent","033598d2-b289-4618-aa82-06983f059ebb","2025-12-18T15:09:33.000+02:00","2026-04-22T11:14:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"232288356","259713739","SVP20947.sanef-int.adds","SVP20947","BC:0F:F3:87:6F:97","10.1.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LL0","","'+02:00","2026-04-20T17:24:53.000+02:00","Superviseur","Cloud Agent","15fff1ad-1da3-4fe4-8819-ddb93ce3f138","2024-04-25T12:01:01.000+02:00","2026-04-22T08:50:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320087765","328609739","PCB22448.sanef.groupe","PCB22448","D0:AD:08:A3:7B:78","10.106.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV8","8CC3502YV8","'+02:00","2026-04-17T14:18:18.000+02:00","SANEF\ROBIQUET","Cloud Agent","67634070-6d9b-4955-b934-d289c1debf6e","2025-04-28T11:49:06.000+02:00","2026-04-22T08:50:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"186519288","236834522","vpiadawdc2.sanef-int.adds","VPIADAWDC2","00:50:56:9A:A1:58","10.44.3.5","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1a 70 1a f7 97 da 0e-2d 8b b0 3a ca 73 a3 0f","NoAssetTag","'+02:00","2026-03-24T15:32:13.000+02:00","SANEF-INT\A17402","Cloud Agent","3b466fd5-f9d1-487b-9042-fb9f04e5ce61","2023-09-06T15:43:33.000+02:00","2026-04-22T08:49:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,AD,DSI","250.0" +"357143220","343656215","PCB18035.sanef.groupe","PCB18035","64:D6:9A:21:82:25","10.205.0.6,192.168.1.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HQZ","","'+02:00","2026-04-10T14:14:03.000+02:00","SANEF\KHELIFI-ext","Cloud Agent","8e6ce1d5-a880-41de-b80b-b916c4c90bc6","2025-09-05T14:17:14.000+02:00","2026-04-22T10:38:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"362044576","345544867","PCB24094.sanef.groupe","PCB24094","10:B6:76:95:8B:A8","10.219.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ9","","'+02:00","2026-04-14T06:57:03.000+02:00","SANEF\MARTINR","Cloud Agent","fbe2a1ff-1f4c-4e83-9bf2-5dddbb05ca92","2025-09-22T16:35:30.000+02:00","2026-04-22T10:59:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","254.0" +"202866425","245557998","vipeaabst3.sanef.groupe","","00:50:56:90:12:e8","10.41.29.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e0 d3 a8 10 4d 30-d9 48 e3 c1 ce dd 54 4b","No Asset Tag","'+02:00","2026-03-19T12:12:01.000+02:00","cybreconcile","Cloud Agent","c0e868f2-650f-4170-8c54-2f5d9d4b0555","2023-12-06T19:16:31.000+02:00","2026-04-22T11:20:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DSI,BOOST,Cloud Agent,Linux Server","152.0" +"280830803","305634990","PCB21328.sanef.groupe","PCB21328","D0:AD:08:AA:50:93","10.202.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LL","","'+02:00","2026-04-02T08:28:34.000+02:00","SANEF\linseya","Cloud Agent","7d09c6f3-8a36-44ba-b611-db8a7482414f","2024-11-20T16:55:32.000+02:00","2026-04-22T11:15:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"270786601","300125042","SVP21042.sanef-int.adds","SVP21042","D0:AD:08:A7:28:14","10.152.20.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK7","","'+02:00","2026-03-13T06:10:42.000+02:00","Superviseur","Cloud Agent","49da32ca-20e4-4c67-82a4-7fee28f5f6f7","2024-10-08T11:52:19.000+02:00","2026-04-22T08:49:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"176400096","229974600","vpdaibana6","VPDAIBANA6","00:50:56:90:1B:C9","10.41.70.25","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 20 92 b2 a2 a5 1e-3a 2f 43 c5 86 79 01 39","NoAssetTag","'+02:00","2026-04-20T10:19:22.000+02:00","ecoad-ext","Cloud Agent","c8384645-53bb-428c-98e3-22a7d26d0619","2023-06-29T11:20:12.000+02:00","2026-04-22T08:49:17.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,BDD-POS DYN,DAI,DEX,OS-WIN-SRV DYN","358.0" +"399424731","361124643","SPBURADPI1","SPBURADPI1","20:67:7C:F1:F2:A0","10.101.242.9","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Computers / Server","HPE ProLiant DL360 G10 Server","8","2594","Intel(R) Xeon(R) Silver 4112 CPU @ 2.60GHz","16042","HPE U32","CZJ903090C","","'+02:00","2026-04-02T16:36:03.000+02:00","Administrateur","Cloud Agent","f0d28cbc-cdb0-47fa-b7d1-140c3a48e94c","2026-02-11T19:09:26.000+02:00","2026-04-22T08:48:54.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DSI,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,VRF_BURO,SCCM","91.0" +"272562374","301137591","SVP21045.sanef-int.adds","SVP21045","D0:AD:08:A3:7B:77","10.154.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX1","","'+02:00","2026-04-17T12:42:58.000+02:00","Superviseur","Cloud Agent","438891d5-0337-425b-a392-1b043980a03c","2024-10-16T12:03:42.000+02:00","2026-04-22T08:48:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"328593408","","PCB20745.sanef.groupe","PCB20745","58:1C:F8:EB:79:45","10.255.4.192","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2T","","'+02:00","2026-04-15T08:10:24.000+02:00","SANEF\heurgue","Cloud Agent","5dba075d-21b7-41d0-a12a-18eb3bc0fa46","2025-05-30T11:13:47.000+02:00","2026-04-22T08:48:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"236549943","265276980","vpechatre2.sanef.groupe","","00:50:56:90:2c:2e","10.42.16.134","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 48 20 ea b6 3a 83-1e dd 57 83 4f 65 64 33","No Asset Tag","'+02:00","2025-11-18T15:28:24.000+02:00","cybreconcile","Cloud Agent","795a8b92-3919-4704-9255-37eaf5049f65","2024-05-14T14:27:38.000+02:00","2026-04-22T11:23:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,TALEND","208.0" +"197807916","243076074","nvr-spare-etv","NVR-SPARE-ETV","00:50:56:82:C1:E6","10.152.7.252","fe80::6c6c:919c:e531:6ba0","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 f1 84 9c e9 64 3c-50 4a 26 e9 a4 30 40 58","NoAssetTag","'+02:00","2026-01-28T12:50:40.000+02:00","Administrateur","Cloud Agent","fd3dfa9d-76ec-43cb-a898-50f8cd06b8ec","2023-11-07T11:28:24.000+02:00","2026-04-22T08:48:02.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,DEX,NVR","508.0" +"387189143","356515675","vmdgest01.recette.adds","VMDGEST01","00:50:56:9C:77:89","10.45.17.131","fe80::f839:6638:c52c:3ce6","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 6b b2 38 3e bf-58 2e 25 b9 2d 80 a7 fb","NoAssetTag","'+02:00","2026-04-16T01:35:51.000+02:00","supwindev","Cloud Agent","1b2d19d1-9fde-4ed4-88bb-e1b40669927e","2025-12-31T16:19:08.000+02:00","2026-04-22T08:47:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"370383934","348882263","PCB17801.sanef.groupe","PCB17801","D0:AD:08:0C:8D:19","10.200.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3N","","'+02:00","2026-04-16T09:12:35.000+02:00","SANEF\JOUATTE","Cloud Agent","e844a3e1-98a5-4558-87e2-785b0628920f","2025-10-21T11:48:35.000+02:00","2026-04-22T08:47:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"340144930","336514450","PCB17782.sanef.groupe","PCB17782","28:C5:D2:9F:C3:97","10.205.0.37,10.255.1.221","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y41","","'+02:00","2026-04-16T08:56:11.000+02:00","SANEF\GANIER","Cloud Agent","c9f8e13d-8cc9-4350-bf61-a519030fc68d","2025-07-08T15:40:28.000+02:00","2026-04-22T11:16:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"325248248","331288891","vposapkib1.sanef.groupe","","00:50:56:90:d2:21","10.41.20.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 65 6a 7f f9 9d e9-49 e9 27 e1 07 1e 65 fe","No Asset Tag","'+02:00","2026-02-25T17:17:08.000+02:00","cybsupsys","Cloud Agent","b8c5e342-d8c3-4e4b-9a54-a47044b97c84","2025-05-16T14:45:24.000+02:00","2026-04-22T11:19:49.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,Péage","144.0" +"372173101","349603607","PCB24201.sanef.groupe","PCB24201","30:E3:A4:D6:F7:45","10.255.4.248","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLN","","'+02:00","2026-04-20T10:28:01.000+02:00","SANEF\hopin","Cloud Agent","aea4e318-ee21-4b15-9861-a49f34c807b4","2025-10-27T16:59:01.000+02:00","2026-04-22T08:47:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"333995189","333995105","PCB24112.sanef.groupe","PCB24112","48:EA:62:C8:93:D1","10.105.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V72","","'+02:00","2026-04-03T07:30:21.000+02:00","SANEF\BRICOUTD","Cloud Agent","69d9863d-24b9-47f1-a6de-987aafded5f9","2025-06-17T11:53:24.000+02:00","2026-04-22T08:46:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"328617436","","PCB23582.sanef.groupe","PCB23582","C8:6E:08:8A:45:7B","10.205.0.20,192.168.1.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L77","","'+02:00","2026-04-08T15:14:01.000+02:00","SANEF\peron","Cloud Agent","69916d2d-c478-4c81-ae98-60f1de485dbc","2025-05-30T13:59:07.000+02:00","2026-04-22T08:46:45.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"187703359","237569912","lremvbremv2.sanef.groupe","","00:17:a4:77:1c:38, 00:17:a4:77:1c:3c","192.168.108.116,192.168.108.136,192.168.108.138,169.254.1.199,172.16.0.116","fe80::217:a4ff:fe77:1c38,fe80::217:a4ff:fe77:1c3c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000707","","'+02:00","2024-05-15T12:09:38.000+02:00","root","Cloud Agent","8066c65e-2e21-482d-afab-6cf60d6f3b18","2023-09-13T17:37:59.000+02:00","2026-04-22T11:07:34.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard V17 Recette,Cloud Agent,Linux Server,DEX","494.0" +"358642751","344172386","vpdsiawsus2.sanef-int.adds","VPDSIAWSUS2","00:50:56:8D:46:C9","10.44.2.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 0d 04 80 5b e6 7f 51-6d 32 22 32 f1 25 96 a9","NoAssetTag","'+02:00","2026-04-15T15:38:15.000+02:00","SANEF-INT\B07185","Cloud Agent","ae330ab8-116d-48d5-b574-94067f3e9d1a","2025-09-10T16:03:42.000+02:00","2026-04-22T08:46:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,WSUS,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent","233.0" +"152234120","206839618","vpecmbsql1.sanef-int.adds","VPECMBSQL1","00:0C:29:1B:93:CC","10.44.2.37","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","24575","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-56 4d e7 50 cc fc d2 38-8d cd e7 98 c6 1b 93 cc","NoAssetTag","'+02:00","2026-01-26T15:49:00.000+02:00","SANEF-INT\b03987","Cloud Agent","c1b0a7b8-cc1b-4149-8d78-7d2a689450eb","2022-12-16T10:57:08.000+02:00","2026-04-22T08:45:22.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,BDD-SQL DYN,SCCM","521.0" +"319330663","328390117","PCB22838.sanef.groupe","PCB22838","D0:AD:08:A3:7B:29","10.1.30.12","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXL","8CC3502YXL","'+02:00","2026-03-28T09:11:17.000+02:00","SANEF\vanacker","Cloud Agent","eb71e931-0890-408b-9a5b-c998c3e13cda","2025-04-25T10:10:32.000+02:00","2026-04-22T08:45:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"324358744","330212478","PCB22316.sanef.groupe","PCB22316","60:45:2E:0F:8E:30","10.255.3.146","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ2","8CC3502YZ2","'+02:00","2026-03-29T09:13:06.000+02:00","SANEF\gallaisf","Cloud Agent","ed880972-ed0f-467f-a377-de3bc825ef1e","2025-05-13T11:54:15.000+02:00","2026-04-22T08:45:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"240181789","273966129","SVP20977.sanef-int.adds","SVP20977","BC:0F:F3:88:FD:32","10.106.18.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMG","","'+02:00","2026-04-21T12:50:22.000+02:00","Superviseur","Cloud Agent","29af74a6-efae-4e12-9cdb-3107485e8a44","2024-05-29T15:28:08.000+02:00","2026-04-22T08:45:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"128134207","191071975","vpburaadfs2.sanef.groupe","VPBURAADFS2","00:50:56:82:37:68","10.30.12.15","fe80::c9d6:5763:e515:a94","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-56 4d 35 af 1d 95 2b 6f-4a fc eb f5 40 42 dd 22","NoAssetTag","'+02:00","2026-01-27T11:30:53.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","93895059-5d2e-4ca5-8cc2-082872b218db","2022-06-16T10:52:45.000+02:00","2026-04-22T08:44:52.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Haute,Windows Server,Critical,OS-WIN-SRV DYN,VRF_INCONNUE,AD,DSI,High,Compte & Acces,Production,Cloud Agent","845.0" +"324027359","","PCB20634.sanef.groupe","PCB20634","58:1C:F8:EB:79:13","10.100.39.66,192.168.1.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3W","","'+02:00","2026-04-20T14:54:58.000+02:00","SANEF\DELABROYE","Cloud Agent","201c9257-ed21-4c3d-b478-7686e44ef5b5","2025-05-12T12:47:51.000+02:00","2026-04-22T08:44:31.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"285212527","","SVP22869.sanef-int.adds","SVP22869","D0:AD:08:A7:27:BD","10.212.26.209","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN2","","'+01:00","2026-04-01T10:31:57.000+02:00","Superviseur","Cloud Agent","9829b9bd-2539-4f40-8e75-2c8cdd46a3b8","2024-12-09T13:54:34.000+02:00","2026-04-22T08:44:27.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331437535","","PCB23557.sanef.groupe","PCB23557","C8:6E:08:8A:45:35","10.101.243.90,192.168.1.84","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L64","","'+02:00","2026-04-02T14:12:51.000+02:00","SANEF\HUYNH","Cloud Agent","4b3b2ddc-ca8d-410d-8712-5af2ee16bdb4","2025-06-06T14:49:17.000+02:00","2026-04-22T08:44:17.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"409534543","364931497","PCB24230.sanef.groupe","PCB24230","70:15:FB:7E:20:D4","192.168.1.154,192.168.1.67","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYT","","'+02:00","2026-04-16T09:18:39.000+02:00","SANEF\josserand","Cloud Agent","c2217d45-aa31-4289-91d7-a36bb2c66a3a","2026-03-18T16:09:30.000+02:00","2026-04-22T08:44:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"223160633","255065731","OSA20932.sanef-int.adds","OSA20932","BC:0F:F3:87:66:69","10.100.20.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLX","","'+02:00","2026-04-16T21:01:04.000+02:00","Superviseur","Cloud Agent","c7ee695f-14df-43d6-9491-a95d5f24cfae","2024-03-18T15:24:35.000+02:00","2026-04-22T08:44:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"130583718","192833336","vdameasxt1","","00:50:56:82:7c:10, 66:f9:37:c3:7e:94, fe:90:fc:73:f5:6b, ee:ee:ee:ee:ee:ee","10.45.2.56,10.233.102.128,169.254.25.10","fe80::250:56ff:fe82:7c10,fe80::64f9:37ff:fec3:7e94,fe80::ecee:eeff:feee:eeee","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","3","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 53 e6 8b 2f b6 06-8f 26 29 fa 57 33 f6 e4","No Asset Tag","'+02:00","2025-10-08T13:43:03.000+02:00","cybreconcile","Cloud Agent","084596db-0cec-4dbf-82cb-d7db228164f0","2022-07-07T11:35:58.000+02:00","2026-04-22T11:00:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,BDD-POS DYN,VRF_INCONNUE","245.0" +"376111505","351375871","PCB18012.sanef.groupe","PCB18012","C0:18:03:85:61:2D","10.200.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206174Y","8CC206174Y","'+02:00","2026-04-09T13:51:34.000+02:00","SANEF\bouvierar","Cloud Agent","8ba18419-e72b-4ffa-a4ce-b83db2a0af1d","2025-11-12T12:35:45.000+02:00","2026-04-22T11:27:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"377360245","352023467","PCB24335.sanef.groupe","PCB24335","10:B6:76:93:FA:9B","10.152.31.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YGH","","'+02:00","2026-04-20T07:59:24.000+02:00","SANEF\PRUVOTJ","Cloud Agent","c4bdb8d3-7a90-4f0a-90ae-91044f1ba8d9","2025-11-18T09:30:16.000+02:00","2026-04-22T08:43:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","254.0" +"324054990","","PCB23788.sanef.groupe","PCB23788","6C:0B:5E:EE:A3:C5","10.5.31.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4R","","'+02:00","2026-04-21T13:43:59.000+02:00","SANEF\cereser","Cloud Agent","80973cf4-7632-4c3d-9be8-eeaf0da895f2","2025-05-12T14:44:10.000+02:00","2026-04-22T08:43:08.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"255419684","294877149","lramebrac4.sanef-rec.fr","","3e:33:fb:a0:00:da, 3e:33:fb:a0:00:d6","10.45.5.9,169.254.28.85,10.45.2.113,10.45.2.117","fe80::3c33:fbff:fea0:da,fe80::3c33:fbff:fea0:d6","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW52010","/n/Bios Asset Tag :","'+02:00","2026-04-20T14:20:51.000+02:00","reboot","Cloud Agent","4e64c4bc-08ea-4237-bd14-c2fa87d29bb3","2024-08-02T16:53:15.000+02:00","2026-04-22T11:23:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Sextan,Recette,Amelie,OS-LIN-SRV DYN","503.0" +"331393040","","PCB21162.sanef.groupe","PCB21162","D0:AD:08:E9:07:8A","10.154.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HV1","","'+02:00","2026-04-20T11:47:07.000+02:00","SANEF\GONNET","Cloud Agent","c4bb4456-6ab0-418e-b5ee-481af210816d","2025-06-06T10:12:14.000+02:00","2026-04-22T08:42:43.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325943544","","PCB20727.sanef.groupe","PCB20727","BC:0F:F3:3D:28:10","10.255.1.180,10.200.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DST","","'+02:00","2026-03-30T18:46:40.000+02:00","SANEF\gascoin","Cloud Agent","faf88c88-4da2-4d70-ab4e-56a3f0c74967","2025-05-20T13:26:21.000+02:00","2026-04-22T08:42:29.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"370171321","348791253","PCB21200.sanef.groupe","PCB21200","D0:AD:08:AA:50:54","10.208.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JK","","'+02:00","2026-04-07T11:41:52.000+02:00","SANEF\aze","Cloud Agent","88b7bcef-5437-499b-ae94-75488d05b9a1","2025-10-20T14:57:37.000+02:00","2026-04-22T11:22:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"183438113","234851841","vpburbimp1.sanef.groupe","VPBURBIMP1","00:50:56:9C:88:27","10.46.31.70","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1c 63 f1 39 e8 09 1d-30 3d 7f c7 37 b0 02 6d","NoAssetTag","'+02:00","2026-01-27T13:24:13.000+02:00","SANEF\ndead","Cloud Agent","b54fdb66-5252-41fd-a659-60b0454a05bf","2023-08-18T14:30:22.000+02:00","2026-04-22T08:41:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","PaperCut,DSI,BDD-SQL DYN,Cloud Agent,Windows Server,OS-WIN-SRV DYN","342.0" +"193979918","241187013","vpburaaov1.sanef.groupe","VPBURAAOV1","00:50:56:9C:F8:67, 00:50:56:9C:29:C6","192.168.212.34,10.205.0.2","fe80::5834:ed7b:9857:836f,fe80::6cab:ada:fca1:a136","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 1c ad 2c bc b1 54 5f-f4 77 34 de 1a 89 cf 09","NoAssetTag","'+02:00","2026-03-19T11:55:39.000+02:00","SANEF.GROUPE\atrad@sanef.com","Cloud Agent","38d0f6d8-38ff-488f-91c6-e3670f7b747c","2023-10-18T09:07:27.000+02:00","2026-04-22T10:57:55.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,VPN,Compte & Acces,Cloud Agent,Windows Server,High,TAG-SRVEXPOSEINTERNET,Production,Haute","130.0" +"333156387","","PCB24023.sanef.groupe","PCB24023","6C:0B:5E:F8:E7:06","192.168.1.13,10.105.31.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF2","","'+02:00","2026-04-14T14:04:40.000+02:00","SANEF\BERNAUX","Cloud Agent","1a717192-1794-42a2-8f77-7d6d47bcc536","2025-06-13T11:58:06.000+02:00","2026-04-22T08:40:54.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"318687698","328168621","PCB22442.sanef.groupe","PCB22442","D0:AD:08:A7:27:A9","10.104.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTD","8CC3502YTD","'+02:00","2026-04-21T11:40:58.000+02:00","SANEF\CERF","Cloud Agent","0dd0cc32-ca06-4ddf-bed9-6ba714977baf","2025-04-23T09:35:18.000+02:00","2026-04-22T08:40:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"280824387","305629318","PCB22514.sanef.groupe","PCB22514","D0:AD:08:AA:50:7D","10.220.31.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KW","","'+02:00","2026-04-01T08:57:24.000+02:00","SANEF\platelc","Cloud Agent","11dad274-4e23-43f6-8ef5-fc8bb9e9a47a","2024-11-20T15:52:51.000+02:00","2026-04-22T11:31:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"189946429","238855499","vibotrssm1","VIBOTRSSM1","00:50:56:90:99:3D","10.41.23.152","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 8e 39 38 b1 f2 9b-fe c1 43 15 5d a5 37 1a","NoAssetTag","'+02:00","2026-03-18T16:34:55.000+02:00","SANEF\ndead","Cloud Agent","080e93b7-1276-4212-a209-daee7ec6e930","2023-09-26T11:32:27.000+02:00","2026-04-22T08:40:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Production,FreeFlow,Flux Libre,flux_libre","335.0" +"317591666","327677223","PCB23783.sanef.groupe","PCB23783","6C:0B:5E:EE:93:18","10.108.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3D","","'+02:00","2026-04-15T15:10:18.000+02:00","SANEF\RIMBAULT","Cloud Agent","29404b02-3a06-4dd7-8faa-1eac257356ad","2025-04-18T11:20:51.000+02:00","2026-04-22T08:40:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"322106482","329345971","PCB23644.sanef.groupe","PCB23644","6C:0B:5E:EE:A3:6B","10.200.30.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBW","","'+02:00","2026-03-31T09:58:57.000+02:00","SANEF\FEGER","Cloud Agent","8dc187ac-c3dc-4abc-a5ba-91f21088c47c","2025-05-05T16:10:04.000+02:00","2026-04-22T08:40:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"326550236","","PCB23603.sanef.groupe","PCB23603","6C:0B:5E:EE:EC:12","192.168.1.11,10.100.39.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5Z","","'+02:00","2026-03-31T09:28:29.000+02:00","SANEF\DESCANNEVELLE","Cloud Agent","0ac6e328-36ff-4b66-a256-c53a93a85426","2025-05-22T11:13:09.000+02:00","2026-04-22T08:40:09.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"383959306","354726943","PCB20685.sanef.groupe","PCB20685","BC:0F:F3:3D:58:A3","10.202.31.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CT6","","'+02:00","2026-04-17T15:06:55.000+02:00","SANEF\gilletj","Cloud Agent","eecec7a7-c399-4b13-840b-eaab4fa82b59","2025-12-15T12:16:42.000+02:00","2026-04-22T08:40:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"295952448","317393322","vpvsaasia2","","00:50:56:94:73:30","10.44.2.201","fe80::250:56ff:fe94:7330","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 ab ae 1f bb 23 47-54 83 36 3a 8f 25 bf 3a","No Asset Tag","'-04:00","2026-02-02T12:37:49.000+02:00","tbaad","Cloud Agent","cfc98c51-d86e-4590-b98c-102ab201162a","2025-01-29T12:18:42.000+02:00","2026-04-22T11:13:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0" +"329765681","","MTR-1PXF2L3","MTR-1PXF2L3","A4:BB:6D:90:A9:7A","10.101.246.207","fe80::339c:91:6c63:5d3e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","1PXF2L3","","'+02:00","2026-04-22T02:33:13.000+02:00","Skype","Cloud Agent","92ddccb6-8649-406a-bf06-ead508eb3f82","2025-06-03T12:58:25.000+02:00","2026-04-22T08:39:37.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"329760923","","MTR-3G1CXM3","MTR-3G1CXM3","A4:BB:6D:95:CA:CE","10.101.246.208","fe80::f286:b73a:cbf2:2a81","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","3G1CXM3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","84447e62-2001-4008-b849-e4a0a19721e1","2025-06-03T12:53:15.000+02:00","2026-04-22T08:39:37.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359135332","","PCB20689.sanef.groupe","PCB20689","58:1C:F8:EB:6A:31","10.255.1.175","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224D3S","","'+02:00","2026-03-29T20:56:09.000+02:00","SANEF\nion","Cloud Agent","415a6ede-5b56-4df9-aaf2-f76107fdac98","2025-09-12T10:18:51.000+02:00","2026-04-22T08:39:28.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"363314612","346060503","PCV18542.sanef-int.adds","PCV18542","30:13:8B:6C:5A:6F","10.152.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473T9","","'+02:00","2026-04-10T10:15:54.000+02:00","Operateur","Cloud Agent","3553bfa4-cb1b-4bf0-870a-bfc3ac29c2c5","2025-09-26T17:05:56.000+02:00","2026-04-22T08:39:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"387494428","356668957","MIO20985.sanef-int.adds","MIO20985","28:C5:C8:39:31:60","10.100.40.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.19.01","8CC3290LLV","","'+02:00","2026-03-16T15:07:23.000+02:00","Operateur","Cloud Agent","20df591d-8ff6-40c6-82b8-b531ba4a1eda","2026-01-02T17:36:45.000+02:00","2026-04-22T08:38:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"363859540","346360048","PCB21596.sanef.groupe","PCB21596","D0:AD:08:A7:27:B7","10.12.31.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNG","8CC3502YNG","'+02:00","2026-04-17T18:01:02.000+02:00","SANEF\FREMEAUX","Cloud Agent","c9dfcd75-ea50-42ec-b18c-bbfb87dd2443","2025-09-29T12:15:44.000+02:00","2026-04-22T08:38:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"324711439","","PCB23750.sanef.groupe","PCB23750","C8:6E:08:47:0B:B2","10.5.31.44,10.255.1.174","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H53","","'+02:00","2026-03-31T09:25:29.000+02:00","SANEF\thomas","Cloud Agent","a240cf96-bdfd-4b31-a77b-051ea4b12aef","2025-05-14T13:45:24.000+02:00","2026-04-22T08:38:21.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"374186576","350497883","PCV18557.sanef-int.adds","PCV18557","30:13:8B:6C:5D:0E","10.5.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","32473","HP U50 Ver. 03.03.11","CZC44473T6","","'+02:00","2026-03-26T22:04:04.000+02:00","Operateur","Cloud Agent","f0668b74-6009-4c0c-a4d8-317fcbe9c3a3","2025-11-04T17:50:11.000+02:00","2026-04-22T08:38:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"331393225","","PCB23515.sanef.groupe","PCB23515","C8:6E:08:88:F0:CC","10.205.0.81,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8F","","'+02:00","2026-04-10T18:33:05.000+02:00","SANEF\KAMOUN","Cloud Agent","eb854671-3674-4567-8024-d040593ce7b0","2025-06-06T10:07:51.000+02:00","2026-04-22T08:38:15.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"177183604","230557589","vptchagtc1","VPTCHAGTC1","00:50:56:82:AA:DE","10.41.19.45","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8191","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 2e ce cc af b3 ad-45 1f c1 42 d4 f3 e8 3f","NoAssetTag","'+02:00","2026-03-31T10:51:53.000+02:00","admin_gtc","Cloud Agent","48681b62-8530-47d9-a9fe-dab792d0fdaf","2023-07-05T09:06:33.000+02:00","2026-04-22T08:38:14.000+02:00","64-Bit","5","SCA,VM,PM,GAV","GTC,Cloud Agent,Windows Server,BDD-SQL DYN,OS-WIN-SRV DYN,DEX","831.0" +"130357913","192670921","vppeaaref1","VPPEAAREF1","00:50:56:82:4F:DA","10.41.2.230","fe80::b747:dde8:3426:8a96","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2594","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","10240","Phoenix Technologies LTD 6.00","VMware-42 02 68 22 6e 03 b8 9f-76 7e 6f 3c 79 01 71 67","NoAssetTag","'+02:00","2026-02-25T12:52:46.000+02:00","Administrateur","Cloud Agent","4165dc57-0372-4422-afe6-52f0a6745e53","2022-07-05T17:17:54.000+02:00","2026-04-22T08:37:53.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Production,High,Péage,Haute,DEX,OS-WIN-SRV DYN,VRF_PEAGE_DC,SVP,Cloud Agent,Windows Server","643.0" +"320434189","328701285","PCB22891.sanef.groupe","PCB22891","D0:AD:08:A7:27:DE","10.1.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSW","8CC3502YSW","'+02:00","2026-04-05T16:05:11.000+02:00","SANEF\bastienn","Cloud Agent","8c6afe10-f3ff-43e2-a8eb-37b0817083d2","2025-04-29T09:54:53.000+02:00","2026-04-22T08:37:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"393372827","358619752","PCB21340.sanef.groupe","PCB21340","E4:60:17:CA:3E:65","10.205.0.188,172.20.10.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MB","","'+02:00","2026-04-01T12:12:08.000+02:00","SANEF\corouge-ext","Cloud Agent","8462a6df-0b36-4f68-8c27-b7c5b387eaaf","2026-01-19T17:58:02.000+02:00","2026-04-22T11:16:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"152233312","206840494","vpiadaadm1.sanef-int.adds","VPIADAADM1","00:50:56:8D:23:90","10.44.2.164","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","32767","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 0d 78 03 2a 10 8c f4-85 38 e7 41 d4 6b fe fc","NoAssetTag","'+02:00","2026-04-15T17:25:49.000+02:00","SANEF-INT\B07185","Cloud Agent","6b639443-de9f-4590-8f39-d76aa6590d72","2022-12-16T11:10:24.000+02:00","2026-04-22T08:37:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DSI,VRF_INCONNUE,AD","338.0" +"337912529","","PCB21306.sanef.groupe","PCB21306","30:F6:EF:A6:93:F7","10.205.0.97,192.168.0.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJX","","'+02:00","2026-04-22T08:33:48.000+02:00","SANEF\gilot","Cloud Agent","1a1ff8b4-f87c-4889-9abb-8ccf713a3c64","2025-07-01T11:44:16.000+02:00","2026-04-22T08:37:20.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331197662","","PCB21172.sanef.groupe","PCB21172","F0:20:FF:9B:27:6F","10.255.1.172","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HW4","","'+02:00","2026-04-22T08:32:44.000+02:00","SANEF\LECOUTRE","Cloud Agent","e75e6a8c-790e-475f-8297-10a9a4a948af","2025-06-05T16:43:17.000+02:00","2026-04-22T08:37:01.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"352096727","341458295","PCB21093.sanef.groupe","PCB21093","D0:AD:08:AA:50:46","10.101.243.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764J3","","'+02:00","2026-04-15T08:26:20.000+02:00","SANEF\HUBERT-ext","Cloud Agent","40875f18-20f3-4005-ae88-afe801cdb9c2","2025-08-18T10:08:09.000+02:00","2026-04-22T08:36:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"330793253","","PCB21286.sanef.groupe","PCB21286","30:F6:EF:A5:F8:BB","10.205.0.28,192.168.1.81","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GJJ","","'+02:00","2026-04-16T12:54:43.000+02:00","SANEF\MAZETIER","Cloud Agent","78921bc1-1988-423e-bcef-35ea45e31ed2","2025-06-04T14:57:40.000+02:00","2026-04-22T08:36:12.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"395830937","359634979","PCB25948.sanef.groupe","PCB25948","4C:CF:7C:0A:3C:E9","10.205.0.122,192.168.1.59","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534221Q","","'+02:00","2026-04-17T11:27:41.000+02:00","SANEF\KEROAS","Cloud Agent","fdbb4951-909b-441a-bd8c-560c3a53dd51","2026-01-29T11:30:53.000+02:00","2026-04-22T08:36:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"377683971","352158041","PCV21615.sanef-int.adds","PCV21615","D0:AD:08:A4:4D:B0","10.197.12.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711K4","","'+02:00","2025-11-19T09:56:26.000+02:00","Operateur","Cloud Agent","7e6d9fe3-2a19-42b6-9cca-53b91ffad6fc","2025-11-19T10:28:54.000+02:00","2026-04-22T08:36:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"324023210","","PCB18751.sanef.groupe","PCB18751","BC:0F:F3:3D:48:20","192.168.1.33,10.5.30.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D36","","'+02:00","2026-04-21T09:41:55.000+02:00","SANEF\merenne","Cloud Agent","f8c32d61-8be9-4e38-b657-52f8f9f1f9c6","2025-05-12T10:47:14.000+02:00","2026-04-22T08:35:24.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"300882812","320632876","PCB22462.sanef.groupe","PCB22462","D0:AD:08:E9:37:5C","10.104.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HV0","","'+02:00","2026-04-17T07:54:19.000+02:00","SANEF\durbecq","Cloud Agent","0378436e-b335-4d07-93a8-3bcb5548a34d","2025-02-18T11:08:36.000+02:00","2026-04-22T08:35:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"376610054","351612491","PCV21580.sanef-int.adds","PCV21580","D0:AD:08:A3:7C:C6","10.12.7.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YY8","","'+02:00","2026-03-03T10:07:44.000+02:00","Operateur","Cloud Agent","b9085726-5e01-420d-b987-0e611373479c","2025-11-14T12:51:47.000+02:00","2026-04-22T08:35:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"175136490","229075061","vvbotrssm1.recette.adds","VVBOTRSSM1","00:50:56:9C:79:3A","192.168.21.164","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1c f4 3e 50 ab 0f cb-58 91 ce 9f 8e a7 ab bc","NoAssetTag","'+02:00","2026-03-12T11:44:23.000+02:00","RECETTE\b03987","Cloud Agent","17b0d537-7baa-4d30-be15-6fb57f79dab1","2023-06-20T12:41:04.000+02:00","2026-04-22T08:34:38.000+02:00","64-Bit","2","SCA,VM,GAV","Cloud Agent,OS-WIN-SRV DYN,flux_libre,Flux Libre,Recette,FreeFlow","247.0" +"362042307","345551861","PCB24196.sanef.groupe","PCB24196","30:E3:A4:D6:80:F8","10.255.2.154,10.255.2.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKG","","'+02:00","2026-04-20T10:41:58.000+02:00","SANEF\machy","Cloud Agent","bd2a4937-898d-4489-9336-9c122b15edd6","2025-09-22T17:39:57.000+02:00","2026-04-22T10:38:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"325208536","","PCB20742.sanef.groupe","PCB20742","BC:0F:F3:3D:38:BB","10.200.31.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CS6","","'+02:00","2026-03-30T18:55:10.000+02:00","SANEF\wibault","Cloud Agent","afc31fb2-9014-4095-8d30-2ef82e213ffe","2025-05-16T12:19:12.000+02:00","2026-04-22T08:33:15.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"281447180","","PCB21349.sanef.groupe","PCB21349","D0:AD:08:AA:50:92","10.202.31.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LK","","'+02:00","2026-04-01T07:02:11.000+02:00","SANEF\guerrierc","Cloud Agent","92714763-54f8-48d7-be30-fa6c358ab4f0","2024-11-22T11:25:11.000+02:00","2026-04-22T08:32:45.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"358166523","344040947","PCV18552.sanef-int.adds","PCV18552","30:13:8B:6C:5D:39","10.100.7.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473ST","","'+02:00","2026-04-22T05:02:21.000+02:00","Operateur","Cloud Agent","bc7714db-222c-4b74-8010-497add61ba51","2025-09-09T15:40:56.000+02:00","2026-04-22T08:32:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"224249089","255705459","PCB20677.sanef.groupe","PCB20677","58:1C:F8:E9:76:7C","10.205.0.167,192.168.1.14","fe80::4642:78af:5af1:c340","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.13.01","5CG3224D2R","","'+02:00","2026-04-07T09:37:57.000+02:00","SANEF\ZHOU-ext","Cloud Agent","450895ef-740e-4096-8ea7-319af0df30a4","2024-03-22T12:24:49.000+02:00","2026-04-22T11:32:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"334719895","","PCB24075.sanef.groupe","PCB24075","08:B4:D2:2C:89:72","192.168.1.41,10.205.0.79","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506438S","","'+02:00","2026-04-20T09:11:24.000+02:00","SANEF\LAMHAJEB-ext","Cloud Agent","00673dfc-af7c-404a-91fb-3505bc5d5191","2025-06-19T14:21:54.000+02:00","2026-04-22T08:32:05.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"328633300","","PCB23703.sanef.groupe","PCB23703","C8:6E:08:88:FD:DD","192.168.0.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8K","","'+02:00","2026-04-20T12:11:21.000+02:00","SANEF\BERGER-MOLAGER","Cloud Agent","724ec26a-1449-462e-8383-1c1275609792","2025-05-30T15:17:20.000+02:00","2026-04-22T08:32:01.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"327790435","","PCB23575.sanef.groupe","PCB23575","C8:6E:08:88:F0:40","10.255.3.179,10.255.3.189","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L54","","'+02:00","2026-03-31T08:38:29.000+02:00","SANEF\riot","Cloud Agent","3f367bd4-6df3-4fd2-a3e8-3efcf06c89e3","2025-05-28T14:59:35.000+02:00","2026-04-22T08:31:19.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"231772330","259457242","ls-le-touquet","LS-LE-TOUQUET","00:50:56:90:29:CF","10.41.2.101","fe80::c6a9:6b2e:f39c:8c49","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 73 d2 b2 13 40 65-e5 4f e3 e4 31 10 05 4d","NoAssetTag","'+02:00","2026-03-04T16:33:57.000+02:00","svpadmin","Cloud Agent","c31f2e3a-b354-4b86-b4a1-95c8dedf2176","2024-04-23T10:07:26.000+02:00","2026-04-22T08:31:10.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Péage,Production,SVP,High,VRF_PEAGE_DC,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","681.0" +"309374866","324174322","vrdsiaazu1.recette.adds","VRDSIAAZU1","00:50:56:9C:F8:8A","10.45.0.140","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 89 23 15 cd fd 28-2a 58 65 05 0e b1 ea fb","NoAssetTag","'+02:00","2026-04-21T13:52:46.000+02:00","Administrateur","Cloud Agent","9576ac45-5430-4891-aa42-e621bacdacfa","2025-03-19T16:36:23.000+02:00","2026-04-22T08:31:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,BDD-SQL DYN,DSI,Recette,AD,OS-WIN-SRV DYN","243.0" +"360021614","","PCB18088.sanef.groupe","PCB18088","64:D6:9A:1D:2D:97","10.255.4.203,10.202.31.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG2376HSJ","","'+02:00","2026-04-09T14:10:58.000+02:00","estelle.pitette@sapn.fr","Cloud Agent","5f91ed0c-f747-4bf1-9ffe-fa3a30eded62","2025-09-16T12:40:46.000+02:00","2026-04-22T08:30:38.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"130587954","192835990","vmamrmet1","","00:50:56:82:2C:C1, 00:50:56:82:59:C6, 00:50:56:82:65:99","10.45.2.150,10.45.2.152,10.45.3.150,10.45.3.152,10.45.4.150","fe80::250:56ff:fe82:2cc1,fe80::250:56ff:fe82:59c6,fe80::250:56ff:fe82:6599","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 5b 39 52 6e fc 3f-66 9d f0 ed db db 06 a9","No Asset Tag","'+02:00","2025-10-09T11:39:04.000+02:00","cybadmsys","Cloud Agent","0c5baa2e-99a4-4a1d-9d82-87138a30c4f5","2022-07-07T12:01:27.000+02:00","2026-04-22T08:30:33.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Trafic,Recette,Sans,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,DEX,VRF_INCONNUE,MIVISU","878.0" +"329961623","","PCB23602.sanef.groupe","PCB23602","C8:6E:08:88:FD:24","10.152.31.11,10.255.4.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5C","","'+02:00","2026-04-09T17:57:35.000+02:00","SANEF\othman","Cloud Agent","005bcc15-1c64-4933-b123-024b5263a939","2025-06-03T17:21:31.000+02:00","2026-04-22T08:29:55.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"377391132","352028486","PCB24233.sanef.groupe","PCB24233","24:FB:E3:CD:06:4B","10.152.30.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M6T","","'+02:00","2026-03-29T09:29:10.000+02:00","SANEF\RINCY","Cloud Agent","f7dce792-c14f-434d-9f1a-489838c3dc78","2025-11-18T10:19:46.000+02:00","2026-04-22T08:29:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","342.0" +"238724130","269608771","vpbotarep1.sanef.groupe","","00:50:56:90:8d:5d","10.41.23.28","fe80::250:56ff:fe90:8d5d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c1 91 ba 08 ed 99-f7 2c 35 90 ca 0c 84 06","No Asset Tag","'+02:00","2026-04-21T09:42:10.000+02:00","cybreconcile","Cloud Agent","c6093b94-cfd4-4f0e-a877-2643ba5a1570","2024-05-23T09:07:48.000+02:00","2026-04-22T10:51:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","141.0" +"387175213","356513162","vmddops02.recette.adds","VMDDOPS02","00:50:56:9C:50:A8","10.45.17.68","fe80::a7c7:43e:b813:5a99","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 0a 70 63 43 4f e1-34 11 e1 44 5c 9d c7 90","NoAssetTag","'+02:00","2026-04-15T23:05:27.000+02:00","supwindev","Cloud Agent","f01d3609-5c73-4ff7-be16-361d616c252c","2025-12-31T15:51:48.000+02:00","2026-04-22T08:28:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"364978143","346734278","PCV22439.sanef-int.adds","PCV22439","D0:AD:08:A3:7B:59","10.147.2.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YRH","","'+02:00","2026-04-22T07:55:29.000+02:00","Operateur","Cloud Agent","e520f0a7-7dd8-4bcc-b851-15b2318c98f7","2025-10-02T16:03:12.000+02:00","2026-04-22T08:27:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320491281","328733808","PCB23649.sanef.groupe","PCB23649","6C:0B:5E:EE:CC:7E","10.100.39.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5R","","'+02:00","2026-04-14T10:10:19.000+02:00","SANEF\LABBE","Cloud Agent","d12df45a-ad9a-4952-a372-0876f9321f2c","2025-04-29T15:34:35.000+02:00","2026-04-22T08:27:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","60.0" +"325672004","","PCB20724.sanef.groupe","PCB20724","58:1C:F8:EA:00:51","192.168.0.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D45","","'+02:00","2026-04-20T08:34:29.000+02:00","SANEF\thomasa","Cloud Agent","7ad749c0-95a5-4b0f-97e9-604f17cf43ff","2025-05-19T09:55:43.000+02:00","2026-04-22T08:27:40.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"409462641","364910388","vplogbels1","","00:50:56:94:27:14","10.44.7.39","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 72 af 1d 51 93 ac-40 c3 18 44 d2 07 46 77","No Asset Tag","'+02:00","2026-04-07T11:55:21.000+02:00","cybsecope","Cloud Agent","0ac27646-c8f6-4b55-bb66-f82ddbab5b1a","2026-03-18T12:16:49.000+02:00","2026-04-22T10:57:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"329775921","","PCB23683.sanef.groupe","PCB23683","C8:6E:08:88:FD:79","10.255.3.174","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8P","","'+02:00","2026-04-01T19:08:36.000+02:00","SANEF\macq","Cloud Agent","f2d1e5b4-e7ff-409f-aeb8-a613b5a9ac4b","2025-06-03T14:18:41.000+02:00","2026-04-22T08:27:20.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360266394","","PCB18489.sanef.groupe","PCB18489","E4:60:17:C5:09:31","10.255.3.172","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HN","","'+02:00","2026-04-06T21:48:55.000+02:00","SANEF\CHAICHAA-ext","Cloud Agent","e9b1f2b4-ca36-4b3a-95e5-1f0ae5c505d7","2025-09-16T18:57:04.000+02:00","2026-04-22T08:27:20.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"282386306","306620945","SVP21063.sanef-int.adds","SVP21063","D0:AD:08:A3:E7:1C","10.108.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXV","","'+02:00","2026-04-21T15:35:52.000+02:00","Superviseur","Cloud Agent","ac81e053-4656-400b-9666-feca1946d555","2024-11-26T14:36:05.000+02:00","2026-04-22T10:39:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"359801373","","PCB24342.sanef.groupe","PCB24342","10:B6:76:95:8B:89","10.106.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZY9","","'+02:00","2026-04-22T08:23:37.000+02:00","SANEF\LAGNIEZ","Cloud Agent","9c2cbeed-dcdb-4c7b-827e-5ff2de4f2acd","2025-09-15T16:16:15.000+02:00","2026-04-22T08:26:22.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"387183197","356517262","vmdpeag05.recette.adds","VMDPEAG05","00:50:56:9C:A2:64","10.45.17.199","fe80::350a:4dab:ae6c:f928","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 98 b5 be c8 2a ab-72 ff e0 7d 99 93 0e 1f","NoAssetTag","'+02:00","2026-04-16T02:05:36.000+02:00","supwindev","Cloud Agent","eea026a7-21b3-4f6d-9cd3-270759b44632","2025-12-31T16:38:12.000+02:00","2026-04-22T08:26:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"331397176","","PCB20678.sanef.groupe","PCB20678","58:1C:F8:EA:53:C6","192.168.1.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRX","","'+02:00","2026-04-20T08:08:33.000+02:00","SANEF\loock","Cloud Agent","7ca31224-8cd3-471c-a344-bf7ec1ad5954","2025-06-06T11:32:09.000+02:00","2026-04-22T08:26:03.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"358170685","344041759","vpdsiagrd1.sanef.groupe","","00:50:56:90:50:a9","192.168.19.100","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 0d d0 92 e3 ad f2-6b 12 7f eb 1a 34 a6 00","No Asset Tag","'+02:00","2026-04-15T15:43:37.000+02:00","root","Cloud Agent","173f0431-2687-4201-a8d1-bdb4cea1dbf9","2025-09-09T15:47:41.000+02:00","2026-04-22T10:40:08.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,DMZ,Linux Server,Cloud Agent,TAG-SRVEXPOSEINTERNET,DNS,OS-LIN-SRV DYN,MID-NGINX DYN","115.0" +"127866560","190915920","vpemvawsus1","VPEMVAWSUS1","00:50:56:98:21:E1","192.168.100.130","fe80::13a8:3643:4632:b096","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 18 98 74 62 5d 55 1e-7d a0 2f 9e 3a 21 39 53","NoAssetTag","'+02:00","2026-04-09T23:37:33.000+02:00","Administrateur","Cloud Agent","9257b281-60b5-49e9-a732-418e3c6cfb9c","2022-06-14T16:50:59.000+02:00","2026-04-22T08:25:12.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Sans,Systèmes et serveurs,Production,DMZ,PCI Bunker EMV - VLAN Supervision/Admin,DEX,Cloud Agent,OS-WIN-SRV DYN,Windows Server,EMV,VRF_INCONNUE","486.0" +"227198904","256868975","ls-marquion","LS-MARQUION","00:50:56:90:E8:15","10.41.2.43","fe80::ff94:74ad:ebeb:8b0e","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 96 f3 9e ea 89 a5-43 05 a8 c8 ce ed 3c 81","NoAssetTag","'+02:00","2026-03-05T10:47:19.000+02:00","svpadmin","Cloud Agent","220853b7-4f78-4a30-bc14-f99e30c9ad66","2024-04-03T10:38:56.000+02:00","2026-04-22T08:25:10.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,High,Cloud Agent,Windows Server,Péage,SVP","508.0" +"222255714","254659707","OSA20951.sanef-int.adds","OSA20951","BC:0F:F3:87:6E:34","10.5.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMX","","'+02:00","2026-04-20T13:43:57.000+02:00","Superviseur","Cloud Agent","2323ed5a-c72a-45c4-a326-036ad902c5cd","2024-03-14T12:00:43.000+02:00","2026-04-22T08:25:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"371972285","349575943","PCB24255.sanef.groupe","PCB24255","24:FB:E3:CD:06:39","10.12.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M67","","'+02:00","2026-04-21T14:10:33.000+02:00","SANEF\bourget","Cloud Agent","a1515759-c28c-4648-9afd-6a474d45018f","2025-10-27T12:25:51.000+02:00","2026-04-22T08:24:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"382420952","353964321","PCB25792.sanef.groupe","PCB25792","F8:ED:FC:AA:B5:05","10.252.42.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CSY","","'+02:00","2026-04-10T07:05:07.000+02:00","SANEF\SAUTREAUWARTEL","Cloud Agent","105f5083-d126-4cd8-aa24-99fb57f0da66","2025-12-08T09:49:33.000+02:00","2026-04-22T08:24:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"395334749","359414774","PCB21104.sanef.groupe","PCB21104","D0:AD:08:AA:4F:EF","10.205.0.22,10.101.243.126","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764F9","","'+02:00","2026-03-29T09:50:07.000+02:00","SANEF\ettouil-ext","Cloud Agent","2a66fd02-505f-4f3d-8c2b-240f9f4101c9","2026-01-27T14:24:22.000+02:00","2026-04-22T08:54:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"325911628","","PCB20681.sanef.groupe","PCB20681","58:1C:F8:EB:79:27","10.108.31.13,10.255.2.186","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRB","","'+02:00","2026-04-19T21:46:18.000+02:00","SANEF\CORSET","Cloud Agent","b40bd035-984c-4efe-833e-68c4c030def7","2025-05-20T09:49:10.000+02:00","2026-04-22T08:24:22.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"407779679","364215681","PCV20831.sanef-int.adds","PCV20831","30:13:8B:6C:5F:6B","10.209.7.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q81","","'+02:00","2026-03-11T20:10:26.000+02:00","Operateur","Cloud Agent","56a566f7-2503-43c1-b613-41b836d9a34f","2026-03-11T20:30:32.000+02:00","2026-04-22T08:24:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"238500914","269491572","ls-neufchatel","LS-NEUFCHATEL","00:50:56:90:6F:13","10.41.2.102","fe80::7795:5619:f4c4:acc6","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 62 16 be 2d d7 7e-aa 61 04 2c 23 a3 75 df","NoAssetTag","'+02:00","2026-03-02T12:04:15.000+02:00","svpadmin","Cloud Agent","0d9a0496-d058-4089-a625-a336c5174895","2024-05-22T12:24:35.000+02:00","2026-04-22T08:24:16.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,SVP,Cloud Agent,Windows Server,Péage","507.0" +"129475833","192044393","lamargis1.sanef.groupe","LAMARGIS1","00:17:A4:77:14:D4, 00:17:A4:77:14:D2, 00:17:A4:77:0C:AA","169.254.159.231,169.254.183.135,10.45.2.20","fe80::7d08:d3b6:6a71:9fe7,fe80::f4ef:64a1:51dd:b787,fe80::4c66:d435:49dd:c637","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.23964)","6.1","Computers / Server","HPE ProLiant BL460c G8 Server","24","2000","Intel(R) Xeon(R) CPU E5-2620 0 @ 2.00GHz","49117","HP I31","CZJ3140NJ7","","'+02:00","2025-09-08T10:32:19.000+02:00","administrateur","Cloud Agent","86393092-b813-4443-b155-4fab54fc0f9d","2022-06-28T14:46:45.000+02:00","2026-04-22T08:24:15.000+02:00","64 bits","3","SCA,VM,PM,GAV","DEX,VRF_INCONNUE,OS-WIN-SRV DYN,Recette,Patrimoine,Sans,SIG,Obsolete,Windows Server 2008,Cloud Agent,Windows Server","520.0" +"324026821","","PCB22324.sanef.groupe","PCB22324","D0:AD:08:A3:7D:EB","10.203.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYR","","'+02:00","2026-04-06T06:45:22.000+02:00","SANEF\DEMAN","Cloud Agent","01224b16-647c-453b-b946-bc1824ac9023","2025-05-12T11:14:08.000+02:00","2026-04-22T08:24:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"198003947","243187615","vdaflbdwh1.recette.adds","VDAFLBDWH1","00:50:56:9C:4C:81","10.45.7.166","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4297) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 34 fc 75 8d c3 1a-73 7a 43 ed db 59 a2 d5","NoAssetTag","'+02:00","2026-03-11T10:24:02.000+02:00","Administrateur","Cloud Agent","f51767a6-c3f3-4b04-baf1-94fe61c962a6","2023-11-08T11:32:45.000+02:00","2026-04-22T08:23:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN,Recette,FreeFlow,flux_libre","348.0" +"327589740","","PCB23792.sanef.groupe","PCB23792","6C:0B:5E:ED:A2:52","10.3.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2C","","'+02:00","2026-03-29T13:42:08.000+02:00","SANEF\arbelin","Cloud Agent","94040fa8-cd8f-4f8a-abc8-51879a1ec249","2025-05-27T16:35:38.000+02:00","2026-04-22T08:23:30.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"324719796","","PCB20675.sanef.groupe","PCB20675","BC:0F:F3:3D:08:74","10.100.39.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQ4","","'+02:00","2026-03-30T10:14:51.000+02:00","SANEF\LONGE","Cloud Agent","40c2f9e4-cb23-4516-9628-74210c41c4d6","2025-05-14T16:38:03.000+02:00","2026-04-22T08:23:25.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"128143527","191077597","RMILWDC1.sanef.groupe","RMILWDC1","00:50:56:82:20:E2","10.30.62.30","fe80::f45f:7fb2:d439:1480","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 21 4b 57 c9 a1 0f-fa 2d 47 f5 99 02 4a 17","NoAssetTag","'+02:00","2026-01-26T16:50:00.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","fd0ad34d-12e0-42d0-a292-874ba02d72e0","2022-06-16T12:03:22.000+02:00","2026-04-22T08:23:20.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DSI,AD,Windows Server,VRF_INCONNUE,Production,Sécurité IT,Critical,Criticality,Cloud Agent,OS-WIN-SRV DYN","833.0" +"185608238","236251211","vpdsiakms1.sanef-int.adds","VPDSIAKMS1","00:0C:29:E9:E7:16","10.44.2.39","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","4095","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-56 4d 48 fb 25 77 58 62-98 63 fe fc cf e9 e7 16","NoAssetTag","'+02:00","2026-04-13T14:38:36.000+02:00","SANEF-INT\AP01107","Cloud Agent","62fc028a-2db5-465d-939e-3064488a7a62","2023-09-01T12:35:15.000+02:00","2026-04-22T08:23:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,BDD-SQL DYN,DSI,AD,Cloud Agent,Windows Server","230.0" +"324711392","","PCB23776.sanef.groupe","PCB23776","C8:6E:08:47:72:FA","192.168.1.167","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3M","","'+02:00","2026-04-14T09:16:49.000+02:00","SANEF\TCHICAYA","Cloud Agent","4f568c09-17d1-4b35-8ac5-7b3c5f3806ef","2025-05-14T15:39:31.000+02:00","2026-04-22T08:23:04.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"128614112","191424009","ls-montreuil-bretelle","LS-MONTREUIL-BR","00:50:56:90:62:7F","10.41.2.63","fe80::ccbe:b3eb:6447:1dd1","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 62 6a ea b2 bf 44-40 0d 9d 8e 95 98 5d 16","NoAssetTag","'+02:00","2026-03-02T11:28:23.000+02:00","svpadmin","Cloud Agent","7126eab6-6922-4088-8d74-d50121dc7abd","2022-06-21T15:32:30.000+02:00","2026-04-22T08:23:03.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,SVP,Windows Server,High,Péage,Production","507.0" +"382416402","353964315","PCB25924.sanef.groupe","PCB25924","4C:CF:7C:0A:4C:8A","10.252.42.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342237","","'+02:00","2026-04-21T11:06:38.000+02:00","SANEF\diab","Cloud Agent","ca867b03-9985-42c4-b77a-28d270863081","2025-12-08T09:48:55.000+02:00","2026-04-22T08:22:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"238565707","269520472","vibocmedi1","","00:50:56:90:35:fb","10.41.22.71","fe80::250:56ff:fe90:35fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 33 f6 a2 fc e7 53-c6 0c e2 93 21 20 1c f1","No Asset Tag","'+02:00","2026-03-16T16:10:52.000+02:00","cybsupibm","Cloud Agent","c7705ff9-17c4-4cb4-9646-600201e97957","2024-05-22T16:40:38.000+02:00","2026-04-22T08:22:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,flux_libre,FreeFlow,Flux Libre","336.0" +"349509572","340022757","PCB22665.sanef.groupe","PCB22665","D0:AD:08:AA:4F:F7","10.220.31.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FK","","'+02:00","2026-04-01T08:39:17.000+02:00","audrey.platel@sapn.fr","Cloud Agent","111c9838-be46-4225-a973-6d62ef0c4b07","2025-08-06T14:34:19.000+02:00","2026-04-22T08:21:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"272957025","301385357","SVP21048.sanef-int.adds","SVP21048","D0:AD:08:A3:7B:24","10.7.48.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXM","","'+02:00","2026-04-21T07:59:34.000+02:00","Superviseur","Cloud Agent","2cdd321d-2625-41a2-b348-f2992432ff3a","2024-10-18T09:12:52.000+02:00","2026-04-22T08:21:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"320075698","328611892","PCB23523.sanef.groupe","PCB23523","C8:6E:08:8A:40:99","10.207.31.9,10.255.2.199","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L72","","'+02:00","2026-04-10T18:54:46.000+02:00","SANEF\BEREZAY","Cloud Agent","d63c432e-8168-4adf-9e94-feb0e431f912","2025-04-28T12:03:49.000+02:00","2026-04-22T08:21:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"330689877","","PCB22707.sanef.groupe","PCB22707","D0:AD:08:AA:4F:C0","10.4.31.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764CS","","'+02:00","2026-04-20T08:22:40.000+02:00","SANEF\SERUZIER-ext","Cloud Agent","072c6c04-8b38-46eb-876c-b5da9488a87d","2025-06-04T10:03:39.000+02:00","2026-04-22T08:21:24.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"327328494","","PCB20624.sanef.groupe","PCB20624","BC:0F:F3:3D:68:2A","10.200.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.15.02","5CG3224DR2","","'+02:00","2026-04-21T08:14:33.000+02:00","Sylvie.LECOMTE@sapn.fr","Cloud Agent","810a6100-aac4-48c1-bde5-1f74b4e156e3","2025-05-26T11:53:03.000+02:00","2026-04-22T08:21:19.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"326545718","","PCB18038.sanef.groupe","PCB18038","38:CA:84:52:F8:8B","10.100.38.12,192.168.1.166","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSY","","'+02:00","2026-04-21T16:30:11.000+02:00","SANEF\LEBAIL","Cloud Agent","f990defa-3791-4497-b494-2b814a61fdb7","2025-05-22T09:53:33.000+02:00","2026-04-22T08:20:48.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"377672978","352153960","PCB24189.sanef.groupe","PCB24189","10:B6:76:97:D4:B6","10.152.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKF","","'+02:00","2026-04-15T17:40:57.000+02:00","SANEF\VERLANT","Cloud Agent","885fbedd-09f2-49a0-ae06-cee275f35c3c","2025-11-19T09:38:53.000+02:00","2026-04-22T11:47:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","339.0" +"324767419","330493335","sppeaanvr32","SPPEAANVR32","8C:84:74:E5:D6:C0","10.41.7.131","fe80::995c:772e:84b2:f62a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G11 Server","16","2600","INTEL(R) XEON(R) SILVER 4509Y","16142","HPE 2.48","CZ2D210MW9","","'+02:00","2026-04-10T03:37:32.000+02:00","Administrateur","Cloud Agent","05fa7ce8-381c-46fc-b19e-7931e9c22663","2025-05-14T17:17:18.000+02:00","2026-04-22T08:20:26.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,Cloud Agent,OS-WIN-SRV DYN,Production","508.0" +"390152402","357550804","PSX18698.sanef-int.adds","PSX18698","30:13:8B:6C:5E:6E","10.100.40.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WH","","'+02:00","2026-02-19T12:29:28.000+02:00","UserSextan","Cloud Agent","7e931d7c-acf5-49cf-a463-24c991a5fdef","2026-01-09T13:04:43.000+02:00","2026-04-22T08:20:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"334464094","","PCB21166.sanef.groupe","PCB21166","D0:AD:08:E4:91:B8","10.202.31.1","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVR","","'+02:00","2026-04-20T08:17:51.000+02:00","SANEF\GUERARDH","Cloud Agent","b5d82dd2-9145-48a1-b39d-15938c8c8017","2025-06-18T15:36:46.000+02:00","2026-04-22T08:19:45.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"331170138","","PCB21307.sanef.groupe","PCB21307","30:F6:EF:A3:EF:E9","10.12.31.11,10.255.1.166","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK5","","'+02:00","2026-04-15T08:17:11.000+02:00","SANEF\tarillon","Cloud Agent","a07081fa-ebcd-4249-bff7-1e0616b8d392","2025-06-05T15:32:24.000+02:00","2026-04-22T08:19:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"215218494","251730157","ls-srom-ouvert","LS-SROM-OUVERT","00:50:56:90:40:24","10.41.2.81","fe80::48b9:b0bf:30d7:1ec0","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 6a 31 f0 4f 43 f5-e0 50 b1 6e 6b 70 18 c2","NoAssetTag","'+02:00","2026-03-03T15:02:35.000+02:00","svpadmin","Cloud Agent","4e7d55ae-156b-4d74-9eba-a27be0ef64c7","2024-02-12T16:36:00.000+02:00","2026-04-22T08:19:38.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN,SVP,VRF_PEAGE_DC,Production,Péage,VRF_BACKUP_DC,High","508.0" +"202020109","245103896","vpbotjump1.sanef.groupe","VPBOTJUMP1","00:50:56:90:12:97","10.41.23.34","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 6c 03 04 aa 15 0d-19 9b 6e 08 bc b3 4e 62","NoAssetTag","'+02:00","2026-04-21T11:06:59.000+02:00","SANEF\alaad","Cloud Agent","3236073e-445f-403d-86be-1445f38fb186","2023-12-01T16:36:22.000+02:00","2026-04-22T08:19:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Windows Server,flux_libre,Production,Flux Libre,BDD-SQL DYN,OS-WIN-SRV DYN","252.0" +"363976393","346387889","PCB21598.sanef.groupe","PCB21598","D0:AD:08:A4:4D:A8","10.12.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711KC","8CC34711KC","'+02:00","2026-03-28T14:19:02.000+02:00","SANEF\pcemtz","Cloud Agent","6abea68b-3721-438f-8f2e-dcd663483650","2025-09-29T16:58:02.000+02:00","2026-04-22T08:19:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"232019701","259579188","ls-amiens-nord","LS-AMIENS-NORD","00:50:56:90:7E:03","10.41.2.96","fe80::e24f:28d5:422f:22e6","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a1 ef be a7 ad 42-62 74 90 db 1c 72 94 84","NoAssetTag","'+02:00","2026-03-23T11:02:20.000+02:00","svpadmin","Cloud Agent","a3185728-f13c-4712-a157-c386339f4e4e","2024-04-24T09:32:23.000+02:00","2026-04-22T08:19:20.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,High,SVP,VRF_PEAGE_DC,Production,Péage,DEX,OS-WIN-SRV DYN","507.0" +"156225794","209332073","vppintbweb1.sanef.groupe","","00:50:56:82:e5:f5","10.46.39.16","fe80::250:56ff:fe82:e5f5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","15760","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 b5 93 e7 22 ca 8a-cb 55 2d 85 89 c6 13 76","No Asset Tag","'+02:00","2026-02-23T15:32:16.000+02:00","cybreconcile","Cloud Agent","8244acf6-c516-4fe9-a1da-77d4b1abb84a","2023-01-20T15:10:06.000+02:00","2026-04-22T10:40:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,VRF_BURO_DC,Gestion institutionnel,Cloud Agent,Linux Server","144.0" +"128166555","191100365","vpburaadfs1.sanef.groupe","VPBURAADFS1","00:50:56:82:59:70","10.30.12.14","fe80::c96b:1f49:cdd7:9ec","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 c0 65 4f e4 f1 d5-64 30 b4 73 22 54 16 96","NoAssetTag","'+02:00","2026-04-02T15:50:51.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","7621ff89-3766-4009-80cb-c717c8d84eb6","2022-06-16T16:25:09.000+02:00","2026-04-22T08:18:46.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,DSI,VRF_INCONNUE,Critical,Windows Server,Compte & Acces,High,Production,Haute,OS-WIN-SRV DYN,AD","845.0" +"378054380","352303543","PCB22297.sanef.groupe","PCB22297","D0:AD:08:A3:7C:FC","10.200.31.58","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZF","","'+02:00","2026-04-22T01:16:22.000+02:00","SANEF\mechineaup","Cloud Agent","5fc39473-964e-4423-8aa7-cbb65c12bd72","2025-11-20T13:03:24.000+02:00","2026-04-22T08:18:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"321999317","329319795","PCB23794.sanef.groupe","PCB23794","6C:0B:5E:EE:93:A2","10.13.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H46","","'+02:00","2026-04-21T10:26:12.000+02:00","SANEF\alonso","Cloud Agent","ee82a602-1f90-4c00-a121-48b3ab68a3cb","2025-05-05T11:29:33.000+02:00","2026-04-22T08:18:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"131273902","193319976","lpaiigrid1.sanef.groupe","","00:17:a4:77:0c:dc","10.30.12.34","fe80::b4cb:388d:c849:b1e3","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Computers / Server","HPE ProLiant BL460c G8 Server","16","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","96643","HP I31 05/24/2019","CZJ41200VM","","'+02:00","2025-10-21T09:38:07.000+02:00","cybadmbdd","Cloud Agent","002e7288-53c9-4f0f-92d6-9ddb4379e29d","2022-07-12T15:36:19.000+02:00","2026-04-22T08:18:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,DSI,VRF_INCONNUE,Obsolete,ORACLE,Bases de Données","346.0" +"359126048","","PCB24206.sanef.groupe","PCB24206","30:E3:A4:D6:F6:E6","10.255.2.175","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YL6","","'+02:00","2026-04-14T08:16:06.000+02:00","SANEF\streiff","Cloud Agent","87ce6df2-582f-4fab-b15d-b3c7f0ce907d","2025-09-12T10:15:13.000+02:00","2026-04-22T08:17:59.000+02:00","64-Bit","2","PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","0.0" +"382389068","353958619","PCB24222.sanef.groupe","PCB24222","10:B6:76:95:8B:8F","10.200.31.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYH","","'+02:00","2026-04-16T09:09:49.000+02:00","SANEF\medghoul","Cloud Agent","2000c534-544f-4211-9cf0-d1d5610e2503","2025-12-08T08:12:45.000+02:00","2026-04-22T08:17:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","254.0" +"377750629","352189441","PCV20821.sanef-int.adds","PCV20821","30:13:8B:6C:58:2B","10.12.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q7Z","","'+02:00","2026-03-30T07:33:50.000+02:00","Operateur","Cloud Agent","347beaa1-0b64-48a8-b65d-b357d6b7e09b","2025-11-19T15:40:59.000+02:00","2026-04-22T08:17:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"198942271","243682415","lpinfbcos1.sanef.groupe","","ee:50:33:80:00:74, ee:50:33:80:00:75","10.41.40.179","fe80::ec50:33ff:fe80:74,fe80::ec50:33ff:fe80:75","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63821","HPE I44 06/13/2025","VCGCIOJ00F","/n/Bios Asset Tag :","'+02:00","2026-01-27T11:28:45.000+02:00","cybadmbdd","Cloud Agent","665e0f05-efd7-4f34-b9cf-95a9bb35b5fd","2023-11-14T13:01:08.000+02:00","2026-04-22T10:53:34.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,COSWIN","500.0" +"334714713","","PCB24071.sanef.groupe","PCB24071","08:B4:D2:2C:6A:FF","10.205.0.52,192.168.1.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5064387","","'+02:00","2026-04-22T08:14:08.000+02:00","SANEF\KLACZYNSKI","Cloud Agent","2beae72d-c554-4f33-af4a-5a78b12c1fec","2025-06-19T14:11:57.000+02:00","2026-04-22T08:17:30.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331127670","","PCB17646.sanef.groupe","PCB17646","D0:AD:08:E4:B1:6C","10.152.31.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HW1","","'+02:00","2026-04-20T16:00:01.000+02:00","SANEF\GIRARD","Cloud Agent","35eac1bd-14dc-4919-bea6-803441104434","2025-06-05T12:14:13.000+02:00","2026-04-22T08:17:15.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"381932693","353741242","PCB25863.sanef.groupe","PCB25863","F8:ED:FC:AB:02:B2","10.252.42.152","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTD","","'+02:00","2026-04-17T07:07:25.000+02:00","SANEF\valvin","Cloud Agent","8b020039-1b33-49d2-9a83-9b9442826080","2025-12-05T16:38:24.000+02:00","2026-04-22T08:16:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","330.0" +"398856812","360867567","PCB21310.sanef.groupe","PCB21310","D0:AD:08:0C:7D:C1","10.100.39.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJN","","'+02:00","2026-04-16T05:32:10.000+02:00","SANEF\ROLLET","Cloud Agent","d4ecea36-66bb-4bb1-abfb-18f50c0b6ab1","2026-02-09T16:21:00.000+02:00","2026-04-22T08:16:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"331190937","","PCB23513.sanef.groupe","PCB23513","C8:6E:08:8A:50:ED","10.255.2.181","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7F","","'+02:00","2026-04-21T08:11:21.000+02:00","SANEF\bertronc","Cloud Agent","635f5079-8f6c-49f4-90d2-14817758640e","2025-06-05T16:59:31.000+02:00","2026-04-22T08:16:21.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"154344319","208143057","vppatbcae1.sanef.groupe","VPPATBCAE1","00:50:56:82:6C:40","10.41.50.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 a2 58 24 b6 73 af-9d 80 df a6 df e4 38 7e","NoAssetTag","'+02:00","2026-04-16T14:36:25.000+02:00","Administrateur","Cloud Agent","85e9180f-2c80-4d6f-87d0-27ba87df1448","2023-01-05T11:54:47.000+02:00","2026-04-22T08:16:14.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_INCONNUE,Babylon,DRH,Cloud Agent,Windows Server","288.0" +"331186057","","PCB17770.sanef.groupe","PCB17770","D0:AD:08:E4:A1:D0","10.152.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HTZ","","'+02:00","2026-04-15T08:14:30.000+02:00","SANEF\GLORIEUX","Cloud Agent","a1a7012b-9543-4ced-b256-4d88e8404f3f","2025-06-05T15:57:48.000+02:00","2026-04-22T08:16:11.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"228420755","257495182","ls-ste-marie","LS-STE-MARIE","00:50:56:90:EF:13","10.41.2.65","fe80::9b47:1541:4cbc:90b1","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 a8 d7 62 88 cb c3-dc c7 21 bc d9 7c ad 1d","NoAssetTag","'+02:00","2026-03-03T15:51:13.000+02:00","svpadmin","Cloud Agent","0ee24646-f1ec-4268-8ca9-f64189023d94","2024-04-08T11:21:52.000+02:00","2026-04-22T08:15:59.000+02:00","64-Bit","4","SCA,VM,PM,GAV","High,VRF_PEAGE_DC,SVP,Production,Péage,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","507.0" +"325698057","","PCB20645.sanef.groupe","PCB20645","BC:0F:F3:3D:18:0B","10.100.39.69","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.23.00","5CG3224DSS","","'+02:00","2026-04-17T08:56:00.000+02:00","SANEF\LEBRETON","Cloud Agent","98d23c3a-95c0-4438-8dda-bf6a72b5449f","2025-05-19T12:32:02.000+02:00","2026-04-22T08:15:38.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"359739684","","PCB24188.sanef.groupe","PCB24188","10:B6:76:97:D4:BB","10.105.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKL","","'+02:00","2026-04-16T08:06:34.000+02:00","SANEF\PONTIEUX","Cloud Agent","b0838345-4b52-4491-a2dd-5af14766316d","2025-09-15T10:29:46.000+02:00","2026-04-22T08:15:19.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"364342917","346494810","PCV22885.sanef-int.adds","PCV22885","D0:AD:08:A7:27:B4","10.210.37.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YPG","","'+02:00","2026-01-20T15:13:35.000+02:00","Operateur","Cloud Agent","1fa9ead4-7ecc-47ec-9cfa-13cfef349738","2025-09-30T15:33:48.000+02:00","2026-04-22T08:15:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320446276","328710855","PCB22816.sanef.groupe","PCB22816","D0:AD:08:A7:27:EB","10.155.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPT","8CC3502YPT","'+02:00","2026-04-19T12:29:32.000+02:00","SANEF\houziaux","Cloud Agent","210caa40-148f-4f10-aba8-8373faf1f9a7","2025-04-29T11:35:38.000+02:00","2026-04-22T08:15:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"384482711","355023073","PCB22279.sanef.groupe","PCB22279","D0:AD:08:A3:7B:D4","10.252.42.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVZ","8CC3502YVZ","'+02:00","2026-04-21T14:52:11.000+02:00","SANEF\deguida","Cloud Agent","f49dbde4-c102-49b0-a42c-0b4eef6f4a6d","2025-12-17T11:46:09.000+02:00","2026-04-22T08:14:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"364955465","346702093","PCV21614.sanef-int.adds","PCV21614","D0:AD:08:A4:4D:B6","10.12.7.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711JS","","'+02:00","2026-03-26T14:41:34.000+02:00","Operateur","Cloud Agent","01a4af39-9dc2-4d01-9d42-26495ba6e555","2025-10-02T12:14:23.000+02:00","2026-04-22T08:14:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"322021511","329326445","PCB21561.sanef.groupe","PCB21561","D0:AD:08:A3:7B:47","10.119.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS1","8CC3502YS1","'+02:00","2026-04-21T09:27:30.000+02:00","SANEF\mullerk","Cloud Agent","ed41f850-a374-46c0-bd58-a8fb1b18bd2e","2025-05-05T12:43:31.000+02:00","2026-04-22T08:14:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"140091089","198836503","vpbckmadm1","VPBCKMADM1","00:50:56:82:5B:14","192.168.109.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2397","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","16383","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 aa bc 99 c1 38 d1-66 c7 23 e4 17 49 80 89","NoAssetTag","'+02:00","2026-03-06T00:57:36.000+02:00","dessoye","Cloud Agent","d4b55457-db08-4081-9551-ac8d3edc4bc2","2022-09-14T10:55:47.000+02:00","2026-04-22T11:37:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_INCONNUE,PCI Bunker EMV,Gestion SAUVEGARDE,Cloud Agent,Windows Server","254.0" +"382420751","353964320","PCB25856.sanef.groupe","PCB25856","F8:ED:FC:AB:12:23","10.252.42.145","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CS9","","'+02:00","2026-03-28T12:39:50.000+02:00","SANEF\CHAMPEYMOND","Cloud Agent","05dab54e-7457-4019-aa23-ddb660a19b98","2025-12-08T09:48:06.000+02:00","2026-04-22T08:14:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","331.0" +"129355323","191958656","vpabvanvr1","VPABVANVR1","00:50:56:82:77:99","10.137.1.11","fe80::d518:5969:6ecb:5f56","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 11 ae 6a 3e 38 9d-1f 74 f3 79 68 62 de 59","NoAssetTag","'+02:00","2026-03-09T15:13:48.000+02:00","Administrateur","Cloud Agent","999a6ed5-1b46-4b10-b8c3-360a0b7e4a61","2022-06-27T17:35:00.000+02:00","2026-04-22T11:05:57.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,VRF_INCONNUE,NVR,Exploitation,Production,Cloud Agent,Windows Server","523.0" +"151127421","206071525","PCB13426.sanef.groupe","PCB13426","C8:D9:D2:33:54:0D","10.200.40.22","fe80::374e:fb8f:d7f2:306f","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G4 Desktop","6","3000","Intel(R) Core(TM) i5-8500 CPU @ 3.00GHz","16163","HP Q01 Ver. 02.07.01","CZC924CX8M","CZC924CX8M","'+02:00","2026-04-16T05:38:20.000+02:00","SANEF\PCI-SAPN","Cloud Agent","a7bc3c36-6625-4e58-a33f-7e543de61226","2022-12-08T14:32:33.000+02:00","2026-04-22T08:13:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Workstation","342.0" +"208831505","248780233","vibotbtsd1.sanef.groupe","","00:50:56:90:8d:fc","10.41.23.145","fe80::250:56ff:fe90:8dfc","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f9 75 7a 17 d8 85-7a 6d 1d 7a 09 a1 fa 86","No Asset Tag","'+02:00","2026-03-18T12:28:10.000+02:00","cybreconcile","Cloud Agent","64fbec89-2595-45d9-80d3-6fc198e9acaf","2024-01-10T18:16:50.000+02:00","2026-04-22T11:13:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,flux_libre,FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production","141.0" +"328622009","","PCB23611.sanef.groupe","PCB23611","6C:0B:5E:EE:EC:A8","10.202.31.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5X","","'+02:00","2026-03-30T16:55:37.000+02:00","SANEF\grossin","Cloud Agent","9c026a6e-b173-48d7-a1bf-bdc5109fcc38","2025-05-30T13:59:36.000+02:00","2026-04-22T08:13:15.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359140638","","PCB24102.sanef.groupe","PCB24102","30:E3:A4:D6:79:BE","10.255.3.157","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YL9","","'+02:00","2026-04-14T08:04:40.000+02:00","SANEF\HATEM","Cloud Agent","eb621ade-2936-43af-9827-020c7eb8b5d6","2025-09-12T12:06:09.000+02:00","2026-04-22T08:13:04.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"330876341","","PCB23539.sanef.groupe","PCB23539","6C:0B:5E:EE:A3:8F","10.255.3.162,10.13.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBD","","'+02:00","2026-04-01T07:45:26.000+02:00","SANEF\schlich","Cloud Agent","632ef1e1-c112-45b1-8e93-3028bb5b502c","2025-06-04T16:27:26.000+02:00","2026-04-22T08:13:01.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"174237326","228465184","sppeaanvr19","SPPEAANVR19","D4:F5:EF:8A:BB:EC","10.41.7.118","fe80::4773:58e8:5d32:1b75","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ222807H4","","'+02:00","2026-02-04T15:24:08.000+02:00","admin_astia","Cloud Agent","f8704128-d0d8-4802-ab75-180a7fc25fc4","2023-06-13T11:50:23.000+02:00","2026-04-22T08:12:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server","348.0" +"382418907","353976182","PCB25865.sanef.groupe","PCB25865","28:95:29:1B:32:03","10.205.0.32,192.168.1.127","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSZ","","'+02:00","2026-04-20T09:39:43.000+02:00","SANEF\DUMOLLARD","Cloud Agent","f1f85402-82e1-4b4b-9051-3e2a2f159d82","2025-12-08T11:12:22.000+02:00","2026-04-22T10:45:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"318715229","328176657","PCB21057.sanef.groupe","PCB21057","D0:AD:08:A3:7B:C8","10.155.30.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW4","8CC3502YW4","'+02:00","2026-03-30T08:24:16.000+02:00","SANEF\BACHELET","Cloud Agent","a565a570-a395-44d0-b4a8-e3d568b27361","2025-04-23T10:43:28.000+02:00","2026-04-22T08:49:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"325248310","","PCB21578.sanef.groupe","PCB21578","D0:AD:08:A3:7C:BE","10.6.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYH","","'+02:00","2026-03-29T09:12:05.000+02:00","SANEF\labache","Cloud Agent","bc17844f-121c-4e7f-ae5a-8e482319772e","2025-05-16T15:29:35.000+02:00","2026-04-22T08:12:28.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359125442","","PCB24229.sanef.groupe","PCB24229","70:15:FB:7E:20:84","10.255.1.165","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYL","","'+02:00","2026-04-14T13:51:56.000+02:00","SANEF\kiefferj","Cloud Agent","4610334c-a990-4ffc-a76b-fdb23063fcda","2025-09-12T10:15:54.000+02:00","2026-04-22T08:12:24.000+02:00","64-Bit","2","PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","0.0" +"349737402","340112646","vrechaetl2.sanef-rec.fr","","00:50:56:9c:79:1e","10.45.11.207","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6c 3e 7a e8 f8 7c-ce 99 bf e3 76 96 4a df","No Asset Tag","'+02:00","2026-03-03T15:14:47.000+02:00","root","Cloud Agent","4b793303-2b37-48e1-bd68-f3189804f66c","2025-08-07T10:37:01.000+02:00","2026-04-22T08:12:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","143.0" +"193617668","240981755","vibocs4as2.sanef.groupe","","00:50:56:90:7c:d5","10.41.22.73","fe80::250:56ff:fe90:7cd5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f5 ec 2b 7b 8c 2c-52 8a af 2e 25 d3 19 5f","No Asset Tag","'+02:00","2026-03-16T16:12:26.000+02:00","cybsupibm","Cloud Agent","960ccdc0-4836-4d1d-abce-d382d6537655","2023-10-16T12:49:07.000+02:00","2026-04-22T11:05:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,Cloud Agent,Linux Server,ServersInCyberark,OS-LIN-SRV DYN,Flux Libre","141.0" +"324960240","","PCB20671.sanef.groupe","PCB20671","BC:0F:F3:3D:18:4E","10.100.39.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224DR6","","'+02:00","2026-03-30T13:36:49.000+02:00","SANEF\FOSSE","Cloud Agent","28aa9b7a-4279-4751-b1fe-5f82f07436c2","2025-05-15T10:21:57.000+02:00","2026-04-22T08:12:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"363031615","345949774","PCB21590.sanef.groupe","PCB21590","D0:AD:08:A7:28:0E","10.12.31.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKG","8CC3502YKG","'+02:00","2026-03-29T05:13:41.000+02:00","SANEF\pcemtz","Cloud Agent","f65cd2ac-c390-4d66-a7ea-84ef7586ff2a","2025-09-25T17:09:06.000+02:00","2026-04-22T08:12:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"360477448","344904296","PCB18639.sanef.groupe","PCB18639","38:CA:84:DB:E6:ED","10.4.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDW","","'+02:00","2026-03-28T09:22:04.000+02:00","SANEF\deliere","Cloud Agent","f0f72186-8f57-43ae-9b83-b608ff4f3f5e","2025-09-17T10:59:13.000+02:00","2026-04-22T08:12:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"324088493","","PCB21282.sanef.groupe","PCB21282","30:F6:EF:A5:EB:1E","192.168.0.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GKK","","'+02:00","2026-04-15T08:14:46.000+02:00","SANEF\PIERME","Cloud Agent","458f78fd-7d62-4720-8405-eca4adbe8391","2025-05-12T15:11:11.000+02:00","2026-04-22T08:11:53.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"361217485","345212990","VMMSTLC3.sanef-int.adds","VMMSTLC3","00:50:56:90:32:C0","10.41.13.252","fe80::7268:ce58:9117:19be","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3476) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 da db 37 96 34 e7-11 79 f7 e8 a7 07 f8 1f","NoAssetTag","'+02:00","2026-04-16T16:52:00.000+02:00","user_stl","Cloud Agent","16bc178d-7297-4251-9bfe-5178c2c6f284","2025-09-19T10:37:37.000+02:00","2026-04-22T08:11:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","348.0" +"321563365","329073261","PCB23712.sanef.groupe","PCB23712","6C:0B:5E:EE:B3:14","10.119.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3Z","","'+02:00","2026-04-15T13:57:53.000+02:00","SANEF\aulenbacher","Cloud Agent","2092b7a0-44eb-4dce-8be8-6009e40a13c4","2025-05-02T10:24:01.000+02:00","2026-04-22T08:11:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"328602133","","PCB21308.sanef.groupe","PCB21308","30:F6:EF:A3:FE:A3","10.5.31.23,10.255.4.165","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GJK","","'+02:00","2026-04-14T13:56:21.000+02:00","SANEF\bonnetier","Cloud Agent","5b10cbf7-65b5-46dd-9a05-22a00ed23cf9","2025-05-30T10:50:58.000+02:00","2026-04-22T08:11:22.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"128609877","191421549","ls-lillers","LS-LILLERS","00:50:56:90:BB:78","10.41.2.39","fe80::c295:9b47:13d1:fd23","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.7792) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 f5 b5 4c d6 ed 18-9b 3b 12 6b d0 f2 6d 72","NoAssetTag","'+02:00","2026-03-05T10:11:08.000+02:00","svpadmin","Cloud Agent","8a5d9c8f-477b-4822-beba-75df40cdcec1","2022-06-21T14:53:41.000+02:00","2026-04-22T08:11:15.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Windows Server,VRF_PEAGE_DC,OS-WIN-SRV DYN,DEX,Production,Péage,High,SVP,Cloud Agent,Haute","864.0" +"359805856","","PCB24336.sanef.groupe","PCB24336","00:72:EE:1F:FE:3C","10.105.31.26,10.255.2.173","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YH4","","'+02:00","2026-04-14T17:18:28.000+02:00","SANEF\BAYART","Cloud Agent","b6ba6fee-e4db-42c9-b930-b14d832d1669","2025-09-15T17:53:42.000+02:00","2026-04-22T08:11:13.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"384866221","355210700","PCB24162.sanef.groupe","PCB24162","24:FB:E3:F3:E9:A6","10.1.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG52136XJ","","'+02:00","2026-04-07T07:48:25.000+02:00","SANEF\delforge","Cloud Agent","62a000c3-092c-41d8-8761-0cae28601238","2025-12-18T19:32:45.000+02:00","2026-04-22T08:10:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"128137865","191075741","vpburawap2","VPBURAWAP2","00:50:56:82:B9:E6","192.168.162.69","fe80::e927:80d:48e6:e7ba","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-4c 46 02 42 c5 5f 4c 05-78 4f 03 0a 88 0d 03 38","NoAssetTag","'+02:00","2026-04-16T15:01:25.000+02:00","Administrateur","Cloud Agent","6d2c3536-00e7-41d7-aee3-590b64818ecf","2022-06-16T11:32:15.000+02:00","2026-04-22T11:05:37.000+02:00","64-Bit","4","SCA,VM,PM,GAV","AD,OS-WIN-SRV DYN,Production,Compte & Acces,Sans,DMZ,VRF_INCONNUE,Windows Server,Cloud Agent,TAG-SRVEXPOSEINDIRECT,DSI","0.0" +"366318087","347298081","PCB25809.sanef.groupe","PCB25809","F8:ED:FC:AA:C5:1E","10.5.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSG","","'+02:00","2026-04-14T13:24:37.000+02:00","SANEF\LEBCIR","Cloud Agent","4ee4e013-320f-4030-a358-a1060e565053","2025-10-08T08:50:53.000+02:00","2026-04-22T10:50:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"225439577","256073198","ls-bethune","LS-BETHUNE","00:50:56:90:D9:3A","10.41.2.40","fe80::ad83:e989:9edf:cbfa","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 11 84 25 8b 36 86-8e b4 fb 3b 95 5c a0 9e","NoAssetTag","'+02:00","2026-03-23T16:02:51.000+02:00","svpadmin","Cloud Agent","09272d1b-988b-4c6a-9907-eacea8be86ba","2024-03-26T11:59:08.000+02:00","2026-04-22T08:09:49.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,Haute,DEX,OS-WIN-SRV DYN,SVP,High,Production,Péage,Cloud Agent,Windows Server","633.0" +"232011762","259575549","ls-voie-sacree","LS-VOIE-SACREE","00:50:56:90:82:A8","10.41.2.75","fe80::6f81:4f74:382:93a4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 b0 41 94 60 b2 8b-00 ec e6 90 99 2e d0 d9","NoAssetTag","'+02:00","2026-03-04T15:36:16.000+02:00","svpadmin","Cloud Agent","b921aaad-3079-47ea-ab89-e24d118eb84b","2024-04-24T08:57:18.000+02:00","2026-04-22T11:10:32.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,Production,Péage,SVP,High,VRF_PEAGE_DC","508.0" +"213853630","251124643","lampasu2.sanef.groupe","","00:17:A4:77:10:74, 00:17:A4:77:10:70","10.43.4.194,169.254.70.12,10.41.40.191,10.41.40.193","fe80::217:a4ff:fe77:1074,fe80::217:a4ff:fe77:1070","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","4","2500","Intel(R) Xeon(R) CPU E5-2609 v2 @ 2.50GHz","32069","HP I31 05/24/2019","CZJ41604RZ","","'+02:00","2025-10-08T15:07:14.000+02:00","cybastapp","Cloud Agent","b8ec5715-df07-4b89-999b-b6411d5ea362","2024-02-05T19:25:54.000+02:00","2026-04-22T08:09:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","Obsolete,DSI,ASUR,OS-LIN-SRV DYN,Cloud Agent,Linux Server","527.0" +"130359106","192671531","vppboeacst1","VPPBOEACST1","00:50:56:82:E9:D9","10.41.29.20","fe80::4909:4c74:faba:c9e3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 7c 78 1b 4b 5c 3f-09 bd cd 66 fb 58 4c 12","NoAssetTag","'+02:00","2026-02-25T12:08:49.000+02:00","Administrateur","Cloud Agent","86af8496-8ff3-4b96-9fda-06b9cfb7ff22","2022-07-05T17:29:24.000+02:00","2026-04-22T11:47:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,VRF_PEAGE_DC,Péage,OS-WIN-SRV DYN,Cloud Agent,Windows Server","256.0" +"129355007","191958356","vtmd.sanef.groupe","VTMD","00:50:56:82:53:9A","10.30.10.63","fe80::c1a8:2d8e:650:c4a1","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","4096","Phoenix Technologies LTD 6.00","VMware-42 02 3f f4 78 6d b6 a9-46 bd cb e2 de 45 0e a3","NoAssetTag","'+01:00","2023-05-10T11:19:12.000+02:00","administrateur","Cloud Agent","3c5ac611-d2b2-4e5e-8112-f69c0f4f3298","2022-06-27T17:28:40.000+02:00","2026-04-22T08:09:19.000+02:00","64 bits","2","SCA,VM,PM,GAV","Windows Server 2008,Production,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Trafic,BDD-POS DYN,Obsolete,FreeFlow,Flux Libre","352.0" +"204348432","246324123","vrdsiaans1.sanef-rec.fr","","00:50:56:9c:78:6e","10.45.0.165","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d9 de f6 e7 9d 09-3b b0 81 ad 08 80 bc 9f","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","cybadmsys","Cloud Agent","6be0af5c-8046-463c-a904-d3cb1b4994bc","2023-12-14T17:50:58.000+02:00","2026-04-22T08:09:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Ansible,OS-LIN-SRV DYN,MID-NGINX DYN,Recette,Cloud Agent,Linux Server","142.0" +"383507042","354491374","vpgeobody2.sanef.groupe","VPGEOBODY2","00:50:56:90:48:C3","10.41.40.172","fe80::bcbe:49f6:145f:1cbf","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19023)","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 86 70 1d a1 3a 12-ce c6 11 55 65 af f0 1b","NoAssetTag","'+02:00","2025-12-12T17:29:28.000+02:00","VPGEOBODY2\CYBADMSYS","Cloud Agent","7d4af001-36d6-4c90-aa4a-e9786c00dd32","2025-12-12T17:33:22.000+02:00","2026-04-22T08:08:47.000+02:00","64 bits","2","SCA,VM,PM,GAV","BDD-POS DYN,VRF_TRAFIC_DC,Trafic,Géolocalisation,Production,Obsolete,OS-WIN-SRV DYN,Cloud Agent","349.0" +"213857788","251130133","specmadpr1.sanef-int.adds","SPECMADPR1","EC:EB:B8:9D:06:54","10.44.2.41","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Computers / Server","HPE ProLiant ML350 G10 Server","1","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","32297","HPE U41","CZJ82213TY","","'+02:00","2026-01-26T02:50:47.000+02:00","Damon","Cloud Agent","50a84bbd-22bc-48c3-827a-8d19f2335d0f","2024-02-05T20:43:49.000+02:00","2026-04-22T10:56:37.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-SQL DYN,SCCM,DSI,Cloud Agent,Windows Server,OS-WIN-SRV DYN","521.0" +"411157863","365555384","vplogalst1","","00:50:56:94:79:08","10.44.7.51","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 8d 8c fb b9 c5 c1-0b ab 4b 23 40 9a 71 ae","No Asset Tag","'+02:00","2026-04-21T14:14:45.000+02:00","cybintsys","Cloud Agent","3c3f4ea8-414c-4237-a2e0-10d2a40c7bcd","2026-03-24T19:08:09.000+02:00","2026-04-22T08:08:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","13.0" +"364678473","346585003","PCB21547.sanef.groupe","PCB21547","60:45:2E:11:FE:2C","10.255.1.189","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNC","8CC3502YNC","'+02:00","2026-03-29T09:12:23.000+02:00","SANEF\primet","Cloud Agent","336c5006-da21-4620-a2e8-51daa6feb263","2025-10-01T11:49:54.000+02:00","2026-04-22T08:08:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"395140282","359326102","PBM22298.sanef-int.adds","PBM22298","D0:AD:08:A3:7D:EA","10.209.50.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YYW","","'+02:00","2026-03-11T21:01:16.000+02:00","Operateur","Cloud Agent","0114f931-76f0-462c-b4f3-6892b0f27124","2026-01-26T19:26:49.000+02:00","2026-04-22T08:07:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","343.0" +"416488481","367846723","vpbotatvv1.sanef.groupe","","00:50:56:90:02:fb","10.41.23.11","fe80::250:56ff:fe90:2fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 d4 dd 86 65 f5 16-0b 8c 6e ec d1 4f 4a 7c","No Asset Tag","'+02:00","2026-04-21T16:29:59.000+02:00","cybreconcile","Cloud Agent","da474021-93a7-4460-8867-cfe17ed97189","2026-04-16T17:24:10.000+02:00","2026-04-22T08:07:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","142.0" +"213850269","251126539","specmadpr3.sanef-int.adds","SPECMADPR3","EC:EB:B8:9D:E5:41","10.44.2.43","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Computers / Server","HPE ProLiant ML350 G10 Server","1","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","32297","HPE U41","CZJ82213TZ","","'+02:00","2026-04-16T13:12:57.000+02:00","Damon","Cloud Agent","0ae8c3c7-25d2-4a97-81d3-de81e77ce2d8","2024-02-05T19:58:42.000+02:00","2026-04-22T11:17:45.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DSI,SCCM,Cloud Agent,Windows Server,OS-WIN-SRV DYN,BDD-SQL DYN","383.0" +"324016325","","PCB18612.sanef.groupe","PCB18612","64:D6:9A:74:73:CC","169.254.51.52,10.255.4.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDQ","","'+02:00","2026-04-02T17:01:18.000+02:00","SANEF\godfrin","Cloud Agent","ff4c483e-3147-4c1c-88d7-3e8fd1d94cff","2025-05-12T11:46:12.000+02:00","2026-04-22T08:06:57.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"128129742","191071002","vpaiiaazu1","VPAIIAAZU1","00:50:56:82:55:39","192.168.230.40","fe80::8491:897e:a7d8:2606","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 6c 05 2f f5 71 5d-20 e7 62 dd e2 c8 78 08","NoAssetTag","'+02:00","2026-04-15T14:41:59.000+02:00","Administrateur","Cloud Agent","c03902a6-bc0f-40d6-b530-96531bd099dd","2022-06-16T10:35:53.000+02:00","2026-04-22T08:06:53.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Production,Sécurité IT,Sans,DMZ,TAG-SRVEXPOSEINTERNET,AD,BDD-SQL DYN,OS-WIN-SRV DYN,VRF_INCONNUE,DSI,Cloud Agent,Windows Server","0.0" +"225171191","255988984","ls-cambrai","LS-CAMBRAI","00:50:56:90:EC:F1","10.41.2.34","fe80::cc77:e8d5:d943:37f4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 09 f1 f1 84 5a a0-bb bd 98 fe ae 9f 8c f2","NoAssetTag","'+02:00","2026-04-02T11:10:34.000+02:00","svpadmin","Cloud Agent","b9946c7a-146a-400c-b64c-d0a5cb277b87","2024-03-25T17:00:50.000+02:00","2026-04-22T08:06:49.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,High,Haute,SVP,Production,Péage,Cloud Agent,Windows Server,DEX","633.0" +"235695165","263014037","vamrsycapp1.sanef.groupe","VAMRSYCAPP1","00:50:56:82:6A:E3","10.45.2.21","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24130)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","32767","Phoenix Technologies LTD 6.00","VMware-42 02 c8 d7 b8 28 ae cf-0a 5e 62 a1 a3 fa a9 bc","NoAssetTag","'+01:00","2024-05-10T15:40:18.000+02:00","Administrateur","Cloud Agent","3f5e8cda-8d55-4eab-8482-d9e89c2f0c56","2024-05-10T15:04:05.000+02:00","2026-04-22T08:06:34.000+02:00","64 bits","3","SCA,VM,PM,GAV","SIG,OS-WIN-SRV DYN,DEX,Recette,Windows Server 2008,MID-APACHE-TOMCAT DYN,Obsolete,Patrimoine,Cloud Agent,Windows Server","526.0" +"334472877","","PCB24117.sanef.groupe","PCB24117","48:EA:62:C8:83:3F","10.155.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6V","","'+02:00","2026-04-02T07:51:42.000+02:00","SANEF\DEVIENNE","Cloud Agent","3e0fe5ba-024a-47a7-9071-31b319c97403","2025-06-18T15:58:43.000+02:00","2026-04-22T08:06:31.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"186024350","236514643","ls-spare-sen","LS-SPARE-SEN","00:50:56:82:F2:8A","10.100.2.251","fe80::325e:d546:e662:4711","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 2d 59 f5 c9 9b de-aa bc d2 83 1f 49 2e a9","NoAssetTag","'+02:00","2026-02-16T13:38:07.000+02:00","gare","Cloud Agent","afb6cd0a-d244-4e8a-9ac2-e5eed63897dc","2023-09-04T15:22:32.000+02:00","2026-04-22T08:05:44.000+02:00","64-Bit","4","SCA,VM,GAV","SVP,Cloud Agent,OS-WIN-SRV DYN,Péage,DEX","680.0" +"358651974","344183279","VMMVSCC1.sanef-int.adds","VMMVSCC1","00:50:56:90:10:2C","10.41.7.250","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 17 20 5c b9 cf 88-a2 75 f1 ca 8b 04 b9 53","NoAssetTag","'+02:00","2026-04-16T16:49:22.000+02:00","UserPCT","Cloud Agent","efc00fd6-ced3-4278-834d-af6db1689455","2025-09-10T17:32:14.000+02:00","2026-04-22T08:05:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"326222279","","PCB18058.sanef.groupe","PCB18058","64:D6:9A:1D:39:68","10.205.0.45,192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HS9","","'+02:00","2026-04-22T08:01:47.000+02:00","SANEF\MULLIERL","Cloud Agent","562dade8-7fd5-40a8-bffc-7e9477c81fc8","2025-05-21T12:27:16.000+02:00","2026-04-22T08:05:28.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331168809","","PCB18734.sanef.groupe","PCB18734","58:1C:F8:E9:A7:0F","10.205.0.10,192.168.1.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2Q","","'+02:00","2026-04-20T08:19:47.000+02:00","SANEF\gautier","Cloud Agent","df6307aa-e9ac-49f3-8515-0a9bf0df393b","2025-06-05T15:34:54.000+02:00","2026-04-22T08:05:15.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent,BDD-SQL DYN","0.0" +"325938475","","PCB20725.sanef.groupe","PCB20725","BC:0F:F3:3D:28:96","10.200.31.29,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRZ","","'+02:00","2026-03-31T08:35:13.000+02:00","Christelle.loisel@sapn.fr","Cloud Agent","3aa7a698-2638-4d7e-b55a-d311e1913209","2025-05-20T12:14:57.000+02:00","2026-04-22T08:05:15.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"221402131","254280236","OSA20928.sanef-int.adds","OSA20928","BC:0F:F3:87:6F:8D","10.5.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LL8","","'+02:00","2026-04-18T16:50:05.000+02:00","Superviseur","Cloud Agent","b25434e8-81a9-40be-820d-5d12ad02d5f2","2024-03-11T17:20:45.000+02:00","2026-04-22T08:05:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"402065710","361863022","PCV18680.sanef-int.adds","PCV18680","30:13:8B:6C:79:5A","10.5.7.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473WP","","'+02:00","2026-02-18T12:56:22.000+02:00","Operateur","Cloud Agent","649d6cd5-62f2-407d-b1ad-b80075b1e009","2026-02-18T11:45:56.000+02:00","2026-04-22T08:04:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"309082626","324044496","PCB17809.sanef.groupe","PCB17809","D0:AD:08:0C:8D:07","10.100.39.110","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3P","","'+02:00","2026-04-10T08:02:07.000+02:00","SANEF\LANIS-ext","Cloud Agent","6eca13a2-2cbd-4c6d-9d21-af6930ca5903","2025-03-18T13:34:19.000+02:00","2026-04-22T11:41:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"343114608","337777716","PCB21587.sanef.groupe","PCB21587","D0:AD:08:A7:28:2C","10.5.31.62","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.11.01","8CC3502YJS","8CC3502YJS","'+02:00","2026-04-21T21:08:36.000+02:00","SANEF\labelle","Cloud Agent","05734db5-c386-4b99-8665-139dba9b1586","2025-07-18T12:00:59.000+02:00","2026-04-22T08:04:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"331425552","","PCB23530.sanef.groupe","PCB23530","C8:6E:08:88:F0:C7","10.206.31.8,10.255.2.166","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7J","","'+02:00","2026-03-30T17:07:24.000+02:00","SANEF\gueryd","Cloud Agent","4f77a81e-3fde-4c21-84c1-883db66063be","2025-06-06T13:46:01.000+02:00","2026-04-22T08:03:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"270786600","300125043","SVP21044.sanef-int.adds","SVP21044","D0:AD:08:A3:E7:93","10.152.20.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YML","","'+02:00","2026-04-16T10:47:44.000+02:00","Superviseur","Cloud Agent","b0255be2-700a-4dac-a7ac-f2aae578f5ab","2024-10-08T11:52:15.000+02:00","2026-04-22T08:03:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"240758424","275036314","PCB20642.sanef.groupe","PCB20642","58:1C:F8:EA:00:A1","10.205.0.84,192.168.1.60","2a01:e0a:810:d130:58c0:fdca:6ec9:66b4,2a01:e0a:810:d130:c846:35c6:3af9:487f,fe80::2193:4562:e089:f735","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.12.00","5CG3224D33","","'+02:00","2026-02-25T12:27:12.000+02:00","SANEF\KABKOUB","Cloud Agent","50896f56-2841-4f0a-9b3a-b24b4b8ab61f","2024-05-31T17:40:32.000+02:00","2026-04-22T08:03:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"392400088","358198640","PCV21589.sanef-int.adds","PCV21589","D0:AD:08:A7:28:64","10.108.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YLM","","'+02:00","2026-04-17T18:22:59.000+02:00","Operateur","Cloud Agent","8a4db24d-1f7d-412b-a417-1f011a1e8f08","2026-01-15T12:43:14.000+02:00","2026-04-22T08:02:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"229372706","258003126","vpsupbcen1.sanef.groupe","","00:50:56:8d:35:66","10.44.5.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d 62 ea 55 62 01 38-de 47 34 6e c2 2d dc 9c","No Asset Tag","'+02:00","2026-03-30T10:23:47.000+02:00","cybadmroot","Cloud Agent","651cda1a-b8ed-4ecb-8d5c-f5a97390c219","2024-04-11T16:14:23.000+02:00","2026-04-22T08:02:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","332.0" +"283907894","308365688","SVP22857.sanef-int.adds","SVP22857","D0:AD:08:A7:27:C7","10.12.20.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN3","","'+02:00","2026-04-09T14:15:03.000+02:00","Superviseur","Cloud Agent","8730e734-e9bf-4d9f-8e06-14a182debbe8","2024-12-04T21:52:13.000+02:00","2026-04-22T08:01:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"129477136","192044838","vmsapnrt1","VMSAPNRT1","00:50:56:AC:00:EF","10.30.10.35","","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24356)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 2c ae 27 87 bc de ef-c9 c6 ee ab 11 d7 b9 a1","NoAssetTag","'+02:00","2024-04-02T19:39:22.000+02:00","Administrateur","Cloud Agent","39dbe7b9-56c8-42f2-a71a-0112cf8266a0","2022-06-28T14:50:41.000+02:00","2026-04-22T08:01:26.000+02:00","64 bits","2","SCA,VM,PM,GAV","Finances Comptabilité / Consolidation,VRF_INCONNUE,OS-WIN-SRV DYN,BDD-SQL DYN,Cloud Agent,Windows Server,SAP,Obsolete,DFIN,Recette,Windows Server 2008","352.0" +"270839116","300149929","SVP21043.sanef-int.adds","SVP21043","D0:AD:08:A3:7B:72","10.152.20.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW8","","'+02:00","2026-03-19T09:46:23.000+02:00","Superviseur","Cloud Agent","b0b874a2-2c80-4b16-9641-fb8b036a2d0d","2024-10-08T14:57:35.000+02:00","2026-04-22T08:01:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"131273947","193320248","vpaiiacen1","","00:50:56:82:ad:5b","10.30.12.121","fe80::e83e:8fa8:f676:77fe","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9837","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 21 ef fd 6c 41 20-63 8c 6d f2 4a 05 89 29","No Asset Tag","'+02:00","2026-03-16T14:02:32.000+02:00","cybreconcile","Cloud Agent","be05e162-5eb7-4c0a-89a5-aa14243edaf2","2022-07-12T15:40:43.000+02:00","2026-04-22T08:01:07.000+02:00","x86_64","4","SCA,VM,PM,GAV","BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,VRF_INCONNUE,Cloud Agent,Linux Server,DSI,Centreon,Obsolete,log4j,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans","703.0" +"325213661","","PCB17884.sanef.groupe","PCB17884","70:A8:D3:85:C6:68","10.255.1.155,169.254.191.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG217247S","","'+02:00","2026-04-20T16:47:27.000+02:00","SANEF\ELENGAAHOUE-ext","Cloud Agent","cb143df6-10af-44fa-83b5-93d472530bc7","2025-05-16T11:56:47.000+02:00","2026-04-22T08:01:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"328601589","","PCB18051.sanef.groupe","PCB18051","64:D6:9A:1D:2D:9C","192.168.1.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.17.01","5CG2376HRH","","'+02:00","2026-03-30T09:10:17.000+02:00","SANEF\caronf","Cloud Agent","214c4750-1ad6-4517-a8f0-8ff5e53db0cd","2025-05-30T11:42:23.000+02:00","2026-04-22T08:01:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"205329451","246826538","vibotbsql1.sanef.groupe","VIBOTBSQL1","02:27:31:4E:DF:08, 00:50:56:90:AE:E4","169.254.2.36,10.41.23.133","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 de c5 03 a6 e9 3b-28 60 3c 1c ac 8f d5 e6","NoAssetTag","'+02:00","2026-03-18T12:33:03.000+02:00","SANEF\ndead","Cloud Agent","86db4379-532d-4031-a24f-7ed2848d5258","2023-12-20T15:28:19.000+02:00","2026-04-22T08:00:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","flux_libre,BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Production,FreeFlow,Flux Libre","258.0" +"359142980","","PCB24228.sanef.groupe","PCB24228","70:15:FB:7E:20:BB","10.255.4.155","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZM","","'+02:00","2026-04-20T14:43:42.000+02:00","SANEF\GALAI","Cloud Agent","7f5a3856-ef5d-44d7-b82f-ae52e544e612","2025-09-12T11:53:18.000+02:00","2026-04-22T08:00:38.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","0.0" +"179101365","231909523","vrpeaaref1.recette.adds","VRPEAAREF1","00:50:56:9C:45:93","10.45.9.170","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 29 1f af bd 91 66-a4 33 ee ae 46 98 54 5a","NoAssetTag","'+02:00","2026-02-19T13:41:23.000+02:00","Administrateur","Cloud Agent","d3f0ef5b-014e-4442-a1f8-35745e0ed1f8","2023-07-19T11:57:50.000+02:00","2026-04-22T08:00:36.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,SVP,DEX,OS-WIN-SRV DYN,Recette","487.0" +"364774157","346620306","PCV21575.sanef-int.adds","PCV21575","D0:AD:08:A3:7B:45","10.155.7.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YS4","","'+02:00","2026-03-10T12:37:08.000+02:00","Operateur","Cloud Agent","6973d3ff-8b42-4f1f-9c03-f492768187ba","2025-10-01T16:39:42.000+02:00","2026-04-22T08:00:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"388302870","356983569","PCB22322.sanef.groupe","PCB22322","D0:AD:08:A3:7D:E0","10.252.42.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ1","8CC3502YZ1","'+02:00","2026-03-29T09:11:43.000+02:00","SANEF\dacosta","Cloud Agent","84ac10b9-70ad-48ac-9a8e-a53e60b79ca9","2026-01-06T09:23:11.000+02:00","2026-04-22T08:00:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"222570527","254823547","vpburaexc2.sanef.groupe","VPBURAEXC2","02:05:96:4E:61:CC, 00:50:56:9C:5D:21","169.254.2.9,10.42.30.30","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 40 cc 62 e6 62 ce-2e e2 d7 47 6c 24 1b 26","NoAssetTag","'+02:00","2026-03-19T10:47:52.000+02:00","Administrateur","Cloud Agent","fda5350a-c6da-4daf-a29a-58d9eb510a1a","2024-03-15T16:21:07.000+02:00","2026-04-22T10:52:53.000+02:00","64-Bit","4","SCA,VM,PM,GAV","EXCHANGE,High,OS-WIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Windows Server,DSI","120.0" +"335910968","","PCB24175.sanef.groupe","PCB24175","DC:90:09:E0:5C:CC","10.100.38.29,10.255.2.158","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XD","","'+02:00","2026-03-30T08:27:51.000+02:00","SANEF\BOYARD","Cloud Agent","b0247024-bd39-411d-8bd7-75f8a195bba7","2025-06-24T09:39:36.000+02:00","2026-04-22T08:00:10.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"362246145","345658214","PCB23731.sanef.groupe","PCB23731","C8:6E:08:48:DC:F8","10.255.3.131","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2R","","'+02:00","2026-03-31T10:34:40.000+02:00","theo.leveque@sanef.com","Cloud Agent","9a741e90-bfa0-4fcc-a088-aa573ed180b0","2025-09-23T11:18:10.000+02:00","2026-04-22T07:59:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"226167930","256425194","ls-roye","LS-ROYE","00:50:56:90:B4:C7","10.41.2.29","fe80::415:c546:c5a8:4808","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 7f 06 a1 71 c6 d0-a0 dd 5f 08 1f 89 a0 c0","NoAssetTag","'+02:00","2026-03-02T16:32:54.000+02:00","svpadmin","Cloud Agent","0ba1aed0-9784-4a2a-accf-0dcfc68ac226","2024-03-29T10:36:41.000+02:00","2026-04-22T10:49:48.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,SVP,Péage,High,VRF_PEAGE_DC,Haute,Cloud Agent,Windows Server,Production","634.0" +"324049856","","PCB22275.sanef.groupe","PCB22275","60:45:2E:11:58:3C","10.255.3.137","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSL","","'+02:00","2026-04-06T06:44:39.000+02:00","SANEF\rousselc","Cloud Agent","b7926431-4e16-477c-af15-8f0bc0572304","2025-05-12T12:30:54.000+02:00","2026-04-22T07:59:39.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"272517340","301121541","SVP22453.sanef-int.adds","SVP22453","D0:AD:08:A7:27:CD","10.89.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKW","","'+02:00","2026-04-14T08:18:18.000+02:00","Superviseur","Cloud Agent","962efd60-caeb-4aa7-81d5-3ed041054c5c","2024-10-16T09:40:07.000+02:00","2026-04-22T07:59:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"387033350","356440082","vmdtrac06.recette.adds","VMDTRAC06","00:50:56:9C:E8:9D","10.45.17.8","fe80::959c:b5cb:e305:e793","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 02 75 61 50 07 10-05 6d 9f ef 83 da c6 46","NoAssetTag","'+02:00","2026-04-16T01:51:28.000+02:00","supwindev","Cloud Agent","95b7be16-ac20-4d19-a4ba-24e55e4c8abc","2025-12-30T17:50:58.000+02:00","2026-04-22T07:59:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"187703888","237569915","lremvbremv1.sanef.groupe","","00:17:a4:77:1c:70, 00:17:a4:77:1c:74","192.168.108.107,192.168.108.137,169.254.7.191,172.16.0.107","fe80::217:a4ff:fe77:1c70,fe80::217:a4ff:fe77:1c74","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070F","","'+02:00","2024-05-15T11:35:39.000+02:00","root","Cloud Agent","c867e106-2418-48c4-ab51-415175cbefc9","2023-09-13T17:37:44.000+02:00","2026-04-22T07:59:02.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard V17 Recette,EMV,OS-LIN-SRV DYN,DEX","499.0" +"246580411","287157724","VMXOBI.sanef.groupe","VMXOBI","00:50:56:82:7A:7D","10.30.6.4","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5909) 64-Bit","23H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 f8 5f ee f6 47 93-8d 69 9f 5e e3 59 00 f9","NoAssetTag","'+02:00","2026-03-18T12:27:36.000+02:00","SANEF\tron","Cloud Agent","54e623a4-d025-48f4-b3d4-cd7d276e0fdf","2024-06-26T16:42:03.000+02:00","2026-04-22T07:58:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","343.0" +"129356867","191964289","vpthlanvr1","VPTHLANVR1","00:50:56:82:DB:50","10.87.16.11","fe80::aa56:26de:2299:2415","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 6e 4e ce 23 46 58-4d 09 95 4b dc 8f 8d 39","NoAssetTag","'+02:00","2026-03-14T23:04:19.000+02:00","Administrateur","Cloud Agent","745655c8-c7fc-492c-92fd-5c05e864e357","2022-06-27T18:24:57.000+02:00","2026-04-22T11:33:59.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,NVR,Production,Exploitation,Cloud Agent,Windows Server,VRF_INCONNUE","508.0" +"371891976","349552825","PCB23639.sanef.groupe","PCB23639","C8:6E:08:8A:51:42","10.255.4.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7Y","","'+02:00","2026-04-17T08:35:15.000+02:00","fabien.letulle@sapn.fr","Cloud Agent","674fc3fb-e4c6-4233-b8fa-9211288c3e78","2025-10-27T09:00:03.000+02:00","2026-04-22T07:58:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"271044748","300260237","SVP21055.sanef-int.adds","SVP21055","D0:AD:08:A3:7B:71","10.155.2.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW9","","'+02:00","2026-04-22T07:03:33.000+02:00","Superviseur","Cloud Agent","a1a0ef54-258d-4891-b144-9912b37112ea","2024-10-09T13:50:00.000+02:00","2026-04-22T07:58:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"406263184","363577732","PCV20892.sanef-int.adds","PCV20892","30:13:8B:6C:5F:2E","10.12.7.54","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q87","","'+02:00","2026-03-05T15:15:41.000+02:00","Operateur","Cloud Agent","75af9f6e-b546-4f6a-ac95-3316053ee877","2026-03-05T14:47:53.000+02:00","2026-04-22T07:58:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"324354937","330207258","PCB22285.sanef.groupe","PCB22285","D0:AD:08:A3:7C:68","10.207.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502Z03","8CC3502Z03","'+02:00","2026-04-07T13:01:20.000+02:00","SANEF\telhaoui","Cloud Agent","f8db9d21-f00a-452f-8279-fe3d1c8f7e35","2025-05-13T11:13:44.000+02:00","2026-04-22T07:57:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"213858750","251130288","spasuagsm1","","ec:eb:b8:9a:5a:81, ec:eb:b8:9a:5a:80","10.43.4.206,10.41.40.206","fe80::eeeb:b8ff:fe9a:5a81,fe80::eeeb:b8ff:fe9a:5a80","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/20/2023","CZJ81900F3","","'+02:00","2023-09-25T10:38:00.000+02:00","cybadmsys","Cloud Agent","aaf2f3fb-16f6-4719-827a-1c5a4433c4a5","2024-02-05T20:45:02.000+02:00","2026-04-22T07:57:52.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,DSI,BDD-POS DYN,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server","524.0" +"187703886","237569914","lremvaste2","","00:17:a4:77:1c:7c, 00:17:a4:77:1c:78","192.168.107.108,192.168.108.108","fe80::217:a4ff:fe77:1c7c,fe80::217:a4ff:fe77:1c78","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070G","","'+02:00","2025-12-10T13:15:30.000+02:00","lamhajeb-ext","Cloud Agent","fa25cdc0-e6c3-449a-99b3-2d75d3f360d5","2023-09-13T17:37:30.000+02:00","2026-04-22T07:57:38.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,OS-LIN-SRV DYN,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard V17 Recette","676.0" +"334437559","","PCB24120.sanef.groupe","PCB24120","48:EA:62:CB:FE:76","10.104.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6P","","'+02:00","2026-04-09T12:19:35.000+02:00","SANEF\BRUYANTA","Cloud Agent","dc2e3350-23e7-4cd8-9bfd-fd0fc011d15f","2025-06-18T14:41:22.000+02:00","2026-04-22T07:57:21.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"269816525","299441504","SVP21064.sanef-int.adds","SVP21064","D0:AD:08:A7:28:5C","10.100.20.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLW","","'+02:00","2026-04-20T13:51:28.000+02:00","Superviseur","Cloud Agent","4096dc27-7cfc-46a7-b5cb-6695cf158d9c","2024-10-03T09:06:13.000+02:00","2026-04-22T07:57:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"365235573","346826294","PCB24187.sanef.groupe","PCB24187","10:B6:76:97:D4:A7","10.5.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YJY","","'+02:00","2026-04-20T09:00:44.000+02:00","SANEF\harand","Cloud Agent","604b2d9c-ec59-4a24-b544-ddb432a94997","2025-10-03T14:08:01.000+02:00","2026-04-22T07:57:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","253.0" +"325041070","331288683","vpaflarat1.sanef.groupe","","00:50:56:9c:23:d5","10.46.34.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c b0 e8 0c 53 11 be-42 2b 08 cc cb b1 02 20","No Asset Tag","'+02:00","2026-03-30T14:04:21.000+02:00","root","Cloud Agent","bcc0c71a-405c-4015-b192-30efadcda31b","2025-05-15T17:13:03.000+02:00","2026-04-22T07:57:01.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,flux_libre,Production,OS-LIN-SRV DYN","138.0" +"365793399","347053026","PCV22935.sanef-int.adds","PCV22935","D0:AD:08:A3:E7:31","10.5.7.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YTT","","'+02:00","2026-04-13T05:14:59.000+02:00","Operateur","Cloud Agent","eebd784b-b5de-444b-bdaf-e41cb6118fd7","2025-10-06T10:46:49.000+02:00","2026-04-22T07:57:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"296274639","317659615","REX21540.sanef-int.adds","REX21540","D0:AD:08:A3:7C:BF","10.12.91.80","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYG","","'+02:00","2026-02-22T18:47:59.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","2c74d8e2-8a9f-49e4-b7b9-910c7502819b","2025-01-30T17:48:12.000+02:00","2026-04-22T07:56:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"327523638","","PCB23547.sanef.groupe","PCB23547","C8:6E:08:89:0A:6C","10.255.2.151","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7X","","'+02:00","2026-03-30T14:03:58.000+02:00","SANEF\PLEINECASSAGNES","Cloud Agent","ecf03ad6-09ed-436c-8035-8fd270ae0938","2025-05-27T11:59:06.000+02:00","2026-04-22T07:56:41.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"131396410","193417063","vpsimaapi2.sanef.groupe","","00:50:56:82:39:17","10.30.11.10","fe80::2f0d:87b4:78ff:6925","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16046","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 60 ca 19 a6 8f a4-ed b4 cc db 99 49 a3 db","No Asset Tag","'+02:00","2025-11-21T12:21:58.000+02:00","cybadmsys","Cloud Agent","d18702e5-ad51-4be0-945b-0920c944f6e0","2022-07-13T09:25:38.000+02:00","2026-04-22T07:56:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,Trafic,Production,Obsolete,VRF_INCONNUE,BDD-ELA DYN,Flux Libre","334.0" +"360074060","","PCB18741.sanef.groupe","PCB18741","58:1C:F8:EB:78:D7","10.255.1.150","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D44","","'+02:00","2026-04-18T08:55:28.000+02:00","SANEF\BA","Cloud Agent","75e262be-7820-48aa-8a9f-89675c7ef1b8","2025-09-16T16:07:19.000+02:00","2026-04-22T07:56:28.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"360013248","","PCB18717.sanef.groupe","PCB18717","5E:A8:8B:72:10:7B","10.205.0.12,169.254.177.78,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSF","","'+02:00","2026-03-28T18:05:12.000+02:00","SANEF\RIVIERE","Cloud Agent","3e482d68-8848-4d7b-85a7-19bb4335c106","2025-09-16T11:58:30.000+02:00","2026-04-22T07:56:19.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"326805330","","SVP22518.sanef-int.adds","SVP22518","D0:AD:08:A2:AE:DA","10.132.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764K1","","'+02:00","2026-04-15T15:39:17.000+02:00","Superviseur","Cloud Agent","a85250ea-7a7f-4c0f-9ea4-6847b84dc464","2025-05-23T09:19:57.000+02:00","2026-04-22T07:56:18.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"335550719","","PCB24172.sanef.groupe","PCB24172","DC:90:09:E1:16:58","192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136X9","","'+02:00","2026-04-16T11:56:45.000+02:00","SANEF\RAIMBOURG","Cloud Agent","4e274737-b363-41f2-9f94-47b84b3ae49b","2025-06-23T14:55:31.000+02:00","2026-04-22T07:56:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"373161807","350055642","PCB24237.sanef.groupe","PCB24237","24:FB:E3:CD:06:28","10.12.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M5P","","'+02:00","2026-04-15T17:20:14.000+02:00","SANEF\rouault","Cloud Agent","beee5708-f132-4f9d-910b-85a18bd49dd6","2025-10-31T09:16:00.000+02:00","2026-04-22T07:56:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","254.0" +"226168693","256424375","ls-thelus","LS-THELUS","00:50:56:90:CD:64","10.41.2.42","fe80::6ad7:4632:1fe3:5ff4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 ec bd 09 5e 39 dc-08 30 11 53 7f 93 ad fe","NoAssetTag","'+02:00","2026-03-04T11:18:27.000+02:00","svpadmin","Cloud Agent","15bc9c30-91ff-40c5-8845-98d94a2947ca","2024-03-29T10:22:33.000+02:00","2026-04-22T11:15:06.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,Péage,High,Production","508.0" +"384522351","355028087","vrgrsangx1.sanef-rec.fr","","00:50:56:9c:84:2a","10.45.9.177","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c be 62 05 96 4f e9-f8 69 c8 bf b5 c1 5e 7a","No Asset Tag","'+02:00","2026-02-19T10:09:59.000+02:00","cybintsys","Cloud Agent","b8a80dfd-6688-4fb5-a115-73e39326dadb","2025-12-17T12:56:43.000+02:00","2026-04-22T07:56:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette,MID-NGINX DYN,BDD-POS DYN","147.0" +"213875839","251138019","sppeaanvr8","SPPEAANVR8","20:67:7C:D3:3A:18","10.41.7.107","fe80::72cc:1043:8a24:ea67","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ91405NL","","'+02:00","2026-03-25T17:51:40.000+02:00","Administrateur","Cloud Agent","dffdc973-4f46-4988-86f0-3c1ae5709217","2024-02-05T22:08:36.000+02:00","2026-04-22T07:55:53.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,NVR","523.0" +"324720612","","PCB23752.sanef.groupe","PCB23752","6C:0B:5E:EE:93:9E","192.168.1.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2J","","'+02:00","2026-04-03T14:35:07.000+02:00","SANEF\lallement","Cloud Agent","2fd77435-6dd6-4efd-a38d-b9fdc4eafe8f","2025-05-14T14:29:06.000+02:00","2026-04-22T07:55:52.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"160500506","213663599","vppintaweb2.sanef.groupe","","02:42:ac:5f:6a:ca, 00:50:56:82:2c:5f","172.17.0.1,192.168.20.21","fe80::250:56ff:fe82:2c5f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 a9 c8 ab c6 0d b0-3a 1e 06 f1 4a a6 bf f5","No Asset Tag","'+02:00","2026-04-14T14:27:12.000+02:00","cybreconcile","Cloud Agent","f9805222-188f-487e-82d1-666db9d814e6","2023-02-24T17:15:52.000+02:00","2026-04-22T07:55:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,Gestion institutionnel,Cloud Agent,Linux Server","65.0" +"332680998","","PCB21300.sanef.groupe","PCB21300","30:F6:EF:A7:18:B3","10.12.31.1,10.255.2.180","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GK0","","'+02:00","2026-04-20T16:21:01.000+02:00","SANEF\bayer","Cloud Agent","ee0240d4-b0ff-41c4-8aae-37e3258cf45e","2025-06-11T18:13:16.000+02:00","2026-04-22T07:55:42.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"324132423","","PCB18068.sanef.groupe","PCB18068","38:CA:84:52:77:C9","192.168.1.15,10.100.39.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HTZ","","'+02:00","2026-03-28T17:49:13.000+02:00","SANEF\DEPREZ","Cloud Agent","eebcbacc-2748-49a6-883a-d86167ac0532","2025-05-12T15:58:58.000+02:00","2026-04-22T07:55:12.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129477287","192045655","vrtrabtpv1","VRTRABTPV1","00:50:56:82:B9:35","10.43.255.11","fe80::50e9:bb91:63c3:a2c7","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24575","Phoenix Technologies LTD 6.00","VMware-42 02 e3 67 19 94 91 ac-6e e1 6a 9e 43 08 ff 23","NoAssetTag","'+02:00","2026-04-07T15:02:41.000+02:00","Administrateur","Cloud Agent","a3a04791-4804-45b0-915e-e2f3431f1b3b","2022-06-28T15:05:47.000+02:00","2026-04-22T07:55:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DEX,Temps de parcours,Cloud Agent,Windows Server,VRF_INCONNUE,BDD-POS DYN,OS-WIN-SRV DYN,Recette,Trafic","328.0" +"346164661","339000638","PCB25871.sanef.groupe","PCB25871","F8:ED:FC:AB:02:16","10.205.0.12,192.168.1.57","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW0","","'+02:00","2026-04-21T13:43:15.000+02:00","SANEF\lefebvrejo","Cloud Agent","3bde4b3b-0c66-4d76-b939-a2b9040406b3","2025-07-29T11:55:21.000+02:00","2026-04-22T07:54:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"382450855","353984302","PCB25912.sanef.groupe","PCB25912","4C:CF:7C:0A:4C:C7","10.252.42.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222P","","'+02:00","2026-04-01T07:05:16.000+02:00","SANEF\jarque","Cloud Agent","19bd77ff-d9f7-450c-a96d-5c1d50afd052","2025-12-08T12:47:53.000+02:00","2026-04-22T07:54:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","332.0" +"246505713","287118657","MTO21065.sanef.groupe","MTO21065","D0:AD:08:A3:7B:3A","10.155.31.17","fe80::6278:2c7c:9aa3:b1fd","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV5","","'+02:00","2026-03-24T09:05:17.000+02:00","SANEF\meteonewsW11","Cloud Agent","1c429682-9adf-4bce-af7b-3a6558f33af6","2024-06-26T10:13:29.000+02:00","2026-04-22T07:54:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"404462971","362848756","MTR-JHNN0H4","MTR-JHNN0H4","FC:4C:EA:0F:E5:D3","10.4.32.202","fe80::bf21:3de2:580d:74d2","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.33.2","JHNN0H4","","'+02:00","2026-04-22T02:33:55.000+02:00","Skype","Cloud Agent","9cf69a5b-a273-4313-b945-a4ece6790515","2026-02-26T18:16:00.000+02:00","2026-04-22T07:54:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"358427467","344139974","VMMCAFLC1.sanef-int.adds","VMMCAFLC1","00:50:56:90:E1:24","10.41.50.251","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 47 79 c2 de 57 47-0e c4 dd 24 be f0 4e 5f","NoAssetTag","'+02:00","2026-04-16T16:40:38.000+02:00","UserPCT","Cloud Agent","a41a50c5-a0c3-4407-b009-87e453bf7b95","2025-09-10T11:20:30.000+02:00","2026-04-22T07:54:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","343.0" +"385913861","355923576","PCB25931.sanef.groupe","PCB25931","4C:CF:7C:0A:3C:E8","10.252.42.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534221Y","","'+02:00","2026-04-13T20:01:20.000+02:00","SANEF\ALOTH","Cloud Agent","914a216c-2f55-42d3-8f07-d22b43ed59ac","2025-12-24T09:51:26.000+02:00","2026-04-22T07:53:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","332.0" +"238473501","269476388","SVP20927.sanef-int.adds","SVP20927","BC:0F:F3:88:FD:35","10.1.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMD","","'+02:00","2026-04-21T09:11:59.000+02:00","Superviseur","Cloud Agent","cd6cf6a4-45e9-4446-a90c-56daa6f3fc9d","2024-05-22T10:23:19.000+02:00","2026-04-22T07:53:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"165487722","221777845","vriadawdc1.recette.adds","VRIADAWDC1","00:50:56:82:34:FB","10.45.0.131","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 78 20 b6 9e 79 17-8c 0d 37 04 e7 65 4c 95","NoAssetTag","'+02:00","2026-03-17T15:29:25.000+02:00","RECETTE\a03987","Cloud Agent","c6cc2dbf-ea52-46c5-b815-a9ec6a0d8475","2023-04-05T15:23:47.000+02:00","2026-04-22T07:53:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,AD,Cloud Agent,Windows Server,Recette,DSI","249.0" +"202841729","245543507","VPAIIADCC1.sanef.groupe","VPAIIADCC1","00:50:56:82:36:0B","10.40.1.23","fe80::74ee:dd25:14b5:378c","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","Phoenix Technologies LTD 6.00","VMware-42 02 ca 8b aa 5f a2 26-fe 46 3d 78 f0 98 70 7e","NoAssetTag","'+02:00","2026-04-15T13:17:43.000+02:00","SANEF.GROUPE\ndead@sanef","Cloud Agent","afbc69c6-d3ff-49be-8596-7aa7dda6d9a7","2023-12-06T16:39:01.000+02:00","2026-04-22T07:53:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DEX,BDD-SQL DYN,OS-WIN-SRV DYN,DESIGO,Cloud Agent,Windows Server","356.0" +"219161571","253326885","OSA20983.sanef-int.adds","OSA20983","BC:0F:F3:87:70:B7","10.100.20.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMV","","'+02:00","2026-04-20T12:59:03.000+02:00","Superviseur","Cloud Agent","77ef8869-0884-46bf-8774-baf2a6cee7a5","2024-02-29T18:00:39.000+02:00","2026-04-22T07:53:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"408197910","364418288","SRCYBABKP1.sanef-rec.fr","SRCYBABKP1","80:30:E0:2E:F8:04","10.45.11.35","fe80::5fc9:98d0:5d98:a639","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Computers / Server","HPE ProLiant ML350 G10 Server","6","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","15906","HPE U41","CZJ95002KL","","'+02:00","2026-03-16T14:50:15.000+02:00","Administrator","Cloud Agent","9bf6ad5b-7ff4-4395-b50f-4947b071c0d4","2026-03-13T12:34:05.000+02:00","2026-04-22T07:53:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,DSI","248.0" +"330710708","","PCB21362.sanef.groupe","PCB21362","D0:AD:08:AA:4F:CA","10.205.0.13,10.4.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764D3","","'+02:00","2026-04-20T08:16:39.000+02:00","SANEF\ROUSSEAU-ext","Cloud Agent","c329fda7-9c82-436f-bcdf-08cef6da503e","2025-06-04T11:16:18.000+02:00","2026-04-22T07:53:25.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"213855638","251126076","spasuagsm3","","ec:eb:b8:9a:5a:b5, ec:eb:b8:9a:5a:b4","10.43.4.211,10.41.40.211","fe80::eeeb:b8ff:fe9a:5ab5,fe80::eeeb:b8ff:fe9a:5ab4","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/20/2023","CZJ81900F0","","'+02:00","2025-10-07T11:53:01.000+02:00","cybastapp","Cloud Agent","0f1eb777-2645-4602-9997-0b1ea4e73c59","2024-02-05T19:49:18.000+02:00","2026-04-22T07:52:51.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server,Obsolete,ASUR","524.0" +"379577179","352903538","MTR-2CD4804","MTR-2CD4804","6C:3C:8C:56:39:51","10.4.32.200","fe80::d856:bf8a:4de6:fd34","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","2CD4804","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","948efff1-7e8d-4547-9c0b-a3a3322fb39b","2025-11-26T17:30:58.000+02:00","2026-04-22T07:52:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"225426807","256065280","ls-meru","LS-MERU","00:50:56:90:20:16","10.41.2.89","fe80::cd7b:17c7:490a:9263","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 79 e5 50 c4 8c 7a-44 87 79 e1 a4 8e e2 e2","NoAssetTag","'+02:00","2026-03-02T10:17:45.000+02:00","svpadmin","Cloud Agent","98cfc7fd-743b-4651-9a8c-482ec37609ce","2024-03-26T10:41:35.000+02:00","2026-04-22T10:47:39.000+02:00","64-Bit","4","SCA,VM,PM,GAV","High,Péage,DEX,VRF_PEAGE_DC,OS-WIN-SRV DYN,SVP,Production,Cloud Agent,Windows Server","508.0" +"332262809","333860615","vpameahtp1.sanef.groupe","","00:50:56:90:87:8b, 00:50:56:90:8c:4d","10.41.41.50,10.41.41.52,10.43.4.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 cf 7d a0 3a 2b 64-83 8b cf 80 29 ae d8 3e","No Asset Tag","'+02:00","2025-10-29T10:31:22.000+02:00","cybastapp","Cloud Agent","bb63cacb-2de4-4628-918b-2d20b9fd9f3c","2025-06-10T12:42:03.000+02:00","2026-04-22T07:51:53.000+02:00","x86_64","4","SCA,VM,GAV","Cloud Agent,Linux Server,Sextan,Production,MID-NGINX DYN,OS-LIN-SRV DYN","278.0" +"270549061","299932811","SVP21047.sanef-int.adds","SVP21047","D0:AD:08:A3:7B:30","10.152.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXB","","'+02:00","2026-04-10T11:06:31.000+02:00","Superviseur","Cloud Agent","d948fa71-56ca-402e-b26d-7a6fa19fef90","2024-10-07T11:06:16.000+02:00","2026-04-22T07:51:21.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Workstation,Forescout","686.0" +"130356825","192670922","vpppeaaref1","VPPPEAAREF1","00:50:56:82:79:C1","10.41.29.10","fe80::1f7d:b687:11df:5fc1","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","10240","Phoenix Technologies LTD 6.00","VMware-42 02 20 47 1b 23 6c 09-20 f0 78 b5 45 40 0f 6b","NoAssetTag","'+02:00","2026-03-05T15:22:36.000+02:00","Administrateur","Cloud Agent","af8e52ef-c1bc-4584-8eb3-ee7db692f189","2022-07-05T17:19:39.000+02:00","2026-04-22T07:51:20.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,Cloud Agent,Windows Server,Haute,DEX,SVP,High,Péage,Production,OS-WIN-SRV DYN","619.0" +"325679404","","PCB21136.sanef.groupe","PCB21136","D0:AD:08:E4:D1:4B","10.208.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.03.00","5CG3501HVK","","'+02:00","2026-04-17T15:03:54.000+02:00","SANEF\DEDIEU","Cloud Agent","97183211-aa40-4cc0-9f3b-894c0b2eeb1f","2025-05-19T10:31:30.000+02:00","2026-04-22T07:51:16.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"320296363","328636115","PCB23596.sanef.groupe","PCB23596","C8:6E:08:88:F0:86","10.255.1.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L69","","'+02:00","2026-04-07T09:30:38.000+02:00","SANEF\andrejo","Cloud Agent","5f1ee5bb-0e8c-482a-bf63-3b179861baa1","2025-04-28T16:03:52.000+02:00","2026-04-22T11:13:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"359809284","344907766","vsccmr3.sanef.groupe","VSCCMR3","00:50:56:82:7A:80","10.30.12.31","fe80::4d4:7d96:4eec:9426","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.20778)","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","49151","Phoenix Technologies LTD 6.00","VMware-42 02 3a 43 27 4b 81 0d-87 b0 6b a4 68 6f 0d 13","NoAssetTag","'+02:00","2025-09-15T17:14:29.000+02:00","VSCCMR3\CYBEXPBUR","Cloud Agent","d6b45857-9ebb-41e3-978a-b1a117ea336b","2025-09-15T16:35:19.000+02:00","2026-04-22T07:51:01.000+02:00","64-bit","2","SCA,VM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,Obsolete,DSI","349.0" +"334070533","334032216","PCB24123.sanef.groupe","PCB24123","48:EA:62:C8:63:86","10.104.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V67","","'+02:00","2026-04-08T11:27:22.000+02:00","SANEF\CABARET","Cloud Agent","14360a48-a9ff-4b04-85bc-dc24ca1b8c7b","2025-06-17T15:57:27.000+02:00","2026-04-22T07:50:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"240414317","274791588","vibocharg1","","00:50:56:90:c9:83","10.41.22.70","fe80::250:56ff:fe90:c983","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d6 b6 2f bd 3b 24-eb 93 26 ea 57 fe f0 ce","No Asset Tag","'+02:00","2026-03-16T16:10:12.000+02:00","cybsupibm","Cloud Agent","0bcf5151-cdd0-493d-802c-6c66c677630f","2024-05-30T12:39:29.000+02:00","2026-04-22T07:50:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,flux_libre,FreeFlow,Flux Libre","141.0" +"128617920","191424935","ls-poix-de-picardie","LS-POIX-DE-PICA","00:50:56:90:40:70","10.41.2.105","fe80::eec4:92e9:2b60:2b6d","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 04 6b e9 fd 66 da-6d 0f e1 c6 38 4e f5 cd","NoAssetTag","'+02:00","2026-03-02T15:22:54.000+02:00","svpadmin","Cloud Agent","dc4943db-c583-45f8-9b5c-05ca7fb71cbd","2022-06-21T15:52:01.000+02:00","2026-04-22T07:50:37.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,Windows Server,SVP,OS-WIN-SRV DYN,VRF_PEAGE_DC,Production,Péage,High,Cloud Agent","508.0" +"360433718","","PCB22667.sanef.groupe","PCB22667","D0:AD:08:AA:4F:BE","10.208.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764CQ","","'+02:00","2026-04-01T09:01:41.000+02:00","SANEF\calos","Cloud Agent","599283eb-1957-4645-8781-dc5f32b8254d","2025-09-17T10:44:26.000+02:00","2026-04-22T07:50:33.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"284319306","","MTR-1KRTL64","MTR-1KRTL64","D0:46:0C:95:2E:7A","10.208.32.200","fe80::e148:752:733a:f1d6","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","1","1400","12th Gen Intel(R) Core(TM) i7-12700T","16072","Dell Inc. 1.22.0","1KRTL64","","'+02:00","2026-04-22T02:32:50.000+02:00","Skype","Cloud Agent","db79b543-bd39-4bc4-b842-6ab4a07976d7","2024-12-05T09:56:18.000+02:00","2026-04-22T07:50:25.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"233285732","260433024","ls-portes-vignoble","LS-PORTES-VIGNO","00:50:56:90:06:EC","10.41.2.21","fe80::90c5:7afb:c5ea:76e5","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 d9 a0 83 37 30 3e-b1 29 49 68 2a dc bb 4c","NoAssetTag","'+02:00","2026-03-02T15:33:41.000+02:00","svpadmin","Cloud Agent","a840c7a6-3c6c-4d03-aa2d-b3c084173719","2024-04-30T09:44:48.000+02:00","2026-04-22T07:50:23.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Production,High,VRF_PEAGE_DC,Péage,SVP,OS-WIN-SRV DYN","507.0" +"292508850","315061234","VRBURXBAN1.sanef.groupe","VRBURXBAN1","00:50:56:82:B1:BF","10.30.4.1","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6936) 64-Bit","23H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 02 26 a9 97 ca f3 1b-37 01 2b 61 83 64 fe 5f","NoAssetTag","'+02:00","2026-04-15T09:09:21.000+02:00","SANEF\BILLARD-ext","Cloud Agent","0ca20002-4768-4fa9-a9ec-9ccd10536ae6","2025-01-15T16:07:26.000+02:00","2026-04-22T07:50:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","338.0" +"236525160","265225870","ls-rn29","LS-RN29","00:50:56:90:D6:D4","10.41.2.94","fe80::5215:992f:a389:691","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 b8 3f 95 db 57 35-90 a9 d9 9d c8 18 19 70","NoAssetTag","'+02:00","2026-03-02T16:15:32.000+02:00","svpadmin","Cloud Agent","039117fc-55b3-4c03-9b78-1d434a1dadba","2024-05-14T13:18:41.000+02:00","2026-04-22T07:50:04.000+02:00","64-Bit","4","SCA,VM,GAV","SVP,Péage,Cloud Agent,OS-WIN-SRV DYN","508.0" +"406293517","363585597","PCV20890.sanef-int.adds","PCV20890","30:13:8B:6C:60:7B","10.12.7.53","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q8F","","'+02:00","2026-03-05T16:00:12.000+02:00","Operateur","Cloud Agent","4110038d-b5e5-430f-9fda-1eb3f7599c90","2026-03-05T16:12:25.000+02:00","2026-04-22T07:49:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"272969322","301440273","SVP21053.sanef-int.adds","SVP21053","D0:AD:08:A7:28:2E","10.82.14.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJP","","'+02:00","2026-04-17T19:11:19.000+02:00","Superviseur","Cloud Agent","59a3d291-9fd6-4a98-ae0a-64a1fe9ffd4c","2024-10-18T10:46:27.000+02:00","2026-04-22T07:49:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"320084390","328609505","PCB22927.sanef.groupe","PCB22927","D0:AD:08:A7:27:B6","10.149.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNJ","8CC3502YNJ","'+02:00","2026-03-29T09:23:40.000+02:00","SANEF\bigorgne","Cloud Agent","2a32f868-c845-4d4a-b05e-f254e1780c3c","2025-04-28T11:44:45.000+02:00","2026-04-22T07:49:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"129338807","191947808","vpaiiairs1.sanef.groupe","VPAIIAIRS1","00:50:56:82:61:73","10.30.10.44","fe80::2279:f110:5569:5e94","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 5b ec d4 de 0f 81-80 93 44 22 f6 1a 60 7f","NoAssetTag","'+02:00","2026-04-16T14:52:00.000+02:00","Administrateur","Cloud Agent","981bca2d-edda-4dfc-bec6-e971a09b862e","2022-06-27T14:47:25.000+02:00","2026-04-22T07:49:20.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Production,DSI,OS-WIN-SRV DYN,VRF_INCONNUE,IRS,Cloud Agent,Windows Server","491.0" +"383961082","354727417","PCB21524.sanef.groupe","PCB21524","D0:AD:08:A3:7B:2C","10.139.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.18.10","8CC3502YXH","","'+02:00","2026-04-19T17:32:26.000+02:00","SANEF\DEOLIVEIRA","Cloud Agent","72fc6d72-b968-4983-9dd7-c78aec277e5d","2025-12-15T12:18:10.000+02:00","2026-04-22T10:56:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"322357113","329435680","PCB21294.sanef.groupe","PCB21294","30:F6:EF:A3:F0:B1","10.205.0.38,192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJY","","'+02:00","2026-04-17T07:40:16.000+02:00","SANEF\houdry","Cloud Agent","5b8d8119-6db2-4a08-9cfa-09396ee5fb6c","2025-05-06T12:03:52.000+02:00","2026-04-22T07:49:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"327315662","","PCB20732.sanef.groupe","PCB20732","BC:0F:F3:3D:38:13","10.255.2.148,10.200.30.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D34","","'+02:00","2026-04-01T17:48:41.000+02:00","martine.blondel@sapn.fr","Cloud Agent","74e5fa05-821e-40e1-8b41-c1591fb3c596","2025-05-26T11:58:32.000+02:00","2026-04-22T07:49:09.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"297211374","318506810","vemvsym1","VEMVSYM1","00:50:56:82:7A:37","192.168.100.79","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 a1 f2 00 93 be 5a-e5 46 ad 81 17 b1 97 35","NoAssetTag","'+02:00","2026-04-09T15:52:25.000+02:00","Administrateur","Cloud Agent","25b48ae2-6860-4e38-8e9e-e334ff834933","2025-02-03T19:53:32.000+02:00","2026-04-22T11:27:08.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,OS-WIN-SRV DYN,BDD-SQL DYN","689.0" +"321037931","328915142","PCB23648.sanef.groupe","PCB23648","6C:0B:5E:EE:EC:D5","192.168.1.34,10.11.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L55","","'+02:00","2026-04-13T16:23:13.000+02:00","SANEF\WENDLING","Cloud Agent","01de0432-e460-475e-889a-04047ca25350","2025-04-30T16:11:47.000+02:00","2026-04-22T07:49:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"329858125","","PCB22460.sanef.groupe","PCB22460","F0:20:FF:9A:DF:21","10.255.4.145,10.100.39.129","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HV2","","'+02:00","2026-04-21T17:29:22.000+02:00","SANEF\GIMENEZ","Cloud Agent","6b848425-20f8-44bc-9a6d-af4997d65657","2025-06-03T16:20:18.000+02:00","2026-04-22T07:48:58.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"255409754","294877165","lramebrac1.sanef-rec.fr","","ee:50:33:80:00:78, ee:50:33:80:00:7c","10.45.2.110,10.45.2.114,10.45.2.119,10.45.5.6,169.254.16.47","fe80::ec50:33ff:fe80:78,fe80::ec50:33ff:fe80:7c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00G","/n/Bios Asset Tag :","'+02:00","2026-04-20T11:39:32.000+02:00","grid","Cloud Agent","814094fb-7668-435d-a867-f7df839822d0","2024-08-02T16:53:15.000+02:00","2026-04-22T07:48:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Amelie,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette","500.0" +"327282857","331521599","PCB18440.sanef.groupe","PCB18440","64:D6:9A:1D:39:6D","10.205.0.80,192.168.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HRW","","'+02:00","2026-04-13T09:57:11.000+02:00","SANEF\CRAMPON","Cloud Agent","5fde194c-906e-4853-915d-51986d8d6ae0","2025-05-26T10:06:27.000+02:00","2026-04-22T07:48:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"403324006","362470020","MTR-FGNN0H4","MTR-FGNN0H4","FC:4C:EA:0F:E6:E1","10.4.32.203","fe80::a048:44c:b596:2cb5","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.33.2","FGNN0H4","","'+02:00","2026-04-22T02:32:51.000+02:00","Skype","Cloud Agent","016e609a-dfeb-4fea-b327-fadd8d24dc7b","2026-02-23T18:47:05.000+02:00","2026-04-22T07:47:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"130330700","192653730","VPAIIAPVC1.sanef.groupe","VPAIIAPVC1","00:50:56:82:03:23","10.41.11.11","fe80::50cd:6e78:7688:8614","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1457) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 9c 66 75 7f d0 5a-62 35 ca 78 ca 1f fb 89","NoAssetTag","'+02:00","2024-09-12T14:56:25.000+02:00","SANEF\TRON","Cloud Agent","7f363caa-8fb0-419e-b8f0-a8b14e928caa","2022-07-05T13:41:26.000+02:00","2026-04-22T07:47:49.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,Obsolete,DEX,VRF_INCONNUE,Production,Cloud Agent,Windows Server,NVR,Workstation","519.0" +"128143331","191077228","VBURWDC1.sanef.groupe","VBURWDC1","00:50:56:82:43:8E","10.30.12.140","fe80::dc41:86ae:1457:dbd5","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 2d 09 09 33 f7 53-46 7f e3 23 a0 85 60 3e","NoAssetTag","'+02:00","2026-03-31T15:21:11.000+02:00","SANEF.GROUPE\stoad@sanef.com","Cloud Agent","9cd23b37-419e-45d7-9447-b59586c1d8a9","2022-06-16T12:01:42.000+02:00","2026-04-22T07:47:42.000+02:00","64-Bit","4","SCA,VM,PM,GAV","AD,High,Criticality,Sécurité IT,Production,DSI,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,Windows Server","668.0" +"186490508","236821636","MTR-BQ3J8Y3","MTR-BQ3J8Y3","6C:3C:8C:3D:5E:33","10.8.32.200","fe80::aac4:e698:bdf3:acfa","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","BQ3J8Y3","","'+02:00","2026-04-22T02:33:08.000+02:00","Skype","Cloud Agent","e7811a09-f47e-457c-8b0c-bf4af399012d","2023-09-06T13:50:40.000+02:00","2026-04-22T07:47:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"243422747","281705324","SVP20939.sanef-int.adds","SVP20939","BC:0F:F3:87:70:B6","10.132.1.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMW","","'+02:00","2026-04-21T07:35:46.000+02:00","Superviseur","Cloud Agent","f7c332b0-ee87-4432-86a9-fc11ffd04ceb","2024-06-12T10:53:41.000+02:00","2026-04-22T07:46:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"287165442","311001699","MTR-GJRTL64","MTR-GJRTL64","D0:46:0C:95:2D:16","10.100.32.201","fe80::4ab6:41fb:4a:ef86","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","GJRTL64","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","27bd79c1-4087-422c-80de-fc305d374fe0","2024-12-17T16:24:55.000+02:00","2026-04-22T07:46:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"208777939","248746384","vibotangx1.sanef.groupe","","00:50:56:90:d2:ee","10.41.23.151","fe80::250:56ff:fe90:d2ee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11728","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 68 3d 7f fc 70 0b-92 c5 64 74 b1 0e c7 28","No Asset Tag","'+02:00","2026-03-17T10:52:00.000+02:00","cybreconcile","Cloud Agent","a5986775-8447-4cac-9d8e-cbd9cbe765e6","2024-01-10T12:54:55.000+02:00","2026-04-22T07:46:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Production,MID-NGINX DYN,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0" +"188376349","237966005","MTR-GQ3J8Y3","MTR-GQ3J8Y3","6C:3C:8C:3D:61:1B","10.200.32.204","fe80::d7f1:2459:1ce7:1c0","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","GQ3J8Y3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","b1891fa5-aa86-48fc-81a2-d19e8e1c2c87","2023-09-17T19:10:37.000+02:00","2026-04-22T07:46:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"326191026","","PCB18417.sanef.groupe","PCB18417","70:A8:D3:88:46:4A","192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG21724KM","","'+02:00","2026-04-22T07:42:38.000+02:00","SANEF\vilin","Cloud Agent","262a08dd-2a15-4a46-9991-d9991123c6d5","2025-05-21T11:38:02.000+02:00","2026-04-22T07:46:36.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"334688859","","PCB24159.sanef.groupe","PCB24159","DC:90:09:E1:15:FE","10.106.31.7,169.254.41.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XX","","'+02:00","2026-04-08T07:47:44.000+02:00","SANEF\DELANNOY","Cloud Agent","2d1879f1-b6ec-4618-aeec-7c0e2ce7243f","2025-06-19T11:33:44.000+02:00","2026-04-22T07:46:10.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"318743453","328194015","PCB22921.sanef.groupe","PCB22921","D0:AD:08:A3:E7:39","10.108.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTK","8CC3502YTK","'+02:00","2026-04-13T13:30:17.000+02:00","SANEF\mengin","Cloud Agent","760ce81b-5f23-4969-9e13-502c6cb31284","2025-04-23T13:31:26.000+02:00","2026-04-22T07:45:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"222316165","254695608","OSA20933.sanef-int.adds","OSA20933","BC:0F:F3:88:FD:2D","10.12.20.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LML","","'+02:00","2026-04-16T13:31:20.000+02:00","Superviseur","Cloud Agent","023e097e-b70c-4b99-972f-0713947f2e41","2024-03-14T16:35:23.000+02:00","2026-04-22T07:45:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"176287347","229878200","MTR-HH775R3","MTR-HH775R3","90:8D:6E:8E:19:79","10.89.32.201","fe80::7ede:ccfe:24d6:599d","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","HH775R3","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","3be07001-e555-4e6f-bf17-86fee1a3e40b","2023-06-28T18:36:45.000+02:00","2026-04-22T07:45:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"249836031","288925765","lrdsibrac2.sanef-rec.fr","","3e:33:fb:a0:00:ca, 3e:33:fb:a0:00:ce","10.45.7.10,10.45.5.20","fe80::3c33:fbff:fea0:ca,fe80::3c33:fbff:fea0:ce","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200V","/n/Bios Asset Tag :","'+02:00","2026-03-04T18:18:46.000+02:00","reboot","Cloud Agent","0d957134-7830-49ff-a656-5c9d578b5bb7","2024-07-10T15:12:04.000+02:00","2026-04-22T07:45:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,ORACLE","146.0" +"255916763","294877285","vpcybacpm1.sanef.groupe","VPCYBACPM1","00:50:56:90:22:67","10.44.1.164","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 97 60 4f 2b af dd-7e 17 42 79 19 a3 d8 61","NoAssetTag","'+02:00","2026-03-23T16:07:30.000+02:00","admcybs05604","Cloud Agent","3619ec40-b3a9-4d51-81df-07204324e1fc","2024-08-05T15:24:15.000+02:00","2026-04-22T10:57:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,CyberArk","65.0" +"129343757","191951143","vppeaaref4","VPPEAAREF4","00:50:56:82:64:C9","10.42.0.138","fe80::734d:2bd6:29be:aa4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2594","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","10240","Phoenix Technologies LTD 6.00","VMware-42 02 a0 a6 05 bf 30 1a-13 f3 82 1c a3 0b e4 cf","NoAssetTag","'+02:00","2026-02-25T11:25:00.000+02:00","Administrateur","Cloud Agent","0fe3f60c-f17a-4d30-bb2f-a6ebfe885a53","2022-06-27T15:42:58.000+02:00","2026-04-22T07:45:10.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Production,Péage,High,VRF_EXTERNAL,Cloud Agent,Windows Server,Haute,SVP,DEX,OS-WIN-SRV DYN","642.0" +"391148476","357841487","vrdsialab2.sanef-rec.fr","","00:50:56:9c:41:e0","10.45.16.36","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 86 7d b8 28 a5 60-5a 50 b9 96 e5 7a 71 a8","No Asset Tag","'+02:00","2026-03-12T13:05:37.000+02:00","root","Cloud Agent","4cbfd300-075b-4e56-b552-646b79038eb6","2026-01-12T17:39:10.000+02:00","2026-04-22T07:45:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,test_rhel9,Recette","144.0" +"128618682","191427839","ls-setques","LS-SETQUES","00:50:56:90:76:E8","10.106.18.20","fe80::bed4:4651:5cf:1890","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 01 89 32 54 a9 49-08 36 24 2d 59 1b 80 f2","NoAssetTag","'+02:00","2026-03-03T10:47:12.000+02:00","svpadmin","Cloud Agent","498a137a-f305-43cd-ae2e-02070f45c521","2022-06-21T16:24:08.000+02:00","2026-04-22T11:08:35.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,Haute,Production,Péage,High,VRF_INCONNUE,Windows Server,OS-WIN-SRV DYN,SVP,Cloud Agent","635.0" +"239590813","271539152","SVP20954.sanef-int.adds","SVP20954","BC:0F:F3:87:6F:AB","10.132.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLM","","'+02:00","2026-04-13T06:32:23.000+02:00","Superviseur","Cloud Agent","236e0793-d7b1-4f97-8a97-397b1d370ef7","2024-05-27T14:36:12.000+02:00","2026-04-22T07:44:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"377801287","352204494","PCV20869.sanef-int.adds","PCV20869","30:13:8B:6C:60:8B","10.12.7.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q8C","","'+02:00","2026-04-20T12:59:59.000+02:00","Operateur","Cloud Agent","f84b926d-85e8-4d25-b2a3-018733fa68dd","2025-11-19T17:16:40.000+02:00","2026-04-22T07:44:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"396161228","359784956","vmdpeag03.recette.adds","VMDPEAG03","00:50:56:9C:ED:CE","10.45.17.197","fe80::862f:d285:9555:17ca","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 6a 5f 78 67 5d b6-04 b3 cd 45 7e 71 7a 75","NoAssetTag","'+02:00","2026-04-16T02:35:27.000+02:00","supwindev","Cloud Agent","90d7f632-b092-4dd8-84cf-73ac805ce751","2026-01-30T18:37:02.000+02:00","2026-04-22T07:44:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","242.0" +"320446388","328705541","PCB22906.sanef.groupe","PCB22906","D0:AD:08:A3:E6:D2","10.29.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNW","8CC3502YNW","'+02:00","2026-04-21T15:59:30.000+02:00","SANEF\labelle","Cloud Agent","11e907ac-ef47-49cd-b4dc-3f323e2b5aa0","2025-04-29T10:42:19.000+02:00","2026-04-22T07:44:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"129315770","191933901","ls-verdun","LS-VERDUN","00:50:56:90:E5:9E","10.41.2.77","fe80::7e5c:9755:ed11:41d2","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 3e 58 44 8b ca 89-c5 9b fd b1 0f 62 7a 10","NoAssetTag","'+02:00","2026-03-04T15:21:18.000+02:00","svpadmin","Cloud Agent","02b51340-8215-4b1b-92af-e635dc304977","2022-06-27T12:02:06.000+02:00","2026-04-22T07:43:55.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,Windows Server,Cloud Agent,Production,Péage,High,OS-WIN-SRV DYN,SVP,VRF_PEAGE_DC,Haute","635.0" +"356058023","343129798","PCM18705.sanef-int.adds","PCM18705","30:13:8B:6C:5D:6D","10.5.17.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473W8","","'+02:00","2026-04-20T13:44:49.000+02:00","UserPCT","Cloud Agent","bdc32bae-5a6c-4fab-b48a-525bb08070e9","2025-09-01T15:08:49.000+02:00","2026-04-22T07:43:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"340070824","336780159","vppwdapod1.sanef.groupe","","00:50:56:94:6a:23","10.44.1.200","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 c3 5e ac d9 70 a8-34 da 91 3e 67 a7 a1 3d","No Asset Tag","'+02:00","2026-01-07T11:14:16.000+02:00","cybreconcile","Cloud Agent","4284b3bb-d420-4bfc-87c2-206c1d4ead2a","2025-07-08T10:13:26.000+02:00","2026-04-22T07:43:02.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","332.0" +"397458696","360376395","vmmvsccad3.sanef-int.adds","VMMVSCCAD3","00:50:56:90:A3:11","10.41.7.233","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 56 12 7b 32 31 9c-7e 39 6b f8 9d c3 f9 bd","NoAssetTag","'+02:00","2026-02-05T12:41:02.000+02:00","Operateur","Cloud Agent","45909249-e5d7-4d66-b4c0-73df364dbd0c","2026-02-04T18:56:06.000+02:00","2026-04-22T11:06:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"129933546","192383819","vptrabalx1.sanef.groupe","VPTRABALX1","00:50:56:82:43:F5","10.41.40.15","fe80::7f36:cf5a:8ece:6e07","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 a6 16 44 f3 fb 56-8d 30 32 2d 27 6f 20 1d","NoAssetTag","'+02:00","2026-01-20T12:24:56.000+02:00","Administrateur","Cloud Agent","86cff205-e825-491f-9af7-55b180605764","2022-07-01T09:27:38.000+02:00","2026-04-22T07:42:57.000+02:00","64-Bit","3","SCA,VM,PM,GAV","ALX,Production,OS-WIN-SRV DYN,BDD-SQL DYN,DEX,VRF_TRAFIC_DC,Cloud Agent,Windows Server","518.0" +"128140111","191075188","vpbipamod1","VPBIPAMOD1","00:50:56:82:9C:9B","192.168.230.19","fe80::e5d7:5bd7:32aa:9c4a","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 fd 6b 6c f9 31 c6-71 b4 31 74 3b d3 72 c7","NoAssetTag","'+02:00","2026-04-20T12:24:07.000+02:00","Administrateur","Cloud Agent","9bf369df-233d-4b66-a524-57672f4850e5","2022-06-16T11:25:35.000+02:00","2026-04-22T07:42:27.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,Péage,Basse,DMZ,OS-WIN-SRV DYN,Windows Server,Gestion commerciale,Low,Production,TAG-SRVEXPOSEINTERNET,Modalisa,DSI,Cloud Agent","0.0" +"128600128","191413206","ls-hardivilliers","LS-HARDIVILLIER","00:50:56:90:C3:0B","10.41.2.92","fe80::b1c9:a5fd:4ad4:f960","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 7e 77 b7 c3 88 e3-bf ee 33 69 db d6 cc 74","NoAssetTag","'+02:00","2026-03-24T15:39:37.000+02:00","svpadmin","Cloud Agent","a7bcd268-2028-4347-9713-ae3c9d8569f9","2022-06-21T12:17:05.000+02:00","2026-04-22T07:42:22.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,SVP,OS-WIN-SRV DYN,DEX,High,Péage,Production,Windows Server,VRF_PEAGE_DC","506.0" +"269828069","299443276","SVP21072.sanef-int.adds","SVP21072","D0:AD:08:A7:28:6F","10.100.20.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLF","","'+02:00","2026-03-20T23:01:55.000+02:00","Superviseur","Cloud Agent","5ca9b50e-3449-493d-b843-5f8acd4c201a","2024-10-03T09:24:11.000+02:00","2026-04-22T07:42:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"174128300","236955266","vpburafax1.sanef.groupe","VPBURAFAX1","00:50:56:82:56:F8","10.41.60.150","fe80::a063:de4b:d923:534f","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 a9 a1 58 cb a6 10-f5 23 39 7b 16 ba f0 c2","NoAssetTag","'+02:00","2026-01-27T14:53:30.000+02:00","Administrateur","Cloud Agent","3d659114-b99d-43d6-8bb9-8c1d6d842fc5","2023-06-12T19:11:05.000+02:00","2026-04-22T07:42:04.000+02:00","64-Bit","3","SCA,VM,GAV","Cloud Agent,XMedius,MID-APACHE-TOMCAT DYN,DSI,OS-WIN-SRV DYN","510.0" +"175464748","229282007","vvbotatsp2.sanef-rec.fr","","42:d1:61:b3:ec:74, ca:c1:e9:e2:85:97, ce:f5:66:28:3e:64, e6:7a:28:bb:34:3a, 00:50:56:9c:29:20, 86:6d:28:44:d4:dc, ba:a0:83:64:91:4f, d2:9a:a7:f0:5b:f0","10.45.6.158,10.89.0.1","fe80::40d1:61ff:feb3:ec74,fe80::c8c1:e9ff:fee2:8597,fe80::ccf5:66ff:fe28:3e64,fe80::e47a:28ff:febb:343a,fe80::250:56ff:fe9c:2920,fe80::846d:28ff:fe44:d4dc,fe80::b8a0:83ff:fe64:914f,fe80::d09a:a7ff:fef0:5bf0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 6e 77 2f 09 41 e3-c2 26 21 99 bc 7c 16 7c","No Asset Tag","'+02:00","2026-03-10T11:29:16.000+02:00","cybreconcile","Cloud Agent","4a14bfd7-e9a4-4a27-8ef7-1d35494fcd66","2023-06-22T17:12:46.000+02:00","2026-04-22T07:42:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,FreeFlow,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"393324304","358592294","VRVPNARAD1.recette.adds","VRVPNARAD1","00:50:56:9C:D1:36","10.45.14.136","fe80::b11f:a3f1:9da5:d3a0","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24241)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 1c 12 b7 73 86 16 7a-63 ab 52 17 48 d0 6b 37","NoAssetTag","'+01:00","2026-01-20T10:40:58.000+02:00","recette.adds\A17904","Cloud Agent","1ed61542-6a02-4e6c-9eee-5ca37d4b087f","2026-01-19T13:40:41.000+02:00","2026-04-22T07:42:00.000+02:00","64 bits","2","SCA,VM,PM,GAV","Windows Server 2008,OS-WIN-SRV DYN,Cloud Agent,Recette,Radius,DSI,Obsolete","358.0" +"192389444","240321284","vppeaabst1.sanef.groupe","","00:50:56:90:ee:11","10.41.20.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 a4 6b aa c2 b4 1d-66 50 bb 82 68 7a e8 40","No Asset Tag","'+02:00","2026-04-16T14:30:59.000+02:00","cybreconcile","Cloud Agent","03ac2c85-231e-4577-a87b-1011f771b865","2023-10-10T12:52:07.000+02:00","2026-04-22T07:41:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","485.0" +"213125599","250793707","vpbckangw4","","00:50:56:9a:d7:cd","10.44.3.165","fe80::250:56ff:fe9a:d7cd","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","3626","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a e4 61 03 48 01 3c-90 0b 8b e3 e9 c1 5a f6","No Asset Tag","'+02:00","2026-02-03T17:25:25.000+02:00","tbaad-ext","Cloud Agent","c045d0c9-2317-4051-8f6c-a26ad473874d","2024-02-01T12:45:52.000+02:00","2026-04-22T07:41:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","53.0" +"356333830","343268670","PCB24169.sanef.groupe","PCB24169","DC:90:09:E0:59:02","10.255.3.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XG","","'+02:00","2026-04-17T15:06:33.000+02:00","SANEF\PINELM","Cloud Agent","353691a9-3ba3-42a4-b6c5-4dd06717819b","2025-09-02T15:04:26.000+02:00","2026-04-22T07:41:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"365288994","346841739","PCV21510.sanef-int.adds","PCV21510","D0:AD:08:A3:7B:56","10.187.6.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YRL","","'+02:00","2025-11-27T11:56:08.000+02:00","Operateur","Cloud Agent","e17ad329-0017-44c7-8c85-8467f262214b","2025-10-03T17:04:35.000+02:00","2026-04-22T10:58:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"325222565","","PCB21585.sanef.groupe","PCB21585","D0:AD:08:A3:7B:50","10.100.38.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRT","","'+02:00","2026-03-31T08:54:31.000+02:00","SANEF\FONTAINEB","Cloud Agent","633876da-2df3-4379-b88c-df225d9defd4","2025-05-16T13:49:21.000+02:00","2026-04-22T07:41:23.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"396073935","359746516","PCB25918.sanef.groupe","PCB25918","4C:CF:7C:0A:5C:D6","10.4.31.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342223","","'+02:00","2026-04-21T18:21:48.000+02:00","SANEF\langlait","Cloud Agent","c0db2713-f98c-4469-815b-2c8942ade1e7","2026-01-30T11:25:57.000+02:00","2026-04-22T07:41:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"220595112","253937959","vvbooarep2.sanef-rec.fr","","00:50:56:9c:e0:73","10.45.6.81","fe80::250:56ff:fe9c:e073","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 2a 59 5d 55 c9 bb-4a 0a 4e 97 69 02 ce c5","No Asset Tag","'+02:00","2026-03-09T16:01:19.000+02:00","cybintsys","Cloud Agent","3b74b962-7e4e-47fd-ac08-89e1bc617c16","2024-03-07T12:56:24.000+02:00","2026-04-22T07:40:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,Flux Libre,flux_libre","141.0" +"130584251","192833335","node3","","00:50:56:82:3f:a3, 66:a4:6f:e0:c4:da, ee:ee:ee:ee:ee:ee, 22:09:18:03:9a:76","10.45.2.58,10.233.71.0,169.254.25.10","fe80::c251:be9c:d8ba:9277,fe80::64a4:6fff:fee0:c4da,fe80::ecee:eeff:feee:eeee","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 37 fd 56 01 65 85-f2 6f 3d 1f d8 40 d0 c6","No Asset Tag","'+02:00","2025-10-08T13:43:03.000+02:00","cybexpapp","Cloud Agent","3d718006-e555-46cc-b3f8-d1a8be458214","2022-07-07T11:37:04.000+02:00","2026-04-22T07:40:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,VRF_INCONNUE,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server","245.0" +"269294748","299210603","SVP22813.sanef-int.adds","SVP22813","D0:AD:08:A7:28:12","10.100.20.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKC","","'+02:00","2026-04-16T05:09:44.000+02:00","Superviseur","Cloud Agent","95987afb-63e4-46ac-a01c-37b46030bb0d","2024-10-01T09:16:50.000+02:00","2026-04-22T07:40:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"321551461","329076840","PCB22905.sanef.groupe","PCB22905","D0:AD:08:A7:27:C3","10.119.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN8","8CC3502YN8","'+02:00","2026-03-29T09:13:34.000+02:00","SANEF\deangeli","Cloud Agent","f0f176eb-8863-4f9d-9cb3-e8b4549f7f5e","2025-05-02T11:22:05.000+02:00","2026-04-22T07:40:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"331403288","","PCB17643.sanef.groupe","PCB17643","28:C5:D2:9E:45:58","10.100.39.155,10.255.1.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y50","","'+02:00","2026-04-20T07:46:08.000+02:00","SANEF\hubertc","Cloud Agent","25d2cee2-09f0-4cec-8f80-d8f53786bebb","2025-06-06T11:32:11.000+02:00","2026-04-22T07:40:08.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"368454760","348146125","vppixatsf2.sanef-int.adds","VPPIXATSF2","00:50:56:90:70:14","10.41.17.16","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","65535","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 88 98 b0 bc 9f 76-53 8b 4c 1c 6c 8b 82 61","NoAssetTag","'+02:00","2026-04-10T10:59:02.000+02:00","b03987@sanef-int","Cloud Agent","346440e6-e580-4d32-acd4-c711c2d9fea9","2025-10-14T16:59:25.000+02:00","2026-04-22T07:40:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","346.0" +"356380926","343284976","PCB21560.sanef.groupe","PCB21560","D0:AD:08:A3:E6:E1","10.100.39.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQ5","8CC3502YQ5","'+02:00","2026-03-29T09:12:57.000+02:00","SANEF\psi","Cloud Agent","3b76ed9f-cc77-40e1-970f-a3c2dc076074","2025-09-02T17:18:52.000+02:00","2026-04-22T07:40:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"349775614","340136514","vpodaboem2.sanef.groupe","","52:54:00:eb:9c:78, 52:54:00:4e:87:ca, 52:54:00:df:ed:d3","192.168.17.129,10.42.15.90,10.42.15.92,10.42.15.95,10.42.15.96,192.168.17.4","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-10-03T14:51:30.000+02:00","grid","Cloud Agent","34fb5e73-b763-4faf-b472-8978c8d6e474","2025-08-07T14:49:18.000+02:00","2026-04-22T07:39:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent","339.0" +"248751878","288325879","MTO21604.sanef.groupe","MTO21604","D0:AD:08:A4:4E:4A","10.4.31.81","fe80::c852:5a94:e1f6:8395","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5189) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711KH","","'+02:00","2025-05-07T15:41:09.000+02:00","SANEF\meteonewsW11","Cloud Agent","c98a5ce9-cc05-4eb7-8569-ee77de228e90","2024-07-05T14:34:45.000+02:00","2026-04-22T07:39:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"384282475","354872787","VMDGEST02.recette.adds","VMDGEST02","00:50:56:9C:9A:1A","10.45.17.132","fe80::cd3e:1c8c:51a:ee55","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c e1 82 32 9d ec f8-ac 57 22 a5 43 9f 16 a4","NoAssetTag","'+02:00","2026-04-16T05:08:15.000+02:00","supwindev","Cloud Agent","86e95789-d644-4fa0-b19d-b1386bd53627","2025-12-16T16:14:56.000+02:00","2026-04-22T07:39:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"320088358","328609740","PCB22924.sanef.groupe","PCB22924","D0:AD:08:A3:7B:CC","10.106.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW7","8CC3502YW7","'+02:00","2026-03-28T09:11:52.000+02:00","SANEF\MITKAS","Cloud Agent","e22698b4-43fe-456e-ae33-886738bb3aa5","2025-04-28T11:49:41.000+02:00","2026-04-22T07:39:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"112163518","180129319","vpaiiaast1.sanef.groupe","VPAIIAAST1","00:50:56:82:DA:04","10.30.10.141","fe80::df68:fd65:de79:8c57","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 55 41 2e 7f db 75-c0 08 7d 03 ec 8a ea 06","NoAssetTag","'+02:00","2026-03-24T17:57:14.000+02:00","SANEF\tbead","Cloud Agent","d4633de0-f119-4455-9a6c-bca1f5870226","2022-02-03T11:15:02.000+02:00","2026-04-22T10:32:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Outils prod (Monitoring, NMS, gestion de parc),Production,Collecte,Cloud Agent,Windows Server,DSI,VRF_INCONNUE","343.0" +"205308048","246811798","vpbotarep2.sanef.groupe","","00:50:56:90:54:97","192.168.21.67","fe80::250:56ff:fe90:5497","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 12 e4 d6 12 27 c2-13 42 c2 d3 9f 32 ab e9","No Asset Tag","'+02:00","2026-04-21T10:01:57.000+02:00","cybreconcile","Cloud Agent","85846a96-9265-4ae1-ae41-7a30e78eecd7","2023-12-20T13:07:22.000+02:00","2026-04-22T07:39:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Flux Libre,OS-LIN-SRV DYN,flux_libre,log4j,FreeFlow,Cloud Agent,Linux Server","332.0" +"416742830","367956475","vrzbxaprx1.sanef-rec.fr","","00:50:56:9c:54:dd","10.45.15.207","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 79 51 76 96 f1 f4-04 23 a4 72 c4 09 43 4f","No Asset Tag","'+02:00","2026-04-16T12:17:54.000+02:00","cybsecope","Cloud Agent","68ae297c-956a-4d4d-8828-0f9bfcb6cfd7","2026-04-17T16:48:22.000+02:00","2026-04-22T07:39:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"327770408","","PCB21303.sanef.groupe","PCB21303","D0:AD:08:0C:6D:83","10.12.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK1","","'+02:00","2026-04-14T07:32:00.000+02:00","SANEF\allary","Cloud Agent","d7244c37-9a32-4815-9d96-645b0fb2ff3f","2025-05-28T12:49:54.000+02:00","2026-04-22T07:39:03.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"382416623","353964316","PCB25869.sanef.groupe","PCB25869","28:95:29:1E:7F:3F","10.255.3.141,192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CS4","","'+02:00","2026-04-13T17:06:58.000+02:00","SANEF\fresco","Cloud Agent","8124c201-59f1-4776-946a-9b99de17dc28","2025-12-08T09:49:45.000+02:00","2026-04-22T07:38:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","331.0" +"296495204","317922655","REX21603.sanef-int.adds","REX21603","D0:AD:08:A4:4D:C4","10.200.91.82","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5909) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JM","","'+02:00","2026-03-08T15:04:52.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","e4640f3b-02f7-433c-86e1-e7b9af1aaf0f","2025-01-31T13:44:14.000+02:00","2026-04-22T07:38:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"156914176","209819757","vpgmoaprx1.sanef.groupe","","00:50:56:82:af:7a","192.168.40.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 d6 c5 11 14 04 ba-46 53 b6 a4 26 48 12 8d","No Asset Tag","'+02:00","2026-04-15T14:30:47.000+02:00","cybexppct","Cloud Agent","3eb07219-8801-441f-a52a-1f9809474f39","2023-01-26T16:54:00.000+02:00","2026-04-22T07:38:46.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,TAG-SRVEXPOSEINTERNET,COSWIN,Production,OS-LIN-SRV DYN,DSI,VRF_INCONNUE","132.0" +"365854817","347080448","PCB18641.sanef.groupe","PCB18641","38:CA:84:DB:E6:E6","10.5.31.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDP","","'+02:00","2026-03-29T09:24:47.000+02:00","SANEF\vitorino","Cloud Agent","7e13c9b0-7ced-4738-a726-d3b6aaba6fe8","2025-10-06T14:36:30.000+02:00","2026-04-22T07:38:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"298436585","319181980","vpameapmv1.sanef.groupe","","00:50:56:8f:7e:56, 00:50:56:8f:4f:57","172.16.255.34,10.44.201.3,10.44.201.6,10.44.201.8,10.44.201.9,10.44.201.10,10.44.201.7","fe80::fcd1:4596:6e71:68c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","11729","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 0f 39 3f f5 66 8a ad-79 e9 6a 0e 2e 03 a1 24","No Asset Tag","'+02:00","2025-11-06T11:55:44.000+02:00","cybreconcile","Cloud Agent","a6ed69dc-9ded-4025-b12a-bc53aa7e5f63","2025-02-07T10:24:08.000+02:00","2026-04-22T07:38:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,TAG-MIVISUPMV,TAG-SIC,OS-LIN-SRV DYN","140.0" +"128591651","191408406","ls-berck","LS-BERCK","00:50:56:90:94:C6","10.41.2.100","fe80::c30b:d83b:a2f2:78c9","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 73 55 65 f4 7d 13-f3 7b 46 e0 82 6e 71 56","NoAssetTag","'+02:00","2026-03-23T15:49:03.000+02:00","svpadmin","Cloud Agent","74fdb338-0d33-41ed-ad13-4d4de6391cee","2022-06-21T11:04:50.000+02:00","2026-04-22T07:38:19.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Péage,Production,High,Haute,Cloud Agent,SVP,VRF_PEAGE_DC,Windows Server,DEX,OS-WIN-SRV DYN","633.0" +"325678102","","PCB18611.sanef.groupe","PCB18611","38:CA:84:DB:E6:DA","10.5.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WD9","","'+02:00","2026-04-20T15:55:50.000+02:00","SANEF\sureau","Cloud Agent","86e22728-62d5-4548-9915-0284d10e39f6","2025-05-19T11:15:07.000+02:00","2026-04-22T07:38:07.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"129362026","191964561","vpflmanvr1","VPFLMANVR1","00:50:56:82:32:06","10.147.2.10","fe80::932:58:44c2:498a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 59 82 d3 c5 c0 44-74 d6 e0 c0 64 5d f3 bc","NoAssetTag","'+02:00","2026-03-19T16:26:31.000+02:00","Administrateur","Cloud Agent","2a05195c-c279-4644-8bbd-a2007316a984","2022-06-27T18:31:53.000+02:00","2026-04-22T07:38:04.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Exploitation,NVR,Production","508.0" +"334474020","336780138","vrdsiarad2.sanef-rec.fr","","00:50:56:9c:bf:c1","10.45.14.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 0d e2 97 96 64 9a-44 c6 d2 8d 1d 8c 7b c6","No Asset Tag","'+02:00","2026-04-21T10:44:57.000+02:00","cybadmroot","Cloud Agent","3f63d0e7-54c5-4227-a8b2-60721c718d13","2025-06-18T17:34:39.000+02:00","2026-04-22T11:09:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Radius,Recette,Cloud Agent,Linux Server,OS-LIN-SRV DYN","14.0" +"180394921","232823329","vrrauafrt2.sanef-rec.fr","","00:50:56:9c:c6:7d, 00:50:56:9c:aa:2f","10.45.5.38,10.45.9.236","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 23 17 6e 89 d4 65-93 ec 9d d5 6b 06 83 e1","No Asset Tag","'+02:00","2026-04-21T16:00:40.000+02:00","cybadmsys","Cloud Agent","525a37e9-3602-4d61-b803-11b1c97b105e","2023-07-28T12:38:15.000+02:00","2026-04-22T07:37:53.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,DSI,OS-LIN-SRV DYN,Cloud Agent,Linux Server","72.0" +"221418055","254288584","vposapquo1.sanef.groupe","","00:50:56:90:1f:e1","10.100.16.17","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 de 26 7d 05 8e 96-46 de 3a 71 de 50 c8 52","No Asset Tag","'+02:00","2026-02-26T12:08:15.000+02:00","cybadmsys","Cloud Agent","4b48a16f-2b2a-45bf-91f8-c4ef7cbdff20","2024-03-11T18:51:32.000+02:00","2026-04-22T07:37:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production","144.0" +"388897816","357220731","PCB24247.sanef.groupe","PCB24247","24:FB:E3:CD:06:4E","10.100.39.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M6X","","'+02:00","2026-03-29T09:27:37.000+02:00","Kan-samuel.KONAN@sanef.com","Cloud Agent","6402f25b-5572-459a-bf4d-ae3a36e68848","2026-01-07T14:28:51.000+02:00","2026-04-22T11:34:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","339.0" +"138992971","198162634","vpdecasas6","","00:50:56:82:37:c1","10.30.11.154","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2200","Intel(R) Xeon(R) CPU E5-4660 v4 @ 2.20GHz","257964","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 2b 40 e9 8a e9 d8-a0 1e a2 a8 2d ab 8e 0f","No Asset Tag","'+02:00","2026-03-25T11:28:20.000+02:00","cybreconcile","Cloud Agent","c3e072b4-8e43-4338-ab89-6f9896d3609a","2022-09-06T12:18:18.000+02:00","2026-04-22T07:37:25.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_INCONNUE,DSI,Cloud Agent,Linux Server,SAS,OS-LIN-SRV DYN,Production,Finances Comptabilité / Consolidation,Obsolete","71.0" +"361277472","345238443","PCB21597.sanef.groupe","PCB21597","D0:AD:08:A4:4D:A4","10.12.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K9","8CC34711K9","'+02:00","2026-03-29T09:12:33.000+02:00","SANEF\pcemtz","Cloud Agent","fb957375-c7d0-4548-b4b0-a3c36115a554","2025-09-19T15:22:21.000+02:00","2026-04-22T07:37:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"318844339","328215092","PCB22896.sanef.groupe","PCB22896","D0:AD:08:A3:7B:37","10.108.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX4","8CC3502YX4","'+02:00","2026-03-29T09:12:27.000+02:00","SANEF\raison","Cloud Agent","0f9ff99d-c4bf-4109-bca9-e34a74d3d5be","2025-04-23T17:15:26.000+02:00","2026-04-22T07:37:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"178053006","231157807","vptrabpxp1.sanef.groupe","VPTRABPXP1","00:50:56:82:05:CC","10.41.40.161","fe80::4cd3:28a8:a688:87de","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 55 b8 d9 35 0b 8d-7f 90 01 c6 d7 e9 c8 ca","NoAssetTag","'+02:00","2026-04-01T11:10:57.000+02:00","Administrateur","Cloud Agent","e258c757-f74e-4e48-b16c-ea6bbc12e29d","2023-07-11T18:05:50.000+02:00","2026-04-22T07:36:56.000+02:00","64-Bit","4","SCA,VM,PM,GAV","BDD-POS DYN,OS-WIN-SRV DYN,DEX,PX Prévia,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Windows Server","503.0" +"272327301","300954741","vvbotaapm1.sanef-rec.fr","","5a:09:23:e9:c6:41, 8e:39:85:ab:6d:31, 1a:8a:d0:4e:4a:43, 00:50:56:9c:18:ae, 02:0d:59:ac:68:df, 32:df:9a:a9:82:3a, ba:10:c1:f3:2b:de","10.45.6.137,10.89.0.1","fe80::5809:23ff:fee9:c641,fe80::8c39:85ff:feab:6d31,fe80::188a:d0ff:fe4e:4a43,fe80::250:56ff:fe9c:18ae,fe80::d:59ff:feac:68df,fe80::30df:9aff:fea9:823a,fe80::b810:c1ff:fef3:2bde","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 42 4c 71 97 de 6c-e5 40 df bf 2f 98 e3 a7","No Asset Tag","'+02:00","2026-03-12T12:55:50.000+02:00","kapschsysuser","Cloud Agent","8e02ac89-8937-4583-b501-5d54d7a7ff99","2024-10-15T12:09:12.000+02:00","2026-04-22T07:36:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Linux Server,Cloud Agent","140.0" +"176395364","229973827","vpdaibana1","VPDAIBANA1","00:50:56:90:75:F4","10.41.70.20","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 64 2e 5d 70 d7 a9-70 2b d6 5c 4e a3 bc 0d","NoAssetTag","'+02:00","2026-04-15T11:03:59.000+02:00","ecoad-ext","Cloud Agent","80b5a9e3-a70d-4edf-8e31-d543e27cb0b4","2023-06-29T11:07:46.000+02:00","2026-04-22T10:13:28.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-POS DYN,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,DAI","352.0" +"359757086","","PCB24333.sanef.groupe","PCB24333","10:B6:76:95:8B:8C","10.100.39.84","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZYD","","'+02:00","2026-03-30T13:05:48.000+02:00","SANEF\MEUNIER","Cloud Agent","bd81d707-28e6-46c5-ab46-46bf190e51d1","2025-09-15T12:17:07.000+02:00","2026-04-22T07:36:16.000+02:00","64-Bit","2","PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","0.0" +"129355670","191959635","vpchtanvr1","VPCHTANVR1","00:50:56:82:E1:0E","10.147.3.10","fe80::3e2d:c1cc:4318:9c9a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 32 b7 10 c3 ea 75-fb 18 f5 1e fd 91 d9 88","NoAssetTag","'+02:00","2026-03-18T13:46:25.000+02:00","Administrateur","Cloud Agent","b3ccf1d4-3732-442c-bc1e-70188f513e44","2022-06-27T17:52:59.000+02:00","2026-04-22T07:36:15.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR,Production","524.0" +"405477092","363237094","vmmgtca14c1.sanef-int.adds","VMMGTCA14C1","00:50:56:90:0D:F2","10.41.19.76","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 40 74 05 cd 61 46-4a 40 64 77 e1 04 20 58","NoAssetTag","'+02:00","2026-04-02T13:40:20.000+02:00","admin_gtc","Cloud Agent","1f886dfb-4c76-4d28-8e05-59b037cd040d","2026-03-02T17:47:33.000+02:00","2026-04-22T07:36:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","343.0" +"143622461","201024877","vpemvaadm1.sanef.groupe","","00:50:56:82:3f:ac","192.168.100.120","fe80::250:56ff:fe82:3fac","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 94 1a 2b 26 46 c5-68 17 52 2c 7d 31 2e c2","No Asset Tag","'+02:00","2026-03-19T12:55:29.000+02:00","reboot","Cloud Agent","73800d87-faef-4e19-88bf-f430624893f1","2022-10-11T17:24:07.000+02:00","2026-04-22T07:35:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Supervision/Admin,EMV,VRF_INCONNUE","106.0" +"129308617","191929156","vpaiiafsso2.sanef.groupe","VPAIIAFSSO2","00:50:56:82:49:26","10.30.11.3","fe80::e920:9adf:f368:6768","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 02 c5 9e af 09 ab fa-0b f4 bb 34 88 cc b5 4a","NoAssetTag","'+02:00","2026-02-23T12:21:45.000+02:00","VPAIIAFSSO2\CYBADMRES","Cloud Agent","e42cb779-af46-4118-948f-f3d389db2633","2022-06-27T10:54:27.000+02:00","2026-04-22T07:35:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Windows Server,DSI,Production,Sans,Sécurité IT,OS-WIN-SRV DYN,FSSO,VRF_INCONNUE","348.0" +"128591682","191408616","ls-bretonneux","LS-BRETONNEUX","00:50:56:90:AF:C6","10.41.2.49","fe80::ca55:acb5:4331:8534","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2793","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 e4 79 23 96 0e 94-67 1b e1 0b af 18 77 64","NoAssetTag","'+02:00","2026-03-23T16:31:04.000+02:00","svpadmin","Cloud Agent","83d96327-0d84-4a27-8c18-2e74713165f1","2022-06-21T11:07:37.000+02:00","2026-04-22T07:35:21.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Windows Server,VRF_PEAGE_DC,DEX,OS-WIN-SRV DYN,Production,High,Péage,SVP,Haute,Cloud Agent","633.0" +"202390516","245295390","vrameastg1.sanef-rec.fr","","00:50:56:9c:50:2f, 00:50:56:9c:a8:a5","10.45.4.10,10.45.2.10,10.45.2.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f6 73 b7 0a f4 df-55 19 7b 0c 02 1c 3d 05","No Asset Tag","'+02:00","2026-04-21T10:41:12.000+02:00","cybadmsys","Cloud Agent","17f4fe5e-9d61-4389-b6ac-7ee108a71fa9","2023-12-04T14:02:28.000+02:00","2026-04-22T07:35:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","SSTG,DEX,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","95.0" +"231858479","259509467","vrcybapsm2.recette.adds","VRCYBAPSM2","00:50:56:9C:EB:08","10.45.11.100","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c a6 b8 d8 4b 5b ee-98 e6 26 49 9e f2 45 cc","NoAssetTag","'+02:00","2026-04-16T11:56:10.000+02:00","RECETTE\BP01481","Cloud Agent","2be77bbc-1461-438f-8a95-1052d51b6811","2024-04-23T18:04:10.000+02:00","2026-04-22T11:17:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Recette","12.0" +"130357992","192671411","vpboeacst1.sanef.groupe","VPBOEACST1","00:50:56:82:DE:9B","10.41.21.10","fe80::17b:7958:c73e:bda5","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 78 96 b5 f0 60 de-d0 b7 f3 72 65 88 7a ce","NoAssetTag","'+02:00","2026-03-05T12:31:25.000+02:00","Administrateur","Cloud Agent","5816013d-5881-4ae8-8635-701564533a09","2022-07-05T17:26:39.000+02:00","2026-04-22T07:34:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,VRF_PEAGE_DC,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Péage","252.0" +"318403523","328039473","PCB23739.sanef.groupe","PCB23739","6C:0B:5E:EE:93:F6","10.199.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2T","","'+02:00","2026-04-02T08:31:21.000+02:00","SANEF\oudin","Cloud Agent","8c432cc3-bb1f-4bcc-a765-076829a08e37","2025-04-22T14:04:23.000+02:00","2026-04-22T07:34:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"334755653","","SVP18497.sanef-int.adds","SVP18497","D0:AD:08:A4:71:AA","10.92.7.29,10.11.2.21","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764JR","","'+02:00","2026-04-04T06:30:05.000+02:00","Superviseur","Cloud Agent","aaeca248-c95d-4bc5-87e6-6f6520e62921","2025-06-19T18:16:59.000+02:00","2026-04-22T07:34:43.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"374101557","350455501","vmdtrac15.recette.adds","VMDTRAC15","00:50:56:9C:D8:A9","10.45.17.17","fe80::e63b:bd73:6c2d:9ad5","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c ee 6c 44 3a 88 7f-72 3a 02 eb f1 00 cd b3","NoAssetTag","'+02:00","2026-04-16T02:05:43.000+02:00","supwindev","Cloud Agent","81c53f28-88d8-402f-bbd3-fa691893832c","2025-11-04T11:21:28.000+02:00","2026-04-22T11:14:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","336.0" +"231517264","259273208","ls-puttelange","LS-PUTTELANGE","00:50:56:90:A9:B5","10.41.2.113","fe80::b130:53f9:8bfe:f902","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 70 05 1c 21 87 29-06 da 67 44 05 ca 5f 4f","NoAssetTag","'+02:00","2026-03-02T15:49:14.000+02:00","svpadmin","Cloud Agent","d41eacc5-3a71-4ff8-9157-82d8c94268c0","2024-04-22T10:16:31.000+02:00","2026-04-22T07:34:20.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,VRF_PEAGE_DC,SVP,Production,Péage,High,OS-WIN-SRV DYN,Cloud Agent,Windows Server","681.0" +"354695010","342495683","vpechaetl2.sanef.groupe","","00:50:56:90:59:ff","10.42.16.142","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 cc 42 ba c4 dc a0-5d 1b 90 2d 9b ff 83 97","No Asset Tag","'+02:00","2026-02-12T16:12:14.000+02:00","cybsecope","Cloud Agent","90a09695-211c-4ae1-8779-9584eb44c3a1","2025-08-26T17:17:27.000+02:00","2026-04-22T07:34:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","145.0" +"387170879","356517261","vmdpeag04.recette.adds","VMDPEAG04","00:50:56:9C:38:61","10.45.17.198","fe80::ec86:b8ef:2bd2:bf72","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c f3 c9 10 8f 1d f4-09 61 c0 9c f4 e5 11 0d","NoAssetTag","'+02:00","2026-04-16T01:20:38.000+02:00","supwindev","Cloud Agent","3fdd8d99-5437-4a34-a556-58727d89ec1f","2025-12-31T16:38:08.000+02:00","2026-04-22T07:34:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"312232107","325471198","vrffbagsim1.recette.adds","VRFFBAGSIM1","00:50:56:9C:43:68","10.45.6.235,10.92.10.236,192.168.15.40,192.168.15.50,192.168.15.55,192.168.15.140,192.168.21.70,192.168.25.80,192.168.25.81,192.168.25.180,192.168.25.181,192.168.15.41,192.168.15.155,192.168.21.60","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c f7 4a 99 83 c5 dd-c4 92 86 a8 7c 45 09 d2","NoAssetTag","'+02:00","2026-03-03T15:14:42.000+02:00","Administrateur","Cloud Agent","809580ea-ccae-4f1a-b017-a836802aa8c4","2025-03-31T13:40:40.000+02:00","2026-04-22T07:33:58.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,OS-WIN-SRV DYN,Cloud Agent","507.0" +"176096530","229734616","vvboomocr2.sanef-rec.fr","","00:50:56:9c:08:ca","10.45.6.78","fe80::250:56ff:fe9c:8ca","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d1 8d 24 87 25 73-ff 38 59 35 ce 37 cc a8","No Asset Tag","'+02:00","2026-03-09T16:40:08.000+02:00","cybreconcile","Cloud Agent","79b897c6-80b0-4561-8dd4-4e84de31dafa","2023-06-27T15:28:32.000+02:00","2026-04-22T07:33:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,FreeFlow,Flux Libre,Cloud Agent,Linux Server","141.0" +"187892632","237684614","vpgtcawsus1","VPGTCAWSUS1","00:50:56:82:59:60","192.168.191.40","fe80::a7d0:92a1:ada:de90","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-56 4d 32 33 17 27 ff f9-24 c2 a0 39 c6 e5 39 52","NoAssetTag","'+02:00","2026-01-29T13:08:48.000+02:00","Administrator","Cloud Agent","d206778c-c5a3-44df-909c-f25c2f7f0718","2023-09-14T13:20:15.000+02:00","2026-04-22T07:33:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,WSUS,Cloud Agent,Windows Server,DSI","349.0" +"354301929","342322150","PCB22794.sanef.groupe","PCB22794","D0:AD:08:A7:28:4F","10.100.39.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YP7","8CC3502YP7","'+02:00","2026-03-28T18:05:18.000+02:00","SANEF\PSI","Cloud Agent","7c968fe5-1e92-4a2b-b8c5-1fd12497c925","2025-08-25T11:04:51.000+02:00","2026-04-22T07:33:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"149751255","205162785","vptraatai1.sanef.groupe","VPTRAATAI1","00:50:56:82:87:35","10.41.60.42","fe80::2177:52a7:2303:7a47","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 cd c0 b0 9c dc f6-0d d7 f2 e9 3c 83 24 af","NoAssetTag","'+02:00","2026-02-12T15:47:20.000+02:00","administrateur","Cloud Agent","8a857768-74e5-4f97-baa8-b9ed36a53fdc","2022-11-28T11:36:40.000+02:00","2026-04-22T07:33:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,VRF_BURO,Enregistrement_COM","255.0" +"323156256","329795663","PCB22920.sanef.groupe","PCB22920","D0:AD:08:A3:7B:D9","10.152.30.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVN","8CC3502YVN","'+02:00","2026-04-01T15:09:41.000+02:00","SANEF\fournett","Cloud Agent","55b50e07-d847-4d84-97b4-ac10385b8f5b","2025-05-09T09:53:18.000+02:00","2026-04-22T07:33:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"407114551","363934082","PCV18562.sanef-int.adds","PCV18562","30:13:8B:6C:5D:28","10.152.7.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473SY","","'+02:00","2026-03-11T17:28:31.000+02:00","Operateur","Cloud Agent","917e0e28-8518-475f-b817-9ff658d3f7d9","2026-03-09T12:20:44.000+02:00","2026-04-22T07:33:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"335451097","334613476","PCB24183.sanef.groupe","PCB24183","24:FB:E3:F3:F9:0C","10.103.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XK","","'+02:00","2026-04-21T17:07:44.000+02:00","SANEF\LELIEVRE","Cloud Agent","3b384d77-2f49-4d08-a00f-33f5a3a87d2d","2025-06-23T10:48:51.000+02:00","2026-04-22T07:33:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"300893075","320650141","PCB23613.sanef.groupe","PCB23613","C8:6E:08:88:E2:C1","10.103.31.3,10.255.2.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L46","","'+02:00","2026-04-15T11:05:19.000+02:00","SANEF\flecheux","Cloud Agent","64779fa9-8f3e-4b41-b3a4-c97320ea5b38","2025-02-18T13:05:26.000+02:00","2026-04-22T07:33:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"372396935","349704087","PCV21142.sanef-int.adds","PCV21142","D0:AD:08:A3:7B:5E","10.210.37.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YX0","","'+02:00","2026-01-27T10:11:48.000+02:00","Operateur","Cloud Agent","3934a107-a3ad-4d93-bae1-200381ba0e58","2025-10-28T11:59:30.000+02:00","2026-04-22T11:12:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"370937437","349122655","PCM16091.sanef.groupe","PCM16091","48:9E:BD:4B:90:AA","10.1.22.140,10.45.11.242,192.168.91.30","fe80::ddd4:b77a:d92e:7278","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.18.00","8CC129284R","8CC129284R","'+02:00","2025-12-01T13:01:57.000+02:00","alx","Cloud Agent","419885c7-1f09-405d-b415-44f9f04ba3b4","2025-10-23T00:06:24.000+02:00","2026-04-22T07:32:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"327829869","","PCB23707.sanef.groupe","PCB23707","C8:6E:08:88:E2:9E","10.255.3.132","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6S","","'+02:00","2026-04-13T10:43:23.000+02:00","SANEF\BATIFOI","Cloud Agent","8d648308-817b-4036-b30b-f462a11f555a","2025-05-28T16:16:29.000+02:00","2026-04-22T07:32:44.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"230348234","258581748","vradvaapp1.sanef-rec.fr","","00:50:56:9c:80:06","10.45.13.3","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 33 fc f3 60 48 45-df 57 6e 3a f8 87 cd 75","No Asset Tag","'+02:00","2026-02-18T18:45:29.000+02:00","cybastsys","Cloud Agent","64984566-669b-48c3-87e2-c7e5f39edfc2","2024-04-16T14:00:00.000+02:00","2026-04-22T07:32:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server","333.0" +"319334511","328397007","PCB22907.sanef.groupe","PCB22907","D0:AD:08:A3:7B:E8","10.139.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVH","8CC3502YVH","'+02:00","2026-04-16T12:43:08.000+02:00","SANEF\CHOQUET","Cloud Agent","a76cf955-577d-47d0-9988-72beb8d2c36b","2025-04-25T11:14:06.000+02:00","2026-04-22T07:32:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"360012474","","PCB24322.sanef.groupe","PCB24322","00:72:EE:1F:FE:7D","10.255.1.137","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YH3","","'+02:00","2026-04-13T17:19:56.000+02:00","SANEF\apert","Cloud Agent","2a642d06-a6aa-4165-9def-34bbf5f02667","2025-09-16T12:07:38.000+02:00","2026-04-22T07:32:20.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent,BDD-SQL DYN","0.0" +"364638303","346573674","PCV22887.sanef-int.adds","PCV22887","D0:AD:08:A3:E7:9A","10.117.2.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YMH","","'+02:00","2026-04-07T09:16:58.000+02:00","Operateur","Cloud Agent","d8a762d2-02c6-415d-8f67-8be180e63beb","2025-10-01T10:15:55.000+02:00","2026-04-22T07:32:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"194461477","241443119","vpgesapent1","","00:50:56:9c:a9:32","10.30.11.140","fe80::250:56ff:fe9c:a932","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","5966","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c cc 61 51 29 81 1d-78 62 8c 9d 51 6d 5b 1f","No Asset Tag","'+02:00","2024-03-19T16:59:37.000+02:00","cybreconcile","Cloud Agent","824c87ce-2488-41d8-a52c-5ba974fca43a","2023-10-20T16:41:13.000+02:00","2026-04-22T07:32:02.000+02:00","x86_64","3","SCA,VM,PM,GAV","Obsolete,log4j,Cloud Agent,Linux Server,DSI,ITOP","512.0" +"398236665","360588010","vpdsibetc2.sanef.groupe","","00:50:56:9c:a9:8e","10.44.5.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c a3 32 6a 14 8e 9d-05 55 08 bc 3b 8a cb 57","No Asset Tag","'+02:00","2026-02-11T18:47:33.000+02:00","cybadmbdd","Cloud Agent","34a9d613-cd50-4c89-8f85-f9d729b9676f","2026-02-06T12:51:47.000+02:00","2026-04-22T07:32:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server","141.0" +"384764086","355156890","vtpatbsip1.sanef-rec.fr","","00:50:56:9c:22:64","10.45.9.132","fe80::94dd:5e60:6164:3b39","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","39952","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 25 d7 b4 64 d1 99-19 7b 7a 20 80 9e 93 41","No Asset Tag","'+02:00","2026-04-14T15:51:51.000+02:00","cybsupapp","Cloud Agent","3af681c4-bc88-42f4-91b2-c23ad4b8a4c8","2025-12-18T12:21:10.000+02:00","2026-04-22T07:31:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN","56.0" +"287511377","311434391","SVP22863.sanef-int.adds","SVP22863","D0:AD:08:A3:E7:89","10.11.16.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMV","","'+02:00","2026-04-21T20:03:17.000+02:00","Superviseur","Cloud Agent","17b0f524-9a52-40d4-95ea-6416bd5cd879","2024-12-19T12:18:09.000+02:00","2026-04-22T07:31:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"339866385","","PCB17777.sanef.groupe","PCB17777","F0:20:FF:9A:A7:BD","10.255.4.140","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVZ","","'+02:00","2026-04-21T07:26:07.000+02:00","SANEF\ROSTOUCHER","Cloud Agent","e8f64f3a-3c91-4799-acd5-0526d8171f5f","2025-07-07T16:32:15.000+02:00","2026-04-22T07:30:57.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"365271809","346839773","PCV20973.sanef-int.adds","PCV20973","BC:0F:F3:87:6F:80","10.11.21.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LLG","","'+02:00","2025-12-02T12:34:38.000+02:00","Operateur","Cloud Agent","dc59934f-d25d-4b44-90a4-85dc6ece4581","2025-10-03T16:37:20.000+02:00","2026-04-22T07:30:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"175565773","229347361","vvbotrtms2.sanef-rec.fr","","00:50:56:9c:d9:16","10.45.6.165","fe80::250:56ff:fe9c:d916","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c9 88 2a 81 80 57-4d c5 2f 74 05 59 16 4c","No Asset Tag","'+02:00","2026-03-10T16:34:24.000+02:00","cybreconcile","Cloud Agent","16b42a31-3a64-4db8-ada9-536c1851e7be","2023-06-23T11:42:20.000+02:00","2026-04-22T07:30:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,flux_libre,Recette,FreeFlow","145.0" +"312515481","325568287","vrsvpacli1","VRSVPACLI1","00:50:56:9C:AB:23","10.45.9.162","fe80::18d7:300a:565e:51e7","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 1f 01 4c 01 d8 97-35 5b 47 c4 d7 c4 16 91","NoAssetTag","'+02:00","2026-02-16T16:42:09.000+02:00","gare","Cloud Agent","8e843197-2a8d-4884-a5a4-c6d07b60387d","2025-04-01T10:36:29.000+02:00","2026-04-22T07:30:36.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Cloud Agent,OS-WIN-SRV DYN","513.0" +"325664644","","PCB20730.sanef.groupe","PCB20730","58:1C:F8:EB:6A:27","192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224DQX","","'+02:00","2026-04-17T12:30:01.000+02:00","SANEF\vancaeyzeele","Cloud Agent","73d11843-beee-4509-b1e5-7e89bad07a48","2025-05-19T10:00:34.000+02:00","2026-04-22T07:30:27.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"240205944","279077695","lrinfbcos1.sanef.groupe","","3e:33:fb:a0:00:a8","10.45.9.196","fe80::3c33:fbff:fea0:a8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200L","/n/Bios Asset Tag :","'+02:00","2026-01-12T12:43:30.000+02:00","cybadmsys","Cloud Agent","d56a3b8a-da4c-4683-a2ba-075eb895ee72","2024-06-10T12:34:16.000+02:00","2026-04-22T07:30:21.000+02:00","x86_64","3","SCA,VM,PM,GAV","COSWIN,Linux Server,Cloud Agent,Recette,OS-LIN-SRV DYN","502.0" +"165493503","221784870","vrdsiaadm1.recette.adds","VRDSIAADM1","00:50:56:82:58:CD","10.45.7.67","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 d7 09 82 06 f4 d7-42 41 e9 b1 74 3c df 39","NoAssetTag","'+02:00","2026-04-20T14:10:22.000+02:00","RECETTE\a03987","Cloud Agent","df70b88f-e37c-4c94-bef4-2777ec76a3e9","2023-04-05T16:06:31.000+02:00","2026-04-22T07:30:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,AD,DSI,Recette","242.0" +"208776146","248746834","vibotarmq2.sanef.groupe","","00:50:56:90:db:03","10.41.23.142","fe80::250:56ff:fe90:db03","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 d8 4e fb 0b bf 0a-b1 ff 2b 2f 68 7b b8 74","No Asset Tag","'+02:00","2026-03-17T12:05:56.000+02:00","cybreconcile","Cloud Agent","02404df1-e3e6-4541-9dda-fddb0c86b4d7","2024-01-10T12:58:42.000+02:00","2026-04-22T07:30:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server","141.0" +"267466879","298462274","vpracaquo1.sanef.groupe","","00:50:56:90:7f:5b","10.100.16.18","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 2e 0b 0e 39 5e 0e-64 e3 3d 31 d2 d6 b5 b7","No Asset Tag","'+02:00","2026-04-13T09:50:32.000+02:00","cybreconcile","Cloud Agent","447db307-ccdc-4989-8c0c-e51b96f27990","2024-09-24T16:55:13.000+02:00","2026-04-22T07:29:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"238271425","269262511","vipeahbst3.sanef.groupe","","00:50:56:90:37:19","10.41.29.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 17 95 89 c2 84 ed-2c 8f 91 a2 95 54 83 8a","No Asset Tag","'+02:00","2026-03-19T15:49:49.000+02:00","cybexpapp","Cloud Agent","ddb444b2-d7ae-4fc7-a6a1-1674d9ed38cb","2024-05-21T14:55:10.000+02:00","2026-04-22T07:29:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow","141.0" +"322639832","329600246","PCB22771.sanef.groupe","PCB22771","D0:AD:08:A7:28:5A","10.106.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM0","","'+02:00","2026-04-15T10:05:13.000+02:00","SANEF\bourdona","Cloud Agent","764099f6-5f69-47f9-8ccb-415c3d80b7da","2025-05-07T15:36:20.000+02:00","2026-04-22T07:29:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"378020521","352291985","PCV21528.sanef-int.adds","PCV21528","D0:AD:08:A3:7B:3B","10.12.7.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YV3","","'+02:00","2026-03-03T06:18:17.000+02:00","Operateur","Cloud Agent","d8b5e321-bb9f-4024-aac5-84d07acfad73","2025-11-20T11:41:43.000+02:00","2026-04-22T07:29:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"321605977","329100429","PCB23597.sanef.groupe","PCB23597","6C:0B:5E:EE:B3:BA","10.100.39.112","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L89","","'+02:00","2026-04-01T15:11:26.000+02:00","SANEF\TIFFINEAU","Cloud Agent","ff865c2a-e21a-4c61-93df-d3a5699c4b9d","2025-05-02T16:00:35.000+02:00","2026-04-22T07:29:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"215165445","251699583","ls-bolbec","LS-BOLBEC","00:50:56:90:B4:13","10.41.2.84","fe80::b850:62d6:c6a2:708c","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 28 ff 24 25 20 8c-2a bf 84 a9 46 0f d5 7a","NoAssetTag","'+02:00","2026-02-19T16:16:19.000+02:00","svpadmin","Cloud Agent","7a50cb9d-9c08-4210-8c0b-e5c07e5b6d03","2024-02-12T11:10:13.000+02:00","2026-04-22T07:29:16.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,SVP,DEX,OS-WIN-SRV DYN,VRF_BACKUP_DC,High,VRF_PEAGE_DC,Péage,Production","508.0" +"149877032","205250032","vrintaels1.sanef.groupe","","00:50:56:82:02:34","10.45.1.197","fe80::250:56ff:fe82:234","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 ac 73 da 72 85 c5-c8 e3 d2 3c 4b 23 61 01","No Asset Tag","'+02:00","2026-02-23T13:28:31.000+02:00","cybadmsys","Cloud Agent","f2b5da61-0e90-43e5-b315-8d3c3ee6bdf6","2022-11-29T10:44:36.000+02:00","2026-04-22T07:29:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,OS-LIN-SRV DYN,BDD-ELA DYN,Gestion institutionnel","141.0" +"129310163","191929397","ls-thillois","LS-THILLOIS","00:50:56:90:8C:B2","10.82.16.20","fe80::39fd:703d:3461:8879","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 68 ef dd d7 04 8a-00 cf c3 b5 55 ff ad 12","NoAssetTag","'+02:00","2026-02-17T12:35:00.000+02:00","svpadmin","Cloud Agent","2258c7ac-8b20-48c3-9873-741a85e02339","2022-06-27T11:01:13.000+02:00","2026-04-22T07:29:07.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DEX,SVP,VRF_INCONNUE,High,Production,Péage,Haute,Cloud Agent,Windows Server,OS-WIN-SRV DYN","634.0" +"372472457","349736472","MTO22784.sanef.groupe","MTO22784","D0:AD:08:A3:E7:9F","10.105.30.16","fe80::b5c5:4e17:2093:47b8","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5039) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMB","","'+02:00","2025-10-28T17:16:33.000+02:00","SANEF\meteonewsW11","Cloud Agent","1696ac0b-98af-4e24-be85-7fff8e8c2481","2025-10-28T17:17:51.000+02:00","2026-04-22T07:29:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"378961878","352684752","PSX18686.sanef-int.adds","PSX18686","30:13:8B:6C:5C:46","10.200.40.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473VS","","'+02:00","2026-04-22T05:00:39.000+02:00","UserSextan","Cloud Agent","7d7082ab-9f88-4d32-9838-ce186de0eadd","2025-11-24T18:14:17.000+02:00","2026-04-22T11:04:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"158184886","210914051","vppintaprx1.sanef.groupe","","00:50:56:82:66:76","192.168.20.19","fe80::250:56ff:fe82:6676","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 98 5e 01 55 5c ea-d6 a7 9f f8 28 64 bc a9","No Asset Tag","'+02:00","2026-04-14T14:21:02.000+02:00","cybreconcile","Cloud Agent","7ddfba67-cd2f-4aad-85b8-b9b1d639cab3","2023-02-06T11:51:10.000+02:00","2026-04-22T07:28:31.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,TAG-SRVEXPOSEINTERNET,Gestion institutionnel,OS-LIN-SRV DYN,Cloud Agent,Linux Server","132.0" +"269374554","299251942","vpa14agtc1","VPA14AGTC1","00:50:56:90:6A:E9","10.41.19.70","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 15 e1 c8 00 32 86-50 45 f2 f8 ae 27 73 9c","NoAssetTag","'+02:00","2026-03-31T12:27:56.000+02:00","admin_gtc","Cloud Agent","9a47fa77-6baf-416a-8ce5-56ef15658077","2024-10-01T15:38:08.000+02:00","2026-04-22T10:50:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,OS-WIN-SRV DYN","331.0" +"131405805","193425044","vsapbdd1.sanef.groupe","","00:50:56:82:58:5A","10.30.10.139","fe80::250:56ff:fe82:585a","Linux / Server","The CentOS Project CentOS 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7873","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ef 1d 10 5c 70 1c-1a e3 77 a7 40 8d 08 a2","No Asset Tag","'+02:00","2023-01-12T08:06:16.000+02:00","cybreconcile","Cloud Agent","26e354e7-4929-4e5b-9b75-9e6636cd71cd","2022-07-13T10:39:43.000+02:00","2026-04-22T07:28:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,Cloud Agent,Linux Server,log4j,BDD-POS DYN,SAP,Production,Finances Comptabilité / Consolidation,DFIN","351.0" +"373790985","350330226","PSX18693.sanef-int.adds","PSX18693","30:13:8B:6C:5E:5F","10.12.40.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473WK","","'+02:00","2026-02-11T18:07:53.000+02:00","UserSextan","Cloud Agent","03240c45-f5db-492b-9c46-10b29f1a0053","2025-11-03T12:09:26.000+02:00","2026-04-22T07:28:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"374742401","350752872","DAI22853.sanef-int.adds","DAI22853","D0:AD:08:A6:12:AA","10.100.70.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YKJ","","'+02:00","2026-03-21T10:54:52.000+02:00","DAIUSER","Cloud Agent","83b31c23-adf9-4fe0-bd68-c19679b4688c","2025-11-06T18:23:31.000+02:00","2026-04-22T07:27:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"387139379","356492636","vmdtrac07.recette.adds","VMDTRAC07","00:50:56:9C:05:DE","10.45.17.9","fe80::ab5f:a8c7:43dc:f929","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 1e 19 c9 67 10 38-e7 83 e5 86 04 45 a6 08","NoAssetTag","'+02:00","2026-04-15T21:35:49.000+02:00","supwindev","Cloud Agent","ef80d23e-f043-4492-8a06-a2a6e2631322","2025-12-31T10:52:14.000+02:00","2026-04-22T11:00:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"165638728","222003813","vrvidavsc1.recette.adds","VRVIDAVSC1","00:50:56:9C:B5:1C, 02:00:4C:4F:4F:50","10.45.7.99,169.254.212.214","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 1b c0 2a 53 e1 2d-af 82 43 f5 4e 0d fe 31","NoAssetTag","'+02:00","2026-03-03T15:14:41.000+02:00","mbaad-ext","Cloud Agent","9610046a-4875-42d0-9d67-d18d38f07c14","2023-04-06T15:55:50.000+02:00","2026-04-22T07:27:20.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Recette,Cloud Agent,Windows Server,NVR","517.0" +"399593705","361202953","MacBook-Pro.local","MAC16448","72:60:b4:3b:99:97","10.255.6.16,192.168.1.22","2a01:cb04:5eb:c000:140c:62ba:a18:34ab,2a01:cb04:5eb:c000:a5e6:a56c:318e:7795,fe80::4d4:68eb:5c6e:717d","Mac / Client","Apple macOS Tahoe (26.3.1)","26.3","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFGH6XFQ05N","","'+02:00","2026-03-30T10:21:15.000+02:00","joran.rio","Cloud Agent","b0ef5ce6-7598-4a69-8f83-c8e550ee77c0","2026-02-12T12:11:49.000+02:00","2026-04-22T10:55:00.000+02:00","arm64_M1","2","SCA,VM,PM,GAV","Cloud Agent","65.0" +"285107069","330493408","ls-spare-alb","LS-SPARE-ALB","00:50:56:90:60:79","10.252.12.254","fe80::99b:e5e1:bed7:99a8","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 10 9a 57 6d e8 a7 e4-c1 76 8e 1f 7d 7d 12 6c","NoAssetTag","'+02:00","2026-03-05T12:03:15.000+02:00","gare","Cloud Agent","55839c99-e9ec-4e68-859a-6543eff537e4","2024-12-09T10:29:03.000+02:00","2026-04-22T07:27:09.000+02:00","64-Bit","4","SCA,VM,GAV","OS-WIN-SRV DYN,SVP,Cloud Agent,Péage","680.0" +"331201436","","PCB17769.sanef.groupe","PCB17769","F0:20:FF:9A:A7:B8","10.255.3.140","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HV9","","'+02:00","2026-04-21T07:35:22.000+02:00","SANEF\DERCOURT","Cloud Agent","1058e400-a109-48c6-9558-ec0eeb4273e3","2025-06-05T16:49:13.000+02:00","2026-04-22T07:27:08.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"324122852","","PCB23556.sanef.groupe","PCB23556","6C:0B:5E:EC:DD:06","10.4.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8L","","'+02:00","2026-04-21T07:24:24.000+02:00","SANEF\pigeond","Cloud Agent","fd165c86-6be8-49a3-838d-953e6e6fbcaf","2025-05-12T15:56:10.000+02:00","2026-04-22T07:27:04.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"200577338","244425330","vptrabkme1.sanef.groupe","","00:50:56:90:b4:65","10.41.40.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 67 97 da 01 0d b9-6f df 41 7d 19 bc 76 d8","No Asset Tag","'+02:00","2026-04-14T11:33:55.000+02:00","cybreconcile","Cloud Agent","b559369d-392d-45c1-a640-f40c99f06c85","2023-11-23T17:01:49.000+02:00","2026-04-22T07:27:00.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,OS-LIN-SRV DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,KMELC","130.0" +"363308117","346060935","PCV18550.sanef-int.adds","PCV18550","30:13:8B:6C:5A:D3","10.100.7.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473SW","","'+02:00","2026-04-21T21:00:06.000+02:00","Operateur","Cloud Agent","89d67c8b-da1d-4d90-b901-ea52553ffd15","2025-09-26T17:12:43.000+02:00","2026-04-22T07:26:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"378044222","352302026","PCV20826.sanef-int.adds","PCV20826","30:13:8B:6C:5B:ED","10.209.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q8B","","'+02:00","2026-04-17T08:54:18.000+02:00","Operateur","Cloud Agent","10e02fae-53be-445e-a350-2d8ed435b572","2025-11-20T12:48:53.000+02:00","2026-04-22T07:26:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"248475907","288177042","MTO21605.sanef.groupe","MTO21605","D0:AD:08:A4:4D:A3","10.11.31.12","fe80::ca7d:bf6:b9c6:8496","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711KB","","'+02:00","2026-03-09T13:24:13.000+02:00","SANEF\meteonewsW11","Cloud Agent","8d0c81a1-75dc-486c-aba4-96e9e2eae04a","2024-07-04T12:55:55.000+02:00","2026-04-22T07:26:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"320281394","328634519","PCB23532.sanef.groupe","PCB23532","6C:0B:5E:EE:A3:A5","10.2.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9N","","'+02:00","2026-03-30T10:56:33.000+02:00","SANEF\colmart","Cloud Agent","350ede1e-5dbd-48aa-abee-533a2b203fbf","2025-04-28T15:51:22.000+02:00","2026-04-22T07:26:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"130356819","192670935","vppeaaref2","VPPEAAREF2","00:50:56:82:90:92","10.41.2.231","fe80::9549:8413:d671:f787","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2594","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","10240","Phoenix Technologies LTD 6.00","VMware-42 02 18 0f 40 6b 38 43-7b d3 e2 68 bf 08 ec 0f","NoAssetTag","'+02:00","2026-02-25T14:10:46.000+02:00","Administrateur","Cloud Agent","59f4b6eb-e150-431b-a6fa-ce86a5aaf68a","2022-07-05T17:18:45.000+02:00","2026-04-22T07:26:38.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,Haute,SVP,OS-WIN-SRV DYN,Production,Péage,High,DEX,Cloud Agent,Windows Server","643.0" +"129315730","191933900","ls-vatry","LS-VATRY","00:50:56:90:13:C0","10.41.2.108","fe80::4987:2689:abc0:a8b3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 cb 07 5f 4d de 78-41 6b cf 29 50 14 88 eb","NoAssetTag","'+02:00","2026-03-04T12:54:05.000+02:00","svpadmin","Cloud Agent","5f991324-7137-45c0-8c94-3c3178429ba2","2022-06-27T11:59:26.000+02:00","2026-04-22T07:26:37.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_PEAGE_DC,Haute,DEX,Production,High,Péage,Cloud Agent,Windows Server,SVP","635.0" +"231515226","259271625","ls-aumale-ouest","LS-AUMALE-OUEST","00:50:56:90:37:B0","10.41.2.104","fe80::dc61:4096:ee8f:58e4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 93 a0 1e 45 00 bf-ca 70 25 42 07 f5 57 5c","NoAssetTag","'+02:00","2026-03-23T12:41:25.000+02:00","svpadmin","Cloud Agent","0ed90b85-b8ba-4a4a-a5d4-a32543ff1364","2024-04-22T09:56:31.000+02:00","2026-04-22T07:26:32.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,High,SVP,VRF_PEAGE_DC,Production,Péage","680.0" +"277325037","303830585","VRAPTCPSH1","VRAPTCPSH1","00:50:56:9C:BB:A0","10.45.13.99","fe80::6dbf:352e:e0cd:de75","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6936) 64-Bit","23H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 21 6e 5a f3 ea 28-77 d7 c0 dd 50 cc c6 d0","NoAssetTag","'+02:00","2026-04-15T04:38:24.000+02:00","Supwin","Cloud Agent","4bfd823e-655f-472d-87ef-08e137b8d9cf","2024-11-07T18:21:14.000+02:00","2026-04-22T07:26:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,Recette","250.0" +"318434431","328050558","PCB23760.sanef.groupe","PCB23760","6C:0B:5E:EE:B3:CD","10.100.39.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H50","","'+02:00","2026-04-08T17:04:12.000+02:00","SANEF\DUQUEYROIX","Cloud Agent","2f808f9e-3073-400a-a775-a86b74a3b84c","2025-04-22T15:42:54.000+02:00","2026-04-22T07:26:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"202807661","245521799","viosapast1.sanef.groupe","","00:50:56:90:37:69","10.41.8.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 77 e5 7d 99 99 79-cd 16 76 8d 84 16 ad 81","No Asset Tag","'+02:00","2026-02-19T11:14:13.000+02:00","cybreconcile","Cloud Agent","65f9b2dc-066e-4f1e-8b79-db849af7b5da","2023-12-06T13:29:33.000+02:00","2026-04-22T07:26:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,DEX,OS-LIN-SRV DYN","142.0" +"363863295","346360786","PCV18547.sanef-int.adds","PCV18547","30:13:8B:6C:57:CC","10.152.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473SS","","'+02:00","2026-04-07T16:45:24.000+02:00","Operateur","Cloud Agent","717d1732-70f0-41de-8e19-a81ba306a8e4","2025-09-29T12:20:19.000+02:00","2026-04-22T10:45:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"309388699","324179537","vrpeaakib1.sanef-rec.fr","","00:50:56:9c:d4:ef","10.45.10.105","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c aa d6 07 4c a1 bf-da 60 2e f3 68 89 02 99","No Asset Tag","'+02:00","2026-02-18T18:42:03.000+02:00","cybsecope","Cloud Agent","8c5eb5e7-c486-41a3-8d42-17501ebb7b76","2025-03-19T17:46:47.000+02:00","2026-04-22T07:26:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,Linux Server,Cloud Agent,BDD,Recette","54.0" +"358632755","344169448","VMMCAGC1.sanef-int.adds","VMMCAGC1","00:50:56:90:6D:9D","10.41.50.250","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 b4 a8 80 84 6d cb-64 81 06 b4 00 e2 a6 32","NoAssetTag","'+02:00","2026-04-16T16:41:26.000+02:00","UserPCT","Cloud Agent","1b0f894a-2660-4743-96f3-558831572c19","2025-09-10T15:34:41.000+02:00","2026-04-22T07:26:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","343.0" +"407115941","363935816","PCV18548.sanef-int.adds","PCV18548","30:13:8B:6C:5D:04","10.152.7.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","32473","HP U50 Ver. 03.03.11","CZC44473T8","","'+02:00","2026-03-11T17:16:59.000+02:00","Operateur","Cloud Agent","76c1ae99-68ac-4645-8f98-931ff326652e","2026-03-09T12:40:08.000+02:00","2026-04-22T07:26:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"210209133","249476700","vposapmet1.sanef-int.adds","VPOSAPMET1","00:50:56:90:98:E2","10.44.6.38","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 e7 fb 21 58 cb 44-5d 31 13 94 26 26 bc a2","NoAssetTag","'+02:00","2026-02-26T15:02:25.000+02:00","SANEF-INT\b03987","Cloud Agent","b5bcef10-350a-44fa-841a-23a6e7f35520","2024-01-17T19:15:34.000+02:00","2026-04-22T07:25:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Production,Péage,OS-WIN-SRV DYN,DEX","254.0" +"129362125","191963823","vpsroanvr1","VPSROANVR1","00:50:56:82:E5:63","10.217.26.11","fe80::cf26:fa68:10f1:df73","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 4b eb 6d 6f 94 3b-ed 56 6a 8e 63 69 40 15","NoAssetTag","'+02:00","2026-02-05T15:55:09.000+02:00","Administrateur","Cloud Agent","6769ad19-cd4b-4d87-83b2-0b25926fd50e","2022-06-27T18:19:34.000+02:00","2026-04-22T11:36:56.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Production,Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_INCONNUE,NVR,Exploitation,DEX","508.0" +"130588224","192836201","vmamrpmv2","","00:50:56:82:25:CC, 00:50:56:82:39:36, 00:50:56:82:6C:80","10.30.16.73,10.30.16.81,10.30.16.82,10.30.16.84,10.30.16.86,10.30.16.88,10.32.16.88,10.32.16.73,10.32.16.82,10.32.16.84,10.32.16.81,10.32.16.86,10.33.16.81","fe80::250:56ff:fe82:25cc,fe80::250:56ff:fe82:3936,fe80::250:56ff:fe82:6c80","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 95 cf d8 6c 28 75-6d 67 f9 88 4b f2 99 cd","No Asset Tag","'+02:00","2025-10-09T11:39:24.000+02:00","cybexpapp","Cloud Agent","5f97bdcf-1f2b-4de0-96e9-1686ef15f760","2022-07-07T12:02:38.000+02:00","2026-04-22T07:25:37.000+02:00","x86_64","5","SCA,VM,PM,GAV","Sans,Trafic,Recette,MIVISU,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,log4j,DEX","873.0" +"213849807","251125825","sppeaanvr29","SPPEAANVR29","D4:F5:EF:A6:63:71","10.41.7.128","fe80::3b11:3dfc:1d11:2f44","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ23300BQ7","","'+02:00","2026-02-09T15:18:11.000+02:00","Administrateur","Cloud Agent","4e6df851-b620-468e-8be2-178051e5142e","2024-02-05T19:42:23.000+02:00","2026-04-22T07:25:32.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,NVR,DEX,Cloud Agent,Windows Server","508.0" +"213849768","251125117","sppeaanvr13","SPPEAANVR13","D4:F5:EF:50:7C:89","10.41.7.112","fe80::a02c:9be5:c29:9380","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DV5","","'+02:00","2026-02-03T15:07:57.000+02:00","Administrateur","Cloud Agent","e0f99a6a-bbfa-4c2d-9569-465d4e097e41","2024-02-05T19:32:12.000+02:00","2026-04-22T07:24:55.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX","523.0" +"260022315","294877281","vrdsiasat1.sanef-rec.fr","","00:50:56:9c:29:f3","10.45.0.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6f fc bc db ff 4e-c4 f6 11 d8 0f be 9a 51","No Asset Tag","'+02:00","2026-04-14T09:45:50.000+02:00","cybsecope","Cloud Agent","26212425-1c91-4064-9586-dc5c7d9037dd","2024-08-21T12:54:30.000+02:00","2026-04-22T07:24:50.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,BDD-POS DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Recette,Satellite","66.0" +"411599357","365717201","PCB25898.sanef.groupe","PCB25898","4C:CF:7C:0A:4C:8B","10.189.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342228","","'+02:00","2026-04-21T11:25:55.000+02:00","SANEF\PEUDEVIN","Cloud Agent","a08b74f6-4e94-41b1-aea2-915d944fb59e","2026-03-26T10:39:52.000+02:00","2026-04-22T07:24:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"257780648","294877284","vpsupapol4.sanef.groupe","","00:50:56:8d:c4:62","10.44.5.106","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 35 87 6d 7e 97 ca-a1 9c fd b1 fa ab cf 04","No Asset Tag","'+02:00","2026-03-30T11:14:42.000+02:00","cybsecope","Cloud Agent","4fda7178-6910-4c69-a02a-546b182516c0","2024-08-12T13:41:18.000+02:00","2026-04-22T07:24:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,BDD-ELA DYN,MID-NGINX DYN,Linux Server,Cloud Agent,Production,Centreon","133.0" +"175949562","229618439","vvbocs4as1.sanef-rec.fr","","00:50:56:9c:59:aa","10.45.6.6","fe80::250:56ff:fe9c:59aa","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5b 05 6c b5 23 31-e1 35 15 fc 6f 74 67 90","No Asset Tag","'+02:00","2026-03-26T20:15:05.000+02:00","cybsupsys","Cloud Agent","4b7af28e-0cdc-4b98-998b-afc9b523b3c4","2023-06-26T16:43:00.000+02:00","2026-04-22T07:24:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Flux Libre,Cloud Agent,Linux Server,FreeFlow","144.0" +"332255291","","PCB21302.sanef.groupe","PCB21302","30:F6:EF:A5:EB:32","192.168.1.41,169.254.223.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKC","","'+02:00","2026-04-21T08:18:28.000+02:00","SANEF\meras","Cloud Agent","67ee57f0-3c71-4af9-b8c6-c6af81ad27c8","2025-06-10T11:27:22.000+02:00","2026-04-22T07:24:23.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"290939628","313724568","SVP22782.sanef-int.adds","SVP22782","D0:AD:08:A3:7D:C0","10.100.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKT","","'+02:00","2026-03-26T14:36:14.000+02:00","Superviseur","Cloud Agent","884c61e0-1c98-47f8-92b8-7e2b53ea36c1","2025-01-08T15:10:29.000+02:00","2026-04-22T07:24:22.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Workstation,Cloud Agent,Forescout","686.0" +"139158084","198270618","vmampstg2","","00:50:56:82:6D:2C, 00:50:56:82:5F:2A, 00:50:56:82:46:99","10.41.40.46,10.41.40.47,10.43.40.46,10.43.40.47,10.43.4.46","fe80::250:56ff:fe82:6d2c,fe80::250:56ff:fe82:5f2a,fe80::250:56ff:fe82:4699","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 6a 8e b4 34 55 f7-0d 01 14 05 58 f5 27 f0","No Asset Tag","'+02:00","2024-02-14T14:45:23.000+02:00","cybreconcile","Cloud Agent","b0547fe7-2fee-4906-ac22-bf8a3dea7380","2022-09-07T14:33:00.000+02:00","2026-04-22T07:24:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,Trafic,SSTG,Obsolete,OS-LIN-SRV DYN,VRF_TRAFIC_DC,DEX,log4j,Cloud Agent,Linux Server","698.0" +"372999308","349974669","vpodabquo1.sanef.groupe","","00:50:56:90:34:d2","10.100.16.22","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 7a 50 2e b0 ce 3a-28 d8 2c 9a 76 6f 8c ea","No Asset Tag","'+02:00","2026-02-10T12:39:18.000+02:00","cybreconcile","Cloud Agent","b92550fa-6274-4296-a17f-b5273fc0ccd6","2025-10-30T15:47:38.000+02:00","2026-04-22T07:23:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","ORACLE,Production,BDD,Cloud Agent,OS-LIN-SRV DYN,Linux Server","145.0" +"210605077","249678661","lremvaste3","","00:17:a4:77:1c:34, 00:17:a4:77:1c:30","192.168.107.115,192.168.108.115","fe80::217:a4ff:fe77:1c34,fe80::217:a4ff:fe77:1c30","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000706","","'+02:00","2025-06-04T14:18:19.000+02:00","lamhajeb-ext","Cloud Agent","fa60436c-e5fc-4f21-a2fd-62a5517dd638","2024-01-19T12:08:18.000+02:00","2026-04-22T07:23:50.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard V17 Recette,Cloud Agent,Linux Server,EMV","700.0" +"173085471","227658931","vvboojump1.recette.adds","VVBOOJUMP1","00:50:56:9C:44:37","10.45.8.35","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 1b 93 5c 77 49 67-55 ca e4 0f 49 9e 9b b8","NoAssetTag","'+02:00","2026-03-09T10:13:18.000+02:00","Administrateur","Cloud Agent","ccb453e0-8b20-451f-a3ef-83a203d1aadb","2023-06-05T16:29:34.000+02:00","2026-04-22T09:56:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Recette,flux_libre","251.0" +"185590289","236237662","sppeaanvr28","SPPEAANVR28","D4:F5:EF:A6:AA:8C","10.41.7.127","fe80::c7ea:a30d:91bc:ea9","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ23300BQB","","'+02:00","2026-02-09T12:14:54.000+02:00","Administrateur","Cloud Agent","722b778b-6a50-4071-af9f-1ed758a49675","2023-09-01T10:05:09.000+02:00","2026-04-22T07:22:44.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,NVR","508.0" +"241563930","276525121","vpvsaagez2","","00:50:56:9c:d2:03","192.168.18.76","fe80::250:56ff:fe9c:d203","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 52 a6 ca a7 7e 22-68 94 4a bb 72 29 6a 07","No Asset Tag","'+02:00","2026-02-04T16:51:01.000+02:00","tbaad","Cloud Agent","d9b33b8b-9cb1-4890-ba92-6b7cf1449d49","2024-06-04T14:05:02.000+02:00","2026-04-22T07:22:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"236301380","264488385","lpemvaste3","","00:17:a4:77:1c:58, 00:17:a4:77:1c:54","192.168.102.103,192.168.101.103","fe80::217:a4ff:fe77:1c58,fe80::217:a4ff:fe77:1c54","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070B","","'+02:00","2025-06-30T11:12:08.000+02:00","root","Cloud Agent","216dadc9-61a9-4156-a307-9de372a484c9","2024-05-13T14:57:35.000+02:00","2026-04-22T07:22:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,PCI Bunker EMV,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17","683.0" +"128519806","191357702","ls-beauvais-centre","LS-BEAUVAIS-CEN","00:50:56:90:4B:B7","10.41.2.90","fe80::e59a:63c8:5689:f144","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 07 60 af de 72 d1-98 63 3a 99 6a 4c d5 16","NoAssetTag","'+02:00","2026-03-23T15:06:55.000+02:00","svpadmin","Cloud Agent","c001cbd6-7e8b-4441-8745-e72a6de386db","2022-06-20T18:05:32.000+02:00","2026-04-22T07:22:33.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Windows Server,Cloud Agent,OS-WIN-SRV DYN,DEX,Production,Péage,High,SVP","507.0" +"205550121","246935753","vpbooarep1.sanef.groupe","","00:50:56:90:7a:a8","192.168.21.3","fe80::250:56ff:fe90:7aa8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 3c d9 75 25 1e 2f-79 7f 10 53 d4 a9 62 4f","No Asset Tag","'+02:00","2026-04-07T09:45:52.000+02:00","cybreconcile","Cloud Agent","f2176662-a3cf-4a99-b94e-4792f9ca9b65","2023-12-21T14:00:12.000+02:00","2026-04-22T07:22:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,FreeFlow,Cloud Agent,Linux Server","141.0" +"311383420","330450808","vpsicamic1.sanef-int.adds","VPSICAMIC1","00:50:56:8F:67:78","10.44.201.35","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 0f 15 79 a0 66 3a c2-4b d0 5a f2 9a ff 3f e5","NoAssetTag","'+02:00","2026-04-15T10:41:03.000+02:00","SANEF-INT\b03987","Cloud Agent","a1838a25-88da-43f8-812a-2dcbbb128716","2025-03-27T12:34:50.000+02:00","2026-04-22T07:22:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Production,OS-WIN-SRV DYN,TAG-SIC,TAG-CAPIV","328.0" +"159569521","212140185","vpintaweb3.sanef.groupe","","02:42:21:84:a9:e1, 00:50:56:82:a2:58","172.17.0.1,192.168.20.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 43 4e ac 36 c5 0b-a0 45 79 e7 07 64 75 d2","No Asset Tag","'+02:00","2026-04-15T14:58:12.000+02:00","cybreconcile","Cloud Agent","6f0930eb-1188-470b-8b59-430309194b43","2023-02-16T14:57:57.000+02:00","2026-04-22T07:22:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,Gestion institutionnel","130.0" +"129310553","191930214","ls-vallee-de-l-aube","LS-VALLEE-DE-L-","00:50:56:90:07:BD","10.41.2.67","fe80::727a:280d:1b65:a849","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c8 ff fa 2a 8f 5e-42 c0 48 d9 f6 ce 0c 08","NoAssetTag","'+02:00","2026-03-04T12:03:59.000+02:00","svpadmin","Cloud Agent","23cb1bd3-3c1e-4856-a8c9-ea1f72e672ef","2022-06-27T11:13:22.000+02:00","2026-04-22T07:22:07.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_PEAGE_DC,DEX,Cloud Agent,Windows Server,SVP,High,Production,Péage,OS-WIN-SRV DYN","507.0" +"339878420","","PCB21277.sanef.groupe","PCB21277","64:4E:D7:49:3A:1D","10.119.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3440GKP","","'+02:00","2026-04-14T13:00:49.000+02:00","SANEF\matt","Cloud Agent","63c9d480-d0fa-4676-9278-2c7f11719663","2025-07-07T16:55:37.000+02:00","2026-04-22T07:21:52.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"325166878","330553451","SVP21267.sanef-int.adds","SVP21267","D0:AD:08:1F:7E:DB","10.82.17.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3451GTY","","'+02:00","2026-04-21T18:25:53.000+02:00","Superviseur","Cloud Agent","57093a98-2a60-4b1c-bb99-e17e40f367db","2025-05-16T08:28:50.000+02:00","2026-04-22T07:21:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320058233","328600552","PCB24030.sanef.groupe","PCB24030","6C:0B:5E:F8:18:A7","10.2.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDV","","'+02:00","2026-03-29T09:26:48.000+02:00","SANEF\verlool","Cloud Agent","c91e0d7b-016a-4223-b075-50a72e3d5d70","2025-04-28T10:22:49.000+02:00","2026-04-22T07:21:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"130587915","192835846","lamarrac4.sanef.groupe","","00:17:A4:77:0C:8C, 00:17:A4:77:0C:84, 00:17:A4:77:0C:80, 00:17:A4:77:0C:88","10.45.3.103,10.45.5.5,169.254.24.161,10.45.2.106,10.45.2.107,10.45.5.21","fe80::217:a4ff:fe77:c8c,fe80::217:a4ff:fe77:c84,fe80::217:a4ff:fe77:c80,fe80::217:a4ff:fe77:c88","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ32903SK","","'+02:00","2026-02-25T16:01:13.000+02:00","cybsupsys","Cloud Agent","62edf48e-b2d4-4d90-80e9-1eaacdde2ce1","2022-07-07T11:57:26.000+02:00","2026-04-22T07:21:36.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,DEX,Sextan,Linux Server,Cloud Agent,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Sans,Recette,Trafic","693.0" +"231613066","259382222","vvbotatvv1.sanef-rec.fr","","36:b3:50:af:a2:f7, 00:50:56:9c:11:6d, b6:98:6a:57:7a:d1","10.89.0.1,192.168.21.169","fe80::34b3:50ff:feaf:a2f7,fe80::250:56ff:fe9c:116d,fe80::b498:6aff:fe57:7ad1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c e4 3e 1f e7 e6 66-f4 e4 b9 53 06 1e 77 c5","No Asset Tag","'+02:00","2026-03-12T15:42:20.000+02:00","cybreconcile","Cloud Agent","7ba4ea28-e9be-43d3-976a-a169627d11ff","2024-04-22T17:38:56.000+02:00","2026-04-22T07:21:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,FreeFlow,flux_libre","141.0" +"246316015","287010013","MTO22261.sanef.groupe","MTO22261","D0:AD:08:A7:27:D3","10.200.40.26","fe80::97db:b70a:69de:8a19","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5039) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YT5","","'+02:00","2026-04-16T05:37:12.000+02:00","SANEF\meteonewsW11","Cloud Agent","82af1685-9b4f-4fb3-96c4-0597cf65dc74","2024-06-25T13:22:01.000+02:00","2026-04-22T07:21:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"336702734","","PCB21168.sanef.groupe","PCB21168","D0:AD:08:E4:A1:5F","10.101.243.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HWF","","'+02:00","2026-04-20T07:50:02.000+02:00","SANEF\PLUCHE","Cloud Agent","a894ad4e-abf3-4461-bf3d-635665928a12","2025-06-26T11:48:43.000+02:00","2026-04-22T07:21:13.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"213858465","251130134","lpagtbpla1.sanef.groupe","","ee:50:33:80:00:6c, ee:50:33:80:00:6d","10.46.33.21","fe80::ec50:33ff:fe80:6c,fe80::ec50:33ff:fe80:6d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63887","HPE I44 06/13/2025","VCGCIOJ00D","/n/Bios Asset Tag :","'+02:00","2026-02-24T15:37:40.000+02:00","cybastapp","Cloud Agent","22e9a011-1e29-4413-99d1-2d90a1d71123","2024-02-05T20:43:53.000+02:00","2026-04-22T07:20:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","AgileTime,Cloud Agent,Linux Server,DRH,OS-LIN-SRV DYN","341.0" +"387174043","356515674","vmdgest04.recette.adds","VMDGEST04","00:50:56:9C:4C:F8","10.45.17.134","fe80::ec80:edf1:5d79:1177","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 4d 12 7f 32 d6 2d-6d 96 d5 b3 f2 2e 69 2c","NoAssetTag","'+02:00","2026-04-16T17:37:34.000+02:00","supwindev","Cloud Agent","aaefff9a-28b6-4352-ba6a-3897f30ff8d4","2025-12-31T16:19:48.000+02:00","2026-04-22T07:20:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"384265495","354866034","VMDGEST06.recette.adds","VMDGEST06","00:50:56:9C:CB:2C","10.45.17.136","fe80::1cd6:2766:5605:9b43","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 35 9e b6 5e f0 6c-17 d6 76 a2 27 94 68 4f","NoAssetTag","'+02:00","2026-04-16T01:06:31.000+02:00","supwindev","Cloud Agent","511010de-9b75-4cd2-8440-852d425ed9f6","2025-12-16T15:09:06.000+02:00","2026-04-22T07:20:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"131396898","193419390","vpcrmacle1","","00:50:56:82:e6:8f","10.30.10.15","fe80::addf:699e:1a72:e0d8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7953","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 40 a7 69 a1 03 2e-e4 d9 f8 26 f2 26 4a 7f","No Asset Tag","'+02:00","2025-10-08T19:36:32.000+02:00","cybreconcile","Cloud Agent","833e747b-1f77-45bc-b197-57d004f3ca4b","2022-07-13T09:47:18.000+02:00","2026-04-22T07:20:19.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cleo,OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,Communication,Production,DSI","501.0" +"269157478","299137490","SVP21059.sanef-int.adds","SVP21059","D0:AD:08:A3:7B:6F","10.5.20.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWL","","'+02:00","2026-04-04T22:25:48.000+02:00","Superviseur","Cloud Agent","0456e814-8796-41ab-bf77-19c09a94fbea","2024-09-30T15:35:21.000+02:00","2026-04-22T07:20:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"387000430","356436526","vmdtrac05.recette.adds","VMDTRAC05","00:50:56:9C:FA:60","10.45.17.7","fe80::3b35:2680:d52f:3e93","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 28 fe f5 6f 7f 08-56 c3 70 ac ac 9d cd b6","NoAssetTag","'+02:00","2026-04-16T17:37:12.000+02:00","supwindev","Cloud Agent","a5ba2923-f8a5-4866-92e2-9a99403632c3","2025-12-30T17:02:19.000+02:00","2026-04-22T07:20:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"391586124","357917326","vpburaaov2.sanef.groupe","VPBURAAOV2","00:50:56:9C:72:71, 00:50:56:82:FE:14","10.205.0.3,192.168.212.35","fe80::2d68:92e0:5fee:78ff,fe80::3c99:3958:38b:4ed6","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 02 3f 05 e0 87 0c 33-60 e8 a3 82 20 5d 77 6e","NoAssetTag","'+02:00","2026-04-15T13:42:38.000+02:00","CYBSECOPE","Cloud Agent","b4048677-779f-4d5f-8512-067be6107411","2026-01-13T11:07:36.000+02:00","2026-04-22T07:20:09.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Haute,VPN,Compte & Acces,DSI,TAG-SRVEXPOSEINTERNET,OS-WIN-SRV DYN,Cloud Agent","130.0" +"374116985","350465235","SVP22357.sanef-int.adds","SVP22357","D0:AD:08:A3:E6:D6","10.252.12.249","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YQR","","'+02:00","2026-03-31T06:41:24.000+02:00","Superviseur","Cloud Agent","f75bfea7-3e72-4dbc-aba1-599366f7606e","2025-11-04T12:52:42.000+02:00","2026-04-22T07:20:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"380802646","353390884","spbckamag6.sanef.groupe","","6c:29:d2:30:50:e0, 6c:29:d2:30:50:e1","10.42.16.102,10.43.1.40","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192294","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27160090","Unknown","'+02:00","2025-12-02T18:18:27.000+02:00","root","Cloud Agent","78e081a3-6a78-488f-b1dc-5e7d8129752e","2025-12-02T13:31:47.000+02:00","2026-04-22T07:19:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"407133596","363954296","PSX18687.sanef-int.adds","PSX18687","30:13:8B:6C:79:71","10.100.40.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473VT","","'+02:00","2026-03-22T06:45:19.000+02:00","UserSextan","Cloud Agent","47e6b0d3-1d18-42d9-89b0-0ac8d01135e7","2026-03-09T15:52:05.000+02:00","2026-04-22T07:19:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"129475229","192043144","vexploit2.sanef.groupe","VEXPLOIT2","00:50:56:82:7A:72","10.30.10.172","fe80::1116:f62b:39f9:2d87","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 d7 6c e2 b8 04 95-ed 2d 3e 13 56 95 0a 97","NoAssetTag","'+02:00","2024-04-24T09:11:35.000+02:00","SANEF.GROUPE\crabs","Cloud Agent","13d3d1b7-bae7-477e-9340-af275af8afd7","2022-06-28T14:30:56.000+02:00","2026-04-22T07:19:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DEX,BDD-POS DYN,Obsolete,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Recette,Cloud Agent,Windows Server,XFB,OS-WIN-SRV DYN","349.0" +"182754885","234343584","vrsimbffl1.sanef.groupe","","00:50:56:9c:6e:ef","10.45.6.226","fe80::d6ad:85e1:7b19:67c4","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c d9 63 53 ed d3 4b-9c 27 3c 69 1b c9 cb 68","No Asset Tag","'+02:00","2026-03-03T15:15:39.000+02:00","cybreconcile","Cloud Agent","532638c1-735f-4e04-ac5a-e43c17ea3ff8","2023-08-14T15:33:44.000+02:00","2026-04-22T07:19:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,BDD-POS DYN,FreeFlow,MID-APACHE-TOMCAT DYN,Flux Libre,Obsolete,Cloud Agent,Linux Server","337.0" +"194428822","241420225","spbocbsap1.sanef.groupe","","88:e9:a4:8a:b7:12","10.41.22.11","fe80::8ae9:a4ff:fe8a:b712","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL560 G10 Server","144","2600","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","3095575","HPE U34 07/20/2023","CZ22420F51","","'+02:00","2026-04-01T21:39:28.000+02:00","cybsupibm","Cloud Agent","e0271779-5d77-4bdc-9073-cbe2bb19fc54","2023-10-20T11:50:47.000+02:00","2026-04-22T07:19:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,Cloud Agent,Linux Server,Flux Libre,flux_libre,OS-LIN-SRV DYN","329.0" +"387157481","356516280","vmdgest03.recette.adds","VMDGEST03","00:50:56:9C:F6:01","10.45.17.133","fe80::2eb0:d6ab:1b18:6f3f","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b7 b2 e8 5e aa b6-a7 0b c3 74 7e 36 ed c0","NoAssetTag","'+02:00","2026-04-16T17:36:23.000+02:00","supwindev","Cloud Agent","fffc4177-865e-4af7-8b11-f266277575f0","2025-12-31T16:22:26.000+02:00","2026-04-22T07:19:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"131401827","193422310","lamaprac3.sanef.groupe","","00:17:A4:77:0C:C0, 00:17:A4:77:0C:C8, 00:17:A4:77:0C:CC, 00:17:A4:77:0C:C4","10.41.40.54,10.41.40.55,192.168.17.122,10.43.40.54,10.43.4.134,169.254.154.102","fe80::217:a4ff:fe77:cc0,fe80::217:a4ff:fe77:cc8,fe80::217:a4ff:fe77:ccc,fe80::217:a4ff:fe77:cc4","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DF","","'+02:00","2025-10-08T15:12:43.000+02:00","cybastapp","Cloud Agent","260df756-19aa-4bfd-9e9b-bba8265ba6e4","2022-07-13T10:11:32.000+02:00","2026-04-22T07:19:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,Sans,Trafic,log4j,VRF_TRAFIC_DC,OS-LIN-SRV DYN,Sextan,Cloud Agent,Linux Server,DEX,Obsolete","703.0" +"314914047","326673425","LAMAPGIS2.sanef.groupe","LAMAPGIS2","00:17:A4:77:0C:14","10.41.40.104","fe80::a005:622a:cd38:ad9","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19460) 64-Bit","6.3","Computers / Server","HPE ProLiant BL460c G9 Server","16","2098","Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz","98174","I36","CZ2721022X","","'+02:00","2025-11-26T13:25:57.000+02:00","LAMAPGIS2\CYBADMSYS","Cloud Agent","c1ccc081-f417-4421-9dd5-4e4a446b4c25","2025-04-09T15:44:33.000+02:00","2026-04-22T07:19:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Obsolete,Cloud Agent","349.0" +"247092697","287403898","MTO21607.sanef.groupe","MTO21607","D0:AD:08:A4:4D:B5","10.2.31.1","fe80::eb2:1bca:f6f6:37c7","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JT","","'+02:00","2026-03-18T15:51:58.000+02:00","SANEF\meteonewsW11","Cloud Agent","3cf8517c-d032-4c1a-b7c6-19f39e53c56a","2024-06-28T17:13:54.000+02:00","2026-04-22T07:19:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"318412083","328039474","PCB23723.sanef.groupe","PCB23723","6C:0B:5E:EE:93:41","10.108.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H57","","'+02:00","2026-03-29T09:26:24.000+02:00","SANEF\DEBOFFLES","Cloud Agent","cbf297c0-d551-4a39-8f39-2990d3aa1ecb","2025-04-22T14:05:28.000+02:00","2026-04-22T07:18:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"175948082","229616157","vvbotarmq1.sanef-rec.fr","","c6:2c:c8:c7:cf:e2, ea:01:16:fe:2e:56, 2e:50:3e:48:24:a9, 00:50:56:9c:08:be, d6:00:b0:b2:aa:ee, 6a:bc:93:2a:a0:60","10.45.6.136,10.89.0.1","fe80::c42c:c8ff:fec7:cfe2,fe80::e801:16ff:fefe:2e56,fe80::2c50:3eff:fe48:24a9,fe80::250:56ff:fe9c:8be,fe80::d400:b0ff:feb2:aaee,fe80::68bc:93ff:fe2a:a060","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c be db 50 60 40 57-3d 65 46 87 a6 2a 3f 7d","No Asset Tag","'+02:00","2026-03-12T15:35:02.000+02:00","kapschsysuser","Cloud Agent","5793f3aa-a2e6-4243-ab40-c6119cc9158a","2023-06-26T16:19:42.000+02:00","2026-04-22T07:18:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,FreeFlow","140.0" +"241565638","276526603","vpvsaamet1.sanef.groupe","","00:50:56:90:4e:b2","10.42.16.80","fe80::250:56ff:fe90:4eb2","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 de d6 a5 89 3e be-75 58 93 4a 7e 39 6a 34","No Asset Tag","'+02:00","2026-02-05T10:15:27.000+02:00","tbaad","Cloud Agent","6dd1dea1-6ac5-409d-9615-248e8e7e389d","2024-06-04T14:13:56.000+02:00","2026-04-22T07:18:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"309682021","324270824","vrdsiaazu2.recette.adds","VRDSIAAZU2","00:50:56:9C:E0:25","10.45.0.141","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c d1 4e cd f9 89 c0-13 07 ca 4c b5 dc 9a 92","NoAssetTag","'+02:00","2026-04-20T14:00:26.000+02:00","Administrateur","Cloud Agent","5a10fee8-5712-42f0-b35f-12d243cb605d","2025-03-20T13:19:49.000+02:00","2026-04-22T07:18:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","AD,Recette,BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent","245.0" +"331360553","","PCB17771.sanef.groupe","PCB17771","28:C5:D2:9F:C4:37","10.255.4.139","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3Y","","'+02:00","2026-04-15T07:14:29.000+02:00","Stephane.LEJEUNE@sanef.com","Cloud Agent","bb62c59a-27c1-48b2-ad70-80aab41ba0b0","2025-06-06T09:16:00.000+02:00","2026-04-22T07:17:51.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129445939","192023719","vprauareb1","VPRAUAREB1","00:50:56:82:8A:EE","192.168.90.70","","Windows / Client","Microsoft Windows 7 Enterprise (6.1 SP1 Build 7601) 64-Bit","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2294","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 01 b6 67 df 2d 83-ef e2 62 7e c6 49 94 b6","NoAssetTag","'+02:00","2025-04-22T10:08:59.000+02:00","Administrateur","Cloud Agent","4ab01ef4-b51d-46a1-a30d-de54b3577995","2022-06-28T09:58:16.000+02:00","2026-04-22T07:17:40.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Obsolete,TAG-SRVEXPOSEINDIRECT,DSI,VRF_INCONNUE,Workstation,ASUR,Production,DMZ,Sans,Exploitation","694.0" +"160254541","213434294","vpameaoct3","","00:50:56:82:9c:bf","10.41.40.132","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 83 57 fc b0 cf e3-59 10 8e e7 20 50 ae 61","No Asset Tag","'+02:00","2026-01-21T10:48:59.000+02:00","cybreconcile","Cloud Agent","bda31da6-c234-43dc-9fa5-321dbe627fa8","2023-02-22T18:11:07.000+02:00","2026-04-22T07:17:39.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,OCTAN,DEX,Cloud Agent,Linux Server","212.0" +"301230398","320881573","vrdsismtp2.sanef-rec.fr","","00:50:56:9c:4d:2c","192.168.19.53","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 96 2d 1d eb 72 8a-13 9f 35 b9 9f 94 14 39","No Asset Tag","'+02:00","2026-01-07T11:15:16.000+02:00","root","Cloud Agent","f053efb1-ac6e-474a-b24d-88e43d3362a3","2025-02-19T14:15:17.000+02:00","2026-04-22T07:17:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","141.0" +"380803972","353387551","spbckamag5.sanef.groupe","","6c:29:d2:30:72:11, 6c:29:d2:30:72:10","10.43.1.8,10.42.16.100","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192295","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3W","Unknown","'+02:00","2025-12-02T14:30:27.000+02:00","root","Cloud Agent","26a8beb3-8e97-4dc4-89fa-8ff79f76f136","2025-12-02T13:08:43.000+02:00","2026-04-22T07:17:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0" +"330772184","","PCB21290.sanef.groupe","PCB21290","64:4E:D7:49:3A:3F","10.4.31.88","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKS","","'+02:00","2026-04-17T17:28:02.000+02:00","SANEF\thiery","Cloud Agent","96d0e90c-d739-419f-8de0-41ba73aacb62","2025-06-04T14:57:57.000+02:00","2026-04-22T07:17:15.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"405934328","363432489","PCB17641.sanef.groupe","PCB17641","D0:AD:08:8A:70:76","10.12.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y4K","","'+02:00","2026-03-28T09:27:51.000+02:00","SANEF\DEJESUS","Cloud Agent","b1d85332-026f-4ba1-8c6d-c2d3557644ff","2026-03-04T09:32:44.000+02:00","2026-04-22T07:16:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"213849158","251124645","asur-rau2","","40:a8:f0:27:80:de, 40:a8:f0:27:80:dc","10.43.4.197,10.41.40.197","fe80::42a8:f0ff:fe27:80de,fe80::42a8:f0ff:fe27:80dc","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant DL380p G8 Server","24","2600","Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz","32069","HP P70 08/02/2014","CZ24422JVZ","","'+02:00","2026-04-02T09:13:29.000+02:00","cybreconcile","Cloud Agent","d6b6d4e3-911d-4923-9e06-3538ab7f4c61","2024-02-05T19:25:56.000+02:00","2026-04-22T07:16:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,Obsolete,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,MID-NGINX DYN","351.0" +"382710695","354097291","vmmvscast1.sanef-int.adds","VMMVSCAST1","00:50:56:90:25:58","10.41.7.230","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 f7 36 8f 70 ae 4d-e3 d0 25 df 74 bb 4d 76","NoAssetTag","'+02:00","2026-02-05T11:26:56.000+02:00","SANEF-INT\c01957","Cloud Agent","ef187154-d96f-4d92-9d99-660a14f43117","2025-12-09T12:45:07.000+02:00","2026-04-22T07:16:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"128150623","191086095","vpssiapki2.sanef.groupe","VPSSIAPKI2","00:50:56:82:82:23","10.30.10.236","fe80::1d0a:d757:3080:bbb6","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 74 af c9 2f 74 88-4e 26 28 05 3e 1a 8b 70","NoAssetTag","'+02:00","2026-03-16T19:07:23.000+02:00","Administrateur","Cloud Agent","f3876f68-79dc-4af8-a031-2847d845d192","2022-06-16T13:10:22.000+02:00","2026-04-22T07:16:22.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Gestion_PKI,Production,Critical,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DSI","140.0" +"131265958","193315361","vmxfb1.sanef.groupe","","00:50:56:82:33:61","10.30.11.99","fe80::250:56ff:fe82:3361","Linux / Server","Red Hat Enterprise Linux Server 6.7","6.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d9 b0 eb 79 07 7b-f1 fb 9c f1 9c 20 e0 59","No Asset Tag","'+02:00","2025-01-30T11:10:38.000+02:00","cybreconcile","Cloud Agent","7d281613-4f4d-4ab7-9a09-1e79c4661a21","2022-07-12T14:43:02.000+02:00","2026-04-22T07:16:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,VRF_INCONNUE,OS-LIN-SRV DYN,XFB,ServersInCyberark,Obsolete,DEX,log4j,Production,Exploitation IT","351.0" +"323162090","329798677","PCB22457.sanef.groupe","PCB22457","D0:AD:08:A7:28:70","10.100.39.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLG","8CC3502YLG","'+02:00","2026-04-19T20:42:16.000+02:00","SANEF\piens","Cloud Agent","9aa265f1-aad8-4b73-af58-3daee7a39867","2025-05-09T10:26:05.000+02:00","2026-04-22T07:15:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"313113952","325677727","vprauahtp2.sanef.groupe","","00:50:56:90:41:89","192.168.40.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 fa 16 f5 1c 4e 00-30 9a 01 a5 08 7e e8 67","No Asset Tag","'+02:00","2026-04-13T10:17:10.000+02:00","cybadmsys","Cloud Agent","58c6c779-9cf7-43fd-b23b-958ccaafe72c","2025-04-02T11:04:41.000+02:00","2026-04-22T07:15:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT","132.0" +"325976420","","PCB18622.sanef.groupe","PCB18622","38:CA:84:DB:E6:8B","10.4.31.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WD2","","'+02:00","2026-04-16T08:24:17.000+02:00","SANEF\lambertg","Cloud Agent","4ebf7dc8-69c7-4585-b653-b64f44f2734f","2025-05-20T15:18:11.000+02:00","2026-04-22T07:15:54.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"183965866","235215633","vmamrmet2","","00:50:56:82:67:F0, 00:50:56:82:42:10, 00:50:56:82:07:E1","10.45.4.151,10.45.2.151,10.45.3.151","fe80::250:56ff:fe82:67f0,fe80::250:56ff:fe82:4210,fe80::250:56ff:fe82:7e1","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 84 26 ae 6d 9b-c0 d7 e4 a0 b7 13 78 52","No Asset Tag","'+02:00","2025-10-09T11:39:08.000+02:00","root","Cloud Agent","84233946-88dd-45d5-888e-6d9ad37c4526","2023-08-22T13:03:52.000+02:00","2026-04-22T11:12:29.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Obsolete,DEX,MIVISU,log4j","878.0" +"194260782","241335670","vppeaarcv1.sanef.groupe","","00:50:56:90:2c:dd","10.41.20.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 3e 20 cf 0e 8d d1-5c 99 97 fd e9 77 bd 6d","No Asset Tag","'+02:00","2026-04-01T12:13:26.000+02:00","cybreconcile","Cloud Agent","d0be85c3-94c9-4154-8c8b-3f6f4669d86f","2023-10-19T14:29:55.000+02:00","2026-04-22T07:15:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,flux_libre,log4j,Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN","332.0" +"180108602","232626623","vrrauaapp2.sanef-rec.fr","","00:50:56:9c:28:db","10.45.9.232","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cd c2 27 21 3b 75-d5 11 d0 ed cd 78 9f 31","No Asset Tag","'+02:00","2026-04-21T14:54:09.000+02:00","cybadmsys","Cloud Agent","3d6bb01a-4c12-418a-a7d8-e0a1a778b1b9","2023-07-26T18:25:45.000+02:00","2026-04-22T07:15:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ASUR,Cloud Agent,Linux Server,DSI","21.0" +"227708214","257227446","ls-laon","LS-LAON","00:50:56:90:C5:D0","10.41.2.48","fe80::12f6:1fc:b4b7:81dc","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 9c e4 4f 03 0c 8f-9b cb da 5e 66 14 30 1b","NoAssetTag","'+02:00","2026-03-03T12:05:19.000+02:00","svpadmin","Cloud Agent","4c5cde77-e133-40bc-a09e-2c786e8577c3","2024-04-05T11:05:36.000+02:00","2026-04-22T11:13:48.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Production,Péage,High,SVP,Cloud Agent,Windows Server,DEX","508.0" +"215187156","251711287","vipeabbst4.sanef.groupe","","00:50:56:90:9a:9d","10.41.29.55","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 63 dc 35 88 e1 90-07 2f ea a2 36 05 18 93","No Asset Tag","'+02:00","2026-03-19T11:51:00.000+02:00","cybexpapp","Cloud Agent","6c1945a9-58ae-45ed-8cad-f782421b63ad","2024-02-12T13:16:30.000+02:00","2026-04-22T07:15:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,BDD-ELA DYN,OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,Flux Libre","141.0" +"200166052","244210270","vppeabbst2.sanef.groupe","","00:50:56:90:e3:00","10.41.20.54","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 dd 2d a9 8d 51 fb-9b 8d 5b 3f 89 8f 53 66","No Asset Tag","'+02:00","2026-04-02T09:36:52.000+02:00","cybreconcile","Cloud Agent","bdbaf8c4-ec55-4b37-88ad-00412535be0b","2023-11-21T11:57:07.000+02:00","2026-04-22T07:15:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-ELA DYN,DSI,flux_libre,Production,BOOST,Flux Libre,FreeFlow","66.0" +"296411443","317746010","REX21543.sanef-int.adds","REX21543","D0:AD:08:A3:7B:6E","10.200.91.80","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWD","","'+02:00","2026-03-17T00:40:55.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","2d6ae108-3c49-41af-8465-0d55050c14a6","2025-01-30T23:22:27.000+02:00","2026-04-22T11:46:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"361002016","345136561","PCV21616.sanef-int.adds","PCV21616","D0:AD:08:A4:4D:AE","10.100.7.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711K1","","'+02:00","2026-04-22T04:50:47.000+02:00","Operateur","Cloud Agent","8773405e-37d7-41a3-9042-b9c05c3b9900","2025-09-18T19:07:23.000+02:00","2026-04-22T07:14:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"286033623","310197270","vrsvpapar2","VRSVPAPAR2","00:50:56:9C:8A:E3","10.45.9.178","fe80::a3f1:9d1a:c622:9854","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8146) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 5f b9 78 fb 7b 26-04 ad da 04 6d 31 d9 80","NoAssetTag","'+02:00","2025-12-18T17:30:57.000+02:00","gare","Cloud Agent","095f0679-416e-405d-9e98-a3993cfc75bd","2024-12-12T18:48:17.000+02:00","2026-04-22T07:14:50.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,Recette,SVP","690.0" +"243163293","280251931","SVP20957.sanef-int.adds","SVP20957","BC:0F:F3:87:6F:94","10.132.3.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LL2","","'+02:00","2026-04-20T16:49:21.000+02:00","Superviseur","Cloud Agent","870f3925-ac26-40b0-a9cf-84eb876c9d5c","2024-06-11T10:14:16.000+02:00","2026-04-22T07:14:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"400947350","361775337","vpdsiasta1","VPDSIASTA1","00:50:56:90:66:69","192.168.19.4","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","4095","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 80 2b a0 70 cc fd-6c 7b 5b 44 20 1d bb 95","NoAssetTag","'+02:00","2026-04-08T10:12:31.000+02:00","SANEF-INT\b03987","Cloud Agent","e64801c4-a8a4-4ded-b87b-e6274c5ef0d5","2026-02-17T15:51:40.000+02:00","2026-04-22T07:14:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","243.0" +"372733189","349860410","PCB23618.sanef.groupe","PCB23618","6C:0B:5E:EE:B3:28","10.207.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB1","","'+02:00","2026-04-10T10:57:05.000+02:00","SANEF\Dial","Cloud Agent","dd3c0184-3b35-486d-8c20-062aa0eb5dc5","2025-10-29T17:31:39.000+02:00","2026-04-22T07:14:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"241565659","276527066","vpvsaamet2.sanef.groupe","","00:50:56:90:52:13","10.42.16.81","fe80::250:56ff:fe90:5213","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 3d 97 76 31 7a bc-22 6e b6 c5 94 5c 3f 19","No Asset Tag","'+02:00","2026-02-05T10:59:02.000+02:00","tbaad-ext","Cloud Agent","cd01681c-7508-42e1-9f52-8ee3646ead86","2024-06-04T14:16:52.000+02:00","2026-04-22T07:14:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"130357282","192670272","vraiibsql3","VRAIIBSQL3","00:50:56:82:8D:75","10.43.253.3","fe80::d5b0:441c:7276:e932","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8146) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 3b c1 81 ea 7d f5-ab 38 fd 1d ba 37 89 57","NoAssetTag","'+02:00","2026-01-13T12:30:39.000+02:00","Administrateur","Cloud Agent","3337ece2-6c40-4d46-aaf8-e9ca065e9443","2022-07-05T17:05:44.000+02:00","2026-04-22T07:13:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,BDD,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DSI,VRF_INCONNUE","341.0" +"379514975","352868343","vpdecasas5","","00:50:56:82:27:7a","10.30.11.153","fe80::250:56ff:fe82:277a","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257964","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 e3 ce 30 de ba 20-7b 70 48 b6 76 de 02 54","No Asset Tag","'+02:00","2026-03-25T11:06:10.000+02:00","cybreconcile","Cloud Agent","6775240f-e611-4a59-ba72-fd17c7fb99ee","2025-11-26T11:58:56.000+02:00","2026-04-22T07:13:31.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Finances Comptabilité / Consolidation,Obsolete,VRF_INCONNUE,SAS,Production,BDD-POS DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","75.0" +"193994075","241196347","vpbotbquo1.sanef.groupe","VPBOTBQUO1","00:50:56:90:A6:91","10.100.16.12","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3091) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","4095","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 10 07 ab 81 7b a1 02-93 c8 fe 06 db a0 32 6f","NoAssetTag","'+02:00","2026-04-21T15:01:40.000+02:00","SANEF\ndead","Cloud Agent","2d6e1fe8-f8d3-494e-adfc-4ba4e9b8512c","2023-10-18T10:30:03.000+02:00","2026-04-22T07:12:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,Production,FreeFlow,flux_libre,Flux Libre","347.0" +"175464776","229282250","vvbotbtsd2.sanef-rec.fr","","5e:a8:b9:89:1d:64, 5e:9f:b9:d3:c9:e3, d2:d9:d6:a9:92:32, ea:4b:26:17:43:51, 3a:2e:30:81:51:3d, 1a:bb:e1:57:5c:d6, fe:45:99:76:06:e6, e2:af:07:d9:5f:01, 52:e5:74:29:12:93, 00:50:56:9c:73:6c","10.89.0.1,10.45.6.159","fe80::5ca8:b9ff:fe89:1d64,fe80::5c9f:b9ff:fed3:c9e3,fe80::d0d9:d6ff:fea9:9232,fe80::e84b:26ff:fe17:4351,fe80::382e:30ff:fe81:513d,fe80::18bb:e1ff:fe57:5cd6,fe80::fc45:99ff:fe76:6e6,fe80::e0af:7ff:fed9:5f01,fe80::50e5:74ff:fe29:1293,fe80::250:56ff:fe9c:736c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d9 28 0c 18 45 4b-0b c7 7f 31 33 07 ce b6","No Asset Tag","'+02:00","2026-03-10T12:33:09.000+02:00","cybreconcile","Cloud Agent","d65335f6-ad53-44be-9ee9-4ba2bb568850","2023-06-22T17:14:50.000+02:00","2026-04-22T07:12:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,Recette,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server","140.0" +"246611741","287171797","MTO21050.sanef.groupe","MTO21050","D0:AD:08:A3:7B:27","10.108.31.3","fe80::a388:3cbe:808:856e","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXG","","'+02:00","2025-09-27T20:23:26.000+02:00","SANEF\meteonewsW11","Cloud Agent","a6c093c3-d32e-402f-b427-48fb3ad03ab9","2024-06-26T18:55:11.000+02:00","2026-04-22T07:12:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"131396766","193418130","vptraatpf2.sanef.groupe","","00:50:56:82:60:51","192.168.40.11","fe80::3b2c:823:f9b7:cb57","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","5966","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 70 ac 1e 4f b4 40-b2 98 b8 7a f9 2a dc 1b","No Asset Tag","'+02:00","2024-03-18T11:34:08.000+02:00","cybreconcile","Cloud Agent","93a03fe2-db2a-4bfe-b492-491600b97a67","2022-07-13T09:36:36.000+02:00","2026-04-22T07:12:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,DEX,Temps de parcours,TAG-SRVEXPOSEINDIRECT,Obsolete,Sans,Production,DMZ,Trafic,Cloud Agent,Linux Server","507.0" +"262514109","295608735","vpecmapss3.sanef.groupe","VPECMAPSS3","00:50:56:90:7E:28","10.44.5.67","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","49151","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 6e ed ab b4 83 a4-72 db 05 6f df f6 3e 2e","NoAssetTag","'+02:00","2026-01-27T10:40:57.000+02:00","SANEF\atrad","Cloud Agent","0f9a9a47-1d91-40aa-bc6c-941aabcf6ac2","2024-09-02T10:24:45.000+02:00","2026-04-22T07:11:38.000+02:00","64-Bit","3","SCA,VM,PM,GAV","SCCM,Cloud Agent,Production,OS-WIN-SRV DYN,BDD-SQL DYN","504.0" +"273591568","301915268","vppbiadgw1.sanef.groupe","VPPBIADGW1","00:50:56:9C:23:56","10.46.34.12","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 6d a5 88 d9 34 b4-e5 c4 4d 5e 2c 8a 9d 37","NoAssetTag","'+02:00","2026-03-23T15:37:43.000+02:00","Administrateur","Cloud Agent","0fa36a88-aaf2-4c23-9842-14e41b4666bf","2024-10-21T18:36:29.000+02:00","2026-04-22T07:11:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","253.0" +"129933290","192383568","LAMAPGIS1.sanef.groupe","LAMAPGIS1","00:17:A4:77:10:48","10.41.40.103","fe80::ed1d:58cb:d146:5f61","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24494)","6.1","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","98269","HP I31","CZJ41105TN","","'+02:00","2024-09-25T14:19:40.000+02:00","administrateur","Cloud Agent","2387b1ce-8b50-477a-a5c2-6f0fc86596d3","2022-07-01T09:20:50.000+02:00","2026-04-22T07:11:28.000+02:00","64 bits","3","SCA,VM,PM,GAV","Production,Patrimoine,Sans,SIG,DEX,Cloud Agent,Windows Server,VRF_TRAFIC_DC,Windows Server 2008,Obsolete,OS-WIN-SRV DYN","516.0" +"211430837","250091506","OSA20986.sanef-int.adds","OSA20986","BC:0F:F3:87:6E:35","10.100.20.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMY","","'+02:00","2026-04-18T04:01:23.000+02:00","Superviseur","Cloud Agent","6c12d161-42a2-49e2-b537-88f96961c035","2024-01-23T20:00:28.000+02:00","2026-04-22T07:11:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"244000868","283206061","MTO22455.sanef.groupe","MTO22455","D0:AD:08:A7:27:CE","10.189.31.7","fe80::8586:9586:28ff:c5d","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6649) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKV","","'+02:00","2026-03-28T15:45:19.000+02:00","SANEF\meteonewsW11","Cloud Agent","db0a70f7-ac00-48af-99b3-9f949ddab1ee","2024-06-14T11:28:00.000+02:00","2026-04-22T07:11:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"129362145","191963979","vpstqanvr1","VPSTQANVR1","00:50:56:82:04:10","10.103.7.100","fe80::d6ad:10cc:4d47:e452","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 cc f5 d8 a5 6c ac-98 45 a7 3f 8e 40 0b 42","NoAssetTag","'+02:00","2026-04-21T12:22:11.000+02:00","Administrateur","Cloud Agent","1c1ec649-d2e9-45bd-9972-e942c0915a18","2022-06-27T18:21:27.000+02:00","2026-04-22T07:11:18.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Production,Exploitation,OS-WIN-SRV DYN,Cloud Agent,Windows Server,VRF_INCONNUE,DEX,NVR","523.0" +"208784631","248750420","vibotreco4.sanef.groupe","","00:50:56:90:b2:cc","10.41.23.160","fe80::250:56ff:fe90:b2cc","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 32 96 a5 05 01 5f-00 b5 e6 43 6f 5f b5 6d","No Asset Tag","'+02:00","2026-03-18T16:17:18.000+02:00","cybsupsys","Cloud Agent","23ddfa6c-2990-4221-a9a7-32314045d24d","2024-01-10T13:28:16.000+02:00","2026-04-22T07:11:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,flux_libre,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","140.0" +"416897959","367958041","vrzbxaprx3.sanef-rec.fr","","00:50:56:9c:4a:1f","192.168.10.67","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c f7 1f b4 4e f6 eb-27 2e 03 8b 6e 28 f5 e3","No Asset Tag","'+02:00","2026-04-16T12:33:48.000+02:00","cybintsys","Cloud Agent","791c799b-ce3b-4f7d-bdb1-00bf541cf736","2026-04-17T17:04:12.000+02:00","2026-04-22T07:11:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","66.0" +"209161379","248966236","vibotreco2.sanef.groupe","","00:50:56:90:65:1c","10.41.23.140","fe80::250:56ff:fe90:651c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 79 08 4b cf 1a 7c-67 1f 09 45 c8 d8 73 70","No Asset Tag","'+02:00","2026-03-18T15:32:26.000+02:00","cybreconcile","Cloud Agent","99ca84de-06e5-4779-9e22-9176f45f96b1","2024-01-12T11:59:18.000+02:00","2026-04-22T07:11:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,Production,flux_libre","140.0" +"187710898","242960762","nvr-spare-beu","NVR-SPARE-BEU","00:50:56:82:F9:00","10.217.33.252","fe80::48e8:6230:d795:7e8","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 88 78 e1 0e 1d 1a-a2 1d de 15 e7 e6 ad ba","NoAssetTag","'+02:00","2026-02-03T11:51:43.000+02:00","Administrateur","Cloud Agent","e0362cd2-9080-46f7-8d39-374914806cb9","2023-09-13T18:51:25.000+02:00","2026-04-22T07:10:58.000+02:00","64-Bit","3","SCA,VM,GAV","DEX,NVR,OS-WIN-SRV DYN,Cloud Agent","509.0" +"157732257","210514185","vppintanfs1.sanef.groupe","","02:42:0d:37:c7:29, 00:50:56:82:0f:d4","172.17.0.1,192.168.20.22","fe80::42:dff:fe37:c729,fe80::250:56ff:fe82:fd4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 91 99 cb 93 9a a9-48 f3 bf a9 34 a8 5e c8","No Asset Tag","'+02:00","2026-02-23T15:27:34.000+02:00","cybreconcile","Cloud Agent","61bbad5a-2fa0-48b1-b600-e63a7c9bf3ec","2023-02-02T12:53:49.000+02:00","2026-04-22T07:10:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,OS-LIN-SRV DYN,Recette,Gestion institutionnel,Cloud Agent,Linux Server","142.0" +"359746010","","PCB24345.sanef.groupe","PCB24345","10:B6:76:7E:4E:7C","10.100.39.99","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYJ","","'+02:00","2026-04-17T07:24:56.000+02:00","SANEF\NIRO","Cloud Agent","831e2223-5ff3-4377-95c8-9c52ec96a49e","2025-09-15T12:15:02.000+02:00","2026-04-22T07:10:21.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","0.0" +"203201197","245720142","viboobquo2.sanef.groupe","","00:50:56:90:f4:81","10.100.16.14","fe80::250:56ff:fe90:f481","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 a8 8a 3d af c5 cc-3a 3b 81 2e a2 5c 0f db","No Asset Tag","'+02:00","2026-03-16T11:44:22.000+02:00","cybadmsys","Cloud Agent","d893a18b-379e-49de-adc6-d85c776904e0","2023-12-08T12:15:23.000+02:00","2026-04-22T07:10:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0" +"191423864","239727601","viboomocr1.sanef.groupe","","00:50:56:90:d3:5a","10.41.22.203","fe80::250:56ff:fe90:d35a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 7d 5b 72 12 b8 c6-18 ac dd ec 2d c2 b1 c6","No Asset Tag","'+02:00","2026-03-17T16:15:16.000+02:00","cyblecemo","Cloud Agent","9d3db0fc-f9c5-4e35-8a6b-b4b13710c954","2023-10-04T17:55:58.000+02:00","2026-04-22T07:10:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,flux_libre,Flux Libre","337.0" +"290942898","313729071","SVP22865.sanef-int.adds","SVP22865","D0:AD:08:A7:28:11","10.11.2.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK8","","'+02:00","2026-04-08T17:11:50.000+02:00","Superviseur","Cloud Agent","966041be-505b-43fc-ab4e-fbdc12374a5f","2025-01-08T16:08:50.000+02:00","2026-04-22T07:10:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"130431262","192723852","BLY-BLY2-VES2","BLY-BLY2-VES2","00:05:B7:E9:84:B1","10.92.10.234,192.168.15.15","","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19156) 64-Bit","6.3","Industrial Control System (ICS) / Industrial PC","ARBOR FPC 7800 Series Industrial PC","8","2300","Intel(R) Core(TM) i7-4770TE CPU @ 2.30GHz","8091","American Megatrends Inc. 4.6.5","To be filled by O.E.M.","ToBeFilledByO.E.M.","'+02:00","2025-09-01T08:39:43.000+02:00","Administrator","Cloud Agent","4f21517d-cab8-4bcd-96dc-a968075738a2","2022-07-06T09:38:17.000+02:00","2026-04-22T07:10:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Obsolete,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,Windows Server,BDD-SQL DYN","348.0" +"398936502","360913698","PSX18701.sanef-int.adds","PSX18701","30:13:8B:6C:5D:F2","10.200.40.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473W9","","'+02:00","2026-02-19T12:30:44.000+02:00","UserSextan","Cloud Agent","316c0c55-77d6-4e6c-8de5-4ea99382be16","2026-02-10T02:31:50.000+02:00","2026-04-22T07:10:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"219208217","253333827","viosapels2.sanef.groupe","","00:50:56:90:96:f3","10.41.29.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 15 3c 6e 04 1f 18-1f 0a f3 e4 57 bf 49 45","No Asset Tag","'+02:00","2026-02-19T11:42:45.000+02:00","cybadmroot","Cloud Agent","e3694e2f-bbb9-4630-9788-06ccef9c608b","2024-02-29T19:22:51.000+02:00","2026-04-22T07:09:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Recette,Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","141.0" +"241566273","276527283","vpvsaamez1.sanef.groupe","","00:50:56:90:1e:44","192.168.18.73","fe80::250:56ff:fe90:1e44","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e4 4a 7a 68 7b 7e-8c 84 de d8 8b f9 e7 e1","No Asset Tag","'+02:00","2026-02-05T11:22:41.000+02:00","tbaad","Cloud Agent","ef3dbfbc-766c-4bf2-95ae-668a0f6c47c9","2024-06-04T14:19:12.000+02:00","2026-04-22T07:09:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"129355604","191959297","vpbmtanvr1","VPBMTANVR1","00:50:56:82:43:E5","10.117.3.11","fe80::1130:1b36:8af6:bbd1","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 d0 c5 93 0d f6 a3-ff 43 4f 93 00 f9 bb ec","NoAssetTag","'+02:00","2026-02-19T14:19:56.000+02:00","Administrateur","Cloud Agent","679172d2-18d1-4b0e-9f7d-a58e9662235d","2022-06-27T17:44:15.000+02:00","2026-04-22T07:09:38.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Production,Exploitation,DEX,NVR","508.0" +"321519323","329069838","PCB22304.sanef.groupe","PCB22304","D0:AD:08:A3:7D:E4","10.207.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYX","8CC3502YYX","'+02:00","2026-04-07T13:02:06.000+02:00","SANEF\pacholek","Cloud Agent","42f4be65-9c0f-4d21-a1eb-f3be9f5a6846","2025-05-02T09:35:53.000+02:00","2026-04-22T07:09:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"324381157","330223954","PCB22287.sanef.groupe","PCB22287","D0:AD:08:A3:7D:03","10.209.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ6","8CC3502YZ6","'+02:00","2026-03-29T09:12:07.000+02:00","SANEF\crouinl","Cloud Agent","90ed8259-9548-4c62-b079-33ececc51399","2025-05-13T13:42:24.000+02:00","2026-04-22T07:09:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"231533958","259283849","lpemvaste5","","00:17:a4:77:1c:08, 00:17:a4:77:1c:0c","192.168.101.112,192.168.102.112","fe80::217:a4ff:fe77:1c08,fe80::217:a4ff:fe77:1c0c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000701","","'+02:00","2025-08-20T02:51:24.000+02:00","root","Cloud Agent","014648fd-0bf3-42fa-a645-5c26d7f077ef","2024-04-22T11:32:18.000+02:00","2026-04-22T07:09:15.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,Production,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Cloud Agent,OS-LIN-SRV DYN","678.0" +"198005759","243187616","vdaflbsta1.recette.adds","VDAFLBSTA1","00:50:56:9C:4C:89","10.45.7.164","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4297) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 49 99 8d a5 ea ea-bb 96 49 e7 8b 89 d9 8a","NoAssetTag","'+02:00","2026-03-11T10:31:22.000+02:00","Administrateur","Cloud Agent","a278b840-23a8-42e2-9abe-87e3d8f3c351","2023-11-08T11:32:41.000+02:00","2026-04-22T07:09:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","flux_libre,OS-WIN-SRV DYN,Cloud Agent,Windows Server,FreeFlow,Flux Libre,Recette,BDD-SQL DYN","348.0" +"377179264","351926030","vpresardp1.sanef-int.adds","VPRESARDP1","00:50:56:94:5D:D2","10.44.7.67","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 14 a0 d0 c7 4f 5b 98-49 a1 e1 83 67 b1 54 f4","NoAssetTag","'+02:00","2025-10-10T15:44:48.000+02:00","b03987@sanef-int","Cloud Agent","f67d66a1-1e34-4d84-9b3a-4264abdcde1d","2025-11-17T13:48:14.000+02:00","2026-04-22T07:09:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","346.0" +"270777465","300112434","SVP21052.sanef-int.adds","SVP21052","D0:AD:08:A3:7B:66","10.132.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWS","","'+02:00","2026-04-22T04:37:55.000+02:00","Superviseur","Cloud Agent","d4209073-dfa1-4486-b184-b233324f73de","2024-10-08T09:25:01.000+02:00","2026-04-22T07:09:07.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","686.0" +"219788187","253596727","ls-cottevrard","LS-COTTEVRARD","00:50:56:90:13:E8","10.212.36.200","fe80::1a1b:20ee:da7d:52b4","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 17 6b 4d 14 c9 9e-3c a5 4c ba 88 89 dd 48","NoAssetTag","'+02:00","2026-03-05T12:50:54.000+02:00","svpadmin","Cloud Agent","155c74e7-5689-4a61-9c03-1423b1f89267","2024-03-04T11:18:12.000+02:00","2026-04-22T10:34:03.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Production,Péage,High,VRF_PEAGE_DC,Cloud Agent,OS-WIN-SRV DYN,DEX","682.0" +"317717545","327756761","PCB23763.sanef.groupe","PCB23763","6C:0B:5E:EE:93:21","10.108.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4P","","'+02:00","2026-04-16T17:20:19.000+02:00","SANEF\DOUX","Cloud Agent","196dd023-745f-4d82-b390-40d3d4444301","2025-04-18T15:27:35.000+02:00","2026-04-22T10:29:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"153092401","207356921","vmsym2","VMSYM2","00:50:56:82:17:CD","10.30.11.239","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.7678) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 fe be 02 90 e4 d7-43 d1 a7 56 0b a3 48 6e","NoAssetTag","'+02:00","2025-09-08T18:48:55.000+02:00","Administrateur","Cloud Agent","8962f957-28e4-45a5-8329-418c9d85a703","2022-12-23T11:27:16.000+02:00","2026-04-22T07:08:56.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DSI,Symantec,BDD-SQL DYN,Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_INCONNUE","515.0" +"324950264","330450813","vpstlbpea1.sanef-int.adds","VPSTLBPEA1","00:50:56:90:C9:E6","10.41.13.50","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3453) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 3d d7 1c 72 6f f7-56 b7 35 e5 af ae b8 e2","NoAssetTag","'+02:00","2026-04-13T16:51:07.000+02:00","user_stl","Cloud Agent","b7d51aec-0b1a-4a0f-9605-b09945ee6436","2025-05-15T09:31:23.000+02:00","2026-04-22T07:08:41.000+02:00","64-Bit","2","SCA,VM,GAV","BDD-SQL DYN,Cloud Agent,OS-WIN-SRV DYN,Systel,Production","346.0" +"372503675","349750686","PBM22779.sanef-int.adds","PBM22779","D0:AD:08:A3:E6:B9","10.12.50.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YQ9","","'+02:00","2026-03-29T04:13:28.000+02:00","Operateur","Cloud Agent","bbf7e016-9be6-4688-b894-0b32ab66e5cd","2025-10-28T19:20:21.000+02:00","2026-04-22T07:08:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"376109812","351381035","PCB16043.sanef.groupe","PCB16043","48:9E:BD:4B:90:33","10.200.31.87","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129285R","8CC129285R","'+02:00","2026-04-15T11:04:55.000+02:00","SANEF\claude","Cloud Agent","b706afb4-755c-4382-ba84-8a670493b8f5","2025-11-12T13:37:35.000+02:00","2026-04-22T07:08:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"321589866","329093148","PCB22910.sanef.groupe","PCB22910","D0:AD:08:A3:7B:76","10.189.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVB","8CC3502YVB","'+02:00","2026-04-02T11:01:53.000+02:00","SANEF\hulin","Cloud Agent","20368981-b472-4621-9073-cf7a772c8e3e","2025-05-02T14:38:06.000+02:00","2026-04-22T07:08:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"269390447","299253250","vpa14agtc2","VPA14AGTC2","00:50:56:90:8A:A3","10.41.19.71","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 c3 ed d6 17 cd f4-bc 3b ea 22 3a 0b b5 eb","NoAssetTag","'+02:00","2026-03-23T11:39:10.000+02:00","admin_gtc","Cloud Agent","fb04f4b2-240a-4650-8555-0b8a87c0c5d6","2024-10-01T15:52:50.000+02:00","2026-04-22T07:07:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,BDD-SQL DYN,Cloud Agent","331.0" +"368447117","348146986","vppixbams1.sanef-int.adds","VPPIXBAMS1","00:50:56:90:02:B3","10.41.17.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 59 95 a7 80 7f 0b-08 b2 2f aa 97 58 86 4b","NoAssetTag","'+02:00","2026-02-11T11:06:17.000+02:00","b03987@sanef-int","IP Scanner, Cloud Agent","1c94a960-16a0-419e-8694-c70b39884d4a","2025-10-14T17:06:45.000+02:00","2026-04-22T11:37:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN","344.0" +"191420278","239726172","viboobsql1.sanef.groupe","","00:50:56:90:79:13","10.41.22.197","fe80::9f87:73a9:8141:a671","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 89 87 08 56 5a e2-02 2d 98 dd e9 78 ce 8b","No Asset Tag","'+02:00","2026-03-16T13:14:11.000+02:00","cyblecemo","Cloud Agent","0e78b35e-587f-488d-8b42-686603abadce","2023-10-04T17:40:04.000+02:00","2026-04-22T07:07:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-SQL,FreeFlow,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production,OS-LIN-SRV DYN","144.0" +"129315697","191934841","VPAIIAADA1.sanef.groupe","VPAIIAADA1","00:50:56:82:8F:F2","10.30.10.117","fe80::2de8:386f:e0f9:5df7","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8330) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 de 0b e9 c3 d1 e4-40 0b 0c 97 0c 09 92 93","NoAssetTag","'+02:00","2026-03-30T15:17:24.000+02:00","SANEF\administrateur","Cloud Agent","636a87ba-a7dd-4ca2-93bf-681415c3b6da","2022-06-27T12:09:15.000+02:00","2026-04-22T07:07:25.000+02:00","64-Bit","3","SCA,VM,PM,GAV","AD,Cloud Agent,Windows Server,VRF_INCONNUE,OS-WIN-SRV DYN,Basse,Low,Production,Outils prod (Monitoring, NMS, gestion de parc),DSI","525.0" +"194981569","241652368","vpbotbsql2.sanef.groupe","VPBOTBSQL2","00:50:56:90:DB:15, 02:08:1F:74:FB:FF","10.41.23.13,10.41.23.32,10.41.23.33,169.254.2.138","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 df 5e 55 3a ef 57-ed 1f e3 e0 0e 20 be df","NoAssetTag","'+02:00","2026-04-21T15:18:50.000+02:00","SANEF\ndead","Cloud Agent","349f9956-e63d-41ea-b15b-abf18f329aa4","2023-10-23T17:35:12.000+02:00","2026-04-22T07:07:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,BDD-SQL DYN,OS-WIN-SRV DYN,flux_libre,Production,Cloud Agent,Windows Server,Flux Libre","254.0" +"137349499","197588902","vppeabbst1.sanef.groupe","","00:50:56:82:cb:ed","10.41.20.36","fe80::5562:9fe3:1d4d:cbca","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","15884","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d f3 6e 44 26 a7 73-1c 5c 78 45 08 5a 03 16","No Asset Tag","'+02:00","2024-09-03T10:18:40.000+02:00","cybreconcile","Cloud Agent","e215704d-750e-43fb-9a9e-7e5ce428f036","2022-08-30T17:13:50.000+02:00","2026-04-22T07:07:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,Obsolete,BDD-ELA DYN,Production,VRF_PEAGE_DC,ServersInCyberark,BOOST","244.0" +"240373008","274660851","vibocsman1","","00:50:56:90:15:cf","10.41.22.75","fe80::250:56ff:fe90:15cf","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f1 89 97 41 48 21-f3 72 04 fd 52 84 b9 88","No Asset Tag","'+02:00","2026-03-16T16:13:35.000+02:00","cybreconcile","Cloud Agent","ef118b75-4ec2-4641-a292-762f6378d872","2024-05-30T10:26:21.000+02:00","2026-04-22T07:06:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,FreeFlow,Cloud Agent,Linux Server","141.0" +"131405746","193424771","vmntp1.sanef.groupe","","00:50:56:90:BC:8A","10.100.1.200","fe80::250:56ff:fe90:bc8a","Linux / Server","The CentOS Project CentOS 6.4","6.4","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","1878","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 6c 9a 6e 8a 5b 6d-a4 a0 de 2f 17 2b cf d1","No Asset Tag","'+02:00","2025-09-02T17:07:41.000+02:00","cybreconcile","Cloud Agent","fd737359-f1d2-4382-bb84-211d4f5a1fe5","2022-07-13T10:35:52.000+02:00","2026-04-22T07:06:50.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Cloud Agent,Linux Server,VRF_INCONNUE,NTP,Obsolete,Production","519.0" +"225989696","256338842","vpvidavsc1.sanef.groupe","VPVIDAVSC1","00:50:56:90:21:D4","10.41.7.200","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 10 2f e3 87 06 d8 cd-a9 92 f7 0f 2e b3 32 4c","NoAssetTag","'+02:00","2026-02-04T16:28:48.000+02:00","SANEF\alaad","Cloud Agent","baed660e-e3af-4a7a-a2d6-8aba001dfd34","2024-03-28T14:21:03.000+02:00","2026-04-22T07:06:38.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN","513.0" +"236561622","265298550","vpaptbjup1","","00:50:56:9c:ba:e7","10.46.34.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","128398","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 20 80 48 3d 56 28-9e 03 4c 62 49 be ba 76","No Asset Tag","'+02:00","2026-03-23T15:14:43.000+02:00","cybreconcile","Cloud Agent","0da83727-852c-4ba7-9ca2-7bb222238ab0","2024-05-14T15:06:56.000+02:00","2026-04-22T07:06:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,Production,Cloud Agent,Linux Server","141.0" +"236301381","264488386","lpemvaste4","","00:17:a4:77:1c:04, 00:17:a4:77:1c:00","192.168.102.111,192.168.101.111","fe80::217:a4ff:fe77:1c04,fe80::217:a4ff:fe77:1c00","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000700","","'+02:00","2025-08-20T02:47:02.000+02:00","root","Cloud Agent","6f46b509-d7ed-40b4-a333-76facfeb3d9c","2024-05-13T14:57:35.000+02:00","2026-04-22T07:06:25.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17,Production,EMV,PCI Bunker EMV","480.0" +"364168702","346469321","PBM21558.sanef-int.adds","PBM21558","D0:AD:08:A3:E5:E4","10.152.50.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YP0","","'+02:00","2026-04-07T20:53:52.000+02:00","Operateur","Cloud Agent","11ca5c73-ee3a-4f60-ad90-1fcfc019e900","2025-09-30T11:26:13.000+02:00","2026-04-22T07:06:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","350.0" +"130584077","192833340","node2","","00:50:56:82:d1:ae, 66:2d:bf:44:a6:8b","10.45.2.57,10.233.75.0","fe80::250:56ff:fe82:d1ae,fe80::642d:bfff:fe44:a68b","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 b4 9a 31 df 57 07-ae c3 e8 88 b2 b1 e0 ad","No Asset Tag","'+02:00","2025-02-26T17:07:09.000+02:00","zhou","Cloud Agent","929b11d7-0ff3-45ef-880d-69c40d5ab4e5","2022-07-07T11:36:33.000+02:00","2026-04-22T07:06:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE","342.0" +"152278525","206871781","vppeaaadm1.sanef-int.adds","VPPEAAADM1","00:50:56:82:A5:49","10.44.6.36","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2594","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","8191","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 37 ae fa 0e a0 e3-a3 1a e3 87 60 9d bf f7","NoAssetTag","'+02:00","2026-02-26T15:01:57.000+02:00","Damon","Cloud Agent","289264ac-c5c8-4242-b34f-cfec4fb1da23","2022-12-16T18:44:17.000+02:00","2026-04-22T07:06:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Péage,SVP,DEX,Cloud Agent,Windows Server,VRF_INCONNUE","511.0" +"376341349","351487830","vptrabmut2.sanef.groupe","","52:54:00:6a:93:4d, 52:54:00:1b:c4:f4, 52:54:00:45:c3:aa","192.168.17.6,10.41.40.220,10.41.40.222,10.41.40.224,10.41.40.225,192.168.17.133","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-13T11:23:36.000+02:00","cybsecope","Cloud Agent","8d8d9b64-fad1-4bb3-90a7-e7c5c44d3906","2025-11-13T12:06:57.000+02:00","2026-04-22T07:06:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,Linux Server,Cloud Agent,Production,ORACLE","339.0" +"181231705","233373906","vpvidavsc2.sanef.groupe","VPVIDAVSC2","00:50:56:90:55:1B","10.41.7.201","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","24575","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 10 c7 9c fb ae db b7-b9 49 ed 57 73 90 9d df","NoAssetTag","'+02:00","2026-02-04T16:11:11.000+02:00","MOUTAOUAKIL","Cloud Agent","783fa1b2-26d6-42b0-8111-c84e49a36cb9","2023-08-03T11:28:00.000+02:00","2026-04-22T07:05:49.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,NVR,DEX","521.0" +"387190533","356516695","vmdpeag01.recette.adds","VMDPEAG01","00:50:56:9C:8A:BD","10.45.17.195","fe80::78fa:4563:a9ee:4aa5","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 4a c0 c8 6b 0f-08 c0 df 90 9b a0 49 b4","NoAssetTag","'+02:00","2026-04-16T03:06:20.000+02:00","supwindev","Cloud Agent","4674f6c3-74d1-4d20-a3c2-706192329ee7","2025-12-31T16:32:11.000+02:00","2026-04-22T07:05:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"200010195","244159182","vppeabbst4.sanef.groupe","","00:50:56:90:92:2c","10.41.20.53","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 d3 e2 57 3a 45 24-23 d3 3d c3 ab f0 2d 99","No Asset Tag","'+02:00","2026-04-02T10:12:32.000+02:00","cybreconcile","Cloud Agent","6cd17fdf-4e6c-4bea-b0af-db962a018d9c","2023-11-20T18:30:27.000+02:00","2026-04-22T07:05:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,FreeFlow,flux_libre,DSI,BOOST,Production","66.0" +"321564790","329076843","PCB21534.sanef.groupe","PCB21534","D0:AD:08:A3:7B:52","10.12.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRQ","8CC3502YRQ","'+02:00","2026-03-29T09:17:11.000+02:00","SANEF\kiefferj","Cloud Agent","1458b165-7130-45b9-b2f8-decabf1ae5f4","2025-05-02T11:21:43.000+02:00","2026-04-22T07:05:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"221337261","254246773","ls-arras","LS-ARRAS","00:50:56:90:69:93","10.41.2.33","fe80::b4b4:c473:ee76:4bf0","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 56 24 49 6b b2 3b-e1 a1 2c e5 9a 5f 75 db","NoAssetTag","'+02:00","2026-04-02T09:02:00.000+02:00","svpadmin","Cloud Agent","9fed265c-5735-49ee-95b3-6c12f3a2ed67","2024-03-11T11:29:52.000+02:00","2026-04-22T07:05:26.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN,High,VRF_PEAGE_DC,Haute,Péage,Production","633.0" +"241566442","276527835","vpvsaarez2","","00:50:56:9c:e0:a6","192.168.18.77","fe80::250:56ff:fe9c:e0a6","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c e4 9a ea a7 d9 db-82 71 0e dd c5 2b 48 3f","No Asset Tag","'+02:00","2026-02-05T13:34:19.000+02:00","tbaad-ext","Cloud Agent","43b76ec3-cf8f-48ab-8427-779ef5952a76","2024-06-04T14:27:35.000+02:00","2026-04-22T07:05:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"382535369","354020836","vrdsiascr1.sanef-rec.fr","","00:50:56:9c:8b:d9","192.168.31.3","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c ab be 26 df 26 0e-f6 ee 9d ca 08 fa 4f b6","No Asset Tag","'+02:00","2026-03-17T18:26:38.000+02:00","cybintsys","Cloud Agent","f4715e59-7fcd-4568-9c9c-4e14851a31a1","2025-12-08T18:43:40.000+02:00","2026-04-22T07:05:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Recette,NextCloud,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","145.0" +"129450949","192026712","vpburafax2.sanef.groupe","VPBURAFAX2","00:50:56:82:F5:A2","10.41.60.151","fe80::2125:ad2a:d2fe:674f","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 56 78 07 1d 1d 5e-f5 e6 68 8a 18 24 d6 68","NoAssetTag","'+02:00","2026-02-25T10:47:46.000+02:00","Administrateur","Cloud Agent","a0567f52-c40b-4200-8faa-7277103d5843","2022-06-28T10:44:59.000+02:00","2026-04-22T07:05:01.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_TPH_DC,OS-WIN-SRV DYN,MID-APACHE-TOMCAT DYN,DSI,XMedius,Production,Windows Server,Cloud Agent","511.0" +"139158140","198270706","asur-rau1","","40:a8:f0:27:a9:f4, 40:a8:f0:27:a9:f6","10.41.40.195,10.41.40.196,10.43.4.196","fe80::42a8:f0ff:fe27:a9f4,fe80::42a8:f0ff:fe27:a9f6","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant DL380p G8 Server","24","2600","Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz","32069","HP P70 05/24/2019","CZ2D1A03DL","","'+02:00","2026-04-02T09:20:01.000+02:00","cybastsys","Cloud Agent","9e18ea3e-abcd-46a2-b81b-6a1bed7f4ca7","2022-09-07T14:38:03.000+02:00","2026-04-22T07:04:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,log4j,Obsolete,VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","350.0" +"195005946","241667389","vpdaibana7","VPDAIBANA7","00:50:56:90:15:04","10.41.70.26","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 ee 65 47 c9 84 5b-d1 6c d5 82 6e 5e 30 2b","NoAssetTag","'+02:00","2026-04-20T11:33:59.000+02:00","ecoad-ext","Cloud Agent","6f26f12d-7099-455a-af44-ee9c62411caa","2023-10-23T21:06:57.000+02:00","2026-04-22T07:04:49.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,DAI","358.0" +"236487392","265102782","ls-la-veuve-reims","LS-LA-VEUVE-REI","00:50:56:90:70:71","10.41.2.71","fe80::ade0:bfa1:f:8a79","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 d0 cc 2a 2b c0 42-fe ef 9a a4 d4 c4 45 1d","NoAssetTag","'+02:00","2026-03-04T16:20:17.000+02:00","svpadmin","Cloud Agent","225601f3-655c-4c8d-96db-3bb1248ac8dc","2024-05-14T10:03:53.000+02:00","2026-04-22T07:04:46.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_PEAGE_DC,High,Production,SVP,Péage","508.0" +"129308228","191928332","vmpgmao7.sanef.groupe","VMPGMAO7","00:50:56:82:30:8E","10.41.40.176","","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.18993) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 c6 fa 39 e3 a9 e4-ca 48 2a 77 ad a8 70 45","NoAssetTag","'+02:00","2025-03-04T12:32:07.000+02:00","VMPGMAO7\CYBADMSYS","Cloud Agent","8312b01c-98c1-47f3-b85c-1df6bed5c992","2022-06-27T10:49:53.000+02:00","2026-04-22T07:04:39.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,VRF_TRAFIC_DC,COSWIN,Production,Exploitation,Obsolete,Cloud Agent,Windows Server","523.0" +"396145815","359780877","PCB25929.sanef.groupe","PCB25929","4C:CF:7C:0A:3C:3D","10.4.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222Y","","'+02:00","2026-04-17T15:46:08.000+02:00","SANEF\herault","Cloud Agent","9d042b07-6c15-442a-af86-daa018f1bf1d","2026-01-30T17:40:14.000+02:00","2026-04-22T07:04:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","242.0" +"318425666","328043648","vrameakfk2.sanef-rec.fr","","00:50:56:9c:a5:17","10.45.2.41","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c8 7e 4b fb 71 b1-0c 8d e5 80 63 d2 e3 19","No Asset Tag","'+02:00","2026-04-20T09:28:21.000+02:00","cybsupapp","Cloud Agent","dbd56bd1-f707-4d45-81e5-8ac18665e209","2025-04-22T14:50:03.000+02:00","2026-04-22T07:04:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Amelie","48.0" +"376096355","351375505","PCB18263.sanef.groupe","PCB18263","C8:CB:9E:80:03:31","10.255.4.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y8S","8CC2250Y8S","'+02:00","2026-04-16T09:24:53.000+02:00","SANEF\garciar","Cloud Agent","74d65e47-978f-43ab-b4ae-8aa878deae87","2025-11-12T12:32:26.000+02:00","2026-04-22T07:04:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"229191355","257963095","vvbocarep1.sanef-rec.fr","","00:50:56:9c:fb:45","10.45.6.13","fe80::250:56ff:fe9c:fb45","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c dd a5 63 3c 60 79-e1 14 79 d3 63 26 30 34","No Asset Tag","'+02:00","2026-03-11T15:24:54.000+02:00","cybsupsys","Cloud Agent","87dfc34b-5199-4079-81b3-d53eed892e4d","2024-04-11T10:29:55.000+02:00","2026-04-22T07:04:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0" +"139158077","198270619","vmampstg1","","00:50:56:82:1D:1F, 00:50:56:82:31:55, 00:50:56:82:20:3D","10.41.40.45,10.41.40.49,10.43.40.45,10.43.40.49,10.43.4.45","fe80::250:56ff:fe82:1d1f,fe80::250:56ff:fe82:3155,fe80::250:56ff:fe82:203d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 68 9f 2a 20 3f 69-09 5c 0a fb 5d 99 6c 23","No Asset Tag","'+02:00","2024-02-13T14:07:51.000+02:00","cybreconcile","Cloud Agent","9f42509a-bdc6-4442-92af-24d7c02bff27","2022-09-07T14:32:19.000+02:00","2026-04-22T07:04:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Trafic,Cloud Agent,Linux Server,log4j,Obsolete,DEX,VRF_TRAFIC_DC,OS-LIN-SRV DYN,SSTG,Production","698.0" +"130583160","192832674","vmcmdb1","","00:50:56:82:2a:23","10.30.11.107","fe80::250:56ff:fe82:2a23","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d bb 7b 8a eb f9 ef-52 af 84 7c 73 cb d1 b5","No Asset Tag","'+02:00","2025-10-09T11:34:20.000+02:00","cybastsys","Cloud Agent","adf31e08-00b0-40ec-b4b7-0c02de37e963","2022-07-07T11:25:27.000+02:00","2026-04-22T07:04:08.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,Bases de Données,VRF_INCONNUE,Recette,Production,Péage,BDD-POS DYN,ITOP,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,Obsolete","682.0" +"193239279","240746200","vpbocsman1.sanef.groupe","","00:50:56:90:75:83","10.41.22.12","fe80::250:56ff:fe90:7583","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 84 b1 8b 62 45 c3-fd 8e 0f 6e bf d0 38 36","No Asset Tag","'+02:00","2026-04-01T22:07:00.000+02:00","cybreconcile","Cloud Agent","f3962cdd-3357-4b22-9c0b-a019e669a722","2023-10-13T15:25:07.000+02:00","2026-04-22T07:04:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","140.0" +"241566316","276527664","vpvsaamez2","","00:50:56:90:1a:be","192.168.18.74","fe80::250:56ff:fe90:1abe","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 7f 0e 93 96 35 ca-ce 63 bd 18 94 c8 3d c9","No Asset Tag","'+02:00","2026-02-05T12:16:52.000+02:00","tbaad-ext","Cloud Agent","9694f565-91c5-47a8-8306-bab0c8309f12","2024-06-04T14:24:06.000+02:00","2026-04-22T07:03:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"178993124","231838279","vpsasawrk5.sanef.groupe","","00:50:56:82:88:17","10.41.32.14","fe80::250:56ff:fe82:8817","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d0 ae 00 c5 2f c4-44 7e 95 ec 2f ba 28 d3","No Asset Tag","'+02:00","2026-03-25T16:09:16.000+02:00","cybreconcile","Cloud Agent","4550baae-9ce1-4137-a685-0e12f058c7dd","2023-07-18T16:09:08.000+02:00","2026-04-22T07:03:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,SAS,DSI,Cloud Agent,Linux Server","86.0" +"373865559","350360793","PSX18700.sanef-int.adds","PSX18700","30:13:8B:6C:79:2E","10.12.40.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.04","CZC44473W2","","'+02:00","2026-03-01T08:32:36.000+02:00","UserSextan","Cloud Agent","a0b55e91-d98c-4441-98a0-4cc6f58e476a","2025-11-03T16:12:13.000+02:00","2026-04-22T07:03:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"317723208","327745804","PCB23580.sanef.groupe","PCB23580","6C:0B:5E:EE:EC:D4","10.100.39.188","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L59","","'+02:00","2026-03-29T09:28:56.000+02:00","SANEF\CENSIER","Cloud Agent","3c665a80-0f82-4ba1-be79-5baa639d2aa2","2025-04-18T13:22:22.000+02:00","2026-04-22T07:03:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"175568112","229347672","vvbotrssc2.sanef-rec.fr","","00:50:56:9c:67:a2","10.45.6.164","fe80::250:56ff:fe9c:67a2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 4e 3a 51 02 96 38-5e 0b 6a c4 19 45 b9 ec","No Asset Tag","'+02:00","2026-03-10T15:25:00.000+02:00","cybreconcile","Cloud Agent","81ec73f5-fd15-4e74-9273-5176ea4ea726","2023-06-23T11:47:55.000+02:00","2026-04-22T07:03:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,flux_libre,FreeFlow,Recette,Cloud Agent,Linux Server,Flux Libre","139.0" +"244050629","283240145","MTO21622.sanef.groupe","MTO21622","D0:AD:08:A4:4D:C3","10.8.31.1","fe80::c155:c4ff:f337:13b2","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6491) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JL","","'+02:00","2026-02-14T19:08:05.000+02:00","SANEF\meteonewsW11","Cloud Agent","c7ffa75b-9818-456a-9342-472b5a8a8382","2024-06-14T16:57:13.000+02:00","2026-04-22T07:03:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"364314681","346490181","PCV21502.sanef-int.adds","PCV21502","D0:AD:08:A7:27:AF","10.210.57.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YT9","","'+02:00","2026-04-13T18:41:37.000+02:00","Operateur","Cloud Agent","75c9c37d-6d26-4f1f-9e90-6994d327cfa5","2025-09-30T15:00:22.000+02:00","2026-04-22T07:03:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"406249126","363563892","PCV18675.sanef-int.adds","PCV18675","30:13:8B:6C:5D:63","10.12.7.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473WJ","","'+02:00","2026-03-05T12:40:58.000+02:00","Operateur","Cloud Agent","ee0b21a7-a72a-43f6-a689-5896a9fcf445","2026-03-05T12:24:04.000+02:00","2026-04-22T07:03:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"128166041","191099477","vpemvaxsr1","VPEMVAXSR1","00:50:56:98:3F:95, 00:50:56:98:49:68","192.168.105.1,192.168.100.131","fe80::3ce0:1669:302e:298f,fe80::bc77:4783:e18c:f733","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2397","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","4096","Phoenix Technologies LTD 6.00","VMware-42 18 5c 11 67 a7 10 45-75 57 85 56 76 72 eb 45","NoAssetTag","'+02:00","2025-03-05T13:26:49.000+02:00","mboad-ext","Cloud Agent","5a399e4f-825c-4818-bdf2-7cd3617f281c","2022-06-16T16:15:42.000+02:00","2026-04-22T11:47:27.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,Windows Server,OS-WIN-SRV DYN,DEX,Exploitation IT,Production,DMZ,Sans,PCI Bunker Echange,PCI Bunker EMV - VLAN Echange,Obsolete,Cloud Agent,EMV","685.0" +"215222543","251728636","ls-yerville","LS-YERVILLE","00:50:56:90:73:B7","10.41.2.87","fe80::9f75:800f:7c14:cb0a","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 60 ed eb 36 dd 11-d7 78 dd fc fc b9 2a d8","NoAssetTag","'+02:00","2026-02-17T15:32:17.000+02:00","svpadmin","Cloud Agent","2fffc18b-88c6-4b1f-bb11-0969ce62ea8f","2024-02-12T16:15:55.000+02:00","2026-04-22T11:01:17.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Production,Péage,DEX,Haute,High,VRF_PEAGE_DC","635.0" +"202758101","245521798","vposapast1.sanef.groupe","","00:50:56:90:f1:c2","10.41.8.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 80 94 9a 23 33 77-48 f4 53 be 39 dc 0f d4","No Asset Tag","'+02:00","2026-03-04T07:52:35.000+02:00","cybreconcile","Cloud Agent","69ba10f2-4559-4503-8388-2dbdb6cec2b7","2023-12-06T13:31:42.000+02:00","2026-04-22T07:03:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,Production,OS-LIN-SRV DYN,DEX","144.0" +"381946188","353743070","PCB22350.sanef.groupe","PCB22350","D0:AD:08:A3:E5:E2","10.252.42.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNZ","8CC3502YNZ","'+02:00","2026-03-28T09:11:53.000+02:00","SANEF\rousselmu","Cloud Agent","9d66fd57-7912-475c-8bc6-94f63e575b6a","2025-12-05T16:59:42.000+02:00","2026-04-22T07:02:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"195994447","242028806","MTR-32DSNT3","MTR-32DSNT3","90:8D:6E:93:CB:8E","10.207.32.201","","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","32DSNT3","","'+02:00","2026-04-22T02:32:58.000+02:00","Skype","Cloud Agent","327dfbd7-fe92-45b5-9b95-e011fd060104","2023-10-27T12:24:55.000+02:00","2026-04-22T07:02:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"382151069","353841267","PCB22319.sanef.groupe","PCB22319","D0:AD:08:A3:7C:FB","10.252.42.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZG","8CC3502YZG","'+02:00","2026-04-09T10:19:59.000+02:00","SANEF\parisot","Cloud Agent","90a1e691-a1b6-483d-aecc-2e1cd0d6cb9c","2025-12-06T19:52:45.000+02:00","2026-04-22T07:02:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"368987646","348261354","MTR-7BD4804","MTR-7BD4804","6C:3C:8C:50:F0:EF","10.101.246.210","fe80::70d:620d:adec:315","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","7BD4804","","'+02:00","2026-04-22T02:33:21.000+02:00","Skype","Cloud Agent","5727d6c2-0d3f-4750-a43f-b2572dae179c","2025-10-15T16:13:30.000+02:00","2026-04-22T07:02:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"186849609","237041101","MTR-DQ3J8Y3","MTR-DQ3J8Y3","6C:3C:8C:3D:60:F3","10.107.32.200","fe80::b706:b71d:3541:bdc1","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","DQ3J8Y3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","173da76f-2f2e-46bb-ae9b-60d69a3ca7a1","2023-09-08T10:46:34.000+02:00","2026-04-22T07:02:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"205538618","246928536","vvaflbdwh1.recette.adds","VVAFLBDWH1","00:50:56:9C:11:28","10.45.7.167","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 1b f8 7e 54 56 e6-08 74 31 45 2c 4f 70 fc","NoAssetTag","'+02:00","2026-03-11T12:20:09.000+02:00","Administrateur","Cloud Agent","57bbf48e-e712-40dc-84da-6bc9dc8879a7","2023-12-21T12:52:37.000+02:00","2026-04-22T07:02:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Windows Server,BDD-SQL DYN,Flux Libre,OS-WIN-SRV DYN,Recette,flux_libre","252.0" +"320132436","328622307","PCB22446.sanef.groupe","PCB22446","D0:AD:08:A3:7B:CD","10.103.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW1","8CC3502YW1","'+02:00","2026-03-28T09:17:25.000+02:00","SANEF\rozette","Cloud Agent","e7e3b105-e378-46ef-b2e3-f69356670791","2025-04-28T13:56:02.000+02:00","2026-04-22T07:01:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"131262350","193313521","lampcrm1.serveur.est.sanef.fr","","00:17:A4:77:00:80","10.30.11.166","fe80::217:a4ff:fe77:80","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","8","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","12007","","VCX0000008","","'+02:00","2025-06-02T16:18:54.000+02:00","cybastapp","Cloud Agent","90e2ebad-e312-4974-a72f-79ae0f79cd43","2022-07-12T14:10:55.000+02:00","2026-04-22T07:01:43.000+02:00","x86_64","3","SCA,VM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,DSI,BDD-POS DYN,OS-LIN-SRV DYN,Cleo,Gestion commerciale,Sans,Production,Obsolete,ServersInCyberark","529.0" +"143625000","201025858","vpemvapol1","","00:50:56:82:cc:27","192.168.100.210","fe80::7499:cfde:6820:8896","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8f 36 0c f7 b9 4a-0b aa ab e7 ee 3e 4a 85","No Asset Tag","'+02:00","2025-10-28T17:58:14.000+02:00","root","Cloud Agent","f6a9bf03-3765-4870-80bf-04b49ce5ec59","2022-10-11T17:37:37.000+02:00","2026-04-22T07:01:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,PCI Bunker EMV,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,Obsolete,Centreon,VRF_INCONNUE,Cloud Agent,Linux Server","111.0" +"178994738","231838047","vpsasawrk4.sanef.groupe","","00:50:56:82:d5:bf","10.41.32.13","fe80::250:56ff:fe82:d5bf","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 95 27 ed 8e ec 68-0c 24 ee 91 71 e2 3f b6","No Asset Tag","'+02:00","2026-03-25T16:08:05.000+02:00","cybreconcile","Cloud Agent","28f3b331-7b56-4aea-b1d4-e48b98b4adc9","2023-07-18T16:05:20.000+02:00","2026-04-22T07:01:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,SAS,BDD-POS DYN,DSI","86.0" +"284373652","309489720","vtdsibquo1.sanef-rec.fr","","00:50:56:90:09:64","10.100.16.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 05 33 07 18 a6 ad-c2 24 36 1e e1 7a 34 fb","No Asset Tag","'+02:00","2026-01-20T12:44:52.000+02:00","cybadmbdd","Cloud Agent","d4c09689-9864-43d4-b09d-9148a5925d7c","2024-12-05T13:22:39.000+02:00","2026-04-22T07:01:20.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,PATRIMOINE,Cloud Agent,Linux Server","140.0" +"320931309","328815154","PCB23656.sanef.groupe","PCB23656","6C:0B:5E:EE:EC:DA","10.11.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L60","","'+02:00","2026-03-31T16:52:36.000+02:00","SANEF\niesp","Cloud Agent","40de764a-3161-4773-9ea9-d1a3ff03659d","2025-04-30T11:03:36.000+02:00","2026-04-22T07:01:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","253.0" +"287085773","310946513","MTR-8KRTL64","MTR-8KRTL64","D0:46:0C:95:2E:21","10.4.32.201","fe80::1d2e:e23a:bff3:feef","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","8KRTL64","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","78e501bc-18cb-424b-a298-d3478879e758","2024-12-17T10:33:35.000+02:00","2026-04-22T07:01:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"376175090","351403906","PCB18239.sanef.groupe","PCB18239","5C:60:BA:59:EC:F1","10.200.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.13.00","8CC2250Y89","","'+02:00","2026-03-28T09:17:11.000+02:00","SANEF\laine","Cloud Agent","51feab7e-635b-4aff-af65-e3ee0554ec61","2025-11-12T17:22:26.000+02:00","2026-04-22T07:00:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"284079753","308169839","MTR-FBD4804","MTR-FBD4804","6C:3C:8C:56:88:6A","10.100.32.207","fe80::55fe:3ba4:c5b9:b305","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","FBD4804","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","fbbbce9c-e9e0-4a86-84bc-d1254effa070","2024-12-04T11:24:27.000+02:00","2026-04-22T07:00:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"272386986","300986699","MTR-HBD4804","MTR-HBD4804","6C:3C:8C:56:88:74","10.103.32.200","fe80::279a:fff4:c8a9:36b7","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","HBD4804","","'+02:00","2026-04-22T02:32:56.000+02:00","Skype","Cloud Agent","be744b66-20c5-417f-b35b-928d1cd15db8","2024-10-15T16:42:53.000+02:00","2026-04-22T07:00:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"284198268","308308012","MTR-DKRTL64","MTR-DKRTL64","D0:46:0C:95:30:3A","10.100.32.213","fe80::fb4:8784:e2ba:d5d","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","DKRTL64","","'+02:00","2026-04-22T02:32:55.000+02:00","Skype","Cloud Agent","060b9fbb-dee2-48ed-95e8-6ae758c07756","2024-12-04T19:58:13.000+02:00","2026-04-22T07:00:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"177126092","230500288","MTR-8Q3J8Y3","MTR-8Q3J8Y3","6C:3C:8C:3D:5F:07","10.200.32.209","fe80::c9bc:6965:4834:73b8","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","8Q3J8Y3","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","140c4897-8fdf-42c6-8025-cf6354c784d9","2023-07-04T22:06:41.000+02:00","2026-04-22T07:00:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"129338920","191947131","vptraazen1.sanef.groupe","VPTRAAZEN1","00:50:56:82:0D:39","10.41.60.41","fe80::adca:2c88:5332:220a","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 6d c3 c4 66 f6 24-77 8b fd 74 1f 9b 53 2c","NoAssetTag","'+02:00","2026-02-12T15:54:32.000+02:00","SANEF.GROUPE\bmiad-ext@sanef.com","Cloud Agent","f3754639-d6bc-4a60-b4d7-b56473ce5a87","2022-06-27T14:39:23.000+02:00","2026-04-22T07:00:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,Outils transverses,Enregistrement_COM,VRF_BURO,OS-WIN-SRV DYN,BDD-SQL DYN,Cloud Agent,Windows Server,DEX","257.0" +"311188894","330493462","vrgawbpgs1.sanef-rec.fr","","00:50:56:9c:b2:e3","10.45.14.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c ae a7 c0 1e 76 3a-38 ea 0f 5e 63 b6 75 fe","No Asset Tag","'+02:00","2026-02-11T13:00:58.000+02:00","cybintsys","Cloud Agent","fe8d93a6-f708-4b08-a027-2195526d9300","2025-03-26T18:31:22.000+02:00","2026-04-22T07:00:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-POS DYN,Plateforme d'échange","58.0" +"217858385","252774031","vpemvatse1.sanef.groupe","VPEMVATSE1","00:50:56:82:3E:99","192.168.100.122","fe80::7577:a9ee:bae1:1676","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 3e 77 2a d4 02 52-f8 e3 00 88 5b 0f 25 ad","NoAssetTag","'+02:00","2025-10-14T10:38:56.000+02:00","VPEMVATSE1\herault","Cloud Agent","6ffc3179-054c-41d5-a750-37bcc17320f7","2024-02-23T17:13:33.000+02:00","2026-04-22T10:54:13.000+02:00","64-Bit","4","SCA,VM,PM,GAV","EMV,PCI Bunker EMV - VLAN Supervision/Admin,DEX,Cloud Agent,Windows Server,BDD-SQL DYN,OS-WIN-SRV DYN","701.0" +"331206420","","PCB17791.sanef.groupe","PCB17791","28:C5:D2:9F:C3:92","10.100.39.101,169.254.148.234","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3Z","","'+02:00","2026-04-21T10:06:15.000+02:00","SANEF\garciac","Cloud Agent","e012121c-a043-4233-a70c-c403052be66d","2025-06-05T17:11:06.000+02:00","2026-04-22T07:00:24.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"389765378","357529954","PCB18261.sanef.groupe","PCB18261","5C:60:BA:59:EC:E0","10.200.30.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y8J","8CC2250Y8J","'+02:00","2026-03-29T09:16:49.000+02:00","SANEF\TAMBOURAS","Cloud Agent","046dff83-2963-44aa-977d-574c419dbfb6","2026-01-09T09:23:04.000+02:00","2026-04-22T10:25:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"129948367","192392980","vpaiiapkg1","VPAIIAPKG1","00:50:56:82:6B:D8","10.30.6.6","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 98 e8 02 14 78 64-ca cd f4 2a ef d8 83 4f","NoAssetTag","'+02:00","2026-04-16T17:09:11.000+02:00","Package","Cloud Agent","35405daa-502d-47f9-97bb-7829728fb289","2022-07-01T11:57:28.000+02:00","2026-04-22T11:40:03.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,Basse,Package,Workstation,DSI,BDD-SQL DYN,Low,Production,Outils prod (Monitoring, NMS, gestion de parc)","507.0" +"377186426","351928819","PCB18243.sanef.groupe","PCB18243","5C:60:BA:59:EC:E8","10.200.30.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.13.00","8CC2250Y8N","8CC2250Y8N","'+02:00","2026-03-28T09:16:20.000+02:00","SANEF\mediouni-ext","Cloud Agent","2803eb78-81d4-45d9-b9b3-ff62c8243e4d","2025-11-17T13:54:59.000+02:00","2026-04-22T06:59:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"299322920","319723155","MTR-DBD4804","MTR-DBD4804","6C:3C:8C:50:F1:27","10.219.32.200","fe80::b43:4f2c:5c6d:2f81","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","DBD4804","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","0adde508-d88e-422f-8028-3a3ca64b6745","2025-02-11T11:04:57.000+02:00","2026-04-22T10:46:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"400930315","361764103","PCV20888.sanef-int.adds","PCV20888","30:13:8B:6C:5F:16","10.100.7.68","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q83","","'+02:00","2026-02-17T13:23:10.000+02:00","Operateur","Cloud Agent","38e71312-d2e6-49d7-bbc0-db0d923caba2","2026-02-17T13:45:07.000+02:00","2026-04-22T06:59:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"320117638","328623084","PCB23566.sanef.groupe","PCB23566","6C:0B:5E:EC:DD:9D","10.89.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9G","","'+02:00","2026-04-02T15:55:43.000+02:00","SANEF\DELAUNAY","Cloud Agent","7a8c9e41-58f5-4bea-893a-58c1016416d0","2025-04-28T14:08:17.000+02:00","2026-04-22T06:59:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"295840239","317389833","vpngwasia2","","00:50:56:94:df:a9","10.44.2.197","fe80::250:56ff:fe94:dfa9","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 c8 60 db c0 ee 4d-d2 e5 84 bb d1 d0 4a 54","No Asset Tag","'+02:00","2026-02-02T16:48:11.000+02:00","tbaad","Cloud Agent","519cf2ee-5556-4e62-841b-af4a5a3c3ce7","2025-01-29T11:45:08.000+02:00","2026-04-22T06:59:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server","53.0" +"231598452","259378239","vpsecbcadg2.sanef.groupe","VPSECBCADG2","00:50:56:82:32:BE","10.41.50.11","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-56 4d 0a 8b be 70 3f 66-7d cf 57 3e ba 4a b2 3c","NoAssetTag","'+02:00","2026-04-15T11:50:40.000+02:00","Administrateur","Cloud Agent","766a4505-13d7-496d-8467-265ae6d5983c","2024-04-22T16:44:41.000+02:00","2026-04-22T10:32:44.000+02:00","64-Bit","3","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,Nedap,Cloud Agent,Windows Server,DEX","497.0" +"127973464","190998241","vpaiiacam2","VPAIIACAM2","00:50:56:82:24:12","192.168.200.18","fe80::1191:6116:3ffd:cdeb","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-56 4d 31 60 00 4f ed 2a-6d f5 9b 71 12 ed 40 fc","NoAssetTag","'+02:00","2026-04-21T23:59:15.000+02:00","Administrateur","Cloud Agent","10eb67bf-eb4c-49b7-b5f9-4c0319a9f9c5","2022-06-15T13:56:21.000+02:00","2026-04-22T06:58:55.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Exploitation,DMZ,Production,Sans,VRF_INCONNUE,DEX,OS-WIN-SRV DYN,Windows Server,Autoroutes trafic,TAG-SRVEXPOSEINDIRECT,Cloud Agent","0.0" +"131405535","193423432","vastapp1.sanef.groupe","","00:50:56:82:05:81","10.30.10.28","fe80::250:56ff:fe82:581","Linux / Server","The CentOS Project CentOS 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3833","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 ec 06 40 2b 24 69-07 b2 4f 24 dc ce 7d 43","No Asset Tag","'+02:00","2024-11-28T11:18:16.000+02:00","cybreconcile","Cloud Agent","eff2945f-584a-4870-ae6d-a4dec2ede75a","2022-07-13T10:25:15.000+02:00","2026-04-22T06:58:52.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,Obsolete,Moyenne,ServersInCyberark,Péage,Production,Medium,VRF_INCONNUE,BDD-POS DYN,DEX,ADV-U","699.0" +"340054184","336780133","vppwdbsql1.sanef.groupe","","00:50:56:94:99:8b","10.44.1.204","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 79 99 86 b3 83 7e-33 8d a0 75 1f 7d 24 97","No Asset Tag","'+02:00","2026-01-12T11:15:14.000+02:00","cybadmbdd","Cloud Agent","528c381a-7196-4ce4-b292-3e8e87eae124","2025-07-08T10:17:27.000+02:00","2026-04-22T06:58:36.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","332.0" +"318396680","328031335","PCB21178.sanef.groupe","PCB21178","D0:AD:08:E4:B1:EE","10.155.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVW","","'+02:00","2026-04-20T12:56:36.000+02:00","SANEF\boutillier","Cloud Agent","2cb33b4e-d775-498a-a575-d82eb891f033","2025-04-22T12:29:26.000+02:00","2026-04-22T06:58:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"156227469","209333499","vpagtatse1.sanef.groupe","VPAGTATSE1","00:50:56:82:0D:81","10.46.33.23","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","65535","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 36 84 43 f0 7c 4e-2f 06 b1 c9 9e 8e f4 e3","NoAssetTag","'+02:00","2026-04-22T03:01:59.000+02:00","Administrateur","Cloud Agent","994dbe9e-3b7a-48f4-9231-9236d4859204","2023-01-20T15:26:25.000+02:00","2026-04-22T06:58:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","AgileTime,VRF_BURO_DC,DRH,OS-WIN-SRV DYN,Cloud Agent,Windows Server","249.0" +"376415237","351518008","vpcybapsp1.sanef.groupe","","00:50:56:9c:6c:8d","10.44.1.74","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f9 be bd f5 ad b8-ce 39 02 93 63 8c d7 98","No Asset Tag","'+02:00","2026-03-23T10:04:47.000+02:00","cybsecope","Cloud Agent","1c8a2d4b-a8c2-4153-921f-733552d74b8c","2025-11-13T17:20:19.000+02:00","2026-04-22T06:58:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,Production,CyberArk","152.0" +"208784339","248752685","vibotatst1.sanef.groupe","","00:50:56:90:f4:29","10.41.23.147","fe80::250:56ff:fe90:f429","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 37 5b 95 76 60 67-c1 9b 21 e0 40 c7 d9 ac","No Asset Tag","'+02:00","2026-03-18T10:48:36.000+02:00","cybreconcile","Cloud Agent","663f1a10-8f92-4ba0-9ce1-64a95e276b54","2024-01-10T13:46:44.000+02:00","2026-04-22T06:57:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,FreeFlow,Flux Libre,Cloud Agent,Linux Server,flux_libre","140.0" +"175946491","229615309","vvbotcach1.sanef-rec.fr","","ca:d9:7b:7f:b4:62, 00:50:56:9c:bd:e0, 2e:96:62:6f:39:9b, ae:af:ba:79:bd:b1, 16:cb:70:08:47:44, ba:bf:e5:0c:37:9e, e2:9c:39:9f:87:eb, ee:ff:c5:a2:32:80, e2:95:66:e1:cd:79","10.89.0.1,10.45.6.134","fe80::c8d9:7bff:fe7f:b462,fe80::250:56ff:fe9c:bde0,fe80::2c96:62ff:fe6f:399b,fe80::acaf:baff:fe79:bdb1,fe80::14cb:70ff:fe08:4744,fe80::b8bf:e5ff:fe0c:379e,fe80::e09c:39ff:fe9f:87eb,fe80::ecff:c5ff:fea2:3280,fe80::e095:66ff:fee1:cd79","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 06 eb b3 4e 4f 09-7c db 21 c2 f7 68 06 55","No Asset Tag","'+02:00","2026-03-23T17:32:51.000+02:00","kapschsysuser","Cloud Agent","c4c636e9-9e2e-4e12-8ce8-070f2ee3cca3","2023-06-26T16:09:59.000+02:00","2026-04-22T06:57:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,Recette,Cloud Agent,Linux Server,flux_libre,FreeFlow","140.0" +"363271952","346043088","vpdataapp1.sanef.groupe","","00:50:56:90:82:b9","10.41.40.145","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 dd ff 41 d8 ef 31-e1 05 cd e9 41 2e a3 c1","No Asset Tag","'+02:00","2026-01-27T15:00:44.000+02:00","cybadmroot","Cloud Agent","823fbea8-e9dc-41fc-a34f-34fe775d6ace","2025-09-26T14:21:14.000+02:00","2026-04-22T06:57:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","138.0" +"212784022","250654143","rsminas1.sanef.groupe","","AC:16:2D:BE:79:B8","10.30.10.244","fe80::ae16:2dff:febe:79b8","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant DL180 G6 Server","4","2130","Intel(R) Xeon(R) CPU E5606 @ 2.13GHz","7990","HP O20 05/01/2012","CZJ2380H9F","","'+02:00","2025-02-24T15:29:36.000+02:00","cybreconcile","Cloud Agent","eb25f56d-085a-4297-9e74-3537e0c10174","2024-01-30T20:29:34.000+02:00","2026-04-22T06:57:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,log4j,Package,DSI,Obsolete","346.0" +"387006557","356431219","vmdispt01.recette.adds","VMDISPT01","00:50:56:9C:0E:C4","10.45.17.62","fe80::df23:e686:6263:7b6a","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c fe 01 30 47 e8 cb-ee 3a 02 b5 b3 2d 95 49","NoAssetTag","'+02:00","2026-04-17T17:19:05.000+02:00","supwindev","Cloud Agent","fd1e6693-11ec-4570-96d3-eea298f6fb8c","2025-12-30T16:06:02.000+02:00","2026-04-22T06:57:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","240.0" +"178987974","231834396","vpsasawrk2.sanef.groupe","","00:50:56:9c:3c:7e","10.41.32.11","fe80::250:56ff:fe9c:3c7e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 44 cd f4 1c 05 f6-ec 5a 77 9f 48 d7 bd ee","No Asset Tag","'+02:00","2026-03-25T16:05:19.000+02:00","cybreconcile","Cloud Agent","282d4b3d-dc63-4714-9802-de796af6d28c","2023-07-18T15:24:52.000+02:00","2026-04-22T06:57:17.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,SAS,BDD-POS DYN,OS-LIN-SRV DYN,DSI","86.0" +"131270155","193318578","lpsimbpfe1.sanef.groupe","","00:17:a4:77:08:0c","10.30.11.35","fe80::dbd2:64a5:3f9a:488","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","15915","HP I36 07/18/2022","CZ255301Y3","","'+02:00","2024-09-26T09:49:06.000+02:00","root","Cloud Agent","6974b918-ea34-4b17-ba9e-1844c04cfc61","2022-07-12T15:22:29.000+02:00","2026-04-22T06:57:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Obsolete,Plateforme d'échange,log4j,Cloud Agent,Linux Server,Production,Exploitation IT,OS-LIN-SRV DYN,VRF_INCONNUE,DEX","342.0" +"131406886","193425562","vpexpaxfb1.sanef.groupe","","00:50:56:82:8e:9f","10.42.16.10","fe80::96d1:3f1f:8fd7:b2b5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d cf d5 53 cd b9 ff-af 5a 56 80 d5 e4 c7 ad","No Asset Tag","'+02:00","2026-02-12T11:28:39.000+02:00","cybreconcile","Cloud Agent","c75eb41c-4217-4836-8eb9-0fb55afb2d1f","2022-07-13T10:46:25.000+02:00","2026-04-22T06:57:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","DEX,Production,Cloud Agent,Linux Server,VRF_ECHANGE_DC,XFB,OS-LIN-SRV DYN","145.0" +"397128337","360217248","PCB16099.sanef.groupe","PCB16099","F4:4E:E3:BF:6B:43","10.255.3.180","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129285N","8CC129285N","'+02:00","2026-03-29T09:15:04.000+02:00","SANEF\cardinale","Cloud Agent","b85cb608-86fc-45d7-8802-70d40c56000b","2026-02-03T12:15:23.000+02:00","2026-04-22T06:56:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"416050086","367717577","vrzbxaapp2.sanef-rec.fr","","00:50:56:9c:8f:39","10.45.15.197","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 4b 1a 2e c5 4c c9-04 c2 fa 36 29 42 10 c4","No Asset Tag","'+02:00","2026-04-15T16:50:37.000+02:00","root","Cloud Agent","f1b1bdb2-aba9-42c3-b024-668c319824e6","2026-04-15T15:19:46.000+02:00","2026-04-22T06:56:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"407993958","364306731","splogbels1","","40:5b:7f:e1:b0:8d","10.44.7.41","fe80::425b:7fff:fee1:b08d","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G11 Server","32","","INTEL(R) XEON(R) SILVER 4514Y","31586","HPE 2.50 04/22/2025","CZ2D3C0G32","","'+02:00","2026-04-17T15:24:14.000+02:00","reboot","Cloud Agent","6babbc6b-af04-4507-a5a5-1cca7d385c4d","2026-03-12T14:43:01.000+02:00","2026-04-22T06:56:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN,Elasticsearch,Production","152.0" +"225100522","255962387","ls-st-avold-a","LS-ST-AVOLD-A","00:50:56:90:8F:D6","10.112.2.20","fe80::9d25:d076:1c48:ae1b","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 43 af 06 f1 23 d6-f8 72 d7 2a 52 2d 5b c9","NoAssetTag","'+02:00","2026-03-03T15:17:18.000+02:00","svpadmin","Cloud Agent","5cb2883d-751c-4274-a983-f35c1380925f","2024-03-25T12:35:36.000+02:00","2026-04-22T06:56:14.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,DEX,Péage,OS-WIN-SRV DYN,Haute,High,Production,Cloud Agent,Windows Server","851.0" +"348196101","339535211","PCB22451.sanef.groupe","PCB22451","D0:AD:08:A3:E6:D3","10.108.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPY","8CC3502YPY","'+02:00","2026-03-31T08:31:56.000+02:00","SANEF\BURY","Cloud Agent","576a12e8-bb26-41bc-8891-d4eb9fd30705","2025-08-01T15:09:23.000+02:00","2026-04-22T06:56:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"364973468","346716832","PCV22452.sanef-int.adds","PCV22452","D0:AD:08:A3:7B:DB","10.100.7.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YVP","","'+02:00","2025-12-29T05:57:11.000+02:00","Operateur","Cloud Agent","c9217d93-5c52-4cdd-9fb6-911d84a1094a","2025-10-02T14:25:36.000+02:00","2026-04-22T06:56:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"131142756","193232215","vmcmdb","","00:50:56:82:89:58","10.30.11.126","fe80::250:56ff:fe82:8958","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-5c 9a 02 42 e2 29 78 a4-73 39 00 04 68 fe dd 76","No Asset Tag","'+02:00","2024-12-18T15:24:38.000+02:00","cybreconcile","Cloud Agent","215653c1-a242-4eee-bac0-657357541f10","2022-07-11T16:24:04.000+02:00","2026-04-22T06:56:03.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,Trafic,Recette,ITOP,Obsolete,VRF_INCONNUE","675.0" +"322364793","329433891","PCB22774.sanef.groupe","PCB22774","D0:AD:08:A7:28:66","10.149.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLZ","8CC3502YLZ","'+02:00","2026-04-21T15:55:16.000+02:00","SANEF\lemoinec","Cloud Agent","f1fc3f85-b645-414c-b98a-5b2a51ec6a2a","2025-05-06T11:44:19.000+02:00","2026-04-22T06:55:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"295975028","317392823","vpvsaasia1","","00:50:56:94:26:36","10.44.2.200","fe80::250:56ff:fe94:2636","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 55 2f f1 7e 8f d8-37 f0 26 6d e1 12 63 8a","No Asset Tag","'+02:00","2026-02-02T16:43:43.000+02:00","tbaad","Cloud Agent","75796606-f2a5-4510-9e2a-8d1ba5778e54","2025-01-29T12:11:48.000+02:00","2026-04-22T06:55:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0" +"162039853","215781556","vpsasacpt1.sanef.groupe","","00:50:56:82:03:5b","10.41.32.7","fe80::250:56ff:fe82:35b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","386444","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 20 dd 1b 99 33 df-70 0d f5 60 7c a9 e0 e3","No Asset Tag","'+02:00","2026-03-25T16:00:22.000+02:00","cybreconcile","Cloud Agent","fe65813a-d961-484f-b252-9ee5d6cb7734","2023-03-08T15:38:55.000+02:00","2026-04-22T06:55:51.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,SAS,Cloud Agent,Linux Server,DSI","93.0" +"334628432","334246205","PCB24109.sanef.groupe","PCB24109","48:EA:62:CB:DE:35","10.1.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6Q","","'+02:00","2026-03-31T17:11:07.000+02:00","SANEF\BRAWACKI","Cloud Agent","49dbaa80-a95c-4f84-90f9-d5fd32409ff5","2025-06-19T09:42:36.000+02:00","2026-04-22T11:26:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"279169222","304712472","vrtrabtpc1","VRTRABTPC1","00:50:56:82:07:34","10.43.255.10","fe80::1b9:52a5:36f:b6b8","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24575","Phoenix Technologies LTD 6.00","VMware-42 02 0a 53 8b 11 ca f3-ab 38 cb 19 fc 74 13 fc","NoAssetTag","'+02:00","2026-04-07T14:55:07.000+02:00","Administrateur","Cloud Agent","f11905f7-081c-41fe-91a3-41ec9b430f76","2024-11-14T15:39:30.000+02:00","2026-04-22T06:55:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-WIN-SRV DYN,Cloud Agent","250.0" +"363905873","346376318","PCB21599.sanef.groupe","PCB21599","D0:AD:08:A4:4D:A7","10.12.31.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711KD","8CC34711KD","'+02:00","2026-04-21T12:56:32.000+02:00","SANEF\patte","Cloud Agent","840c16e1-f236-42ff-b4ae-6e307bf105ed","2025-09-29T15:09:02.000+02:00","2026-04-22T06:55:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"373882203","350368043","PCB17077.sanef.groupe","PCB17077","E0:70:EA:A8:75:92","10.100.39.61","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","3096","Intel(R) Core(TM) i5-10500 CPU @ 3.10GHz","16159","HP S21 Ver. 02.23.00","8CC14326DH","8CC14326DH","'+02:00","2026-04-13T10:27:33.000+02:00","SANEF\FEUILLETTE","Cloud Agent","f0f8a465-98e9-4232-9069-86ab6d94dfc5","2025-11-03T17:37:28.000+02:00","2026-04-22T06:55:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"131405762","193424770","vmquorum1.sanef.groupe","","00:50:56:82:5D:D3","10.102.2.11","fe80::250:56ff:fe82:5dd3","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 0c c5 ed f0 97 2d-b4 cb f2 2e 27 19 ea 19","No Asset Tag","'+02:00","2025-01-22T12:14:26.000+02:00","cybreconcile","Cloud Agent","f4622346-fe46-4098-8fd1-0d9bd920de6f","2022-07-13T10:36:59.000+02:00","2026-04-22T06:55:41.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,DEX,Obsolete,Production,Sextan","700.0" +"322639738","329610123","PCB22824.sanef.groupe","PCB22824","D0:AD:08:A7:28:27","10.219.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJN","8CC3502YJN","'+02:00","2026-03-29T09:12:33.000+02:00","SANEF\crouinn","Cloud Agent","59d32092-8cda-455c-8669-9b1f71d1bb66","2025-05-07T16:46:16.000+02:00","2026-04-22T06:55:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"358779414","344245999","vrcybapta1","","00:50:56:9c:fa:b5","10.45.11.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11700","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c8 c0 6e 1c 85 f3-ac 52 3a dd e2 8f f8 01","No Asset Tag","'+02:00","2026-04-16T10:48:49.000+02:00","cybreconcile","Cloud Agent","bbf8ae39-41ed-49c7-a126-946a2741aecd","2025-09-11T09:26:33.000+02:00","2026-04-22T06:55:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN,CyberArk,Recette","336.0" +"213850551","251129618","sppeaanvr4","SPPEAANVR4","94:40:C9:ED:9B:F8","10.41.7.103","fe80::1937:8dd8:17e:1af7","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","8","3791","Intel(R) Xeon(R) Gold 5222 CPU @ 3.80GHz","16041","HPE U30","CZ20040900","","'+02:00","2026-01-28T15:17:10.000+02:00","Administrateur","Cloud Agent","4045c426-3ba7-42b6-90d4-849f8483090c","2024-02-05T20:36:53.000+02:00","2026-04-22T06:55:06.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN,DEX","523.0" +"139375864","198361633","spasuagsm4","","b4:7a:f1:b3:e7:09, b4:7a:f1:b3:e7:08","10.43.4.212,10.41.40.212","fe80::b67a:f1ff:feb3:e709,fe80::b67a:f1ff:feb3:e708","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/14/2022","CZJ81900F2","","'+02:00","2025-10-08T16:09:42.000+02:00","cybreconcile","Cloud Agent","239632ad-773e-46c7-81cb-452e6531aa02","2022-09-08T15:34:56.000+02:00","2026-04-22T06:54:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","Production,Exploitation,VRF_INCONNUE,DSI,BDD-POS DYN,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server,ASUR","524.0" +"356385720","343287450","PCB24173.sanef.groupe","PCB24173","24:FB:E3:F3:BA:76","10.100.39.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG52136XB","","'+02:00","2026-03-29T09:15:08.000+02:00","SANEF\BORCELLE","Cloud Agent","4097cb8d-8a29-4a78-b57e-772e855dd0b2","2025-09-02T17:46:41.000+02:00","2026-04-22T06:54:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"267915555","298667066","VPA14CGTC1","VPA14CGTC1","00:50:56:90:94:A2","10.41.19.75","fe80::68bf:526c:f778:246c","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6783) 64-Bit","23H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 26 ef 75 9b 7c d4-35 a8 e4 4c 10 05 bd 76","NoAssetTag","'+02:00","2026-03-23T15:22:28.000+02:00","gtc-client","Cloud Agent","ea6202e2-6252-483b-9466-60b610ae2a01","2024-09-26T11:37:21.000+02:00","2026-04-22T06:54:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","340.0" +"356380927","343284977","PCB21594.sanef.groupe","PCB21594","D0:AD:08:A3:E7:23","10.100.39.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXX","8CC3502YXX","'+02:00","2026-03-28T09:12:02.000+02:00","SANEF\PSI","Cloud Agent","24c32ff1-20dd-42e7-9712-0c87a35489eb","2025-09-02T17:19:24.000+02:00","2026-04-22T06:54:31.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Cloud Agent,Workstation","670.0" +"369277894","348354786","vrdsiaito1.sanef-rec.fr","","00:50:56:9c:0b:ac","10.45.15.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 14 09 8f cb c0 b4-4c 0f fc c5 0c e4 3b 21","No Asset Tag","'+02:00","2026-04-10T10:01:22.000+02:00","cybsupapp","Cloud Agent","ad2c0f09-1ecd-4312-8a4c-0c7d53077036","2025-10-16T11:55:50.000+02:00","2026-04-22T06:54:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","139.0" +"204318593","246305044","vpaiiagml1","VPAIIAGML1","00:50:56:82:78:70","192.168.190.199","fe80::406c:3b3a:c35d:743b","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 83 cf a2 5c 6a b6-47 2a 89 24 2d 9f ab c4","NoAssetTag","'+02:00","2026-04-20T09:46:13.000+02:00","Administrateur","Cloud Agent","b3bcbf3c-5160-4c36-bf19-e45e2eaa76ae","2023-12-14T15:57:52.000+02:00","2026-04-22T06:54:21.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DSI,Cloud Agent,Windows Server,GEMALTO,TAG-SRVEXPOSEINTERNET,OS-WIN-SRV DYN","0.0" +"373212905","350070988","vpameasxt1.sanef.groupe","","00:50:56:90:3e:d6, 00:50:56:90:1e:f8","10.43.4.25,10.41.41.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 8b 3c 35 35 56 96-78 8b 90 84 23 83 a4 05","No Asset Tag","'+02:00","2025-11-12T09:33:10.000+02:00","cybreconcile","Cloud Agent","b6929662-ee8c-4e67-afe2-eb5686a424e3","2025-10-31T11:57:06.000+02:00","2026-04-22T06:53:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,Sextan,Production","662.0" +"176399068","229973934","vpdaibana3","VPDAIBANA3","00:50:56:90:F2:65","10.41.70.22","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 95 a5 45 50 91 d0-aa fb a4 e2 c9 d8 c2 b5","NoAssetTag","'+02:00","2026-04-16T11:51:18.000+02:00","ecoad-ext","Cloud Agent","1dd975bb-a8ba-45ba-b773-57567bdae6d3","2023-06-29T11:08:39.000+02:00","2026-04-22T06:53:58.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DAI,BDD-POS DYN,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","354.0" +"391030446","357804470","PCB21550.sanef.groupe","PCB21550","D0:AD:08:A7:28:6A","10.5.31.41","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLV","8CC3502YLV","'+02:00","2026-04-20T14:21:58.000+02:00","SANEF\chanat","Cloud Agent","cde63e7f-f5e3-479f-b487-f8e77bf69517","2026-01-12T11:22:30.000+02:00","2026-04-22T06:53:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"112196090","180151399","vmamrrdt2","","00:50:56:82:53:79, 00:50:56:82:4F:D5","10.45.2.186,10.45.2.188,10.45.2.192,10.45.2.194,10.45.3.186,10.45.3.194,10.45.3.188,10.45.3.192","fe80::250:56ff:fe82:5379,fe80::250:56ff:fe82:4fd5","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 93 64 9e 76 9d-d4 d7 dc 53 6a 19 06 90","No Asset Tag","'+02:00","2025-11-18T13:38:15.000+02:00","cybexpapp","Cloud Agent","6baf190a-8dc9-4345-bd7d-5872ffaa9231","2022-02-03T16:45:05.000+02:00","2026-04-22T06:53:49.000+02:00","x86_64","5","SCA,VM,PM,GAV","ServersInCyberark,MIVISU,log4j,Outils prod (Monitoring, NMS, gestion de parc),Production,Linux Server,OS-LIN-SRV DYN,Cloud Agent,Sans,Trafic,Recette,Obsolete,DEX,VRF_INCONNUE","873.0" +"156071801","209222521","vpdsiaclo1.sanef.groupe","","00:50:56:82:aa:3c","192.168.31.19","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 d4 84 8f 20 30 8b-15 80 94 1b a9 56 7a 6d","No Asset Tag","'+02:00","2026-04-16T14:26:49.000+02:00","cybreconcile","Cloud Agent","4e6ad26c-f78d-4e23-8d2f-c0071e748eb9","2023-01-19T10:41:15.000+02:00","2026-04-22T06:53:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Owncloud,VRF_INCONNUE","132.0" +"320952835","328821165","PCB22831.sanef.groupe","PCB22831","D0:AD:08:A3:E7:27","10.103.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNP","8CC3502YNP","'+02:00","2026-04-18T09:05:31.000+02:00","SANEF\polletp","Cloud Agent","65564c60-1bb6-4633-95ce-fff4ad6c7872","2025-04-30T11:50:23.000+02:00","2026-04-22T06:53:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"358830635","344319360","PCB24256.sanef.groupe","PCB24256","24:FB:E3:CD:06:49","10.12.31.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M6R","","'+02:00","2026-04-17T07:08:57.000+02:00","SANEF\letort","Cloud Agent","f27409ae-1e47-44fc-b514-d4e9bc5c7499","2025-09-11T13:43:06.000+02:00","2026-04-22T06:53:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"402056731","361854563","PCB22845.sanef.groupe","PCB22845","D0:AD:08:A3:7D:CA","10.100.39.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YP2","8CC3502YP2","'+02:00","2026-03-28T09:11:51.000+02:00","SANEF\lemaireg","Cloud Agent","db3aab79-f3fa-4f3a-bb97-b00bde6f72ca","2026-02-18T10:01:11.000+02:00","2026-04-22T06:53:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"219800194","253606419","vpbotarmq1.sanef.groupe","","00:50:56:90:2a:9d","10.41.23.22","fe80::250:56ff:fe90:2a9d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 dd 7c 58 43 63 71-e5 91 e0 bf 4b f1 54 66","No Asset Tag","'+02:00","2026-04-21T11:32:10.000+02:00","cybreconcile","Cloud Agent","ffcb26ac-642c-4ddf-9731-be09592928c3","2024-03-04T12:16:46.000+02:00","2026-04-22T06:53:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Linux Server,Cloud Agent,OS-LIN-SRV DYN","141.0" +"160093994","213039821","vraiibpgs4","","00:50:56:82:c5:14","10.45.1.165,10.45.1.168","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 ae 0b a2 5e 22 17-93 4c cc eb a7 71 b9 5a","No Asset Tag","'+02:00","2026-01-07T12:41:58.000+02:00","cybintsys","Cloud Agent","92f8ba2f-56bd-4758-9d22-e1b740b167e8","2023-02-21T12:42:20.000+02:00","2026-04-22T06:53:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,BDD,BDD-ELA DYN,BDD-POS DYN,OS-LIN-SRV DYN,MID-NGINX DYN,Recette","143.0" +"129449366","192025850","MPCECMI1.sanef.groupe","MPCECMI1","00:90:FB:64:92:D1","10.60.2.100","fe80::9dc6:f5d3:2349:85f3","Windows / Client","Microsoft Windows 10 Enterprise 2016 LTSB (1607 Build 14393.9060) 64-Bit","1607","Unidentified / Unidentified","Advantech Default_string","8","3601","Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz","32682","American Megatrends Inc. R1.00.E0.DP01","Default string","Defaultstring","'+02:00","2026-04-21T00:46:36.000+02:00","SANEF\planar","Cloud Agent","18f9ce7f-f39c-450a-a234-94f5c41f74be","2022-06-28T10:33:38.000+02:00","2026-04-22T06:53:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,VRF_INCONNUE,MUR,Workstation,Trafic,DEX,Cloud Agent,Windows Server","338.0" +"178168038","231228012","vpameased1.sanef.groupe","","00:50:56:82:57:01","10.41.40.43","fe80::250:56ff:fe82:5701","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a4 1d 0c ca 65 5c-69 49 dd d6 7a e3 eb 37","No Asset Tag","'+02:00","2026-04-15T15:16:26.000+02:00","cybreconcile","Cloud Agent","7023c0a4-e618-46a7-9ffd-d1cf3479d060","2023-07-12T12:05:06.000+02:00","2026-04-22T06:52:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,OS-LIN-SRV DYN,SED,Cloud Agent,Linux Server","132.0" +"296033054","317455078","vpiadapol1","","00:50:56:9a:8f:55","10.44.3.68","","Linux / Server","Red Hat Enterprise Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7685","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1a 89 6e 39 61 2b 38-47 36 07 52 d2 4b 7d e4","No Asset Tag","'+02:00","2025-01-29T14:59:52.000+02:00","root","Cloud Agent","18253cdb-719b-4f0c-bd66-f63d7cf8b292","2025-01-29T15:00:17.000+02:00","2026-04-22T06:52:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","338.0" +"392047034","358066494","PCV21531.sanef-int.adds","PCV21531","D0:AD:08:A3:7B:34","10.210.47.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YX6","","'+02:00","2026-04-13T12:55:38.000+02:00","Operateur","Cloud Agent","afcb2472-5830-4484-ba7c-89caeb1456f2","2026-01-14T11:24:42.000+02:00","2026-04-22T06:52:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"181714565","233677872","vrsvpatst1","VRSVPATST1","00:50:56:9C:67:92","10.45.9.168","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c ad e0 31 81 85 24-a8 01 28 49 0e cf c7 6d","NoAssetTag","'+02:00","2026-02-17T15:50:44.000+02:00","gare","Cloud Agent","ca42936e-7f1a-43bd-b3aa-54cda1760cbe","2023-08-07T12:16:26.000+02:00","2026-04-22T06:52:40.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,SVP,Cloud Agent,Windows Server,OS-WIN-SRV DYN","514.0" +"318710863","328176976","PCB22897.sanef.groupe","PCB22897","D0:AD:08:A7:27:DB","10.1.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSV","8CC3502YSV","'+02:00","2026-03-29T09:12:26.000+02:00","SANEF\vanacker","Cloud Agent","bab5bcb6-d43c-42a2-a54f-023680c09bfc","2025-04-23T10:44:22.000+02:00","2026-04-22T11:04:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"181705921","233669335","vrosapsrv1.sanef-rec.fr","","00:50:56:9c:70:38","10.45.9.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 29 fb 96 2e 14 82-28 c3 82 89 0e b2 31 36","No Asset Tag","'+02:00","2026-04-09T12:14:04.000+02:00","cybadmsys","Cloud Agent","31f20ac1-dd20-4cd3-9a4e-790be9367805","2023-08-07T10:57:17.000+02:00","2026-04-22T06:52:15.000+02:00","x86_64","4","SCA,VM,PM,GAV","Péage,BDD-ELA DYN,MID-NGINX DYN,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,DEX,Cloud Agent,Linux Server","133.0" +"358653134","344183280","VMMSVPC1.sanef-int.adds","VMMSVPC1","00:50:56:90:16:68","10.41.2.250","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 24 f3 36 59 72 2e-63 46 aa f2 d3 f8 08 86","NoAssetTag","'+02:00","2026-04-16T16:49:08.000+02:00","UserPCT","Cloud Agent","90800f5a-0ca3-4f54-9ce5-6ac8bc072b5f","2025-09-10T17:32:16.000+02:00","2026-04-22T06:52:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"131406323","193425034","vrracquo1","","00:50:56:AC:00:E6","10.102.2.10","fe80::250:56ff:feac:e6","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","996","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 2c 61 f3 29 a8 f9 a3-22 22 61 17 58 04 c3 5d","No Asset Tag","'+02:00","2023-09-25T12:03:13.000+02:00","cybreconcile","Cloud Agent","7fc95d16-3183-469d-9c09-e08ccbf5dea2","2022-07-13T10:38:49.000+02:00","2026-04-22T06:52:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Quorum,OS-LIN-SRV DYN,Obsolete,Cloud Agent,Linux Server","343.0" +"411394993","365634074","vpdecasas4","","00:50:56:82:11:f0","10.30.11.152","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","64430","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 fa 1c e9 14 59 44-09 d9 a0 eb 46 07 f2 ff","No Asset Tag","'+02:00","2026-03-25T15:50:33.000+02:00","cybreconcile","Cloud Agent","80b494e2-2f67-454e-8170-847d60075eae","2026-03-25T15:50:52.000+02:00","2026-04-22T06:51:59.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,SAS,DSI,Production,Finances Comptabilité / Consolidation,Linux Server,Cloud Agent,OS-LIN-SRV DYN","512.0" +"230624660","258738929","vpsupapol1.sanef.groupe","","00:50:56:8d:78:3e","10.44.5.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d de 96 06 d0 e5 37-73 d9 95 5b 4a d8 8f 44","No Asset Tag","'+02:00","2026-03-30T10:42:58.000+02:00","cybreconcile","Cloud Agent","82ca204b-27bc-4eb7-b322-1655ec08497b","2024-04-17T17:35:43.000+02:00","2026-04-22T06:51:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN","66.0" +"382447117","353972906","PCB22339.sanef.groupe","PCB22339","D0:AD:08:A3:7B:42","10.200.31.70","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS7","8CC3502YS7","'+02:00","2026-03-28T09:11:24.000+02:00","SANEF\sebire-ext","Cloud Agent","a913dd9c-a2eb-4c2e-9cff-6d2edf2496fd","2025-12-08T10:38:08.000+02:00","2026-04-22T06:51:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"159693566","212321116","vpvpnarad1.sanef.groupe","","00:50:56:82:70:90, 02:42:9d:4f:9c:a1, 7a:60:ec:a5:16:1a","192.168.19.6,172.17.0.1","fe80::250:56ff:fe82:7090,fe80::42:9dff:fe4f:9ca1,fe80::7860:ecff:fea5:161a","Linux / Server","Red Hat Enterprise Linux 8.3","8.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 02 d7 da 94 70 9e 6e-62 4c 3e fb 97 e7 7c 40","No Asset Tag","'+02:00","2026-02-24T12:10:05.000+02:00","cybadmres","Cloud Agent","7ab0a0cc-dff6-4c59-b695-fea679d296e7","2023-02-17T13:09:34.000+02:00","2026-04-22T06:51:42.000+02:00","x86_64","3","SCA,VM,PM,GAV","VPN,Radius,GEMALTO,VRF_INCONNUE,OS-LIN-SRV DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server","207.0" +"129339882","191948950","sppeaanvr14","SPPEAANVR14","02:00:4C:4F:4F:50, D4:F5:EF:50:76:AC","169.254.67.99,10.41.7.113","fe80::8047:5da1:288c:98a,fe80::f292:ef67:3db0:bea3","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DV6","","'+02:00","2026-03-27T09:36:54.000+02:00","Administrateur","Cloud Agent","3aa49e4c-d048-46e5-8103-fcc247102836","2022-06-27T15:07:20.000+02:00","2026-04-22T06:51:35.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Exploitation,Sans,Production,VRF_INCONNUE,OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server","523.0" +"322006461","329317301","PCB23714.sanef.groupe","PCB23714","6C:0B:5E:ED:A2:43","10.152.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2H","","'+02:00","2026-04-20T17:09:36.000+02:00","SANEF\QUIDE","Cloud Agent","636d3a27-57c5-4216-887c-122c18cafe79","2025-05-05T10:54:32.000+02:00","2026-04-22T06:51:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"213849878","251124779","spsecalog1.sanef.groupe","","54:80:28:4e:62:e0","10.30.10.163","fe80::adf5:cfc0:844c:bb2a","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant DL380 G10 Server","32","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31828","HPE U30 08/06/2025","CZ28450152","","'+02:00","2026-01-14T16:13:56.000+02:00","cybsupsys","Cloud Agent","561115b7-6e0d-4fcf-8b81-6db17110d077","2024-02-05T19:27:44.000+02:00","2026-04-22T06:51:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,Splunk,OS-LIN-SRV DYN,DSI","242.0" +"323177947","329812434","PCB22903.sanef.groupe","PCB22903","D0:AD:08:A3:E7:2C","10.100.39.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTV","8CC3502YTV","'+02:00","2026-04-10T20:44:06.000+02:00","SANEF\DEMOULIN","Cloud Agent","566ff52c-ab9f-42cf-99c9-be3da83dc6f0","2025-05-09T13:10:40.000+02:00","2026-04-22T06:51:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"223150678","255061870","ls-amblainville","LS-AMBLAINVILLE","00:50:56:90:9D:1A","10.132.1.20","fe80::d126:fc85:c9cf:ba71","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 85 80 16 fe d9 76-9b ba d7 c1 8d e8 d1 6d","NoAssetTag","'+02:00","2026-03-23T10:33:01.000+02:00","svpadmin","Cloud Agent","8a5538c5-f517-47fa-9528-6c3727b685cc","2024-03-18T15:03:17.000+02:00","2026-04-22T06:51:03.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SVP,Haute,High,OS-WIN-SRV DYN,Péage,DEX,Cloud Agent,Windows Server","849.0" +"318693920","328175397","PCB22919.sanef.groupe","PCB22919","D0:AD:08:A7:27:AA","10.13.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTC","8CC3502YTC","'+02:00","2026-04-08T10:11:51.000+02:00","SANEF\beckerd","Cloud Agent","dd8075c7-5d64-4391-99a8-e98e6ed95211","2025-04-23T10:33:18.000+02:00","2026-04-22T06:51:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"407952467","364297085","PCV18681.sanef-int.adds","PCV18681","30:13:8B:6C:5B:CD","10.210.7.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473WS","","'+02:00","2026-03-12T13:17:00.000+02:00","Operateur","Cloud Agent","96605a3e-3acb-4a7e-a89e-f80acf5ed0e0","2026-03-12T13:07:19.000+02:00","2026-04-22T06:50:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"407939380","364281435","PCV18553.sanef-int.adds","PCV18553","30:13:8B:6C:5D:4B","10.210.7.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TD","","'+02:00","2026-03-12T11:08:03.000+02:00","Operateur","Cloud Agent","7c8bf14f-c5d8-4b39-9edc-e1733d3a0662","2026-03-12T10:49:47.000+02:00","2026-04-22T06:50:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"225436821","256067165","ls-lievin","LS-LIEVIN","00:50:56:90:1A:BA","10.41.2.41","fe80::3718:ad1c:827a:a431","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 85 c7 1f 20 58 fe-0a 85 e8 4a 34 39 2d c8","NoAssetTag","'+02:00","2026-03-04T16:50:35.000+02:00","svpadmin","Cloud Agent","fee50917-63e1-4f38-9c7b-5c88873c927b","2024-03-26T11:08:19.000+02:00","2026-04-22T10:35:06.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,Production,High,Péage,SVP,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,Haute","635.0" +"322335500","329428657","PCB20862.sanef.groupe","PCB20862","6C:0B:5E:EE:93:2C","10.200.31.62","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3Y","","'+02:00","2026-03-28T09:27:48.000+02:00","SANEF\lejeunec","Cloud Agent","b7ea8f10-6c21-4c7f-b376-82dae430ae21","2025-05-06T10:54:25.000+02:00","2026-04-22T06:50:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"222314779","254693891","OSA20945.sanef-int.adds","OSA20945","BC:0F:F3:87:66:68","10.5.20.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLW","","'+02:00","2026-04-20T13:27:11.000+02:00","Superviseur","Cloud Agent","9831aadd-048b-401f-a709-53495a03c119","2024-03-14T16:29:33.000+02:00","2026-04-22T06:50:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"363949800","346380001","PCV18563.sanef-int.adds","PCV18563","30:13:8B:6C:5D:1A","10.152.7.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TN","","'+02:00","2026-04-18T18:06:56.000+02:00","Operateur","Cloud Agent","8431fa21-a520-447a-b2f3-feb35c474033","2025-09-29T15:29:49.000+02:00","2026-04-22T06:50:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"227193811","256864116","ls-ressons","LS-RESSONS","00:50:56:90:29:F8","10.41.2.28","fe80::8137:321c:7cbb:fa58","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 69 7c c9 0c 4e 3b-74 ed 3c 7e ae 9f d3 a6","NoAssetTag","'+02:00","2026-03-02T16:08:01.000+02:00","svpadmin","Cloud Agent","88cb08e4-ca30-46c3-937d-d1a372dfd5bd","2024-04-03T10:08:28.000+02:00","2026-04-22T06:50:01.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Péage,OS-WIN-SRV DYN,Cloud Agent,Windows Server","508.0" +"195794735","241929791","vpbotreco4.sanef.groupe","","00:50:56:90:4a:4d","10.41.23.21","fe80::250:56ff:fe90:4a4d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 cb 51 e5 f3 c5 6d-3b 13 0c 15 51 d4 9a 94","No Asset Tag","'+02:00","2026-04-16T15:14:01.000+02:00","cybreconcile","Cloud Agent","84311023-f2cf-4094-b245-29d504b5c25f","2023-10-26T11:42:11.000+02:00","2026-04-22T06:49:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,FreeFlow,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0" +"409746895","365034580","vpdsiaito1.sanef.groupe","","00:50:56:9c:fa:7c","10.46.33.35","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 29 1a 4f 84 a5 cf-aa 45 de 5e 04 ad 47 37","No Asset Tag","'+02:00","2026-03-23T15:11:57.000+02:00","cybreconcile","Cloud Agent","1c3cf6bb-20fe-4cc6-9671-7ff64bcdc4e1","2026-03-19T15:13:46.000+02:00","2026-04-22T06:49:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","330.0" +"129355353","191958888","vpamlanvr1","VPAMLANVR1","00:50:56:82:41:74","10.137.4.13","fe80::d84d:147a:f82e:3c9c","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 93 f4 29 6e f2 68-16 ba f7 80 45 e1 1f ea","NoAssetTag","'+02:00","2026-03-05T15:57:22.000+02:00","Administrateur","Cloud Agent","f9f75a13-b307-4e5c-a738-cd386b080162","2022-06-27T17:37:05.000+02:00","2026-04-22T06:49:18.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_INCONNUE,DEX,NVR,Cloud Agent,Windows Server,Production,Exploitation","523.0" +"216068010","252009157","OSA20981.sanef-int.adds","OSA20981","BC:0F:F3:87:70:B4","10.12.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMS","","'+02:00","2026-04-20T23:54:33.000+02:00","Superviseur","Cloud Agent","d55a3ae7-e965-4ba2-b7b0-6f0e2d7be18b","2024-02-15T12:39:58.000+02:00","2026-04-22T06:49:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"303923893","322167384","vrdepbels2.sanef-rec.fr","","00:50:56:9c:fc:1d","10.45.13.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9f 5f 98 84 33 6c-23 9d a6 89 71 d7 53 91","No Asset Tag","'+02:00","2026-01-15T16:11:37.000+02:00","cybsupapp","Cloud Agent","2a28fb56-a6f0-4da5-812f-61c6e7bb2b50","2025-02-27T18:15:20.000+02:00","2026-04-22T06:48:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Recette,Gestion dépanneurs,Linux Server,Cloud Agent","141.0" +"279991991","305195795","vpnitardp1","VPNITARDP1","00:50:56:90:65:E5","192.168.191.68","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 21 7f e6 fd b4 3e-45 d4 cc 97 6a 46 01 53","NoAssetTag","'+02:00","2026-03-30T09:20:14.000+02:00","SANEF-INT\b03987","Cloud Agent","b4025c52-bf4b-4372-bf98-ef3f2b5a7ea0","2024-11-18T11:00:38.000+02:00","2026-04-22T06:48:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,OS-WIN-SRV DYN","252.0" +"362211657","345648662","PCB18742.sanef.groupe","PCB18742","BC:0F:F3:3D:58:8E","10.4.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CT0","","'+02:00","2026-03-29T09:23:56.000+02:00","SANEF\lefevrej","Cloud Agent","abe04a0e-1f9c-4601-b932-473682cdf8c4","2025-09-23T10:17:05.000+02:00","2026-04-22T11:31:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"314659720","326547477","vpdsibquo1.sanef.groupe","","00:50:56:90:ff:a1","10.100.16.19","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 73 1f 14 3b 95 cf-66 6b b9 4a ae 5c d7 d4","No Asset Tag","'+02:00","2026-02-10T11:18:47.000+02:00","cybadmbdd","Cloud Agent","9892cd90-4b55-48b2-bf09-4a20e99269de","2025-04-08T17:09:47.000+02:00","2026-04-22T06:47:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,OS-LIN-SRV DYN,Production,BDD-ELA DYN,Cloud Agent,Linux Server","140.0" +"365022594","346741777","PCB22264.sanef.groupe","PCB22264","D0:AD:08:A3:7D:BF","10.5.31.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKQ","","'+02:00","2026-04-20T15:01:48.000+02:00","SANEF\larchera","Cloud Agent","fa1105d8-d989-4e2c-97d5-4edf30e555d4","2025-10-02T17:31:20.000+02:00","2026-04-22T06:47:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"294113565","316155452","vpadvangx1.sanef.groupe","","00:50:56:90:f2:a9","192.168.20.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d5 59 bd 3e ac 7f-5f e4 fd 51 7e 33 c8 37","No Asset Tag","'+02:00","2026-03-17T16:39:16.000+02:00","cybadmroot","Cloud Agent","f9d3d39e-0323-4b81-90e4-1642915c432b","2025-01-22T13:10:08.000+02:00","2026-04-22T06:47:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,ADV-U","141.0" +"137346917","197588252","vpexpbdech1.sanef.groupe","","00:50:56:82:9b:ad","10.41.40.155","fe80::663a:66b7:1daf:db9e","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d d3 08 47 19 41 98-d7 42 c7 04 de b3 f2 e8","No Asset Tag","'+02:00","2025-11-25T15:36:26.000+02:00","cybreconcile","Cloud Agent","8308352a-87a2-4733-86fd-7cb6ac17b583","2022-08-30T17:02:41.000+02:00","2026-04-22T06:47:42.000+02:00","x86_64","4","SCA,VM,PM,GAV","DECHETS,Production,BDD-POS DYN,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,VRF_TRAFIC_DC,DEX,Cloud Agent,Linux Server,Obsolete,ServersInCyberark,Patrimoine","100.0" +"196663887","242433779","vpboobquo1.sanef.groupe","","00:50:56:90:eb:e4","10.100.16.13","fe80::250:56ff:fe90:ebe4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 31 52 df 09 67 68-7e 74 2f 62 c2 51 c4 34","No Asset Tag","'+02:00","2026-04-07T12:08:49.000+02:00","cybreconcile","Cloud Agent","d7f52b85-a622-403d-b3ff-1d2f8e4b3b4a","2023-10-31T18:38:52.000+02:00","2026-04-22T06:47:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN","334.0" +"129356666","191964390","vptsyanvr1","VPTSYANVR1","00:50:56:82:BC:F3","10.87.17.12","fe80::2354:a07a:4242:d826","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 d8 e6 88 76 ec 5d-8c 94 e0 e4 58 b2 18 3a","NoAssetTag","'+02:00","2026-02-04T11:16:02.000+02:00","Administrateur","Cloud Agent","2c2331b5-696e-4f65-a2a6-c16a5b664d9a","2022-06-27T18:27:39.000+02:00","2026-04-22T06:47:36.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Exploitation,VRF_INCONNUE,Production,NVR","508.0" +"130428362","192722854","BLY-BLY2-GC2","BLY-BLY2-GC2","00:05:B7:EA:94:7C","10.92.10.233,192.168.21.13,192.168.25.13","fe80::2006:cf71:a811:3dbf,fe80::5d5c:22d9:6542:1dff,fe80::85c7:e4a0:e217:b03","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.19237) 64-Bit","6.3","Industrial Control System (ICS) / Industrial PC","ARBOR FPC 7800 Series Industrial PC","8","2300","Intel(R) Core(TM) i7-4770TE CPU @ 2.30GHz","8091","American Megatrends Inc. 4.6.5","To be filled by O.E.M.","ToBeFilledByO.E.M.","'+02:00","2026-01-22T16:19:57.000+02:00","Administrator","Cloud Agent","c034ab23-2012-4555-8db0-ccc66b28f1eb","2022-07-06T09:20:00.000+02:00","2026-04-22T06:47:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Obsolete,OS-WIN-SRV DYN,Cloud Agent,Windows Server,VRF_INCONNUE","346.0" +"402304603","361966849","PCB24215.sanef.groupe","PCB24215","10:B6:76:95:8B:9E","10.106.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYZ","","'+02:00","2026-04-17T13:16:53.000+02:00","SANEF\becquart","Cloud Agent","d19bdec0-e4c4-4c1b-999c-c696eed52a83","2026-02-19T09:16:18.000+02:00","2026-04-22T06:47:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"231528363","259280856","ls-aumale-est","LS-AUMALE-EST","00:50:56:90:C3:A3","10.41.2.20","fe80::8c9d:a8b3:aece:62e9","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 fd 73 d8 4a 73 8d-4b dd 95 74 45 49 61 84","NoAssetTag","'+02:00","2026-03-23T12:01:56.000+02:00","svpadmin","Cloud Agent","7e1b750d-9c54-49ec-9de0-695cc2e2b935","2024-04-22T11:03:55.000+02:00","2026-04-22T10:45:28.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,VRF_PEAGE_DC,High,OS-WIN-SRV DYN,Production,Péage,SVP,Cloud Agent,Windows Server","504.0" +"304096310","322255083","vpsupapol5","","00:50:56:94:70:3a","10.44.5.107","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 ef 07 cf 2f 81 53-d9 5d 06 e4 16 01 eb 07","No Asset Tag","'+02:00","2026-03-30T11:24:10.000+02:00","cybsupsys","Cloud Agent","98d941fc-1d28-41a4-9618-16754a77178f","2025-02-28T12:35:28.000+02:00","2026-04-22T06:47:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server","133.0" +"228684181","257664201","vpbocasec1","","00:50:56:90:53:09","10.41.22.16","fe80::250:56ff:fe90:5309","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 66 9f 39 aa 70 12-76 58 86 b2 81 d1 ac e7","No Asset Tag","'+02:00","2026-04-01T09:56:22.000+02:00","root","Cloud Agent","5fd89561-ad73-4111-8bb9-95ee494fde17","2024-04-09T13:14:36.000+02:00","2026-04-22T06:47:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN","141.0" +"296278441","317662478","REX21542.sanef-int.adds","REX21542","D0:AD:08:A3:E6:C3","10.45.11.236","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YR5","","'+02:00","2025-09-22T11:56:01.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","9550ec0e-5714-4b4a-a560-0db00ecafdd6","2025-01-30T18:19:46.000+02:00","2026-04-22T06:47:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"407627825","364166819","splogbels3","","d4:f5:ef:39:81:2c","10.44.7.42","fe80::d6f5:efff:fe39:812c","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G10 Server","16","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","31493","HPE U30 08/06/2025","CZ20510927","","'+02:00","2026-03-27T16:19:28.000+02:00","cybintsys","Cloud Agent","58b1fe8a-fb3d-4490-a2f9-a26a40618ce8","2026-03-11T12:17:53.000+02:00","2026-04-22T06:46:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Production,Elasticsearch,Cloud Agent,OS-LIN-SRV DYN,Linux Server","152.0" +"198425521","243397942","nvr-spare-eco","NVR-SPARE-ECO","00:50:56:82:1B:0D","10.1.27.252","fe80::59df:b009:bdc0:9fbe","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 85 ba 43 4b 19 23-78 a2 34 50 58 0f d3 7b","NoAssetTag","'+02:00","2026-01-28T11:24:11.000+02:00","Administrateur","Cloud Agent","fc0b4019-8cfe-408c-8bec-c64625fe6b93","2023-11-10T15:50:36.000+02:00","2026-04-22T10:58:52.000+02:00","64-Bit","3","SCA,VM,GAV","OS-WIN-SRV DYN,Cloud Agent,DEX,NVR","508.0" +"413355832","366628998","vpsecapki1.sanef.groupe","","00:50:56:94:ae:99","10.44.3.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 d2 63 c4 cf 61 e0-f6 2e 2d d5 54 ba fc f1","No Asset Tag","'+02:00","2026-04-03T15:08:49.000+02:00","cybsecope","Cloud Agent","6f169398-810e-420e-bf0a-4f8b5f09b5f6","2026-04-03T15:09:06.000+02:00","2026-04-22T06:46:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","66.0" +"296279621","317662031","REX21551.sanef-int.adds","REX21551","D0:AD:08:A3:7B:3F","10.200.91.81","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV0","","'+02:00","2026-04-09T13:01:14.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","54cb0fd4-69a0-4258-9830-b9621daa5707","2025-01-30T18:12:37.000+02:00","2026-04-22T06:46:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"175951171","229620103","vvbotrssm2","VVBOTRSSM2","00:50:56:9C:7B:71","10.45.6.163","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c e2 87 c2 29 a2 44-01 86 1f 2d d6 18 0b 25","NoAssetTag","'+02:00","2026-03-10T16:00:21.000+02:00","Administrateur","Cloud Agent","a219029f-c26c-4a29-b654-069497ab3c37","2023-06-26T16:58:15.000+02:00","2026-04-22T06:46:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Flux Libre,flux_libre,FreeFlow,Recette","346.0" +"213854267","251125826","sppeaanvr1","SPPEAANVR1","5C:BA:2C:48:B6:DC","10.41.7.100","fe80::e59b:d4f1:9c22:8b47","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLT","","'+02:00","2026-01-28T10:28:30.000+02:00","Administrateur","Cloud Agent","ddf3928a-db3f-4617-bb32-935f20ce89bd","2024-02-05T19:42:54.000+02:00","2026-04-22T06:46:09.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,NVR","523.0" +"295103250","316894097","vpngwasic2","","00:50:56:8f:a6:87","10.44.200.101","fe80::250:56ff:fe8f:a687","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 7a 40 97 ae c4 25-6d 28 12 8a 34 18 1a 68","No Asset Tag","'+02:00","2026-03-18T14:17:24.000+02:00","reboot","Cloud Agent","e89ff728-8ed2-450e-b500-76e84d85f701","2025-01-27T14:53:33.000+02:00","2026-04-22T06:45:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIA,TAG-SIC,Linux Server,Cloud Agent","53.0" +"389537477","357336591","PSX18555.sanef-int.adds","PSX18555","30:13:8B:6C:56:8B","10.12.40.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TB","","'+02:00","2026-03-26T12:44:05.000+02:00","UserSextan","Cloud Agent","a70299aa-a668-4e57-9459-dafea6e3df08","2026-01-08T11:39:09.000+02:00","2026-04-22T06:45:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"323154710","329797901","PCB23581.sanef.groupe","PCB23581","6C:0B:5E:EE:BC:70","10.106.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7R","","'+02:00","2026-03-29T09:28:12.000+02:00","SANEF\louchartbe","Cloud Agent","68cd6369-3fba-4d83-92fb-4b24f7668c38","2025-05-09T10:21:22.000+02:00","2026-04-22T06:45:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"172608682","227326752","vrecmadpr1.recette.adds","VRECMADPR1","00:50:56:9C:01:8F","10.45.7.38","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1c 78 29 84 79 12 c4-a7 5a c0 50 03 a2 36 70","NoAssetTag","'+02:00","2026-01-07T12:05:53.000+02:00","RECETTE\ndessoye","Cloud Agent","ee6e04bc-59fa-4c6e-a5fb-aa1483419dad","2023-06-01T10:05:18.000+02:00","2026-04-22T06:45:44.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,OS-WIN-SRV DYN,SCCM,Recette","519.0" +"331108752","350879849","PMS22811.sanef-int.adds","PMS22811","D0:AD:08:A7:27:ED","10.44.201.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YPP","","'+02:00","2026-02-19T12:06:10.000+02:00","Admin","Cloud Agent","c9a83fb4-f780-4d54-aea2-57aeb72ba703","2025-06-05T11:27:55.000+02:00","2026-04-22T06:45:41.000+02:00","64-Bit","2","SCA,VM,GAV","TAG-SIC,TAG-CAPIV,BDD-SQL DYN,Cloud Agent,Workstation","343.0" +"129952116","192394153","sproibgtc1","SPROIBGTC1","08:F1:EA:7E:91:38","10.78.200.10","fe80::fa4:9ef4:b16e:b389","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Computers / Server","HPE ProLiant DL360 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","32426","HPE U32","CZJ01005TT","","'+02:00","2026-03-31T14:22:14.000+02:00","admin_gtc","Cloud Agent","e0043ade-3901-4605-8b43-85099d34f933","2022-07-01T12:13:10.000+02:00","2026-04-22T06:45:37.000+02:00","64-Bit","5","SCA,VM,PM,GAV","BDD-SQL DYN,OS-WIN-SRV DYN,GTC,Haute,Cloud Agent,Windows Server,DEX,VRF_INCONNUE,Production,High,Trafic","631.0" +"357904904","343915750","vprpnangx1","","00:50:56:90:12:0f","10.41.20.26","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 2e f2 88 64 36 d2-70 58 1c 2a eb 53 fb cc","No Asset Tag","'+02:00","2026-02-25T15:49:56.000+02:00","cybreconcile","Cloud Agent","5e905740-f89f-4e67-a259-7f1f87138406","2025-09-08T16:12:44.000+02:00","2026-04-22T06:45:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Péage,Production","140.0" +"236874396","266225746","ls-montreuil-reims","LS-MONTREUIL-RE","00:50:56:90:E6:17","10.41.2.56","fe80::2c82:6758:2aa2:98a3","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 28 97 c6 82 b0 0b-40 0e de b8 ad 23 f2 b4","NoAssetTag","'+02:00","2026-03-02T11:41:19.000+02:00","svpadmin","Cloud Agent","d64a1ab0-6cf8-465c-af3c-57bf56a3df79","2024-05-15T13:32:32.000+02:00","2026-04-22T06:45:08.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Péage,SVP,OS-WIN-SRV DYN,Cloud Agent,Windows Server","507.0" +"191420514","239726721","viboobsql2.sanef.groupe","","00:50:56:90:7b:74","10.41.22.198,10.41.22.199","fe80::250:56ff:fe90:7b74","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f0 cd 09 15 29 ed-6e c7 9a 6d ee ef 3c b3","No Asset Tag","'+02:00","2026-03-16T12:41:55.000+02:00","cyblecemo","Cloud Agent","aa979cae-f80b-4415-9145-4dbfffb99ae3","2023-10-04T17:46:12.000+02:00","2026-04-22T06:45:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,ServersInCyberark,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Production,flux_libre","141.0" +"378056718","352302029","PCV21556.sanef-int.adds","PCV21556","D0:AD:08:A3:7B:43","10.209.7.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YS5","","'+02:00","2026-04-20T20:57:15.000+02:00","Operateur","Cloud Agent","b2b434f6-99a6-42f6-8105-0bc266760f5c","2025-11-20T12:50:31.000+02:00","2026-04-22T09:53:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"321056437","328926144","PCB24040.sanef.groupe","PCB24040","6C:0B:5E:F8:D7:60","10.105.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF3","","'+02:00","2026-03-28T09:28:10.000+02:00","SANEF\GAUGAIN","Cloud Agent","053a81ce-314e-46ef-9e69-81c990177783","2025-04-30T16:54:31.000+02:00","2026-04-22T06:43:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"160222097","213243642","vrsupbmbi1.sanef.groupe","","00:50:56:82:91:43","10.45.0.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 a7 cb 5e 11 9c 25-8d 4c 0d c0 79 38 21 0c","No Asset Tag","'+02:00","2026-03-11T12:02:03.000+02:00","cybadmsys","Cloud Agent","13fa4ab4-5e50-4785-b908-e76cd337b081","2023-02-22T13:01:31.000+02:00","2026-04-22T06:43:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,DSI,Centreon,Recette","120.0" +"130330176","192653919","VPAIIAPVC2.sanef.groupe","VPAIIAPVC2","00:50:56:82:59:AB","10.41.11.12","fe80::45cd:6d45:f975:d271","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 6a c5 03 34 1f de-c7 77 09 d4 e3 ed 00 82","NoAssetTag","'+02:00","2024-09-09T17:25:33.000+02:00","SANEF\TRON","Cloud Agent","51000e86-4ea7-4e9a-84bd-a19fb6b3dbd5","2022-07-05T13:44:59.000+02:00","2026-04-22T06:43:06.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,NVR,Workstation,Obsolete,Cloud Agent,Windows Server,Exploitation,Production,Sans","518.0" +"382479156","353996573","spbckmmag1.sanef.groupe","","04:bd:97:3e:78:08","192.168.109.8","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C240 M5 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","31534","Cisco Systems, Inc. C240M5.4.3.2g.0.0515250954 05/15/2025","WZP25500WKR","Unknown","'+02:00","2025-12-09T16:15:11.000+02:00","root","Cloud Agent","99d35416-a255-4046-b5b6-7e8255676814","2025-12-08T14:34:11.000+02:00","2026-04-22T06:42:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","330.0" +"219138825","253302514","OSA20964.sanef-int.adds","OSA20964","BC:0F:F3:87:6F:95","10.152.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LL1","","'+02:00","2026-04-15T20:41:46.000+02:00","Superviseur","Cloud Agent","1191a1f6-dbc9-4ace-b021-3139a5289d3e","2024-02-29T12:57:58.000+02:00","2026-04-22T06:42:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"320461802","328716100","PCB22842.sanef.groupe","PCB22842","D0:AD:08:A3:E6:CC","10.29.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPZ","8CC3502YPZ","'+02:00","2026-04-20T20:57:18.000+02:00","SANEF\GAILLARD","Cloud Agent","25dd7251-341e-4383-9dcc-37c0bc7da7fb","2025-04-29T12:22:37.000+02:00","2026-04-22T06:42:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"331046153","333860641","vrameahtp2.sanef-rec.fr","","00:50:56:9c:3d:a0, 00:50:56:9c:5a:88","10.45.4.51,10.45.2.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 4c 0a 64 79 11 d2-9e cb 7e de 44 01 97 c7","No Asset Tag","'+02:00","2026-04-02T16:34:16.000+02:00","cybintsys","Cloud Agent","a855257a-e734-4924-8b5c-8061f3926d70","2025-06-05T08:35:50.000+02:00","2026-04-22T06:42:31.000+02:00","x86_64","4","SCA,VM,GAV","DEX,Sextan,Recette,OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent","284.0" +"227708505","257227448","ls-masniere","LS-MASNIERES","00:50:56:90:22:96","10.41.2.44","fe80::e2a:926f:f031:6b98","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 a8 44 37 f1 89 bf-e7 24 75 ad e4 43 cd 6e","NoAssetTag","'+02:00","2026-03-05T11:23:07.000+02:00","svpadmin","Cloud Agent","91896d8b-f54d-4c74-abb2-0180b0c4662b","2024-04-05T11:06:01.000+02:00","2026-04-22T06:42:29.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,High,Péage,VRF_PEAGE_DC,Production,SVP,OS-WIN-SRV DYN,Cloud Agent,Windows Server","507.0" +"270773160","300117148","SVP22799.sanef-int.adds","SVP22799","D0:AD:08:A3:E6:C7","10.1.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YR6","","'+02:00","2026-04-21T17:07:32.000+02:00","Superviseur","Cloud Agent","75418aac-b767-4bba-b8ba-dc4362ae6f00","2024-10-08T10:20:57.000+02:00","2026-04-22T06:42:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"284376860","309489722","vtdsibpmm1.sanef-rec.fr","","00:50:56:9c:a2:ab","10.45.1.175","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 94 30 91 a1 96 cf-bd 52 ef f8 df 16 ca 87","No Asset Tag","'+02:00","2026-01-20T11:44:37.000+02:00","cybadmbdd","Cloud Agent","d0c1bf3d-4dcd-4749-861b-efbe8da5ebda","2024-12-05T13:41:18.000+02:00","2026-04-22T06:42:12.000+02:00","x86_64","2","SCA,VM,GAV","Recette,Linux Server,Cloud Agent,PATRIMOINE,OS-LIN-SRV DYN","138.0" +"131274982","193320475","vpaiiamap1","","00:50:56:82:de:45","10.30.12.123","fe80::1afe:7fb8:56b0:ac9f","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 07 5f 63 f0 05 d9-8e 0c 2a e2 67 26 e7 96","No Asset Tag","'+02:00","2026-03-10T15:02:52.000+02:00","cybreconcile","Cloud Agent","a8ecaddb-8789-40d3-820d-9da6f7a543ed","2022-07-12T15:41:44.000+02:00","2026-04-22T06:41:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE,Production,DSI,Centreon,ServersInCyberark,Outils prod (Monitoring, NMS, gestion de parc)","453.0" +"231613074","259382223","vvbotrssc1.sanef-rec.fr","","00:50:56:9c:03:e2","192.168.21.165","fe80::250:56ff:fe9c:3e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c b6 4e e1 e9 7c b6-e8 0e c2 e3 8c 86 0c 3a","No Asset Tag","'+02:00","2026-03-12T18:03:24.000+02:00","cybreconcile","Cloud Agent","4edf4a44-6734-48fe-8837-ff52373820f2","2024-04-22T17:39:57.000+02:00","2026-04-22T06:41:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","147.0" +"231533960","259283850","lpemvaste6","","00:17:a4:77:1c:14, 00:17:a4:77:1c:10","192.168.102.113,192.168.101.113","fe80::217:a4ff:fe77:1c14,fe80::217:a4ff:fe77:1c10","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000702","","'+02:00","2025-06-30T14:48:56.000+02:00","lamhajeb-ext","Cloud Agent","9eda4a28-4e0a-4ae4-adfe-e74a78ee0ab5","2024-04-22T11:32:19.000+02:00","2026-04-22T06:41:40.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,OS-LIN-SRV DYN,EMV,PCI Bunker EMV,Production,PCI Bunker EMV - VLAN Stecard v17","676.0" +"287505491","311424011","vrecmapss1.recette.adds","VRECMAPSS1","00:50:56:9C:64:56","10.45.7.36","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c d4 7c ca 4b a3 0d-4f de 09 42 65 99 8a 4c","NoAssetTag","'+02:00","2026-01-07T12:42:03.000+02:00","Administrateur","Cloud Agent","adf9964f-ea94-4229-b570-42d8f638c9be","2024-12-19T10:15:22.000+02:00","2026-04-22T06:41:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Recette,BDD-SQL DYN,Cloud Agent,OS-WIN-SRV DYN","339.0" +"129339614","191948633","sppeaanvr12","SPPEAANVR12","D4:F5:EF:50:77:11","10.41.7.111","fe80::1f4b:ac16:a242:b4fd","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","1","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DV7","","'+02:00","2026-03-09T15:55:23.000+02:00","Administrateur","Cloud Agent","d312573a-e088-4e67-9352-018dc2bef63e","2022-06-27T15:03:19.000+02:00","2026-04-22T11:29:51.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Windows Server,NVR,OS-WIN-SRV DYN,Exploitation,Production,Sans,DEX","523.0" +"200350065","244309166","vppeabbst3.sanef.groupe","","00:50:56:90:ef:2a","10.41.20.55","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f1 ea 1b 11 82 89-0d 71 98 b5 13 7b 53 58","No Asset Tag","'+02:00","2026-04-02T09:48:26.000+02:00","cybreconcile","Cloud Agent","b976e995-c0d3-471d-9e5f-ac8132228163","2023-11-22T13:43:16.000+02:00","2026-04-22T06:41:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Flux Libre,OS-LIN-SRV DYN,DSI,FreeFlow,flux_libre,Production,BOOST,Cloud Agent,Linux Server","332.0" +"305794746","322889283","vrgesbref1.sanef-rec.fr","","00:50:56:9c:8a:87","10.45.13.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a1 0a 88 b1 57 aa-49 97 5e a7 53 f7 e2 8a","No Asset Tag","'+02:00","2026-02-23T13:29:00.000+02:00","cybadmbdd","Cloud Agent","809fe4b8-391b-4a1d-a017-71508b1cc939","2025-03-06T19:33:16.000+02:00","2026-04-22T06:41:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,Recette,BDD,Linux Server,Cloud Agent","54.0" +"213308548","250865515","vposapexp1.sanef-int.adds","VPOSAPEXP1","00:50:56:90:32:93","10.44.6.37","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 c4 8c a3 70 19 49-46 0e cd 26 1f 9b 6e 97","NoAssetTag","'+02:00","2026-02-26T15:01:54.000+02:00","SANEF-INT\b03987","Cloud Agent","2aa1395b-4a14-4ae7-8567-a743e4fcf632","2024-02-02T11:04:44.000+02:00","2026-04-22T06:41:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,OS-WIN-SRV DYN,Péage,Cloud Agent,Windows Server,DEX","253.0" +"213847413","251124492","LS-BOULAY-PSB-SPARE.sanef.fr","LS-BOULAY-PSB-S","5C:BA:2C:44:CB:4C","10.12.2.254","fe80::f859:4417:9484:2f4","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Computers / Server","HPE ProLiant ML350 G10 Server","6","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","16042","HPE U41","CZJ82213V1","","'+02:00","2026-02-16T13:13:24.000+02:00","gare","Cloud Agent","c82cb619-396d-42da-b7f2-d7c891a63d5d","2024-02-05T19:21:58.000+02:00","2026-04-22T06:41:04.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,SVP,DEX,Cloud Agent,Windows Server,Péage,VRF_BACKUP_DC,High,VRF_PEAGE_DC,Production,Haute","850.0" +"130584303","192833659","vmamdpmv2.sanef.groupe","","00:50:56:82:ef:a5","10.45.2.129","fe80::8c25:8c4e:dce7:4fc3","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","12014","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 11 9d 4d e8 01 09-dc 3a 84 d6 ff 43 24 bd","No Asset Tag","'+02:00","2025-01-21T11:19:37.000+02:00","cybexpapp","Cloud Agent","fe51c1b9-c5ea-493c-8764-987808a4713d","2022-07-07T11:41:37.000+02:00","2026-04-22T06:41:00.000+02:00","x86_64","5","SCA,VM,PM,GAV","Recette,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,Trafic,Obsolete,MIVISU","627.0" +"202413299","245310748","vrameasxt2.sanef-rec.fr","","00:50:56:9c:a2:af, 00:50:56:9c:bb:53","10.45.2.61,10.45.4.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8f f0 1e b4 8f 5c-dc 45 a1 02 f8 0e 75 a0","No Asset Tag","'+02:00","2026-04-20T18:47:53.000+02:00","cybadmsys","Cloud Agent","8d3e033a-62fd-4f26-8345-fb6e6e199652","2023-12-04T17:29:25.000+02:00","2026-04-22T11:45:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,Sextan,DEX,OS-LIN-SRV DYN","682.0" +"130580517","192830533","lamtinf1.sanef.groupe","","00:17:A4:77:14:E2","10.45.7.30","fe80::217:a4ff:fe77:14e2","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G8 Server","24","2000","Intel(R) Xeon(R) CPU E5-2620 0 @ 2.00GHz","48262","","CZ3232T6JF","","'+02:00","2024-10-14T15:38:12.000+02:00","cybexpapp","Cloud Agent","2a5c3d9c-f404-46ca-ab8f-e5901e2a0842","2022-07-07T10:55:00.000+02:00","2026-04-22T06:40:50.000+02:00","x86_64","2","SCA,VM,GAV","log4j,Recette,Bases de Données,ORACLE,OS-LIN-SRV DYN,BDD-POS DYN,Obsolete,DSI,VRF_INCONNUE,Linux Server,Cloud Agent","350.0" +"128153026","191086734","vpburaquo1.sanef.groupe","VPBURAQUO1","00:50:56:82:6E:C8","10.102.2.13","fe80::5474:c385:7fff:752d","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","4096","Phoenix Technologies LTD 6.00","VMware-42 02 c6 db d5 38 bd 08-43 d0 7e a5 ea b3 ab 62","NoAssetTag","'+02:00","2025-03-12T05:42:38.000+02:00","VPBURAQUO1\CYBSUPSYS","Cloud Agent","0f30fe64-8eb9-4fab-8e34-d7fc861f81e0","2022-06-16T13:18:18.000+02:00","2026-04-22T06:40:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,OS-WIN-SRV DYN,VRF_INCONNUE,Windows Server,Obsolete,Cloud Agent","349.0" +"361913480","345502284","PCB24253.sanef.groupe","PCB24253","24:FB:E3:CD:06:20, 0A:00:27:00:00:11","10.100.39.183,192.168.56.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M5F","","'+02:00","2026-04-16T17:37:07.000+02:00","SANEF\CAYLA","Cloud Agent","cb7d85d0-bf98-4826-8d8d-f1848d395275","2025-09-22T10:28:47.000+02:00","2026-04-22T06:40:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","337.0" +"127861245","190913009","VPAIIADNS3","VPAIIADNS3","00:50:56:82:64:D6","192.168.2.27","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 32 e7 a5 1c 8d 7f-e0 04 90 b1 2a 3e a3 9b","NoAssetTag","'+02:00","2026-04-15T15:19:54.000+02:00","Administrateur","Cloud Agent","1ba54af0-43d0-48b4-9a2d-ce47a953f95e","2022-06-14T16:03:30.000+02:00","2026-04-22T06:40:23.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Haute,SED,Critical,OS-WIN-SRV DYN,VRF_INCONNUE,Windows Server,Réseaux et Télécom,Cloud Agent,DMZ,High,Production,Reseau & Telecom,TAG-SRVEXPOSEINTERNET,DNS","0.0" +"236554069","265278425","vpechatre3.sanef.groupe","","00:50:56:90:7e:a5","10.42.16.135","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 b5 68 f5 b3 65 40-57 8b 1f 07 fa 7a 66 83","No Asset Tag","'+02:00","2025-11-18T15:42:54.000+02:00","cybreconcile","Cloud Agent","911a6144-d6a0-438f-a361-664ca817db49","2024-05-14T14:30:32.000+02:00","2026-04-22T06:40:04.000+02:00","x86_64","3","SCA,VM,PM,GAV","TALEND,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production","208.0" +"190550423","239193384","vvpeaabst2.sanef-rec.fr","","00:50:56:9c:ad:2b","10.45.10.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cc c1 a9 d2 a8 f2-fd 37 22 ca ca ee 9b b3","No Asset Tag","'+02:00","2026-03-09T13:30:51.000+02:00","cybsupapp","Cloud Agent","793727e6-7348-4e4d-815b-3204aa28f0f3","2023-09-29T15:58:49.000+02:00","2026-04-22T06:40:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,MID-NGINX DYN,BDD-ELA DYN,FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server","141.0" +"129355084","191959031","vpamsanvr1","VPAMSANVR1","00:50:56:82:4C:85","10.137.2.13","fe80::6026:d7a2:7dbf:6ccf","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 01 df 59 75 04 61-f4 36 4a ea 80 69 ed 08","NoAssetTag","'+02:00","2026-03-10T15:14:51.000+02:00","Administrateur","Cloud Agent","98e1868f-20d8-4c30-afbf-9e717264286f","2022-06-27T17:38:48.000+02:00","2026-04-22T06:39:33.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,VRF_INCONNUE,NVR,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,Production","508.0" +"213123476","250792401","vpbckangw3","","00:50:56:9a:29:e0","10.44.3.164","fe80::250:56ff:fe9a:29e0","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7652","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a 8d f5 87 6d da da-86 27 fa e8 f3 ed a6 57","No Asset Tag","'+02:00","2026-02-03T17:03:01.000+02:00","tbaad-ext","Cloud Agent","f0d76d38-def3-4a0b-91ce-86b0881e830e","2024-02-01T12:32:22.000+02:00","2026-04-22T06:39:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","53.0" +"369348919","348380760","PCB18718.sanef.groupe","PCB18718","BC:0F:F3:3D:68:3B","10.3.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CS7","","'+02:00","2026-04-03T11:53:43.000+02:00","SANEF\verloojl","Cloud Agent","e688f6c1-fcf1-4738-89a4-f745b6d5f8af","2025-10-16T15:57:56.000+02:00","2026-04-22T11:21:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"176398970","229973935","vpdaibana4","VPDAIBANA4","00:50:56:90:C3:2E","10.41.70.23","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 19 c7 14 80 9e 4f-a5 7f 35 8e a4 7c 5c 6d","NoAssetTag","'+02:00","2026-04-16T13:05:34.000+02:00","ecoad-ext","Cloud Agent","4875f381-460e-49bf-8c76-9073445cf741","2023-06-29T11:09:54.000+02:00","2026-04-22T06:38:25.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,DAI,BDD-POS DYN","354.0" +"358930712","344339665","PCB24220.sanef.groupe","PCB24220","10:B6:76:95:8B:B1","10.5.31.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZL","","'+02:00","2026-04-20T18:25:29.000+02:00","SANEF\blanchet","Cloud Agent","f8f4ef07-4f1a-4a3a-8402-b455f494385c","2025-09-11T17:11:16.000+02:00","2026-04-22T06:38:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"198004081","243188362","vrsvpadev1","VRSVPADEV1","00:50:56:9C:7D:D4","10.45.9.180","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 10 24 8c 61 cd 65-6d 43 c9 56 52 4a 65 02","NoAssetTag","'+02:00","2026-03-03T15:14:40.000+02:00","gare","Cloud Agent","6c7de17f-5c05-474d-871b-ad1245e31e84","2023-11-08T11:42:17.000+02:00","2026-04-22T09:12:15.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Windows Server,BDD-SQL DYN,OS-WIN-SRV DYN,SVP","669.0" +"179157135","231945099","vrdsibsql1.recette.adds","VRDSIBSQL1","00:50:56:9C:45:6B","10.45.1.164","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 4a 8b 59 11 e4 79-67 f1 01 cf bc ba 9d 53","NoAssetTag","'+02:00","2026-02-25T01:15:50.000+02:00","RECETTE\b03987","Cloud Agent","96d23f05-1267-49dc-8e6c-e7be90ff0df0","2023-07-19T18:19:26.000+02:00","2026-04-22T06:38:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,BDD-SQL DYN,OS-WIN-SRV DYN,Recette,BDD,DSI","252.0" +"320968472","328889238","PCB24031.sanef.groupe","PCB24031","6C:0B:5E:F8:D8:76","10.2.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF6","","'+02:00","2026-03-31T07:18:41.000+02:00","SANEF\claudel","Cloud Agent","ecb64354-3fed-47f9-843c-dff11ff9e57b","2025-04-30T13:15:44.000+02:00","2026-04-22T10:51:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"279163184","304713615","vrdecasas4.sanef.groupe","","00:50:56:82:b2:63","10.45.1.7","fe80::250:56ff:fe82:b263","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a9 4e c6 b7 8e a0-a8 88 9d 5b bc b3 0e 55","No Asset Tag","'+02:00","2026-03-23T11:58:16.000+02:00","cybadmsys","Cloud Agent","5b8b3dc2-a47e-4751-95b1-6252c80a5b64","2024-11-14T15:54:25.000+02:00","2026-04-22T06:37:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,Recette","54.0" +"131275015","193320477","vpaiiapol2","","00:50:56:82:f3:e9","10.30.12.126","fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 18 a7 f2 2e b1 a5-a1 1c 21 89 fe 28 2e 7f","No Asset Tag","'+02:00","2024-06-03T14:34:52.000+02:00","cybreconcile","Cloud Agent","579cf1d3-e95b-4537-9e26-c2c734e321dc","2022-07-12T15:43:36.000+02:00","2026-04-22T06:37:46.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,Sans,Production,Outils prod (Monitoring, NMS, gestion de parc),Cloud Agent,Linux Server,DSI,Obsolete,MID-APACHE-TOMCAT DYN,BDD-SQL DYN,BDD-ELA DYN,BDD-POS DYN,MID-NGINX DYN,VRF_INCONNUE","462.0" +"249342100","288692146","vrameapmv1.sanef-rec.fr","","00:50:56:9c:b9:3e","10.45.2.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c bb 59 92 e1 aa 18-03 0e af 7e 87 b5 cc 1b","No Asset Tag","'+02:00","2026-04-21T10:27:54.000+02:00","cybsecope","Cloud Agent","05bbc933-a556-453b-9f7f-bd557bcd68f6","2024-07-08T17:16:22.000+02:00","2026-04-22T10:46:55.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,MIVISU","35.0" +"332275914","336780122","vpameaquo1","","00:50:56:90:f9:d1","10.100.16.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d6 b9 69 7f 0f 02-6c 35 67 7f 8f 01 af d7","No Asset Tag","'+02:00","2025-10-29T12:02:18.000+02:00","cybsupsys","Cloud Agent","a8802b8e-5c87-4fcc-bff6-c2139fc7c98c","2025-06-10T12:45:37.000+02:00","2026-04-22T06:37:25.000+02:00","x86_64","4","SCA,VM,GAV","OS-LIN-SRV DYN,Production,Linux Server,Cloud Agent,Sextan","279.0" +"196050820","242054828","vpbotasim1.sanef.groupe","","00:50:56:90:85:61","10.41.23.31","fe80::250:56ff:fe90:8561","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 94 48 64 86 40 f6-73 5a 9d 2b 20 3f bc 65","No Asset Tag","'+02:00","2026-04-16T10:28:21.000+02:00","cybadmsys","Cloud Agent","b9bd1b16-bc99-45b3-97c0-fd3a002ddf14","2023-10-27T17:19:03.000+02:00","2026-04-22T06:37:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,flux_libre,Production,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0" +"186210649","236667824","vmampsxt5","","00:50:56:82:d1:65, 00:50:56:82:b2:9b, 00:50:56:82:57:b5","10.43.4.29,10.41.40.29,10.43.40.29","fe80::250:56ff:fe82:d165,fe80::250:56ff:fe82:b29b,fe80::250:56ff:fe82:57b5","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ca 2d 25 44 81 97-f3 90 5f 38 8f 3c 46 ca","No Asset Tag","'+02:00","2025-11-24T16:47:40.000+02:00","cybreconcile","Cloud Agent","140e696a-12df-41e9-bebd-8eca61f63123","2023-09-05T12:01:03.000+02:00","2026-04-22T06:37:21.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Obsolete,DEX,Cloud Agent,Linux Server,log4j,Sextan","698.0" +"379524208","352874785","vpcybapta1.sanef.groupe","","00:50:56:9c:1c:c6","10.44.1.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c b1 0d 1b 59 dd 19-7a 4f 80 15 f9 ef 4a 5e","No Asset Tag","'+02:00","2026-03-24T11:13:51.000+02:00","cybreconcile","Cloud Agent","6ea81e60-f188-45fb-8176-8e01a9e42ff3","2025-11-26T12:58:05.000+02:00","2026-04-22T11:40:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN","335.0" +"378910480","352667166","PBM21508.sanef-int.adds","PBM21508","D0:AD:08:A3:E7:2B","10.152.50.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YTY","","'+02:00","2026-04-01T12:46:39.000+02:00","Operateur","Cloud Agent","5173782b-3709-45e8-a1f1-62f0f4b9ecab","2025-11-24T15:29:20.000+02:00","2026-04-22T06:37:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"204049665","246173391","vragtaweb1.recette.adds","VRAGTAWEB1","00:50:56:9C:04:79","10.45.1.230","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 2a f9 13 61 f7 5d-25 c0 a4 3b 3b 71 2b b8","NoAssetTag","'+02:00","2026-02-23T16:48:49.000+02:00","Administrateur","Cloud Agent","a955b044-3569-4f6e-9531-0b99e6e0bec7","2023-12-13T12:45:51.000+02:00","2026-04-22T10:42:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,AgileTime,Recette,Cloud Agent,Windows Server,DRH","255.0" +"196660337","242432944","vpbooaboo1.sanef.groupe","","00:50:56:90:74:ba","10.41.22.137","fe80::250:56ff:fe90:74ba","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 50 d8 89 7a c9 e8-f2 81 33 00 22 be 20 3d","No Asset Tag","'+02:00","2026-04-07T10:28:49.000+02:00","cybadmroot","Cloud Agent","5f9569f7-9009-4dac-bed8-28b03f8a1eba","2023-10-31T18:27:13.000+02:00","2026-04-22T06:36:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,FreeFlow,Flux Libre,Production,flux_libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0" +"358103185","344006089","SVP22519.sanef-int.adds","SVP22519","D0:AD:08:A4:73:5B","10.142.3.18,10.104.2.248","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764H5","","'+02:00","2026-04-21T10:11:46.000+02:00","Superviseur","Cloud Agent","1b59f236-b9ae-433e-ae1f-ec79a1d06ab2","2025-09-09T10:29:14.000+02:00","2026-04-22T06:36:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"129320176","191935115","vpaiiadba1.sanef.groupe","VPAIIADBA1","00:50:56:C0:00:08, 00:50:56:82:AF:FA, 00:50:56:C0:00:01","192.168.207.1,10.30.10.149,192.168.25.1","fe80::84a6:d37d:6fe7:ebc9,fe80::d853:1b8b:ce23:7875,fe80::2430:5d12:2bdd:95e2","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-c1 dd 02 42 cd 42 f4 f4-d2 47 99 c8 4f d1 9f 72","NoAssetTag","'+02:00","2026-03-31T14:25:10.000+02:00","SANEF\benard","Cloud Agent","206b0451-dba0-42ee-8852-9c7fe40505fb","2022-06-27T12:13:50.000+02:00","2026-04-22T06:36:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,Cloud Agent,Windows Server,VRF_INCONNUE,BDD-SQL DYN,Outils prod (Monitoring, NMS, gestion de parc),Sans,Production,OS-WIN-SRV DYN,ORACLE","336.0" +"200009562","244159730","vppeahbst3.sanef.groupe","","00:50:56:90:76:4a","10.41.20.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 8b 75 0d 58 d2 29-46 fe 8f e0 6b 86 b7 f0","No Asset Tag","'+02:00","2026-04-02T10:29:13.000+02:00","cybreconcile","Cloud Agent","e8a2fd6f-d9d0-4f1e-b3fe-741f89579b14","2023-11-20T18:38:20.000+02:00","2026-04-22T06:36:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN,Flux Libre","334.0" +"241858782","276773405","SVP22763.sanef-int.adds","SVP22763","D0:AD:08:A7:28:18","10.209.20.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK2","","'+02:00","2026-04-19T13:55:06.000+02:00","Superviseur","Cloud Agent","263fe7cd-05b4-4f43-aa7e-55238c2e5406","2024-06-05T16:01:51.000+02:00","2026-04-22T06:36:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"176095383","229734617","vvbooaori2.sanef-rec.fr","","00:50:56:9c:11:3b","10.45.6.80","fe80::250:56ff:fe9c:113b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9a 63 d4 9f 6d 8e-61 ea 72 e7 61 59 49 4b","No Asset Tag","'+02:00","2026-03-09T15:41:40.000+02:00","podman_app","Cloud Agent","9a0647fa-be42-4676-b0ca-31699173ba60","2023-06-27T15:28:30.000+02:00","2026-04-22T06:36:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,FreeFlow,Recette,flux_libre","140.0" +"340062892","336780156","lpamebrac3.sanef.groupe","","ee:50:33:80:00:92, ee:50:33:80:00:96","10.41.41.112,10.41.41.116,10.41.41.120,10.43.4.140","fe80::ec50:33ff:fe80:92,fe80::ec50:33ff:fe80:96","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00N","/n/Bios Asset Tag :","'+02:00","2025-11-19T17:26:14.000+02:00","cybreconcile","Cloud Agent","a89c2ad5-34c7-41b1-8205-6946fb9e1015","2025-07-08T10:21:21.000+02:00","2026-04-22T06:36:19.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,Amelie,Production,OS-LIN-SRV DYN","337.0" +"131262266","193313201","lampadv1.serveur.est.sanef.fr","","00:17:A4:77:00:94","10.30.11.52","","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","8","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","28143","","VCX000000D","","'+02:00","2025-04-02T07:34:32.000+02:00","cybreconcile","Cloud Agent","d09c96f9-ad88-46bd-855b-1e92eb7d3ad2","2022-07-12T14:04:21.000+02:00","2026-04-22T11:32:07.000+02:00","x86_64","2","SCA,VM,GAV","DEX,BDD-POS DYN,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Obsolete,ADV-U,Cloud Agent,Linux Server,Sans,Production,Gestion commerciale","350.0" +"255415529","294877240","lramebrac2.sanef-rec.fr","","3e:33:fb:a0:00:d0, 3e:33:fb:a0:00:d4","10.45.2.111,10.45.2.115,10.45.2.118,10.45.5.7,169.254.17.171","fe80::3c33:fbff:fea0:d0,fe80::3c33:fbff:fea0:d4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200Z","/n/Bios Asset Tag :","'+02:00","2026-04-20T11:58:34.000+02:00","cybsecope","Cloud Agent","ddca9e7a-7c2d-4c10-b291-9d97f63ca0ed","2024-08-02T16:53:13.000+02:00","2026-04-22T06:36:13.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Amelie,Sextan,Recette","508.0" +"156298438","209385004","vpdsiaadm1.sanef-int.adds","VPDSIAADM1","00:0C:29:9C:20:66","10.44.3.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","16383","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-56 4d 11 52 93 a4 00 b0-5d 51 08 9e 97 9c 20 66","NoAssetTag","'+02:00","2026-03-26T12:47:07.000+02:00","SANEF-INT\a03987","Cloud Agent","9e280611-62f3-4835-a6ce-242cbccdcd5d","2023-01-21T06:16:04.000+02:00","2026-04-22T06:36:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,AD,Cloud Agent,Windows Server,DSI,OS-WIN-SRV DYN,VRF_INCONNUE","255.0" +"127861636","190913139","VPAIIADNS2","VPAIIADNS2","00:50:56:82:6A:2D","192.168.2.21","fe80::11d4:4e1e:91f:ab37","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 77 76 26 a1 63 df-65 51 35 af f6 d0 11 4c","NoAssetTag","'+02:00","2026-04-16T10:05:45.000+02:00","Administrateur","Cloud Agent","024a166a-06b7-4133-b335-cb1b71403b8b","2022-06-14T16:05:52.000+02:00","2026-04-22T06:36:09.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DMZ,TAG-SRVEXPOSEINTERNET,Production,Reseau & Telecom,High,SED,Haute,OS-WIN-SRV DYN,Windows Server,VRF_INCONNUE,Critical,Cloud Agent,DNS,Réseaux et Télécom","0.0" +"269157283","299135902","SVP21070.sanef-int.adds","SVP21070","D0:AD:08:A3:7B:6A","10.5.20.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWJ","","'+02:00","2026-04-21T06:27:09.000+02:00","Superviseur","Cloud Agent","209f7669-7485-4a71-aed1-27faeadb8eb6","2024-09-30T15:20:17.000+02:00","2026-04-22T06:36:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"332949821","333625859","vrpatbl2r2.recette.adds","VRPATBL2R2","00:50:56:9C:55:54","10.45.10.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 6a 78 c1 46 96 87-e8 f8 7f 8a 5d 2b 5d c8","NoAssetTag","'+02:00","2026-04-08T10:58:35.000+02:00","RECETTE\b03987","Cloud Agent","36b41bf1-21b6-462c-b7d9-08d46c142fc9","2025-06-12T16:42:09.000+02:00","2026-04-22T06:36:02.000+02:00","64-Bit","3","SCA,VM,GAV","L2R,Recette,Cloud Agent,OS-WIN-SRV DYN","374.0" +"376614015","351611635","PCV22826.sanef-int.adds","PCV22826","D0:AD:08:A3:E6:D5","10.12.7.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YQS","","'+02:00","2026-01-20T16:35:05.000+02:00","Operateur","Cloud Agent","e8fd89f2-f833-4b04-a2be-9e7ccac6b659","2025-11-14T12:41:51.000+02:00","2026-04-22T11:02:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"295082073","316880283","vpdepaast1.sanef.groupe","","00:50:56:90:cb:02","10.41.40.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 82 82 88 55 c1 62-ca dc 83 58 e4 67 9a 31","No Asset Tag","'+02:00","2026-01-21T16:30:27.000+02:00","cybadmroot","Cloud Agent","6ce50ffc-ab6f-4c7e-ba3a-255e14dd5054","2025-01-27T13:04:21.000+02:00","2026-04-22T06:35:53.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","140.0" +"174237279","228464687","sppeaanvr18","SPPEAANVR18","D4:F5:EF:8A:BB:11","10.41.7.117","fe80::d6b2:5fcc:f9cb:b9d9","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","1","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ222807H6","","'+02:00","2026-02-04T12:26:17.000+02:00","admin_astia","Cloud Agent","f98d1385-83c9-4354-8ceb-a06a4e054883","2023-06-13T11:45:48.000+02:00","2026-04-22T06:35:37.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX","523.0" +"279169027","304713053","vrdecasas1.sanef.groupe","","00:50:56:82:b0:e2","10.45.1.4","fe80::250:56ff:fe82:b0e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 69 6b 63 46 e2 ad-5f 6a 83 36 0b fa 28 da","No Asset Tag","'+02:00","2026-03-23T11:52:39.000+02:00","cybadmsys","Cloud Agent","b88811e0-cc8a-4ee1-bf37-49d372569e65","2024-11-14T15:48:31.000+02:00","2026-04-22T06:35:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,OS-LIN-SRV DYN","137.0" +"382130998","353830706","PCB22305.sanef.groupe","PCB22305","D0:AD:08:A3:7B:E1","10.252.42.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZT","8CC3502YZT","'+02:00","2026-04-21T09:33:47.000+02:00","SANEF\bellaton","Cloud Agent","50a3b475-c547-4ea6-9280-ff43bf0d748e","2025-12-06T16:10:14.000+02:00","2026-04-22T06:35:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","351.0" +"129479933","192045805","vpptrabalx1.sanef.groupe","VPPTRABALX1","00:50:56:82:1C:D9","10.41.49.15","fe80::9b0e:bf84:cbc4:daff","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 34 3c 8b f5 07 ec-cf 49 61 f7 ea e8 43 fc","NoAssetTag","'+02:00","2026-04-07T16:21:44.000+02:00","Administrateur","Cloud Agent","f637be0a-2bbd-49b1-884a-81f7c4788e7a","2022-06-28T15:08:08.000+02:00","2026-04-22T11:46:22.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Recette,BDD-SQL DYN,OS-WIN-SRV DYN,ALX,DEX,Cloud Agent,Windows Server,VRF_TRAFIC_DC","366.0" +"378053755","352302027","PCV21549.sanef-int.adds","PCV21549","D0:AD:08:A3:7B:49","10.210.7.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YS0","","'+02:00","2026-04-22T04:58:51.000+02:00","Operateur","Cloud Agent","e8ce0988-cb0a-4881-a9eb-f01c146837f2","2025-11-20T12:50:26.000+02:00","2026-04-22T06:34:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"236300233","264488384","lpemvbaemv1.sanef.groupe","","00:17:a4:77:1c:9c, 00:17:a4:77:1c:6c","192.168.103.106,192.168.101.106","fe80::217:a4ff:fe77:1c9c,fe80::217:a4ff:fe77:1c6c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","VCX000070E","","'+02:00","2024-04-18T14:38:57.000+02:00","oracle","Cloud Agent","84a94940-e1b1-4d34-a2ad-001fb49443b0","2024-05-13T14:58:45.000+02:00","2026-04-22T11:41:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,EMV,PCI Bunker EMV,Production,PCI Bunker EMV - VLAN Stecard v17","682.0" +"130587922","192835850","vrtraagas1","","00:50:56:82:53:63","10.45.1.68","fe80::250:56ff:fe82:5363","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7982","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 06 aa 79 c1 4c bd-ed fa 16 f4 63 a8 52 0b","No Asset Tag","'+02:00","2024-12-04T17:32:24.000+02:00","cybastsys","Cloud Agent","7f6c1baa-fc5a-4c14-aa51-a16daa713dc6","2022-07-07T11:58:07.000+02:00","2026-04-22T11:41:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,MID-APACHE-TOMCAT DYN,Gaspar,Obsolete,Recette,Exploitation,DEX","520.0" +"196043340","242053537","vpbotatsp1.sanef.groupe","","00:50:56:90:c9:33","10.41.23.26","fe80::250:56ff:fe90:c933","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 5d c7 1c 15 78 d6-37 84 9b 58 0c b4 39 c7","No Asset Tag","'+02:00","2026-04-16T09:42:23.000+02:00","cybreconcile","Cloud Agent","1f745a43-a175-4dbd-9a53-4c91c580be6a","2023-10-27T17:08:10.000+02:00","2026-04-22T06:34:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,Flux Libre","141.0" +"341913504","337317369","PCB21150.sanef.groupe","PCB21150","D0:AD:08:A3:E7:33","10.152.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.19.01","8CC3502YTN","","'+02:00","2026-04-21T11:02:37.000+02:00","SANEF\DHEILLY","Cloud Agent","fdbdcf0b-cf7f-41cb-96cd-dff207b44e78","2025-07-15T11:58:05.000+02:00","2026-04-22T06:33:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","52.0" +"324359363","330213430","vpgawbpgs1","","00:50:56:90:03:b9","10.42.16.18","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d9 70 c1 ad cb 57-a4 02 b9 79 bd d9 62 3e","No Asset Tag","'+02:00","2026-03-19T15:40:40.000+02:00","cybreconcile","Cloud Agent","013e3747-9807-4e34-ab9a-05dd8f2c2731","2025-05-13T12:04:37.000+02:00","2026-04-22T11:44:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","144.0" +"279142399","304713252","vrdecasas5.sanef.groupe","","00:50:56:82:39:c1","10.45.1.8","fe80::250:56ff:fe82:39c1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 1e bb 86 a2 10 d4-d1 9b 68 4c 1c ad 1a f1","No Asset Tag","'+02:00","2026-03-23T11:53:58.000+02:00","cybadmsys","Cloud Agent","865bfabf-855d-4cbf-8cf8-bb525d7bebd1","2024-11-14T15:51:08.000+02:00","2026-04-22T06:33:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","335.0" +"373217282","350071907","vpameasxt4.sanef.groupe","","00:50:56:90:88:7a, 00:50:56:90:2c:f7","10.43.4.28,10.41.41.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 66 0c 01 8e 76 5e-7a f3 dc b7 8e 3c f0 98","No Asset Tag","'+02:00","2025-11-12T12:14:33.000+02:00","cybreconcile","Cloud Agent","a2764d3f-f9b0-4ed4-b1db-9093bb564a44","2025-10-31T12:09:44.000+02:00","2026-04-22T06:33:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Production","662.0" +"160118702","213073412","vrsupacen1.sanef.groupe","","00:50:56:82:61:85","10.45.0.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 a5 ad 02 11 fa 62-d7 b4 b7 7b cb 4c c7 da","No Asset Tag","'+02:00","2026-03-11T12:35:33.000+02:00","cybadmsys","Cloud Agent","870de1da-7a09-4dfc-8dbc-005ee6213ec6","2023-02-21T16:18:53.000+02:00","2026-04-22T11:37:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,MID-NGINX DYN,MID-APACHE-TOMCAT DYN","142.0" +"358647992","344184023","VMMPBXC1.sanef-int.adds","VMMPBXC1","00:50:56:90:A8:01","10.41.60.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 b3 7f 30 ee 57 07-3d ec 59 e1 55 ea 2b 77","NoAssetTag","'+02:00","2026-04-16T16:43:55.000+02:00","UserPCT","Cloud Agent","1e775895-3944-4c5c-9c2a-f1d2634f10f2","2025-09-10T17:32:42.000+02:00","2026-04-22T06:33:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"129356560","191963474","vpormanvr1","VPORMANVR1","00:50:56:82:15:77","10.27.3.12","fe80::56d9:e31e:a9ce:a3bb","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 95 1f 6e 12 8e 6d-b0 17 41 d6 b8 5f 27 ec","NoAssetTag","'+02:00","2026-03-24T10:15:26.000+02:00","Administrateur","Cloud Agent","9460bb56-68db-4208-b3ff-e4fe25bea631","2022-06-27T18:13:28.000+02:00","2026-04-22T06:32:54.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR,VRF_INCONNUE,Production,Exploitation","524.0" +"196660268","242432305","vpbooosea1.sanef.groupe","","00:50:56:90:2a:7c","10.41.22.135","fe80::250:56ff:fe90:2a7c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 34 7c c7 7b 02 91-50 1e 03 6e f3 bf 06 1c","No Asset Tag","'+02:00","2026-04-07T14:56:17.000+02:00","cybreconcile","Cloud Agent","845addd5-d249-4429-a295-0884f8d27548","2023-10-31T18:19:56.000+02:00","2026-04-22T06:32:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,FreeFlow","334.0" +"129477171","192044987","RMILSAS1","RMILSAS1","9C:8E:99:1B:B7:34","10.30.10.8","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24536)","6.1","Computers / Server","HPE ProLiant DL360 G7 Server","12","3066","Intel(R) Xeon(R) CPU X5675 @ 3.07GHz","32768","HP P68","CZJ12607YR","","'+01:00","2026-02-03T18:38:30.000+02:00","administrateur","Cloud Agent","7d21a719-c073-416c-8288-5eb2e456fb42","2022-06-28T14:53:37.000+02:00","2026-04-22T06:32:19.000+02:00","64 bits","3","SCA,VM,PM,GAV","Recette,DSI,SAS,Obsolete,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Finances Comptabilité / Consolidation,Windows Server 2008,VRF_INCONNUE","530.0" +"323178071","329807578","PCB21141.sanef.groupe","PCB21141","60:45:2E:11:62:B9","10.255.2.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV4","8CC3502YV4","'+02:00","2026-04-07T14:20:52.000+02:00","SANEF\WALLON","Cloud Agent","26c164b8-760d-4213-bc27-818668532691","2025-05-09T12:13:35.000+02:00","2026-04-22T06:31:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"322039953","329338054","PCB21283.sanef.groupe","PCB21283","D0:AD:08:0C:7D:FE","10.4.30.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.02.03","5CG3440GJW","","'+02:00","2026-03-28T09:29:24.000+02:00","SANEF\copin","Cloud Agent","01562024-b40f-4bfc-854e-581566a71c68","2025-05-05T15:08:30.000+02:00","2026-04-22T11:03:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"324752677","330493333","sppeaanvr30","SPPEAANVR30","8C:84:74:E5:D0:49","10.41.7.129","fe80::bdab:15f2:9b99:2dca","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G11 Server","16","2600","INTEL(R) XEON(R) SILVER 4509Y","16142","HPE 2.48","CZ2D210MW6","","'+02:00","2026-02-09T16:18:06.000+02:00","Administrateur","Cloud Agent","cb82a827-f08e-4cbb-861c-71db5ad249fe","2025-05-14T17:17:28.000+02:00","2026-04-22T11:41:39.000+02:00","64-Bit","3","SCA,VM,GAV","Cloud Agent,OS-WIN-SRV DYN,Production,NVR","508.0" +"249294684","288667198","vrsvpaalb1","VRSVPAALB1","00:50:56:9C:B4:6E","10.45.9.173","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 45 34 6d 51 1d ff-e4 43 e7 40 b8 46 04 66","NoAssetTag","'+02:00","2026-02-16T16:22:20.000+02:00","svpadmin","Cloud Agent","cfde6c2b-ea10-4661-afc6-af01a1620475","2024-07-08T12:33:12.000+02:00","2026-04-22T06:31:17.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Recette,SVP,Cloud Agent","499.0" +"335478185","334615703","PCB24181.sanef.groupe","PCB24181","24:FB:E3:F3:F9:F6","10.1.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136Y0","","'+02:00","2026-04-13T16:33:26.000+02:00","SANEF\mauron","Cloud Agent","b0867bab-9417-4625-81fd-c37ba5617484","2025-06-23T11:11:43.000+02:00","2026-04-22T11:42:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"283859437","309489715","vpstlbpea2","VPSTLBPEA2","00:50:56:90:1F:A3","10.41.13.51","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3453) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 8a 2c 31 eb 7b e2-3c 27 f5 3d 6b ab ea eb","NoAssetTag","'+02:00","2026-04-20T15:31:07.000+02:00","user_stl","Cloud Agent","b9e5b4b3-6485-4a7a-b412-20384ea4c814","2024-12-03T10:33:43.000+02:00","2026-04-22T11:37:47.000+02:00","64-Bit","2","SCA,VM,GAV","Production,Cloud Agent,Systel,BDD-SQL DYN,OS-WIN-SRV DYN","346.0" +"129355937","191959426","vpbovanvr1","VPBOVANVR1","00:50:56:82:6C:00","10.137.5.10","fe80::182f:5704:5a7:9917","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 b2 37 61 bc b0 41-54 8f b6 3f 81 e7 c2 19","NoAssetTag","'+02:00","2026-03-11T13:39:31.000+02:00","Administrateur","Cloud Agent","fc728f07-8bdd-4554-8de4-b076fb91a21a","2022-06-27T17:48:20.000+02:00","2026-04-22T09:44:26.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Production,Exploitation,DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_INCONNUE","523.0" +"264669796","297610192","vrpbiadgw1.recette.adds","VRPBIADGW1","00:50:56:9C:A6:3A","10.45.7.169","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c c1 b3 9e 94 e6 5d-1b 9c 2c c2 f4 c0 32 8c","NoAssetTag","'+02:00","2026-03-23T12:58:42.000+02:00","Administrateur","Cloud Agent","38e9c70e-17c6-44d8-b724-fc523f5013c7","2024-09-11T11:01:41.000+02:00","2026-04-22T06:30:47.000+02:00","64-Bit","2","SCA,VM,GAV","OS-WIN-SRV DYN,Cloud Agent,Recette,PowerBI","249.0" +"196660165","242432941","vpbooaori1.sanef.groupe","","00:50:56:90:a0:1d","10.41.22.139","fe80::250:56ff:fe90:a01d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 74 23 cd 47 6f b2-af db be 5a b4 1b cc 01","No Asset Tag","'+02:00","2026-04-07T15:38:31.000+02:00","cybreconcile","Cloud Agent","9d284d8e-c47d-44ae-acfe-5cc543379c58","2023-10-31T18:27:13.000+02:00","2026-04-22T11:37:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,flux_libre,Production,OS-LIN-SRV DYN,Flux Libre","336.0" +"415782722","367597484","PCB20635.sanef.groupe","PCB20635","BC:0F:F3:3D:18:C1","10.252.4.39","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DSQ","","'+02:00","2026-04-14T17:24:54.000+02:00","","Cloud Agent","7383e264-afcf-4191-84d6-36a6cf4498a8","2026-04-14T15:06:17.000+02:00","2026-04-22T06:30:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"230366366","258599098","ls-st-etienne","LS-ST-ETIENNE","00:50:56:90:50:84","10.41.2.73","fe80::b44c:7df5:412f:6ffa","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 9c ef 71 82 7a ba-4a d9 c1 e6 e3 d0 07 12","NoAssetTag","'+02:00","2026-03-03T16:19:26.000+02:00","svpadmin","Cloud Agent","de3f12fa-6ee4-4493-8272-cb43d9724087","2024-04-16T15:59:36.000+02:00","2026-04-22T06:30:36.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Production,High,VRF_PEAGE_DC,Péage,SVP","681.0" +"240441858","274892555","vpiadawsus1.sanef-int.adds","VPIADAWSUS1","00:50:56:9A:AD:03","10.44.3.36","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1a df 95 da a3 79 e3-a2 a9 1c 4b a5 6a 2f 71","NoAssetTag","'+02:00","2026-04-15T02:54:07.000+02:00","SANEF-INT\SA05604","Cloud Agent","3e0a1037-8bee-4193-8996-bb04ea2fdf1d","2024-05-30T14:44:02.000+02:00","2026-04-22T06:30:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,OS-WIN-SRV DYN","246.0" +"365246435","346832501","PCV21570.sanef-int.adds","PCV21570","D0:AD:08:A3:E6:C4","10.154.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YR4","","'+02:00","2026-03-18T08:20:20.000+02:00","Operateur","Cloud Agent","1d26f946-9290-4140-858b-24efa0dd37cc","2025-10-03T15:36:00.000+02:00","2026-04-22T06:30:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"300252485","320225475","SVP22858.sanef-int.adds","SVP22858","D0:AD:08:A3:7B:D6","10.12.20.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVV","","'+02:00","2026-03-19T15:00:23.000+02:00","Superviseur","Cloud Agent","4c20d3cb-6fab-4735-9146-aa5721ce5fc0","2025-02-14T12:09:48.000+02:00","2026-04-22T06:29:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"322357104","329435133","PCB23706.sanef.groupe","PCB23706","6C:0B:5E:ED:72:9B","10.207.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L45","","'+02:00","2026-04-20T10:09:50.000+02:00","SANEF\thibautj","Cloud Agent","2e634196-e903-4721-8348-7d1470b94107","2025-05-06T11:58:23.000+02:00","2026-04-22T06:29:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"197825360","243087339","nvr-spare-mtz","NVR-SPARE-MTZ","00:50:56:90:03:D9","10.12.7.252","fe80::29ae:1e3:beea:c9ab","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 d4 b3 ee b1 58 4b-cd 69 31 aa c7 85 fb eb","NoAssetTag","'+02:00","2026-01-28T12:54:31.000+02:00","Administrateur","Cloud Agent","8471a142-dfda-4b75-8759-ba79f32272e2","2023-11-07T13:29:47.000+02:00","2026-04-22T11:41:15.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,NVR","523.0" +"332275911","333860642","vpameahtp2.sanef.groupe","","00:50:56:90:9d:bb, 00:50:56:90:92:0d","10.41.41.51,10.43.4.38","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f0 57 9e 98 96 4a-f1 28 f2 17 77 ff 2b ef","No Asset Tag","'+02:00","2025-10-29T10:52:43.000+02:00","cybreconcile","Cloud Agent","8d17b0bd-7464-48d9-b889-b0cf6d6a589c","2025-06-10T12:45:05.000+02:00","2026-04-22T11:32:50.000+02:00","x86_64","4","SCA,VM,GAV","Production,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,Sextan","278.0" +"373211951","350071560","vpameasxt3.sanef.groupe","","00:50:56:90:12:34, 00:50:56:90:02:9e","10.41.41.62,10.43.4.27","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f0 5c bc 40 22 b0-70 47 58 4d 4a ec 08 11","No Asset Tag","'+02:00","2025-11-12T12:04:43.000+02:00","cybreconcile","Cloud Agent","3ac94f2b-c68d-4251-9cb8-c5b3da4b14a7","2025-10-31T12:07:15.000+02:00","2026-04-22T06:28:52.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Sextan,Production,Linux Server,OS-LIN-SRV DYN","662.0" +"229382460","258006652","vpsupbmbi1.sanef.groupe","","00:50:56:8d:00:e3","10.44.5.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","23825","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d c9 2f 47 11 62 e6-0a 5e f6 34 dd d8 f1 3a","No Asset Tag","'+02:00","2026-03-30T11:45:46.000+02:00","cybadmroot","Cloud Agent","58c27d31-4492-4469-b10e-1d1828777cb1","2024-04-11T16:46:47.000+02:00","2026-04-22T11:30:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","60.0" +"130331258","192654198","VPAIIAPVC4.sanef.groupe","VPAIIAPVC4","00:50:56:82:25:3C","10.41.11.14","fe80::e866:9ddd:c507:1e32","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 f7 24 0c a2 85 27-6a cc 5a a0 ff e4 16 b5","NoAssetTag","'+02:00","2024-09-09T17:25:42.000+02:00","SANEF\durmarque","Cloud Agent","724b1b60-67b5-423a-8ae0-46e31904ef93","2022-07-05T13:48:37.000+02:00","2026-04-22T11:39:15.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Obsolete,Sans,Exploitation,Production,Cloud Agent,Windows Server,DEX,VRF_INCONNUE,NVR,Workstation","518.0" +"338807292","336780149","vpintaprx2.sanef.groupe","","00:50:56:82:0d:77","192.168.20.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 46 17 6e 3f 09 37-1d fd 03 38 fd fb 2e 79","No Asset Tag","'+02:00","2026-04-15T14:51:46.000+02:00","cybreconcile","Cloud Agent","f6767056-31a2-4cd1-9c8a-288474c49fce","2025-07-03T10:02:20.000+02:00","2026-04-22T11:43:03.000+02:00","x86_64","4","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Gestion institutionnel,TAG-SRVEXPOSEINTERNET,High,VRF_INCONNUE,Production,ServersInCyberark","132.0" +"228415190","257516810","ls-sarreguemines","LS-SARREGUEMINE","00:50:56:90:BD:4D","10.41.2.109","fe80::3459:868c:786e:f3c6","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 a3 5c 0c 00 93 6e-9a 66 0e 5b 37 b9 ba f2","NoAssetTag","'+02:00","2026-02-17T12:07:41.000+02:00","svpadmin","Cloud Agent","b78f1892-49f8-4faf-8f3e-45d153820aba","2024-04-08T11:24:30.000+02:00","2026-04-22T06:28:03.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Péage,High,SVP,OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server","508.0" +"279112238","304690920","vpemvasat1.sanef.groupe","","00:50:56:86:ba:94","192.168.100.141","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 06 3f cb fb b5 ec dd-00 c2 5f a2 97 91 c1 69","No Asset Tag","'+02:00","2025-11-18T17:20:47.000+02:00","root","Cloud Agent","9e455e15-7fc3-4b0a-9b65-70628a2f0240","2024-11-14T12:47:47.000+02:00","2026-04-22T06:28:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN,BDD-POS DYN,OS-LIN-SRV DYN","335.0" +"351094057","341042665","PCB25823.sanef.groupe","PCB25823","28:95:29:1A:D9:2A","10.205.0.113,192.168.1.114","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTT","","'+02:00","2026-04-21T09:14:43.000+02:00","SANEF\PAPE","Cloud Agent","efce715a-e385-42e5-a3eb-67955ff0fada","2025-08-13T13:49:12.000+02:00","2026-04-22T11:31:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"244010477","283212503","MTO22902.sanef.groupe","MTO22902","D0:AD:08:A3:E7:28","10.106.31.1","fe80::7716:a0ee:a31b:d344","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNQ","","'+02:00","2025-09-05T15:09:51.000+02:00","SANEF\meteonewsW11","Cloud Agent","366c942a-eaa7-4989-bbe7-78a1623a88c1","2024-06-14T13:00:57.000+02:00","2026-04-22T11:45:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"152243081","206847720","vpiadaada1.sanef-int.adds","VPIADAADA1","00:50:56:8D:7C:9C","10.44.2.165","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 0d 45 08 74 02 89 a2-b9 36 77 a6 8a 44 d0 8f","NoAssetTag","'+02:00","2026-03-26T12:47:00.000+02:00","CYBADMSYS","Cloud Agent","c7c9bc3f-b1c4-45ad-97bb-207d4b097635","2022-12-16T12:47:17.000+02:00","2026-04-22T11:17:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,AD,OS-WIN-SRV DYN,VRF_INCONNUE","249.0" +"310772909","324742436","PCB22464.sanef.groupe","PCB22464","F0:20:FF:9A:ED:18","192.168.1.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HWJ","","'+02:00","2026-04-14T09:51:50.000+02:00","SANEF\CHAGNEAU","Cloud Agent","29009130-b181-4b77-8aec-c69211093e98","2025-03-25T10:38:52.000+02:00","2026-04-22T11:38:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"139276377","198335416","vpdecasas7.sanef.groupe","","00:50:56:82:3f:e9","10.30.11.155","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257964","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 e7 36 38 3e d1 bc-ec 48 12 4d 54 f9 09 92","No Asset Tag","'+02:00","2026-03-25T11:48:03.000+02:00","cybreconcile","Cloud Agent","2f728387-f3ea-4e45-b052-1181cdede9fd","2022-09-08T09:19:40.000+02:00","2026-04-22T11:37:59.000+02:00","x86_64","3","SCA,VM,PM,GAV","ServersInCyberark,OS-LIN-SRV DYN,Production,Finances Comptabilité / Consolidation,Cloud Agent,Linux Server,SAS,DSI,VRF_INCONNUE,Obsolete","71.0" +"190915657","239409823","vvaflsmtp1.sanef-rec.fr","","00:50:56:9c:ea:e1, 1a:50:83:10:5f:17","10.45.0.231,10.88.0.1","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 4d 5b 62 d1 1d 4d-5c 8e 04 15 7b 70 f8 f3","No Asset Tag","'+02:00","2026-03-09T15:29:49.000+02:00","cybsupsys","Cloud Agent","e6c3ed13-fe7a-4dd5-adf7-dafc493ace10","2023-10-02T15:20:36.000+02:00","2026-04-22T11:43:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,flux_libre,Recette,FreeFlow","142.0" +"378000978","352286611","PCB22334.sanef.groupe","PCB22334","D0:AD:08:A3:7B:6D","10.200.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWF","8CC3502YWF","'+02:00","2026-04-22T04:40:21.000+02:00","SANEF\ermery","Cloud Agent","ee3cec85-08ed-451a-a1a3-8b63e454f676","2025-11-20T10:41:34.000+02:00","2026-04-22T11:42:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"188336946","237946999","MTR-2J775R3","MTR-2J775R3","90:8D:6E:8E:1C:47","10.1.32.200","fe80::e863:75c2:4531:707e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","2J775R3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","6653bb0a-23f7-42ce-a825-60492c465dac","2023-09-17T09:54:20.000+02:00","2026-04-22T11:38:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"321615979","329104304","PCB21629.sanef.groupe","PCB21629","D0:AD:08:A3:E6:B7","10.119.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSB","8CC3502YSB","'+02:00","2026-04-16T09:22:03.000+02:00","SANEF\haugeard","Cloud Agent","3195b060-38dd-47e7-943c-0662025cdbc1","2025-05-02T16:32:29.000+02:00","2026-04-22T11:44:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"131405556","193423788","vmampdif2.sanef.groupe","","00:50:56:82:22:6E","10.41.40.121","fe80::250:56ff:fe82:226e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 09/17/2015","VMware-42 02 6b e5 f5 8f 41 09-6e 8e 8b 0d ad 3e ff 6b","No Asset Tag","'+02:00","2018-09-25T12:04:43.000+02:00","cybreconcile","Cloud Agent","677ad417-17ef-4c5d-baa3-df481b654afd","2022-07-13T10:27:16.000+02:00","2026-04-22T06:27:01.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Obsolete,VRF_TRAFIC_DC,Sans,Trafic,Production,Sextan,Cloud Agent,Linux Server","693.0" +"128618343","191426489","ls-santerre","LS-SANTERRE","00:50:56:90:61:B8","10.41.2.50","fe80::656d:2b7a:3f5d:64da","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 48 b8 8e f5 21 14-2f a6 b8 bc c0 d6 31 23","NoAssetTag","'+02:00","2026-03-02T16:49:35.000+02:00","svpadmin","Cloud Agent","8b825828-6d43-4f19-b15e-c5ae581690d5","2022-06-21T16:08:10.000+02:00","2026-04-22T06:26:59.000+02:00","64-Bit","5","SCA,VM,PM,GAV","VRF_PEAGE_DC,SVP,OS-WIN-SRV DYN,Windows Server,Haute,Production,Péage,High,Cloud Agent,DEX","641.0" +"318433915","328054839","PCB22916.sanef.groupe","PCB22916","D0:AD:08:A3:7B:DA","10.104.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVM","8CC3502YVM","'+02:00","2026-04-21T11:39:58.000+02:00","SANEF\merciers","Cloud Agent","cb9ab398-b81a-4e65-b2c8-77c8b62c9aa1","2025-04-22T16:24:37.000+02:00","2026-04-22T11:30:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"202418413","245312456","vrameasxt4.sanef-rec.fr","","00:50:56:9c:72:5e, 00:50:56:9c:e0:9a","10.45.4.63,10.45.2.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8a 86 1a 6c 10 8d-5a bd 34 fd 12 d8 29 bc","No Asset Tag","'+02:00","2026-04-20T15:35:19.000+02:00","cybadmsys","Cloud Agent","3b64fcf3-897c-4344-a6fe-988e0d1200bd","2023-12-04T17:50:25.000+02:00","2026-04-22T11:32:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,DEX,Cloud Agent,Linux Server,Sextan","95.0" +"383937293","354709045","PCB22290.sanef.groupe","PCB22290","D0:AD:08:A3:7D:06","10.252.42.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ4","8CC3502YZ4","'+02:00","2026-03-29T09:12:21.000+02:00","SANEF\HADDAOUI","Cloud Agent","5a78027d-3284-4be4-ad78-cb004303c3a6","2025-12-15T09:40:23.000+02:00","2026-04-22T11:47:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"221319867","254240324","ls-bapaume","LS-BAPAUME","00:50:56:90:7B:77","10.41.2.32","fe80::6eae:35c5:543e:82e2","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 92 d0 bc 43 ce 25-18 09 a5 9b 79 6f 31 3e","NoAssetTag","'+02:00","2026-04-02T10:07:44.000+02:00","svpadmin","Cloud Agent","7b20c9db-d1d6-457e-8a53-5be841aa0d61","2024-03-11T10:42:58.000+02:00","2026-04-22T06:26:52.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,OS-WIN-SRV DYN,High,VRF_PEAGE_DC,Péage,Production,Cloud Agent,Windows Server,DEX","507.0" +"175025285","228996977","vrairahtp1.sanef.groupe","","00:50:56:82:7e:b4","10.43.255.19","fe80::1162:faac:f084:2df3","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","16017","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 24 2b 85 10 aa 99-9a 38 33 26 87 ab 0c 4a","No Asset Tag","'+02:00","2026-04-21T10:08:07.000+02:00","cybsecope","Cloud Agent","6ce91fb2-96e6-46d6-a826-619283611851","2023-06-19T15:39:54.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette,DFIN,Satisf'aire","68.0" +"387141599","356493099","vmdtrac10.recette.adds","VMDTRAC10","00:50:56:9C:C9:C1","10.45.17.12","fe80::a2a0:c1c0:1627:9e2","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c bf b3 a5 97 c4 3d-22 35 75 0d 3e f7 80 68","NoAssetTag","'+02:00","2026-04-16T01:06:10.000+02:00","supwindev","Cloud Agent","c533cc81-fe77-4524-9726-bafdab001d4f","2025-12-31T11:02:03.000+02:00","2026-04-22T10:47:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"357858337","343892477","PCB21272.sanef.groupe","PCB21272","D0:AD:08:0C:7D:16","10.4.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJT","","'+02:00","2026-04-21T09:10:22.000+02:00","SANEF\RENAULT","Cloud Agent","30c12c57-d14d-4c68-afa6-265824b06bdd","2025-09-08T12:26:06.000+02:00","2026-04-22T11:12:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"131396612","193418131","vptraatpf1.sanef.groupe","","00:50:56:82:59:9c","192.168.40.10","fe80::7fff:8231:ebd9:a751","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","5966","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d a0 20 4c 72 cf 33-f0 57 b9 fc e5 89 2a e3","No Asset Tag","'+02:00","2025-01-21T11:12:20.000+02:00","cybreconcile","Cloud Agent","4d179ac2-b564-4c18-a3f8-792967439925","2022-07-13T09:35:23.000+02:00","2026-04-22T11:30:35.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Temps de parcours,VRF_INCONNUE,ServersInCyberark,DMZ,Trafic,Sans,Production,Obsolete,DEX,TAG-SRVEXPOSEINDIRECT","491.0" +"218937543","253225435","OSA20948.sanef-int.adds","OSA20948","BC:0F:F3:87:6F:89","10.152.20.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLD","","'+02:00","2026-03-19T07:29:21.000+02:00","Superviseur","Cloud Agent","9a1ed69f-b46f-4816-99e8-d768ca7a6726","2024-02-28T18:16:37.000+02:00","2026-04-22T06:26:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"372447411","349729152","vpgesaquo2.sanef.groupe","VPGESAQUO2","00:50:56:82:49:86","10.100.16.8","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","4095","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 00 c1 67 2a 6f 08-6f 90 03 bc 19 ff ff 0d","NoAssetTag","'+02:00","2026-01-29T13:25:48.000+02:00","Administrateur","Cloud Agent","3bdcbab1-92b5-4bc6-b9e3-07af7e13a590","2025-10-28T16:04:20.000+02:00","2026-04-22T11:45:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","345.0" +"270831169","300149099","SVP21040.sanef-int.adds","SVP21040","D0:AD:08:A3:7B:64","10.152.20.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWN","","'+02:00","2026-03-30T16:49:23.000+02:00","Superviseur","Cloud Agent","6046a9f1-f635-4d0b-8285-7dc9d702fb2a","2024-10-08T14:53:32.000+02:00","2026-04-22T11:22:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"363021135","345948002","vpmetaads1.sanef-int.adds","VPMETAADS1","00:50:56:94:06:51","10.44.7.132","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2800","INTEL(R) XEON(R) GOLD 6526Y","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 14 75 aa a8 58 81 94-ca c3 03 82 b5 84 7d 96","NoAssetTag","'+02:00","2026-03-26T12:47:38.000+02:00","SANEF-INT\B17402","Cloud Agent","3725e8d3-8733-4e4a-bc07-a6147e2058e3","2025-09-25T16:40:41.000+02:00","2026-04-22T11:34:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,AD,Production,Radius","246.0" +"334074300","334032724","PCB24113.sanef.groupe","PCB24113","48:EA:62:C8:83:E6","10.104.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6H","","'+02:00","2026-03-29T09:27:49.000+02:00","SANEF\merlin","Cloud Agent","6a821545-714a-4d32-a95d-e6176321a125","2025-06-17T16:06:11.000+02:00","2026-04-22T10:29:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"324739346","330493338","sppeaanvr33","SPPEAANVR33","8C:84:74:E5:B1:BF","10.41.7.132","fe80::673f:30e2:bb50:a939","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G11 Server","16","2600","INTEL(R) XEON(R) SILVER 4509Y","16142","HPE 2.48","CZ2D210MW8","","'+02:00","2026-02-10T12:05:00.000+02:00","Administrateur","Cloud Agent","1a67f8b8-acf9-4944-8f55-f56b74785d87","2025-05-14T17:17:39.000+02:00","2026-04-22T11:45:19.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,Production,OS-WIN-SRV DYN,Cloud Agent","508.0" +"129933658","192383691","vampsycapp2.sanef.groupe","VAMPSYCAPP2","00:50:56:82:0C:FB","10.41.40.101","","Windows / Server","Microsoft Windows Server 2008 R2 Standard (6.1 SP1 Build 7601.24130)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","32767","Phoenix Technologies LTD 6.00","VMware-42 02 a2 f1 8f 74 1c 04-ac 76 8b 15 d2 01 15 33","NoAssetTag","'+01:00","2023-10-24T11:07:06.000+02:00","administrateur","Cloud Agent","df33b9d1-8071-447a-b5e8-ddc7fc65115e","2022-07-01T09:24:33.000+02:00","2026-04-22T11:36:38.000+02:00","64 bits","3","SCA,VM,PM,GAV","DEX,Cloud Agent,Windows Server,Windows Server 2008,Obsolete,SIG,VRF_TRAFIC_DC,Sans,Production,Patrimoine,OS-WIN-SRV DYN","530.0" +"325026193","331288660","viaflarat1.sanef.groupe","","00:50:56:9c:f8:a4","10.46.34.78","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c fc a9 c7 79 3d 47-d0 96 20 15 f9 73 ce f7","No Asset Tag","'+02:00","2026-03-19T16:15:58.000+02:00","root","Cloud Agent","36a1809e-1763-4a31-b386-905435d4e693","2025-05-15T17:10:18.000+02:00","2026-04-22T11:40:35.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,flux_libre,Linux Server,Cloud Agent","139.0" +"358057716","343988006","SVP21130.sanef-int.adds","SVP21130","D0:AD:08:A2:AE:D9","10.100.2.29,10.192.8.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764K0","","'+02:00","2026-04-17T10:50:38.000+02:00","Superviseur","Cloud Agent","86fe105f-0e71-45d9-93e5-77d807c50fd2","2025-09-09T07:34:48.000+02:00","2026-04-22T06:23:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"213853686","251125959","sppeaanvr25","SPPEAANVR25","20:67:7C:D6:85:11","10.41.7.124","fe80::bc40:828:2e5:38b3","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ83804D3","","'+02:00","2026-03-25T18:06:01.000+02:00","CYBADMSYS","Cloud Agent","c5464547-7961-4bbb-b4bb-2d4e4095b1a5","2024-02-05T19:44:34.000+02:00","2026-04-22T06:23:36.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR","523.0" +"190553349","239196400","vvpeaabst1.sanef-rec.fr","","00:50:56:9c:08:26","10.45.10.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cb 7a b5 04 04 c1-b5 e0 a7 9f 70 ec 14 12","No Asset Tag","'+02:00","2026-03-12T10:14:24.000+02:00","cybsupapp","Cloud Agent","d44ce2e4-deed-4113-ae51-ec421311d875","2023-09-29T16:41:34.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,BDD-ELA DYN,Flux Libre,flux_libre","139.0" +"197446702","242880023","MTR-22DSNT3","MTR-22DSNT3","90:8D:6E:94:31:A9","10.5.32.200","fe80::8da2:d7dd:e776:80bd","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","22DSNT3","","'+02:00","2026-04-22T02:32:53.000+02:00","Skype","Cloud Agent","bbae03a8-6e74-4ea3-842d-fecf48a034ac","2023-11-05T13:23:21.000+02:00","2026-04-22T06:23:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"176428756","229996347","vrdsiakms1.recette.adds","VRDSIAKMS1","00:50:56:82:EC:B9","10.45.7.35","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4171) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 02 d3 5f 03 01 57 e8-95 2a 00 07 c1 d3 a9 45","NoAssetTag","'+02:00","2025-11-12T01:23:12.000+02:00","RECETTE\ndessoye","Cloud Agent","662b28d0-a049-4252-84fa-5d80cd7b8dff","2023-06-29T15:04:25.000+02:00","2026-04-22T11:32:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,DSI,OS-WIN-SRV DYN,Cloud Agent,Windows Server,AD,Recette","347.0" +"271018752","300246972","REX21532.sanef-int.adds","REX21532","D0:AD:08:A3:7B:70","10.45.11.238","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWM","","'+02:00","2025-09-22T10:53:36.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","e82eabde-88b2-4bbb-92c0-8a69f350e687","2024-10-09T12:23:04.000+02:00","2026-04-22T11:45:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"365244238","346833112","PCV21526.sanef-int.adds","PCV21526","D0:AD:08:A3:7B:6B","10.100.7.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YWQ","","'+02:00","2026-04-01T08:42:55.000+02:00","Operateur","Cloud Agent","51d67d07-7364-45f4-b1d8-a357f0522a59","2025-10-03T15:46:11.000+02:00","2026-04-22T11:37:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"213122768","250788889","vpbckangw1","","00:50:56:82:aa:33","192.168.18.52","fe80::250:56ff:fe82:aa33","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7652","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8a 48 d9 af aa 30-01 51 85 5a 18 e4 fc fb","No Asset Tag","'-04:00","2026-02-03T16:10:08.000+02:00","tbaad-ext","Cloud Agent","40ee046b-187d-4fd9-8cda-b0f1c7cbea27","2024-02-01T12:02:36.000+02:00","2026-04-22T11:42:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","53.0" +"371388068","349325130","vrtrabpxp1.recette.adds","VRTRABPXP1","00:50:56:9C:20:D8","10.45.14.168","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 1c 77 18 ed 29 9b 5a-83 59 23 a8 86 16 a3 03","NoAssetTag","'+02:00","2026-04-07T16:33:47.000+02:00","recette.adds\SBP01336@recette","Cloud Agent","61d1165e-b0e9-4eda-a492-bcf0f272480d","2025-10-24T15:44:40.000+02:00","2026-04-22T06:22:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,PX Prévia,Recette,BDD-POS DYN","251.0" +"213848989","251124341","sppeaanvr17","SPPEAANVR17","D4:F5:EF:39:89:79","10.41.7.116","fe80::cfa8:7f27:c87e:bbef","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16041","HPE U30","CZ2051034V","","'+02:00","2026-03-02T10:44:02.000+02:00","Administrateur","Cloud Agent","96d80b7c-ac92-47f6-9c50-4bb909b08470","2024-02-05T19:19:12.000+02:00","2026-04-22T11:39:38.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server,NVR","523.0" +"131270182","193318816","vpaiiacbi1.sanef.groupe","","00:50:56:82:4c:e2","10.30.12.124","fe80::71a3:5845:25c1:d5e8","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7a 02 c5 12 ef 66-37 96 1a c6 41 9c 62 c6","No Asset Tag","'+02:00","2025-12-11T09:49:04.000+02:00","cybreconcile","Cloud Agent","06beef37-3e5b-49f1-9e5d-6ff4b90a9e39","2022-07-12T15:24:19.000+02:00","2026-04-22T11:34:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),Centreon,DSI,ServersInCyberark,Obsolete,Cloud Agent,Linux Server","486.0" +"320929796","328808972","PCB24032.sanef.groupe","PCB24032","6C:0B:5E:F8:D8:5B","10.100.39.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDD","","'+02:00","2026-04-02T17:20:54.000+02:00","SANEF\CHAPELET","Cloud Agent","239f806b-cc3d-4877-addf-89b3c59236f9","2025-04-30T09:55:02.000+02:00","2026-04-22T06:22:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","256.0" +"215157024","251693221","MTR-1CD4804","MTR-1CD4804","6C:3C:8C:56:3B:3E","10.100.32.203","fe80::13f5:5b9:4b1d:6d3f","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","1CD4804","","'+02:00","2026-04-22T02:32:54.000+02:00","Skype","Cloud Agent","e106e8d4-4c53-4537-b7e6-830af5ee9e16","2024-02-12T10:03:32.000+02:00","2026-04-22T11:33:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"139157881","198270080","vmampgtc1","","00:50:56:82:1E:CE, 00:50:56:82:72:1A, 00:50:56:82:3C:2F","10.41.40.85,10.43.40.85,10.43.4.85","fe80::250:56ff:fe82:1ece,fe80::250:56ff:fe82:721a,fe80::250:56ff:fe82:3c2f","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3e 4f fc fa cd ee-fa d2 f5 6e ae 60 92 36","No Asset Tag","'+02:00","2024-02-13T13:58:43.000+02:00","cybreconcile","Cloud Agent","0a831760-7e62-488d-a5fd-a0b37457aa00","2022-09-07T14:22:35.000+02:00","2026-04-22T11:27:32.000+02:00","x86_64","5","SCA,VM,PM,GAV","Production,Trafic,log4j,DEX,Cloud Agent,Linux Server,VRF_TRAFIC_DC,OS-LIN-SRV DYN,Obsolete,MIVISU","876.0" +"129342529","191949306","sppeaanvr15","SPPEAANVR15","D4:F5:EF:50:80:1C","10.41.7.114","fe80::b140:a7d:109c:3910","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DVC","","'+02:00","2026-02-03T16:28:21.000+02:00","Administrateur","Cloud Agent","6aee5661-8786-4304-ae84-a945d4850753","2022-06-27T15:11:43.000+02:00","2026-04-22T11:41:16.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,Sans,Production,Cloud Agent,Windows Server,VRF_INCONNUE,DEX,OS-WIN-SRV DYN,NVR","523.0" +"383287965","354385118","PCV21149.sanef-int.adds","PCV21149","D0:AD:08:A3:7B:31","10.1.6.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YX8","","'+02:00","2026-04-09T09:00:48.000+02:00","Operateur","Cloud Agent","27f6d630-bbc5-4f50-b793-02e251a3fd45","2025-12-11T17:17:34.000+02:00","2026-04-22T06:22:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"128150824","191086357","vmradius4.sanef.groupe","VMRADIUS4","00:50:56:82:5E:F8","10.30.10.125","","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24544)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 02 9b 8b 5e bc 56 ec-92 8f 42 ef 56 eb ae 83","NoAssetTag","'+01:00","2025-12-16T12:52:27.000+02:00","SANEF\alaad","Cloud Agent","a2c6f12b-e674-4b94-9d6f-7b430ce1268b","2022-06-16T13:12:12.000+02:00","2026-04-22T11:15:21.000+02:00","64 bits","5","SCA,VM,PM,GAV","VRF_INCONNUE,OS-WIN-SRV DYN,Sans,Production,Sécurité IT,Radius,Windows Server,Obsolete,Windows Server 2008,DSI,Cloud Agent,TAG-SRVEXPOSEINDIRECT,Critical","865.0" +"131396522","193416778","lpsimabkp1.sanef.groupe","","00:17:a4:77:10:80","10.30.10.143","fe80::217:a4ff:fe77:1080","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","32","2600","Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz","32044","HP I36 07/18/2022","CZ25430692","","'+02:00","2024-09-24T14:24:50.000+02:00","cybreconcile","Cloud Agent","ec29d36f-515f-4712-9cbe-11eaaceb8c88","2022-07-13T09:22:37.000+02:00","2026-04-22T11:38:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,VRF_INCONNUE,BDD-POS DYN,DSI,Obsolete,ServersInCyberark,TINA,Cloud Agent,Linux Server,Sécurité IT","348.0" +"364466255","346502745","PCV21518.sanef-int.adds","PCV21518","D0:AD:08:A7:27:EC","10.7.53.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YPS","","'+02:00","2026-04-17T12:13:31.000+02:00","Operateur","Cloud Agent","d5f1e2a7-577e-408c-9327-051a76c1f6f5","2025-09-30T16:54:44.000+02:00","2026-04-22T11:39:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"129310119","191929304","ls-therouanne","LS-THEROUANNE","00:50:56:90:90:51","10.41.2.38","fe80::f6e6:31d5:222e:18af","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 68 57 44 ab 2b da-b4 57 a9 9e d5 c0 26 e2","NoAssetTag","'+02:00","2026-03-04T11:33:23.000+02:00","svpadmin","Cloud Agent","8c7dd5a5-8001-4382-8474-81e896675753","2022-06-27T10:58:59.000+02:00","2026-04-22T11:44:41.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Haute,Cloud Agent,Windows Server,OS-WIN-SRV DYN,DEX,SVP,VRF_PEAGE_DC,High,Production,Péage","851.0" +"173355805","227828333","vvbooaboo1.sanef-rec.fr","","00:50:56:9c:60:2d","10.45.6.71","fe80::250:56ff:fe9c:602d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 1e 4c 91 32 23 92-4d 16 d6 e7 80 b4 24 25","No Asset Tag","'+02:00","2026-03-12T10:55:28.000+02:00","cybsupsys","Cloud Agent","5c874b4e-09c9-42c7-9351-8e6aadea36d8","2023-06-07T10:45:07.000+02:00","2026-04-22T11:26:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,Recette,Flux Libre,OS-LIN-SRV DYN,flux_libre,FreeFlow","140.0" +"193616126","240982066","vibocs4as3.sanef.groupe","","00:50:56:90:c0:91","10.41.22.74","fe80::250:56ff:fe90:c091","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 54 fb 5c 8a d3 bc-bb e2 9e f5 f8 b3 df b6","No Asset Tag","'+02:00","2026-03-16T16:12:40.000+02:00","cybadmsys","Cloud Agent","2047bf18-8379-406f-b2c6-47b46730b8a5","2023-10-16T12:50:27.000+02:00","2026-04-22T11:28:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,ServersInCyberark,Cloud Agent,Linux Server,FreeFlow","141.0" +"320928421","328809293","PCB22908.sanef.groupe","PCB22908","60:45:2E:11:FE:13","10.255.4.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMX","8CC3502YMX","'+02:00","2026-04-16T10:43:45.000+02:00","SANEF\ginp","Cloud Agent","e2ac94f7-0da8-44ee-8a88-e78364b05549","2025-04-30T09:56:55.000+02:00","2026-04-22T11:46:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"175944074","229613622","vvbotapps1.sanef-rec.fr","","5a:b2:f5:21:73:e0, 66:da:ea:db:2d:fd, 9e:40:a5:7d:30:a7, 72:9d:3e:38:20:4e, 96:1c:12:66:47:14, 0e:cc:43:92:1d:27, de:35:46:9d:41:e6, 36:fd:35:ec:d7:1c, 0e:eb:fb:10:1b:c6, 7e:be:f9:ec:a2:b5, 42:4a:25:23:eb:f9, 4e:c4:59:c5:a8:81, ae:16:44:be:a1:01, de:4f:c5:a4:58:f1, 96:83:78:b9:89:23, 00:50:56:9c:8e:55, 66:95:c1:3f:bb:17, 92:1d:a9:36:ab:be, 06:ab:b7:72:fc:9d, 8e:56:56:d4:b3:c6, 5e:54:b6:92:e5:fe, 82:8d:74:92:d4:e8, 72:39:de:d9:6b:ae, a6:bd:f0:bd:97:7d, ba:77:c6:01:3b:eb, fa:90:88:3d:a3:4b, 6e:e6:7e:96:8a:f8, 96:20:64:6b:0b:83, 06:85:6a:09:74:0f, 4a:5f:ba:26:57:a2, 7a:e8:0a:45:5f:f0, d6:34:78:0f:a2:ec, ba:39:97:7f:b7:ab, d6:a8:60:b8:65:66, ce:af:ef:2f:e4:90","10.45.6.132,10.89.0.1","fe80::58b2:f5ff:fe21:73e0,fe80::64da:eaff:fedb:2dfd,fe80::9c40:a5ff:fe7d:30a7,fe80::709d:3eff:fe38:204e,fe80::941c:12ff:fe66:4714,fe80::ccc:43ff:fe92:1d27,fe80::dc35:46ff:fe9d:41e6,fe80::34fd:35ff:feec:d71c,fe80::ceb:fbff:fe10:1bc6,fe80::7cbe:f9ff:feec:a2b5,fe80::404a:25ff:fe23:ebf9,fe80::4cc4:59ff:fec5:a881,fe80::ac16:44ff:febe:a101,fe80::dc4f:c5ff:fea4:58f1,fe80::9483:78ff:feb9:8923,fe80::250:56ff:fe9c:8e55,fe80::6495:c1ff:fe3f:bb17,fe80::901d:a9ff:fe36:abbe,fe80::4ab:b7ff:fe72:fc9d,fe80::8c56:56ff:fed4:b3c6,fe80::5c54:b6ff:fe92:e5fe,fe80::808d:74ff:fe92:d4e8,fe80::7039:deff:fed9:6bae,fe80::a4bd:f0ff:febd:977d,fe80::b877:c6ff:fe01:3beb,fe80::f890:88ff:fe3d:a34b,fe80::6ce6:7eff:fe96:8af8,fe80::9420:64ff:fe6b:b83,fe80::485:6aff:fe09:740f,fe80::485f:baff:fe26:57a2,fe80::78e8:aff:fe45:5ff0,fe80::d434:78ff:fe0f:a2ec,fe80::b839:97ff:fe7f:b7ab,fe80::d4a8:60ff:feb8:6566,fe80::ccaf:efff:fe2f:e490","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 71 bf bc 9d 56 79-0e f0 9c b6 50 17 eb 18","No Asset Tag","'+02:00","2026-03-12T13:06:50.000+02:00","kapschsysuser","Cloud Agent","8ad8361b-5982-4bc5-a94d-1e7b9983cc0f","2023-06-26T15:47:34.000+02:00","2026-04-22T11:18:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,Flux Libre,flux_libre","142.0" +"395875292","359658168","vpvsaagpu1.sanef.groupe","","00:50:56:90:44:a7","10.42.16.88","fe80::250:56ff:fe90:44a7","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 9f 4c ff e1 df 54-f8 ac 22 9f 1b 36 93 fe","No Asset Tag","'+02:00","2026-02-09T16:29:36.000+02:00","tbaad-ext","Cloud Agent","f80ffbce-5d09-48c4-8241-7a4f70df82d3","2026-01-29T15:08:09.000+02:00","2026-04-22T11:30:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Sauvegarde & Securite,Production,Cloud Agent,Linux Server","52.0" +"287925589","311535928","vrosapast1.sanef-rec.fr","","00:50:56:9c:90:bd","10.45.9.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d4 4d 97 1c e9 37-05 1c b6 cc 9a 43 b7 8e","No Asset Tag","'+02:00","2026-02-16T12:22:34.000+02:00","cybintsys","Cloud Agent","8786ae31-c349-4265-b4f4-7521f48f3e77","2024-12-20T12:48:49.000+02:00","2026-04-22T06:19:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","142.0" +"129343041","191950381","sppeaanvr7","SPPEAANVR7","30:E1:71:51:2C:01","10.41.7.106","fe80::5605:a31:eec3:b319","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLZ","","'+02:00","2026-02-02T11:36:45.000+02:00","Administrateur","Cloud Agent","c69e2d50-607d-49db-a14c-0a74291c7b9b","2022-06-27T15:31:13.000+02:00","2026-04-22T11:42:04.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,NVR,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Sans,Exploitation,Production,DEX","523.0" +"163897942","219067810","vmcmdb2","","00:50:56:82:67:ef","10.30.11.108","fe80::250:56ff:fe82:67ef","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 24 82 65 20 26 53-d8 50 a7 83 3c 91 e6 08","No Asset Tag","'+02:00","2025-10-09T11:34:24.000+02:00","cybsupapp","Cloud Agent","13d7fa43-03d2-4257-90de-970af488eff8","2023-03-22T17:30:51.000+02:00","2026-04-22T11:41:49.000+02:00","x86_64","4","SCA,VM,PM,GAV","ITOP,TAG-SRVEXPOSEINDIRECT,BDD-POS DYN,DSI,Cloud Agent,Linux Server,Obsolete","695.0" +"380815733","353392215","PCB17983.sanef.groupe","PCB17983","C0:18:03:85:61:2E","10.100.39.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.09.02","8CC206174Z","8CC206174Z","'+02:00","2026-04-16T13:42:21.000+02:00","SANEF\psi","Cloud Agent","f7dedc5c-74cc-4a1f-93d5-9d9c512b73d2","2025-12-02T13:43:25.000+02:00","2026-04-22T10:32:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"395881501","359669099","vpvsaagpu2.sanef.groupe","","00:50:56:90:81:27","10.42.16.89","fe80::250:56ff:fe90:8127","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 1d e1 a2 93 aa 40-40 9b 9e b9 0b 99 91 af","No Asset Tag","'+02:00","2026-02-09T16:42:59.000+02:00","tbaad-ext","Cloud Agent","9fd19e40-e7b8-42f5-aed8-982a1bdc7ac2","2026-01-29T16:52:10.000+02:00","2026-04-22T11:37:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Sauvegarde & Securite,Gestion SAUVEGARDE,Production,Linux Server,Cloud Agent","52.0" +"128150818","191086355","vmradius3.sanef.groupe","VMRADIUS3","00:50:56:82:1F:DB, 02:00:4C:4F:4F:50","10.30.10.124,169.254.99.117","fe80::fdc5:80ee:27a8:29d5,fe80::dcea:203e:bd9d:6375","Windows / Server","Microsoft Windows Server 2008 R2 (6.1 SP1 Build 7601.24546)","6.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 b7 fa 10 5a d9 5d-d9 a7 c3 33 13 98 24 eb","NoAssetTag","'+02:00","2024-05-21T14:41:57.000+02:00","SANEF\alaad","Cloud Agent","69739527-6f65-4752-95fd-8f20072ec70d","2022-06-16T13:11:52.000+02:00","2026-04-22T10:58:37.000+02:00","64 bits","5","SCA,VM,PM,GAV","VRF_INCONNUE,Critical,Cloud Agent,Sans,Sécurité IT,Production,Windows Server 2008,DSI,Windows Server,OS-WIN-SRV DYN,Obsolete,Radius,TAG-SRVEXPOSEINDIRECT","861.0" +"213855634","251126075","spboomcla2.sanef.groupe","","5c:ba:2c:1c:93:f0","10.41.22.144","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95795","HPE U30 07/20/2023","CZ22410FK9","","'+02:00","2026-04-07T10:10:48.000+02:00","cybreconcile","Cloud Agent","1f64988b-4a4e-4b6d-9d53-756e174e72df","2024-02-05T19:47:48.000+02:00","2026-04-22T11:45:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Production","338.0" +"238298215","269275297","lpemvbpemv1.sanef.groupe","","00:17:a4:77:1c:60, 00:17:a4:77:1c:88, 00:17:a4:77:1c:5c","192.168.103.104,169.254.0.158,172.16.0.104,192.168.101.104,192.168.101.144,192.168.101.149","fe80::217:a4ff:fe77:1c60,fe80::217:a4ff:fe77:1c88,fe80::217:a4ff:fe77:1c5c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","VCX000070C","","'+02:00","2024-05-30T21:57:35.000+02:00","grid","Cloud Agent","6d25ca0b-346f-4a3f-82d4-50f25127e16d","2024-05-21T17:02:06.000+02:00","2026-04-22T11:36:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,PCI Bunker EMV,PCI Bunker EMV - VLAN Stecard v17,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","682.0" +"296277432","317660760","REX21538.sanef-int.adds","REX21538","D0:AD:08:A3:E6:E0","10.100.91.83","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQ4","","'+02:00","2026-04-01T08:32:29.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","60552618-b2c6-4005-9ab0-eea678abc54a","2025-01-30T18:00:51.000+02:00","2026-04-22T11:24:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"249487889","288760443","vrsvpasap2","VRSVPASAP2","00:50:56:9C:E4:B4","10.45.9.174","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 1d 70 1e 7f ce db-eb 87 a8 b7 e4 d0 9b ba","NoAssetTag","'+02:00","2026-02-17T15:42:08.000+02:00","svpadmin","Cloud Agent","6c8c805f-dcf7-4ece-a346-657de5b1a089","2024-07-09T09:13:13.000+02:00","2026-04-22T11:43:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,OS-WIN-SRV DYN,Recette,Cloud Agent","499.0" +"205522748","246920804","vposapels1.sanef.groupe","","00:50:56:90:0c:fd","10.41.20.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 ba 28 08 a0 ac 2c-d6 ec fd 00 ff 44 b1 4e","No Asset Tag","'+02:00","2026-02-26T12:21:32.000+02:00","cybsupsys","Cloud Agent","abbbb8e1-af16-43b6-830d-10d190572ded","2023-12-21T11:38:37.000+02:00","2026-04-22T11:44:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,Production,OS-LIN-SRV DYN,BDD-ELA DYN,Péage","144.0" +"227064676","256800694","PCM20938.sanef.groupe","PCM20938","BC:0F:F3:88:FD:2E","10.100.39.115","fe80::5f9f:b24a:9733:e158","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.4170) 64-Bit","22H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMN","","'+02:00","2025-09-07T07:16:15.000+02:00","SANEF\mvn","Cloud Agent","7027d1da-78ac-4411-b980-b14b8d1250cf","2024-04-02T18:31:14.000+02:00","2026-04-22T11:45:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"411628774","365732726","vrsigbmut2.sanef-rec.fr","","52:54:00:60:28:61, 52:54:00:3f:83:03, 9e:0f:28:bc:ce:6f","10.45.15.69,192.168.17.6,192.168.16.24","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","16","","AMD EPYC 9J15 32-Core Processor","129433","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-07T14:36:53.000+02:00","oracle","Cloud Agent","69bf36f3-9e6f-4de4-827d-dc008722d1e3","2026-03-26T13:16:44.000+02:00","2026-04-22T11:27:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","ENV-REC,Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0" +"403898149","362607755","MTR-FJRTL64","MTR-FJRTL64","D0:46:0C:95:2C:7E","10.4.32.204","fe80::4a6f:5159:3f8e:1eea","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","FJRTL64","","'+02:00","2026-04-22T02:32:50.000+02:00","Skype","Cloud Agent","8a6dc543-3fef-4d21-9473-901095f8b892","2026-02-24T18:49:14.000+02:00","2026-04-22T06:18:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"181212369","233363202","vpiadawdc1.sanef-int.adds","VPIADAWDC1","00:50:56:9A:90:28","10.44.3.4","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1696","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","8191","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 1a 93 c0 47 e1 1c 02-86 ea 41 76 11 a3 09 18","NoAssetTag","'+02:00","2026-03-26T11:10:18.000+02:00","SANEF-INT\a03987","Cloud Agent","291b0599-6d76-4f10-a7aa-c10f26306ca6","2023-08-03T09:45:05.000+02:00","2026-04-22T06:18:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,AD,Cloud Agent,Windows Server","250.0" +"186915082","237080508","MTR-9Q3J8Y3","MTR-9Q3J8Y3","6C:3C:8C:3D:5E:3C","10.155.32.201","fe80::ff79:a660:4372:e895","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.13.1","9Q3J8Y3","","'+02:00","2026-04-22T02:33:06.000+02:00","Skype","Cloud Agent","7de42460-4b10-42c5-bbc5-e8ac1234c500","2023-09-08T18:19:11.000+02:00","2026-04-22T11:30:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"128140865","191076817","vpburawap1","VPBURAWAP1","00:50:56:82:5B:D4","192.168.162.68","fe80::bd50:f9cc:1fde:b9c8","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 2a 26 a5 60 4a 40-8b 7a 39 2e ea 4a 33 d1","NoAssetTag","'+02:00","2026-04-15T15:45:25.000+02:00","Administrateur","Cloud Agent","cb6e3115-fd28-47a0-b69c-d38f10a466be","2022-06-16T11:55:13.000+02:00","2026-04-22T06:17:51.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,Windows Server,AD,DMZ,Production,Compte & Acces,Sans,VRF_INCONNUE,DSI,TAG-SRVEXPOSEINDIRECT","0.0" +"230366424","258599099","ls-ste-menehould","LS-STE-MENEHOUL","00:50:56:90:2B:DC","10.41.2.74","fe80::579b:d96e:bea0:b26f","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 63 41 b1 4e ff 37-0e ce 2b 8f 88 8e 59 a8","NoAssetTag","'+02:00","2026-03-03T16:04:23.000+02:00","svpadmin","Cloud Agent","3088677b-21b8-4e71-a873-622b0058f432","2024-04-16T15:59:25.000+02:00","2026-04-22T06:17:47.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,Péage,VRF_PEAGE_DC,Production,High,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","681.0" +"319374768","328407246","PCB22901.sanef.groupe","PCB22901","D0:AD:08:A7:27:C0","10.152.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN5","8CC3502YN5","'+02:00","2026-03-28T09:15:08.000+02:00","SANEF\fleurya","Cloud Agent","eeea1a11-a53f-427a-bbb1-0ace3905d699","2025-04-25T12:59:56.000+02:00","2026-04-22T06:17:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"301233552","320880027","vrdsismtp1.sanef-rec.fr","","00:50:56:9c:50:c5","192.168.19.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c fc d3 13 24 ea ef-6f 58 c0 fa 67 51 40 cd","No Asset Tag","'+02:00","2026-01-07T11:33:19.000+02:00","root","IP Scanner, Cloud Agent","babf489f-52c4-42d8-b05c-f467463617f2","2025-02-19T14:01:41.000+02:00","2026-04-22T06:17:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","331.0" +"180754668","233062720","MTR-2G1CXM3","MTR-2G1CXM3","A4:BB:6D:95:65:70","10.100.32.210","fe80::227d:8b4:61cd:fd12","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","2G1CXM3","","'+02:00","2026-04-22T02:32:55.000+02:00","Skype","Cloud Agent","c9741fc3-7e46-400e-98b3-a6846c640501","2023-07-31T16:56:47.000+02:00","2026-04-22T11:10:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"192863549","240624322","vpeapnot1","","00:50:56:82:4d:dc","10.30.10.18","fe80::250:56ff:fe82:4ddc","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3950","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 6b 47 d8 ae 71 ff-6c ee 75 c1 b7 be a6 6c","No Asset Tag","'+02:00","2025-02-13T11:19:35.000+02:00","cybreconcile","Cloud Agent","73f5b11f-a546-40b8-a307-d753e7772c88","2023-10-12T15:48:07.000+02:00","2026-04-22T06:17:41.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,E-notification,Cloud Agent,Linux Server,MID-NGINX DYN,DSI,Production,BDD-POS DYN,High,high priority","693.0" +"382416400","353964314","PCB25789.sanef.groupe","PCB25789","F8:ED:FC:AB:22:66","10.252.42.150","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTJ","","'+02:00","2026-04-13T18:20:02.000+02:00","SANEF\hadad","Cloud Agent","4f3ec94c-7257-4fff-bb6f-70685dbd99e6","2025-12-08T09:48:26.000+02:00","2026-04-22T06:17:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"178993271","231838520","vpsasawrk6.sanef.groupe","","00:50:56:9c:6b:16","10.41.32.15","fe80::250:56ff:fe9c:6b16","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 56 44 ed 88 44 e0-f7 e6 b4 eb 82 9a 28 6c","No Asset Tag","'+02:00","2026-03-25T16:10:23.000+02:00","cybreconcile","Cloud Agent","109fbed1-141a-4b3a-88ce-65b31b1e1501","2023-07-18T16:12:44.000+02:00","2026-04-22T11:17:28.000+02:00","x86_64","3","SCA,VM,PM,GAV","SAS,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,DSI","86.0" +"363965240","346382477","PCB21574.sanef.groupe","PCB21574","D0:AD:08:A3:7B:48","10.12.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS2","8CC3502YS2","'+02:00","2026-04-12T15:02:37.000+02:00","SANEF\CHOUITER","Cloud Agent","824fa243-3534-47af-bf0e-5209edaeeef9","2025-09-29T15:58:51.000+02:00","2026-04-22T11:26:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"391641926","357934381","vmmvsccad2.sanef-int.adds","VMMVSCCAD2","00:50:56:90:8C:DC","10.41.7.232","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 e9 8d 2c 41 71 61-a7 7c 48 15 dc 68 a2 4a","NoAssetTag","'+02:00","2026-02-02T18:11:43.000+02:00","uservideo","Cloud Agent","ecd65762-a4d3-4909-b0bb-6203680b81d5","2026-01-13T13:01:35.000+02:00","2026-04-22T11:30:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"327528672","","PCB21582.sanef.groupe","PCB21582","D0:AD:08:A3:7B:33","10.2.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX5","","'+02:00","2026-04-21T16:57:42.000+02:00","SANEF\niepieklo","Cloud Agent","f5b269ed-9ba6-4dd4-b980-a5ae706f3738","2025-05-27T10:35:09.000+02:00","2026-04-22T06:17:01.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"209168351","248970270","vibotarmq3.sanef.groupe","","00:50:56:90:0f:90","10.41.23.158","fe80::250:56ff:fe90:f90","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 68 b1 5a a7 17 8b-e5 28 2e af d3 cf da bd","No Asset Tag","'+02:00","2026-03-17T12:20:16.000+02:00","cybsupsys","Cloud Agent","7f06a272-3b9a-4598-93ee-c3a136206580","2024-01-12T12:54:08.000+02:00","2026-04-22T11:25:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,FreeFlow,OS-LIN-SRV DYN,Flux Libre,Production","141.0" +"246115834","286869773","MTR-9BD4804","MTR-9BD4804","6C:3C:8C:56:3A:EE","10.100.32.204","fe80::fbef:b25a:716f:8ecb","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.15.0","9BD4804","","'+02:00","2026-04-22T02:32:57.000+02:00","Skype","Cloud Agent","47d27372-e155-408b-b234-b77c2f5809d3","2024-06-24T18:19:20.000+02:00","2026-04-22T11:23:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"364970231","346712264","PCV22931.sanef-int.adds","PCV22931","D0:AD:08:A3:7B:EA","10.100.7.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YVL","","'+02:00","2025-11-26T22:31:34.000+02:00","Operateur","Cloud Agent","f7b6f65b-cbc2-4281-a24e-f1a80eb41656","2025-10-02T13:47:55.000+02:00","2026-04-22T11:37:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"178261318","231315292","MTR-J1DSNT3","MTR-J1DSNT3","90:8D:6E:94:31:5F","10.100.32.214","fe80::1f2d:4484:65c2:ddf5","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","J1DSNT3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","43d1df46-799c-4687-972f-1f591cdfb75d","2023-07-13T01:26:44.000+02:00","2026-04-22T11:37:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"366505741","347395677","MTR-3PXF2L3","MTR-3PXF2L3","A4:BB:6D:90:A7:2B","10.100.32.205","fe80::c204:fe62:4a3f:ce2","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","3PXF2L3","","'+02:00","2026-04-22T02:33:04.000+02:00","Skype","Cloud Agent","6f2186dc-27da-4f10-8118-921e9d469c57","2025-10-08T16:20:48.000+02:00","2026-04-22T11:25:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"267395255","298436653","vtdsiakib1.sanef-rec.fr","","00:50:56:9c:ec:57","10.45.1.172","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 5e 2c ac cf 26 e1-3f 6e 36 2b aa 6a ff 95","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","reboot","Cloud Agent","da01fbde-7fcb-4691-b112-a2cc1e3b6030","2024-09-24T12:01:57.000+02:00","2026-04-22T11:39:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Elasticsearch,Recette","141.0" +"207971781","248307124","vrdsiadev1","","00:50:56:9c:de:af","10.45.10.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c a3 37 d8 94 61 7a-c2 d4 bf cb a4 f4 bd 70","No Asset Tag","'+02:00","2026-04-14T10:48:32.000+02:00","cybadmsys","Cloud Agent","3c1cec60-ac26-4b9a-8401-d0e3145eddf1","2024-01-05T18:08:26.000+02:00","2026-04-22T11:32:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Collecte,Recette,DSI,Cloud Agent,Linux Server","141.0" +"365792017","347053024","PCV21565.sanef-int.adds","PCV21565","D0:AD:08:A7:27:E8","10.100.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YPQ","","'+02:00","2025-12-31T14:47:44.000+02:00","Operateur","Cloud Agent","c9ef8260-0c90-43c6-a957-b84eebfdd74f","2025-10-06T10:46:47.000+02:00","2026-04-22T06:15:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"380765547","353372162","PCB22273.sanef.groupe","PCB22273","D0:AD:08:A3:7B:2E","10.252.42.133","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXD","8CC3502YXD","'+02:00","2026-04-09T10:19:53.000+02:00","SANEF\louvier","Cloud Agent","23ed327e-7000-4e11-8f75-721ca6840f7e","2025-12-02T10:26:02.000+02:00","2026-04-22T11:36:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"356545009","343379214","vpburadps1.sanef.groupe","VPBURADPS1","00:50:56:90:FF:67","10.100.38.9","fe80::f16d:78f8:e10:bee3","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 dd 4e ad fc 1c a8-c4 2e 73 cc b1 23 43 a3","NoAssetTag","'+02:00","2026-01-27T12:07:31.000+02:00","atrad@sanef.com","Cloud Agent","08d4cdfd-8c11-490f-9562-d5096461368f","2025-09-03T10:03:17.000+02:00","2026-04-22T06:15:28.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_BURO,SCCM,Production,Cloud Agent,BDD-SQL DYN","523.0" +"156095898","209242562","vpdsiasat1.sanef.groupe","","00:50:56:82:33:07","192.168.18.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 7c cf b1 64 5d 44-24 bc 22 cf 2a 52 a3 fd","No Asset Tag","'+02:00","2026-04-14T14:36:27.000+02:00","cybreconcile","Cloud Agent","781bc3ee-8408-4601-8891-668f4ed84846","2023-01-19T15:24:23.000+02:00","2026-04-22T11:26:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Satellite,BDD-POS DYN,MID-APACHE-TOMCAT DYN,VRF_INCONNUE,OS-LIN-SRV DYN,Linux Server,Cloud Agent","65.0" +"339141680","","SVP22636.sanef-int.adds","SVP22636","D0:AD:08:A4:73:58","10.192.12.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764HD","","'+02:00","2026-04-13T09:54:21.000+02:00","Superviseur","Cloud Agent","6300e61a-f999-4d70-a4c8-065471a18809","2025-07-04T13:46:42.000+02:00","2026-04-22T06:15:05.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"221344661","254249922","ls-chevrieres","LS-CHEVRIERES","00:50:56:90:20:45","10.41.2.26","fe80::1b5d:15ec:38c7:3a8b","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 d9 55 52 f0 00 73-b5 1a 4d f8 94 3f 16 4f","NoAssetTag","'+02:00","2026-02-19T16:32:16.000+02:00","svpadmin","Cloud Agent","68b2c827-99ea-41ac-95d5-933b87e848d1","2024-03-11T12:07:30.000+02:00","2026-04-22T11:35:24.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_PEAGE_DC,DEX,SVP,OS-WIN-SRV DYN,Cloud Agent,Windows Server,High,Production,Péage","507.0" +"379559158","352887680","spbckamag1.sanef.groupe","","04:bd:97:22:ca:c8, 04:bd:97:22:ca:c9","10.42.16.73,10.43.1.4","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP26080HDN","Unknown","'+02:00","2025-11-26T17:35:24.000+02:00","root","Cloud Agent","6a1565b0-3862-4024-a918-18a25864c9d9","2025-11-26T15:07:15.000+02:00","2026-04-22T11:28:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"412386131","366135502","PCB21506.sanef.groupe","PCB21506","D0:AD:08:A7:27:D7","10.4.31.62","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","","","16053","","8CC3502YT0","8CC3502YT0","'+02:00","2026-04-16T12:53:23.000+02:00","Raynald.GROLIER@Sanef.com","Cloud Agent","1fafa897-62db-4f28-aac8-951a125bfb5b","2026-03-30T13:43:10.000+02:00","2026-04-22T11:27:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"143625294","201025860","vpemvaftp1.sanef.groupe","","00:50:56:98:13:35","192.168.100.109","fe80::250:56ff:fe98:1335","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 18 4b 22 06 98 68 11-2c 33 e6 ed 3f c0 f2 ff","No Asset Tag","'+02:00","2025-12-04T12:46:29.000+02:00","root","Cloud Agent","4ee6e39f-a396-4c59-a9ad-c5c6b8f77409","2022-10-11T17:37:49.000+02:00","2026-04-22T11:36:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,VRF_INCONNUE,EMV,Cloud Agent,Linux Server,DEX,PCI Bunker EMV - VLAN Supervision/Admin","665.0" +"127959290","190985929","vpburaadm1.sanef.groupe","VPBURAADM1","00:50:56:82:44:BE","10.30.10.37","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-56 4d f0 10 0f d3 1e 3f-38 83 9e 15 b9 d1 3f 29","NoAssetTag","'+02:00","2026-03-11T19:06:01.000+02:00","SANEF.GROUPE\pbiad@sanef.com","Cloud Agent","1034a01f-ba1b-4646-adfa-0b32a00e11a9","2022-06-15T11:22:37.000+02:00","2026-04-22T06:14:09.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,Production,Outils prod (Monitoring, NMS, gestion de parc),Gestion IMPRESSION,OS-WIN-SRV DYN,BDD-SQL DYN,Critical,Windows Server,DSI","861.0" +"168848537","224865904","vpaiiapol3","","00:50:56:82:7d:cf","10.30.12.127","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3789","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7e 18 f7 82 f4 a8-65 c8 d9 05 20 f9 71 0c","No Asset Tag","'+02:00","2024-06-04T10:41:08.000+02:00","cybreconcile","Cloud Agent","c5ad794a-ec19-4022-9be6-b53cd7003725","2023-05-03T11:30:20.000+02:00","2026-04-22T11:27:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-POS DYN,BDD-ELA DYN,BDD-SQL DYN,DSI,Obsolete,Cloud Agent,Linux Server,Centreon","456.0" +"238996811","269754233","SVP20942.sanef-int.adds","SVP20942","BC:0F:F3:87:70:BC","10.22.2.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LMZ","","'+02:00","2026-04-19T13:31:29.000+02:00","Superviseur","Cloud Agent","5d71cff1-b72d-47f2-90a2-9f8f6924f9fb","2024-05-24T10:30:53.000+02:00","2026-04-22T11:36:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"208768095","248737409","vibotatvv1.sanef.groupe","","00:50:56:90:51:b1","10.41.23.155","fe80::250:56ff:fe90:51b1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e5 e9 51 88 68 17-13 bc c8 ea 85 1e c2 6d","No Asset Tag","'+02:00","2026-03-18T11:32:39.000+02:00","cybreconcile","Cloud Agent","da744d2b-c18a-457c-aa3b-5e97d0f12856","2024-01-10T11:26:20.000+02:00","2026-04-22T06:13:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,Production,OS-LIN-SRV DYN,Flux Libre,ServersInCyberark,flux_libre","140.0" +"321586044","329090470","PCB21143.sanef.groupe","PCB21143","D0:AD:08:A3:7B:D8","10.139.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVR","8CC3502YVR","'+02:00","2026-04-17T07:40:27.000+02:00","SANEF\SAJOTG","Cloud Agent","678e26e1-3c8c-4c5e-830a-3d71d27f5a18","2025-05-02T14:00:33.000+02:00","2026-04-22T11:23:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"182212643","233990529","svboomcla2.sanef-rec.fr","","5c:ba:2c:1c:89:20","10.45.6.73","fe80::5eba:2cff:fe1c:8920","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95795","HPE U30 05/17/2022","CZ22410FK5","","'+02:00","2026-03-10T10:03:22.000+02:00","cybintsys","Cloud Agent","ab249ea2-f203-4bd5-8d07-cc4c26158159","2023-08-10T10:50:58.000+02:00","2026-04-22T11:34:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,flux_libre,Flux Libre","337.0" +"371893689","349563834","vppmrames1","VPPMRAMES1","00:50:56:90:DA:50","10.41.91.60","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4405) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 10 cb 88 f9 2e 49 1a-5e 65 9d 58 5a 77 99 9d","NoAssetTag","'+02:00","2025-12-11T12:06:21.000+02:00","SANEF-INT\b03987","Cloud Agent","c6e837e3-6a18-4e20-8286-1549d809f6d7","2025-10-27T10:22:53.000+02:00","2026-04-22T11:39:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_PMR,Production,Cloud Agent,OS-WIN-SRV DYN","345.0" +"325669861","331288785","vpdsigrid1.sanef.groupe","","00:50:56:94:df:89","10.44.5.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","15761","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 14 a7 ca c0 f2 9a 1f-a1 20 9c eb 0b 2c 87 51","No Asset Tag","'+02:00","2026-02-10T11:30:28.000+02:00","cybsupsys","Cloud Agent","8660cd0c-33fd-4201-8f28-5474fdc93860","2025-05-19T10:14:52.000+02:00","2026-04-22T11:25:07.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","333.0" +"324947687","330448380","vpstlbhis1.sanef-int.adds","VPSTLBHIS1","00:50:56:90:0F:AB","10.41.13.54","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.3453) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 85 29 16 b8 41 f9-de 32 2d 00 68 14 99 86","NoAssetTag","'+02:00","2025-06-24T10:56:39.000+02:00","admin_stl","Cloud Agent","9acdbf2a-be42-4838-a23e-94df262b30ee","2025-05-15T09:38:37.000+02:00","2026-04-22T10:18:30.000+02:00","64-Bit","2","SCA,VM,GAV","Systel,Production,Cloud Agent,BDD-SQL DYN,OS-WIN-SRV DYN","346.0" +"175420304","229255869","vvbotapps3.sanef-rec.fr","","fe:71:2f:ed:5c:ef, 6a:3f:1e:66:6c:7b, 62:b4:6e:6e:7e:ee, 76:5a:f7:4f:c5:3a, ca:66:d5:f8:08:2b, 92:aa:ce:62:32:40, b6:43:ad:ca:68:b5, 0e:ea:89:77:4e:56, 66:b6:4c:9e:40:61, 6a:1f:e1:49:23:06, 3a:ab:36:eb:12:0b, 92:84:a0:1b:71:f4, c6:c2:f9:78:eb:13, fa:d5:b6:d3:cb:5b, 00:50:56:9c:10:d9, 16:71:60:0d:53:b5, 0a:51:1a:48:09:5e, 66:4a:e1:48:e2:a4, e6:09:98:f0:0a:cc, 8e:83:72:aa:20:0c, fa:d4:64:6e:57:28, 1a:d5:20:b3:9b:06, 2a:6d:f7:fd:7f:fc, 76:70:85:64:17:f1, 92:ae:2c:a7:98:c7, ae:8e:df:3f:07:57, de:f2:1f:ee:2b:36, 6e:53:f9:87:42:a2, 72:a7:9d:6a:4d:25, 76:c2:8e:c3:e0:f4, 5a:32:3c:2f:b4:f0, 2e:67:94:e2:53:01, 22:13:79:e4:24:64, 8a:75:85:80:e0:e2","10.45.6.152,10.89.0.1","fe80::fc71:2fff:feed:5cef,fe80::683f:1eff:fe66:6c7b,fe80::60b4:6eff:fe6e:7eee,fe80::745a:f7ff:fe4f:c53a,fe80::c866:d5ff:fef8:82b,fe80::90aa:ceff:fe62:3240,fe80::b443:adff:feca:68b5,fe80::cea:89ff:fe77:4e56,fe80::64b6:4cff:fe9e:4061,fe80::681f:e1ff:fe49:2306,fe80::38ab:36ff:feeb:120b,fe80::9084:a0ff:fe1b:71f4,fe80::c4c2:f9ff:fe78:eb13,fe80::f8d5:b6ff:fed3:cb5b,fe80::250:56ff:fe9c:10d9,fe80::1471:60ff:fe0d:53b5,fe80::851:1aff:fe48:95e,fe80::644a:e1ff:fe48:e2a4,fe80::e409:98ff:fef0:acc,fe80::8c83:72ff:feaa:200c,fe80::f8d4:64ff:fe6e:5728,fe80::18d5:20ff:feb3:9b06,fe80::286d:f7ff:fefd:7ffc,fe80::7470:85ff:fe64:17f1,fe80::90ae:2cff:fea7:98c7,fe80::ac8e:dfff:fe3f:757,fe80::dcf2:1fff:feee:2b36,fe80::6c53:f9ff:fe87:42a2,fe80::70a7:9dff:fe6a:4d25,fe80::74c2:8eff:fec3:e0f4,fe80::5832:3cff:fe2f:b4f0,fe80::2c67:94ff:fee2:5301,fe80::2013:79ff:fee4:2464,fe80::8875:85ff:fe80:e0e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 98 7c 1e 8f 6d cd-c3 63 8b 97 4b 9a d5 4a","No Asset Tag","'+02:00","2026-03-10T11:33:54.000+02:00","cybreconcile","Cloud Agent","ee58c856-04d4-45ad-aec2-8c0f55a60aa7","2023-06-22T12:03:17.000+02:00","2026-04-22T11:29:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,FreeFlow","139.0" +"373889164","350370252","PCV18692.sanef-int.adds","PCV18692","30:13:8B:6C:79:D9","10.100.7.60","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7171) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.05.01","CZC44473VW","","'+02:00","2026-02-17T12:16:12.000+02:00","Operateur","Cloud Agent","633cef20-9922-4f3e-b6e4-64ca4605cb29","2025-11-03T17:57:50.000+02:00","2026-04-22T11:28:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"364922812","346691044","PCB21520.sanef.groupe","PCB21520","D0:AD:08:A3:E6:C2","10.3.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRC","8CC3502YRC","'+02:00","2026-04-21T12:11:44.000+02:00","SANEF\chodorge","Cloud Agent","e0c20eec-ed5d-4823-a8fa-17aec4d8f0cd","2025-10-02T10:31:33.000+02:00","2026-04-22T11:27:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"358649991","344184024","VMMWLANC1.sanef-int.adds","VMMWLANC1","00:50:56:90:5C:D8","10.42.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 c1 71 1a bd 6d 77-36 92 00 ba 13 8a 9a 2f","NoAssetTag","'+02:00","2025-09-10T17:47:40.000+02:00","UserPCT","Cloud Agent","34470f14-57e1-4dff-98d7-02efd14d4955","2025-09-10T17:32:45.000+02:00","2026-04-22T06:12:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"317721019","327746661","PCB23765.sanef.groupe","PCB23765","6C:0B:5E:EE:83:7E","10.100.38.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4F","","'+02:00","2026-03-29T09:15:41.000+02:00","SANEF\bachelart","Cloud Agent","476816ef-3799-49c4-b2ce-cb7d4690e3da","2025-04-18T13:24:43.000+02:00","2026-04-22T11:23:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"173079234","227652731","vdbocs4ci1.sanef-rec.fr","","00:50:56:9c:39:05","10.45.6.35","fe80::250:56ff:fe9c:3905","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7e 2e 15 f6 00 f6-6d ce 57 37 cd 3d e9 2b","No Asset Tag","'+02:00","2026-03-11T10:02:59.000+02:00","cybsecope","Cloud Agent","a5d20a66-e192-4fe4-94e3-34c63f8033af","2023-06-05T15:26:04.000+02:00","2026-04-22T11:27:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,flux_libre,FreeFlow,Recette,Cloud Agent,Linux Server","141.0" +"177079686","230465871","vvbocbsap1.sanef-rec.fr","","00:50:56:9c:54:4e","10.45.6.11","fe80::250:56ff:fe9c:544e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","1031563","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 75 51 28 03 bd 0e-18 93 9f ca 34 6b 3b 72","No Asset Tag","'+02:00","2026-03-10T10:03:27.000+02:00","cybsupsys","Cloud Agent","9a1a955f-be95-44fd-8dfc-a8a925d23654","2023-07-04T13:41:39.000+02:00","2026-04-22T11:27:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,flux_libre,OS-LIN-SRV DYN","142.0" +"130583362","192832990","node4","","06:ac:38:d5:6c:36, 66:9d:a3:05:39:af, ee:ee:ee:ee:ee:ee, 00:50:56:82:4b:e9","169.254.25.10,10.233.74.64,10.45.2.59","fe80::649d:a3ff:fe05:39af,fe80::ecee:eeff:feee:eeee,fe80::88bd:f1a0:d07e:13cb","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 26 dc 16 dd 43 ed-90 35 76 d2 bb fc 48 d2","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","cybexpapp","Cloud Agent","43737328-a06b-4ffc-9b9e-0489c15501bf","2022-07-07T11:29:28.000+02:00","2026-04-22T11:36:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,BDD-POS DYN,VRF_INCONNUE,Obsolete","341.0" +"209164475","248967435","vibotapps3.sanef.groupe","","00:50:56:90:f8:0b","10.41.23.157","fe80::250:56ff:fe90:f80b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ec 31 7c aa e2 97-44 72 cf 1d cc 11 0e b3","No Asset Tag","'+02:00","2026-03-17T11:33:03.000+02:00","cybsecope","Cloud Agent","744f0797-94e8-4617-80b3-a63bf60fd012","2024-01-12T12:08:30.000+02:00","2026-04-22T11:17:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0" +"373212739","350071349","vpameasxt2.sanef.groupe","","00:50:56:90:8e:58, 00:50:56:90:70:52","10.41.41.61,10.43.4.26","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 a6 c0 e5 02 48 c2-f7 88 71 b6 0c 38 77 ba","No Asset Tag","'+02:00","2025-11-12T11:52:08.000+02:00","cybreconcile","Cloud Agent","5ab2192f-3bca-48c1-b8d4-b9ea4ab9b18c","2025-10-31T12:03:33.000+02:00","2026-04-22T11:23:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,Sextan","662.0" +"175950116","229618440","vvbocmedi1.sanef-rec.fr","","00:50:56:9c:a8:14","10.45.6.5","fe80::250:56ff:fe9c:a814","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 65 cc 9e 10 b2 48-94 af ee fb 9d 41 ee 4c","No Asset Tag","'+02:00","2026-03-11T16:03:12.000+02:00","cybsupsys","Cloud Agent","2d9b1322-79e0-4cb2-8c3f-fdb0c8effcce","2023-06-26T16:43:00.000+02:00","2026-04-22T11:33:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,flux_libre,Flux Libre,Recette","332.0" +"338447216","","PCB21595.sanef.groupe","PCB21595","D0:AD:08:A3:E6:BF","10.100.39.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YR9","","'+02:00","2026-04-17T21:52:21.000+02:00","SANEF\guidet","Cloud Agent","720cf5ff-e3db-4794-a5a6-9c3ce811d9f0","2025-07-02T14:31:04.000+02:00","2026-04-22T06:11:29.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"161779682","215361432","vraiibpgs5","","00:50:56:82:41:dc","10.45.1.166","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 be f7 a5 b9 7b a3-da b9 35 50 fb 01 95 25","No Asset Tag","'+02:00","2026-03-03T15:14:51.000+02:00","reboot","Cloud Agent","f378f3c9-dbe2-472d-b010-c1337c3d82f6","2023-03-06T13:32:17.000+02:00","2026-04-22T11:32:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","DSI,OS-LIN-SRV DYN,MID-NGINX DYN,Recette,BDD,Cloud Agent,Linux Server","142.0" +"381251026","353499617","PCV22804.sanef-int.adds","PCV22804","D0:AD:08:A3:7B:65","10.11.7.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YWT","","'+02:00","2025-12-18T08:45:19.000+02:00","Operateur","Cloud Agent","f62c64a5-a00e-4812-86f8-ab2d5dca7d07","2025-12-03T12:51:49.000+02:00","2026-04-22T11:26:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"404697314","362912972","vrpctbams1.recette.adds","VRPCTBAMS1","00:50:56:9C:71:5B","10.45.13.195","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c de c6 68 a1 86 cd-3d 9d c4 6b 3d 20 b0 60","NoAssetTag","'+02:00","2026-03-03T15:15:46.000+02:00","Administrator","Cloud Agent","f8b732b3-70e1-4d00-957e-434c2210faaf","2026-02-27T10:17:04.000+02:00","2026-04-22T11:21:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,BDD-POS DYN","253.0" +"230365978","258597324","ls-vemars-ouest","LS-VEMARS-OUEST","00:50:56:90:A6:16","10.41.2.119","fe80::8944:b7fb:76ef:ad28","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 d1 b6 63 fd 98 0c-76 a4 e6 a4 7d b1 5f 58","NoAssetTag","'+02:00","2026-03-04T15:03:45.000+02:00","svpadmin","Cloud Agent","31ec2c36-e7c1-4324-933c-6aba1bb854bd","2024-04-16T15:45:23.000+02:00","2026-04-22T11:18:05.000+02:00","64-Bit","4","SCA,VM,PM,GAV","High,Production,Péage,SVP,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX","680.0" +"363247806","346032866","vpdsibarc1.sanef.groupe","","00:50:56:9c:de:e3","10.46.33.40","","Linux / Server","Red Hat Enterprise Linux 9.6","9.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 3d 25 ac 92 66 97-c6 8f 5b b1 dd 9d 1f 2f","No Asset Tag","'+02:00","2025-11-06T18:56:37.000+02:00","cybreconcile","Cloud Agent","67730d59-4c98-40aa-bdd1-310c6e65ec29","2025-09-26T11:59:43.000+02:00","2026-04-22T11:41:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD,Production,MID-NGINX DYN","332.0" +"363182865","346017355","PCB21533.sanef.groupe","PCB21533","D0:AD:08:A3:7B:4D","10.12.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRW","8CC3502YRW","'+02:00","2026-03-29T09:12:43.000+02:00","SANEF\pcemtz","Cloud Agent","55f1e132-fe2e-4aab-ade0-3587584cf673","2025-09-26T09:32:24.000+02:00","2026-04-22T06:10:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","253.0" +"203204186","245721134","vpboobquo2.sanef.groupe","","00:50:56:90:33:87","10.100.16.15","fe80::250:56ff:fe90:3387","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 5f 2c c5 bc 88 bf-48 58 d5 42 e0 9e 4a 2b","No Asset Tag","'+02:00","2026-04-07T10:46:33.000+02:00","cybreconcile","Cloud Agent","01814ec3-d1be-40c5-b48d-04d73d99bf86","2023-12-08T12:27:55.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,flux_libre,Flux Libre,FreeFlow","333.0" +"196660269","242432306","vpbooosea2.sanef.groupe","","00:50:56:90:b5:d7","10.41.22.136","fe80::250:56ff:fe90:b5d7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 77 7a 5c d6 e7 55-8d b3 4c 3e 11 ef e3 ef","No Asset Tag","'+02:00","2026-04-07T15:17:37.000+02:00","cybreconcile","Cloud Agent","22ea8bf7-5f22-47a1-a02a-8a0b44fc5b91","2023-10-31T18:19:57.000+02:00","2026-04-22T11:19:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,FreeFlow,OS-LIN-SRV DYN,Flux Libre,flux_libre","330.0" +"269620053","299332847","SVP21069.sanef-int.adds","SVP21069","D0:AD:08:A3:7B:73","10.142.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWB","","'+02:00","2026-04-21T14:16:38.000+02:00","Superviseur","Cloud Agent","21902ce4-0f65-4f9f-92c5-feb31e649574","2024-10-02T10:25:12.000+02:00","2026-04-22T11:42:15.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Workstation,Cloud Agent,Forescout","686.0" +"193621646","240986858","vpbocs4as2.sanef.groupe","","00:50:56:90:d1:09","10.41.22.9","fe80::250:56ff:fe90:d109","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 5a c4 2d 26 e0 f4-e8 5f c4 3c 26 0c a7 cc","No Asset Tag","'+02:00","2026-04-01T21:58:56.000+02:00","cybreconcile","Cloud Agent","cea903fb-fb33-4e40-a78d-f3ced159bd18","2023-10-16T13:31:56.000+02:00","2026-04-22T11:12:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,flux_libre,FreeFlow,OS-LIN-SRV DYN,Production","331.0" +"322600782","329578376","PCS22821.sanef-int.adds","PCS22821","D0:AD:08:A3:E6:C5","10.209.13.100","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YR1","","'+02:00","2026-02-18T18:50:03.000+02:00","user_stl","Cloud Agent","0d7b3ccc-2ce2-4f81-8ce9-6ba5de08cfcb","2025-05-07T11:36:47.000+02:00","2026-04-22T11:10:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","346.0" +"380802442","353391316","PCV21519.sanef-int.adds","PCV21519","D0:AD:08:A3:7B:54","10.152.7.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3502YRP","","'+02:00","2026-04-13T15:36:32.000+02:00","Operateur","Cloud Agent","19b1a7a0-3853-447e-9854-12b54ae87b93","2025-12-02T13:33:02.000+02:00","2026-04-22T11:34:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"245276150","286385893","MTO21623.sanef.groupe","MTO21623","D0:AD:08:A4:4D:B8","10.13.31.7","fe80::993:4480:87cc:65fa","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.2428) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JW","","'+02:00","2026-04-08T10:10:39.000+02:00","SANEF\meteonewsW11","Cloud Agent","fc5aae5c-cc0f-40d4-82c3-ba24ab7442e4","2024-06-20T14:04:48.000+02:00","2026-04-22T06:09:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"232013299","259575773","ls-jarny","LS-JARNY","00:50:56:90:BD:BE","10.41.2.80","fe80::f9bb:c31f:da19:3e62","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 15 c0 f8 77 eb fa-48 74 ee a2 27 a7 f9 90","NoAssetTag","'+02:00","2026-04-02T15:35:09.000+02:00","svpadmin","Cloud Agent","2de35169-5d0d-4cb4-9ba2-0a8ccfb391c5","2024-04-24T09:00:33.000+02:00","2026-04-22T11:02:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","High,VRF_PEAGE_DC,SVP,Production,Péage,DEX,OS-WIN-SRV DYN,Cloud Agent,Windows Server","512.0" +"411327666","365612889","vplogbquo1.sanef.groupe","","00:50:56:90:0a:64","10.100.16.24","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 86 00 a3 f0 0d 58-ef 0c b3 e5 e0 c5 41 8c","No Asset Tag","'+02:00","2026-04-07T12:16:39.000+02:00","cybsecope","Cloud Agent","acd91f63-4ab1-4dee-920a-41ec44d5e3ca","2026-03-25T12:08:38.000+02:00","2026-04-22T11:31:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server","66.0" +"129356722","191963001","vpmalanvr1","VPMALANVR1","00:50:56:82:98:7C","10.27.1.12","fe80::7358:3214:6b8:10cd","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 10 ed b5 30 5c 76-7b 55 09 db 07 9e 26 a7","NoAssetTag","'+02:00","2026-02-03T15:40:46.000+02:00","Administrateur","Cloud Agent","db3d3881-157d-4e7e-877c-fd4538d211c2","2022-06-27T18:09:30.000+02:00","2026-04-22T11:29:59.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Production,Exploitation,DEX,Cloud Agent,Windows Server,NVR,VRF_INCONNUE","508.0" +"193240995","240745929","vpbocmedi1.sanef.groupe","","00:50:56:90:b1:9e","10.41.22.7","fe80::250:56ff:fe90:b19e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 02 d8 d4 6d e7 e7-cc 26 5c 77 77 cf 70 f0","No Asset Tag","'+02:00","2026-04-01T22:01:27.000+02:00","cybreconcile","Cloud Agent","e032846f-c40a-458e-a2f5-53ba09d3bd4a","2023-10-13T15:22:01.000+02:00","2026-04-22T11:33:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Production,flux_libre","335.0" +"243982908","283202091","vdechatal1.sanef.groupe","","00:50:56:82:30:b6","10.45.11.221","fe80::711a:3f73:265e:7d3e","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f6 f9 39 60 6c 46-3e 4b a4 02 56 ea cf 37","No Asset Tag","'+02:00","2025-09-16T09:46:35.000+02:00","cybreconcile","Cloud Agent","b43b0a5f-09b3-481c-b906-bbc93f6bd4be","2024-06-14T10:54:00.000+02:00","2026-04-22T11:34:27.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,Obsolete,DSI,Linux Server,Cloud Agent,TALEND,MID-APACHE-TOMCAT DYN","518.0" +"131404287","193423786","vmampdif1.sanef.groupe","","00:50:56:82:4A:DA","10.41.40.120","fe80::250:56ff:fe82:4ada","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 99 5a c1 b5 93 1a-27 3f 1b ac 65 09 01 f0","No Asset Tag","'+02:00","2023-01-11T21:02:33.000+02:00","cybreconcile","Cloud Agent","77c8d8e6-c0ea-4de7-93fc-1f6016d85d9f","2022-07-13T10:26:16.000+02:00","2026-04-22T11:36:26.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_TRAFIC_DC,DEX,Sextan,Obsolete,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server,Trafic,Production,Sans","696.0" +"131275095","193321026","vpaiiapol7","","00:50:56:82:d9:3c","192.168.2.40","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 49 7a 4e 1f c1 18-92 7b 7c 41 f3 55 9e 5c","No Asset Tag","'+02:00","2024-06-06T10:56:16.000+02:00","cybreconcile","Cloud Agent","4998fab1-c1eb-4e51-b9f9-5cb60e18cac8","2022-07-12T15:49:44.000+02:00","2026-04-22T11:26:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-ELA DYN,BDD-POS DYN,VRF_INCONNUE,Obsolete,Centreon,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans,Cloud Agent,Linux Server","462.0" +"193238549","240744337","vpbocharg1.sanef.groupe","","00:50:56:90:bb:97","10.41.22.6","fe80::250:56ff:fe90:bb97","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 bf de 5d 4c 93 97-85 bf 03 81 b4 e4 13 dd","No Asset Tag","'+02:00","2026-04-01T22:00:29.000+02:00","cybreconcile","Cloud Agent","6b52db23-d651-43d0-bdbe-c44bfd308313","2023-10-13T15:03:08.000+02:00","2026-04-22T11:41:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,Production","330.0" +"130582878","192832075","vmamrtd1.sanef.groupe","","00:50:56:82:60:73","10.45.2.195","fe80::250:56ff:fe82:6073","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3832","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 c6 2a f5 49 bc a2-59 3c 10 9a 46 7a f9 b4","No Asset Tag","'+02:00","2025-10-08T13:43:16.000+02:00","cybastsys","Cloud Agent","379c9019-ff00-476f-a3d0-4968941b6a16","2022-07-07T11:13:56.000+02:00","2026-04-22T11:36:33.000+02:00","x86_64","3","SCA,VM,PM,GAV","Traffic,OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,DEX,Obsolete,log4j,Recette,Sans,Trafic","518.0" +"195789744","241928028","vpbotreco1.sanef.groupe","","00:50:56:90:9c:a9","10.41.23.18","fe80::250:56ff:fe90:9ca9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 93 a0 e3 8d c2 a1-c4 b1 12 c2 f5 43 cd de","No Asset Tag","'+02:00","2026-04-16T11:30:45.000+02:00","cybreconcile","Cloud Agent","6c3400e0-8494-4e2f-bc30-cece799a2623","2023-10-26T11:19:27.000+02:00","2026-04-22T11:28:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,flux_libre,Flux Libre,Production","335.0" +"376359111","351489742","vptrabmut4.sanef.groupe","","52:54:00:f6:df:a5, 52:54:00:4c:fe:ac, 52:54:00:e6:b6:da","192.168.17.7,10.41.40.221,10.41.40.223,10.41.40.226,192.168.17.134","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-13T11:23:37.000+02:00","oracle","Cloud Agent","cfacc9d6-289c-46d2-a4a0-1bd1dd209988","2025-11-13T12:22:43.000+02:00","2026-04-22T11:28:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,Production,ORACLE,BDD","339.0" +"380530583","353273886","PCB22764.sanef.groupe","PCB22764","D0:AD:08:A3:E7:2D","10.219.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTX","","'+02:00","2026-04-10T15:34:31.000+02:00","SANEF\vernichons","Cloud Agent","895247a9-f159-474e-8822-ffadae05fdfa","2025-12-01T12:36:09.000+02:00","2026-04-22T11:01:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"242119222","276920246","vpvsaaiad1","","00:50:56:9a:b2:da","10.44.0.104","fe80::250:56ff:fe9a:b2da","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a 06 7d bb 22 a7 a8-b7 1d 26 90 bc ce 60 c0","No Asset Tag","'-04:00","2026-02-04T18:07:17.000+02:00","tbaad-ext","Cloud Agent","6739b175-db8a-430b-adb2-545d91a68e4a","2024-06-06T15:30:31.000+02:00","2026-04-22T11:45:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"222529401","254801968","vpburaexc1.sanef.groupe","VPBURAEXC1","02:93:FA:76:3A:34, 00:50:56:9C:D7:F6","169.254.1.152,10.42.30.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 05 3f 88 a7 80 ea-94 fa 9e 22 14 49 68 11","NoAssetTag","'+02:00","2026-04-15T11:53:20.000+02:00","Administrateur","Cloud Agent","c544889e-6204-4e33-85e9-4db70bedf512","2024-03-15T12:26:18.000+02:00","2026-04-22T11:35:32.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,DSI,High,Windows Server,Cloud Agent,EXCHANGE","0.0" +"322405176","329455590","PCB22278.sanef.groupe","PCB22278","D0:AD:08:A3:7A:F1","10.209.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVS","8CC3502YVS","'+02:00","2026-03-29T09:11:11.000+02:00","SANEF\LAINEF","Cloud Agent","cfdfb740-d84c-445c-92f2-7deb1e81553d","2025-05-06T15:08:14.000+02:00","2026-04-22T11:23:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"414638987","367132982","vrpxpapps1","","00:50:56:9c:be:b3","10.45.14.169","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23770","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c d9 a2 d8 87 49 d1-93 6a d8 be 66 0f c4 a6","No Asset Tag","'+02:00","2026-04-15T09:17:18.000+02:00","cybintsys","Cloud Agent","d9909aaf-6472-486d-bf91-0f400eeb295e","2026-04-09T11:51:08.000+02:00","2026-04-22T06:07:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0" +"300253495","320228387","SVP22856.sanef-int.adds","SVP22856","62:45:2E:0F:3E:E9, D0:AD:08:A7:27:C4","169.254.87.101,10.12.20.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN7","","'+02:00","2026-04-02T07:37:06.000+02:00","Superviseur","Cloud Agent","6bdeff05-d8d9-4898-8028-10e06bf6456f","2025-02-14T12:25:50.000+02:00","2026-04-22T11:32:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"114208440","181637926","lamarrac1.sanef.groupe","","00:17:A4:77:08:A8, 00:17:A4:77:08:B4, 00:17:A4:77:08:AC, 00:17:A4:77:08:B0","10.45.2.100,10.45.2.101,10.45.3.100,10.45.5.2,169.254.75.12,10.45.5.18","fe80::217:a4ff:fe77:8a8,fe80::217:a4ff:fe77:8b4,fe80::217:a4ff:fe77:8ac,fe80::217:a4ff:fe77:8b0","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","VCX000020J","","'+02:00","2026-02-25T16:10:34.000+02:00","cybadmsys","Cloud Agent","8c67b965-8690-4354-b316-a1e1f389c3c7","2022-02-21T15:34:28.000+02:00","2026-04-22T11:46:17.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Linux Server,Recette,Sans,Trafic,OS-LIN-SRV DYN,Cloud Agent,DEX,Obsolete,log4j,Sextan","693.0" +"236302913","264492818","lpemvbpemv3.sanef.groupe","","00:17:a4:77:1c:90, 00:17:a4:77:1c:18, 00:17:a4:77:1c:1c","169.254.5.227,172.16.0.117,192.168.101.117,192.168.101.147,192.168.101.150,192.168.103.117","fe80::217:a4ff:fe77:1c90,fe80::217:a4ff:fe77:1c18,fe80::217:a4ff:fe77:1c1c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000703","","'+02:00","2025-10-08T16:34:29.000+02:00","oracle","Cloud Agent","02118ed9-bdd8-4a72-95b6-3f35d1c60365","2024-05-13T15:02:54.000+02:00","2026-04-22T11:31:32.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,PCI Bunker EMV - VLAN Stecard v17,EMV,PCI Bunker EMV,Production,Linux Server,Cloud Agent,OS-LIN-SRV DYN","684.0" +"202417909","245310581","vrameasxt1.sanef-rec.fr","","00:50:56:9c:ee:c0, 00:50:56:9c:03:6a","10.45.2.60,10.45.4.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 96 39 e1 59 7f 01-4c 1d 84 be 8d 0e 2e 3d","No Asset Tag","'+02:00","2026-04-20T18:13:18.000+02:00","cybadmsys","Cloud Agent","82d41526-f32d-43f4-ba79-4ec43cc1366a","2023-12-04T17:28:50.000+02:00","2026-04-22T11:36:38.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Sextan,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","682.0" +"409023782","364788937","vibotaapm1.sanef.groupe","","00:50:56:90:b8:1f","10.41.23.143","fe80::250:56ff:fe90:b81f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 6e f9 5e ec 09 b9-3e 79 59 f7 ec b8 2c 41","No Asset Tag","'+02:00","2026-03-17T11:24:22.000+02:00","cybreconcile","Cloud Agent","d317fd6d-41de-45f0-b603-2b4ddaf50e25","2026-03-17T11:25:23.000+02:00","2026-04-22T11:09:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,log4j,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Flux Libre,Production","141.0" +"138279751","197688847","vrtrabmas2","VRTRABMAS2","00:50:56:82:AF:75","10.43.255.14","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","49151","VMware, Inc. VMW71.00V.0.B64.2008052155","VMware-42 02 0d 6a 63 c8 28 60-91 66 cc d3 89 28 42 c0","NoAssetTag","'+02:00","2026-01-14T15:18:10.000+02:00","Andsoft","Cloud Agent","416835ef-cf6c-4b22-8f22-83a88582c46f","2022-08-31T21:07:16.000+02:00","2026-04-22T06:06:26.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Masterparc,VRF_INCONNUE,Cloud Agent,Windows Server,DEX,BDD-SQL DYN,OS-WIN-SRV DYN","510.0" +"246623861","287171950","MTO21049.sanef.groupe","MTO21049","D0:AD:08:A3:7B:D5","10.104.31.0","fe80::a153:4ed3:2c69:d0f5","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.2428) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVT","","'+02:00","2026-03-12T10:40:42.000+02:00","SANEF\meteonewsW11","Cloud Agent","acede5ef-dbc5-44bd-9d35-cc48132b26c1","2024-06-26T18:58:27.000+02:00","2026-04-22T11:31:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"205329423","246826334","vibotatst2.sanef.groupe","VIBOTATST2","00:50:56:90:7C:E3","10.41.23.148","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","VMware, Inc. VMW71.00V.18227214.B64.2106252220","VMware-42 10 3e 61 eb f3 6a 7d-9c a0 bb f5 62 4e cd 60","NoAssetTag","'+02:00","2026-03-18T11:08:54.000+02:00","SANEF\ndead","Cloud Agent","38402a2b-1866-4978-8ecb-5512b182a2ab","2023-12-20T15:25:19.000+02:00","2026-04-22T11:35:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Production,OS-WIN-SRV DYN,Cloud Agent,Windows Server,flux_libre,Flux Libre","250.0" +"236885633","266209327","ls-dormans","LS-DORMANS","00:50:56:90:25:3A","10.41.2.59","fe80::4541:dd3c:bb82:7b0b","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c9 c8 4a ab 81 be-a8 82 86 19 a6 8d cf 1c","NoAssetTag","'+02:00","2026-03-24T12:14:17.000+02:00","svpadmin","Cloud Agent","e2ae6c37-1a1c-4f43-8852-bbc7693871f4","2024-05-15T13:25:17.000+02:00","2026-04-22T11:04:12.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,Péage","506.0" +"314659903","326546972","vpdsibels1.sanef.groupe","","00:50:56:94:24:01","10.44.5.163","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","31889","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 14 79 f4 90 0c ae af-a1 e6 4c 3b 07 6a 15 a6","No Asset Tag","'+02:00","2026-02-10T10:37:08.000+02:00","cybreconcile","Cloud Agent","b41bf64c-fcc7-4584-bb5d-9aa36b706786","2025-04-08T17:04:44.000+02:00","2026-04-22T11:21:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,BDD,Production,BDD-ELA DYN","140.0" +"354675277","342491005","vpechbetl1.sanef.groupe","","00:50:56:90:8f:f8","10.42.16.140","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 d2 68 1d 31 e0 41-23 3e bb 1f 0b eb 0e ec","No Asset Tag","'+02:00","2026-02-12T16:12:01.000+02:00","cybsupsys","Cloud Agent","a662aaed-3d25-42d4-a779-5c190b8f957f","2025-08-26T16:14:41.000+02:00","2026-04-22T11:34:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,Linux Server,Cloud Agent,MID-NGINX DYN,Production","144.0" +"203604125","245940905","vrdsibans1.sanef-rec.fr","","00:50:56:9c:2a:6e","10.45.0.166","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 14 1a 3c 12 f2 f3-bc 07 0f b2 3f e4 8e cc","No Asset Tag","'+02:00","2026-01-07T11:53:05.000+02:00","cybadmsys","Cloud Agent","66baa830-a381-4b74-afba-347a75a8b4ee","2023-12-11T11:56:10.000+02:00","2026-04-22T11:28:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Ansible","337.0" +"193621036","240986557","vpbocs4as3.sanef.groupe","","00:50:56:90:4f:98","10.41.22.10","fe80::250:56ff:fe90:4f98","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 af 30 43 be 13 48-43 31 e8 d0 5e 4f b6 46","No Asset Tag","'+02:00","2026-04-01T21:57:06.000+02:00","cybreconcile","Cloud Agent","4343f3b6-92f2-421d-8a62-5526f24f2b50","2023-10-16T13:28:43.000+02:00","2026-04-22T11:34:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Production,flux_libre,Cloud Agent,Linux Server","331.0" +"137347865","197590796","vppeaasip1.sanef.groupe","","00:50:56:82:f6:86","10.41.20.35","fe80::2746:28d3:7cc0:3356","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7821","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2c 9a 92 ff a4 40-5c 9c 4e 42 17 2f 35 cc","No Asset Tag","'+02:00","2024-11-14T11:45:54.000+02:00","cybreconcile","Cloud Agent","016180df-549c-451e-928f-068e926a750d","2022-08-30T17:31:07.000+02:00","2026-04-22T11:36:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Production,Obsolete,MID-NGINX DYN,VRF_PEAGE_DC,Cloud Agent,Linux Server,DEX,SSIP","343.0" +"360012141","","PCB24324.sanef.groupe","PCB24324","10:B6:76:95:8B:97","10.152.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYR","","'+02:00","2026-04-22T06:00:48.000+02:00","SANEF\CADET","Cloud Agent","519a6459-743e-424a-863e-60cc58737249","2025-09-16T12:22:54.000+02:00","2026-04-22T06:04:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation,BDD-SQL DYN","0.0" +"363981573","346388761","vptrabmut3.sanef.groupe","","52:54:00:ac:fa:fd, 52:54:00:32:a0:3a, 52:54:00:71:43:6a","10.41.40.231,10.41.40.233,10.41.40.236,192.168.17.134,192.168.17.7","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-26T15:52:24.000+02:00","oracle","Cloud Agent","2754da18-b6c3-4577-9f74-3e0940f99b7a","2025-09-29T17:05:48.000+02:00","2026-04-22T11:28:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,Production,Linux Server,Cloud Agent","339.0" +"347918139","339424918","vrlogbels1.sanef-rec.fr","","00:50:56:9c:b9:36","10.45.15.164","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 08 da 48 70 10 be-85 df 5d 65 04 dd 97 52","No Asset Tag","'+02:00","2026-01-21T17:50:36.000+02:00","cybintsys","Cloud Agent","6b892b42-f235-497c-a463-35fb34d6c0bc","2025-07-31T17:17:19.000+02:00","2026-04-22T11:20:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Elasticsearch,Recette","140.0" +"414295899","367042281","vrdsiasta1.recette.adds","VRDSIASTA1","00:50:56:9C:27:5F","192.168.19.20","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4893) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","4095","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 1b 79 b2 a1 c8 56-7d 6e 51 56 f9 a2 3e fd","NoAssetTag","'+02:00","2026-04-09T17:21:06.000+02:00","RECETTE\b03987","Cloud Agent","a2f2cd9d-fa60-4033-b1c7-48d8ed01398b","2026-04-08T15:04:37.000+02:00","2026-04-22T11:40:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DMZ,OS-WIN-SRV DYN,Cloud Agent","249.0" +"175948080","229616156","vvbotreco1.sanef-rec.fr","","e6:ea:cc:9f:a8:6b, 00:50:56:9c:51:3a, 12:69:54:7c:50:22, 66:f1:af:ae:1a:cf, c6:ae:dc:5f:1c:de, 36:39:49:ce:59:27","10.45.6.135,10.89.0.1","fe80::e4ea:ccff:fe9f:a86b,fe80::250:56ff:fe9c:513a,fe80::1069:54ff:fe7c:5022,fe80::64f1:afff:feae:1acf,fe80::c4ae:dcff:fe5f:1cde,fe80::3439:49ff:fece:5927","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 2b c6 b8 67 f4 1c-fd bc ed 09 20 f9 90 7f","No Asset Tag","'+02:00","2026-03-12T17:22:15.000+02:00","kapschsysuser","Cloud Agent","38c2e411-c71f-45ae-acae-5daa52a15ffd","2023-06-26T16:19:30.000+02:00","2026-04-22T10:57:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,Recette,FreeFlow,flux_libre","142.0" +"398330693","360617829","macbook-pro.home","MAC15859","a0:78:17:81:33:61","10.255.1.11","fe80::1ccb:9ec5:3762:b7b9","Mac / Client","Apple macOS Tahoe (26.3.1)","26.3","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFF78MLQ05N","","'+02:00","2026-03-31T12:49:00.000+02:00","aymeric.tron","Cloud Agent","536e9967-123a-4ed5-8070-4a4d969691f1","2026-02-06T19:02:54.000+02:00","2026-04-22T06:03:29.000+02:00","arm64_M1","2","SCA,VM,PM,GAV","Cloud Agent","65.0" +"253759791","291263341","REX20980.sanef-int.adds","REX20980","BC:0F:F3:87:6F:92","10.45.11.241,192.168.91.31","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.13.02","8CC3290LL5","","'+02:00","2026-03-24T13:57:05.000+02:00","SANEF-INT\exploitantradio","Cloud Agent","8aaa886d-5e22-4580-abf3-52443c296662","2024-07-26T09:28:57.000+02:00","2026-04-22T11:12:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"194257182","241333482","vpcosaapp1.sanef.groupe","","00:50:56:90:1a:28","10.41.40.178","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f3 5a f2 75 7d 83-f7 74 3b d0 2b 5c 2e 6e","No Asset Tag","'+02:00","2026-01-27T11:25:47.000+02:00","root","Cloud Agent","5d29df00-0517-4708-bf91-071d41bd293c","2023-10-19T14:05:03.000+02:00","2026-04-22T11:15:33.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server,log4j,COSWIN,MID-APACHE-TOMCAT DYN","511.0" +"333993622","333995330","PCB24127.sanef.groupe","PCB24127","48:EA:62:C8:93:47","10.107.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6D","","'+02:00","2026-04-21T07:22:35.000+02:00","SANEF\lecompte","Cloud Agent","61aca5c9-29f0-44ee-923b-63c524306674","2025-06-17T11:58:01.000+02:00","2026-04-22T11:28:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"159570896","212144733","vpintaels1.sanef.groupe","","00:50:56:82:9c:94","10.46.33.15","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 0f 4c 53 91 c9 2b-89 d9 8b cf 4c 61 3b 82","No Asset Tag","'+02:00","2026-02-24T12:06:38.000+02:00","cybreconcile","Cloud Agent","903070e8-d55b-4b79-9537-dd5f911d7fa0","2023-02-16T15:30:31.000+02:00","2026-04-22T11:17:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,Cloud Agent,Linux Server,VRF_BURO_DC,OS-LIN-SRV DYN,BDD-ELA DYN","140.0" +"208782494","248750418","vibotreco3.sanef.groupe","","00:50:56:90:60:6a","10.41.23.159","fe80::250:56ff:fe90:606a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f3 0e 93 d4 68 75-7f ba 4f bb 8e 09 fa f5","No Asset Tag","'+02:00","2026-03-18T15:53:31.000+02:00","cybsupsys","Cloud Agent","00a28729-de34-4f80-8f1e-e7b31432429b","2024-01-10T13:28:36.000+02:00","2026-04-22T11:05:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","140.0" +"130590884","192838404","vrameased1.sanef.groupe","","00:50:56:82:7a:69","10.45.2.75","fe80::250:56ff:fe82:7a69","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 1e ee a2 92 ac 86-6c 8c f9 b3 a2 94 88 c9","No Asset Tag","'+02:00","2026-04-21T10:42:13.000+02:00","cybsecope","Cloud Agent","39e04d51-1e57-49a4-bd10-f19f6adc92bf","2022-07-07T12:17:00.000+02:00","2026-04-22T11:25:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,DEX,SED,Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,TAG-SRVEXPOSEINDIRECT","28.0" +"236930843","266497636","SVP20940.sanef-int.adds","SVP20940","BC:0F:F3:87:6F:9C","10.106.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LKV","","'+02:00","2026-04-14T08:39:55.000+02:00","Superviseur","Cloud Agent","24374048-050c-4eea-9a20-4c044f79bfbd","2024-05-15T17:24:31.000+02:00","2026-04-22T11:16:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"385999740","355957537","vrlogaagt1.sanef-rec.fr","","00:50:56:9c:7a:c4","10.45.15.168","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 01 30 6c 10 92 b4-5b 0b 78 88 ee 20 c1 1c","No Asset Tag","'+02:00","2026-04-14T09:37:38.000+02:00","cybintsys","Cloud Agent","ef545dbd-144b-4f79-a905-85f2a6aad04d","2025-12-24T17:20:30.000+02:00","2026-04-22T11:23:53.000+02:00","x86_64","2","SCA,VM,PM,GAV","Logiciels,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent","66.0" +"320435785","328702489","PCB23561.sanef.groupe","PCB23561","6C:0B:5E:ED:A2:AB","10.100.39.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4F","","'+02:00","2026-03-28T09:28:13.000+02:00","jocelyn.scheuer@sanef.com","Cloud Agent","f9b56c6a-172f-4552-8e9e-e1ad248a86e0","2025-04-29T10:04:54.000+02:00","2026-04-22T11:22:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"189160131","238399071","vpdsiaans1.sanef.groupe","","00:50:56:8d:95:c2","10.44.2.134","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 54 63 d1 d6 4a 7f-a6 4a 8a b9 8d 82 21 1b","No Asset Tag","'+02:00","2026-01-27T16:09:39.000+02:00","cybreconcile","Cloud Agent","b6841e91-c79e-484a-afa5-d32ab3f637b3","2023-09-21T11:50:23.000+02:00","2026-04-22T11:26:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Ansible","139.0" +"131406665","193426321","vpexparep1.sanef.groupe","","00:50:56:82:5f:2e","10.41.40.19","fe80::3882:f0f2:73c8:f3d0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d e3 1b d8 76 df b7-50 2a d2 6e 2e cf be d8","No Asset Tag","'+02:00","2026-01-21T17:41:02.000+02:00","cybreconcile","Cloud Agent","2a48840b-99bb-4e7e-9381-de183fb8456e","2022-07-13T10:52:22.000+02:00","2026-04-22T11:13:17.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Production,eReport,Cloud Agent,Linux Server,VRF_TRAFIC_DC","210.0" +"322021427","329320571","PCB22839.sanef.groupe","PCB22839","D0:AD:08:A3:7B:CF","10.89.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YW2","8CC3502YW2","'+02:00","2026-04-09T10:58:39.000+02:00","SANEF\chodorge","Cloud Agent","9e59b1a4-7377-406e-92d1-5c66813db021","2025-05-05T11:42:31.000+02:00","2026-04-22T11:04:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"287512303","311429583","ls-spare-mtz","LS-SPARE-MTZ","00:50:56:90:75:57","10.12.2.250","fe80::6eca:290f:ee3d:6f1d","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 79 2b ef 0b d9 8e-2b 00 66 29 1f 80 5c b0","NoAssetTag","'+02:00","2026-02-16T12:01:25.000+02:00","gare","Cloud Agent","d85d4d2a-313d-4f60-b5c3-dba8eb4f7583","2024-12-19T11:25:33.000+02:00","2026-04-22T11:45:53.000+02:00","64-Bit","4","SCA,VM,PM,GAV","SVP,OS-WIN-SRV DYN,Péage,Cloud Agent","682.0" +"157828168","210598037","vppintaweb1.sanef.groupe","","00:50:56:82:2c:2d","192.168.20.20","fe80::250:56ff:fe82:2c2d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 77 09 31 f0 6b 76-f7 e3 6e d8 2b ad 95 9f","No Asset Tag","'+02:00","2026-04-14T14:24:12.000+02:00","cybreconcile","Cloud Agent","b919eceb-06be-43b0-83ac-4c13ec02459c","2023-02-03T03:34:19.000+02:00","2026-04-22T11:27:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,BDD-POS DYN,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,VRF_INCONNUE","59.0" +"322014494","329324232","PCB21576.sanef.groupe","PCB21576","D0:AD:08:A3:E6:D7","10.3.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQY","8CC3502YQY","'+02:00","2026-03-28T09:13:06.000+02:00","SANEF\igier","Cloud Agent","32a6885b-e31c-4923-b1d3-76771d1bb90f","2025-05-05T12:18:07.000+02:00","2026-04-22T10:57:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"387139802","356493097","vmdtrac11.recette.adds","VMDTRAC11","00:50:56:9C:89:A0","10.45.17.13","fe80::d794:a632:1a29:e2d1","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c f3 82 31 59 6a b5-a3 4a 95 77 45 81 79 ad","NoAssetTag","'+02:00","2026-04-16T03:35:48.000+02:00","supwindev","Cloud Agent","6ee8bab2-e739-495f-b337-637d56abc85d","2025-12-31T11:01:14.000+02:00","2026-04-22T11:25:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"131269845","193319055","lampwaz1.sanef.groupe","","00:17:a4:77:10:de","10.41.40.122","fe80::217:a4ff:fe77:10de","Linux / Server","The CentOS Project CentOS 7.7 (1908)","7.7","Computers / Server","HPE ProLiant BL460c G9 Server","16","2400","Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz","64303","HP I36 07/18/2022","CZ2622016K","","'+02:00","2024-03-20T11:44:36.000+02:00","cybastapp","Cloud Agent","3da45f2d-a68a-4ccd-9e0e-ff8d500d455e","2022-07-12T15:27:28.000+02:00","2026-04-22T11:17:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_TRAFIC_DC,Trafic,DSI,BDD-ELA DYN,Cloud Agent,Linux Server,Waze,MID-NGINX DYN,log4j,Production,Obsolete","344.0" +"230338974","258575124","vpadvaapp1.sanef.groupe","","00:50:56:90:a7:35","10.41.20.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e8 ee dd 80 45 a1-90 55 02 ef e6 c5 60 78","No Asset Tag","'+02:00","2026-03-17T16:37:31.000+02:00","cybreconcile","Cloud Agent","7ef6b100-66b0-403a-bf75-d23cc38d1e91","2024-04-16T13:00:27.000+02:00","2026-04-22T11:17:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Péage","332.0" +"131270067","193318266","vpechatal1.sanef.groupe","","00:50:56:82:45:f0","10.30.10.20","fe80::711a:3f73:265e:7d3e","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 12 9d c2 45 88 9f-3e 14 e3 36 cb f8 03 a3","No Asset Tag","'+02:00","2025-02-13T11:49:26.000+02:00","cybreconcile","Cloud Agent","a6ae2468-fc2c-4f6b-9218-735ddd4c618c","2022-07-12T15:17:38.000+02:00","2026-04-22T11:17:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,BDD-POS DYN,Cloud Agent,Linux Server,Exploitation IT,Production,DSI,Obsolete,log4j,TALEND,VRF_INCONNUE","513.0" +"340379006","","SVP18486.sanef-int.adds","SVP18486","D0:AD:08:A4:73:89","10.155.2.29,169.254.121.253","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764G7","","'+02:00","2026-04-13T18:31:06.000+02:00","Superviseur","Cloud Agent","f8e818bb-a3fd-4864-b6ac-9f2ec92ddfed","2025-07-09T09:15:19.000+02:00","2026-04-22T06:00:44.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"310050047","324427393","ls-loupershouse","LS-LOUPERSHOUSE","00:50:56:82:53:69","10.112.1.20","fe80::d380:5070:5af7:b55d","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 03 30 be a4 ad 4e-80 8b c4 02 6c ea 6c 5a","NoAssetTag","'+02:00","2026-03-05T10:33:35.000+02:00","svpadmin","Cloud Agent","a3d67199-ac5c-40d8-ad3c-12ecc8e798bc","2025-03-21T16:51:08.000+02:00","2026-04-22T10:39:37.000+02:00","64-Bit","4","SCA,VM,GAV","OS-WIN-SRV DYN,Péage,Cloud Agent,Production,SVP,High,DEX","677.0" +"195833595","241948707","lptrabgas1.sanef.groupe","","ee:50:33:80:00:70","10.41.40.151","fe80::ec50:33ff:fe80:70","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63821","HPE I44 06/13/2025","VCGCIOJ00E","/n/Bios Asset Tag :","'+02:00","2026-01-20T17:04:55.000+02:00","cybastapp","Cloud Agent","0978afd0-9c46-4f22-a50d-1649fc9c7717","2023-10-26T15:25:02.000+02:00","2026-04-22T10:58:12.000+02:00","x86_64","3","SCA,VM,PM,GAV","Gaspar,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX","504.0" +"349742049","340111944","vrechaetl1","","00:50:56:9c:b3:8b","10.45.11.206","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 99 db c1 19 74 57-95 63 73 08 d3 47 aa 2e","No Asset Tag","'+02:00","2026-01-08T12:05:43.000+02:00","cybadmsys","Cloud Agent","51bb8d70-ced7-4155-a860-a33fd1eae820","2025-08-07T10:28:44.000+02:00","2026-04-22T11:18:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette","340.0" +"343105252","337775706","PCB24163.sanef.groupe","PCB24163","24:FB:E3:F3:BA:16","10.103.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG52136X5","","'+02:00","2026-04-07T08:51:07.000+02:00","SANEF\PALLIEZ","Cloud Agent","7ce733e0-179a-47fc-a36a-a41294082c6d","2025-07-18T11:49:19.000+02:00","2026-04-22T11:10:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"378358691","352442064","PCV21536.sanef-int.adds","PCV21536","D0:AD:08:A3:7B:CE","10.210.7.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YW0","","'+02:00","2026-04-21T17:13:22.000+02:00","Operateur","Cloud Agent","dffa7ece-3aec-4e0c-9198-5d7b5bf7a998","2025-11-21T17:27:19.000+02:00","2026-04-22T11:11:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"175948572","229617189","vvbotatsp1.sanef-rec.fr","","00:50:56:9c:c3:f7, 42:6a:d1:c0:a3:49, 86:ef:5a:6f:8b:1d, aa:8f:7b:e3:dd:40, aa:75:42:9d:f4:82, 36:15:78:10:a8:1d, 9e:26:58:5f:42:2f, 2e:a0:54:8a:8d:77","10.45.6.138,10.89.0.1","fe80::250:56ff:fe9c:c3f7,fe80::406a:d1ff:fec0:a349,fe80::84ef:5aff:fe6f:8b1d,fe80::a88f:7bff:fee3:dd40,fe80::a875:42ff:fe9d:f482,fe80::3415:78ff:fe10:a81d,fe80::9c26:58ff:fe5f:422f,fe80::2ca0:54ff:fe8a:8d77","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c bc f3 f5 a6 3e cb-a7 c7 a3 b8 4a 0b f7 0a","No Asset Tag","'+02:00","2026-03-12T15:49:55.000+02:00","kapschsysuser","Cloud Agent","8971266d-8f79-45c1-9c5a-cf5a291472ff","2023-06-26T16:30:04.000+02:00","2026-04-22T10:58:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,Flux Libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN","142.0" +"297558271","318694151","OSA22801.sanef-int.adds","OSA22801","D0:AD:08:A3:E7:32","10.209.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTS","","'+02:00","2026-04-17T08:47:55.000+02:00","Superviseur","Cloud Agent","8d42f27b-c009-4296-b731-eea6a8925494","2025-02-04T16:35:07.000+02:00","2026-04-22T11:38:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"130331208","192655016","VPAIIAPVD4.sanef.groupe","VPAIIAPVD4","00:50:56:82:D0:D9","10.41.11.18","fe80::2cbf:bb83:13f5:956f","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 46 df a0 73 86 ef-cc ff 3f 27 b4 2c e8 2b","NoAssetTag","'+02:00","2025-04-11T08:32:21.000+02:00","SANEF\durmarque","Cloud Agent","16dd2756-df04-4e88-b97c-b34511125527","2022-07-05T13:59:44.000+02:00","2026-04-22T11:39:26.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Exploitation,Sans,Production,Cloud Agent,Windows Server,DEX,VRF_INCONNUE,NVR,Obsolete,Workstation","518.0" +"172623318","227337031","vrecmbsql1.recette.adds","VRECMBSQL1","00:50:56:9C:40:97","10.45.7.37","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4529) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 60 78 c7 b6 1c 02-54 6b f1 49 a9 03 0b 84","NoAssetTag","'+02:00","2026-03-03T15:14:45.000+02:00","RECETTE\B07185","Cloud Agent","1bdb7756-b5c2-44dd-9339-fc9e25227558","2023-06-01T11:36:59.000+02:00","2026-04-22T11:16:23.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Recette,BDD-SQL DYN,OS-WIN-SRV DYN,DSI,Cloud Agent,Windows Server,SCCM","520.0" +"223175180","255076753","ls-schwindratzheim","LS-SCHWINDRATZH","00:50:56:90:B0:E5","10.11.2.20","fe80::6221:fd62:107a:e6ad","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 42 02 59 15 b7 72-c7 b2 23 6b 93 70 6b 50","NoAssetTag","'+02:00","2026-03-03T10:30:29.000+02:00","svpadmin","Cloud Agent","5ab778c6-9498-4575-939c-e604d1fdd9ab","2024-03-18T17:12:38.000+02:00","2026-04-22T11:24:13.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,High,VRF_PEAGE,VRF_PEAGE_DC,VRF_BACKUP_DC,SVP,DEX,Cloud Agent,Windows Server,Production,Péage","513.0" +"139158019","198270644","vmampsxt1","","00:50:56:82:6C:1A, 00:50:56:82:78:82, 00:50:56:82:3A:E9","10.41.40.30,10.41.40.34,10.43.4.30,10.43.40.30","fe80::250:56ff:fe82:6c1a,fe80::250:56ff:fe82:7882,fe80::250:56ff:fe82:3ae9","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 05 0b 89 c3 eb de-0d e3 a8 e1 0e 4a 54 b4","No Asset Tag","'+02:00","2023-01-12T01:48:29.000+02:00","cybreconcile","Cloud Agent","10b2836a-1caa-4515-b53e-7d5cb5467814","2022-09-07T14:33:57.000+02:00","2026-04-22T11:11:28.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,Sextan,DEX,Production,Trafic,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,Obsolete","699.0" +"379860536","353007563","DAI22945.sanef-int.adds","DAI22945","28:C5:C8:41:A2:87","10.155.70.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC4271YWB","","'+02:00","2026-03-13T13:45:37.000+02:00","DAIUSER","Cloud Agent","c40eb43e-45ef-4364-807b-2bc92c4514ad","2025-11-27T18:29:38.000+02:00","2026-04-22T11:00:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"365200904","346822702","PCV21501.sanef-int.adds","PCV21501","D0:AD:08:A3:7C:C1","10.147.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YYF","","'+02:00","2026-03-27T10:19:02.000+02:00","Operateur","Cloud Agent","bf07f0ef-68f2-4963-a274-eda41f43348f","2025-10-03T13:07:38.000+02:00","2026-04-22T10:54:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"320931755","328821399","PCB24020.sanef.groupe","PCB24020","6C:0B:5E:F8:18:83","10.6.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDM","","'+02:00","2026-03-29T05:01:58.000+02:00","SANEF\bolzinger","Cloud Agent","d089c1a0-4f1a-4bf9-a435-d7e6a2ab4300","2025-04-30T11:56:18.000+02:00","2026-04-22T11:26:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"349775782","340136515","vpodaboem1.sanef.groupe","","52:54:00:c0:56:44, 52:54:00:b3:54:bb, 52:54:00:45:b9:77","192.168.17.129,192.168.17.4,10.42.15.100,10.42.15.102,10.42.15.105,10.42.15.106","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-07-31T08:56:17.000+02:00","oracle","Cloud Agent","ebe237cd-1827-4e0c-8fa2-7e65f82d01a5","2025-08-07T14:49:20.000+02:00","2026-04-22T11:02:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent","339.0" +"349790308","340136517","vpodaboem4.sanef.groupe","","52:54:00:44:a7:4f, 52:54:00:0d:d3:d8, 52:54:00:a4:3c:f9","192.168.17.130,192.168.17.5,10.42.15.91,10.42.15.93,10.42.15.94","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-10-03T14:51:30.000+02:00","oracle","Cloud Agent","eceb77e5-0bb7-4372-a44f-29005e436230","2025-08-07T14:49:18.000+02:00","2026-04-22T11:17:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","339.0" +"384808442","355184942","PCB24213.sanef.groupe","PCB24213","10:B6:76:95:8B:A7","10.5.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ8","","'+02:00","2026-04-16T18:43:16.000+02:00","SANEF\savart","Cloud Agent","667e36fd-633b-4d32-be52-c2683e73b151","2025-12-18T16:02:16.000+02:00","2026-04-22T11:42:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"323162513","329799404","PCB22780.sanef.groupe","PCB22780","D0:AD:08:A3:E6:5C","10.209.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQG","8CC3502YQG","'+02:00","2026-03-28T16:05:08.000+02:00","SANEF\ISAACF","Cloud Agent","38af2161-09f7-41ec-bc67-e3fcc7027886","2025-05-09T10:36:49.000+02:00","2026-04-22T11:05:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"129336589","191945990","vpdaoalic1.sanef.groupe","VPDAOALIC1","00:50:56:82:F8:F7","10.30.10.59","fe80::353f:27f3:8e01:bdc1","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 ce 18 93 83 96 57-74 83 55 9f 21 db 35 10","NoAssetTag","'+02:00","2026-04-13T12:06:55.000+02:00","Administrateur","Cloud Agent","16117019-fa69-4b16-9011-2bde61ac21cc","2022-06-27T14:18:21.000+02:00","2026-04-22T11:06:54.000+02:00","64-Bit","3","SCA,VM,PM,GAV","ELEC,DEX,Production,Low,Logiciels,VRF_INCONNUE,OS-WIN-SRV DYN,Cloud Agent,Windows Server,Basse","64.0" +"365228466","346827581","PCV21517.sanef-int.adds","PCV21517","D0:AD:08:A3:E6:BC","10.100.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YQV","","'+02:00","2026-04-21T17:10:15.000+02:00","Operateur","Cloud Agent","2564b64f-5f20-43e7-832a-4d224140efd7","2025-10-03T14:31:45.000+02:00","2026-04-22T11:01:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"231859805","259509938","vrcybapsm1.recette.adds","VRCYBAPSM1","00:50:56:9C:F0:7B","10.45.11.99","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8644) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 20 7e 27 0e 86 fc-f4 5c 32 47 a6 2e 75 57","NoAssetTag","'+02:00","2026-04-16T11:43:51.000+02:00","RECETTE\BP01481","Cloud Agent","744ad525-ea67-48da-a957-e1d5c5bc051f","2024-04-23T18:07:01.000+02:00","2026-04-22T11:10:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,Recette","44.0" +"152272093","206868500","vrintaprx2.sanef.groupe","","00:50:56:82:e3:56","192.168.20.4","fe80::250:56ff:fe82:e356","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 38 e0 f4 be 5d d8-0a ca 30 d2 61 81 d5 eb","No Asset Tag","'+02:00","2026-02-23T13:29:47.000+02:00","cybadmsys","Cloud Agent","12f16116-8e69-4534-b153-8625040e394f","2022-12-16T17:48:50.000+02:00","2026-04-22T11:20:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Gestion institutionnel,OS-LIN-SRV DYN","55.0" +"130586828","192835989","vmamrpmv1","","00:50:56:82:2A:C2, 00:50:56:82:5F:9D, 00:50:56:82:1B:6C","10.33.16.80,10.30.16.72,10.30.16.80,10.30.16.83,10.30.16.85,10.30.16.87,10.30.16.89,10.32.16.72,10.32.16.83,10.32.16.89,10.32.16.80,10.32.16.85,10.32.16.87","fe80::250:56ff:fe82:2ac2,fe80::250:56ff:fe82:5f9d,fe80::250:56ff:fe82:1b6c","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 24 45 67 6c 6f a4-0d 0b 07 05 70 c2 d5 c8","No Asset Tag","'+02:00","2025-10-09T14:46:27.000+02:00","delcour","Cloud Agent","9e6775b2-b6f9-4250-93a0-ab50a67c0e91","2022-07-07T12:01:59.000+02:00","2026-04-22T11:16:36.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MIVISU,DEX,Obsolete,Sans,Recette,Trafic,VRF_INCONNUE","873.0" +"287926188","311535929","vrosapapp1.sanef-rec.fr","","00:50:56:9c:d7:4e","10.45.9.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 77 b6 59 f3 4f f2-8e 9e ca 27 86 09 c9 25","No Asset Tag","'+02:00","2026-02-16T11:59:55.000+02:00","cybintsys","Cloud Agent","3255e4fb-6a64-490b-8eb8-51ab95621d88","2024-12-20T12:48:26.000+02:00","2026-04-22T11:07:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server","142.0" +"406232630","363561644","PCV20893.sanef-int.adds","PCV20893","30:13:8B:6C:5E:F4","10.12.7.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC4437Q7V","","'+02:00","2026-03-05T12:41:42.000+02:00","Operateur","Cloud Agent","24f19022-680b-43fb-9385-735ef49ecce5","2026-03-05T11:58:38.000+02:00","2026-04-22T11:13:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"395540025","359520751","vrsigaapp1.sanef-rec.fr","","00:50:56:9c:05:30","10.45.2.31","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 7b b0 e0 75 2d 89-f1 b3 22 04 c9 78 ad e9","No Asset Tag","'+02:00","2026-02-05T16:23:38.000+02:00","cybsupapp","Cloud Agent","4da548de-ca05-4cd7-b695-9750ff6b0a51","2026-01-28T11:51:58.000+02:00","2026-04-22T11:15:35.000+02:00","x86_64","3","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,SIG,Recette","221.0" +"209200389","248989099","VPAPTAPSH1.sanef.groupe","VPAPTAPSH1","00:50:56:9C:7F:3C","10.46.33.9","fe80::aeb2:2d71:1a21:55a4","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.3930) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 1c c5 25 91 30 e1 8e-83 a2 6f 1e be 6c 8d a1","NoAssetTag","'+02:00","2025-06-16T14:23:03.000+02:00","SANEF\TRON","Cloud Agent","6614a090-a219-4a63-8459-7857ab30a4e0","2024-01-12T16:13:06.000+02:00","2026-04-22T11:06:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"349797065","340136519","vpodaboem3.sanef.groupe","","52:54:00:3d:a8:66, 52:54:00:ad:d4:bb, 52:54:00:1a:17:e6","10.42.15.101,10.42.15.103,10.42.15.104,192.168.17.5,192.168.17.130","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-07-31T08:56:17.000+02:00","oracle","Cloud Agent","15a33704-1218-4419-b52e-21f40487c096","2025-08-07T14:49:20.000+02:00","2026-04-22T11:07:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","339.0" +"239623460","271648233","SVP20972.sanef-int.adds","SVP20972","BC:0F:F3:87:66:6E","10.132.4.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LM1","","'+02:00","2026-04-06T17:19:10.000+02:00","Superviseur","Cloud Agent","f20526ec-f000-4ccb-b797-823f0b7603fa","2024-05-27T17:05:37.000+02:00","2026-04-22T11:12:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"215228959","251732519","ls-srom-ferme","LS-SROM-FERME","00:50:56:90:6A:0F","10.41.2.82","fe80::f0d2:9ace:6258:5d05","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 38 bc a6 71 1a 94-76 72 63 47 0d 82 32 2a","NoAssetTag","'+02:00","2026-03-03T12:48:06.000+02:00","svpadmin","Cloud Agent","b25f15f1-c683-4dd3-9a11-2a07a8d06227","2024-02-12T17:07:50.000+02:00","2026-04-22T11:07:51.000+02:00","64-Bit","5","SCA,VM,PM,GAV","OS-WIN-SRV DYN,VRF_PEAGE_DC,Péage,DEX,Cloud Agent,Windows Server,SVP,Production,High,Haute","640.0" +"304604398","322521242","vrpeabbst1","","00:50:56:9c:39:61","192.168.31.13","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 90 7c 63 5e 53 f5-1f 9c aa fc be ca 40 80","No Asset Tag","'+02:00","2026-02-18T18:42:45.000+02:00","cybastapp","Cloud Agent","0da30718-32bf-4ba7-9e42-831875d498e0","2025-03-03T12:50:05.000+02:00","2026-04-22T10:47:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,MID-NGINX DYN,Péage,Cloud Agent,Linux Server","142.0" +"240178229","273931254","SVP20955.sanef-int.adds","SVP20955","BC:0F:F3:88:FD:3D","10.22.1.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LM8","","'+02:00","2026-04-22T05:40:58.000+02:00","Superviseur","Cloud Agent","9968115e-b7e6-4c5d-ad35-bec069e68dd4","2024-05-29T14:53:38.000+02:00","2026-04-22T11:11:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"377808411","352213443","vpdsiahap2.sanef.groupe","","00:50:56:90:9a:cd","192.168.19.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 98 aa fe 00 2a 65-e3 4b 29 19 60 ab 75 e9","No Asset Tag","'+02:00","2026-04-13T14:20:26.000+02:00","cybreconcile","Cloud Agent","649d883a-fab2-40b2-9f81-89e61284a0f6","2025-11-19T18:53:52.000+02:00","2026-04-22T11:05:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0" +"305733241","322855856","spsicaquo1.sanef.groupe","","20:67:7c:e6:0f:14","10.100.254.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31570","HPE U41 09/30/2024","CZJ84600RQ","","'+02:00","2025-11-06T13:55:17.000+02:00","cybreconcile","Cloud Agent","c73d0497-231a-417f-b8bb-3202cc8b2e09","2025-03-06T12:30:09.000+02:00","2026-04-22T11:08:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIA,OS-LIN-SRV DYN,TAG-SIC,Linux Server,Cloud Agent","139.0" +"319348494","328407085","PCB22795.sanef.groupe","PCB22795","D0:AD:08:BA:B4:39","10.152.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK0","8CC3502YK0","'+02:00","2026-03-28T09:43:15.000+02:00","SANEF\fleurya","Cloud Agent","cbdb5243-86c5-4f37-a6e8-2d7987aafb53","2025-04-25T12:57:48.000+02:00","2026-04-22T10:48:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"194005729","241200204","vvaflgsys1.sanef-rec.fr","","00:50:56:9c:37:85","10.45.7.168","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 62 29 12 cc 53 ce-71 ba f5 29 9b 33 1b 0d","No Asset Tag","'+02:00","2026-03-09T10:07:17.000+02:00","cybsupsys","Cloud Agent","c797811c-5f5a-4122-81bc-107e2387d4dc","2023-10-18T11:07:13.000+02:00","2026-04-22T11:16:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,Recette,flux_libre,Flux Libre","143.0" +"174237368","228465461","sppeaanvr21","SPPEAANVR21","D4:F5:EF:8A:BA:34","10.41.7.120","fe80::f22a:5958:7f21:7727","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ222807H3","","'+02:00","2026-02-05T10:26:05.000+02:00","CYBADMSYS","Cloud Agent","bb48b03c-e1f2-4a88-9626-848bff498e15","2023-06-13T11:54:14.000+02:00","2026-04-22T11:05:14.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,NVR,Cloud Agent,Windows Server","523.0" +"195071010","241703493","vpbocrsap1.sanef.groupe","","00:50:56:90:71:93","10.41.22.13","fe80::250:56ff:fe90:7193","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 00 d0 64 ae e0 2c-b0 0f dd 9e 31 1d a6 a8","No Asset Tag","'+02:00","2026-04-01T22:04:13.000+02:00","cybreconcile","Cloud Agent","227888cb-7d76-4544-b9e0-11c380a98427","2023-10-24T08:02:17.000+02:00","2026-04-22T11:07:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,Flux Libre,flux_libre,FreeFlow","337.0" +"415518160","367495696","PCB20706.sanef.groupe","PCB20706","58:1C:F8:EB:78:C8","192.168.0.184,10.205.0.168","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3X","","'+02:00","2026-04-15T12:08:56.000+02:00","SANEF\NOMMAY-ext","Cloud Agent","7e21108c-351a-448f-95fd-15b388185663","2026-04-13T16:55:34.000+02:00","2026-04-22T11:08:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"340078604","336780137","lpamebrac4.sanef.groupe","","3e:33:fb:a0:00:f3, 3e:33:fb:a0:00:f7","10.41.41.113,10.41.41.117,10.41.41.119,10.43.4.141","fe80::3c33:fbff:fea0:f3,fe80::3c33:fbff:fea0:f7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","515150","HPE I44 06/13/2025","VCGBW52015","/n/Bios Asset Tag :","'+02:00","2025-11-19T12:19:37.000+02:00","cybreconcile","Cloud Agent","307d4f95-68a7-49e0-887e-2904dced3c48","2025-07-08T10:21:22.000+02:00","2026-04-22T11:28:29.000+02:00","x86_64","2","SCA,VM,GAV","Production,Amelie,OS-LIN-SRV DYN,Cloud Agent,Linux Server","335.0" +"180395955","232824862","vrcosaapp1.sanef-rec.fr","","00:50:56:9c:2c:bc","10.45.9.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cc cc 7f 17 24 62-7e 52 35 14 aa 3d 49 cc","No Asset Tag","'+02:00","2026-03-03T15:14:46.000+02:00","cybadmsys","Cloud Agent","19e13af6-03e7-4cd2-9244-bc0b33de9b6a","2023-07-28T12:58:06.000+02:00","2026-04-22T11:34:23.000+02:00","x86_64","3","SCA,VM,PM,GAV","log4j,MID-NGINX DYN,OS-LIN-SRV DYN,COSWIN,DSI,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","512.0" +"218323011","252975059","vibooangx1.sanef.groupe","","00:50:56:90:71:74","10.41.22.210","fe80::250:56ff:fe90:7174","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 07 30 0f f5 c4 62-77 36 26 4f bd 90 cd 12","No Asset Tag","'+02:00","2026-03-16T10:30:25.000+02:00","cyblecemo","Cloud Agent","bcb8fffd-18e8-49e4-82f8-b497091a040a","2024-02-26T15:44:06.000+02:00","2026-04-22T10:46:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,ServersInCyberark,Flux Libre,Production,flux_libre,OS-LIN-SRV DYN,FreeFlow,MID-NGINX DYN","141.0" +"377749981","352186177","vrdsiahax2.sanef-rec.fr","","00:50:56:9c:e2:54","192.168.19.197","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c9 8b 2e f0 a5 15-25 c9 53 68 f9 ba b8 7d","No Asset Tag","'+02:00","2026-02-04T19:26:12.000+02:00","root","Cloud Agent","5c007b24-47c5-4afe-ab4d-683b7016bb91","2025-11-19T15:05:28.000+02:00","2026-04-22T10:52:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,DMZ,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","329.0" +"295368261","317190257","vvpeaabst3.sanef-rec.fr","","00:50:56:9c:3b:0a","10.45.10.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c de 43 23 21 2f 31-fc 6b e2 de 55 4d 8c a8","No Asset Tag","'+02:00","2026-03-10T10:01:59.000+02:00","cybsupapp","Cloud Agent","1d147632-02e4-4e6c-b4d3-d15d33be5555","2025-01-28T18:14:56.000+02:00","2026-04-22T11:11:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent,BOOST","140.0" +"130586773","192835845","lamarrac3.sanef.groupe","","00:17:A4:77:08:B8, 00:17:A4:77:08:C4, 00:17:A4:77:08:BC, 00:17:A4:77:08:C0","10.45.2.104,10.45.2.105,10.45.2.109,10.45.3.102,169.254.214.108,10.45.5.4,10.45.5.20","fe80::217:a4ff:fe77:8b8,fe80::217:a4ff:fe77:8c4,fe80::217:a4ff:fe77:8bc,fe80::217:a4ff:fe77:8c0","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","VCX000010L","","'+02:00","2026-02-25T16:01:27.000+02:00","cybadmsys","Cloud Agent","8056d027-67c8-4f74-b1e3-63678907b110","2022-07-07T11:56:50.000+02:00","2026-04-22T11:31:45.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,DEX,Sextan,Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Trafic,Sans,Recette","693.0" +"411130803","365528397","vplogbels2","","00:50:56:94:9d:ba","10.44.7.40","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 04 5d 4b f2 6c 70-c3 2d c9 2d 77 df 67 ec","No Asset Tag","'+02:00","2026-04-07T12:00:16.000+02:00","cybsecope","Cloud Agent","f216911a-a924-4624-8ab1-f790e0861580","2026-03-24T17:15:48.000+02:00","2026-04-22T10:42:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-ELA DYN","66.0" +"362968902","345927455","PCB22892.sanef.groupe","PCB22892","D0:AD:08:A7:27:AE","10.100.39.103","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YT7","8CC3502YT7","'+02:00","2026-03-29T09:11:51.000+02:00","SANEF\auclairp","Cloud Agent","38071852-6cc1-4575-8978-128634bf7803","2025-09-25T13:16:22.000+02:00","2026-04-22T11:05:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"379757077","352972406","PCB22730.sanef.groupe","PCB22730","D0:AD:08:AA:4F:D4","10.107.31.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764DF","","'+02:00","2026-04-09T14:56:34.000+02:00","SANEF\VERHAEGHE","Cloud Agent","a334a02c-b889-4f0e-9f01-25f1e5cbbe72","2025-11-27T11:58:13.000+02:00","2026-04-22T11:09:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"205329293","246826333","vibotbsql2.sanef.groupe","VIBOTBSQL2","02:7F:15:2F:15:B3, 00:50:56:90:FB:0F","169.254.1.129,10.41.23.134,10.41.23.149,10.41.23.150","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","131071","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 ea 71 3a 8d bf 7a-e8 cd a6 76 f5 19 dc d5","NoAssetTag","'+02:00","2026-03-18T12:00:14.000+02:00","SANEF\ndead","Cloud Agent","05ea0bdc-0f75-4ffb-b1bb-38a9692d0fc9","2023-12-20T15:26:05.000+02:00","2026-04-22T11:09:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,Production,BDD-SQL DYN,OS-WIN-SRV DYN,flux_libre,Cloud Agent,Windows Server","257.0" +"191420571","239727390","vibooosea2.sanef.groupe","","00:50:56:90:11:1b","10.41.22.201","fe80::250:56ff:fe90:111b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 6e 23 07 d6 d2 49-7c 08 13 af b9 04 a5 7a","No Asset Tag","'+02:00","2026-03-17T16:27:11.000+02:00","cybreconcile","Cloud Agent","d0dd40d7-7870-40a4-8102-3d8fb7c8786e","2023-10-04T17:50:38.000+02:00","2026-04-22T11:01:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre,FreeFlow","141.0" +"233980699","260820419","ls-la-neuvillette","LS-LA-NEUVILLET","00:50:56:90:BA:7C","10.41.2.55","fe80::5de5:3954:c852:7414","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 db de 0c da 94 33-c1 21 56 78 d5 9b 38 54","NoAssetTag","'+02:00","2026-03-03T11:48:13.000+02:00","svpadmin","Cloud Agent","057ea6ce-ea75-46ce-9814-6196ccacc59c","2024-05-03T10:38:42.000+02:00","2026-04-22T11:07:03.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Production,Péage,SVP,High,VRF_PEAGE_DC","507.0" +"393290213","358585062","PCB22827.sanef.groupe","PCB22827","60:45:2E:0F:3E:FD","10.255.4.148","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKD","8CC3502YKD","'+02:00","2026-04-19T14:37:02.000+02:00","SANEF\poher","Cloud Agent","b1b1a168-4618-4dff-89e1-60ca23fdbf3a","2026-01-19T12:19:52.000+02:00","2026-04-22T10:32:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"127861380","190912613","VPAIIADNS4","VPAIIADNS4","00:50:56:82:0E:8C","192.168.2.28","fe80::f9f8:8431:cb7d:44ad","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 5c 8a 3a 17 cc da-9d 30 c2 b6 e6 37 a6 5a","NoAssetTag","'+02:00","2026-04-16T12:55:42.000+02:00","Administrateur","Cloud Agent","7df5b4e2-76f6-4891-88bd-a7f336efd6c6","2022-06-14T15:58:49.000+02:00","2026-04-22T11:22:07.000+02:00","64-Bit","5","SCA,VM,PM,GAV","SED,Haute,DMZ,High,Reseau & Telecom,Production,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,DNS,Windows Server,Réseaux et Télécom,Cloud Agent,OS-WIN-SRV DYN,Critical","0.0" +"131270890","193320476","vpaiiapol1","","00:50:56:82:d9:5d","10.30.12.125","fe80::88d2:6e86:b660:94e8","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 3d 4e a5 fd e2 ca-c1 b3 12 6c db 8b df 7d","No Asset Tag","'+02:00","2025-11-06T09:07:19.000+02:00","cybreconcile","Cloud Agent","8a44c204-9168-4913-a93e-b83e3814dee2","2022-07-12T15:42:46.000+02:00","2026-04-22T11:09:53.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,Centreon,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,DSI,Obsolete,Cloud Agent,Linux Server","82.0" +"211609269","250177509","vpbotcach1.sanef.groupe","","00:50:56:90:8c:8f","10.41.23.17","fe80::250:56ff:fe90:8c8f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f5 e9 69 31 75 b8-54 62 12 29 b3 d0 a0 9e","No Asset Tag","'+02:00","2026-04-21T15:45:49.000+02:00","cybreconcile","Cloud Agent","76495e4b-6c1a-4310-9b1e-dffb951e6514","2024-01-24T13:59:33.000+02:00","2026-04-22T11:09:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","140.0" +"236549774","265276979","vpechatre1.sanef.groupe","","00:50:56:90:e6:a8","10.42.16.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 05 a5 ff 9f 6e 64-19 af 44 5f 75 4d bb cb","No Asset Tag","'+02:00","2025-11-18T15:18:21.000+02:00","cybreconcile","Cloud Agent","2e64d7e9-2c54-44b9-90cc-779390b12af5","2024-05-14T14:27:56.000+02:00","2026-04-22T11:01:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,TALEND,Production","208.0" +"213849160","251124644","sppeaanvr6","SPPEAANVR6","98:F2:B3:2C:CF:60","10.41.7.105","fe80::4263:e49d:815a:74b4","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G9 Server","8","3496","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","16254","HP P89","CZJ7460LLV","","'+02:00","2026-04-15T10:19:48.000+02:00","Administrateur","Cloud Agent","f768bc65-4e30-411f-b4c6-c79825c00701","2024-02-05T19:26:12.000+02:00","2026-04-22T11:02:49.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR","523.0" +"248469383","288180801","MTO22331.sanef.groupe","MTO22331","D0:AD:08:A3:7C:67","10.200.40.25","fe80::65da:b401:894b:150c","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.6345) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502Z02","","'+02:00","2026-04-16T05:36:45.000+02:00","SANEF\meteonewsW11","Cloud Agent","6836f30c-9714-43f0-a163-56cbec452409","2024-07-04T13:33:27.000+02:00","2026-04-22T11:16:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"143625406","201026504","vpemvantp2.sanef.groupe","","00:50:56:82:32:aa","192.168.100.133","fe80::250:56ff:fe82:32aa","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 09/21/2015","VMware-42 02 33 c0 84 b1 d7 cf-d7 b9 40 d5 02 3f 34 cd","No Asset Tag","'+02:00","2024-09-11T10:18:20.000+02:00","root","Cloud Agent","34f7059e-9f6e-4ac9-99e0-c8efd0309db3","2022-10-11T17:43:44.000+02:00","2026-04-22T10:52:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,EMV,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Supervision/Admin,DEX,BDD-POS DYN","107.0" +"349449582","340001447","vrpwdapod1","","00:50:56:9c:d8:ee","10.45.14.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d6 eb 75 59 64 c4-2c dd a2 b8 ac a1 ed 24","No Asset Tag","'+02:00","2026-03-31T14:12:12.000+02:00","cybintsys","Cloud Agent","e0a9367a-aa6e-4bec-a4fc-b27a74a7b4e3","2025-08-06T11:08:56.000+02:00","2026-04-22T11:09:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","140.0" +"353299227","341953317","srlogbels1.sanef-rec.fr","","20:67:7c:e6:8d:70","10.45.15.166","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31368","HPE U41 07/14/2022","CZJ84600RS","","'+02:00","2026-02-02T17:49:49.000+02:00","cybintsys","Cloud Agent","ed621be3-cd42-4c0f-951f-29c2db90c7d6","2025-08-21T12:18:21.000+02:00","2026-04-22T11:00:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN","66.0" +"359801327","344907764","vrcybapsp2.sanef-rec.fr","","00:50:56:9c:af:56","10.45.11.104","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cc 5f 7e ab f4 11-e1 4d b3 66 17 7b ab 3a","No Asset Tag","'+02:00","2026-04-16T11:15:02.000+02:00","cybreconcile","Cloud Agent","bd126235-c4e6-4b54-8341-6e7b62820203","2025-09-15T15:56:10.000+02:00","2026-04-22T11:23:36.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,Linux Server,Cloud Agent,CyberArk","66.0" +"368453771","348146124","vppixatsf1.sanef-int.adds","VPPIXATSF1","00:50:56:90:37:F5","10.41.17.15","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","65535","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 5f e7 16 e3 f6 be-5b 46 53 de a0 bd e8 6b","NoAssetTag","'+02:00","2026-04-10T10:46:14.000+02:00","SANEF-INT\b03987","IP Scanner, Cloud Agent","076e79b7-cac8-48bb-99f7-c83356bcf0bd","2025-10-14T16:58:23.000+02:00","2026-04-22T11:20:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","341.0" +"378066936","352311408","vrlogakib1.sanef-rec.fr","","00:50:56:9c:38:fd","10.45.15.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c af 39 c1 9f 41 cf-cc 46 d1 e9 26 d7 32 33","No Asset Tag","'+02:00","2026-04-01T11:10:02.000+02:00","cybintsys","Cloud Agent","327e1c61-7538-444e-a0f4-3c22fa18c725","2025-11-20T14:34:39.000+02:00","2026-04-22T10:47:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Elasticsearch,Recette,Linux Server,OS-LIN-SRV DYN,Cloud Agent","141.0" +"280014653","305196018","vpgeoagps2","VPGEOAGPS2","00:50:56:90:0D:0B","192.168.40.67","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 10 8d a9 90 b8 cc 72-3a be 1f b0 d1 08 8b 11","NoAssetTag","'+02:00","2026-04-15T10:02:15.000+02:00","adminsee","Cloud Agent","e74a8a45-4868-4d97-b6e5-6c91639fb4c6","2024-11-18T11:03:27.000+02:00","2026-04-22T11:23:52.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,TAG-SRVEXPOSEINTERNET","15.0" +"399660876","361235534","vodsiaito1.sanef.groupe","","00:50:56:9c:f3:92","10.46.39.35","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 5e 94 be 8f a0 16-75 6f f5 a0 50 3b ba 52","No Asset Tag","'+02:00","2026-02-12T17:05:50.000+02:00","cybreconcile","Cloud Agent","1bd870a4-e1d1-4573-8ce3-a6829334b652","2026-02-12T17:06:40.000+02:00","2026-04-22T11:20:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","140.0" +"377822105","352213229","vpdsiahap1.sanef.groupe","","00:50:56:90:90:f8","192.168.19.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 92 86 8f 71 15 09-de 5c 7a f3 46 4b 40 25","No Asset Tag","'+02:00","2026-04-13T14:14:05.000+02:00","cybreconcile","Cloud Agent","38afdf12-d722-44ea-800e-8651b44ab20a","2025-11-19T18:51:53.000+02:00","2026-04-22T11:15:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","330.0" +"310037482","324426777","ls-vallee-de-l-aisne","LS-VALLEE-DE-L-","00:50:56:90:F5:A2","10.41.2.54","fe80::f5be:5f1:4ebf:e113","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 71 ba 6b 67 eb 64-fb ed 31 3f 03 76 c2 fb","NoAssetTag","'+02:00","2026-03-04T11:42:59.000+02:00","svpadmin","Cloud Agent","07114cc9-758d-4589-b03c-52a9ea6b95e9","2025-03-21T16:40:08.000+02:00","2026-04-22T11:01:14.000+02:00","64-Bit","4","SCA,VM,GAV","OS-WIN-SRV DYN,Cloud Agent,High,DEX,Péage,Production,SVP","681.0" +"231514970","259272234","ls-essertaux","LS-ESSERTAUX","00:50:56:90:E7:9F","10.41.2.93","fe80::5728:ed64:d5b3:f99b","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c6 a1 2f a3 68 cd-1f 27 15 e0 76 95 c8 a0","NoAssetTag","'+02:00","2026-03-24T12:32:37.000+02:00","svpadmin","Cloud Agent","0b7996d8-d154-46fd-b5c7-a8c75e794c72","2024-04-22T10:02:19.000+02:00","2026-04-22T11:08:47.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Production,Cloud Agent,Windows Server,High,Péage,SVP,DEX,OS-WIN-SRV DYN","681.0" +"204326484","246307065","vpcybapsm3.sanef-int.adds","VPCYBAPSM3","00:50:56:82:42:3B","10.44.1.72","","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 09 24 20 0f 3e c1-35 e7 42 4c a3 5c b3 87","NoAssetTag","'+02:00","2026-03-25T10:30:30.000+02:00","Admp01481","Cloud Agent","63984763-ec38-4559-99cc-c594c3ee283e","2023-12-14T16:26:50.000+02:00","2026-04-22T10:56:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,CyberArk,OS-WIN-SRV DYN","56.0" +"241563039","276522521","vpvsaages1.sanef.groupe","","00:50:56:9c:f9:12","10.42.16.82","fe80::250:56ff:fe9c:f912","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 0a d5 e7 9f 5f dd-22 29 5d 69 ed f7 05 85","No Asset Tag","'-04:00","2026-02-04T15:40:16.000+02:00","tbaad","Cloud Agent","f7872d0c-582a-48b5-99f2-9aadbc1b488d","2024-06-04T13:52:42.000+02:00","2026-04-22T11:14:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0" +"349748226","340121296","vrlogbquo1","","00:50:56:9c:b4:5a","10.100.16.105","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7681","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c b5 be be 2a 87 74-3b 74 4d ba 64 e3 e4 86","No Asset Tag","'+02:00","2026-02-17T11:00:44.000+02:00","cybintsys","Cloud Agent","edfd80fc-bb74-479e-8fe5-b25f8e07b45f","2025-08-07T12:08:27.000+02:00","2026-04-22T10:55:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","138.0" +"173072883","227647495","vvbotjump1.recette.adds","VVBOTJUMP1","00:50:56:9C:FC:FF","10.45.8.67","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 61 5a b6 f0 fb bc-85 b9 5c 0d 4f 83 8a 28","NoAssetTag","'+02:00","2026-04-22T04:02:59.000+02:00","RECETTE\b03987","Cloud Agent","c377b475-49e6-4150-acb3-0bddf147e79f","2023-06-05T14:37:29.000+02:00","2026-04-22T11:01:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Windows Server,BDD-ELA DYN,BDD-SQL DYN,OS-WIN-SRV DYN,flux_libre,Flux Libre,Recette","257.0" +"376422961","351518009","vpcybapsp2.sanef.groupe","","00:50:56:9c:ad:ff","10.44.1.75","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 88 13 5d fe e4 76-36 ee ef c2 c2 2c f3 fe","No Asset Tag","'+02:00","2026-03-25T09:37:27.000+02:00","cybreconcile","Cloud Agent","fc4dde3c-a938-418c-83c2-b9580dca77de","2025-11-13T17:22:02.000+02:00","2026-04-22T10:50:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,Production,CyberArk","152.0" +"131275361","193321031","vpaiiapol5","","00:50:56:82:94:70","10.40.2.46","fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 6e a8 95 50 3b 27-85 58 35 bb e3 53 b5 eb","No Asset Tag","'+02:00","2024-06-05T11:39:28.000+02:00","cybreconcile","Cloud Agent","d6b6f887-84de-4656-8aed-6d6620e18881","2022-07-12T15:47:48.000+02:00","2026-04-22T11:22:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans,Centreon,Obsolete,Linux Server,Cloud Agent,VRF_INCONNUE","462.0" +"191424031","239727602","vibooaboo1.sanef.groupe","","00:50:56:90:46:2d","10.41.22.202","fe80::250:56ff:fe90:462d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 51 f3 e9 df 6e dc-ae 9f c0 29 18 dc 87 02","No Asset Tag","'+02:00","2026-03-17T15:35:43.000+02:00","cybsupemo","Cloud Agent","634cc72d-dc9c-440e-b3a6-903fce7680e1","2023-10-04T17:56:01.000+02:00","2026-04-22T11:03:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,Production,flux_libre,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","142.0" +"160247428","213434314","vpameaoct2","","00:50:56:82:2c:ab","10.41.40.131","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 02 22 9d 03 55 e0-68 f6 85 ed 20 e3 97 30","No Asset Tag","'+02:00","2026-01-21T10:44:49.000+02:00","cybreconcile","Cloud Agent","9baa3173-4108-4ce4-8d38-71640a319ce5","2023-02-22T16:45:55.000+02:00","2026-04-22T10:37:12.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,OCTAN,Cloud Agent,Linux Server,DEX,MID-APACHE-TOMCAT DYN","510.0" +"159557652","212130482","vpintaweb2.sanef.groupe","","02:42:b5:4e:0c:dd, 00:50:56:82:64:bf","172.17.0.1,192.168.20.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 c1 7b d8 5a 03 8a-7e 0b 01 96 df cb 9c b6","No Asset Tag","'+02:00","2026-04-15T14:54:46.000+02:00","cybreconcile","Cloud Agent","fbc331e5-6829-47d9-9ce7-d4429dcf4a02","2023-02-16T13:41:17.000+02:00","2026-04-22T10:59:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Gestion institutionnel,OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,VRF_INCONNUE,Cloud Agent,Linux Server","130.0" +"244496219","284618520","OSA20930.sanef-int.adds","OSA20930","BC:0F:F3:87:66:67","10.152.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLZ","","'+02:00","2026-04-13T13:37:13.000+02:00","Superviseur","Cloud Agent","7b79c5cc-8196-4d9c-9a6c-a0a575656d3d","2024-06-17T10:13:36.000+02:00","2026-04-22T11:12:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"180108924","232626124","vrrauaapp1.sanef-rec.fr","","00:50:56:9c:08:6c","10.45.9.231","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f3 f0 6e 7f d0 d4-00 4c ef 10 4f 7e 47 ba","No Asset Tag","'+02:00","2026-04-21T11:55:01.000+02:00","cybadmsys","Cloud Agent","5ca517d7-929e-4f09-8fee-edbbbc6f41a7","2023-07-26T18:19:32.000+02:00","2026-04-22T11:09:11.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,OS-LIN-SRV DYN,ASUR","72.0" +"407932259","364283919","PCV18541.sanef-int.adds","PCV18541","30:13:8B:6C:5B:9E","10.210.7.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473TM","","'+02:00","2026-03-12T11:48:03.000+02:00","Operateur","Cloud Agent","39e0783d-3a1a-4384-81c1-6f5868760ec8","2026-03-12T11:14:31.000+02:00","2026-04-22T11:00:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"411843487","365824440","vpgrnangx1.sanf.groupe","","00:50:56:90:c3:b8","10.41.20.86","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 a1 09 cb 55 e4 13-15 d3 2f 2f 4f 03 93 0f","No Asset Tag","'+02:00","2026-04-07T15:57:21.000+02:00","cybreconcile","Cloud Agent","5379e72b-39b4-49d6-9e9e-853d210ec86d","2026-03-27T12:18:22.000+02:00","2026-04-22T10:48:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,MID-NGINX DYN,BDD-POS DYN","65.0" +"241525484","276502495","vpvsaaafl1.sanef.groupe","","00:50:56:90:45:45","10.42.16.85","fe80::250:56ff:fe90:4545","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 b2 c1 38 2f d8 a4-1c 11 56 ea 3c 71 cb 82","No Asset Tag","'+02:00","2026-02-03T11:47:12.000+02:00","tbaad","Cloud Agent","e0cba33a-5464-467a-8be6-0bbb288c670c","2024-06-04T11:16:43.000+02:00","2026-04-22T11:08:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Linux Server,Cloud Agent","52.0" +"378059947","352307186","vpdsiangx3.sanef.groupe","","00:50:56:90:1f:10","192.168.19.162","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 45 04 87 7a 05 98-b8 0c 0c ea 5d dd 84 30","No Asset Tag","'+02:00","2025-12-10T15:09:42.000+02:00","cybintsys","Cloud Agent","80c4f763-af58-4981-9202-a10bb6035dc3","2025-11-20T13:39:33.000+02:00","2026-04-22T10:38:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0" +"378284988","352418741","PBM20937.sanef-int.adds","PBM20937","BC:0F:F3:87:6F:91","10.200.50.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LL4","","'+02:00","2026-04-16T05:37:35.000+02:00","Operateur","Cloud Agent","812424c3-d182-4b7f-8272-e1ad2910cccc","2025-11-21T12:59:19.000+02:00","2026-04-22T10:56:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","343.0" +"129339728","191948317","sppeaanvr10","SPPEAANVR10","D4:F5:EF:50:80:E5","10.41.7.109","fe80::6047:3cad:b2d9:5a8f","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Computers / Server","HPE ProLiant DL380 G10 Server","16","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16041","HPE U30","CZ21290DV9","","'+02:00","2026-04-06T22:12:03.000+02:00","Administrateur","Cloud Agent","84c375ec-b766-42cc-a6b6-b2af919daee6","2022-06-27T14:58:55.000+02:00","2026-04-22T11:11:53.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Sans,Exploitation,OS-WIN-SRV DYN,DEX,Cloud Agent,Windows Server,NVR","511.0" +"129338677","191947809","vpaiiatse2.sanef.groupe","VPAIIATSE2","00:50:56:82:B6:96","10.30.11.8","fe80::fde9:4486:1354:5d73","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","Phoenix Technologies LTD 6.00","VMware-56 4d 3c 84 c4 8c 52 95-a4 6f 82 d0 1e 79 a9 08","NoAssetTag","'+02:00","2026-04-02T11:15:05.000+02:00","SANEF\ndead","Cloud Agent","04b93076-76a0-4fdc-b204-ce2637fae9cf","2022-06-27T14:49:17.000+02:00","2026-04-22T11:13:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DRH,Exploitation IT,AgileTime,VRF_INCONNUE,Production,Cloud Agent,Windows Server,OS-WIN-SRV DYN","56.0" +"129346019","191953079","vpsimaexp1.sanef.groupe","VPSIMAEXP1","00:50:56:82:44:F6","10.30.10.17","fe80::7ae0:1b47:66ee:babc","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 3d 14 88 5c 7c e7-25 f9 8e b1 46 59 c5 8c","NoAssetTag","'+02:00","2026-04-13T15:07:54.000+02:00","Administrateur","Cloud Agent","ea2c4a01-e9d7-4680-a34b-30a85b3c2479","2022-06-27T16:10:52.000+02:00","2026-04-22T11:30:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DOLLAR,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,DSI,Production","248.0" +"148436350","204914682","vrexpbtex1","","00:50:56:82:09:ce","10.45.2.226","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","31889","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 ca d0 16 1b 0c 4e-87 84 fd 26 39 0c 54 49","No Asset Tag","'+02:00","2026-04-15T15:32:58.000+02:00","cybadmsys","Cloud Agent","8b1511b6-7b10-4895-96d6-efc9bafc4f15","2022-11-17T19:47:18.000+02:00","2026-04-22T10:50:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,Transports Exceptionnels","27.0" +"321553800","329073076","PCB22444.sanef.groupe","PCB22444","D0:AD:08:A3:E6:C0","10.149.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YR8","8CC3502YR8","'+02:00","2026-04-18T16:53:31.000+02:00","SANEF\thuin","Cloud Agent","18e2db35-deaf-448e-aaa2-5751d956bb83","2025-05-02T10:22:40.000+02:00","2026-04-22T10:57:25.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Workstation,Forescout","484.0" +"220360665","253837004","viosapels1.sanef.groupe","","00:50:56:90:10:e8","10.41.29.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 13 e5 68 eb 82 5a-c7 17 9e cd df 73 2a 0a","No Asset Tag","'+02:00","2026-02-19T11:42:02.000+02:00","cybadmbdd","Cloud Agent","d7dc4010-3276-4b1d-a984-28b5e9bc98ad","2024-03-06T14:10:51.000+02:00","2026-04-22T10:37:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Péage,DEX,Cloud Agent,Linux Server","141.0" +"409450683","364912286","PCB22306.sanef.groupe","PCB22306","60:45:2E:0F:59:A1","10.255.1.143","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJM","8CC3502YJM","'+02:00","2026-04-15T09:10:40.000+02:00","SANEF\vicquelins","Cloud Agent","ab7814ac-d8c0-4b45-ab62-7bcdbf600ff2","2026-03-18T12:23:25.000+02:00","2026-04-22T10:36:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"131267086","193317133","vpadvaapp4.sanef.groupe","","00:50:56:82:66:86","10.30.10.46","fe80::ecd1:9383:fcf1:dd35","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 bf ea 65 0e 1e 53-60 54 30 ec b6 94 41 f0","No Asset Tag","'+02:00","2024-09-05T14:16:38.000+02:00","cybreconcile","Cloud Agent","d630674c-0f84-4895-97fe-f794da697d55","2022-07-12T15:04:23.000+02:00","2026-04-22T10:54:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Production,BDD-POS DYN,Gestion commerciale,Cloud Agent,Linux Server,DEX,Obsolete,ADV-U","336.0" +"139158036","198270705","vmampsxt3","","00:50:56:82:48:7B, 00:50:56:82:2F:B3, 00:50:56:82:60:FD","10.43.4.32,10.43.40.32,10.41.40.32","fe80::250:56ff:fe82:487b,fe80::250:56ff:fe82:2fb3,fe80::250:56ff:fe82:60fd","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 8f 04 7b 29 62 51-77 87 c2 cf 93 91 e2 58","No Asset Tag","'+02:00","2025-12-11T15:55:16.000+02:00","cybreconcile","Cloud Agent","3f1d4ed6-923d-4649-a944-e6c72d8fc086","2022-09-07T14:35:22.000+02:00","2026-04-22T10:55:35.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,log4j,DEX,OS-LIN-SRV DYN,Sextan,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,Production,Trafic,Linux Server,Cloud Agent","699.0" +"407987714","364299217","PCV18554.sanef-int.adds","PCV18554","30:13:8B:6C:5C:EE","10.210.7.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473T2","","'+02:00","2026-03-12T13:07:32.000+02:00","Operateur","Cloud Agent","6e478ead-2b8b-4df7-8c02-3f1b15d04a37","2026-03-12T13:25:42.000+02:00","2026-04-22T10:35:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"312270851","325486296","vrsvpaosap1","VRSVPAOSAP1","00:50:56:9C:A3:27","10.45.9.171","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 51 a0 1d 58 00 4a-6d 0e 0b a6 42 64 80 8c","NoAssetTag","'+02:00","2026-03-27T15:49:28.000+02:00","gare","Cloud Agent","488ae1ae-3556-4f35-948f-7dbede43810a","2025-03-31T16:09:25.000+02:00","2026-04-22T10:36:49.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,SVP,OS-WIN-SRV DYN","506.0" +"204046362","246173971","vvaflbsta1","VVAFLBSTA1","00:50:56:9C:76:E6","10.45.7.165","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 1c 00 04 f4 fc b1 7b-72 f8 d9 86 49 c1 6d cb","NoAssetTag","'+02:00","2026-03-11T12:18:22.000+02:00","Administrateur","Cloud Agent","7d6cc7f9-880a-43da-a841-9e54c79881e9","2023-12-13T12:49:01.000+02:00","2026-04-22T11:06:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,OS-WIN-SRV DYN,BDD-SQL DYN,Cloud Agent,Windows Server,Recette,flux_libre","252.0" +"213849189","251125497","spemvalog1.sanef.groupe","","54:80:28:4e:67:5a","192.168.100.74","fe80::46c:6cb9:10b9:4392","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant DL380 G10 Server","32","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31829","HPE U30 08/06/2025","CZ28450153","","'+02:00","2026-01-19T17:20:57.000+02:00","root","Cloud Agent","14d73869-4e52-41ff-9546-b2ea4392cdfc","2024-02-05T19:36:04.000+02:00","2026-04-22T10:45:02.000+02:00","x86_64","4","SCA,VM,PM,GAV","Forescout,PCI Bunker EMV - VLAN Supervision/Admin,DSI,OS-LIN-SRV DYN,Splunk,Cloud Agent,Linux Server","673.0" +"211396220","250074202","vrpeaabst2.sanef-rec.fr","","00:50:56:9c:3e:65","10.45.10.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 8a 5d 9f 66 81 57-f5 aa 2c af 74 79 ad 91","No Asset Tag","'+02:00","2026-02-18T10:32:29.000+02:00","cybadmsys","Cloud Agent","ff752b7b-dfd0-4567-9c80-a7d1a8f826c5","2024-01-23T16:35:20.000+02:00","2026-04-22T10:50:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,DSI,MID-NGINX DYN,BOOST,Cloud Agent,Linux Server","141.0" +"241536911","276509649","vpvsaaafz2.sanef.groupe","","00:50:56:90:7a:80","192.168.18.79","fe80::250:56ff:fe90:7a80","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 23 07 9c d7 fc 84-af eb a1 31 0d 4d f5 03","No Asset Tag","'+02:00","2026-02-04T12:51:21.000+02:00","tbaad","Cloud Agent","13f17acb-fa02-4c85-84f0-2e3c2e12022d","2024-06-04T12:01:16.000+02:00","2026-04-22T11:03:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0" +"130590138","192836895","vmamrsxt4","","00:50:56:82:26:F5, 00:50:56:82:4A:4D, 00:50:56:82:58:5D","10.33.16.63,10.32.16.63,10.30.16.63","fe80::250:56ff:fe82:26f5,fe80::250:56ff:fe82:4a4d,fe80::250:56ff:fe82:585d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3f bf 83 fb 25 5a-88 23 9d d6 d4 88 25 c3","No Asset Tag","'+02:00","2025-10-09T11:39:37.000+02:00","cybastsys","Cloud Agent","9b15cc9b-6b59-4550-92ee-de5298641343","2022-07-07T12:06:26.000+02:00","2026-04-22T10:38:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Sextan,Obsolete,VRF_INCONNUE","699.0" +"250360594","289321218","SVP20959.sanef-int.adds","SVP20959","BC:0F:F3:87:66:66","10.200.2.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLY","","'+02:00","2026-01-30T09:22:22.000+02:00","Superviseur","Cloud Agent","61638ec1-9fd2-43eb-8585-3b18a94de2ac","2024-07-12T11:23:54.000+02:00","2026-04-22T11:06:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"193226489","240735961","vpbocs4ci1.sanef.groupe","","00:50:56:90:6e:15","10.41.22.5","fe80::250:56ff:fe90:6e15","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","92112","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 1e 89 b0 76 c1 7b-6a 8e 22 88 02 10 4d cb","No Asset Tag","'+02:00","2026-04-01T21:45:11.000+02:00","cybreconcile","Cloud Agent","3cdf60b5-1dc5-41a8-a2d3-c561cd8fa947","2023-10-13T13:29:39.000+02:00","2026-04-22T10:50:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server","332.0" +"320972075","328891979","PCB22886.sanef.groupe","PCB22886","D0:AD:08:A7:27:C8","10.152.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN4","8CC3502YN4","'+02:00","2026-03-28T13:51:00.000+02:00","SANEF\hulinj","Cloud Agent","7a630275-8989-4e34-8369-8bbb12359187","2025-04-30T13:38:48.000+02:00","2026-04-22T10:55:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"230624333","258742190","vpsupapol2.sanef.groupe","","00:50:56:8d:b1:4d","10.44.5.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","1778","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 45 e4 e7 11 fe ad-01 3a 2d 47 a0 bb dd a6","No Asset Tag","'+02:00","2026-03-30T10:53:14.000+02:00","cybreconcile","Cloud Agent","ae71c630-7e3f-413a-a45e-9cbb00a602c6","2024-04-17T18:08:34.000+02:00","2026-04-22T10:36:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN,BDD-ELA DYN,MID-NGINX DYN,Cloud Agent,Linux Server","60.0" +"178245544","231309790","MTR-12DSNT3","MTR-12DSNT3","90:8D:6E:93:CB:95","10.152.32.200","fe80::55fa:53:adbc:5fdb","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","12DSNT3","","'+02:00","2026-04-22T02:32:55.000+02:00","Skype","Cloud Agent","476339da-8a8b-42d7-bc90-c298e1cb6adb","2023-07-12T23:28:20.000+02:00","2026-04-22T11:17:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"197060278","242652607","MTR-1J775R3","MTR-1J775R3","90:8D:6E:8E:25:3F","10.202.32.200","fe80::bb1d:4fe3:58ec:d469","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","1J775R3","","'+02:00","2026-04-22T02:32:52.000+02:00","Skype","Cloud Agent","ecb97200-3ad1-4774-a575-706738de2df3","2023-11-02T17:40:41.000+02:00","2026-04-22T11:02:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"417632377","368332361","PCB24061.sanef.groupe","PCB24061","24:FB:E3:33:98:58","10.100.39.141","fe80::604a:4812:f2f4:922","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437G","","'+02:00","2026-04-21T11:25:32.000+02:00","SANEF\salur-ext","Cloud Agent","74ea6d27-be57-496e-a98f-566a1ea7810e","2026-04-21T11:29:49.000+02:00","2026-04-22T05:31:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"225427710","256064630","ls-montreuil-bpv","LS-MONTREUIL-BP","00:50:56:90:EC:6E","10.22.1.20","fe80::caf3:d509:159d:c2e","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 63 d2 fa 00 79 42-14 36 dc d7 15 ad bd 4e","NoAssetTag","'+02:00","2026-03-02T11:25:49.000+02:00","svpadmin","Cloud Agent","cd64bc0e-6090-4468-b0cd-3d9e1a053e08","2024-03-26T10:34:19.000+02:00","2026-04-22T10:47:23.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,Production,High,Péage,SVP","508.0" +"271510081","300534724","SVP21054.sanef-int.adds","SVP21054","D0:AD:08:A7:28:6D","10.106.18.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLJ","","'+02:00","2026-04-21T12:47:00.000+02:00","Superviseur","Cloud Agent","6c2112e9-7be6-4bb1-8a2b-4669f7a5e6b8","2024-10-11T09:59:34.000+02:00","2026-04-22T10:44:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"407122268","363946681","PCB25875.sanef.groupe","PCB25875","4C:CF:7C:0A:4C:79","10.152.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222J","","'+02:00","2026-04-20T08:17:54.000+02:00","SANEF\THILLOY","Cloud Agent","64b09c97-0f02-46b1-8106-1c86b1aa762f","2026-03-09T14:43:09.000+02:00","2026-04-22T11:10:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"129338598","191947425","vptraazen2.sanef.groupe","VPTRAAZEN2","00:50:56:82:43:A2","10.41.60.51","fe80::f546:1eb3:9fc2:b539","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 d6 a2 81 96 88 91-a6 55 88 37 c3 fe 21 82","NoAssetTag","'+02:00","2026-02-12T17:11:38.000+02:00","administrateur","Cloud Agent","710c3b79-2416-41ad-add8-cefad04f449c","2022-06-27T14:42:30.000+02:00","2026-04-22T11:44:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Enregistrement_COM,VRF_BURO,Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,Outils transverses,Production","258.0" +"379779221","352984437","spbckamag3.sanef.groupe","","04:bd:97:22:c5:b9, 04:bd:97:22:c5:b8","10.43.1.5,10.42.16.74","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP260706CC","Unknown","'+02:00","2025-12-02T17:55:29.000+02:00","cybsecope","Cloud Agent","cb460ae1-89cd-4dbc-b5d4-58eacfb9b891","2025-11-27T13:44:26.000+02:00","2026-04-22T10:37:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0" +"287936544","311537310","vrosapels1.sanef-rec.fr","","00:50:56:9c:3e:a7","10.45.9.71","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d6 80 bd e9 ea 0f-6d fc 5b 26 ce 3f bc 34","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","reboot","Cloud Agent","26000044-0bd2-432b-b647-8f734d7a09d3","2024-12-20T13:09:33.000+02:00","2026-04-22T10:40:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","142.0" +"205781540","247056237","vpbocaprx1.sanef.groupe","","00:50:56:90:74:89","192.168.21.195","fe80::250:56ff:fe90:7489","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f7 cb 90 98 b5 11-3f d7 f2 04 60 73 60 0e","No Asset Tag","'+02:00","2026-04-01T22:02:40.000+02:00","root","Cloud Agent","21d995fb-3719-4d8d-aa67-d163aafa15f8","2023-12-22T18:22:14.000+02:00","2026-04-22T10:55:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,flux_libre,FreeFlow,Flux Libre,Production","66.0" +"207966352","248303945","viaflbdwh1.sanef.groupe","VIAFLBDWH1","00:50:56:9C:BB:C6","10.46.34.70","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","32767","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 09 00 0e 28 69 41-84 fa b6 85 ce c2 1d 3f","NoAssetTag","'+02:00","2026-03-19T16:10:34.000+02:00","Administrateur","Cloud Agent","efbfa670-5f7f-4988-8c22-cebe3a8d2c8b","2024-01-05T17:41:59.000+02:00","2026-04-22T05:24:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Windows Server,BDD-SQL DYN,OS-WIN-SRV DYN,FreeFlow","258.0" +"411100608","365513280","DAI22946.sanef-int.adds","DAI22946","28:C5:C8:41:A2:89","10.100.70.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC4271YWD","","'+02:00","2026-03-25T12:01:20.000+02:00","DAIUSER","Cloud Agent","cb0bc91e-231d-4bb5-8bd4-68d2c3a1eb08","2026-03-24T14:36:28.000+02:00","2026-04-22T10:55:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"129310619","191930679","vpburaimp1.sanef.groupe","VPBURAIMP1","00:50:56:82:31:51","10.30.12.147","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4648) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 be 29 55 87 52 53-34 0f cb 94 95 28 5a 1e","NoAssetTag","'+02:00","2026-04-20T06:00:17.000+02:00","SANEF.GROUPE\PIGEON","Cloud Agent","d8b66d69-4009-4740-94b2-52c6c9e0d830","2022-06-27T11:20:41.000+02:00","2026-04-22T10:47:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,BDD-POS DYN,Production,VRF_INCONNUE,DSI,OS-WIN-SRV DYN,PaperCut,Cloud Agent,Windows Server","350.0" +"324061930","","PCB22340.sanef.groupe","PCB22340","D0:AD:08:A7:28:4E","10.203.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPC","","'+02:00","2026-04-06T06:45:15.000+02:00","SANEF\lione","Cloud Agent","aa692d06-fe7e-4d98-89ec-63407e2cd43e","2025-05-12T13:59:27.000+02:00","2026-04-22T05:21:45.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"377394622","352034393","vmdpeag02.recette.adds","VMDPEAG02","00:50:56:9C:B1:B1, 0A:00:27:00:00:0A","10.45.17.196,192.168.56.1","fe80::3fb6:15f5:323a:c5e1,fe80::fdf0:8840:b5b0:3fa9","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 76 c9 a0 e0 1b a4-cd f1 da b5 1f c6 ca 24","NoAssetTag","'+02:00","2026-04-16T17:34:37.000+02:00","RECETTE\c03987","Cloud Agent","c7f792a3-b4f9-4c49-9660-8c53b0fd7567","2025-11-18T11:26:19.000+02:00","2026-04-22T05:21:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-ELA DYN,BDD-POS DYN,Workstation,Cloud Agent","339.0" +"238538628","269507760","SVP20953.sanef-int.adds","SVP20953","BC:0F:F3:87:6F:81","10.132.5.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLF","","'+02:00","2026-04-18T06:41:18.000+02:00","Superviseur","Cloud Agent","7100f7c1-31a8-437a-aeaf-3893bf186c99","2024-05-22T14:36:32.000+02:00","2026-04-22T10:47:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"363247793","346032421","PCV18677.sanef-int.adds","PCV18677","30:13:8B:6C:5D:DA","10.100.7.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","1","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.03.11","CZC44473VZ","","'+02:00","2026-04-21T20:59:09.000+02:00","Operateur","Cloud Agent","9e414193-643e-4baf-b948-f030fe717b0e","2025-09-26T11:53:57.000+02:00","2026-04-22T11:26:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"411592329","365726895","vrsigbmut1.sanef-rec.fr","","52:54:00:bf:a0:1b, 96:f8:7c:9a:18:68, 52:54:00:bc:ab:3d","10.45.15.68,192.168.16.24,192.168.17.6","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","16","","AMD EPYC 9J15 32-Core Processor","129433","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:24:33.000+02:00","oracle","Cloud Agent","b93c44c7-52f4-49e4-9b52-07b9e1540c98","2026-03-26T12:42:47.000+02:00","2026-04-22T10:35:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN,ENV-REC","339.0" +"231771998","259457241","ls-sommesous","LS-SOMMESOUS","00:50:56:90:8E:95","10.41.2.68","fe80::c1d0:b938:b930:fcb4","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 e4 ca d5 7a 6e 03-92 1b b4 b8 23 cf f8 a2","NoAssetTag","'+02:00","2026-03-03T11:03:55.000+02:00","svpadmin","Cloud Agent","06db774b-7d43-472d-95a7-2bbe387e6c44","2024-04-23T10:05:40.000+02:00","2026-04-22T05:17:37.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,High,VRF_PEAGE_DC,SVP,Production,Péage,Cloud Agent,Windows Server,OS-WIN-SRV DYN","681.0" +"231765205","259455748","ls-mont-choisy","LS-MONT-CHOISY","00:50:56:90:9A:50","10.41.2.69","fe80::7b15:1971:afea:21fd","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c3 43 42 0b d1 a3-d2 8d dc 6b 34 fe ee 56","NoAssetTag","'+02:00","2026-03-02T10:50:12.000+02:00","svpadmin","Cloud Agent","cc7d9a8d-56d3-4b37-ba36-cc2f6691aee1","2024-04-23T09:52:00.000+02:00","2026-04-22T10:56:55.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Windows Server,OS-WIN-SRV DYN,VRF_PEAGE_DC,High,Production,SVP,Péage","681.0" +"321595147","329101495","PCB21573.sanef.groupe","PCB21573","D0:AD:08:A3:E6:CA","10.13.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YR3","8CC3502YR3","'+02:00","2026-04-08T10:53:23.000+02:00","SANEF\maginot","Cloud Agent","703c9995-55ca-440b-bb40-d28bab7715af","2025-05-02T16:08:44.000+02:00","2026-04-22T10:37:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"201497726","244876565","vrtrabkme1.sanef-rec.fr","","00:50:56:9c:3f:de","10.45.10.66","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 25 ac b3 44 9b 92-e5 d1 d0 4c 93 54 c3 6a","No Asset Tag","'+02:00","2026-04-14T11:01:22.000+02:00","cybsecope","Cloud Agent","a7ed7b48-7fe5-4dda-b18c-f3fbe85dd2e0","2023-11-29T12:34:35.000+02:00","2026-04-22T10:43:01.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,Cloud Agent,Linux Server,MID-NGINX DYN,Masterparc,OS-LIN-SRV DYN","117.0" +"358895507","344328751","PCB24100.sanef.groupe","PCB24100","10:B6:76:95:8B:9C","10.5.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZYX","","'+02:00","2026-03-30T16:37:47.000+02:00","SANEF\MAQUA","Cloud Agent","65564a51-c6ae-4bec-ae29-0f8d4cb1690a","2025-09-11T15:14:16.000+02:00","2026-04-22T05:14:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","342.0" +"197783947","243071942","vplpeanvr1","VPLPEANVR1","00:50:56:82:55:21","10.117.1.11","fe80::7633:abf9:5270:5922","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 ad 78 7e 2a 0f 64-c8 d8 a4 89 f7 95 50 75","NoAssetTag","'+02:00","2026-03-03T12:45:31.000+02:00","Administrateur","Cloud Agent","639a0289-1c1f-410c-b2cb-8af9af17e58b","2023-11-07T10:38:22.000+02:00","2026-04-22T11:07:07.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,NVR,Production,Exploitation","508.0" +"233064565","260334859","ls-sarre-union","LS-SARRE-UNION","00:50:56:90:8D:38","10.41.2.110","fe80::30e8:b328:ded5:d2ba","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 10 c9 3e a1 ea 99 f1-7d 86 16 57 92 6d f2 49","NoAssetTag","'+02:00","2026-02-19T16:55:57.000+02:00","svpadmin","Cloud Agent","5e5d4d9f-586c-4965-ae72-37ae8062c61d","2024-04-29T12:09:25.000+02:00","2026-04-22T11:23:05.000+02:00","64-Bit","4","SCA,VM,PM,GAV","DEX,Production,Péage,VRF_PEAGE_DC,SVP,High,Cloud Agent,Windows Server,OS-WIN-SRV DYN","508.0" +"318390107","328027747","PCB23782.sanef.groupe","PCB23782","6C:0B:5E:EE:B3:76","10.100.39.173","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3L","","'+02:00","2026-03-30T07:58:53.000+02:00","SANEF\KHAYAT","Cloud Agent","152f89e8-61f4-4e9b-a36d-2f3987befc3a","2025-04-22T12:09:45.000+02:00","2026-04-22T05:01:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"372711388","349852385","PCB24347.sanef.groupe","PCB24347","00:72:EE:22:38:3C","10.255.3.194","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YGT","","'+02:00","2026-04-17T09:09:00.000+02:00","SANEF\TATINCLAUX","Cloud Agent","25c1afa9-17b2-4e44-8d14-3a3c96c32c1f","2025-10-29T15:44:14.000+02:00","2026-04-22T10:49:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"381250980","353498211","PCV21530.sanef-int.adds","PCV21530","D0:AD:08:A3:E7:21","10.6.69.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YXS","","'+02:00","2026-03-26T16:45:01.000+02:00","Operateur","Cloud Agent","6b905462-3c8c-46a4-a6ab-7ee047fec942","2025-12-03T12:30:26.000+02:00","2026-04-22T11:41:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"325208884","","PCB21564.sanef.groupe","PCB21564","D0:AD:08:A3:E7:96","10.11.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNR","","'+02:00","2026-03-29T09:12:59.000+02:00","SANEF\Fritsch","Cloud Agent","ee73e04e-6f4f-459f-8999-34d3bf98b9fc","2025-05-16T12:00:27.000+02:00","2026-04-22T04:51:04.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"184253385","235404733","vpcybapvwa1","VPCYBAPVWA1","00:50:56:82:E5:0D","10.44.1.100","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 7c 99 a8 fa c3 76-63 04 1a ad 2c fd 26 e7","NoAssetTag","'+02:00","2026-03-23T08:53:59.000+02:00","Administrator","Cloud Agent","f4f239dc-d14d-4f65-9a02-18b1766c79af","2023-08-24T10:03:44.000+02:00","2026-04-22T11:20:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,CyberArk,Cloud Agent,Windows Server","65.0" +"130331191","192654887","VPAIIAPVD3.sanef.groupe","VPAIIAPVD3","00:50:56:82:92:41","10.41.11.17","fe80::e4cf:2c5b:a84a:38c4","Windows / Client","Microsoft Windows 10 Enterprise (1809 Build 17763.1879) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 64 55 c9 8b 52 15-ff 81 11 b6 11 2f 8e 2a","NoAssetTag","'+02:00","2024-03-06T11:34:50.000+02:00","SANEF\durmarque","Cloud Agent","ffc413b5-0f5b-446e-8c12-63b9dbc55a18","2022-07-05T13:58:02.000+02:00","2026-04-22T10:59:22.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,Cloud Agent,Windows Server,DEX,VRF_INCONNUE,Workstation,Obsolete,Sans,Production,Exploitation","518.0" +"327322327","","PCB21557.sanef.groupe","PCB21557","D0:AD:08:A3:7B:46","10.6.30.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YS3","","'+02:00","2026-04-04T01:36:56.000+02:00","SANEF\talevi","Cloud Agent","8527a251-d3d8-4c2c-a9d7-0eac183177c0","2025-05-26T11:47:43.000+02:00","2026-04-22T04:35:55.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"338843133","","PCB21611.sanef.groupe","PCB21611","D0:AD:08:A4:4D:B2","10.152.31.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JX","","'+02:00","2026-04-07T16:28:48.000+02:00","yann.hamon@sanef.com","Cloud Agent","a3960e4a-1cd3-4d2e-aaed-6fe2d37eeeea","2025-07-03T11:51:36.000+02:00","2026-04-22T04:35:51.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"121411208","186536988","PCB16647.sanef.groupe","PCB16647","0A:00:27:00:00:06, 94:E7:0B:73:53:61","192.168.56.1,10.255.2.232","fe80::287b:9fb:1136:5f8f,fe80::a629:7a00:83a0:7ca3","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G7 Notebook","8","2208","Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz","7965","HP S70 Ver. 01.22.00","5CG05100FD","5CG05100FD","'+02:00","2026-04-20T09:40:03.000+02:00","SANEF\beauvaisa","Cloud Agent","b85bf81e-c2c2-4ff4-a31d-4face3d03b0f","2022-04-20T14:17:12.000+02:00","2026-04-22T11:23:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"301577270","321232921","SVP20968.sanef-int.adds","SVP20968","BC:0F:F3:87:6F:99","10.210.12.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.16.00","8CC3290LKX","","'+02:00","2026-04-16T03:38:43.000+02:00","Superviseur","Cloud Agent","e8040501-3f03-4a06-8b41-25805df84379","2025-02-20T13:08:04.000+02:00","2026-04-22T11:36:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"227451627","257015181","VRBURXBAN11.sanef.groupe","VRBURXBAN11","00:50:56:82:54:E4","10.30.4.11","fe80::f3d0:96a4:25a4:7642","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 e5 e1 09 47 63 33-5a 85 2c 81 26 ab dd c3","NoAssetTag","'+02:00","2025-11-20T12:36:32.000+02:00","","Cloud Agent","0c20d8a6-0a2e-4086-bd04-704647353b30","2024-04-04T10:32:48.000+02:00","2026-04-22T04:31:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,Recette","343.0" +"129356894","191964560","vpccyanvr1","VPCCYANVR1","00:50:56:82:2E:80","10.27.2.30","fe80::b2e3:2887:3663:d840","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 b1 21 e1 43 b5 28-77 5e 05 e4 71 48 e6 82","NoAssetTag","'+02:00","2026-02-02T15:37:35.000+02:00","Administrateur","Cloud Agent","ac6e349f-efd9-4e14-b65a-1dc68d4c8593","2022-06-27T18:29:19.000+02:00","2026-04-22T11:04:25.000+02:00","64-Bit","3","SCA,VM,PM,GAV","NVR,VRF_INCONNUE,Cloud Agent,Windows Server,OS-WIN-SRV DYN,Exploitation,Production,DEX","523.0" +"393977374","358867260","PCB18753.sanef.groupe","PCB18753","58:1C:F8:EB:6A:C2","10.205.0.23,192.168.1.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DR0","","'+02:00","2026-04-09T09:57:34.000+02:00","SANEF\WILLEMET-ext","Cloud Agent","92c60890-340d-4de8-952c-6f97d867e30c","2026-01-21T15:55:37.000+02:00","2026-04-22T11:29:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"353038704","341751495","PCB20708.sanef.groupe","PCB20708","58:1C:F8:E9:44:54","10.205.0.19,192.168.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DT3","","'+02:00","2026-04-15T15:43:43.000+02:00","SANEF\lombard","Cloud Agent","5903ba25-cc73-4fce-9221-0bb1fc5bb657","2025-08-20T11:37:12.000+02:00","2026-04-22T10:43:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"324997505","","PCB21263.sanef.groupe","PCB21263","D0:AD:08:1F:7E:D9","10.8.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3451GV0","","'+02:00","2026-03-29T09:12:37.000+02:00","SANEF\sins","Cloud Agent","3e9d7fbd-3de6-49f0-a009-466b2a143055","2025-05-15T14:04:52.000+02:00","2026-04-22T04:06:36.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"360126650","344907837","VMMSTLC1.sanef-int.adds","VMMSTLC1","00:50:56:90:22:EC","10.41.13.250","fe80::aeb4:5fbd:e0e0:980b","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3476) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 47 f2 70 13 fe 63-69 28 cf 0c dc fa 82 4c","NoAssetTag","'+02:00","2026-04-16T16:44:38.000+02:00","user_stl","Cloud Agent","a87ac8fa-f8d2-433d-8647-892b5561dcdd","2025-09-16T17:23:28.000+02:00","2026-04-22T04:04:39.000+02:00","64-Bit","2","SCA,VM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","343.0" +"340059665","","SVP22861.sanef-int.adds","SVP22861","D0:AD:08:A7:28:62","10.99.29.20","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045) 64-Bit","22H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM3","","'+02:00","2026-04-21T07:44:32.000+02:00","Superviseur","Cloud Agent","c37b9cbd-8f8a-4ded-bd14-3dc898ed5244","2025-07-08T09:33:04.000+02:00","2026-04-22T03:59:53.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"391641920","357934380","vmmvscdem2.sanef-int.adds","VMMVSCDEM2","00:50:56:90:E9:EE","10.41.7.236","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 2a eb a9 bb 3e b7-89 3b 12 0c 4d 51 1c 6f","NoAssetTag","'+02:00","2026-02-02T18:17:24.000+02:00","uservideo","Cloud Agent","56a4c2e4-5a00-4f51-b493-7a0814189fb8","2026-01-13T12:59:53.000+02:00","2026-04-22T03:55:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"346243488","339013461","PCB25846.sanef.groupe","PCB25846","28:95:29:22:6B:36","10.205.0.174,192.168.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CS6","","'+02:00","2026-04-21T15:42:14.000+02:00","mekki.boumediene@sanef.com","Cloud Agent","ad10cee0-84ac-4d28-8f3a-9e253a1bea79","2025-07-29T13:02:30.000+02:00","2026-04-22T11:24:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","256.0" +"323177560","329814989","PCB22889.sanef.groupe","PCB22889","D0:AD:08:A3:E7:8B","10.152.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMT","8CC3502YMT","'+02:00","2026-03-28T15:06:13.000+02:00","SANEF\roberte","Cloud Agent","a03e5e8f-9492-4206-9f5c-ee8cd1631f68","2025-05-09T13:33:07.000+02:00","2026-04-22T10:46:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"416076516","367729274","vrzbxbpgs2.sanef-rec.fr","","00:50:56:9c:c2:6c","10.45.15.203,10.45.15.202","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c e7 97 67 50 ba 06-33 b4 74 8a eb a1 79 91","No Asset Tag","'+02:00","2026-04-17T16:46:21.000+02:00","cybsecope","Cloud Agent","1246f772-6461-4ea3-a1b8-da1005acddb6","2026-04-15T17:05:41.000+02:00","2026-04-22T11:25:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","66.0" +"349463322","340006315","PCB25834.sanef.groupe","PCB25834","F8:ED:FC:AB:02:E0","10.5.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTF","","'+02:00","2026-04-17T05:27:04.000+02:00","SANEF\BREMEC","Cloud Agent","24c388c1-28c1-4668-9020-2877af637e6f","2025-08-06T12:05:03.000+02:00","2026-04-22T03:30:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"405482222","363237270","vmmgtcroic1.sanef-int.adds","VMMGTCROIC1","00:50:56:90:1F:15","10.41.19.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 6d 01 98 b5 fd 1a-cf 7d ee fd 80 1f c9 12","NoAssetTag","'+02:00","2026-04-02T13:41:53.000+02:00","admin_gtc","Cloud Agent","2d684e9f-3863-435b-9c4a-bd7c0eae23b2","2026-03-02T17:48:34.000+02:00","2026-04-22T03:29:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","343.0" +"359758271","","PCB24341.sanef.groupe","PCB24341","24:FB:E3:2C:57:A7","10.105.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YHK","","'+02:00","2026-04-21T09:10:09.000+02:00","SANEF\DUBOIS","Cloud Agent","8258b6af-0384-476c-81b9-e7efbcf3215b","2025-09-15T12:15:34.000+02:00","2026-04-22T03:29:40.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"334961695","","PCB24077.sanef.groupe","PCB24077","24:FB:E3:33:7B:5A","10.155.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5062RFS","","'+02:00","2026-04-16T09:06:26.000+02:00","olivier.priem@sanef.com","Cloud Agent","864d677f-110b-4f41-ab4f-8d34aac9f012","2025-06-20T12:31:35.000+02:00","2026-04-22T03:21:19.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325259667","","PCB21566.sanef.groupe","PCB21566","D0:AD:08:A3:7B:58","10.4.31.63","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWH","","'+02:00","2026-04-16T12:53:08.000+02:00","SANEF\garenne","Cloud Agent","079471c4-16fa-4f96-9ef7-a10b70cd6b89","2025-05-16T16:07:58.000+02:00","2026-04-22T03:14:56.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"391596617","357934379","vmmvsccad1.sanef-int.adds","VMMVSCCAD1","00:50:56:90:87:B2","10.41.7.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 b7 af 74 6d 89 6e-f6 e0 45 a7 c2 b9 b6 71","NoAssetTag","'+02:00","2026-02-02T18:21:00.000+02:00","uservideo","Cloud Agent","f8e700cc-4857-4fb9-b2b5-0014797f70aa","2026-01-13T13:00:48.000+02:00","2026-04-22T11:25:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"244019009","283240819","MTO21621.sanef.groupe","MTO21621","D0:AD:08:A4:4D:BE","10.1.31.9","fe80::abe8:f8ea:ca4f:19df","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5768) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711JR","","'+02:00","2025-09-15T18:21:36.000+02:00","SANEF\meteonewsW11","Cloud Agent","a4e6953a-1f40-478a-b58c-eddceea7e19c","2024-06-14T16:59:40.000+02:00","2026-04-22T11:10:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"327807405","","PCB23574.sanef.groupe","PCB23574","6C:0B:5E:ED:82:9B","10.207.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L48","","'+02:00","2026-04-02T14:17:04.000+02:00","SANEF\sananikone","Cloud Agent","90d79e0e-399d-4340-af32-5ed27619fc9a","2025-05-28T16:09:58.000+02:00","2026-04-22T02:54:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359788816","","PCB22274.sanef.groupe","PCB22274","D0:AD:08:A3:7B:EC","10.200.31.86","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YVC","","'+02:00","2026-04-21T12:39:53.000+02:00","SANEF\HAMMADIA","Cloud Agent","c136206c-bd57-4f7d-be7b-d262e8fbe133","2025-09-15T15:22:29.000+02:00","2026-04-22T02:42:57.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"330676210","","PCB18745.sanef.groupe","PCB18745","BC:0F:F3:3D:48:31","10.4.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRG","","'+02:00","2026-03-29T09:29:31.000+02:00","SANEF\BOUCHET","Cloud Agent","5f4a5600-b401-4f84-8600-9782f2a3123e","2025-06-04T09:48:57.000+02:00","2026-04-22T02:34:29.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360161243","344907838","VMMSTLC2.sanef-int.adds","VMMSTLC2","00:50:56:90:9E:6C","10.41.13.251","fe80::f59d:4025:d327:e4fd","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3476) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24224532.B64.2408191502","VMware-42 10 08 8f 61 de 2c 0a-55 cb c5 e8 b5 40 2b fa","NoAssetTag","'+02:00","2026-04-16T16:50:17.000+02:00","user_stl","Cloud Agent","935df1b1-ea19-42b1-bb3f-066ef1c3fd0d","2025-09-16T17:23:25.000+02:00","2026-04-22T11:34:43.000+02:00","64-Bit","2","SCA,VM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","341.0" +"283885210","","SVP22855.sanef-int.adds","SVP22855","D0:AD:08:A7:27:BE","10.12.20.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN1","","'+02:00","2026-03-30T07:36:08.000+02:00","Superviseur","Cloud Agent","a1dff75c-0e3f-4e86-8d3a-bf012a4125fe","2024-12-03T12:18:11.000+02:00","2026-04-22T02:28:28.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"336664466","","PCB24064.sanef.groupe","PCB24064","24:FB:E3:33:98:62","10.5.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437S","","'+02:00","2026-04-21T12:06:47.000+02:00","SANEF\louis","Cloud Agent","c50c383a-290a-47ea-bfba-3c52b2478916","2025-06-26T10:05:45.000+02:00","2026-04-22T02:20:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation,BDD-SQL DYN","0.0" +"331111297","","PCB21167.sanef.groupe","PCB21167","D0:AD:08:E4:A1:55","10.152.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HW5","","'+02:00","2026-04-21T08:13:06.000+02:00","SANEF\MARTEEL","Cloud Agent","4388dc05-a9d2-4d57-818c-984f7e1cba1d","2025-06-05T11:14:09.000+02:00","2026-04-22T02:17:11.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"339864900","","PCB17790.sanef.groupe","PCB17790","D0:AD:08:8A:70:A1","10.119.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y4Z","","'+02:00","2026-04-20T13:34:23.000+02:00","SANEF\muller","Cloud Agent","dc2de663-c3fb-45cb-b7c5-5efb7d4c9b89","2025-07-07T16:01:02.000+02:00","2026-04-22T02:10:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"331169666","","PCB17792.sanef.groupe","PCB17792","D0:AD:08:0C:6D:46","10.154.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y45","","'+02:00","2026-03-29T09:29:28.000+02:00","SANEF\dechaut","Cloud Agent","f869465d-d8ea-43bd-893f-d3a84d0ecc36","2025-06-05T15:25:08.000+02:00","2026-04-22T02:09:31.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"324122888","","PCB23769.sanef.groupe","PCB23769","6C:0B:5E:EE:93:79","10.5.30.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H52","","'+02:00","2026-04-21T11:08:50.000+02:00","SANEF\poitrey","Cloud Agent","45af13e3-874a-4c51-830e-b5d2c5174dea","2025-05-12T16:14:34.000+02:00","2026-04-22T02:06:31.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"326523065","","PCB23785.sanef.groupe","PCB23785","C8:6E:08:47:0B:CB","10.205.0.42,192.168.1.112","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H56","","'+02:00","2026-03-30T17:17:21.000+02:00","SANEF\laurain","Cloud Agent","b57c710b-38d4-4052-a732-fb61496863d4","2025-05-22T10:18:40.000+02:00","2026-04-22T01:45:02.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331166341","","PCB21169.sanef.groupe","PCB21169","D0:AD:08:E4:A1:FB","10.154.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.03.00","5CG3501HVH","","'+02:00","2026-03-29T09:29:07.000+02:00","SANEF\CHALUPKA","Cloud Agent","1859e024-bc6c-4588-aee0-9904a5da8607","2025-06-05T15:24:31.000+02:00","2026-04-22T01:30:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"329160327","","PCB21119.sanef.groupe","PCB21119","E4:60:17:C4:EC:8A","10.205.0.8,192.168.1.179","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KH","","'+02:00","2026-04-19T19:24:30.000+02:00","SANEF\gadel-ext","Cloud Agent","0b52fd4b-84ac-4057-9755-8d42751335fe","2025-06-02T12:46:08.000+02:00","2026-04-22T01:25:11.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"323151444","329793779","PCB21147.sanef.groupe","PCB21147","60:45:2E:11:63:7C","10.255.2.139","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YX9","8CC3502YX9","'+02:00","2026-04-21T16:53:14.000+02:00","SANEF\engels","Cloud Agent","98e8bdba-fbd1-420b-bfee-e245ef31d439","2025-05-09T09:33:45.000+02:00","2026-04-22T01:09:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","241.0" +"320081444","328610524","PCB23571.sanef.groupe","PCB23571","C8:6E:08:8A:45:4E","10.255.4.9,10.205.0.69","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBJ","","'+02:00","2026-04-16T15:28:48.000+02:00","SANEF\leleu","Cloud Agent","02ae72a5-0e99-432b-8b52-c8f5d95c1b0d","2025-04-28T11:57:01.000+02:00","2026-04-22T00:59:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"328645186","","PCB23700.sanef.groupe","PCB23700","6C:0B:5E:EE:B3:63","10.219.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9X","","'+02:00","2026-04-09T08:57:48.000+02:00","SANEF\anginot","Cloud Agent","685eb80e-18d8-4939-9b90-dedc9de58651","2025-05-30T15:12:47.000+02:00","2026-04-22T00:51:55.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325264423","","PCB21591.sanef.groupe","PCB21591","D0:AD:08:A7:27:D5","10.119.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YT1","","'+02:00","2026-04-16T09:22:54.000+02:00","SANEF\leichtweiss","Cloud Agent","66b962ce-1005-44f7-acdf-08aaaf85ca09","2025-05-16T16:07:25.000+02:00","2026-04-22T00:26:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"359163918","","PCB24190.sanef.groupe","PCB24190","30:E3:A4:D8:57:BB","10.255.4.168","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKC","","'+02:00","2026-04-20T08:13:58.000+02:00","SANEF\olivier","Cloud Agent","60286e9e-c53d-4040-a822-c75ef0af5821","2025-09-12T13:22:18.000+02:00","2026-04-22T00:08:16.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"417712350","368376307","PCB18740.sanef.groupe","PCB18740","58:1C:F8:EA:00:10","192.168.1.65","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQN","","'+02:00","2026-01-02T18:09:50.000+02:00","SANEF\vernichons","Cloud Agent","450bf56e-ac9b-4a9c-8bf4-a1028ebf6e44","2026-04-21T18:40:58.000+02:00","2026-04-21T23:59:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"325256015","","PCB23659.sanef.groupe","PCB23659","C8:6E:08:88:F0:D6","10.205.0.25,192.168.1.194","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBN","","'+02:00","2026-04-10T08:47:25.000+02:00","SANEF\pillonl","Cloud Agent","09aa9831-dda4-4bbb-a13b-d48475a8c2f8","2025-05-16T15:20:32.000+02:00","2026-04-21T23:58:20.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"350507290","340450970","PCB25782.sanef.groupe","PCB25782","28:95:29:1A:FF:04","10.205.0.54,192.168.1.170","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTR","","'+02:00","2026-04-20T23:23:06.000+02:00","SANEF\UNIMON","Cloud Agent","d2c2b8e1-05e3-4039-9981-965b2faee96d","2025-08-11T10:07:37.000+02:00","2026-04-22T11:07:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"325012405","","PCB21259.sanef.groupe","PCB21259","28:C5:D2:47:E6:3B","10.255.2.239","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3451GTZ","","'+02:00","2026-03-29T09:13:37.000+02:00","SANEF\arbeliny","Cloud Agent","7b2f7646-7130-423c-93fb-ad50c5a1c0b0","2025-05-15T14:03:10.000+02:00","2026-04-21T23:36:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360043291","","PCB18425.sanef.groupe","PCB18425","84:69:93:E1:8A:80","10.200.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724CQ","","'+02:00","2026-04-20T10:07:17.000+02:00","SANEF\Fontainea","Cloud Agent","35964981-aba7-4ac2-94af-0dfce26a5b39","2025-09-16T15:07:00.000+02:00","2026-04-21T23:09:14.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"359800633","","PCB24344.sanef.groupe","PCB24344","10:B6:76:95:8B:B9","10.100.39.92","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZV","","'+02:00","2026-04-17T13:09:22.000+02:00","SANEF\DECES","Cloud Agent","779723da-461d-4156-9ffb-eb42c25e4000","2025-09-15T16:11:01.000+02:00","2026-04-21T23:04:08.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"338852480","","PCB21579.sanef.groupe","PCB21579","D0:AD:08:A3:DD:F4","10.209.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNY","","'+02:00","2026-04-21T19:57:59.000+02:00","SANEF\STAVRACARIDIS","Cloud Agent","8e0f921c-9a1d-448b-867c-d5705e97eff8","2025-07-03T12:13:31.000+02:00","2026-04-21T23:03:36.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"358121472","344012773","PCB25787.sanef.groupe","PCB25787","28:95:29:1A:F1:8A","10.205.0.40,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV1","","'+02:00","2026-04-14T10:33:01.000+02:00","SANEF\merciere","Cloud Agent","a4dba6ce-920c-4b58-940c-2c04210ffda2","2025-09-09T11:40:38.000+02:00","2026-04-21T22:51:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"284462757","","MTR-8BD4804","MTR-8BD4804","6C:3C:8C:56:3B:78","10.220.32.200","fe80::121d:4314:1aff:7b0c","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","1","1400","12th Gen Intel(R) Core(TM) i7-12700T","16072","Dell Inc. 1.15.0","8BD4804","","'+02:00","2026-04-21T02:32:52.000+02:00","Skype","Cloud Agent","956e4ddb-d942-4b43-91d4-3d0ed7c04b39","2024-12-05T23:40:50.000+02:00","2026-04-21T22:50:42.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"350558324","340474645","PCB25773.sanef.groupe","PCB25773","28:95:29:22:6B:BD","10.205.0.192,192.168.1.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT4","","'+02:00","2026-04-21T13:31:18.000+02:00","pierre-antoine.picand@sanef.com","Cloud Agent","41fdc821-736f-4cbb-ae33-1928bd40cc35","2025-08-11T14:06:24.000+02:00","2026-04-21T22:50:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"327807308","","PCB23552.sanef.groupe","PCB23552","6C:0B:5E:EE:BC:90","10.203.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7N","","'+02:00","2026-03-31T08:00:59.000+02:00","SANEF\lefebvrejea","Cloud Agent","d29af462-384d-4ff3-ad28-10e235988077","2025-05-28T14:48:00.000+02:00","2026-04-21T22:48:51.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"342013503","337351895","PCB21113.sanef.groupe","PCB21113","E4:60:17:CA:30:73","10.205.0.146,192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M8","","'+02:00","2026-04-02T09:44:22.000+02:00","SANEF\PERELLO-ext","Cloud Agent","e69eaa69-a48e-459a-95d7-c8ea2f157eb8","2025-07-15T17:13:42.000+02:00","2026-04-22T10:14:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"285173835","","SVP22870.sanef-int.adds","SVP22870","D0:AD:08:A7:28:59","10.212.26.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM2","","'+02:00","2026-04-21T10:19:59.000+02:00","Superviseur","Cloud Agent","424de69c-7c31-4b77-a92c-342bed5816a9","2024-12-09T12:26:53.000+02:00","2026-04-21T22:43:08.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"359763318","","PCB24334.sanef.groupe","PCB24334","70:15:FB:7E:20:93","10.255.4.146","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ6","","'+02:00","2026-04-20T10:20:14.000+02:00","SANEF\KABACINSKI","Cloud Agent","75e9a299-0f50-4e27-97b8-6a3c72fb0c48","2025-09-15T13:13:33.000+02:00","2026-04-21T22:24:54.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"360038167","","PCB18750.sanef.groupe","PCB18750","BC:0F:F3:3D:78:4E","10.200.31.63","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRF","","'+02:00","2026-03-29T09:24:33.000+02:00","SANEF\Fontainea","Cloud Agent","4c30a243-3a78-405e-a84f-27513af49836","2025-09-16T13:52:13.000+02:00","2026-04-21T22:22:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"285257306","","SVP22854.sanef-int.adds","SVP22854","D0:AD:08:A7:27:BF","10.112.3.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN6","","'+02:00","2026-04-21T20:17:24.000+02:00","Superviseur","Cloud Agent","e85e6a8e-47a4-4626-8fa9-247d1fcbe00c","2024-12-09T16:12:24.000+02:00","2026-04-21T22:19:15.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"320991728","328907977","PCB23693.sanef.groupe","PCB23693","C8:6E:08:9D:99:73","10.205.0.45,10.255.2.184","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L40","","'+02:00","2026-04-15T18:43:52.000+02:00","SANEF\Deslandres","Cloud Agent","ca5cbeab-1e8d-4a8e-9c03-1c67db1b36aa","2025-04-30T15:03:04.000+02:00","2026-04-21T22:16:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"284376405","","SVP22862.sanef-int.adds","SVP22862","D0:AD:08:A7:28:67","10.112.1.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLP","","'+02:00","2026-04-19T11:01:36.000+02:00","Superviseur","Cloud Agent","569eca18-e056-4e90-befd-9cb753319ef3","2024-12-05T15:24:30.000+02:00","2026-04-21T22:15:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325726629","","SVP22360.sanef-int.adds","SVP22360","D0:AD:08:A7:28:6E","10.252.12.210","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLH","","'+02:00","2026-04-12T09:40:53.000+02:00","Superviseur","Cloud Agent","0e06365e-3781-4f47-bb30-51a55e3accc5","2025-05-19T14:35:21.000+02:00","2026-04-21T22:13:05.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"339175043","","PCB17776.sanef.groupe","PCB17776","28:C5:D2:9F:C3:D3","10.205.0.9,192.168.1.145","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3K","","'+02:00","2026-04-21T22:07:12.000+02:00","SANEF\TANGUIS","Cloud Agent","25c72e60-3c3a-445c-a562-631c0452265f","2025-07-04T15:47:05.000+02:00","2026-04-21T22:11:33.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331201820","","PCB21163.sanef.groupe","PCB21163","D0:AD:08:E4:91:DE","10.152.31.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HWK","","'+02:00","2026-04-20T09:19:24.000+02:00","SANEF\PODVIN","Cloud Agent","84263162-a07d-4adb-986f-60a530f6b1e4","2025-06-05T16:43:57.000+02:00","2026-04-21T22:08:26.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"282956067","","SVP22871.sanef-int.adds","SVP22871","D0:AD:08:A3:E7:A0","10.209.20.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMC","","'+02:00","2026-04-10T09:13:08.000+02:00","Superviseur","Cloud Agent","8b90776e-f602-40c3-82d7-eedb79b4faf7","2024-11-28T17:43:57.000+02:00","2026-04-21T22:04:12.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331430582","","PCB23531.sanef.groupe","PCB23531","6C:0B:5E:EE:A3:A0","10.206.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBV","","'+02:00","2026-03-30T15:13:38.000+02:00","SANEF\figueira","Cloud Agent","4f13042e-2455-4ab6-a617-46da91132bea","2025-06-06T14:34:10.000+02:00","2026-04-21T22:02:48.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"334658627","","PCB24160.sanef.groupe","PCB24160","24:FB:E3:F3:BA:97","10.1.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XQ","","'+02:00","2026-04-21T18:13:07.000+02:00","SANEF\sabos","Cloud Agent","570808f0-bde8-494f-ba39-4b99a19bb484","2025-06-19T10:38:46.000+02:00","2026-04-21T22:01:17.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"335451010","","PCB23516.sanef.groupe","PCB23516","6C:0B:5E:ED:92:A8","10.1.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7B","","'+02:00","2026-04-21T18:12:35.000+02:00","SANEF\laurent","Cloud Agent","d77ae0e8-0a20-4fb8-a783-8247dcfd6bf2","2025-06-23T09:49:34.000+02:00","2026-04-21T21:49:36.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"329894638","","PCB18092.sanef.groupe","PCB18092","64:D6:9A:27:BA:2D","10.255.1.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRC","","'+02:00","2026-03-29T09:21:06.000+02:00","SANEF\BLIDI-ext","Cloud Agent","fb6d527d-2f79-40b2-8ebe-fa158a9bb2d7","2025-06-03T16:04:54.000+02:00","2026-04-21T21:48:29.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"130334728","192655825","sptrabenr2.sanef.groupe","SPTRABENR2","08:F1:EA:7E:EC:1E, 08:F1:EA:7E:EC:1C","169.254.234.182,10.41.60.50","fe80::59c8:ff13:1ba5:eab6,fe80::fce1:8515:d0eb:82d6","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Computers / Server","HPE ProLiant DL360 G10 Server","8","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","16042","HPE U32","CZJ01203FR","","'+02:00","2026-02-24T14:43:25.000+02:00","Administrator","Cloud Agent","6e5d5728-cb92-43b7-8fff-b79dd6dea532","2022-07-05T14:17:39.000+02:00","2026-04-21T21:39:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,BDD-SQL DYN,Enregistrement_COM,VRF_BURO,OS-WIN-SRV DYN,DEX,Outils transverses,Cloud Agent,Windows Server","248.0" +"130352405","192669806","vppatalag1.sanef.groupe","VPPATALAG1","00:50:56:82:62:95","10.42.40.12","fe80::3db4:5b5f:1399:820d","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 cf b5 1a f4 7d ab-9b 68 a1 0e 19 64 91 c6","NoAssetTag","'+02:00","2026-01-22T11:23:05.000+02:00","Administrateur","Cloud Agent","32643ab7-6bf5-40dc-ab91-8430b2582c72","2022-07-05T16:56:59.000+02:00","2026-04-21T21:34:04.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,Production,Patrimoine,DFIN,OS-WIN-SRV DYN,VRF_PATRIMOINE_DC,Lago","494.0" +"282933324","","SVP22872.sanef-int.adds","SVP22872","D0:AD:08:A3:E7:90","10.209.20.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMR","","'+02:00","2026-04-17T08:54:44.000+02:00","Superviseur","Cloud Agent","d23b84ff-acc7-46bf-a4c5-eba8834b4f62","2024-11-28T16:30:57.000+02:00","2026-04-21T21:24:11.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"324115008","","PCB23789.sanef.groupe","PCB23789","6C:0B:5E:EE:93:E7","10.12.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2P","","'+02:00","2026-04-16T09:18:47.000+02:00","SANEF\ferri","Cloud Agent","5ea71a2b-c0d1-4f30-b2b8-c7f3abb007b3","2025-05-12T15:12:13.000+02:00","2026-04-21T21:22:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"335695704","","SVP20941.sanef-int.adds","SVP20941","BC:0F:F3:87:70:BD","10.100.20.103","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3290LN0","","'+02:00","2026-04-06T19:40:02.000+02:00","Superviseur","Cloud Agent","3817124d-ca8e-485e-90f7-3734cfbb748c","2025-06-23T16:25:39.000+02:00","2026-04-21T21:15:16.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"359755573","","PCB24343.sanef.groupe","PCB24343","00:72:EE:19:9A:15","10.255.3.184","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YJ1","","'+02:00","2026-04-20T09:04:48.000+02:00","SANEF\SAVREUX","Cloud Agent","efa735a1-ff99-4c31-82b5-bce508584e01","2025-09-15T12:49:55.000+02:00","2026-04-21T21:09:19.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","0.0" +"336736143","","PCB24089.sanef.groupe","PCB24089","24:FB:E3:33:98:56","10.100.39.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437D","","'+02:00","2026-04-13T13:25:06.000+02:00","SANEF\OPERON","Cloud Agent","b81c8bf5-679e-4c6f-886d-06d03f017d9b","2025-06-26T14:35:40.000+02:00","2026-04-21T21:07:18.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321588929","329099616","PCB23746.sanef.groupe","PCB23746","6C:0B:5E:EE:93:96","10.105.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3V","","'+02:00","2026-03-31T13:40:11.000+02:00","SANEF\fermaut","Cloud Agent","a3c7848f-8349-47f7-af24-08ee260c5288","2025-05-02T15:51:56.000+02:00","2026-04-21T21:00:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"327322734","","PCB17793.sanef.groupe","PCB17793","28:C5:D2:9F:C3:B5","192.168.1.150,10.205.0.89","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4M","","'+02:00","2026-03-05T12:27:35.000+02:00","SANEF\PECQUEUXM","Cloud Agent","f572b71d-52fd-4e52-8482-04aae5ca685a","2025-05-26T11:46:43.000+02:00","2026-04-21T20:52:24.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"335895691","","PCB24184.sanef.groupe","PCB24184","EC:4C:8C:27:52:86","10.205.0.141,192.168.1.35","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG45107MS","","'+02:00","2026-04-13T11:38:45.000+02:00","SANEF\CRONEL","Cloud Agent","64da7f70-3cb3-4460-8a0c-4b9c2c871d56","2025-06-24T09:54:16.000+02:00","2026-04-21T20:49:23.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"129931412","192382510","vmampgis5.sanef.groupe","VMAMPGIS5","00:50:56:82:33:54","10.41.40.109","fe80::f56c:5a1a:5877:598c","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","98303","Phoenix Technologies LTD 6.00","VMware-42 02 9f 53 80 5d 8e 64-cd a1 e3 76 9b 0b bc 91","NoAssetTag","'+02:00","2025-10-09T09:55:01.000+02:00","VMAMPGIS5\CYBASTAPP","Cloud Agent","e6022e2a-829f-4758-ae5c-dfb45af1c669","2022-07-01T09:01:19.000+02:00","2026-04-21T20:43:12.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Obsolete,Production,Patrimoine,OS-WIN-SRV DYN,Cloud Agent,Windows Server,DEX,VRF_INCONNUE,SIG","517.0" +"325249200","","PCB21545.sanef.groupe","PCB21545","D0:AD:08:A3:7C:C3","10.103.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYB","","'+02:00","2026-03-29T09:11:58.000+02:00","SANEF\machin","Cloud Agent","d3761107-1181-4b07-9a9b-ada07dc48ece","2025-05-16T14:17:10.000+02:00","2026-04-21T20:40:59.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"334679543","","PCB24157.sanef.groupe","PCB24157","24:FB:E3:F3:0A:B0","10.106.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136X7","","'+02:00","2026-04-09T19:07:33.000+02:00","SANEF\noyelle","Cloud Agent","7c4dd612-135f-4440-8239-5fe11d924c3d","2025-06-19T11:33:59.000+02:00","2026-04-21T20:38:56.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"338615879","","PCB21509.sanef.groupe","PCB21509","D0:AD:08:A3:7B:75","10.6.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YV9","","'+02:00","2026-03-28T09:11:55.000+02:00","SANEF\renarde","Cloud Agent","3895c740-e58a-47e0-b095-34c11d3bc843","2025-07-02T16:35:27.000+02:00","2026-04-21T20:37:49.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359736670","","PCB24214.sanef.groupe","PCB24214","10:B6:76:95:8B:A3","10.105.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ4","","'+02:00","2026-04-17T07:03:09.000+02:00","SANEF\BROIE","Cloud Agent","cfc6222c-743b-4a97-b7b4-40fe5c9c14e1","2025-09-15T10:15:41.000+02:00","2026-04-21T20:34:12.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"325249298","","PCB21562.sanef.groupe","PCB21562","D0:AD:08:A7:28:17","10.6.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK1","","'+02:00","2026-03-28T09:11:38.000+02:00","SANEF\fegueux","Cloud Agent","36342dd2-053c-4f32-890e-06f4d56b0b7e","2025-05-16T15:29:29.000+02:00","2026-04-21T20:34:09.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"395329408","359415554","PCB21022.sanef.groupe","PCB21022","E0:C2:64:5A:12:57","10.205.0.39,192.168.1.128","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD336NWDY","","'+02:00","2026-04-17T14:33:29.000+02:00","SANEF\aitalla-ext","Cloud Agent","757afaf1-069f-4725-a960-0c092ef46dd8","2026-01-27T14:32:08.000+02:00","2026-04-21T20:29:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"334700474","","PCB24085.sanef.groupe","PCB24085","24:FB:E3:33:98:64","10.155.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437V","","'+02:00","2026-04-20T09:24:18.000+02:00","SANEF\DAILLY","Cloud Agent","0b0de950-8805-45fa-ac5e-37e7edf05e8f","2025-06-19T12:39:52.000+02:00","2026-04-21T20:25:20.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"326211679","","PCB20644.sanef.groupe","PCB20644","BC:0F:F3:3D:58:F6","10.100.39.153","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2S","","'+02:00","2026-03-30T08:17:57.000+02:00","SANEF\DOYENS","Cloud Agent","573bf3ca-2a1c-4492-97d7-dcbad369aac3","2025-05-21T11:34:42.000+02:00","2026-04-21T20:22:34.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"388069108","356869857","PCB21126.sanef.groupe","PCB21126","E4:60:17:CA:3F:A5","10.205.0.13,10.255.4.153","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MJ","","'+02:00","2026-04-10T14:00:15.000+02:00","SANEF\INTHIRAPIRATHAPAN-ex","Cloud Agent","ef5d8582-3334-4b37-8e68-fa7e9c9823bf","2026-01-05T10:53:25.000+02:00","2026-04-22T11:15:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","61.0" +"331417841","","PCB23604.sanef.groupe","PCB23604","6C:0B:5E:EE:EC:71","10.209.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5B","","'+02:00","2026-04-08T09:02:52.000+02:00","jeremy.legay@sapn.fr","Cloud Agent","be7b92e6-7ba1-4328-bcfb-1c8026104782","2025-06-06T12:10:45.000+02:00","2026-04-21T20:07:24.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"338797464","","PCB22925.sanef.groupe","PCB22925","60:45:2E:0F:4C:CC","10.255.1.162","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN0","","'+02:00","2026-04-09T13:12:18.000+02:00","SANEF\schmidtf","Cloud Agent","c9b18523-087e-4911-b949-f6aebcc06401","2025-07-03T09:26:43.000+02:00","2026-04-21T20:05:05.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"329929192","","PCB24038.sanef.groupe","PCB24038","6C:0B:5E:F8:C8:D9","10.152.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDQ","","'+02:00","2026-03-28T09:27:25.000+02:00","david.sutra@sanef.com","Cloud Agent","d9be6436-1631-4d04-8e69-7991a8c7e13a","2025-06-03T17:56:56.000+02:00","2026-04-21T20:00:57.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325192331","","PCB21260.sanef.groupe","PCB21260","D0:AD:08:1F:7E:D6","10.155.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3451GV4","","'+02:00","2026-03-28T09:13:50.000+02:00","SANEF\DELAHAYEF","Cloud Agent","a4cde89e-3b87-4823-b84e-0f976bf554f6","2025-05-16T10:49:06.000+02:00","2026-04-21T19:54:28.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"338840609","","PCB21529.sanef.groupe","PCB21529","D0:AD:08:A3:E7:35","10.13.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YTH","","'+02:00","2026-04-08T10:16:39.000+02:00","jimmy.winterstein@sanef.com","Cloud Agent","6521d336-82a5-48e5-9008-c1e08cb76aa9","2025-07-03T11:03:38.000+02:00","2026-04-21T19:50:37.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"304657276","322542154","PCB21173.sanef.groupe","PCB21173","F0:20:FF:9B:09:56","10.107.31.36,10.255.4.143","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVX","","'+02:00","2026-04-14T13:39:09.000+02:00","SANEF\DELCLUSE","Cloud Agent","aca71b5a-fac1-4848-acd4-daae09d89680","2025-03-03T16:09:32.000+02:00","2026-04-21T19:43:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"359766551","","PCB24339.sanef.groupe","PCB24339","10:B6:76:95:8B:BD","10.155.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZZ","","'+02:00","2026-03-29T09:31:22.000+02:00","SANEF\GUERINL","Cloud Agent","867ed38c-d235-42f9-a013-791da957dfc4","2025-09-15T13:56:59.000+02:00","2026-04-21T19:42:13.000+02:00","64-Bit","2","PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","0.0" +"129321325","191935628","VPBIPBDEC1.sanef.groupe","VPBIPBDEC1","00:50:56:82:D7:74","10.30.11.21","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8868) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 fc 45 8f 89 e4 ab-43 62 c6 2b 84 0b f6 e9","NoAssetTag","'+02:00","2026-02-25T12:07:22.000+02:00","CYBADMSYS","Cloud Agent","2c6d3afd-ab91-4edf-8ac7-b6db6033d6eb","2022-06-27T12:21:46.000+02:00","2026-04-21T19:41:55.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DFIN,Production,VRF_INCONNUE,Gestion commerciale,OS-WIN-SRV DYN,INSIDE,BDD-SQL DYN,Cloud Agent,Windows Server","377.0" +"323998861","","PCB22336.sanef.groupe","PCB22336","D0:AD:08:A7:27:BC","10.203.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YN9","","'+02:00","2026-03-28T09:11:50.000+02:00","SANEF\martinst","Cloud Agent","9a799842-82d3-48c7-bcc0-a34c52d85d21","2025-05-12T10:10:10.000+02:00","2026-04-21T19:36:59.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"359736472","","PCB24194.sanef.groupe","PCB24194","10:B6:76:97:D4:B3","10.100.39.102","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKB","","'+02:00","2026-04-21T17:24:19.000+02:00","SANEF\OLIVIERD","Cloud Agent","f68876f8-cb16-4423-89ca-f94322ca191f","2025-09-15T10:15:19.000+02:00","2026-04-21T19:36:11.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"324951257","","vmm_stl_01.sanef-int.adds","VMM_STL_01","00:50:56:90:B6:33","10.41.13.60","fe80::586f:1819:ecc4:ae02","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 10 6e 18 74 4b 30 5b-2a 7a 00 d6 f6 2f 4c f0","","'+02:00","2026-04-20T15:52:26.000+02:00","user_stl","Cloud Agent","9f11d720-ec0e-4e70-b301-cae8acf91889","2025-05-15T09:48:19.000+02:00","2026-04-21T19:24:12.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129338219","191946583","vpsimasvp1.sanef.groupe","VPSIMASVP1","00:50:56:82:B1:87","10.30.10.50","fe80::317e:1a7d:4f7f:84dc","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 9e 50 f5 1b 46 c4-a5 51 1a f8 01 5e a2 29","NoAssetTag","'+02:00","2026-03-30T11:16:26.000+02:00","gare","Cloud Agent","9586f897-8d2b-493a-b0af-55e0fcab2d4a","2022-06-27T14:30:03.000+02:00","2026-04-21T19:21:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Production,Péage,Cloud Agent,Windows Server,Flux Libre,FreeFlow,OS-WIN-SRV DYN,VRF_INCONNUE","245.0" +"322391978","329448028","PCB23616.sanef.groupe","PCB23616","C8:6E:08:89:0A:94","10.205.0.16,192.168.1.61","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB8","","'+02:00","2026-03-30T10:28:51.000+02:00","SANEF\ADONELPIERRE","Cloud Agent","922ee46e-efc4-43e1-9795-926a8c6dd2ac","2025-05-06T13:49:23.000+02:00","2026-04-21T19:02:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"325921598","","PCB18626.sanef.groupe","PCB18626","38:CA:84:DB:E6:99","10.4.31.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WCX","","'+02:00","2026-04-17T12:25:31.000+02:00","SANEF\perrin","Cloud Agent","e7291bb7-430a-4b0f-ab83-4592aa692148","2025-05-20T10:11:07.000+02:00","2026-04-21T19:00:51.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"356270805","343238244","PCB21108.sanef.groupe","PCB21108","E4:60:17:CB:E7:10","10.205.0.123,192.168.8.235","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764F5","","'+02:00","2026-04-15T12:26:13.000+02:00","SANEF\CISSE-ext","Cloud Agent","8dae42fd-d993-4d05-a952-27f22831d254","2025-09-02T10:30:28.000+02:00","2026-04-22T11:41:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"350546202","340471771","PCB21201.sanef.groupe","PCB21201","D0:AD:08:AA:4F:D9","10.220.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764DL","","'+02:00","2026-04-01T08:35:20.000+02:00","SANEF\brevers","Cloud Agent","ebc6e2f0-2a2a-4f1d-ab25-f92e276f573f","2025-08-11T13:45:54.000+02:00","2026-04-22T10:59:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"353084340","341836668","PCB21091.sanef.groupe","PCB21091","E4:60:17:CA:2F:5B","192.168.1.189,10.205.0.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764N1","","'+02:00","2026-04-14T12:18:21.000+02:00","SANEF\MOTIKABEKA-ext","Cloud Agent","b898b5cf-d938-4c4c-90b2-cd721a923134","2025-08-20T15:06:15.000+02:00","2026-04-22T11:02:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"323979817","","PCB22282.sanef.groupe","PCB22282","D0:AD:08:A3:7C:B9","10.202.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYP","","'+02:00","2026-03-29T09:12:17.000+02:00","SANEF\lejolliot","Cloud Agent","26510fa6-cc9e-4031-9e07-88111417ef4f","2025-05-12T08:44:43.000+02:00","2026-04-21T18:32:02.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"322389621","329448864","PCB23565.sanef.groupe","PCB23565","C8:6E:08:88:E9:7E","10.205.0.28,192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4K","","'+02:00","2026-03-30T10:15:58.000+02:00","SANEF\COIMBRA","Cloud Agent","87fd4865-8227-48e2-b090-b9391a98f567","2025-05-06T14:01:25.000+02:00","2026-04-22T10:52:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"112571174","180426829","VPAIIAADM1.sanef.groupe","VPAIIAADM1","00:50:56:82:9B:96","10.30.10.132","fe80::6542:cbe6:a00b:f705","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-42 02 9e c9 bd 90 89 4c-51 64 bb 55 ef 4e 35 d5","NoAssetTag","'+02:00","2026-01-27T15:44:10.000+02:00","SANEF.GROUPE\lraad@sanef","Cloud Agent","4775eb0a-27b9-4a9e-8efc-ae93d8135e13","2022-02-07T11:30:07.000+02:00","2026-04-21T18:05:24.000+02:00","64-Bit","5","SCA,VM,PM,GAV","Cloud Agent,DSI,VRF_INCONNUE,OS-WIN-SRV DYN,High,Outils prod (Monitoring, NMS, gestion de parc),Production,Windows Server,AD,Haute","866.0" +"321039922","328917340","PCB24016.sanef.groupe","PCB24016","44:A3:BB:95:CE:32","10.255.2.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","Dell Latitude 7350 Notebook","14","1700","Intel(R) Core(TM) Ultra 7 165U","32213","Dell Inc. 1.13.0","75VTX64","","'+02:00","2026-04-20T13:39:51.000+02:00","jean-Eudes.birgy@sanef.com","Cloud Agent","d2b9a10d-efac-41da-a119-19b280a523fb","2025-04-30T16:26:26.000+02:00","2026-04-22T11:23:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"360521279","344990438","PCB21624.sanef.groupe","PCB21624","28:C5:D2:83:1A:E9","10.4.31.18,10.255.4.139","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K8","8CC34711K8","'+02:00","2026-04-16T13:19:40.000+02:00","SANEF\copin","Cloud Agent","d426ecef-aa79-4d7c-940a-65bf053dc890","2025-09-17T14:53:41.000+02:00","2026-04-21T17:53:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"398226015","360576954","PCB23677.sanef.groupe","PCB23677","C8:6E:08:89:0A:8A","192.168.1.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7L","","'+02:00","2026-04-20T15:39:07.000+02:00","SANEF\MANTELET","Cloud Agent","28d68b3f-e946-4020-a00a-562e954b1b8f","2026-02-06T11:47:29.000+02:00","2026-04-22T11:04:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"323985060","","PCB22326.sanef.groupe","PCB22326","60:45:2E:0F:74:F4","10.255.1.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYJ","","'+02:00","2026-03-28T09:11:30.000+02:00","SANEF\henry","Cloud Agent","6671b0f9-e9bb-432a-92e8-ae810f544f6e","2025-05-12T09:35:20.000+02:00","2026-04-21T17:47:37.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"359154690","","PCB24219.sanef.groupe","PCB24219","10:B6:76:95:8B:93","10.5.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYM","","'+02:00","2026-04-15T17:50:02.000+02:00","SANEF\friedmann","Cloud Agent","b5810970-3dd6-4f6b-ab68-1458510e6649","2025-09-12T12:03:47.000+02:00","2026-04-21T17:47:31.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"325247657","","PCB21592.sanef.groupe","PCB21592","D0:AD:08:A3:E6:B0","10.89.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YMJ","","'+02:00","2026-04-17T04:09:36.000+02:00","SANEF\garbe","Cloud Agent","5c9595f0-291c-4f82-9b8f-56e767e8dab3","2025-05-16T14:46:06.000+02:00","2026-04-21T17:47:16.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"374966006","350891080","PCB22466.sanef.groupe","PCB22466","00:E0:4C:78:68:07","10.255.4.234,192.168.1.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVY","","'+02:00","2026-04-16T09:30:32.000+02:00","SANEF\COSIALLS","Cloud Agent","0424fbb1-4a17-4719-80f5-712122b9faac","2025-11-07T16:02:33.000+02:00","2026-04-22T11:26:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"129931160","192382347","vmampgis1.sanef.groupe","VMAMPGIS1","00:50:56:82:2A:8E","10.41.40.105","fe80::4f:a480:d4b:ecd6","Windows / Server","Microsoft Windows Server 2012 R2 Standard (6.3 Build 9600.21620) 64-Bit","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 b8 a9 91 9a b2 d0-7d 12 a6 32 f8 82 ab 72","NoAssetTag","'+02:00","2025-07-08T12:53:05.000+02:00","VMAMPGIS1\CYBEXPAPP","Cloud Agent","cb62c0e3-f448-4bff-8b86-5419d7eab4c1","2022-07-01T08:56:23.000+02:00","2026-04-21T17:37:14.000+02:00","64-Bit","3","SCA,VM,PM,GAV","VRF_TRAFIC_DC,Cloud Agent,Windows Server,Patrimoine,Production,GIS,Obsolete,DEX,OS-WIN-SRV DYN","518.0" +"325710464","","PCB18054.sanef.groupe","PCB18054","64:D6:9A:1D:39:40","10.205.0.126,10.140.40.106","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRF","","'+02:00","2026-04-21T16:39:01.000+02:00","SANEF\morales","Cloud Agent","a5e86636-8786-4299-be38-334267c56b2a","2025-05-19T13:56:48.000+02:00","2026-04-21T17:36:13.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"129338620","191947640","vdtrabtpa1.sanef.groupe","VDTRABTPA1","00:50:56:9C:5B:C9","10.45.13.35","","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","32767","Phoenix Technologies LTD 6.00","VMware-42 1c 09 a4 ac d8 b8 c9-a2 00 97 5a 8d 90 50 a7","NoAssetTag","'+02:00","2026-04-21T11:17:52.000+02:00","recette.adds\SBP01862@recette","Cloud Agent","0f9625d4-8cd6-43b1-b27a-ad0d2edda323","2022-06-27T14:44:19.000+02:00","2026-04-21T17:32:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Temps de parcours,Recette,Cloud Agent,Windows Server,BDD-SQL DYN,BDD-POS DYN,Production,Trafic,VRF_INCONNUE,OS-WIN-SRV DYN,DEX","351.0" +"326853850","","PCB23665.sanef.groupe","PCB23665","C8:6E:08:88:F0:AE","192.168.1.64","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBK","","'+02:00","2026-04-16T17:47:20.000+02:00","SANEF\SINEYEN","Cloud Agent","f5747a5d-af45-4a3a-a34c-c6f9a0a26efc","2025-05-23T14:59:16.000+02:00","2026-04-21T17:24:59.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"325177105","","PCB21258.sanef.groupe","PCB21258","D0:AD:08:1F:7E:E0","10.3.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3451GTW","","'+02:00","2026-03-29T09:13:10.000+02:00","SANEF\sauveur","Cloud Agent","82d03cf9-41da-4c05-a1cd-56632bac3a46","2025-05-16T09:26:58.000+02:00","2026-04-21T17:24:07.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"343106717","337781595","PCB18029.sanef.groupe","PCB18029","64:D6:9A:1D:39:8B","10.205.0.59,192.168.1.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","32048","HP T39 Ver. 01.12.00","5CG2376HTV","","'+02:00","2026-04-20T09:26:51.000+02:00","SANEF\BENTMOHAMED","Cloud Agent","aea44bfd-8d20-45f7-a116-409a0f56733d","2025-07-18T12:34:41.000+02:00","2026-04-22T11:22:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"176933488","230363928","PCB20673.sanef.groupe","PCB20673","58:1C:F8:E8:E9:37","10.205.0.38,192.168.0.68","2a01:e0a:f9b:43e0:4c20:f2b1:3eef:22db,2a01:e0a:f9b:43e0:6326:2a46:3dc:9387,fe80::c81d:f708:302:81f0","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.12.00","5CG3224DRH","","'+02:00","2026-04-20T08:30:24.000+02:00","SANEF\mlanhoro-ext","Cloud Agent","72a5ccb5-e371-4011-a3bc-4119d383eaee","2023-07-03T15:22:29.000+02:00","2026-04-21T17:20:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"331154160","","PCB17772.sanef.groupe","PCB17772","D0:AD:08:8A:40:B3","10.154.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y51","","'+02:00","2026-04-21T06:54:48.000+02:00","SANEF\MONDON","Cloud Agent","f45e5ac7-005f-46e8-be5b-6f9a303cb9e5","2025-06-05T15:14:03.000+02:00","2026-04-21T17:14:25.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"362035818","345541527","PCB24063.sanef.groupe","PCB24063","10:B6:76:93:FA:D6","10.200.31.53","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YJD","","'+02:00","2026-04-21T13:40:54.000+02:00","SANEF\taron","Cloud Agent","37682fd5-148b-473c-8ef5-3a0dc148198b","2025-09-22T16:07:20.000+02:00","2026-04-21T17:05:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","333.0" +"359724016","","PCB24101.sanef.groupe","PCB24101","10:B6:76:7E:4E:70","10.152.31.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZYV","","'+02:00","2026-04-09T11:22:13.000+02:00","SANEF\duboisl","Cloud Agent","39e81189-55bc-492b-9e2a-4698d8b8f39f","2025-09-15T10:29:54.000+02:00","2026-04-21T16:46:44.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"338810406","","PCB21630.sanef.groupe","PCB21630","D0:AD:08:A7:28:47","10.100.39.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPF","","'+02:00","2026-04-21T04:54:17.000+02:00","SANEF\dast","Cloud Agent","fcd456a3-9cb5-443b-9dad-6baf5897113b","2025-07-03T09:53:44.000+02:00","2026-04-22T11:10:47.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"324727578","","PCB23784.sanef.groupe","PCB23784","C8:6E:08:47:8B:E6","10.205.0.229,192.168.1.112","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460H2G","","'+02:00","2026-03-19T19:04:13.000+02:00","SANEF\cremmer","Cloud Agent","152050a2-f1ef-4e0c-a282-0fc2b68e13c0","2025-05-14T16:50:54.000+02:00","2026-04-22T11:09:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"319338194","328389749","PCB22844.sanef.groupe","PCB22844","D0:AD:08:A3:E6:DD","10.103.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQD","8CC3502YQD","'+02:00","2026-04-13T14:58:49.000+02:00","SANEF\GOUILLART","Cloud Agent","03ba71ea-9945-4f87-a158-8cb575bb6c95","2025-04-25T10:07:49.000+02:00","2026-04-21T16:40:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"384865532","355201208","PCB17898.sanef.groupe","PCB17898","84:69:93:E1:1A:79","10.100.39.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG217247Q","","'+02:00","2026-03-29T09:24:11.000+02:00","SANEF\MYG","Cloud Agent","f8d72851-6875-4b33-b0e3-411dc61f68a1","2025-12-18T18:05:34.000+02:00","2026-04-21T16:30:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"368408453","348126955","PCB21707.sanef.groupe","PCB21707","E4:60:17:C7:30:CB","10.205.0.138,192.168.1.97","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HQ","","'+02:00","2026-04-20T08:56:24.000+02:00","SANEF\bardyn","Cloud Agent","82217fb0-dc5d-4b10-957d-d6075389b45a","2025-10-14T13:35:10.000+02:00","2026-04-21T16:23:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"335442432","","PCB24128.sanef.groupe","PCB24128","48:EA:62:C8:93:66","10.1.30.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V66","","'+02:00","2026-03-29T09:26:09.000+02:00","SANEF\brutin","Cloud Agent","8d19429c-39c4-41fc-8666-112158822a12","2025-06-23T09:41:07.000+02:00","2026-04-21T16:22:44.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"411140383","365535323","PCB21021.sanef.groupe","PCB21021","E0-C2-64-59-C9-C9, E0-C2-64-59-C9-C8, E0-C2-64-59-C9-CC, 64-4E-D7-9E-C4-AC","10.205.0.118","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623)","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","","","15568","","5CD336NWF8","","'+01:00","2026-04-17T11:54:32.000+02:00","","Cloud Agent","e10fbe4a-4e9b-4765-9146-98b8238e1d9a","2026-03-24T17:27:18.000+02:00","2026-04-21T16:21:34.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"297160954","318473020","PCB22967.sanef.groupe","PCB22967","6C:0B:5E:7C:2C:33","10.255.3.161,10.100.39.45","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","15804","HP W74 Ver. 01.08.01","5CD4438W6B","","'+02:00","2026-04-15T18:14:48.000+02:00","SANEF\TRON","Cloud Agent","759041c2-0d99-4026-9528-f35532ba0b91","2025-02-03T14:00:40.000+02:00","2026-04-21T16:18:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"360047595","","PCB24337.sanef.groupe","PCB24337","10:B6:76:95:8B:8D","10.155.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYF","","'+02:00","2026-04-21T16:09:56.000+02:00","SANEF\LAMBERTF","Cloud Agent","d44d5c2a-9c17-47ff-912b-569e69027db4","2025-09-16T14:24:53.000+02:00","2026-04-21T16:13:08.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"329726746","","MTR-4PXF2L3","MTR-4PXF2L3","A4:BB:6D:90:A7:7D","10.101.246.205","fe80::69c2:8e55:a1f0:817e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","1","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.37.0","4PXF2L3","","'+02:00","2026-04-21T02:32:52.000+02:00","Skype","Cloud Agent","4c0ea620-c7de-4ff6-9c81-26507a4d20bb","2025-06-03T10:38:40.000+02:00","2026-04-22T10:30:58.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360008000","","PCB24323.sanef.groupe","PCB24323","70:15:FB:7E:45:19","10.255.1.133","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYW","","'+02:00","2026-04-13T16:05:58.000+02:00","SANEF\COPINA","Cloud Agent","1ad67e90-6e28-4b9c-a95a-98a7a58ba1ca","2025-09-16T11:39:21.000+02:00","2026-04-21T15:58:20.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"391025304","357791638","PCB22525.sanef.groupe","PCB22525","D0:AD:08:AA:50:24","10.107.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H0","","'+02:00","2026-04-06T10:26:05.000+02:00","SANEF\deboffle","Cloud Agent","1175b71e-1fef-4716-8c78-e9d40f4a6175","2026-01-12T09:21:15.000+02:00","2026-04-21T15:53:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"353328564","341963092","PCB20819.sanef.groupe","PCB20819","C8:6E:08:48:DC:F3","10.205.0.156,192.168.1.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2S","","'+02:00","2026-03-31T09:10:27.000+02:00","Jean-philippe.weil@sanef.com","Cloud Agent","1fe7ea73-d55d-452d-bfa6-2fad0b248a39","2025-08-21T14:21:29.000+02:00","2026-04-22T11:48:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"410510148","365364107","PCB24107.sanef.groupe","PCB24107","C8:58:B3:01:DD:3A","10.205.0.35,10.255.2.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6N","","'+02:00","2026-04-01T14:30:20.000+02:00","SANEF\lerouxf","Cloud Agent","a37be413-c8e3-4dcf-80a0-066b68062dcd","2026-03-23T11:12:50.000+02:00","2026-04-21T15:34:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"361944196","345508658","PCB24246.sanef.groupe","PCB24246","0A:00:27:00:00:13, 24:FB:E3:BE:98:EB","10.255.4.232,169.254.155.138,10.10.6.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M5Y","","'+02:00","2026-04-21T11:39:05.000+02:00","SANEF\LERICHE","Cloud Agent","3e9770c8-692a-442a-a9ba-86c2df6ed1cb","2025-09-22T11:07:02.000+02:00","2026-04-21T15:31:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","346.0" +"408858542","364702778","PCB21122.sanef.groupe","PCB21122","E4:60:17:CB:E6:57","10.205.0.73,192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764G5","","'+02:00","2026-04-09T14:56:34.000+02:00","SANEF\MOUSSAO-ext","Cloud Agent","6f3dde22-38f1-4c5e-8fb2-e307f13d1a97","2026-03-16T18:53:35.000+02:00","2026-04-22T10:52:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"370154243","348776267","PCB21316.sanef.groupe","PCB21316","E4:60:17:CA:41:49","10.205.0.100,10.7.11.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MH","","'+02:00","2026-03-31T19:27:13.000+02:00","SANEF\FARDILHA-ext","Cloud Agent","63c2aea4-060e-496b-a3ef-723f63f3eafd","2025-10-20T12:30:49.000+02:00","2026-04-22T11:45:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"281057287","305771552","PCB21350.sanef.groupe","PCB21350","D0:AD:08:AA:50:1A","10.202.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GP","","'+02:00","2026-04-01T13:07:46.000+02:00","SANEF\leduct","Cloud Agent","6eddf546-28ec-4d3d-be87-5de013947089","2024-11-21T16:15:40.000+02:00","2026-04-21T15:24:12.000+02:00","64-Bit","2","SCA,PM,GAV","Workstation,Cloud Agent","0.0" +"343644727","338034384","PCB20711.sanef.groupe","PCB20711","58:1C:F8:EA:58:A3","192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224CSZ","","'+02:00","2026-04-03T17:30:55.000+02:00","SANEF\bazan","Cloud Agent","c8f120fc-d93a-482f-b980-132203f43b9b","2025-07-21T10:39:35.000+02:00","2026-04-21T15:20:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","256.0" +"351380231","341150626","PCB24017.sanef.groupe","PCB24017","44:67:52:27:EA:F0","10.255.2.208,10.101.243.202","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","Dell Latitude 7350 Notebook","14","1700","Intel(R) Core(TM) Ultra 7 165U","32213","Dell Inc. 1.6.1","B4VTX64","","'+02:00","2026-03-30T17:43:36.000+02:00","SANEF\CORNIER","Cloud Agent","c024432e-1fdb-4dab-95bf-71d77ab0e8cb","2025-08-14T12:14:23.000+02:00","2026-04-22T11:32:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"280792740","305608321","PCB21329.sanef.groupe","PCB21329","D0:AD:08:AA:50:9F","10.202.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764LZ","","'+02:00","2026-04-01T10:46:02.000+02:00","SANEF\marais","Cloud Agent","0aafb843-919f-4a20-8d0d-e2904e958c4f","2024-11-20T13:08:24.000+02:00","2026-04-21T15:13:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","50.0" +"344301603","338294623","SVP18495.sanef-int.adds","SVP18495","D0:AD:08:A4:73:79","10.112.2.27","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.05.05","5CD34764J0","","'+02:00","2026-04-21T14:57:15.000+02:00","Superviseur","Cloud Agent","f0b0547a-a2d9-4c4b-9563-9c49797ddeee","2025-07-23T08:43:44.000+02:00","2026-04-21T15:12:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"281032241","305771550","PCB21327.sanef.groupe","PCB21327","E4:60:17:CA:40:18","10.255.2.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LT","","'+02:00","2026-04-01T08:49:46.000+02:00","SANEF\LefebvreCh","Cloud Agent","acd735db-abb9-40cb-8af7-76c782bc3a51","2024-11-21T16:15:11.000+02:00","2026-04-21T15:10:30.000+02:00","64-Bit","2","SCA,PM,GAV","Workstation,Cloud Agent","0.0" +"320071565","328599324","PCB23671.sanef.groupe","PCB23671","6C:0B:5E:EE:DC:07","10.5.31.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5D","","'+02:00","2026-04-20T10:42:11.000+02:00","SANEF\thomasm","Cloud Agent","15a0e532-1c4f-4476-9e59-5349911f176a","2025-04-28T10:07:44.000+02:00","2026-04-21T14:54:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"338322095","","PCB24180.sanef.groupe","PCB24180","DC:90:09:DE:FA:26","10.205.0.134,192.168.1.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XZ","","'+02:00","2026-04-01T11:37:47.000+02:00","SANEF\BARRY","Cloud Agent","17ef648b-e88e-49d7-baa3-3fdc41ecc13f","2025-07-02T09:37:51.000+02:00","2026-04-21T14:54:09.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"281435082","313088161","PCB21321.sanef.groupe","PCB21321","D0:AD:08:AA:50:B8","10.202.31.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MS","","'+02:00","2026-04-01T13:05:08.000+02:00","SANEF\carval","Cloud Agent","c7ad58f8-120b-44e6-b983-383de6c510b9","2024-11-22T11:25:39.000+02:00","2026-04-21T14:48:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"345046416","338587371","PCB20639.sanef.groupe","PCB20639","58:1C:F8:EA:53:E4","192.168.1.192,10.255.2.238","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DS8","","'+02:00","2026-04-11T09:43:45.000+02:00","SANEF\MONTES","Cloud Agent","4f55844a-b3c7-4420-a688-a6405c79e533","2025-07-25T12:02:34.000+02:00","2026-04-22T11:07:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","333.0" +"324129408","","PCB22328.sanef.groupe","PCB22328","60:45:2E:0F:9A:6A","10.203.31.6,10.255.1.154","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYY","","'+02:00","2026-04-06T06:45:18.000+02:00","SANEF\mathieuf","Cloud Agent","718cf66d-4a12-4ab2-889b-4ff87e3f9709","2025-05-12T15:40:30.000+02:00","2026-04-21T14:37:26.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"368152215","348099750","PCB25835.sanef.groupe","PCB25835","F8:ED:FC:AB:12:CD","10.5.30.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CS3","","'+02:00","2026-04-20T13:41:17.000+02:00","SANEF\solagna","Cloud Agent","fc7a798d-6170-4bc8-80c9-ad8a89d7e5f9","2025-10-14T09:42:28.000+02:00","2026-04-21T14:02:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"382522823","354014910","PCB25923.sanef.groupe","PCB25923","4C:CF:7C:0A:5C:7A","10.255.4.144,10.252.42.140","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534223S","","'+02:00","2026-04-13T10:41:46.000+02:00","SANEF\coudurier","Cloud Agent","5818d456-0740-42fc-b098-9db4f1ec16c5","2025-12-08T17:43:16.000+02:00","2026-04-21T13:43:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"358858681","344321015","PCB17483.sanef.groupe","PCB17483","70:A8:D3:85:76:45","10.255.2.244","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.15.02","5CG217247F","","'+02:00","2026-04-17T09:54:22.000+02:00","naomie.mpengo-itaka@sanef.com","Cloud Agent","8c18b313-f0c4-4ec9-8643-1ccaf40feb0e","2025-09-11T14:01:18.000+02:00","2026-04-22T11:28:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","242.0" +"339039077","336072564","SVP18484.sanef-int.adds","SVP18484","D0:AD:08:A2:AE:57","10.182.6.29,10.182.4.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764FV","","'+02:00","2026-04-14T08:13:57.000+02:00","Superviseur","Cloud Agent","d4f12adf-28c4-42ff-8a95-047d6e40a21c","2025-07-04T06:27:58.000+02:00","2026-04-21T13:36:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"304688619","322549286","PCB22611.sanef.groupe","PCB22611","D0:AD:08:AA:4F:F9","10.107.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FM","","'+02:00","2026-04-06T08:43:32.000+02:00","SANEF\lemairev","Cloud Agent","17a7d0dc-dc98-4cd3-8bc7-9eebdf6af6ca","2025-03-03T17:57:25.000+02:00","2026-04-21T13:34:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"324953378","330449119","SVP21342.sanef-int.adds","SVP21342","D0:AD:08:A4:72:D9","10.112.2.27,10.92.9.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764F6","","'+02:00","2026-04-10T07:43:47.000+02:00","Superviseur","Cloud Agent","0660a515-b744-4bca-895d-296bf443b004","2025-05-15T10:58:37.000+02:00","2026-04-21T13:34:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"305248158","322686743","PCB21132.sanef.groupe","PCB21132","D0:AD:08:AA:50:A6","10.107.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M6","","'+02:00","2026-04-01T13:03:30.000+02:00","SANEF\diot","Cloud Agent","a26c5b1e-cc79-443d-ad24-46ae9d33b998","2025-03-04T18:51:56.000+02:00","2026-04-21T13:34:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"305054446","322671476","PCB22609.sanef.groupe","PCB22609","D0:AD:08:AA:4F:C8","10.107.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764D1","","'+02:00","2026-04-13T10:44:13.000+02:00","SANEF\laloux","Cloud Agent","60da864e-dee3-4be2-b13f-e9c82b734936","2025-03-04T15:44:08.000+02:00","2026-04-21T13:31:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"328593294","331960149","PCB23705.sanef.groupe","PCB23705","C8:6E:08:88:E2:80","192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L52","","'+02:00","2026-04-15T08:15:17.000+02:00","SANEF\dore","Cloud Agent","d65561c9-f791-4d7c-b931-64098a1766db","2025-05-30T09:45:27.000+02:00","2026-04-21T13:29:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"350801769","340901852","PCB21339.sanef.groupe","PCB21339","D0:AD:08:AA:50:9C","10.220.31.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LW","","'+02:00","2026-04-20T08:17:56.000+02:00","SANEF\savaryma","Cloud Agent","f277bdee-704a-4abe-b793-c0c4862dd072","2025-08-12T11:59:40.000+02:00","2026-04-21T13:22:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"384235884","354848736","PCB22725.sanef.groupe","PCB22725","E4:60:17:C5:09:FE","10.205.0.119,192.168.1.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JF","","'+02:00","2026-04-01T09:52:16.000+02:00","SANEF\MOREIRA-ext","Cloud Agent","e30f891e-220f-490d-845c-d69973bab74e","2025-12-16T12:31:55.000+02:00","2026-04-21T13:14:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"324702377","","PCB23734.sanef.groupe","PCB23734","C8:6E:08:47:73:63","10.205.0.133,192.168.1.95","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3S","","'+02:00","2026-03-29T20:18:26.000+02:00","SANEF\houssiaux","Cloud Agent","2c487361-b23c-454a-911d-8984254638dc","2025-05-14T14:42:05.000+02:00","2026-04-21T13:12:11.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321532357","329072482","PCB23743.sanef.groupe","PCB23743","6C:0B:5E:EE:A3:0E","10.105.30.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2V","","'+02:00","2026-04-20T08:18:50.000+02:00","SANEF\barlet","Cloud Agent","eb14823d-d868-45db-a78d-0ea13fa7470c","2025-05-02T10:11:33.000+02:00","2026-04-21T13:09:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"345672227","338898642","PCB21115.sanef.groupe","PCB21115","E4:60:17:CA:40:72","10.205.0.162,192.168.1.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764MK","","'+02:00","2026-03-31T13:30:40.000+02:00","SANEF\NAHMIAS-ext","Cloud Agent","51a4f402-92ba-4565-8227-d2da9e43a2cd","2025-07-28T13:57:26.000+02:00","2026-04-21T12:47:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"322338468","329425101","PCB22798.sanef.groupe","PCB22798","D0:AD:08:A7:27:E1","10.189.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSR","8CC3502YSR","'+02:00","2026-04-21T11:49:57.000+02:00","SANEF\LOISEAU","Cloud Agent","7673c7b8-5f13-47a3-a6d1-a5805f723939","2025-05-06T10:13:59.000+02:00","2026-04-21T12:37:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"323174338","329812432","PCB22778.sanef.groupe","PCB22778","D0:AD:08:A7:28:0C","10.189.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKH","8CC3502YKH","'+02:00","2026-03-31T13:26:00.000+02:00","SANEF\ditte","Cloud Agent","88a40020-068e-4d7f-871b-98690fd002e3","2025-05-09T13:11:15.000+02:00","2026-04-21T12:33:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","140.0" +"385585248","355762821","SVP22623.sanef-int.adds","SVP22623","D0:AD:08:A2:AE:55","10.82.5.29,10.82.0.251","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764FX","","'+02:00","2026-04-16T08:54:08.000+02:00","Superviseur","Cloud Agent","e78bfd17-a2f2-4c1e-9edf-9be811a77618","2025-12-22T17:03:06.000+02:00","2026-04-21T12:31:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"346001975","338978585","SVP22607.sanef-int.adds","SVP22607","D0:AD:08:A4:73:BE","10.22.1.21,169.254.109.55","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764CW","","'+02:00","2026-03-26T13:12:20.000+02:00","Superviseur","Cloud Agent","476f6ea8-b3f4-4aca-80bd-d7d8d3c0e646","2025-07-29T08:41:11.000+02:00","2026-04-21T12:28:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"361258829","345231690","PCB23670.sanef.groupe","PCB23670","6C:0B:5E:EE:A3:AE","10.255.1.129,10.202.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9K","","'+02:00","2026-03-30T08:39:39.000+02:00","SANEF\legendre","Cloud Agent","6203e338-85bb-4569-b76e-79de333942d2","2025-09-19T14:16:51.000+02:00","2026-04-21T12:28:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"366113694","347199102","PCB24150.sanef.groupe","PCB24150","80:C0:1E:16:06:98","10.205.0.179,192.168.1.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook X G1i Notebook","1","2200","Intel(R) Core(TM) Ultra 7 258V","32240","HP X90 Ver. 01.01.07","5CG51110R2","","'+02:00","2026-04-02T12:50:53.000+02:00","SANEF\DHAUSSONVILLE","Cloud Agent","5a4541fa-014e-4512-bc11-830c1b3e8381","2025-10-07T13:02:27.000+02:00","2026-04-21T12:24:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"364972594","346711354","MAC15857.sanef.groupe","MAC15857","a0:78:17:83:5b:90","10.255.1.10","fe80::14cd:a0f3:abbe:d891","Mac / Client","Apple macOS Tahoe (26.3.1)","26.3","Computers / Notebook","Apple MacBook Pro (13-inch, M1, 2020) Notebook","1","3200","Apple M1","16384","MacBookPro17,1","FVFF76AFQ05N","","'+02:00","2026-04-15T16:20:43.000+02:00","arnaud.quemard","Cloud Agent","177dd0d1-7168-4c3a-9148-2dfcbd2f1a61","2025-10-02T13:36:27.000+02:00","2026-04-22T11:37:18.000+02:00","arm64_M1","2","SCA,VM,PM,GAV","Cloud Agent","63.0" +"324031938","","PCB17911.sanef.groupe","PCB17911","84:69:93:E1:7A:4A","10.4.31.57","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG21724BJ","","'+02:00","2026-02-13T12:50:27.000+02:00","SANEF\lecomte","Cloud Agent","cf3e6df3-848f-4084-9a9a-49d9d81432cd","2025-05-12T12:36:23.000+02:00","2026-04-21T12:13:02.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"388146163","356891654","PCB22729.sanef.groupe","PCB22729","E4:60:17:CA:2F:79","10.205.0.155,10.255.4.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764M5","","'+02:00","2026-01-13T11:49:42.000+02:00","SANEF\ternisienj","Cloud Agent","e9bd35cc-fa9e-4fbe-9836-1cde93500d33","2026-01-05T14:18:53.000+02:00","2026-04-21T12:09:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"414232388","367002493","PCB23717.sanef.groupe","PCB23717","C8:6E:08:47:72:F5","10.255.3.248","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4J","","'+02:00","2026-01-13T10:44:04.000+02:00","SANEF\pierrond","Cloud Agent","e00f13d7-3eed-4099-95b8-85cc39515e9a","2026-04-08T08:28:38.000+02:00","2026-04-21T12:05:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"358835155","344313874","PCB24251.sanef.groupe","PCB24251","C8:58:B3:18:8B:16","192.168.3.64","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.07.04","5CD5085GGF","","'+02:00","2026-04-16T12:57:58.000+02:00","SANEF\driot","Cloud Agent","8154c8be-5aee-4680-bd45-71849ff7c736","2025-09-11T13:16:43.000+02:00","2026-04-21T12:04:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"324730239","","PCB23726.sanef.groupe","PCB23726","C8:6E:08:49:99:3B","10.205.0.119,192.168.1.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2Y","","'+02:00","2026-03-30T08:10:06.000+02:00","SANEF\leroys","Cloud Agent","05846cb2-f69b-49da-969b-f142e0a34905","2025-05-14T15:28:24.000+02:00","2026-04-21T11:51:47.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"414671458","367157055","SVP18494.sanef-int.adds","SVP18494","D0:AD:08:A4:73:76","10.142.2.26,169.254.8.112","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764J7","","'+02:00","2026-04-10T10:59:44.000+02:00","Superviseur","Cloud Agent","fb2850be-3426-4943-ad07-1b84098a2ed9","2026-04-09T16:04:37.000+02:00","2026-04-21T11:44:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"356905320","343530465","PCB22618.sanef.groupe","PCB22618","D0:AD:08:AA:50:17","10.220.31.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764GL","","'+02:00","2026-04-01T09:02:43.000+02:00","annie.deschamps@sapn.fr","Cloud Agent","19f22e4b-efa9-4b49-9aea-02efc8367155","2025-09-04T14:33:41.000+02:00","2026-04-21T11:39:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"356624773","343410235","PCB22509.sanef.groupe","PCB22509","D0:AD:08:AA:50:3C","10.220.31.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HS","","'+02:00","2026-04-01T08:40:44.000+02:00","peggy.enaultbelhache@sapn.fr","Cloud Agent","e9ecf8d0-bd8a-43c3-a462-176448aa8943","2025-09-03T14:35:14.000+02:00","2026-04-21T11:37:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"396183133","359803291","PCB24070.sanef.groupe","PCB24070","08:B4:D2:2A:04:3B","10.255.4.16,10.255.4.198","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5064389","","'+02:00","2026-04-15T09:08:30.000+02:00","SANEF\kabuya-ext","Cloud Agent","4e97835f-bedb-4de7-a6d3-9e4514fcb2f4","2026-01-30T19:27:36.000+02:00","2026-04-21T11:36:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"361293868","345246363","PCB24211.sanef.groupe","PCB24211","10:B6:76:95:8B:BA","10.200.31.88","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZW","","'+02:00","2026-04-02T08:26:49.000+02:00","SANEF\berriot","Cloud Agent","19e56b55-471e-46b4-a8f4-8f200a6e911a","2025-09-19T17:18:07.000+02:00","2026-04-21T11:32:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"412590253","366325615","PCB21111.sanef.groupe","PCB21111","E4:60:17:CA:2F:56","10.205.0.138,192.168.188.114","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7171) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764LB","","'+02:00","2026-01-23T00:04:21.000+02:00","SANEF\GIRAUDSAUVEUR-ext","Cloud Agent","267901ae-4657-480a-ba5e-2c40ad48aeac","2026-03-31T10:08:01.000+02:00","2026-04-21T11:25:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"308160251","323604670","PCB20643.sanef.groupe","PCB20643","BC:0F:F3:3D:68:36","10.200.31.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224CSL","","'+02:00","2026-04-16T19:13:19.000+02:00","SANEF\PERIS-ext","Cloud Agent","d851b71f-9e88-4c5b-8b51-e98dbe718527","2025-03-14T11:28:58.000+02:00","2026-04-22T11:06:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"320134631","328623086","PCB23708.sanef.groupe","PCB23708","C8:6E:08:89:CF:E2","10.205.0.142,192.168.1.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6N","","'+02:00","2026-04-13T09:17:43.000+02:00","SANEF\CAURIER","Cloud Agent","2dd40ba6-e3e8-45fb-a022-e809b0d943fb","2025-04-28T14:07:25.000+02:00","2026-04-22T10:25:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"322598693","329584566","PCB23650.sanef.groupe","PCB23650","C8:6E:08:8A:45:17","10.205.0.134,192.168.1.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5G","","'+02:00","2026-04-16T15:11:22.000+02:00","SANEF\gillet","Cloud Agent","57e28164-f907-4962-8ca6-bca0bd878b3f","2025-05-07T12:45:00.000+02:00","2026-04-22T10:54:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"357106870","343625782","PCB20656.sanef.groupe","PCB20656","58:1C:F8:E9:44:27","10.255.3.239","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DSJ","","'+02:00","2026-03-26T12:11:20.000+02:00","SANEF\ALLEYSSON","Cloud Agent","5e933282-3c43-44af-887e-8792f473c5ef","2025-09-05T10:05:29.000+02:00","2026-04-22T11:17:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"356385889","343285277","PCB21343.sanef.groupe","PCB21343","D0:AD:08:AA:50:67","10.220.31.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764K5","","'+02:00","2026-04-08T15:35:54.000+02:00","brigitte.robergeot@sapn.fr","Cloud Agent","7edc98f1-edba-44ef-9164-0f72e410c13b","2025-09-02T17:21:21.000+02:00","2026-04-21T11:17:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"364740389","346607667","PCB18732.sanef.groupe","PCB18732","BC:0F:F3:3B:C5:47","10.220.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3Q","","'+02:00","2026-03-28T14:56:54.000+02:00","SANEF\BOISFER","Cloud Agent","73754ed6-fe96-4c58-9b93-cc4cd95ec3d7","2025-10-01T14:50:52.000+02:00","2026-04-21T11:16:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"367919266","347985134","PCB18117.sanef.groupe","PCB18117","38:CA:84:52:77:EB","10.220.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRT","","'+02:00","2026-04-08T11:05:48.000+02:00","SANEF\renier","Cloud Agent","f78e02ff-3799-4eb6-af69-95de3411a8a9","2025-10-13T13:34:24.000+02:00","2026-04-21T11:13:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"321987532","329316065","PCB20847.sanef.groupe","PCB20847","C8:6E:08:49:2E:10","10.205.0.37,192.168.1.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H5D","","'+02:00","2026-03-30T07:10:38.000+02:00","SANEF\petri","Cloud Agent","207b932a-1899-4f09-8987-269168a96460","2025-05-05T10:40:33.000+02:00","2026-04-21T11:12:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"399025769","360946609","PCB21114.sanef.groupe","PCB21114","E4:60:17:CB:7B:6D","10.205.0.29,192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764CX","","'+02:00","2026-03-31T09:27:15.000+02:00","SANEF\NAKHONEVONGSAKD-ext","Cloud Agent","403cae0b-968f-4b5c-be37-3dc155fa0580","2026-02-10T09:30:54.000+02:00","2026-04-22T11:08:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"402138691","361893055","PCB24340.sanef.groupe","PCB24340","10:B6:76:95:8B:87","10.101.243.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZY7","","'+02:00","2026-04-14T10:39:50.000+02:00","SANEF\ysmael-ext","Cloud Agent","6824ad95-9f3a-4ada-80d0-396558131b6c","2026-02-18T17:16:15.000+02:00","2026-04-22T11:46:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"356359986","343273998","PCB21116.sanef.groupe","PCB21116","E4:60:17:C5:08:C3","192.168.1.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JJ","","'+02:00","2026-04-21T10:32:59.000+02:00","SANEF\MENGISTU-ext","Cloud Agent","1ec84fa6-f93e-437c-8402-f5bc34d9b8bc","2025-09-02T16:03:05.000+02:00","2026-04-22T11:26:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"379837939","352999176","PCB22722.sanef.groupe","PCB22722","E4:60:17:C4:7E:F8","10.255.2.242","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764KJ","","'+02:00","2026-04-03T17:02:14.000+02:00","SANEF\LEVIENNESSE-ext","Cloud Agent","a4160758-e626-405a-8198-28a1b3d34e9f","2025-11-27T16:53:46.000+02:00","2026-04-21T11:03:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"350042094","340238263","PCB22526.sanef.groupe","PCB22526","D0:AD:08:AA:4F:FD","10.220.31.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FR","","'+02:00","2026-04-02T08:42:18.000+02:00","claire.guignon@sapn.fr","Cloud Agent","44760461-d7fa-432e-81d8-d6a7c151a597","2025-08-08T13:42:11.000+02:00","2026-04-21T11:02:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"402455023","362026627","PCB18632.sanef.groupe","PCB18632","38:CA:84:DB:E6:8A","10.4.31.91","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WCZ","","'+02:00","2026-04-16T10:45:30.000+02:00","SANEF\TOUVEREY-ext","Cloud Agent","35f3c983-e73b-469f-96e4-b5970a4341e0","2026-02-19T18:48:05.000+02:00","2026-04-22T11:15:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"318405690","328038566","PCB22803.sanef.groupe","PCB22803","D0:AD:08:A3:E6:B5","10.189.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSJ","8CC3502YSJ","'+02:00","2026-03-29T09:12:16.000+02:00","SANEF\PEUDEVIN","Cloud Agent","0bd70542-b98c-4d41-b670-9e617e2158b7","2025-04-22T13:52:58.000+02:00","2026-04-21T11:02:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"377773483","352194965","PCB25887.sanef.groupe","PCB25887","C4:0F:08:B4:39:F3","10.255.2.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222V","","'+02:00","2026-04-16T11:04:11.000+02:00","SANEF\vallin","Cloud Agent","4ad7999b-2659-49ec-9b8c-386121390ec1","2025-11-19T16:08:46.000+02:00","2026-04-22T10:59:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"358157529","344039421","PCB18749.sanef.groupe","PCB18749","58:1C:F8:EB:78:14","10.255.4.244","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3B","","'+02:00","2026-03-31T13:39:58.000+02:00","SANEF\CHERIET","Cloud Agent","8ae0f6f1-c2d7-4348-a182-be06c77d2bd3","2025-09-09T15:21:06.000+02:00","2026-04-22T11:34:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","346.0" +"319423559","328419616","PCB24047.sanef.groupe","PCB24047","EC:4C:8C:C0:25:6A","10.255.4.213","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDF","","'+02:00","2026-04-14T15:23:02.000+02:00","SANEF\DEFRANCQUEVILLE","Cloud Agent","d31b6a78-4b4a-490e-a27c-95b1d04a1af7","2025-04-25T15:23:15.000+02:00","2026-04-22T10:56:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","148.0" +"322374230","329442019","PCB23619.sanef.groupe","PCB23619","C8:6E:08:88:F0:A4","10.205.0.131,192.168.1.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6H","","'+02:00","2026-04-15T21:14:36.000+02:00","SANEF\PALOUZIER","Cloud Agent","ce1b2608-2464-4c4e-8084-4a92ace9f1d6","2025-05-06T12:47:48.000+02:00","2026-04-21T10:54:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"346164627","338997114","PCB18084.sanef.groupe","PCB18084","38:CA:84:52:09:73","10.101.243.124","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HSM","","'+02:00","2026-04-20T09:27:38.000+02:00","SANEF\DELADOUCETTE","Cloud Agent","e6d04648-8dbe-4a6a-be8e-e6d3c78c448b","2025-07-29T11:28:32.000+02:00","2026-04-22T11:43:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","242.0" +"352580911","341592465","PCB25852.sanef.groupe","PCB25852","28:95:29:22:6B:7C","10.255.2.229","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSX","","'+02:00","2026-04-14T09:42:46.000+02:00","SANEF\LETENDARD","Cloud Agent","3a092997-4bbe-4546-bbf1-3f937f69ca42","2025-08-19T12:40:07.000+02:00","2026-04-22T11:46:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"360021676","","PCB18093.sanef.groupe","PCB18093","64:D6:9A:1D:39:18","192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HT6","","'+02:00","2026-04-19T21:23:20.000+02:00","SANEF\BAUMANN","Cloud Agent","98b84352-03e8-4745-bd5a-b77cf34f7043","2025-09-16T13:08:41.000+02:00","2026-04-21T10:42:53.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"356302749","343247610","PCB18066.sanef.groupe","PCB18066","38:CA:84:52:30:3A","10.101.243.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.09.01","5CG2376HT4","","'+02:00","2026-04-13T12:36:15.000+02:00","SANEF\OGILVIE","Cloud Agent","af6b17fe-1602-4202-8fa2-c0c9308b6357","2025-09-02T12:03:15.000+02:00","2026-04-22T11:18:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"323178938","329814436","PCB17649.sanef.groupe","PCB17649","D0:AD:08:E4:D1:4C","10.101.243.86","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVF","","'+02:00","2026-04-16T13:57:40.000+02:00","SANEF\DURANVILLE","Cloud Agent","49613b8a-3495-4617-a8ed-a0c64a5962cc","2025-05-09T13:21:00.000+02:00","2026-04-22T10:54:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"366129118","347210173","PCB17784.sanef.groupe","PCB17784","28:C5:D2:9F:C4:00","10.205.0.66,192.168.1.169","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y47","","'+02:00","2026-04-15T10:15:50.000+02:00","Allison.bussi@bipandgo.com","Cloud Agent","f7f789e5-0a5c-41ea-abb4-ad80ff0f6224","2025-10-07T15:14:56.000+02:00","2026-04-21T10:38:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"344814567","338468966","PCB23528.sanef.groupe","PCB23528","C8:6E:08:88:E2:99","10.255.2.223","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6V","","'+02:00","2026-03-30T09:00:56.000+02:00","SANEF\planchon","Cloud Agent","cddbcff7-bea2-41a0-a6a9-c474a5b2540e","2025-07-24T13:27:56.000+02:00","2026-04-21T10:38:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"334734731","","PCB24072.sanef.groupe","PCB24072","08:B4:D2:2C:6A:CD","10.255.2.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.04.01","5CD506438V","","'+02:00","2026-03-29T09:27:47.000+02:00","SANEF\hieulle","Cloud Agent","fae4786b-34b7-4fa6-8d27-ef43dd5cd0bb","2025-06-19T15:53:40.000+02:00","2026-04-21T10:35:50.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"368411315","348131710","PCB18107.sanef.groupe","PCB18107","64:D6:9A:1D:2B:DF","10.255.2.218","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.09.01","5CG2376HRX","","'+02:00","2026-04-20T10:10:27.000+02:00","SANEF\brin","Cloud Agent","416559b6-d640-4ea9-b5fc-34d01570eee4","2025-10-14T14:34:40.000+02:00","2026-04-21T10:34:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"369279734","348358262","PCB18063.sanef.groupe","PCB18063","64:D6:9A:21:81:A3","10.255.4.129,10.255.4.252","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.23.00","5CG2376HTG","","'+02:00","2026-04-17T16:21:57.000+02:00","SANEF\KASONGO-ext","Cloud Agent","92290210-1633-4721-bc0b-f4f9b09747ee","2025-10-16T12:31:34.000+02:00","2026-04-21T10:33:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"331143523","","PCB23588.sanef.groupe","PCB23588","C8:6E:08:89:0B:02","10.205.0.132,192.168.1.115","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8R","","'+02:00","2026-03-31T13:18:15.000+02:00","SANEF\lalinec","Cloud Agent","f1065faa-3697-42d0-b046-8d7763c69bdb","2025-06-05T14:21:28.000+02:00","2026-04-22T10:25:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"331432984","","PCB17766.sanef.groupe","PCB17766","28:C5:D2:9F:C3:88","10.205.0.16,169.254.238.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y40","","'+02:00","2026-04-16T11:23:12.000+02:00","SANEF\breuillac","Cloud Agent","c4d928aa-259b-4f6c-8ea4-524f9bfd31d3","2025-06-06T14:53:35.000+02:00","2026-04-21T10:30:47.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"345639528","338892309","PCB24139.sanef.groupe","PCB24139","F8:ED:FC:AB:02:59","10.101.243.61","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTY","","'+02:00","2026-04-20T09:43:56.000+02:00","SANEF\LEVYSANDERS","Cloud Agent","c905ff7c-b029-4f51-9679-b3271dc61ff6","2025-07-28T12:42:31.000+02:00","2026-04-22T10:58:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"321014209","328903800","PCB23672.sanef.groupe","PCB23672","C8:6E:08:8A:51:15","10.205.0.131,192.168.1.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9Z","","'+02:00","2026-03-30T15:41:55.000+02:00","SANEF\LECIGNE","Cloud Agent","27dc8b08-c234-478a-857b-44a281471670","2025-04-30T14:12:54.000+02:00","2026-04-21T10:28:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"358783975","344250269","PCB20697.sanef.groupe","PCB20697","BC:0F:F3:3D:18:21","10.101.243.179","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224D43","","'+02:00","2026-04-09T10:21:25.000+02:00","SANEF\blacodon","Cloud Agent","90d605b7-6430-4ef9-b2ee-9ff4129d0bf6","2025-09-11T09:52:16.000+02:00","2026-04-22T11:36:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"417403086","368234260","PCB23600.sanef.groupe","PCB23600","C8:6E:08:88:F0:36","10.255.1.199","fe80::67a3:87ee:8465:6652","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5S","","'+02:00","2026-04-20T14:27:59.000+02:00","SANEF\PARARAJASEGARAN","Cloud Agent","31ee868d-842b-4e30-a17a-59411191e7d3","2026-04-20T14:01:21.000+02:00","2026-04-21T10:26:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"343105603","337771598","PCB18106.sanef.groupe","PCB18106","64:D6:9A:1D:39:2C","10.205.0.102,192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.09.01","5CG2376HRQ","","'+02:00","2026-04-07T09:54:27.000+02:00","SANEF\LEFORMAL","Cloud Agent","5a886bf4-c03e-4391-8c5d-c965fecc30f7","2025-07-18T11:25:20.000+02:00","2026-04-21T10:23:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"281007422","305748071","PCB22534.sanef.groupe","PCB22534","D0:AD:08:AA:50:66","10.220.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764K4","","'+02:00","2026-04-20T10:36:32.000+02:00","SANEF\gervais","Cloud Agent","9384f83f-458a-401c-b63c-528e90fbf2a4","2024-11-21T12:42:43.000+02:00","2026-04-21T10:23:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"331188629","","PCB23690.sanef.groupe","PCB23690","C8:6E:08:88:F0:77","10.101.243.79,10.255.2.243","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L68","","'+02:00","2026-03-31T09:10:12.000+02:00","SANEF\MASMOUDI","Cloud Agent","28c377c7-f272-4b8e-bfa8-f7298377350b","2025-06-05T15:55:27.000+02:00","2026-04-21T10:22:28.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"353719933","342061489","PCB17781.sanef.groupe","PCB17781","D0:AD:08:0C:7D:E8","10.101.243.145","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3H","","'+02:00","2026-04-21T09:44:22.000+02:00","SANEF\THIELLOSALL","Cloud Agent","6f7f8d61-65ca-4532-9314-b451ecd58412","2025-08-22T11:29:58.000+02:00","2026-04-22T10:58:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"382433027","353977188","PCB25793.sanef.groupe","PCB25793","F8:ED:FC:AB:F1:E9","10.252.42.151","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVY","","'+02:00","2026-04-14T08:59:05.000+02:00","SANEF\guichard","Cloud Agent","15cb4752-4964-4695-88b4-1601139e690f","2025-12-08T11:21:34.000+02:00","2026-04-21T10:21:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","332.0" +"395335979","359417747","PCB24042.sanef.groupe","PCB24042","EC:4C:8C:C0:1A:3E","10.205.0.122,192.168.0.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDT","","'+02:00","2026-03-31T09:56:15.000+02:00","SANEF\RENO","Cloud Agent","fc1e7565-32be-4451-801e-e01823b8efc7","2026-01-27T14:59:24.000+02:00","2026-04-22T11:37:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"343698967","338069202","PCB20707.sanef.groupe","PCB20707","58:1C:F8:EA:58:C6","10.255.1.222,192.168.1.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSM","","'+02:00","2026-04-03T10:51:25.000+02:00","marie.deresseguier@sanef.com","Cloud Agent","f4487aa7-00d7-4b55-ac5e-b9a3ab57fb58","2025-07-21T14:47:49.000+02:00","2026-04-22T11:39:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"373167808","350064154","PCB17895.sanef.groupe","PCB17895","70:A8:D3:85:C6:D1","10.255.2.224","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG217248G","","'+02:00","2026-04-15T12:45:59.000+02:00","SANEF\gimpel","Cloud Agent","c51ba0b2-5002-4408-91be-b4297b37e926","2025-10-31T10:38:05.000+02:00","2026-04-21T10:15:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"350568845","340490704","PCB25796.sanef.groupe","PCB25796","28:95:29:1A:FE:AF","10.205.0.126,192.168.1.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV7","","'+02:00","2026-04-17T13:38:58.000+02:00","SANEF\ZAMBETTA","Cloud Agent","ade50370-2adb-4c63-a071-15bcf5fe1b1d","2025-08-11T16:13:06.000+02:00","2026-04-21T10:15:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"356378351","343285628","PCB21117.sanef.groupe","PCB21117","E4:60:17:CA:30:0F","10.205.0.142,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L6","","'+02:00","2026-04-02T09:01:36.000+02:00","SANEF\LAHYANI-ext","Cloud Agent","b04167ad-194c-4895-ba4f-e18caa3ffeae","2025-09-02T17:27:49.000+02:00","2026-04-21T10:14:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","336.0" +"350556707","340473845","PCB25785.sanef.groupe","PCB25785","F8:ED:FC:AB:02:0C","10.101.243.68","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTW","","'+02:00","2026-04-14T17:58:45.000+02:00","SANEF\HOCHART","Cloud Agent","e80949fa-5dce-4dc7-a157-21745824e23c","2025-08-11T13:59:12.000+02:00","2026-04-22T10:50:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"323178109","329810569","PCB23736.sanef.groupe","PCB23736","6C:0B:5E:EE:83:7A","10.5.31.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4Y","","'+02:00","2026-03-31T15:19:17.000+02:00","SANEF\WAMBEKE","Cloud Agent","87c684a7-415e-43eb-8986-5c2302b9c4ef","2025-05-09T12:49:05.000+02:00","2026-04-22T10:57:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","145.0" +"371078338","349189517","PCB22300.sanef.groupe","PCB22300","60:45:2E:0F:8E:71","10.255.4.6,169.254.244.167","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YYV","","'+02:00","2026-04-09T11:58:58.000+02:00","SANEF\BELLATON","Cloud Agent","7f1a33d7-4d0a-4977-ad99-54ff2cee3ab5","2025-10-23T13:24:13.000+02:00","2026-04-21T10:11:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","351.0" +"324140248","","PCB18113.sanef.groupe","PCB18113","38:CA:84:52:F8:CC","10.100.39.64","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSX","","'+02:00","2026-04-13T10:32:34.000+02:00","SANEF\HENRYS","Cloud Agent","126dea48-482f-4cc8-90ca-662f20f50a43","2025-05-12T16:52:36.000+02:00","2026-04-22T10:24:13.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"374402796","350604076","PCB18077.sanef.groupe","PCB18077","38:CA:84:52:09:18","10.200.31.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG2376HRP","","'+02:00","2026-04-04T09:13:13.000+02:00","SANEF\BENAYACHE","Cloud Agent","546e1919-5447-470a-b007-60d9d766406d","2025-11-05T13:19:36.000+02:00","2026-04-22T10:54:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"412399058","366138290","PCB18096.sanef.groupe","PCB18096","64:D6:9A:1D:2D:8D","10.205.0.143,192.168.1.13","2a01:e0a:9d6:6070:3eb6:2e8d:58b0:ce85,2a01:e0a:9d6:6070:9458:f7d4:fe65:c5aa,fe80::82aa:5901:a010:5ba4","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRN","","'+02:00","2026-03-30T14:28:52.000+02:00","SANEF\lestrat-ext","Cloud Agent","91dee946-02c6-43ad-9827-64fafc30cb7c","2026-03-30T14:15:41.000+02:00","2026-04-21T10:06:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"386725450","356331191","PCB16157.sanef.groupe","PCB16157","E0:70:EA:D3:27:7B, 28:11:A8:73:E8:8A","10.100.39.81,10.255.1.201","fe80::32b:af7:6b9e:decc,fe80::9487:8664:508c:b34b","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP ProBook 630 G8 Notebook","1","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.14.00","5CD14540QS","","'+02:00","2026-04-20T09:09:52.000+02:00","SANEF\DAHLKE","Cloud Agent","a35493b4-3fdc-4da4-b796-2c34200c5eaa","2025-12-29T17:07:52.000+02:00","2026-04-22T10:59:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-POS DYN","345.0" +"326255599","","PCB21100.sanef.groupe","PCB21100","D0:AD:08:AA:50:96","10.100.39.191","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764LP","","'+02:00","2026-04-15T16:02:46.000+02:00","SANEF\KHADRI-ext","Cloud Agent","37799ca4-6a17-4bf8-ba14-e42303903133","2025-05-21T16:43:09.000+02:00","2026-04-21T10:04:33.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"331425935","","PCB23535.sanef.groupe","PCB23535","6C:0B:5E:EE:A3:26","10.206.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB9","","'+02:00","2026-04-21T08:40:21.000+02:00","SANEF\defilippis","Cloud Agent","ba076ab9-ec40-4766-8ed6-479542cf52b7","2025-06-06T13:44:37.000+02:00","2026-04-22T08:43:39.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"363186062","346018313","PCB25797.sanef.groupe","PCB25797","28:95:29:1A:F7:2F","10.255.3.212","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT8","","'+02:00","2026-04-16T17:30:17.000+02:00","myriam.SAIDI@sanef.com","Cloud Agent","f6d56973-0fab-48d0-93c8-fd48e5aa1494","2025-09-26T09:45:01.000+02:00","2026-04-21T10:03:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"357880804","343909156","PCB18746.sanef.groupe","PCB18746","BC:0F:F3:3D:68:50","10.100.39.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSC","","'+02:00","2026-04-16T08:59:45.000+02:00","SANEF\DURIEUX","Cloud Agent","5acbb098-c2d5-4f1e-b220-b34d78905577","2025-09-08T15:02:02.000+02:00","2026-04-22T10:47:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"335596647","","PCB24171.sanef.groupe","PCB24171","24:FB:E3:F3:E9:A5","10.101.243.184","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XH","","'+02:00","2026-03-29T09:26:47.000+02:00","SANEF\CALVEZ","Cloud Agent","1e52c36e-3bf8-49ce-b44d-5a6b5185a662","2025-06-23T14:14:48.000+02:00","2026-04-21T10:00:47.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"322390911","329455589","PCB21296.sanef.groupe","PCB21296","30:F6:EF:A3:FE:9E","10.255.3.179","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.02.03","5CG3440GJR","","'+02:00","2026-03-30T12:12:33.000+02:00","SANEF\BEGUIN","Cloud Agent","7cc24154-6b93-4278-85ef-a6cf6f83d6a6","2025-05-06T15:06:51.000+02:00","2026-04-21T09:57:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"356588752","343389639","PCB21123.sanef.groupe","PCB21123","E4:60:17:CA:3F:55","10.205.0.107,192.168.1.125","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MZ","","'+02:00","2026-04-02T13:35:02.000+02:00","SANEF\KRASSLER-ext","Cloud Agent","5b1b6934-077d-486b-9652-48162db6b643","2025-09-03T11:41:43.000+02:00","2026-04-21T09:56:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"340812113","336831741","PCB21101.sanef.groupe","PCB21101","E4:60:17:C5:06:C5","10.205.0.22,192.168.27.144","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764JW","","'+02:00","2026-04-20T08:46:59.000+02:00","SANEF\BAH-ext","Cloud Agent","f2abea20-ecd3-4d63-ae8e-a1c2d97dec9e","2025-07-10T15:40:47.000+02:00","2026-04-22T11:44:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"330770170","","PCB23529.sanef.groupe","PCB23529","C8:6E:08:8A:40:80","10.255.1.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4H","","'+02:00","2026-04-07T09:29:32.000+02:00","SANEF\BURGEVIN","Cloud Agent","d2e85da4-fd31-4185-a57c-364cf158403a","2025-06-04T14:59:03.000+02:00","2026-04-21T09:53:17.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"327525060","","PCB23536.sanef.groupe","PCB23536","C8:6E:08:8A:45:3A","10.255.4.229","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9Q","","'+02:00","2026-04-20T09:46:54.000+02:00","SANEF\groum","Cloud Agent","bc393008-de61-460e-af4c-1dce3e2ef6ba","2025-05-27T11:52:42.000+02:00","2026-04-22T10:15:23.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"327528319","","PCB20605.sanef.groupe","PCB20605","58:1C:F8:E9:C0:C3","10.255.3.216","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D2X","","'+02:00","2026-04-07T07:51:23.000+02:00","SANEF\VION","Cloud Agent","7ab12a00-a6ed-4fae-a33a-08615d055bdb","2025-05-27T11:03:02.000+02:00","2026-04-21T09:53:04.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321023014","328903802","PCB24033.sanef.groupe","PCB24033","EC:4C:8C:C0:25:DD","10.205.0.111,192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDN","","'+02:00","2026-04-21T09:13:02.000+02:00","SANEF\MARTEL","Cloud Agent","3a682daa-4200-43ac-b514-7bffc9d17f65","2025-04-30T14:13:49.000+02:00","2026-04-21T09:51:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"369365031","348384825","PCB25794.sanef.groupe","PCB25794","28:95:29:1B:32:62","192.168.0.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CW4","","'+02:00","2026-03-30T09:28:00.000+02:00","SANEF\RAVANEL","Cloud Agent","83bd326d-5e84-4cf6-b7ab-d1b793bab672","2025-10-16T16:38:08.000+02:00","2026-04-21T09:50:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"412657480","366356872","PCB25907.sanef.groupe","PCB25907","4C:CF:7C:0A:5C:6B","10.5.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222H","","'+02:00","2026-04-15T09:54:13.000+02:00","SANEF\BRANQUART","Cloud Agent","9da31f2f-cb82-4f11-9e5e-303a24411750","2026-03-31T15:31:57.000+02:00","2026-04-21T09:50:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"326195826","","PCB18613.sanef.groupe","PCB18613","64:D6:9A:74:74:BC","10.255.1.200","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WDR","","'+02:00","2026-04-15T16:05:36.000+02:00","SANEF\ARNOULD-ext","Cloud Agent","82f3f07d-b46a-48f9-a460-fd7c3e28121e","2025-05-21T12:36:36.000+02:00","2026-04-21T09:44:08.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"325730232","","PCB20646.sanef.groupe","PCB20646","BC:0F:F3:3D:08:D8","10.100.39.108","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQ7","","'+02:00","2026-04-16T15:09:36.000+02:00","SANEF\CROUZEL","Cloud Agent","195dd971-2996-4b28-8e76-2fc8e57292b9","2025-05-19T15:12:59.000+02:00","2026-04-21T09:42:54.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"356861640","343513093","PCB20641.sanef.groupe","PCB20641","58:1C:F8:E9:50:FC","172.18.119.152","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DT1","","'+02:00","2026-04-16T10:16:56.000+02:00","SANEF\DESPAIGNE","Cloud Agent","47a4ba74-80df-4a3a-a546-7ab2d8ea9f9a","2025-09-04T11:44:32.000+02:00","2026-04-22T11:42:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"176569811","230099161","PCB18078.sanef.groupe","PCB18078","0A:00:27:00:00:08, C8:A3:62:C3:43:D8, 0A:00:27:00:00:0A","10.205.0.62,169.254.12.214,192.168.1.54,192.168.56.1","fe80::7375:cc0f:fdd0:20c7,2a02:8428:82fe:dc01:2445:9ba8:3f5:717f,2a02:8428:82fe:dc01:3513:40ca:4b60:ed57,fe80::378a:aa54:6d17:aa9c,fe80::d530:1123:5b93:df8c","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","32448","HP T37 Ver. 01.11.00","5CG2376HS4","","'+02:00","2026-04-21T09:01:36.000+02:00","SANEF\DELCOUR","Cloud Agent","af8c6764-2190-4c40-bda4-364774ec6a2d","2023-06-30T12:08:09.000+02:00","2026-04-22T10:57:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"128175548","191107898","PCB16366.sanef.groupe","PCB16366","50:81:40:B9:71:4A","10.205.0.95,192.168.1.189","2a01:e0a:bd1:1170::7332:c922,fe80::bc3b:2d94:c246:9744","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.04.02","5CG13363YB","","'+02:00","2026-04-21T08:56:59.000+02:00","SANEF\BOUDAILLIEZ","Cloud Agent","b7f6c1eb-7669-42ae-b978-381ebe8ad3a4","2022-06-16T18:06:11.000+02:00","2026-04-22T11:27:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Workstation,Cloud Agent","346.0" +"362249300","345658789","PCB22620.sanef.groupe","PCB22620","E4:60:17:CB:7A:B9","192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DH","","'+02:00","2026-04-17T17:28:45.000+02:00","SANEF\POURE","Cloud Agent","200d84fc-06df-4587-ac5b-6163bf37c121","2025-09-23T11:23:57.000+02:00","2026-04-22T11:40:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"326861197","","PCB18722.sanef.groupe","PCB18722","58:1C:F8:EA:58:CB","10.255.2.242,192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CST","","'+02:00","2026-04-09T16:52:59.000+02:00","SANEF\macadre","Cloud Agent","240a5390-f2a7-434b-9246-4825f64df020","2025-05-23T15:09:15.000+02:00","2026-04-21T09:28:47.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"281012466","305739823","PCB21326.sanef.groupe","PCB21326","D0:AD:08:AA:50:7F","10.220.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KY","","'+02:00","2026-04-01T10:52:02.000+02:00","SANEF\guillard","Cloud Agent","2db7210e-e3e0-4682-b408-d14e0597927a","2024-11-21T11:44:55.000+02:00","2026-04-21T09:27:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"281061306","305771150","PCB22529.sanef.groupe","PCB22529","D0:AD:08:AA:50:23","10.220.31.58","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GZ","","'+02:00","2026-04-01T10:42:55.000+02:00","SANEF\ribeiro","Cloud Agent","29556961-2bfb-4f22-89ad-7325f540146f","2024-11-21T16:13:55.000+02:00","2026-04-21T09:25:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"320292147","328631499","PCB23525.sanef.groupe","PCB23525","6C:0B:5E:EE:CC:C0","10.11.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L71","","'+02:00","2026-03-30T16:33:34.000+02:00","SANEF\pierres","Cloud Agent","50786579-443e-4602-9936-707ac5d5afbb","2025-04-28T15:39:34.000+02:00","2026-04-21T09:23:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"340421101","","PCB17785.sanef.groupe","PCB17785","28:C5:D2:9E:44:D6","10.255.4.215","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4L","","'+02:00","2026-04-15T08:52:30.000+02:00","SANEF\GAILLARDE","Cloud Agent","256983d4-51f8-46ea-92ff-e6d8abf48fd4","2025-07-09T12:05:07.000+02:00","2026-04-21T09:23:34.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"321015068","328906213","PCB23626.sanef.groupe","PCB23626","6C:0B:5E:EE:CC:7F","10.205.0.68,169.254.52.140","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L5N","","'+02:00","2026-04-16T15:58:25.000+02:00","SANEF\MAHDAVI","Cloud Agent","a3aee619-c53d-44cf-814a-c9847cb50708","2025-04-30T14:48:59.000+02:00","2026-04-22T10:49:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"391547803","357907011","PCB24252.sanef.groupe","PCB24252","C8:58:B3:34:02:C9","10.255.1.177","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M6G","","'+02:00","2026-04-14T10:38:35.000+02:00","SANEF\HOMONT","Cloud Agent","1c9f06de-58a3-4387-8394-cda5aadead69","2026-01-13T09:45:52.000+02:00","2026-04-21T09:19:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"280776380","305599651","PCB21322.sanef.groupe","PCB21322","D0:AD:08:AA:50:3E","10.220.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HV","","'+02:00","2026-04-13T10:06:50.000+02:00","SANEF\dallemagne","Cloud Agent","1943bb5f-3107-47d9-b85f-51b502122b7f","2024-11-20T12:10:39.000+02:00","2026-04-21T09:19:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"397469805","360368047","PCB24221.sanef.groupe","PCB24221","70:15:FB:7E:20:75","10.255.2.160","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ5","","'+02:00","2026-04-15T07:43:13.000+02:00","SANEF\LEGUILLARD","Cloud Agent","a857dade-56e5-46e5-8f44-20226625e58c","2026-02-04T17:20:54.000+02:00","2026-04-21T09:12:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"333956547","333980899","PCB18719.sanef.groupe","PCB18719","BC:0F:F3:3D:68:62","10.4.31.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CS5","","'+02:00","2026-04-15T08:58:40.000+02:00","SANEF\gruselle","Cloud Agent","dc271644-a3a9-43f0-b2a5-36f1b39ef3be","2025-06-17T09:42:42.000+02:00","2026-04-22T11:39:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"360026634","","PCB24043.sanef.groupe","PCB24043","EC:4C:8C:C5:DA:AF","10.255.1.184","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDB","","'+02:00","2026-04-03T10:03:14.000+02:00","SANEF\CHARPENTIER","Cloud Agent","0b74a0cb-7adc-40d9-a75a-b0cbc4605003","2025-09-16T13:26:26.000+02:00","2026-04-22T09:18:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"346650733","339058456","PCB25843.sanef.groupe","PCB25843","F8:ED:FC:AB:F1:CE","10.101.243.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CRL","","'+02:00","2026-04-20T08:31:59.000+02:00","SANEF\DUFOURQ","Cloud Agent","cf91d6ed-4b0d-406f-9810-ead02c55402d","2025-07-29T15:08:10.000+02:00","2026-04-22T11:24:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"353316804","341961267","PCB20696.sanef.groupe","PCB20696","58:1C:F8:EA:00:CE","192.168.1.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D32","","'+02:00","2026-03-30T14:28:36.000+02:00","SANEF\ANCEY-ext","Cloud Agent","c054d6df-db7a-4d7c-8eb2-02985d53aca2","2025-08-21T14:03:12.000+02:00","2026-04-21T09:05:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"334693868","","PCB24121.sanef.groupe","PCB24121","48:EA:62:C8:93:2C","10.103.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6B","","'+02:00","2026-04-17T07:08:02.000+02:00","SANEF\grandjonc","Cloud Agent","fadd49cd-d59c-4cc5-8bed-b0e4e7580f1c","2025-06-19T11:56:20.000+02:00","2026-04-22T11:33:08.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"327556832","","PCB20676.sanef.groupe","PCB20676","58:1C:F8:EA:00:33","10.255.2.187,192.168.0.166","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DPZ","","'+02:00","2026-03-20T09:26:20.000+02:00","SANEF\CADOTP","Cloud Agent","61c6d3bb-9996-44d4-8e1c-6b8e66c96cc1","2025-05-27T14:24:31.000+02:00","2026-04-22T08:18:19.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"334403560","334138201","PCB22923.sanef.groupe","PCB22923","D0:AD:08:A3:7B:67","10.100.39.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWV","8CC3502YWV","'+02:00","2026-04-20T10:48:08.000+02:00","SANEF\DANEL","Cloud Agent","def7a608-ce5c-4513-9061-701c4603535e","2025-06-18T12:30:50.000+02:00","2026-04-21T08:55:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","252.0" +"325658504","","PCB20722.sanef.groupe","PCB20722","58:1C:F8:EB:3F:F7","192.168.0.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSV","","'+02:00","2026-04-21T08:32:05.000+02:00","SANEF\PANISSIER","Cloud Agent","1b0d1a6a-9ad4-40c7-badd-a7c58c4760e4","2025-05-19T09:59:01.000+02:00","2026-04-21T08:54:37.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"281025877","305755501","PCB21334.sanef.groupe","PCB21334","D0:AD:08:AA:50:AB","10.255.3.174,10.220.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MC","","'+02:00","2026-03-31T11:04:59.000+02:00","SANEF\roy","Cloud Agent","dcf5d73e-a67c-4ca4-b5f3-5d4567d772a6","2024-11-21T13:44:57.000+02:00","2026-04-21T08:50:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"368789681","348252901","PCB18755.sanef.groupe","PCB18755","BC:0F:F3:3D:18:79","10.220.31.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DS3","","'+02:00","2026-03-28T13:36:28.000+02:00","david.bertoux@sapn.fr","Cloud Agent","99813c3b-99ff-4c88-be46-5039e7dead4e","2025-10-15T14:49:14.000+02:00","2026-04-21T08:49:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"331463433","","PCB21158.sanef.groupe","PCB21158","F0:20:FF:9A:B6:9A","192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVQ","","'+02:00","2026-04-14T18:01:27.000+02:00","SANEF\CUVELLIERS","Cloud Agent","b9e71b23-d28e-435a-9196-9a358a77fc9a","2025-06-06T16:18:48.000+02:00","2026-04-21T08:46:29.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331161666","","PCB17778.sanef.groupe","PCB17778","28:C5:D2:9F:C3:6A","10.255.2.180","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y3Q","","'+02:00","2026-04-20T08:25:59.000+02:00","SANEF\CAPRON","Cloud Agent","7b69fbbd-6b4a-43d0-87e1-4b1bbd597c08","2025-06-05T15:13:19.000+02:00","2026-04-22T08:48:05.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"377213567","351951265","PCB16037.sanef.groupe","PCB16037","48:9E:BD:4B:91:02","10.200.31.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.06.02","8CC129283B","8CC129283B","'+02:00","2026-03-31T08:26:08.000+02:00","SANEF\botte","Cloud Agent","28113438-0bfa-4865-8b92-7991fa4ba8a1","2025-11-17T17:00:10.000+02:00","2026-04-21T08:42:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"366115477","347199363","PCB24147.sanef.groupe","PCB24147","24:FB:E3:5A:26:EC","10.101.243.226","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook X G1i Notebook","1","2200","Intel(R) Core(TM) Ultra 7 258V","32240","HP X90 Ver. 01.01.07","5CG511274Z","","'+02:00","2026-04-15T22:41:54.000+02:00","SANEF\fanguet","Cloud Agent","b41ed93c-7470-4eee-b495-5dbe1d6eeb02","2025-10-07T13:07:49.000+02:00","2026-04-21T08:41:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"359125417","","PCB24186.sanef.groupe","PCB24186","10:B6:76:97:D4:D3","10.99.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLC","","'+02:00","2026-04-19T10:02:46.000+02:00","SANEF\collard","Cloud Agent","a78b9841-f38a-4798-9d8f-e292ef1cdb69","2025-09-12T10:00:26.000+02:00","2026-04-21T08:38:03.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"327606224","","PCB20691.sanef.groupe","PCB20691","58:1C:F8:EB:6A:40","192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQ5","","'+02:00","2026-04-08T10:14:51.000+02:00","SANEF\MINARD-URBAN","Cloud Agent","76cac109-be4a-4af5-9380-21ff8332d5aa","2025-05-27T19:03:17.000+02:00","2026-04-22T09:04:06.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"349251465","339904469","PCB22668.sanef.groupe","PCB22668","E4:60:17:CB:7B:F4","10.220.31.55,10.255.4.183","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764D2","","'+02:00","2026-04-14T12:58:21.000+02:00","Elisabeth.Rocca@sapn.fr","Cloud Agent","c81a4cf1-d569-4d65-858d-23a14fbdc805","2025-08-05T16:33:11.000+02:00","2026-04-21T08:35:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"331101993","","PCB18714.sanef.groupe","PCB18714","BC:0F:F3:3D:48:08","10.2.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224D38","","'+02:00","2026-04-07T14:37:54.000+02:00","SANEF\flamand","Cloud Agent","043b1b57-0fe6-4879-8a7c-3d3a0298ab06","2025-06-05T10:57:41.000+02:00","2026-04-21T08:32:27.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"305325421","322689788","PCB18481.sanef.groupe","PCB18481","D0:AD:08:AA:50:8D","10.255.2.173,10.107.31.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764LD","","'+02:00","2026-04-14T08:14:40.000+02:00","SANEF\balavoine","Cloud Agent","dd3c8db3-c74d-46d2-ab21-985d478cdef5","2025-03-04T19:29:15.000+02:00","2026-04-21T08:30:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"304884109","322660837","PCB18474.sanef.groupe","PCB18474","D0:AD:08:AA:4F:BD","10.107.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764CP","","'+02:00","2026-04-16T15:23:50.000+02:00","SANEF\arnouldi","Cloud Agent","939e5231-e749-48a6-9649-d0d0b18eb28d","2025-03-04T14:11:20.000+02:00","2026-04-21T08:30:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","241.0" +"332661497","","PCB21018.sanef.groupe","PCB21018","E0:C2:64:59:C9:D2","10.205.0.146,192.168.1.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD336NWFC","","'+02:00","2026-04-02T09:01:25.000+02:00","SANEF\GRANGE-ext","Cloud Agent","28e2d9af-47fc-409a-b250-fb35c64e7cb3","2025-06-11T16:03:18.000+02:00","2026-04-21T08:28:00.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331425423","","PCB23519.sanef.groupe","PCB23519","C8:6E:08:88:E2:8A","10.255.3.160","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4G","","'+02:00","2026-04-08T10:35:23.000+02:00","SANEF\GOUMENT","Cloud Agent","08c8da63-ebaf-44f5-8cf9-fdad4d741bed","2025-06-06T12:47:32.000+02:00","2026-04-22T09:02:32.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"281432893","","PCB21318.sanef.groupe","PCB21318","D0:AD:08:AA:50:70","10.255.1.147,10.220.31.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KG","","'+02:00","2026-04-01T10:45:19.000+02:00","SANEF\breants","Cloud Agent","3e1d8739-7128-47c0-8317-1a14867a58d7","2024-11-22T11:27:01.000+02:00","2026-04-21T08:20:22.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"285481462","309654802","SVP22866.sanef-int.adds","SVP22866","D0:AD:08:A3:7D:BC","10.92.5.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNM","","'+02:00","2026-04-20T11:45:50.000+02:00","Superviseur","Cloud Agent","5cf663db-1bae-4be8-853b-24174aa98420","2024-12-10T13:37:22.000+02:00","2026-04-21T08:10:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"331442489","","PCB23534.sanef.groupe","PCB23534","C8:6E:08:8A:45:BC","10.255.2.155","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4N","","'+02:00","2026-04-01T11:10:43.000+02:00","SANEF\DOUSSET","Cloud Agent","d159d7ec-f39b-4794-9606-f721ca3bf9cf","2025-06-06T14:51:56.000+02:00","2026-04-21T08:06:36.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331429903","","PCB23527.sanef.groupe","PCB23527","C8:6E:08:8A:58:31","10.205.0.40,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L84","","'+02:00","2026-04-17T08:01:23.000+02:00","SANEF\rigollot","Cloud Agent","02346268-085f-4b5d-aada-541e3b2c135f","2025-06-06T14:01:06.000+02:00","2026-04-21T08:06:28.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"333980009","333987096","PCB24126.sanef.groupe","PCB24126","48:EA:62:C8:83:75","192.168.1.24,10.107.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6K","","'+02:00","2026-04-14T12:01:39.000+02:00","SANEF\LEFEBVREX","Cloud Agent","15ed10d2-d81e-4d2d-a077-0375369e1a3b","2025-06-17T10:37:48.000+02:00","2026-04-21T08:04:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"360424581","","PCB18079.sanef.groupe","PCB18079","64:D6:9A:27:BC:A8","192.168.1.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HR6","","'+02:00","2026-03-30T09:07:41.000+02:00","SANEF\GUIZELIN","Cloud Agent","ae6a7da9-fe64-48b8-8624-45aa92f10015","2025-09-17T10:11:03.000+02:00","2026-04-21T07:48:26.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"318827679","328215742","PCB22879.sanef.groupe","PCB22879","D0:AD:08:A7:28:61","10.152.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YM1","8CC3502YM1","'+02:00","2026-04-21T04:47:16.000+02:00","SANEF\CABAILLE","Cloud Agent","e34f5ab9-5f7a-486a-99f8-422e3c7adcc3","2025-04-23T17:24:27.000+02:00","2026-04-21T07:45:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"305248036","322677728","PCB22661.sanef.groupe","PCB22661","D0:AD:08:AA:50:28","10.107.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H4","","'+02:00","2026-04-02T08:32:54.000+02:00","SANEF\staquet","Cloud Agent","74f7345c-1075-4c34-bc55-389f8db1a177","2025-03-04T17:05:03.000+02:00","2026-04-21T07:44:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"305238828","322677328","PCB18492.sanef.groupe","PCB18492","D0:AD:08:AA:50:13","10.107.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GG","","'+02:00","2026-04-01T17:51:44.000+02:00","SANEF\damiens","Cloud Agent","5a6a9459-e9e4-4bae-b973-50dd2d636308","2025-03-04T17:01:25.000+02:00","2026-04-21T06:55:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"335482466","334619119","PCB24176.sanef.groupe","PCB24176","24:FB:E3:F3:F9:07","10.3.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XL","","'+02:00","2026-03-30T05:32:58.000+02:00","SANEF\kuchara","Cloud Agent","3c7027ae-347f-48d6-9e4b-37ed7a06cd7c","2025-06-23T11:45:16.000+02:00","2026-04-21T06:26:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"340643848","","SVP22704.sanef-int.adds","SVP22704","D0:AD:08:A4:73:C0","10.107.2.29,169.254.251.52","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764CR","","'+02:00","2026-04-17T17:26:24.000+02:00","Superviseur","Cloud Agent","90144a3e-a33d-41c9-8bad-e58485966e11","2025-07-10T06:37:19.000+02:00","2026-04-21T06:14:01.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"364815609","346640246","PCB25812.sanef.groupe","PCB25812","F8:ED:FC:AB:12:03","10.5.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CRM","","'+02:00","2026-04-20T05:50:01.000+02:00","SANEF\tartas","Cloud Agent","78c1995e-2211-4134-9afa-c60bbfe8c750","2025-10-01T21:53:35.000+02:00","2026-04-21T05:49:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","347.0" +"129733729","192230947","PCB18431.sanef.groupe","PCB18431","84:69:93:E1:0A:25","10.200.31.31","fe80::22bc:ebc0:e08d:60d0","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.08.11","5CG21724KC","","'+02:00","2026-04-20T08:49:45.000+02:00","SANEF\martinkovic","Cloud Agent","a3ff98f7-3146-4e08-9fce-f4923d2abbdc","2022-06-30T09:13:04.000+02:00","2026-04-22T10:48:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"245518417","286506473","MTO20923.sanef.groupe","MTO20923","BC:0F:F3:87:6F:AE","10.100.39.73","fe80::5377:f80e:57b:3ca4","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.4890) 64-Bit","23H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3290LLN","","'+02:00","2025-11-07T12:23:16.000+02:00","SANEF\meteonewsW11","Cloud Agent","b785abf0-cf99-483c-8325-1912001ce6fc","2024-06-21T12:36:17.000+02:00","2026-04-21T04:18:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"321553872","329076842","PCB23617.sanef.groupe","PCB23617","6C:0B:5E:EC:4E:F9","10.105.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L86","","'+02:00","2026-04-08T10:21:02.000+02:00","SANEF\DUDA","Cloud Agent","8f5bd9e9-8a34-42c0-87b6-3f7abcc5391a","2025-05-02T11:22:28.000+02:00","2026-04-21T04:08:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","256.0" +"331108947","","PCB17651.sanef.groupe","PCB17651","D0:AD:08:E4:D1:BB","10.189.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVJ","","'+02:00","2026-04-17T14:49:37.000+02:00","SANEF\FINET","Cloud Agent","1274818f-1e2a-4100-9bfc-fd14291b3f67","2025-06-05T11:21:37.000+02:00","2026-04-21T03:10:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"358859662","344320526","PCB24210.sanef.groupe","PCB24210","10:B6:76:95:8B:AE","10.89.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZH","","'+02:00","2026-04-14T07:54:57.000+02:00","SANEF\SILLY","Cloud Agent","78845044-b3ed-40fc-ac61-67e60850ddca","2025-09-11T13:53:14.000+02:00","2026-04-21T02:45:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","252.0" +"412885399","366436475","GTC18237","GTC18237","5C:60:BA:59:EC:EA","10.155.210.20","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y8H","8CC2250Y8H","'+02:00","2026-04-01T11:22:43.000+02:00","gtc-client","Cloud Agent","35551c8b-b8d2-4f86-80a1-d02254bf3ad4","2026-04-01T11:26:01.000+02:00","2026-04-21T02:28:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","341.0" +"335702402","","PCB24178.sanef.groupe","PCB24178","24:FB:E3:F3:BA:7C","10.89.31.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XT","","'+02:00","2026-04-20T19:20:35.000+02:00","SANEF\STORME","Cloud Agent","0a546a68-06e5-463f-bd96-bb2e2c521703","2025-06-23T15:42:54.000+02:00","2026-04-21T01:32:34.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"333993604","333994375","PCB24114.sanef.groupe","PCB24114","48:EA:62:C8:63:90","10.104.30.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6M","","'+02:00","2026-03-29T11:16:25.000+02:00","SANEF\hue","Cloud Agent","7a2a03c0-d560-4312-8fea-cef93c45f2c9","2025-06-17T11:45:58.000+02:00","2026-04-21T00:13:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"377408736","352036362","PCB24349.sanef.groupe","PCB24349","10:B6:76:95:8B:AF","10.100.39.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7171) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZJ","","'+02:00","2026-04-07T08:19:24.000+02:00","SANEF\VANOVERBEKE","Cloud Agent","a0d6b902-3542-41bc-9afd-76bc50edb13b","2025-11-18T11:43:42.000+02:00","2026-04-20T23:56:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","351.0" +"317577351","327675672","PCB23761.sanef.groupe","PCB23761","C8:6E:08:47:7E:1C","10.108.31.10,192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H33","","'+02:00","2026-04-17T12:27:48.000+02:00","SANEF\DUBOISG","Cloud Agent","1f110ed4-b69d-4727-89f4-14cc55de7785","2025-04-18T11:04:35.000+02:00","2026-04-20T23:21:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"313809924","326118044","SVP18480.sanef-int.adds","SVP18480","D0:AD:08:A2:AE:CA","10.107.2.29,10.192.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764KF","","'+02:00","2025-12-20T21:46:18.000+02:00","Superviseur","Cloud Agent","6b2e3061-2cee-4156-bf6b-5328a7c9aa39","2025-04-04T18:36:23.000+02:00","2026-04-20T21:50:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"413992083","366909760","PCB22463.sanef.groupe","PCB22463","F0:20:FF:9A:DF:26","10.205.0.24,172.20.10.5","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVB","","'+02:00","2026-04-16T07:45:26.000+02:00","SANEF\CHAUDOT","Cloud Agent","401b693c-1a3d-438b-b819-cd9cee620458","2026-04-07T11:36:55.000+02:00","2026-04-20T21:31:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"320506426","328733810","PCB21156.sanef.groupe","PCB21156","F0:20:FF:9A:FA:CE","10.255.2.195,10.205.0.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.03.00","5CG3501HVD","","'+02:00","2026-04-09T16:40:27.000+02:00","SANEF\WEDERICH","Cloud Agent","a0c1f1f4-6967-4648-b0b4-6f0d886b6024","2025-04-29T15:34:44.000+02:00","2026-04-20T21:17:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","253.0" +"335484683","334621071","PCB20614.sanef.groupe","PCB20614","BC:0F:F3:3D:48:47","10.205.0.7,10.100.38.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRP","","'+02:00","2026-04-01T11:08:44.000+02:00","SANEF\jouanne","Cloud Agent","87774a7f-06eb-445b-8ead-a7fe5b71adb8","2025-06-23T12:03:22.000+02:00","2026-04-20T21:15:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","63.0" +"327564746","","PCB23682.sanef.groupe","PCB23682","C8:6E:08:88:FD:B0","10.205.0.88,192.168.1.175","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9Y","","'+02:00","2026-03-30T17:22:30.000+02:00","aurelia.barbier@sanef.com","Cloud Agent","697f9bfa-954a-4982-b17f-c55a8876b61b","2025-05-27T14:09:22.000+02:00","2026-04-20T20:47:34.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"386721821","356325082","PCB16056.sanef.groupe","PCB16056","48:9E:BD:4B:90:21","10.2.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16155","HP S21 Ver. 02.06.02","8CC129284D","","'+02:00","2026-03-30T10:09:39.000+02:00","SANEF\moretti","Cloud Agent","9e106c56-f08f-40cd-95dd-19b8b8e1accd","2025-12-29T15:58:57.000+02:00","2026-04-20T20:16:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"324025716","","PCB20740.sanef.groupe","PCB20740","58:1C:F8:EB:79:9F","10.255.2.224,192.168.1.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DQQ","","'+02:00","2026-04-17T11:19:21.000+02:00","SANEF\bourdon","Cloud Agent","f8969a82-798d-4ff0-aefb-6e83309c5e45","2025-05-12T12:00:56.000+02:00","2026-04-20T19:50:56.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"344008066","338216982","PCB23572.sanef.groupe","PCB23572","C8:6E:08:88:F0:31","192.168.1.32,10.255.4.241","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L50","","'+02:00","2026-04-08T20:23:03.000+02:00","SANEF\isaacf","Cloud Agent","c364b630-dbea-4fe2-8c53-00e8f62dcafc","2025-07-22T16:11:29.000+02:00","2026-04-20T19:40:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"350501265","340446201","PCB25868.sanef.groupe","PCB25868","F8:ED:FC:AB:F1:DF","10.205.0.125,10.101.243.159","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CW6","","'+02:00","2026-04-18T09:18:05.000+02:00","SANEF\BOUET","Cloud Agent","5c67bb7b-931a-482d-b915-3042edb10c73","2025-08-11T09:33:38.000+02:00","2026-04-20T19:24:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"173355718","227827566","vvbooosea1.sanef-rec.fr","","00:50:56:9c:b3:11","10.45.6.69","fe80::250:56ff:fe9c:b311","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c5 9e d6 a0 56 60-69 20 4f 09 f0 dd 32 86","No Asset Tag","'+02:00","2026-03-12T11:45:33.000+02:00","cybreconcile","Cloud Agent","3a4a7f04-ade1-4811-b513-86fa27408488","2023-06-07T10:37:31.000+02:00","2026-04-20T19:19:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Recette,Flux Libre,flux_libre","141.0" +"417452432","368257913","PCB17088.sanef.groupe","PCB17088","E0:70:EA:A8:75:89","10.252.4.6","fe80::5886:ea76:52b0:1ac4","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","3096","Intel(R) Core(TM) i5-10500 CPU @ 3.10GHz","16159","HP S21 Ver. 02.25.00","8CC14326DZ","8CC14326DZ","'+02:00","2026-04-20T17:45:46.000+02:00","","Cloud Agent","e7a59b37-68af-42f5-8cd2-9a0d05882c3c","2026-04-20T17:38:09.000+02:00","2026-04-20T18:28:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"354905032","342612320","PCB18040.sanef.groupe","PCB18040","64:D6:9A:1D:39:31","10.205.0.116,192.168.3.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSL","","'+02:00","2026-04-09T10:03:30.000+02:00","SANEF\COSSE-ext","Cloud Agent","906f77ce-5405-4a42-9427-9115de389fa4","2025-08-27T14:57:35.000+02:00","2026-04-20T18:25:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"322022919","329329469","PCB23673.sanef.groupe","PCB23673","6C:0B:5E:EE:CC:9B","10.205.0.59,10.200.31.56","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L5F","","'+02:00","2026-04-16T10:32:00.000+02:00","SANEF\cave","Cloud Agent","2e9c10bb-638e-44a9-a2cf-fc3ae4ab96ac","2025-05-05T13:20:39.000+02:00","2026-04-20T18:02:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"413141831","366551698","PCB24096.sanef.groupe","PCB24096","10:B6:76:7D:40:81","10.252.4.34,10.100.39.121","fe80::6742:6840:3e6e:a057","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZF","","'+02:00","2026-04-20T15:53:26.000+02:00","","Cloud Agent","0b586252-bda2-4f5c-addd-ce9fe43dc255","2026-04-02T15:17:08.000+02:00","2026-04-20T16:44:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"355232539","342766926","PCB17808.sanef.groupe","PCB17808","28:C5:D2:9E:44:EA","10.255.4.9,192.168.1.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y4V","","'+02:00","2026-04-10T09:15:57.000+02:00","SANEF\OCTAU","Cloud Agent","9f9c59e8-659a-4265-b8e9-31fc4aeb07a4","2025-08-28T16:39:12.000+02:00","2026-04-20T16:35:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"318436041","328050559","PCB17807.sanef.groupe","PCB17807","28:C5:D2:9E:3E:B9","192.168.1.47,10.205.0.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4F","","'+02:00","2026-04-20T08:50:57.000+02:00","SANEF\PATTOU","Cloud Agent","86c5d61e-eb95-4359-8ac0-8d3943ef8079","2025-04-22T15:57:02.000+02:00","2026-04-20T16:02:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"407449347","364082583","PCB21094.sanef.groupe","PCB21094","D0:AD:08:AA:50:9B","10.107.31.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764LV","","'+02:00","2026-04-01T12:58:04.000+02:00","SANEF\SAID","Cloud Agent","d72db241-88d4-4532-a02b-bf996a5fbd30","2026-03-10T18:31:24.000+02:00","2026-04-20T15:12:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"321553605","329073257","PCB22352.sanef.groupe","PCB22352","D0:AD:08:A3:E7:1B","10.206.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YXW","8CC3502YXW","'+02:00","2026-04-07T13:03:36.000+02:00","SANEF\MENNEREUIL","Cloud Agent","42c9135e-8ae2-436b-83f9-6135406b02d7","2025-05-02T10:25:19.000+02:00","2026-04-20T14:28:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"317706215","327745805","PCB23711.sanef.groupe","PCB23711","C8:6E:08:88:FD:60","10.108.31.9,10.255.4.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L87","","'+02:00","2026-04-03T08:19:32.000+02:00","SANEF\THEVENIN","Cloud Agent","7696a19c-d88d-4bf6-bbfb-bf025f28f461","2025-04-18T13:20:48.000+02:00","2026-04-20T14:07:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"281061310","305771553","PCB22531.sanef.groupe","PCB22531","D0:AD:08:AA:50:2A","10.202.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764H6","","'+02:00","2026-03-31T14:12:44.000+02:00","SANEF\savaryf","Cloud Agent","f57dc1d9-6a55-42e6-9e49-0cee80307fee","2024-11-21T16:14:55.000+02:00","2026-04-20T13:44:20.000+02:00","64-Bit","2","SCA,PM,GAV","Workstation,Cloud Agent","0.0" +"322034316","329331991","PCB23622.sanef.groupe","PCB23622","C8:6E:08:8A:58:8B","10.205.0.73,192.168.1.81","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9J","","'+02:00","2026-03-31T08:13:13.000+02:00","SANEF\LASGI","Cloud Agent","713d3ef1-a242-40a6-9450-b95dc00a5c7b","2025-05-05T14:02:30.000+02:00","2026-04-20T13:35:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"320418494","328702039","PCB23627.sanef.groupe","PCB23627","6C:0B:5E:EE:A3:99","10.205.0.82,10.100.39.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9M","","'+02:00","2026-04-03T09:31:03.000+02:00","SANEF\ALVES","Cloud Agent","2f42765e-731d-4e52-984b-59bc143d08e0","2025-04-29T09:59:53.000+02:00","2026-04-20T13:31:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","58.0" +"354632280","342475347","PCB17775.sanef.groupe","PCB17775","28:C5:D2:9E:44:AE","10.255.4.244","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4N","","'+02:00","2026-04-16T17:46:00.000+02:00","SANEF\DELEAU","Cloud Agent","cb005130-9a04-4db5-aac8-271f815b4ecf","2025-08-26T14:03:17.000+02:00","2026-04-20T13:22:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"350872267","340945285","SVP22624.sanef-int.adds","SVP22624","D0:AD:08:A2:AE:59","10.82.15.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764FZ","","'+02:00","2026-03-26T09:13:50.000+02:00","Superviseur","Cloud Agent","7a62fee1-d9f9-4420-884a-9da2ec1eb7b4","2025-08-12T16:08:02.000+02:00","2026-04-20T13:11:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"322404057","329466185","PCB21292.sanef.groupe","PCB21292","30:F6:EF:A4:9A:70","10.4.31.6,192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJG","","'+02:00","2026-04-15T08:15:06.000+02:00","SANEF\DEAZEVEDO","Cloud Agent","e5d60633-d42c-49ba-b8cc-398d90fd579b","2025-05-06T15:46:56.000+02:00","2026-04-20T13:09:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"410108159","365186192","vriadawdc3","VRIADAWDC3","00:50:56:9C:02:BA","10.45.0.133","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c a0 ac d1 5c 6f d1-eb c5 6b ac 17 ae 21 50","NoAssetTag","'+02:00","2026-02-19T17:12:15.000+02:00","Administrateur","Cloud Agent","363e9fc8-1c8d-4149-bdfd-5b7d5ce00923","2026-03-20T18:22:05.000+02:00","2026-04-20T12:57:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","APP_SAM,Cloud Agent,OS-WIN-SRV DYN,Recette","256.0" +"374942542","350845052","PCV22837.sanef-int.adds","PCV22837","D0:AD:08:A7:27:D6","10.5.7.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YSZ","","'+02:00","2026-04-07T14:41:46.000+02:00","Operateur","Cloud Agent","1b1b7f76-60d8-4439-994b-73523c3be87d","2025-11-07T13:19:07.000+02:00","2026-04-20T12:36:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"395087203","359301969","PCB18609.sanef.groupe","PCB18609","64:D6:9A:74:76:2E","10.205.0.73,192.168.0.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WD1","","'+02:00","2026-04-16T08:01:43.000+02:00","SANEF\benne","Cloud Agent","aab0e5c8-5772-4b23-bb43-f0a3c0c85515","2026-01-26T14:47:32.000+02:00","2026-04-20T12:34:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"327324433","","PCB21157.sanef.groupe","PCB21157","F0:20:FF:9A:C5:AE","10.205.0.169,192.168.1.55","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.03.00","5CG3501HWD","","'+02:00","2026-03-31T09:08:07.000+02:00","SANEF\HOUEL","Cloud Agent","6aa16aa8-eec1-44f7-9c9f-c805e9c2e956","2025-05-26T12:55:09.000+02:00","2026-04-20T12:07:21.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"412426241","366151286","PCB21348.sanef.groupe","PCB21348","D0:AD:08:AA:4F:D0","10.220.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764D9","","'+02:00","2026-04-10T07:31:46.000+02:00","SANEF\macon","Cloud Agent","e7875561-5f1c-41e2-aff7-689bd4cf999d","2026-03-30T16:50:32.000+02:00","2026-04-20T12:02:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"321551755","329086575","PCB23661.sanef.groupe","PCB23661","6C:0B:5E:EE:DC:47","10.205.0.147,10.106.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6J","","'+02:00","2026-04-03T08:55:47.000+02:00","SANEF\KYNDT","Cloud Agent","36219bbf-da07-4e0c-b9a9-592b71ea7e41","2025-05-02T13:03:33.000+02:00","2026-04-20T11:58:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"363309552","346054205","PCB18024.sanef.groupe","PCB18024","38:CA:84:52:09:3F","10.200.31.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRL","","'+02:00","2026-03-30T09:21:59.000+02:00","SANEF\boulard","Cloud Agent","3030592b-e4d1-46dd-8f35-9431d29aa8d0","2025-09-26T15:52:52.000+02:00","2026-04-20T11:57:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"403864752","362591796","PCB22701.sanef.groupe","PCB22701","E4:60:17:CB:E6:66","10.205.0.172,192.168.0.50","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FH","","'+02:00","2026-04-03T09:21:14.000+02:00","SANEF\mlanhoro-ext","Cloud Agent","95615a96-d19d-4167-8192-19b26788b471","2026-02-24T16:47:38.000+02:00","2026-04-20T11:55:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"353110348","341842654","PCB18071.sanef.groupe","PCB18071","64:D6:9A:21:82:7A","10.205.0.235,192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HTY","","'+02:00","2026-04-04T16:38:07.000+02:00","SANEF\CHUOP","Cloud Agent","2cff3663-b97e-4076-8087-8ad19b9da098","2025-08-20T16:06:41.000+02:00","2026-04-20T11:52:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","146.0" +"402451872","362027512","PCB24235.sanef.groupe","PCB24235","24:FB:E3:CD:06:2E","10.101.243.213","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M5W","","'+02:00","2026-04-20T09:08:16.000+02:00","SANEF\piednoir-ext","Cloud Agent","56646be3-c035-4cc5-85d7-e64f4c99b9a3","2026-02-19T19:00:16.000+02:00","2026-04-20T11:45:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"323173882","329806899","PCB23584.sanef.groupe","PCB23584","C8:6E:08:8A:51:10","10.255.2.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB0","","'+02:00","2026-03-12T09:36:59.000+02:00","SANEF\clavons","Cloud Agent","ff909a1b-94a7-46d5-8be3-74094026c727","2025-05-09T12:05:17.000+02:00","2026-04-20T11:33:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","138.0" +"384581014","355076899","PCB22702.sanef.groupe","PCB22702","D0:AD:08:AA:50:78","10.101.243.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764KQ","","'+02:00","2026-04-10T09:30:27.000+02:00","SANEF\KOUBAA-ext","Cloud Agent","d9dda073-ab25-4d2a-8757-6351d63ca450","2025-12-17T17:51:51.000+02:00","2026-04-20T11:29:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"335441245","","PCB24119.sanef.groupe","PCB24119","C8:58:B3:0B:5B:80","10.205.0.122,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6C","","'+02:00","2026-04-03T10:46:15.000+02:00","SANEF\duve","Cloud Agent","3095389c-d903-4ee7-a729-bc6ae0855c26","2025-06-23T09:45:36.000+02:00","2026-04-20T10:46:31.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"324697414","330336496","PCB17779.sanef.groupe","PCB17779","28:C5:D2:9F:C4:14","192.168.1.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y48","","'+02:00","2026-04-20T09:59:08.000+02:00","SANEF\jourdainf","Cloud Agent","9a0f15e3-11e8-4d5f-bedb-9af849c6c513","2025-05-14T12:14:07.000+02:00","2026-04-20T10:36:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","59.0" +"411687552","365758915","PCB21106.sanef.groupe","PCB21106","E4:60:17:CA:41:03","10.255.4.219","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764LQ","","'+02:00","2026-04-09T19:48:17.000+02:00","SANEF\lestrat-ext","Cloud Agent","ecbe52e0-2977-467c-b0ba-555d7bda60b6","2026-03-26T18:46:36.000+02:00","2026-04-20T10:30:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"397104243","360208361","PCB21135.sanef.groupe","PCB21135","28:C5:D2:9F:C3:CE","10.255.2.218","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y4P","","'+02:00","2026-04-20T09:00:51.000+02:00","SANEF\martinkovic","Cloud Agent","37935e35-1b90-4783-8bf8-3de12285d811","2026-02-03T11:28:27.000+02:00","2026-04-20T10:24:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","339.0" +"359756317","","PCB24326.sanef.groupe","PCB24326","98:BD:80:9B:91:41","10.205.0.105,192.168.1.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD433C6YY","","'+02:00","2026-04-20T09:19:59.000+02:00","SANEF\MAGNE","Cloud Agent","0024c223-9851-441f-aede-9dd0fbf2a7a5","2025-09-15T12:28:19.000+02:00","2026-04-20T09:54:32.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"417358618","368159277","PCB17061.sanef.groupe","PCB17061","20-1E-88-69-E8-68, 20-1E-88-69-E8-67, 22-1E-88-69-E8-67","192.168.1.118","2a01:cb14:1dd:9800:285a:56e4:556b:6b26","Windows / Client","Microsoft Windows 10 Pro (22H2 Build 19045)","22H2","Computers / Unidentified","Computers","","","","","","5CD133FPV1","","'+02:00","","","Cloud Agent","c7f27895-c534-4931-96be-c6f54d855c31","2026-04-20T09:48:11.000+02:00","2026-04-20T09:48:10.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"327522961","","PCB23514.sanef.groupe","PCB23514","C8:6E:08:8A:45:58","10.205.0.128,169.254.183.199","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBH","","'+02:00","2026-03-30T13:28:51.000+02:00","SANEF\fevre","Cloud Agent","76825010-dda6-4b39-a4c3-a1cf7d2cbd01","2025-05-27T10:49:06.000+02:00","2026-04-20T09:24:29.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"321036659","328906966","PCB23694.sanef.groupe","PCB23694","C8:6E:08:88:E2:76","10.205.0.22,192.168.0.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6Q","","'+02:00","2026-03-31T07:15:48.000+02:00","SANEF\COQUELLE","Cloud Agent","a6efcdac-3a64-4f51-8f3a-f30f636f1f29","2025-04-30T14:57:21.000+02:00","2026-04-20T09:18:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"379875748","353009586","PCV22875.sanef-int.adds","PCV22875","D0:AD:08:A3:E7:99","10.137.3.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YMG","","'+02:00","2025-11-27T18:32:05.000+02:00","Operateur","Cloud Agent","dde18088-bfbf-4c54-b3f3-4a9bfb54e958","2025-11-27T19:01:11.000+02:00","2026-04-20T09:12:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"323987697","","PCB23749.sanef.groupe","PCB23749","6C:0B:5E:EE:93:6E","10.4.31.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H59","","'+02:00","2026-03-30T17:17:31.000+02:00","SANEF\vernant","Cloud Agent","ccf90727-a301-420b-af2b-29f13300b159","2025-05-12T10:00:15.000+02:00","2026-04-20T08:28:41.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"359721618","","PCB24223.sanef.groupe","PCB24223","70:15:FB:7E:21:38","10.106.31.10,10.255.2.175","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYC","","'+02:00","2026-04-14T08:34:22.000+02:00","SANEF\HERMANT","Cloud Agent","e6a6d3ca-829b-48ac-9ddb-c984744c034b","2025-09-15T10:18:08.000+02:00","2026-04-20T08:26:47.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"330698020","","PCB21020.sanef.groupe","PCB21020","64:4E:D7:2E:21:EE","10.4.31.71","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD336NWDZ","","'+02:00","2026-04-01T08:09:04.000+02:00","SANEF\bernards","Cloud Agent","3c8f11a4-3282-45fb-a11d-3cdaf77e1eb7","2025-06-04T10:01:27.000+02:00","2026-04-20T08:12:46.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"325944997","","PCB20731.sanef.groupe","PCB20731","58:1C:F8:EB:78:0F","10.200.30.15,10.255.1.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224D47","","'+02:00","2026-03-31T17:30:41.000+02:00","SANEF\glory","Cloud Agent","b4b7cc6c-db7c-494e-bffb-2f2b71488557","2025-05-20T12:04:37.000+02:00","2026-04-20T08:05:14.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"334960502","","PCB24082.sanef.groupe","PCB24082","F6:09:1D:72:F4:E5","10.205.0.14,192.168.0.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5062RC4","","'+02:00","2026-04-16T17:45:18.000+02:00","SANEF\DELAHAY","Cloud Agent","7a485add-a965-4c1b-b942-3879fdae39d4","2025-06-20T12:30:14.000+02:00","2026-04-20T08:03:34.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"396119002","359768185","PCB25917.sanef.groupe","PCB25917","C4:0F:08:AC:B5:CA","192.168.1.88","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222N","","'+02:00","2026-04-17T08:21:33.000+02:00","SANEF\DUFOURA","Cloud Agent","fc7d9239-9064-4b63-97fa-8ed2704fd30c","2026-01-30T15:08:35.000+02:00","2026-04-20T08:01:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"417328565","368144064","PCB22818.sanef.groupe","PCB22818","D0-AD-08-A3-E6-E2","10.105.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","8CC3502YQ6","","'+02:00","","","Cloud Agent","1fa17fe5-0ba4-4b3f-a44f-898ab6d9d7c1","2026-04-20T07:04:42.000+02:00","2026-04-20T07:04:41.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"281047365","305771551","PCB21336.sanef.groupe","PCB21336","D0:AD:08:AA:50:77","10.202.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764KP","","'+02:00","2026-04-02T08:23:33.000+02:00","SANEF\baillemont","Cloud Agent","3f7e950a-5ce6-432a-b614-5faec96f85e9","2024-11-21T16:15:04.000+02:00","2026-04-20T06:44:20.000+02:00","64-Bit","2","SCA,PM,GAV","Workstation,Cloud Agent","0.0" +"349485901","340009810","PCB25806.sanef.groupe","PCB25806","F8:ED:FC:AB:02:CD","10.5.30.18,10.5.31.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV2","","'+02:00","2026-04-16T21:03:00.000+02:00","SANEF\henriet","Cloud Agent","e5e97f79-96c8-4b12-a9c1-3ab6ca4a5bd4","2025-08-06T12:34:58.000+02:00","2026-04-20T05:18:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"334758337","","PCB24084.sanef.groupe","PCB24084","24:FB:E3:33:7B:21","10.106.31.11,10.106.30.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5062RCY","","'+02:00","2026-04-17T12:12:01.000+02:00","SANEF\LEROYA","Cloud Agent","014a34f8-9fde-4a71-9a4f-ee1c7b4d269c","2025-06-19T17:10:10.000+02:00","2026-04-20T01:52:06.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"341837493","337285623","SVP22637.sanef-int.adds","SVP22637","D0:AD:08:A4:73:77","10.192.13.29,10.192.0.250","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764J4","","'+02:00","2026-03-16T11:17:02.000+02:00","Superviseur","Cloud Agent","edb0b649-8780-4ecd-8653-62ccb92f28a4","2025-07-15T06:47:15.000+02:00","2026-04-19T22:01:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"328612085","","PCB23680.sanef.groupe","PCB23680","C8:6E:08:8A:58:5E","10.205.0.32,192.168.1.79","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7Z","","'+02:00","2026-04-17T10:09:17.000+02:00","SANEF\richomme","Cloud Agent","a2a72ce2-92ef-4c06-b366-6db6b6aaad7c","2025-05-30T11:35:51.000+02:00","2026-04-19T18:47:19.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"356899321","343527902","PCB24099.sanef.groupe","PCB24099","C8:58:B3:34:17:78","10.205.0.19,192.168.1.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M50","","'+02:00","2026-04-15T09:27:49.000+02:00","SANEF\BLOND-ext","Cloud Agent","d91ae442-0def-499c-bde1-7d5b23fcee0d","2025-09-04T13:58:46.000+02:00","2026-04-19T16:46:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"342271741","337467568","PCB17765.sanef.groupe","PCB17765","28:C5:D2:9F:C4:23","10.205.0.207,192.168.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y46","","'+02:00","2026-04-17T09:28:52.000+02:00","SANEF\LOUATI","Cloud Agent","772c1882-0312-400c-92d5-e62af767b453","2025-07-16T16:03:11.000+02:00","2026-04-19T16:35:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","59.0" +"340537046","","SVP22626.sanef-int.adds","SVP22626","D0:AD:08:A4:73:52","10.192.8.29,10.142.3.18","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764HJ","","'+02:00","2026-04-14T10:25:11.000+02:00","Superviseur","Cloud Agent","f93a5439-6492-4a26-b768-9e15df9206b1","2025-07-09T20:01:08.000+02:00","2026-04-19T16:18:32.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"327578148","","PCB20686.sanef.groupe","PCB20686","58:1C:F8:E9:51:97","192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DSB","","'+02:00","2026-04-14T08:01:44.000+02:00","SANEF\jacquelin","Cloud Agent","e31fa95b-d3cb-4c1b-aae5-4913be2edc49","2025-05-27T15:33:18.000+02:00","2026-04-19T16:05:22.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"327506991","","PCB23583.sanef.groupe","PCB23583","C8:6E:08:88:F0:5E","10.205.1.6,192.168.1.26","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4L","","'+02:00","2026-04-14T10:47:04.000+02:00","SANEF\COEUR","Cloud Agent","d810f4b8-46bd-4025-be0c-d6cbff1bf8b4","2025-05-27T10:16:54.000+02:00","2026-04-19T16:05:07.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"350843633","340937181","PCB25811.sanef.groupe","PCB25811","28:95:29:1A:E6:72","10.205.0.39,192.168.68.107","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CV4","","'+02:00","2026-04-14T09:14:49.000+02:00","SANEF\MARTEAUC","Cloud Agent","ff0028ea-c4bb-46d2-ae40-64aea4e6c23f","2025-08-12T14:57:22.000+02:00","2026-04-19T14:19:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"359816288","","PCB24331.sanef.groupe","PCB24331","10:B6:76:95:8B:A1","10.205.0.40,10.105.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ2","","'+02:00","2026-04-14T08:05:36.000+02:00","SANEF\MELOUKI","Cloud Agent","0efb4010-35d1-4baf-8c23-bd55201dba60","2025-09-15T17:39:18.000+02:00","2026-04-19T13:16:40.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"368460951","348146989","PCB18743.sanef.groupe","PCB18743","BC:0F:F3:3D:08:D2","10.220.31.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQ9","","'+02:00","2026-04-02T21:41:08.000+02:00","severine.montalvo@sapn.fr","Cloud Agent","e9d72f0e-eeba-417a-bdc8-03ea76cc551d","2025-10-14T17:08:20.000+02:00","2026-04-19T12:42:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","252.0" +"353100235","341841261","PCB25848.sanef.groupe","PCB25848","28:95:29:1A:F1:B7","10.205.0.4,192.168.1.92","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CTN","","'+02:00","2026-04-15T09:12:16.000+02:00","SANEF\VANTILLARD","Cloud Agent","39384154-de2c-40ad-b303-aa34931228fb","2025-08-20T15:51:09.000+02:00","2026-04-19T12:30:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"353775005","342123613","SVP21076.sanef-int.adds","SVP21076","64:4E:D7:A4:2C:E2","10.92.8.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD336NWF5","","'+02:00","2026-04-14T08:02:19.000+02:00","Superviseur","Cloud Agent","eb8de4b2-a46d-4eb5-a54e-f22ae264cb65","2025-08-22T14:53:14.000+02:00","2026-04-19T12:11:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"323176461","329806900","PCB22904.sanef.groupe","PCB22904","D0:AD:08:A3:E7:95","10.105.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YNS","8CC3502YNS","'+02:00","2026-04-01T13:07:18.000+02:00","SANEF\payenb","Cloud Agent","9d2eac71-a6de-4af1-87c7-b38eda2ab7a1","2025-05-09T12:03:52.000+02:00","2026-04-19T11:41:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","247.0" +"325726204","","PCB20749.sanef.groupe","PCB20749","58:1C:F8:EB:79:22","169.254.50.83,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224D35","","'+02:00","2026-04-14T15:35:17.000+02:00","jerome.ferre@sanef.com","Cloud Agent","5c7efc54-c03f-4daf-a232-35bb908a56c4","2025-05-19T14:16:13.000+02:00","2026-04-19T11:07:11.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"321994295","329316390","PCB23728.sanef.groupe","PCB23728","C8:6E:08:49:2D:84","10.152.31.28,192.168.1.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H39","","'+02:00","2026-03-29T16:25:58.000+02:00","SANEF\saintebeuve","Cloud Agent","eac9b59c-a293-4b59-a508-eb7cddae6481","2025-05-05T10:42:04.000+02:00","2026-04-18T22:14:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"401615942","361785197","SVP18475.sanef-int.adds","SVP18475","D0:AD:08:A4:73:51","10.6.64.29,10.92.6.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764HH","","'+02:00","2026-04-02T15:41:21.000+02:00","Superviseur","Cloud Agent","efaef4f0-42b3-45a7-b220-c495e9e11a20","2026-02-17T17:43:06.000+02:00","2026-04-18T15:02:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"360032867","","PCB18730.sanef.groupe","PCB18730","58:1C:F8:EB:40:1F","192.168.1.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CSR","","'+02:00","2026-03-30T09:19:53.000+02:00","SANEF\pionnier","Cloud Agent","012ff2a8-9c73-4267-bc71-91dc211f1e26","2025-09-16T14:16:21.000+02:00","2026-04-18T12:47:12.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"357873287","343900662","PCB21203.sanef.groupe","PCB21203","D0:AD:08:AA:50:1B","10.220.31.64","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GQ","","'+02:00","2026-04-08T16:00:54.000+02:00","SANEF\leseurc","Cloud Agent","4974670b-2212-4a2c-aa19-8ee05d079cdc","2025-09-08T13:35:11.000+02:00","2026-04-18T12:30:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"322591008","329574280","PCB21289.sanef.groupe","PCB21289","30:F6:EF:A3:F0:C5","10.12.31.13,192.168.1.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKF","","'+02:00","2026-04-17T19:22:34.000+02:00","SANEF\becret","Cloud Agent","61410946-a265-4a8d-a85a-e3a48b70497c","2025-05-07T10:46:02.000+02:00","2026-04-18T12:09:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"348209822","339539472","PCB23685.sanef.groupe","PCB23685","C8:6E:08:8A:3C:43","10.205.0.19,192.168.1.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6T","","'+02:00","2026-04-13T17:18:15.000+02:00","SANEF\DELBOS","Cloud Agent","de9e695a-304e-4044-be47-1344d51d1197","2025-08-01T16:10:06.000+02:00","2026-04-18T11:49:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"356057370","343125229","PCB18091.sanef.groupe","PCB18091","64:D6:9A:21:81:8A","10.205.0.19,192.168.1.96","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HR3","","'+02:00","2026-04-18T11:26:34.000+02:00","SANEF\GOMEZGONZALEZ","Cloud Agent","21dfc9ec-089f-493c-8879-a63a8e19a57b","2025-09-01T14:18:20.000+02:00","2026-04-18T11:29:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"356305508","343246682","PCB18097.sanef.groupe","PCB18097","38:CA:84:52:E8:D5","10.205.0.50,10.101.243.89","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HS3","","'+02:00","2026-04-17T18:07:35.000+02:00","SANEF\GANDIL","Cloud Agent","0b7d4ae4-e3f1-49dc-b713-cc29d9e90402","2025-09-02T11:54:34.000+02:00","2026-04-18T10:56:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"321994023","329311106","PCB20834.sanef.groupe","PCB20834","C8:6E:08:49:2D:98","10.205.0.133,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H45","","'+02:00","2026-04-10T11:12:54.000+02:00","SANEF\normandf","Cloud Agent","57af8485-c0c5-42b8-8995-6135570de809","2025-05-05T09:46:30.000+02:00","2026-04-18T10:39:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"325688542","","PCB18044.sanef.groupe","PCB18044","38:CA:84:52:39:9C","10.205.0.44,10.100.39.63","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HT0","","'+02:00","2026-04-07T16:15:10.000+02:00","SANEF\ROUKOZ-DIAB","Cloud Agent","b4dd3c93-b507-4c77-bb7e-c36720f48332","2025-05-19T12:39:22.000+02:00","2026-04-18T09:26:09.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"361291519","345248178","PCB24207.sanef.groupe","PCB24207","10:B6:76:97:D4:B9","10.208.31.4,10.200.31.59","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YKJ","","'+02:00","2026-04-14T12:12:59.000+02:00","SANEF\galland","Cloud Agent","ef7e51c1-64ed-4cca-aba8-de2734cca21b","2025-09-19T17:37:48.000+02:00","2026-04-18T08:57:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"269316158","299220499","vtdsiaels1.sanef-rec.fr","","00:50:56:9c:69:b1","10.45.1.170","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f2 4c ab be 7e 59-88 61 ac 1e 41 bf dd d3","No Asset Tag","'+02:00","2026-01-06T13:57:31.000+02:00","cybsecope","Cloud Agent","cc8c6fbd-9bf1-48b9-8d0a-e937aad5fa4a","2024-10-01T10:52:18.000+02:00","2026-04-18T07:09:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Recette,Linux Server,Cloud Agent,Elasticsearch","139.0" +"364731184","346603429","PCB25839.sanef.groupe","PCB25839","F8:ED:FC:AB:02:B1","10.5.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CVG","","'+02:00","2026-04-14T05:28:31.000+02:00","SANEF\cagnet","Cloud Agent","8066b80e-7ef8-4921-8794-3a21540d3a83","2025-10-01T14:02:59.000+02:00","2026-04-18T03:16:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"323187973","329817766","PCB22815.sanef.groupe","PCB22815","D0:AD:08:A7:28:5F","10.152.31.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLS","8CC3502YLS","'+02:00","2026-03-28T09:11:59.000+02:00","SANEF\herent","Cloud Agent","e02271e8-44d2-4a7f-a146-86a920bdc52d","2025-05-09T14:15:07.000+02:00","2026-04-17T21:31:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"304915606","322671878","PCB22606.sanef.groupe","PCB22606","D0:AD:08:AA:4F:D2","10.107.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DC","","'+02:00","2026-04-16T14:36:30.000+02:00","SANEF\ghozi","Cloud Agent","0580dd92-84f2-4a15-b365-5cb40c5e575f","2025-03-04T15:49:35.000+02:00","2026-04-17T19:53:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"305109248","322677727","PCB21133.sanef.groupe","PCB21133","D0:AD:08:AA:50:B2","10.107.31.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764ML","","'+02:00","2026-03-31T17:02:13.000+02:00","SANEF\doyen","Cloud Agent","3821bafb-9230-4103-8d32-1067a29e3cf0","2025-03-04T17:03:43.000+02:00","2026-04-17T19:33:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"355989064","343097776","PCB18030.sanef.groupe","PCB18030","64:D6:9A:1D:38:E6","10.101.243.139,192.168.1.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HT9","","'+02:00","2026-03-30T09:01:08.000+02:00","SANEF\JOURNE","Cloud Agent","2654b8f1-22d0-4efe-94e8-1957050bacfe","2025-09-01T10:23:54.000+02:00","2026-04-17T18:57:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"129933754","192384050","vrpatalag1.sanef.groupe","VRPATALAG1","00:50:56:82:4E:EB","10.45.10.135","fe80::4eae:3207:194d:72bb","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8511) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 fc d7 ac 3a 89 b6-40 69 54 12 81 c3 18 9f","NoAssetTag","'+02:00","2026-04-08T12:52:46.000+02:00","Administrateur","Cloud Agent","dcf98675-19e8-4b75-916c-6b3cd3557a11","2022-07-01T09:33:45.000+02:00","2026-04-17T18:51:16.000+02:00","64-Bit","3","SCA,VM,PM,GAV","DFIN,Recette,Patrimoine,Cloud Agent,Windows Server,Lago,VRF_INCONNUE,OS-WIN-SRV DYN","48.0" +"356621961","343407653","PCB20712.sanef.groupe","PCB20712","58:1C:F8:EA:53:B7","10.205.0.227,192.168.1.46","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DS2","","'+02:00","2026-04-03T11:17:24.000+02:00","SANEF\PRESLE","Cloud Agent","f8409132-8b7e-4496-b42d-bbb23fb05dac","2025-09-03T14:06:53.000+02:00","2026-04-17T18:45:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"381938977","353737780","PCB20739.sanef.groupe","PCB20739","58:1C:F8:E9:B2:EF","192.168.1.184","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQV","","'+02:00","2026-04-03T19:21:02.000+02:00","SANEF\CLAVREUL","Cloud Agent","f2dab83d-f81e-40ca-9ad7-9dc336ccfe37","2025-12-05T15:48:17.000+02:00","2026-04-17T18:21:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"399888645","361320509","PCB25940.sanef.groupe","PCB25940","C4:0F:08:AC:D7:CB","10.205.1.35,192.168.1.249","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342232","","'+02:00","2026-04-13T08:52:26.000+02:00","SANEF\VONGSAVANH","Cloud Agent","721c0c7c-aa89-47c2-8316-21b02a6d1027","2026-02-13T10:37:32.000+02:00","2026-04-17T17:55:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"280846706","305636728","PCB21324.sanef.groupe","PCB21324","D0:AD:08:AA:4F:F1","10.205.0.36,192.168.1.28","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FC","","'+02:00","2026-04-01T10:40:04.000+02:00","SANEF\gondouin","Cloud Agent","8f9eca35-cab7-4ca5-bed2-01fb5a6b8e22","2024-11-20T17:06:11.000+02:00","2026-04-17T17:54:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"350573351","340489251","PCB25829.sanef.groupe","PCB25829","28:95:29:1E:59:42","10.101.243.36,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CSJ","","'+02:00","2026-04-03T08:57:14.000+02:00","SANEF\LEBASTARD","Cloud Agent","2f2b98c6-75c7-4e3a-bc27-f7adc883d24d","2025-08-11T15:53:57.000+02:00","2026-04-17T17:52:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"320075313","328613175","PCB23666.sanef.groupe","PCB23666","C8:6E:08:8A:45:1C","10.100.39.109,192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4J","","'+02:00","2026-04-14T16:12:42.000+02:00","SANEF\LEMAIREM","Cloud Agent","3fe1b61a-dcec-4f48-98c6-b239b21049bf","2025-04-28T12:14:53.000+02:00","2026-04-17T17:47:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"350019008","340231027","PCB25805.sanef.groupe","PCB25805","28:95:29:22:41:6F","192.168.1.56,169.254.218.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT7","","'+02:00","2026-04-15T13:43:33.000+02:00","SANEF\HERBERT-MIRANDA","Cloud Agent","36684ce3-9df3-4d05-a69e-af6523e008c6","2025-08-08T12:21:13.000+02:00","2026-04-17T17:37:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"367260527","347693485","PCB21280.sanef.groupe","PCB21280","30:F6:EF:A3:92:9C","10.4.31.77,192.168.1.197","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKM","","'+02:00","2026-04-16T17:10:29.000+02:00","SANEF\bourliaud","Cloud Agent","d27a554f-fc5a-48ca-ab94-4f3d6a8acf5a","2025-10-10T16:41:16.000+02:00","2026-04-17T17:37:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"334971951","","PCB24083.sanef.groupe","PCB24083","08:B4:D2:2A:04:B8","10.205.0.227,192.168.1.44","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437T","","'+02:00","2026-04-17T17:15:19.000+02:00","SANEF\pruvot","Cloud Agent","357c3378-c8a4-4691-8085-f7f668f3c90f","2025-06-20T14:23:07.000+02:00","2026-04-17T17:19:16.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"345138778","338664323","PCB23522.sanef.groupe","PCB23522","C8:6E:08:88:FD:1F","10.205.0.10,192.168.1.199","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBM","","'+02:00","2026-04-08T13:00:18.000+02:00","SANEF\ROLLAND","Cloud Agent","2d6f6c6d-4c5d-440a-a824-29391bdd9981","2025-07-25T17:22:49.000+02:00","2026-04-17T17:11:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"361918697","345509741","PCB18616.sanef.groupe","PCB18616","38:CA:84:DB:E6:38","10.100.39.104","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WD6","","'+02:00","2026-04-13T09:40:10.000+02:00","SANEF\GARCIAL-ext","Cloud Agent","56f59612-b1a3-4c2b-9715-c42db172aa8a","2025-09-22T11:17:53.000+02:00","2026-04-17T17:11:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"381302025","353523193","PCB22713.sanef.groupe","PCB22713","D0:AD:08:AA:50:39","10.220.31.49,169.254.134.185","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HP","","'+02:00","2026-04-01T07:59:46.000+02:00","SANEF\bobo","Cloud Agent","7dc2732c-6a4a-4d36-9bcd-0b74e437ab15","2025-12-03T17:03:24.000+02:00","2026-04-17T17:09:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"321564320","329084504","PCB23601.sanef.groupe","PCB23601","C8:6E:08:8A:3C:39","10.255.2.200,10.255.2.168","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L61","","'+02:00","2026-04-17T14:04:13.000+02:00","SANEF\maurange","Cloud Agent","ba03457f-e9a1-45e5-b546-24c8617142e8","2025-05-02T12:46:41.000+02:00","2026-04-17T17:01:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"362060157","345555160","PCB24248.sanef.groupe","PCB24248","24:FB:E3:35:30:A4","10.219.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5085GG1","","'+02:00","2026-04-16T08:03:31.000+02:00","SANEF\belaid","Cloud Agent","fafe543f-c2f7-40c4-9072-f9a4a0776f0b","2025-09-22T18:06:26.000+02:00","2026-04-17T16:59:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","341.0" +"322067132","329341009","PCB23562.sanef.groupe","PCB23562","C8:6E:08:88:F0:4A","10.255.1.190,192.168.1.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4W","","'+02:00","2026-04-13T15:51:24.000+02:00","SANEF\samson","Cloud Agent","3cf828d0-b253-4801-93dc-dc019e865ea3","2025-05-05T15:34:43.000+02:00","2026-04-17T16:56:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","248.0" +"339993099","","SVP22617.sanef-int.adds","SVP22617","D0:AD:08:A4:76:51","10.82.9.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764LM","","'+02:00","2025-10-06T10:33:15.000+02:00","Superviseur","Cloud Agent","0eb752c2-f205-49fc-b03f-cbcda58da26a","2025-07-08T05:44:13.000+02:00","2026-04-17T16:54:47.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"356383716","343285276","PCB22657.sanef.groupe","PCB22657","D0:AD:08:AA:4F:DD","10.220.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DQ","","'+02:00","2026-04-01T07:57:22.000+02:00","SANEF\pinton","Cloud Agent","51a882c6-9798-49f2-9e38-dc4c16b49825","2025-09-02T17:22:24.000+02:00","2026-04-17T16:51:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"319378585","328409152","PCB24022.sanef.groupe","PCB24022","EC:4C:8C:C6:1A:9C","192.168.1.22,10.100.39.189","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF7","","'+02:00","2026-04-07T14:16:22.000+02:00","SANEF\VASSEURB","Cloud Agent","a246bc8c-75ea-4955-b89d-dfce0399c902","2025-04-25T13:23:53.000+02:00","2026-04-17T16:49:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"385761488","355848221","PCB16437.sanef.groupe","PCB16437","DC:21:48:C7:35:9E","192.168.1.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","1","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.14.00","5CD14383YZ","","'+02:00","2026-02-26T16:43:31.000+02:00","lionel.ravanel@recette.adds","Cloud Agent","4160d94b-0a4b-4465-a8e8-d168c6780d50","2025-12-23T13:24:32.000+02:00","2026-04-17T16:26:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"334021957","334019842","PCB24133.sanef.groupe","PCB24133","48:EA:62:C8:A3:A1","10.104.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6Z","","'+02:00","2026-03-30T09:42:36.000+02:00","SANEF\ORZECHOWSKI","Cloud Agent","1d914b49-3960-4606-b9d2-b80ffa55623d","2025-06-17T13:46:24.000+02:00","2026-04-17T16:23:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"326581508","","PCB17788.sanef.groupe","PCB17788","28:C5:D2:9E:3E:B4","10.205.0.87,192.168.1.187","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y49","","'+02:00","2026-04-14T16:11:18.000+02:00","SANEF\ESPAGNE","Cloud Agent","511eab52-561c-4bf7-8a08-9ffbd87663ab","2025-05-22T13:12:26.000+02:00","2026-04-17T16:14:20.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"384302525","354868375","PCB23724.sanef.groupe","PCB23724","C8:6E:08:48:DD:16","10.4.31.21,192.168.2.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2Q","","'+02:00","2026-04-13T08:31:22.000+02:00","SANEF\vollondat","Cloud Agent","e78a847b-4b9e-45cf-9f44-4ed3dff84895","2025-12-16T15:23:37.000+02:00","2026-04-17T16:04:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"362047917","345555158","PCB24320.sanef.groupe","PCB24320","70:15:FB:7E:21:29","10.255.1.187,10.255.1.160","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZ0","","'+02:00","2026-04-14T16:24:06.000+02:00","SANEF\deschampst","Cloud Agent","229f54bb-5b71-4f53-9ac6-910342d0c659","2025-09-22T18:05:45.000+02:00","2026-04-17T15:53:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"416728934","367950289","PCB16134.sanef.groupe","PCB16134","80-B6-55-30-C9-FF, 82-B6-55-30-C9-FB, 80-B6-55-30-C9-FB, E0-70-EA-A8-76-ED, 80-B6-55-30-C9-FC","10.252.4.5","fe80::5a7a:9eb1:ad03:665a","Windows / Client","Microsoft Windows 11 Enterprise (Insider Preview Build 26200)","11","Computers / Unidentified","Computers","","","","","","8CC14326GG","","'+02:00","","","Cloud Agent","d352ed4d-42dd-438c-910c-378d18904d75","2026-04-17T15:49:08.000+02:00","2026-04-17T15:49:07.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"322014579","329316798","PCB23669.sanef.groupe","PCB23669","C8:6E:08:88:E2:5D","10.200.31.8,192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6R","","'+02:00","2026-04-13T08:54:12.000+02:00","SANEF\desanprimo","Cloud Agent","0cdd57f2-449e-416c-9be8-dfe0fc686a2c","2025-05-05T10:49:37.000+02:00","2026-04-17T15:46:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"400946924","361773522","PCB25933.sanef.groupe","PCB25933","C4:0F:08:B5:55:81","10.205.0.23,192.168.1.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5342222","","'+02:00","2026-04-09T15:31:28.000+02:00","SANEF\CLEMENT","Cloud Agent","183c575e-abcf-4ec8-a1d5-0a43eb35d94b","2026-02-17T15:24:17.000+02:00","2026-04-17T15:45:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"394261303","358951070","PCB20632.sanef.groupe","PCB20632","BC:0F:F3:3D:78:87","10.4.31.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DRK","","'+02:00","2026-04-07T14:56:55.000+02:00","SANEF\guyotatv","Cloud Agent","0ea1c2b8-cdba-4fcb-a7c6-d9ffc96bde9c","2026-01-22T11:10:09.000+02:00","2026-04-17T15:44:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"317708210","327744885","PCB23710.sanef.groupe","PCB23710","6C:0B:5E:EE:BC:6B","10.149.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7P","","'+02:00","2026-03-28T09:26:05.000+02:00","SANEF\arnouldj","Cloud Agent","80b7f387-b9f9-48d2-aa29-3515a6ca1098","2025-04-18T13:19:15.000+02:00","2026-04-17T15:35:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"343661199","338038584","PCB21128.sanef.groupe","PCB21128","D0:AD:08:AA:4F:E0","10.220.31.21","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764DT","","'+02:00","2026-04-01T09:06:57.000+02:00","lakhdar.chaker@sapn.fr","Cloud Agent","ae31a89a-593b-4dd0-b14d-879fee671569","2025-07-21T11:29:01.000+02:00","2026-04-17T15:35:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"405931964","363433792","PCB20600.sanef.groupe","PCB20600","58:1C:F8:E9:B2:F9","10.4.31.79,192.168.1.153","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3L","","'+02:00","2026-04-16T09:36:02.000+02:00","SANEF\benard","Cloud Agent","d6f73a91-c5c7-42f5-9aae-e2e82d7cd127","2026-03-04T09:50:43.000+02:00","2026-04-17T15:17:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","351.0" +"324685600","330329065","PCB23786.sanef.groupe","PCB23786","C8:6E:08:49:2D:B6","10.255.1.129","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3J","","'+02:00","2026-03-31T07:14:05.000+02:00","SANEF\lefebvrej","Cloud Agent","5d3e37c9-9ef2-4d54-8782-56c87d3d0649","2025-05-14T11:13:38.000+02:00","2026-04-17T15:17:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"366408981","347373958","PCB17503.sanef.groupe","PCB17503","70:A8:D3:85:C6:EF","10.101.243.52,192.168.1.45","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG21724CW","","'+02:00","2026-04-17T12:11:37.000+02:00","SANEF\KARKACH","Cloud Agent","f9a23dab-d3c8-4bed-8297-5eeab83fb0ee","2025-10-08T13:12:51.000+02:00","2026-04-17T15:13:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"343639568","338035888","PCB20702.sanef.groupe","PCB20702","58:1C:F8:E9:D9:3C","10.101.243.192,192.168.1.17","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DRC","","'+02:00","2026-04-07T14:51:03.000+02:00","SANEF\ZAPPELINI","Cloud Agent","6ff801b4-6278-4354-9ad8-f3d576205afa","2025-07-21T10:54:55.000+02:00","2026-04-17T15:12:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","59.0" +"344834146","338481703","PCB23779.sanef.groupe","PCB23779","C8:6E:08:49:99:04","10.255.3.240,192.168.1.198","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460H29","","'+02:00","2026-04-09T10:58:09.000+02:00","marc.lechevalier@sanef.com","Cloud Agent","ae8a2090-6d88-4d1d-94a8-07f208f0aafa","2025-07-24T15:22:43.000+02:00","2026-04-17T15:08:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"367874530","347971086","PCB18725.sanef.groupe","PCB18725","BC:0F:F3:3B:D9:6B","10.220.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3R","","'+02:00","2026-04-16T11:18:49.000+02:00","SANEF\pintonc","Cloud Agent","952a5273-f486-4a7b-bd2f-647a8e645f02","2025-10-13T11:47:13.000+02:00","2026-04-17T15:04:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"324686300","330336495","PCB20660.sanef.groupe","PCB20660","58:1C:F8:EA:58:9E","10.205.0.130,192.168.1.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CRY","","'+02:00","2026-04-17T13:54:52.000+02:00","SANEF\CHEVILLARD","Cloud Agent","9663a404-0d2a-4e57-a66c-b2e8ee8c4196","2025-05-14T12:13:21.000+02:00","2026-04-17T15:00:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"363840829","346344926","PCB16351.sanef.groupe","PCB16351","58:6C:25:2B:1A:6F","192.168.0.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.11.00","5CG13363SH","","'+02:00","2026-04-08T09:01:02.000+02:00","SANEF\KUSTER","Cloud Agent","041c9133-e9d4-446c-bfc6-8ff1ae4f40b2","2025-09-29T10:26:26.000+02:00","2026-04-17T14:57:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"324420574","330235361","PCB23791.sanef.groupe","PCB23791","C8:6E:08:49:3E:D7","10.205.0.20,10.26.61.156","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H37","","'+02:00","2026-03-31T08:56:01.000+02:00","SANEF\kauffmann","Cloud Agent","8e8461db-9038-4160-995f-704a216f9470","2025-05-13T15:20:34.000+02:00","2026-04-17T14:57:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"307629995","323412784","PCB17194.sanef.groupe","PCB17194","50:81:40:B9:D0:0A","10.4.30.19","fe80::a106:c3f5:2984:cff0","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T76 Ver. 01.04.02","5CG13363XZ","","'+02:00","2026-04-15T08:05:26.000+02:00","SANEF\gonzalez","Cloud Agent","49fae254-7794-4d8e-8c23-55307a4cf5a7","2025-03-12T16:48:12.000+02:00","2026-04-17T14:57:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"397198246","360254997","PCB24231.sanef.groupe","PCB24231","24:FB:E3:BE:98:DA","10.205.0.78,192.168.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M6B","","'+02:00","2026-04-16T11:49:33.000+02:00","SANEF\LEFEBVRE","Cloud Agent","ac9d4c25-0e18-4a79-b823-a3dae5b22e4d","2026-02-03T18:43:52.000+02:00","2026-04-17T14:56:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","352.0" +"323182464","329808184","PCB23737.sanef.groupe","PCB23737","6C:0B:5E:EE:83:67","10.5.31.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4K","","'+02:00","2026-04-16T10:21:43.000+02:00","SANEF\RIVERON","Cloud Agent","eee540bc-b056-480f-9c59-77a9bf1a1f07","2025-05-09T12:17:23.000+02:00","2026-04-17T14:55:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","333.0" +"322370699","329443909","PCB23772.sanef.groupe","PCB23772","C8:6E:08:47:72:FF","10.205.0.159,192.168.0.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3Q","","'+02:00","2026-03-29T09:28:35.000+02:00","SANEF\carond","Cloud Agent","6c098b92-239a-47cb-8efc-8f859c055254","2025-05-06T13:04:49.000+02:00","2026-04-17T14:53:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","332.0" +"322116608","329341527","PCB23563.sanef.groupe","PCB23563","C8:6E:08:88:E2:C6","10.200.31.38,192.168.1.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L6P","","'+02:00","2026-03-19T10:51:21.000+02:00","SANEF\thepaut","Cloud Agent","a7237c20-1305-448c-86cb-1cb5177634c6","2025-05-05T15:36:46.000+02:00","2026-04-17T14:52:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","251.0" +"344881629","338497987","PCB23549.sanef.groupe","PCB23549","C8:6E:08:88:E2:62","10.255.3.186,10.101.243.107","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L51","","'+02:00","2026-04-07T13:48:06.000+02:00","SANEF\DELARIVIERE","Cloud Agent","0d590632-f26b-4670-8bbd-320995cb634e","2025-07-24T17:35:31.000+02:00","2026-04-17T14:52:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"368460166","348148143","PCB18744.sanef.groupe","PCB18744","BC:0F:F3:3D:58:FB","10.255.3.196,10.220.31.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQY","","'+02:00","2026-03-30T12:39:42.000+02:00","audrey.bouvier@sapn.fr","Cloud Agent","9d7097fa-1021-40c5-bc4b-399a4d044342","2025-10-14T17:11:24.000+02:00","2026-04-17T14:52:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"280824922","305628139","PCB21332.sanef.groupe","PCB21332","D0:AD:08:AA:50:A4","10.220.31.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M4","","'+02:00","2026-04-06T07:47:00.000+02:00","SANEF\rabdeau","Cloud Agent","12d51adb-240e-4e07-a603-a97f553cb496","2024-11-20T15:38:50.000+02:00","2026-04-17T14:52:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"347523620","339228545","PCB23526.sanef.groupe","PCB23526","C8:6E:08:88:F0:27","10.205.0.75,192.168.1.48","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6Y","","'+02:00","2026-03-30T11:06:59.000+02:00","SANEF\GUEDON","Cloud Agent","0c787b5b-e1ee-4a21-881e-28d325dd8879","2025-07-30T16:48:01.000+02:00","2026-04-17T14:51:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","247.0" +"322116362","329336753","PCB23695.sanef.groupe","PCB23695","6C:0B:5E:EE:BC:81","10.200.31.60","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7T","","'+02:00","2026-04-17T12:15:06.000+02:00","SANEF\BOEDARD","Cloud Agent","87de7548-87f3-4518-811d-b3ceaf5b501b","2025-05-05T14:57:48.000+02:00","2026-04-17T14:51:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"320296214","328638757","PCB23551.sanef.groupe","PCB23551","C8:6E:08:8A:45:71","10.100.39.54,192.168.1.66","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6899) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9P","","'+02:00","2026-04-01T08:40:58.000+02:00","SANEF\CHEDANNE","Cloud Agent","c4bd34df-3235-4f75-8a5d-6019cc0ac7d3","2025-04-28T16:37:56.000+02:00","2026-04-17T14:51:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"334030261","334019843","PCB24129.sanef.groupe","PCB24129","48:EA:62:C8:A3:C4","10.107.31.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V65","","'+02:00","2026-04-17T08:36:04.000+02:00","SANEF\bertaux","Cloud Agent","8136337f-bad0-421e-bd18-7081ded3805e","2025-06-17T13:46:31.000+02:00","2026-04-17T14:50:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","58.0" +"323214239","329820250","PCB20844.sanef.groupe","PCB20844","C8:6E:08:46:F2:85","10.205.0.36,192.168.1.99","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3T","","'+02:00","2026-03-30T22:03:26.000+02:00","SANEF\dorizy","Cloud Agent","d9586530-d1af-402e-b2f3-9e79f75f0707","2025-05-09T14:48:16.000+02:00","2026-04-17T14:50:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","144.0" +"320467349","328715185","PCB24036.sanef.groupe","PCB24036","6C:0B:5E:F8:D7:F1","10.255.1.247,10.100.39.78","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HDZ","","'+02:00","2026-04-14T13:46:21.000+02:00","SANEF\FEJEAN","Cloud Agent","cf098380-ea6e-4682-83cf-6b5e568d203d","2025-04-29T12:13:58.000+02:00","2026-04-17T14:24:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"350066707","340249989","PCB25774.sanef.groupe","PCB25774","28:95:29:22:41:47","10.205.0.56,192.168.0.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CSK","","'+02:00","2026-04-09T09:26:09.000+02:00","SANEF\GOUMIS","Cloud Agent","adf9dced-9591-4aa7-aa7b-2c89bc447755","2025-08-08T15:44:02.000+02:00","2026-04-17T14:23:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","255.0" +"320513751","328730971","PCB23634.sanef.groupe","PCB23634","C8:6E:08:8A:50:F2","10.255.3.193","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L85","","'+02:00","2026-03-30T09:31:57.000+02:00","SANEF\devigne","Cloud Agent","24b2fae4-187d-43ea-8e07-f2d43ce80129","2025-04-29T15:00:31.000+02:00","2026-04-17T14:21:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"171281499","226495316","PCB18394.sanef.groupe","PCB18394","70:A8:D3:85:BA:FB","10.205.0.206,192.168.0.21","2a01:e0a:364:71a0:5ee:7109:1fc2:138e,2a01:e0a:364:71a0:8f62:d282:cdb8:3a53,fe80::464e:1016:318b:cc05","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG21724NT","","'+02:00","2026-04-17T08:49:52.000+02:00","SANEF\VANWYNSBERGHE","Cloud Agent","a58a410a-13e4-4a03-9989-c198c700f80c","2023-05-22T19:55:48.000+02:00","2026-04-17T14:19:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","351.0" +"321535715","329070727","PCB21271.sanef.groupe","PCB21271","D0:AD:08:0C:8D:4E","10.4.31.54","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GK4","","'+02:00","2026-04-14T08:16:18.000+02:00","SANEF\FEVRIER","Cloud Agent","fb132cb0-afb2-432b-b3e5-3c7046115b8d","2025-05-02T09:50:06.000+02:00","2026-04-17T14:18:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"391685025","357961517","SVP21364.sanef-int.adds","SVP21364","D0:AD:08:A2:AE:CF","10.132.5.29,10.182.12.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764K8","","'+02:00","2026-04-10T14:49:19.000+02:00","Superviseur","Cloud Agent","582b823f-6b5f-4950-83a6-eefc0a9c37b5","2026-01-13T17:13:37.000+02:00","2026-04-17T14:12:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"370350166","348859701","PCB24346.sanef.groupe","PCB24346","00:72:EE:1F:F2:8E","10.255.4.133","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5145YGG","","'+02:00","2026-04-17T07:02:31.000+02:00","SANEF\CASIER","Cloud Agent","fc3a7893-8f43-4482-8a21-ff6cdd5756df","2025-10-21T08:00:50.000+02:00","2026-04-17T14:09:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","253.0" +"321548437","329072945","PCB23796.sanef.groupe","PCB23796","C8:6E:08:49:2D:7F","10.255.2.163","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H42","","'+02:00","2026-04-07T08:32:25.000+02:00","SANEF\muhlberger","Cloud Agent","5358ce50-4b27-4c1c-8388-6c99fff41379","2025-05-02T10:18:42.000+02:00","2026-04-17T14:08:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"364757960","346616574","PCB18752.sanef.groupe","PCB18752","58:1C:F8:E9:A7:0A","10.205.0.8,192.168.1.161","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQT","","'+02:00","2026-04-15T13:10:26.000+02:00","SANEF\TREISSAC","Cloud Agent","111749b1-9327-40a7-9ddc-502b07fbe437","2025-10-01T15:58:02.000+02:00","2026-04-17T13:57:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","60.0" +"363322957","346061323","PCB18103.sanef.groupe","PCB18103","64:D6:9A:1D:2D:C4","10.205.0.88,10.255.1.183","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRY","","'+02:00","2026-04-16T08:32:39.000+02:00","guillaume.renard-ext@sanef.com","Cloud Agent","88d1925a-af7f-4565-9327-f59e883fcf26","2025-09-26T17:17:55.000+02:00","2026-04-17T13:56:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"320465298","328723530","PCB23686.sanef.groupe","PCB23686","C8:6E:08:88:F0:BD","10.205.0.5,192.168.1.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L66","","'+02:00","2026-04-07T16:33:49.000+02:00","SANEF\IBATICI","Cloud Agent","59c6f39f-e89e-4402-b117-988cbd2f9745","2025-04-29T13:42:57.000+02:00","2026-04-17T13:51:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"357859057","343902809","PCB22619.sanef.groupe","PCB22619","D0:AD:08:AA:4F:FA","10.220.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FN","","'+02:00","2026-04-14T09:06:20.000+02:00","SANEF\lefevrei","Cloud Agent","5932ef8e-2456-4600-8d4b-cb66490f3693","2025-09-08T13:55:52.000+02:00","2026-04-17T13:50:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"317826589","327757963","PCB23778.sanef.groupe","PCB23778","C8:6E:08:47:0B:E4","10.255.3.168,192.168.1.77","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3R","","'+02:00","2026-04-13T13:03:05.000+02:00","SANEF\fontaineel","Cloud Agent","b9446919-9c88-4a55-b994-64b487f8721d","2025-04-18T15:58:02.000+02:00","2026-04-17T13:49:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"323159819","329793781","PCB23716.sanef.groupe","PCB23716","6C:0B:5E:EE:93:FE","10.12.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H38","","'+02:00","2026-04-14T15:28:04.000+02:00","SANEF\KLEINA","Cloud Agent","b6b99665-4da3-48c3-b45b-e8b2b758d2f9","2025-05-09T09:34:43.000+02:00","2026-04-17T13:49:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"368428977","348136166","PCB18487.sanef.groupe","PCB18487","E4:60:17:CB:F5:1B","10.220.31.7,192.168.1.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764JP","","'+02:00","2026-04-02T11:13:39.000+02:00","SANEF\CAMUSA","Cloud Agent","3956aa91-1988-4338-9096-0167b8fb4966","2025-10-14T15:31:06.000+02:00","2026-04-17T13:45:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"341940106","337328225","PCB23797.sanef.groupe","PCB23797","C8:6E:08:47:18:D7","192.168.1.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4D","","'+02:00","2026-04-07T10:25:22.000+02:00","SANEF\piron","Cloud Agent","1d465a19-d866-4362-8612-f6e19a57e521","2025-07-15T13:47:14.000+02:00","2026-04-17T13:41:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","139.0" +"373860351","350356998","PCB15567.sanef.groupe","PCB15567","E0:70:EA:C2:9B:06","10.155.30.10,10.155.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","3096","Intel(R) Core(TM) i5-10500 CPU @ 3.10GHz","16159","HP S21 Ver. 02.08.01","8CC14326LT","8CC14326LT","'+02:00","2026-04-16T15:09:51.000+02:00","SANEF\bodart","Cloud Agent","ec2fdf27-ab97-4431-b77f-2e5ef341b187","2025-11-03T15:39:53.000+02:00","2026-04-17T13:39:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"321549850","329075654","PCB23657.sanef.groupe","PCB23657","6C:0B:5E:ED:A2:58","10.105.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4S","","'+02:00","2026-03-30T07:42:20.000+02:00","SANEF\DEBAILLEUL","Cloud Agent","f0d202f9-24d9-4eda-8d75-740d4cd6f31f","2025-05-02T11:04:17.000+02:00","2026-04-17T13:33:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"326906953","331324400","PCB23542.sanef.groupe","PCB23542","C8:6E:08:8A:45:E9","10.205.0.35,10.255.1.159","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L80","","'+02:00","2026-03-30T09:01:21.000+02:00","SANEF\deruere","Cloud Agent","a455b925-4242-4efb-b058-65d04eb02598","2025-05-23T17:24:04.000+02:00","2026-04-17T13:31:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"321609764","329099877","PCB23653.sanef.groupe","PCB23653","6C:0B:5E:EE:DC:48","10.202.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4Z","","'+02:00","2026-04-14T15:45:38.000+02:00","SANEF\descrettes","Cloud Agent","9d3861a9-bd29-4b7c-b2fe-c4b41de4b690","2025-05-02T15:55:13.000+02:00","2026-04-17T13:24:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"307901617","323506237","PCB17806.sanef.groupe","PCB17806","28:C5:D2:9E:44:B3","10.205.0.38,192.168.50.54","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.7840) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4R","","'+02:00","2026-03-05T09:50:37.000+02:00","SANEF\CRESSON","Cloud Agent","e72912e6-be11-4a84-bcc5-3e6c3194307f","2025-03-13T12:01:55.000+02:00","2026-04-17T13:23:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","340.0" +"405455633","363230867","PAD24216.sanef-int.adds","PAD24216","70:15:FB:7E:21:3D, null","10.0.0.93,10.44.102.10","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.07.00","5CD5153ZYS","","'+02:00","2026-04-17T10:01:32.000+02:00","SANEF-INT\user.test1-tst","Cloud Agent","ed1a2725-8b3c-43a8-b2c8-140645da51a8","2026-03-02T16:27:19.000+02:00","2026-04-17T13:20:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","241.0" +"374686464","350736042","PCB22710.sanef.groupe","PCB22710","E4:60:17:C4:7C:28","192.168.1.57","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GX","","'+02:00","2026-04-01T08:46:08.000+02:00","SANEF\goncalvesk","Cloud Agent","4b41a8fe-5925-4a3f-bb17-2863432d4541","2025-11-06T15:15:31.000+02:00","2026-04-17T13:17:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"322099729","329349138","PCB23615.sanef.groupe","PCB23615","6C:0B:5E:EE:B3:53","10.200.31.26,192.168.1.190","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB5","","'+02:00","2026-04-09T11:23:32.000+02:00","SANEF\thiam","Cloud Agent","3774c6f5-2462-4ed9-987c-d8635b95ecf6","2025-05-05T16:40:11.000+02:00","2026-04-17T13:16:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","60.0" +"334027204","334025827","PCB24132.sanef.groupe","PCB24132","48:EA:62:C8:83:76","10.107.31.5","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG5041V6R","","'+02:00","2026-04-16T08:25:38.000+02:00","SANEF\COTTON","Cloud Agent","5ae00054-1ffc-4a19-a25c-abdcb9cc013e","2025-06-17T14:37:15.000+02:00","2026-04-17T13:13:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"404433492","362844671","PCB25892.sanef.groupe","PCB25892","C4:0F:08:B4:F7:3F","10.100.39.42,10.255.4.181","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534223P","","'+02:00","2026-04-14T09:02:00.000+02:00","SANEF\catheling","Cloud Agent","db1c3a9d-8372-4dcf-bf13-cb782c9f0540","2026-02-26T17:36:21.000+02:00","2026-04-17T13:12:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"377806339","352206903","PCB25886.sanef.groupe","PCB25886","C4:0F:08:B4:FE:01","10.255.1.209","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG534222W","","'+02:00","2026-04-13T20:17:15.000+02:00","SANEF\GODON","Cloud Agent","34631e94-0d54-4b0e-8e81-0afc2adf2980","2025-11-19T17:40:54.000+02:00","2026-04-17T13:05:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","334.0" +"320448237","328708037","PCB23678.sanef.groupe","PCB23678","C8:6E:08:88:FD:1A","10.255.2.215,192.168.1.186","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9S","","'+02:00","2026-04-16T12:30:57.000+02:00","SANEF\legeaya","Cloud Agent","eefdfd6e-5ee7-494a-aa10-73c20df8b32a","2025-04-29T11:06:48.000+02:00","2026-04-17T13:03:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"377731711","352174469","PCB18264.sanef.groupe","PCB18264","5C:60:BA:59:EC:E3","10.105.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.23.00","8CC2250Y8P","8CC2250Y8P","'+02:00","2026-03-31T08:50:30.000+02:00","SANEF\ASSET","Cloud Agent","8ed373d1-020b-4050-ac01-9aacc511aedb","2025-11-19T12:45:16.000+02:00","2026-04-17T13:03:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"365027416","346745980","PCB22262.sanef.groupe","PCB22262","D0:AD:08:A7:28:48","10.1.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPB","","'+02:00","2026-03-28T09:17:38.000+02:00","SANEF\bousquet","Cloud Agent","d5906618-64db-48a7-a232-4b8fc13ab052","2025-10-02T18:18:27.000+02:00","2026-04-17T13:02:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","246.0" +"318366878","328016306","PCB22841.sanef.groupe","PCB22841","D0:AD:08:A3:E6:9D","10.108.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQK","8CC3502YQK","'+02:00","2026-03-31T16:24:28.000+02:00","SANEF\JACQUEMONT","Cloud Agent","78332271-adf5-4c8a-8855-06f60f481d20","2025-04-22T09:50:30.000+02:00","2026-04-17T13:00:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"341939484","337326534","PCB20846.sanef.groupe","PCB20846","6C:0B:5E:EE:93:ED","10.203.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H30","","'+02:00","2026-04-16T09:17:43.000+02:00","SANEF\binetb","Cloud Agent","632af620-be23-4de8-923e-537e8f617a2c","2025-07-15T13:31:14.000+02:00","2026-04-17T13:00:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","248.0" +"379762603","352970327","PCB17783.sanef.groupe","PCB17783","28:C5:D2:9E:44:B8","10.255.2.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y44","","'+02:00","2026-03-31T12:01:18.000+02:00","SANEF\KOZAK","Cloud Agent","21f80f97-21e3-4f71-bc5b-ee6bd676f8cf","2025-11-27T11:33:52.000+02:00","2026-04-17T12:58:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"304660259","322542155","PCB22461.sanef.groupe","PCB22461","D0:AD:08:E4:91:9F","10.107.31.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVM","","'+02:00","2026-04-14T07:01:49.000+02:00","SANEF\CAULIEZ","Cloud Agent","4254b3f5-3d98-4ee4-8ef7-58f3182c7425","2025-03-03T16:10:07.000+02:00","2026-04-17T12:56:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"304863349","322649650","PCB22610.sanef.groupe","PCB22610","D0:AD:08:AA:4F:EE","10.107.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764F8","","'+02:00","2026-04-01T06:59:49.000+02:00","SANEF\lanvin","Cloud Agent","a2580ec1-d7d7-41fa-bf03-c390985319bd","2025-03-04T12:34:59.000+02:00","2026-04-17T12:42:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","244.0" +"322640228","329599154","PCB23715.sanef.groupe","PCB23715","6C:0B:5E:EE:93:07","10.2.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4S","","'+02:00","2026-04-01T08:07:59.000+02:00","SANEF\Cobeno","Cloud Agent","0fb01794-6b67-49cf-8277-be6389d8c48e","2025-05-07T15:24:06.000+02:00","2026-04-17T12:42:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"320290061","328640049","PCB23621.sanef.groupe","PCB23621","6C:0B:5E:EE:B3:64","10.6.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB7","","'+02:00","2026-03-30T16:17:29.000+02:00","SANEF\SCHOOR","Cloud Agent","4c4ce14a-360c-4a22-9665-0c599c3e7903","2025-04-28T16:56:23.000+02:00","2026-04-17T12:41:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"350499537","340448121","PCB25826.sanef.groupe","PCB25826","28:95:29:22:6B:2C","10.205.0.36,192.168.1.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CSQ","","'+02:00","2026-04-14T08:03:02.000+02:00","SANEF\lanquetin","Cloud Agent","6dc396e2-2b76-4777-bf93-ae5fa1493898","2025-08-11T09:54:39.000+02:00","2026-04-17T12:33:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"373790472","350326956","PCB24135.sanef.groupe","PCB24135","10:B6:76:97:D4:A6","10.12.31.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YJX","","'+02:00","2026-04-15T14:11:03.000+02:00","SANEF\staszak","Cloud Agent","edf557d0-611d-463c-acea-3d437a90ccae","2025-11-03T11:38:31.000+02:00","2026-04-17T12:26:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"327817179","","PCB23691.sanef.groupe","PCB23691","C8:6E:08:88:FD:83","10.205.0.190,192.168.1.130","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L8J","","'+02:00","2026-03-30T08:48:11.000+02:00","SANEF\rebierre","Cloud Agent","0cce075c-d58a-48e2-8c4f-bf1abca0bf19","2025-05-28T16:21:54.000+02:00","2026-04-17T12:26:18.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"362517134","345791548","PCB24202.sanef.groupe","PCB24202","0A:00:27:00:00:0F, 10:B6:76:97:D4:DA","192.168.56.1,10.200.31.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLL","","'+02:00","2026-04-13T11:25:30.000+02:00","SANEF\leseur","Cloud Agent","207681d6-9376-4eaa-a7b8-00bff12b8a2f","2025-09-24T11:36:26.000+02:00","2026-04-17T12:26:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","254.0" +"373009533","349983734","PCB24250.sanef.groupe","PCB24250","24:FB:E3:BE:98:FD","10.8.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M4Q","","'+02:00","2026-04-15T08:08:28.000+02:00","SANEF\kieffer","Cloud Agent","70dea08a-3c65-40ef-a3e6-0bdca59323d3","2025-10-30T17:31:30.000+02:00","2026-04-17T12:18:54.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"343111830","337777518","PCB23668.sanef.groupe","PCB23668","6C:0B:5E:EE:A3:82","10.199.30.10,10.199.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBZ","","'+02:00","2026-04-13T08:23:51.000+02:00","SANEF\RICHEZ","Cloud Agent","fadaa611-7caf-4dd9-ba06-174cc1f05915","2025-07-18T11:56:26.000+02:00","2026-04-17T12:15:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","255.0" +"358926849","344346981","PCB24199.sanef.groupe","PCB24199","30:E3:A4:D6:F7:54","10.255.3.144","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YM0","","'+02:00","2026-04-16T15:49:22.000+02:00","SANEF\URIEN","Cloud Agent","24e534d6-863d-43be-bc25-f85fd0e84d30","2025-09-11T18:05:14.000+02:00","2026-04-17T12:07:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"304883316","322660835","PCB22706.sanef.groupe","PCB22706","D0:AD:08:AA:50:65","10.107.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764K3","","'+02:00","2026-04-09T14:39:30.000+02:00","SANEF\marien","Cloud Agent","1ffc00bf-d04b-4035-bff4-035f6d919070","2025-03-04T14:11:08.000+02:00","2026-04-17T11:59:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"379466112","352856241","PCB24134.sanef.groupe","PCB24134","30:E3:A4:D6:7A:F4","10.255.4.191,10.255.4.213","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5192YLD","","'+02:00","2026-03-30T08:49:50.000+02:00","SANEF\BUURON","Cloud Agent","94cacbf6-ba68-49fa-b13d-779c8ef20f15","2025-11-26T09:36:43.000+02:00","2026-04-17T11:56:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","245.0" +"321588534","329097665","PCB23658.sanef.groupe","PCB23658","6C:0B:5E:EE:A3:93","10.203.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LC0","","'+02:00","2026-04-13T09:41:55.000+02:00","SANEF\vivien","Cloud Agent","0972a77b-7b62-425c-bc18-0748c33291a1","2025-05-02T15:27:12.000+02:00","2026-04-17T11:54:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"334075657","334032217","PCB24124.sanef.groupe","PCB24124","C8:58:B3:0B:5B:85","10.205.0.96,10.255.3.239","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V68","","'+02:00","2026-04-09T14:41:59.000+02:00","SANEF\molle","Cloud Agent","30d073a6-0cd3-41a7-a0f0-7c120f9aa97d","2025-06-17T15:58:27.000+02:00","2026-04-17T11:51:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"320442963","328702493","PCB23630.sanef.groupe","PCB23630","C8:6E:08:88:FD:92","10.255.2.137,10.255.2.131","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LB3","","'+02:00","2026-04-14T09:06:22.000+02:00","SANEF\VERETD","Cloud Agent","d1ca9bd2-6d02-4f20-81dd-ec4dffb661c0","2025-04-29T10:02:34.000+02:00","2026-04-17T11:51:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"307935084","323528166","PCB21134.sanef.groupe","PCB21134","D0:AD:08:AA:50:18","10.107.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764GM","","'+02:00","2026-04-01T06:54:12.000+02:00","SANEF\fouquetc","Cloud Agent","cc2c599e-ad23-4ab5-9cca-ba19f3c2f27c","2025-03-13T15:32:34.000+02:00","2026-04-17T11:49:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","244.0" +"367842599","347946653","PCB21092.sanef.groupe","PCB21092","D0:AD:08:AA:50:BC","10.220.31.60","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MX","","'+02:00","2026-04-08T09:30:09.000+02:00","SANEF\gouriou","Cloud Agent","8a497423-5501-4615-8935-03db56486b01","2025-10-13T08:26:37.000+02:00","2026-04-17T10:36:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"384732663","355153096","SVP21046.sanef-int.adds","SVP21046","D0:AD:08:A6:12:A9","10.106.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3502YKK","","'+02:00","2026-01-27T18:38:34.000+02:00","Superviseur","Cloud Agent","3769e1ff-7777-425f-986e-1d1ac562b49c","2025-12-18T11:36:40.000+02:00","2026-04-17T10:14:42.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","686.0" +"327531276","","PCB23538.sanef.groupe","PCB23538","C8:6E:08:88:F0:63","10.205.0.216,192.168.1.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L76","","'+02:00","2026-03-30T08:40:05.000+02:00","SANEF\BOURICHJ","Cloud Agent","1c4143da-fbf6-43f6-a10b-7f3c07857212","2025-05-27T10:57:06.000+02:00","2026-04-17T10:11:59.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"329215988","","PCB22520.sanef.groupe","PCB22520","E4:60:17:CA:2F:FB","10.205.1.81,192.168.1.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764L7","","'+02:00","2026-04-07T20:31:48.000+02:00","SANEF\SARRA-ext","Cloud Agent","592fefeb-1965-4899-bf7f-1d1d7be2be14","2025-06-02T15:26:48.000+02:00","2026-04-17T10:09:00.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331425157","","PCB23560.sanef.groupe","PCB23560","6C:0B:5E:EE:EC:C1","10.206.31.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L56","","'+02:00","2026-04-08T08:39:26.000+02:00","SANEF\francin","Cloud Agent","8f0d12cb-02db-408d-810f-1345fd747feb","2025-06-06T13:35:40.000+02:00","2026-04-17T09:48:31.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"322359750","329444244","PCB23780.sanef.groupe","PCB23780","6C:0B:5E:ED:82:E3","10.255.1.206,10.200.31.85","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H28","","'+02:00","2026-03-30T09:14:39.000+02:00","SANEF\bouelle","Cloud Agent","3f84cc53-ae7d-4647-b2ce-8bb722438a7f","2025-05-06T13:06:14.000+02:00","2026-04-17T09:44:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"327831271","","PCB23576.sanef.groupe","PCB23576","C8:6E:08:8A:3C:4D","192.168.1.75","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6G","","'+02:00","2026-03-31T09:30:57.000+02:00","SANEF\MARIE","Cloud Agent","6816c550-141c-4294-8f23-f67e1ddc5aac","2025-05-28T16:20:57.000+02:00","2026-04-17T09:34:57.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"323156866","329797273","PCB23732.sanef.groupe","PCB23732","C8:6E:08:49:2D:D4","192.168.1.70","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3B","","'+02:00","2026-04-01T07:57:44.000+02:00","SANEF\SQUELBUT","Cloud Agent","d69a508d-91d8-47a2-9b5f-3495282917ba","2025-05-09T10:11:24.000+02:00","2026-04-17T09:32:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","333.0" +"325249410","","PCB23625.sanef.groupe","PCB23625","6C:0B:5E:EE:BC:B0","10.12.31.4","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L70","","'+02:00","2026-04-02T15:08:30.000+02:00","SANEF\STABLO","Cloud Agent","aeb61516-7c53-4598-84ff-b8a457e4090d","2025-05-16T14:31:14.000+02:00","2026-04-17T09:31:35.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"322007233","329317302","PCB23640.sanef.groupe","PCB23640","C8:6E:08:8A:51:1A","10.205.0.51,192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8246) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L8D","","'+02:00","2026-04-16T12:10:43.000+02:00","SANEF\rivey","Cloud Agent","9f89097b-c3b5-40c6-a733-06c800182a7d","2025-05-05T10:54:21.000+02:00","2026-04-17T09:31:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","57.0" +"326195972","","PCB18057.sanef.groupe","PCB18057","64:D6:9A:1D:39:9A","10.205.0.251,192.168.1.231","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSZ","","'+02:00","2026-03-31T09:36:32.000+02:00","SANEF\BRAUN","Cloud Agent","45f57725-22f2-4b92-b055-54e385351129","2025-05-21T12:01:02.000+02:00","2026-04-17T09:24:43.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"193570115","240958806","PCB16118.sanef.groupe","PCB16118","58:6C:25:2B:1E:75","10.205.0.19,192.168.1.23","fe80::21b7:98ef:9ba5:d87b","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T76 Ver. 01.16.00","5CG13363YC","","'+02:00","2026-03-31T07:13:38.000+02:00","SANEF\TONNELIER","Cloud Agent","266fd1be-93e5-4fad-81c5-25b882fcd869","2023-10-16T08:53:23.000+02:00","2026-04-17T09:23:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"359809599","","PCB24330.sanef.groupe","PCB24330","10:B6:76:95:8B:B3, 0A:00:27:00:00:14","10.154.31.8,192.168.56.1","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZN","","'+02:00","2026-04-14T08:05:21.000+02:00","SANEF\DUPETIT","Cloud Agent","d4b0dd20-62d3-474c-a2be-78b701bfaee7","2025-09-15T17:56:01.000+02:00","2026-04-17T09:13:39.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360897033","345085432","PCB24191.sanef.groupe","PCB24191","30:E3:A4:D6:F7:5E","10.255.1.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YL4","","'+02:00","2026-04-16T08:06:36.000+02:00","SANEF\MORTIER","Cloud Agent","37f4d87b-6937-43ca-9ad4-b4f33e35d4ba","2025-09-18T10:30:53.000+02:00","2026-04-17T09:10:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","249.0" +"395089118","359299106","PCB18606.sanef.groupe","PCB18606","64:D6:9A:74:73:C2","192.168.1.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG2433WD7","","'+02:00","2026-04-08T17:55:32.000+02:00","SANEF\pelzer","Cloud Agent","d7e845f7-ae9a-4dc0-ae79-f743c8f5d4a6","2026-01-26T14:09:44.000+02:00","2026-04-17T09:08:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","59.0" +"323994533","","PCB20628.sanef.groupe","PCB20628","BC:0F:F3:3D:28:3F","10.100.39.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224DSK","","'+02:00","2026-04-08T11:04:17.000+02:00","SANEF\CUGNART","Cloud Agent","e6b318d8-d225-41ae-b98d-dd297b013e87","2025-05-12T10:37:39.000+02:00","2026-04-17T08:59:16.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"335930480","","PCB23645.sanef.groupe","PCB23645","C8:6E:08:88:E2:8F","10.205.0.108,192.168.1.115","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L57","","'+02:00","2026-03-30T07:15:57.000+02:00","SANEF\DASILVA","Cloud Agent","b9d2231f-4c57-4221-810a-d0ec7052cd9d","2025-06-24T11:13:13.000+02:00","2026-04-17T08:55:44.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"362056790","345553854","PCB24069.sanef.groupe","PCB24069","24:FB:E3:33:98:71","10.208.31.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5064388","","'+02:00","2026-04-15T07:13:03.000+02:00","SANEF\longo","Cloud Agent","0787aab4-0004-41aa-bfdf-60dd3405a8ce","2025-09-22T18:03:14.000+02:00","2026-04-17T08:52:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","336.0" +"383012443","354264780","PCB18251.sanef.groupe","PCB18251","5C:60:BA:59:E5:FD","10.106.31.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y99","8CC2250Y99","'+02:00","2026-03-28T09:15:34.000+02:00","SANEF\POLLETP","Cloud Agent","7c569e2c-91bc-49e0-9c01-0e3659662795","2025-12-10T14:57:55.000+02:00","2026-04-17T08:51:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","331.0" +"334073897","334032722","PCB24111.sanef.groupe","PCB24111","C8:58:B3:01:DA:97","10.107.31.39,192.168.1.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V6L","","'+02:00","2026-04-03T11:36:28.000+02:00","SANEF\DEZ","Cloud Agent","8c9e3a5a-6020-4f52-97eb-647a7768fd0b","2025-06-17T16:04:27.000+02:00","2026-04-17T08:49:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"320289837","328638758","PCB22788.sanef.groupe","PCB22788","D0:AD:08:A7:28:15","10.1.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YK5","8CC3502YK5","'+02:00","2026-04-15T15:42:15.000+02:00","SANEF\damis","Cloud Agent","ed50b7cc-86da-4776-ac9c-166f6c0d0ba3","2025-04-28T16:36:12.000+02:00","2026-04-17T08:48:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","338.0" +"326559813","","PCB23735.sanef.groupe","PCB23735","C8:6E:08:49:8F:0E","192.168.1.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3K","","'+02:00","2026-03-28T15:48:46.000+02:00","SANEF\dautun","Cloud Agent","bb26872f-b25c-45f5-b566-b86d18ae87ec","2025-05-22T12:16:20.000+02:00","2026-04-17T08:44:28.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"331143614","","PCB22465.sanef.groupe","PCB22465","F0:20:FF:9A:ED:22","10.205.0.143,192.168.1.10","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HW7","","'+02:00","2026-04-15T08:02:13.000+02:00","SANEF\MUCKE","Cloud Agent","2ae122c0-335b-435b-afeb-fd623f644092","2025-06-05T15:06:42.000+02:00","2026-04-17T08:41:45.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"325044028","","PCB18026.sanef.groupe","PCB18026","64:D6:9A:1D:2B:99","192.168.1.122","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.14.00","5CG2376HTL","","'+02:00","2026-04-10T13:40:38.000+02:00","SANEF\GUERBER","Cloud Agent","616c79c9-a75c-4bbd-bbf8-1eb6b34f4ba9","2025-05-15T16:47:06.000+02:00","2026-04-17T08:39:39.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"332259638","","PCB21161.sanef.groupe","PCB21161","F0:20:FF:9A:DF:4E","10.205.0.132,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HV5","","'+02:00","2026-04-16T08:19:55.000+02:00","SANEF\cridelich","Cloud Agent","75795c4c-8911-45d9-8360-bdef755dd89f","2025-06-10T12:34:52.000+02:00","2026-04-17T08:34:05.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"360028776","","PCB18069.sanef.groupe","PCB18069","38:CA:84:52:09:4C","10.200.31.73","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HTP","","'+02:00","2026-03-30T18:40:31.000+02:00","SANEF\yennek","Cloud Agent","6b6b9170-d990-49d6-bff1-8c3ccd1823ff","2025-09-16T12:52:56.000+02:00","2026-04-17T08:31:22.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"325748195","","PCB18619.sanef.groupe","PCB18619","64:D6:9A:74:76:29","10.205.0.67,192.168.1.118","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WCW","","'+02:00","2026-03-31T08:18:39.000+02:00","SANEF\michelc","Cloud Agent","c68e95a3-8bb4-4a45-b2d7-533937e57c2e","2025-05-19T16:10:54.000+02:00","2026-04-17T08:29:24.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331137812","","PCB23606.sanef.groupe","PCB23606","C8:6E:08:8A:45:0D","192.168.1.47","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4C","","'+02:00","2026-04-07T10:00:27.000+02:00","SANEF\omont","Cloud Agent","a42cc51d-4344-4509-be7f-405fe9d67f20","2025-06-05T14:47:26.000+02:00","2026-04-17T08:12:35.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"332249862","","PCB17796.sanef.groupe","PCB17796","28:C5:D2:9D:44:7D","10.189.31.1,10.255.4.220","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y4S","","'+02:00","2026-03-30T16:48:21.000+02:00","SANEF\DELESQUES","Cloud Agent","547ac993-a66c-4678-a2e6-d9e300fc5d90","2025-06-10T11:04:21.000+02:00","2026-04-17T08:11:42.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"360073185","","PCB18082.sanef.groupe","PCB18082","64:D6:9A:21:81:C6","10.205.0.25,192.168.1.119","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRG","","'+02:00","2026-04-10T10:27:56.000+02:00","SANEF\debrabander","Cloud Agent","af1cfe98-7d3e-4076-ab6f-9e29aaa538e3","2025-09-16T15:44:21.000+02:00","2026-04-17T08:05:31.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"326811958","","PCB18715.sanef.groupe","PCB18715","BC:0F:F3:3D:48:90","10.5.30.23,10.255.3.159","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224D2Z","","'+02:00","2026-04-08T16:44:07.000+02:00","SANEF\magnien","Cloud Agent","357a6a17-553e-413a-b562-12b2c2b5fc20","2025-05-23T10:02:59.000+02:00","2026-04-17T08:03:47.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"331406250","","PCB23518.sanef.groupe","PCB23518","6C:0B:5E:EE:A3:61","10.255.4.145,10.209.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBC","","'+02:00","2026-04-07T08:10:39.000+02:00","SANEF\hardys","Cloud Agent","58f3b767-733f-4067-820d-f99f3b1ae1a5","2025-06-06T11:38:06.000+02:00","2026-04-17T08:03:37.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"334676791","","PCB24158.sanef.groupe","PCB24158","DC:90:09:E1:3A:61","192.168.1.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XS","","'+02:00","2026-01-02T18:51:00.000+02:00","SANEF\verglas","Cloud Agent","030adae6-652f-4c0a-9f2f-240552c52f7e","2025-06-19T11:14:54.000+02:00","2026-04-17T07:58:50.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"334645335","","PCB24080.sanef.groupe","PCB24080","24:FB:E3:33:98:82","10.105.31.0","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506438T","","'+02:00","2026-04-16T10:18:01.000+02:00","SANEF\ASPEELE","Cloud Agent","927070ed-9111-4e91-9b84-47262f9a3a10","2025-06-19T09:54:05.000+02:00","2026-04-17T07:54:00.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"325961873","","PCB20746.sanef.groupe","PCB20746","58:1C:F8:E9:B9:DE","10.205.0.35,192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DSG","","'+02:00","2026-03-31T16:49:41.000+02:00","SANEF\VAUCOULEUR","Cloud Agent","783166db-fa75-4625-a093-3ab2b76c2de7","2025-05-20T14:18:26.000+02:00","2026-04-17T07:41:12.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"332261798","","PCB21301.sanef.groupe","PCB21301","30:F6:EF:A5:F8:D9","10.12.31.28,10.255.2.147","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GJP","","'+02:00","2026-04-15T07:35:23.000+02:00","SANEF\jaubert","Cloud Agent","05fd3794-ec04-4fb2-896e-71461e1e19a5","2025-06-10T12:25:09.000+02:00","2026-04-17T07:40:56.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331188763","","PCB17760.sanef.groupe","PCB17760","28:C5:D2:9F:C3:74","10.255.4.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3473Y4D","","'+02:00","2026-04-13T10:56:43.000+02:00","SANEF\TRAVERS","Cloud Agent","49498f13-1614-4cf0-8ee7-70d27191866a","2025-06-05T16:54:52.000+02:00","2026-04-17T07:35:11.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"358928583","344341860","PCB24212.sanef.groupe","PCB24212","70:15:FB:7B:DE:14","10.255.4.164","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZS","","'+02:00","2026-03-30T08:41:41.000+02:00","SANEF\stephanp","Cloud Agent","81b8bdd2-0128-4d5f-b815-0ea9fe7e884a","2025-09-11T17:23:13.000+02:00","2026-04-17T07:27:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","342.0" +"334726617","","PCB24076.sanef.groupe","PCB24076","08:B4:D2:2A:06:57","10.205.0.4,192.168.1.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506438J","","'+02:00","2026-04-16T08:36:52.000+02:00","SANEF\MISOIRE","Cloud Agent","12bed82c-c412-4e3d-92d9-05b4c4df6e5c","2025-06-19T16:01:15.000+02:00","2026-04-17T07:27:12.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"340405417","","PCB21297.sanef.groupe","PCB21297","30:F6:EF:A5:EB:14","10.101.243.69,192.168.1.61","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKN","","'+02:00","2026-04-02T09:55:20.000+02:00","SANEF\THIBAULT","Cloud Agent","0a5e8773-25eb-4de7-a091-7add3996d6ce","2025-07-09T10:31:37.000+02:00","2026-04-17T06:52:39.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"331465240","","PCB21176.sanef.groupe","PCB21176","F0:20:FF:9B:09:33","10.255.3.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3501HVL","","'+02:00","2026-04-15T07:22:25.000+02:00","SANEF\PREUVOT","Cloud Agent","0f2de273-bf2d-449e-a10a-5eeb2dfbf847","2025-06-06T16:18:15.000+02:00","2026-04-17T06:49:18.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"334478188","","PCB24088.sanef.groupe","PCB24088","24:FB:E3:33:98:68","10.100.39.119","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437Z","","'+02:00","2026-04-13T08:20:21.000+02:00","SANEF\CASCALES","Cloud Agent","0fe14d9c-73f9-4107-9dc7-ff91cf61ba7c","2025-06-18T17:19:32.000+02:00","2026-04-17T03:59:49.000+02:00","64-Bit","2","PM,GAV","Workstation,Cloud Agent","0.0" +"337000887","","PCB17798.sanef.groupe","PCB17798","28:C5:D2:9E:44:DB","10.205.0.39,192.168.1.114","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31960","HP V70 Ver. 01.11.00","5CG3473Y3V","","'+02:00","2026-04-15T21:51:32.000+02:00","SANEF\azouz","Cloud Agent","0249341c-e7f1-4ef0-91cb-0206e147aefa","2025-06-27T12:05:38.000+02:00","2026-04-17T02:22:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"213858625","251128419","spburadpe1.sanef.groupe","SPBURADPE1","20:67:7C:F1:F2:04","10.200.30.9","fe80::c9ff:700b:6cc1:5fdd","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8783) 64-Bit","1607","Computers / Server","HPE ProLiant DL360 G10 Server","8","2594","Intel(R) Xeon(R) Silver 4112 CPU @ 2.60GHz","16042","HPE U32","CZJ903090D","","'+02:00","2026-03-31T11:16:40.000+02:00","SANEF.GROUPE\atrad@sanef.com","Cloud Agent","edc641e9-f6b7-4a02-a235-ef406bc6401e","2024-02-05T20:21:47.000+02:00","2026-04-16T23:09:33.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DSI,BDD-SQL DYN,OS-WIN-SRV DYN,SCCM","523.0" +"350056341","340248161","PCB25802.sanef.groupe","PCB25802","F8:ED:FC:AB:02:51","10.101.243.147,10.205.0.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5282CT3","","'+02:00","2026-04-14T21:25:13.000+02:00","SANEF\TONNELIER","Cloud Agent","7cf65ed9-6c88-4087-916f-3cb43365d78f","2025-08-08T15:21:05.000+02:00","2026-04-16T22:04:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","59.0" +"281032077","305755502","PCB21335.sanef.groupe","PCB21335","D0:AD:08:AA:50:A3","10.202.31.36,169.254.41.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764M3","","'+02:00","2026-04-06T08:46:32.000+02:00","SANEF\laronche","Cloud Agent","12bff466-5ed2-40d6-8efb-95bb9899678d","2024-11-21T13:44:45.000+02:00","2026-04-16T19:48:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"323181432","329805755","PCB23718.sanef.groupe","PCB23718","C8:6E:08:49:2D:89","10.205.1.3,192.168.1.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H47","","'+02:00","2026-04-16T17:56:36.000+02:00","SANEF\ham","Cloud Agent","2a42c4db-be7c-4da1-818c-985ec922f53f","2025-05-09T11:55:35.000+02:00","2026-04-16T19:34:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","55.0" +"327302925","331522081","PCB20637.sanef.groupe","PCB20637","58:1C:F8:E9:51:9C","10.100.38.26,192.168.1.179","2a01:e0a:f9e:f900:68a2:18fb:8a34:4eb5,2a01:e0a:f9e:f900:75a2:ea0f:c630:faa8,fe80::3415:dc3a:ffe4:1e6","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T37 Ver. 01.12.00","5CG3224DRL","","'+02:00","2026-04-16T08:58:52.000+02:00","SANEF\randriamasy","Cloud Agent","53b26fca-8e7c-4fd5-b555-4bf5d38d9e3c","2025-05-26T10:11:50.000+02:00","2026-04-16T19:22:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","345.0" +"322631139","329602260","PCB21285.sanef.groupe","PCB21285","30:F6:EF:A3:F0:48","10.4.31.5,10.10.152.128","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3440GKL","","'+02:00","2026-04-16T17:06:56.000+02:00","SANEF\berger","Cloud Agent","034f2675-daaa-493f-b267-161dc5d2a208","2025-05-07T15:48:10.000+02:00","2026-04-16T18:04:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","146.0" +"322325528","329427042","PCB23553.sanef.groupe","PCB23553","C8:6E:08:89:0A:FD","10.205.0.141,192.168.1.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L82","","'+02:00","2026-04-08T09:08:30.000+02:00","SANEF\bouyer","Cloud Agent","bb7c5295-9c63-489e-91c9-ddb987be62f3","2025-05-06T10:33:22.000+02:00","2026-04-16T17:57:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"416486588","367839566","PCB22890.sanef.groupe","PCB22890","D0:AD:08:A3:7B:D0","10.252.4.50","fe80::3a20:5cd1:ddfb:7f97","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.21.00","8CC3502YW3","","'+02:00","2026-04-16T16:23:09.000+02:00","","Cloud Agent","599fd025-c0f9-462f-a097-55133c55a380","2026-04-16T16:16:13.000+02:00","2026-04-16T17:05:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"354674441","342489343","PCB21023.sanef.groupe","PCB21023","3E:6E:8C:6A:9E:34","10.205.0.52,10.143.115.116","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD336NWDT","","'+02:00","2026-04-15T14:15:42.000+02:00","SANEF\SCHLECK-ext","Cloud Agent","43233086-beed-4583-8a1f-249f8d66c95d","2025-08-26T16:02:47.000+02:00","2026-04-16T17:02:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"195400913","241773072","vpbotatvv1.sanef.groupe","","00:50:56:90:02:fb","10.41.23.11","fe80::250:56ff:fe90:2fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 d4 dd 86 65 f5 16-0b 8c 6e ec d1 4f 4a 7c","No Asset Tag","'+02:00","2026-04-16T15:47:04.000+02:00","cybreconcile","Cloud Agent","dcecd626-4a64-423b-b159-743ec40ae678","2023-10-24T23:32:36.000+02:00","2026-04-16T16:37:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Flux Libre,Production,flux_libre","140.0" +"412581119","366323100","PCB24095.sanef.groupe","PCB24095","70:15:FB:7E:20:DE","10.100.39.74,10.255.3.243","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8246) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZYN","","'+02:00","2026-04-15T17:05:42.000+02:00","SANEF\TRON","Cloud Agent","9014c42e-4239-4f13-9ac2-487fda898227","2026-03-31T09:45:45.000+02:00","2026-04-16T16:19:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","36.0" +"416465486","367837318","PCV22761.sanef-int.adds","PCV22761","D0-AD-08-A3-E7-A5","10.5.7.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","8CC3502YL4","","'+02:00","","","Cloud Agent","bd7133bf-b88f-4a49-bcb0-7c9b1eec1d6a","2026-04-16T15:50:13.000+02:00","2026-04-16T15:50:12.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"376636329","351615047","PCB24073.sanef.groupe","PCB24073","08:B4:D2:2A:09:22","10.255.4.155","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5064381","","'+02:00","2026-04-15T13:11:32.000+02:00","SANEF\vaniet","Cloud Agent","dfb8979e-32da-41e5-bae5-54bec6340f81","2025-11-14T13:15:56.000+02:00","2026-04-16T15:31:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","338.0" +"317594434","327674261","PCB23774.sanef.groupe","PCB23774","C8:6E:08:47:18:E6","192.168.1.64,10.207.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4H","","'+02:00","2026-03-30T15:42:42.000+02:00","SANEF\petitjer","Cloud Agent","69d776cb-3a13-4145-9b9a-40a876801bbb","2025-04-18T10:45:08.000+02:00","2026-04-16T15:22:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","61.0" +"346045642","338990285","PCB18090.sanef.groupe","PCB18090","56:6B:BB:B6:7B:97","10.101.243.59,192.168.1.69","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HTC","","'+02:00","2026-04-14T09:18:28.000+02:00","SANEF\RENARD","Cloud Agent","ae9aa3d2-a32d-4fea-883d-a05ccf5d6ee9","2025-07-29T10:14:07.000+02:00","2026-04-16T15:11:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","56.0" +"410541366","365360992","PCB17927.sanef.groupe","PCB17927","70:A8:D3:85:76:4A","10.200.31.42,10.255.3.40","fe80::cd55:44a3:abc7:df25","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.14.00","5CG2172481","","'+01:00","2026-03-25T16:58:24.000+02:00","SANEF\carond","Cloud Agent","2051390d-5fbb-4c92-b11b-52dbb0abe96e","2026-03-23T10:34:00.000+02:00","2026-04-16T15:09:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","342.0" +"362903921","345904838","PCB24068.sanef.groupe","PCB24068","94:B6:09:9D:2F:BF","10.255.3.202","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5162X3C","","'+02:00","2026-03-10T16:05:04.000+02:00","SANEF\mahieux","Cloud Agent","2956ccfa-ab42-411a-add7-3b2e1a4baa14","2025-09-25T09:42:59.000+02:00","2026-04-16T15:06:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","139.0" +"361943237","345509524","SVP22662.sanef-int.adds","SVP22662","D0:AD:08:A4:73:BB","10.105.18.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764CV","","'+02:00","2026-04-14T08:59:57.000+02:00","Superviseur","Cloud Agent","c206e960-5ea2-4921-9bb0-8012a45d6b5f","2025-09-22T11:16:22.000+02:00","2026-04-16T15:06:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"389545130","357332762","PCB17891.sanef.groupe","PCB17891","70:A8:D3:85:C6:5E","10.255.3.224","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724CY","","'+02:00","2026-04-09T11:20:11.000+02:00","SANEF\derancourtv","Cloud Agent","fa8d067d-5e6e-430a-87bf-d71894388bf2","2026-01-08T11:06:48.000+02:00","2026-04-16T15:04:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","149.0" +"356865778","343513095","PCB20657.sanef.groupe","PCB20657","BC:0F:F3:3D:08:D9","10.255.1.232,10.101.243.154","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DQ3","","'+02:00","2026-03-31T12:40:12.000+02:00","SANEF\THIBOUT","Cloud Agent","fbe9ea79-1202-4b12-a16a-4aa985107535","2025-09-04T11:47:05.000+02:00","2026-04-16T15:04:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"415979507","367683102","PCM13456.sanef.groupe","PCM13456","C8:D9:D2:33:54:35","10.4.50.250","fe80::20fb:47a2:ed39:d904","Windows / Client","Microsoft Windows 10 Pro (22H2 Build 19045.2965) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G4 Desktop","6","","","7971","","CZC924CX9L","CZC924CX9L","'+02:00","2026-04-15T10:25:12.000+02:00","SANEF\dewilde","Cloud Agent","b18e9ad8-360c-4d3f-b352-117b806fa38c","2026-04-15T10:29:35.000+02:00","2026-04-16T15:02:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","345.0" +"404391139","362817042","SVP22625.sanef-int.adds","SVP22625","D0:AD:08:A4:73:75","10.112.3.26,10.92.6.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764J6","","'+01:00","2026-02-26T11:27:41.000+02:00","Superviseur","Cloud Agent","dc47a802-2047-4b6b-a8b5-885e81de8124","2026-02-26T12:13:50.000+02:00","2026-04-16T14:54:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","347.0" +"208798629","248759583","PCB20616.sanef.groupe","PCB20616","58:1C:F8:EA:00:47","10.255.2.236","fe80::e61:e972:db98:c374","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.5737) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.12.00","5CG3224D3V","","'+02:00","2026-04-06T14:26:28.000+02:00","SANEF\clavons","Cloud Agent","62860edc-f6f6-40b7-a20e-2a6fffbf6525","2024-01-10T14:47:37.000+02:00","2026-04-16T14:53:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"187719047","242979015","nvr-spare-mon","NVR-SPARE-MON","00:50:56:82:F4:AD","10.210.27.252","fe80::e93c:8368:73c2:e341","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 c1 69 93 94 35 ef-9e 76 dc ad 91 fc fb a8","NoAssetTag","'+02:00","2026-01-28T13:06:14.000+02:00","Administrateur","Cloud Agent","46c7b828-103e-472e-ad79-c05498fd6117","2023-09-13T19:53:46.000+02:00","2026-04-16T14:47:46.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,Cloud Agent,DEX,OS-WIN-SRV DYN","508.0" +"411667686","365757046","PCB18737.sanef.groupe","PCB18737","BC:0F:F3:3D:68:45","10.4.31.76","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CS8","","'+02:00","2026-03-30T19:10:52.000+02:00","SANEF\nowak-ext","Cloud Agent","172cfb48-3efe-4d7e-8345-addd53247b2a","2026-03-26T18:18:05.000+02:00","2026-04-16T14:46:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"368819283","348253309","PCB18111.sanef.groupe","PCB18111","38:CA:84:52:67:E4","10.205.0.13,10.200.31.67","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HR5","","'+02:00","2026-03-30T10:05:29.000+02:00","narima.kaibou@bipandgo.com","Cloud Agent","c5ef842e-72cd-4fba-8dee-9a4f7fb62037","2025-10-15T14:52:05.000+02:00","2026-04-16T14:31:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"361912721","345504584","PCB24091.sanef.groupe","PCB24091","24:FB:E3:35:30:B9","10.100.39.75","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5085GGQ","","'+02:00","2026-04-15T07:49:01.000+02:00","SANEF\DEROCH","Cloud Agent","e21387d2-9a34-4513-a8ce-3e42658abd12","2025-09-22T10:39:29.000+02:00","2026-04-16T14:29:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","246.0" +"334948979","334365197","PCB24067.sanef.groupe","PCB24067","24:FB:E3:33:98:5B","10.155.31.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD506437K","","'+02:00","2026-04-13T16:30:05.000+02:00","SANEF\lecoustre","Cloud Agent","ca33584e-7aa0-4b74-8952-9eaefdac7f58","2025-06-20T10:53:19.000+02:00","2026-04-16T14:27:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","251.0" +"415400907","367447959","PCB18064.sanef.groupe","PCB18064","64:D6:9A:21:81:D0","10.205.0.17,10.255.1.213","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HTB","","'+02:00","2026-04-15T14:59:42.000+02:00","SANEF\randriamasy","Cloud Agent","787e1851-4782-4765-b1b3-524402a741eb","2026-04-13T08:23:37.000+02:00","2026-04-16T14:25:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"320192003","328622099","PCB23550.sanef.groupe","PCB23550","C8:6E:08:8A:50:CA","10.255.3.225,192.168.1.93","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7K","","'+02:00","2026-04-16T08:01:27.000+02:00","SANEF\LHOMME","Cloud Agent","3589ba89-bbf2-4f89-80f0-b33438c1a483","2025-04-28T13:51:47.000+02:00","2026-04-16T14:21:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","243.0" +"322582324","329577380","PCB22338.sanef.groupe","PCB22338","D0:AD:08:A3:7B:5B","10.219.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRJ","8CC3502YRJ","'+02:00","2026-04-10T09:23:02.000+02:00","frederic.bobee@sapn.fr","Cloud Agent","ccd2319b-503f-4d5b-ac0b-eecf20d3b7a5","2025-05-07T11:24:40.000+02:00","2026-04-16T14:08:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","56.0" +"322364764","329430850","PCB23564.sanef.groupe","PCB23564","C8:6E:08:8A:45:53","10.200.31.16,192.168.1.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4460L9T","","'+02:00","2026-03-19T09:28:26.000+02:00","SANEF\grenierv","Cloud Agent","5756bc75-fee2-4b62-b92a-029765842af4","2025-05-06T11:15:00.000+02:00","2026-04-16T13:57:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"318392781","328021212","PCB23721.sanef.groupe","PCB23721","C8:6E:08:47:18:D2","10.255.4.139,10.255.4.153","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4G","","'+02:00","2026-04-10T16:01:08.000+02:00","SANEF\lemaireg","Cloud Agent","87a39f58-da05-41ee-b679-341c6b313979","2025-04-22T10:41:20.000+02:00","2026-04-16T13:46:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"352191310","341489675","PCB23768.sanef.groupe","PCB23768","C8:6E:08:47:8B:96","10.205.0.202,192.168.1.96","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H2D","","'+02:00","2026-04-07T08:30:50.000+02:00","SANEF\bregolis","Cloud Agent","c57e2582-bf90-487c-bbe4-0519a320aac6","2025-08-18T15:09:15.000+02:00","2026-04-16T13:40:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","55.0" +"411743506","365777427","SVP22515.sanef-int.adds","SVP22515","D0:AD:08:A4:73:5F","10.182.12.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764H1","","'+02:00","2026-04-16T08:31:22.000+02:00","Superviseur","Cloud Agent","55060703-05c5-4ea6-8ef9-a553ec8be1a2","2026-03-26T23:52:23.000+02:00","2026-04-16T11:47:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"185110186","235936035","ls-spare-mon","LS-SPARE-MON","00:50:56:82:8F:3B","10.210.22.254","fe80::e793:df05:4eff:4319","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 f1 38 00 2a bb 65-3d 93 0a b4 b2 c1 ab c9","NoAssetTag","'+02:00","2026-03-05T16:55:54.000+02:00","gare","Cloud Agent","8983dcb9-851c-41c6-8a3f-f19e7c6a4d87","2023-08-29T16:08:38.000+02:00","2026-04-16T11:29:00.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,Windows Server,DEX,OS-WIN-SRV DYN,SVP,Péage","680.0" +"415791403","367597485","PCB25878.sanef.groupe","PCB25878","4C:CF:7C:0A:6C:6A","10.252.4.8","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","14","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342233","","'+02:00","2026-04-14T18:49:18.000+02:00","","Cloud Agent","74efd903-deec-44ba-ab0e-ac1cdc6bc2b4","2026-04-14T15:09:16.000+02:00","2026-04-16T11:19:13.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","254.0" +"372479786","349746260","PBM21153.sanef-int.adds","PBM21153","D0:AD:08:A3:7B:E9","10.5.50.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YVK","","'+02:00","2026-03-27T09:52:35.000+02:00","Operateur","Cloud Agent","bbb9dafb-7927-437d-9771-a0d25157b621","2025-10-28T18:33:17.000+02:00","2026-04-16T11:14:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"397353695","360329955","SVP22630.sanef-int.adds","SVP22630","D0:AD:08:A2:AE:58","10.82.9.29,10.7.32.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764FT","","'+02:00","2026-04-10T12:07:21.000+02:00","Superviseur","Cloud Agent","34df7ef8-9659-40e0-8d35-1a6ff64c446e","2026-02-04T11:11:24.000+02:00","2026-04-16T10:54:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"411840560","365815055","PCV20924.sanef-int.adds","PCV20924","BC:0F:F3:88:FD:33","10.1.27.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3290LMJ","","'+02:00","2026-03-27T10:01:09.000+02:00","Operateur","Cloud Agent","bf914232-fef7-421c-a473-d6d5201af858","2026-03-27T10:02:24.000+02:00","2026-04-16T10:19:15.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"359734091","","PCB24193.sanef.groupe","PCB24193","10:B6:76:8A:F3:89","10.255.1.224,10.182.8.199","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YLH","","'+02:00","2026-04-15T14:44:45.000+02:00","SANEF\LOUTON","Cloud Agent","796dbbd1-741f-499f-a400-dc96a7fac8a1","2025-09-15T10:18:28.000+02:00","2026-04-16T10:08:12.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"325715706","","PCB20693.sanef.groupe","PCB20693","58:1C:F8:EA:00:0B","10.255.2.193","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DR3","","'+02:00","2026-04-13T12:37:58.000+02:00","SANEF\MARTINP","Cloud Agent","b44e4156-35a8-455d-91dc-cae36c0ee823","2025-05-19T14:20:47.000+02:00","2026-04-16T09:10:52.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"325013557","","PCB18023.sanef.groupe","PCB18023","38:CA:84:52:F8:A3","10.100.39.52","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HV2","","'+02:00","2026-03-31T18:43:22.000+02:00","SANEF\DRUON","Cloud Agent","2db7c23e-f3b3-4e73-a504-1b3c63ea534d","2025-05-15T15:48:13.000+02:00","2026-04-16T07:43:52.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"384553215","355070650","PCV21266.sanef-int.adds","PCV21266","D0:AD:08:1F:7E:D8","10.252.17.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3451GV3","","'+02:00","2026-03-31T15:14:02.000+02:00","Operateur","Cloud Agent","54496b5b-854c-49c5-8826-d79d38749cf4","2025-12-17T16:31:11.000+02:00","2026-04-16T07:34:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"408223923","364415845","PCB22281.sanef.groupe","PCB22281","D0:AD:08:A3:7C:66","10.203.31.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502Z00","8CC3502Z00","'+02:00","2026-03-28T09:12:33.000+02:00","SANEF\mathieuf","Cloud Agent","06fcdaff-e820-47cc-b113-4f9bef40de17","2026-03-13T11:59:39.000+02:00","2026-04-16T03:17:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","146.0" +"320298027","328640816","PCB23533.sanef.groupe","PCB23533","C8:6E:08:8A:40:8F","10.205.0.104,192.168.1.101","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L6X","","'+02:00","2026-03-30T09:17:16.000+02:00","SANEF\boulfroy","Cloud Agent","a4dc864d-1904-4715-a016-bb9eb96b0855","2025-04-28T17:08:47.000+02:00","2026-04-15T23:54:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"326832593","331299430","PCB23635.sanef.groupe","PCB23635","C8:6E:08:8A:45:3F","10.255.3.191","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7G","","'+02:00","2026-04-07T19:24:59.000+02:00","SANEF\provin","Cloud Agent","3b9bc440-29a2-4cde-98f7-f4a9b56b8537","2025-05-23T12:41:11.000+02:00","2026-04-15T22:18:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","249.0" +"273781743","302014440","PCB17201.sanef.groupe","PCB17201","58:6C:25:2B:14:A2","10.205.1.16,192.168.1.82","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.23.00","5CG133658Z","","'+02:00","2026-03-26T18:25:14.000+02:00","SANEF\GARCIAL-ext","Cloud Agent","02472cc7-22de-4d2c-a63e-54ed8427b4b2","2024-10-22T14:38:15.000+02:00","2026-04-15T20:12:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","341.0" +"408236298","364433256","PCB22348.sanef.groupe","PCB22348","D0:AD:08:A3:7B:4A","10.202.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YRZ","8CC3502YRZ","'+02:00","2026-03-28T09:12:09.000+02:00","SANEF\noblet","Cloud Agent","3f847f79-de25-47a9-b218-83b31581d1e0","2026-03-13T15:33:40.000+02:00","2026-04-15T17:56:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","146.0" +"334385383","334126160","PCB24108.sanef.groupe","PCB24108","C8:58:B3:0B:59:8C","10.104.31.3,10.255.2.226","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.01","5CG5041V69","","'+02:00","2026-03-30T09:27:53.000+02:00","SANEF\VANDEPUTTE","Cloud Agent","bc89a3d7-5e2e-4fcf-b381-7f82cfb47e6b","2025-06-18T10:51:16.000+02:00","2026-04-15T15:37:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","49.0" +"361954461","345519234","PCB24204.sanef.groupe","PCB24204","10:B6:76:97:D4:CD","10.206.31.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5192YL5","","'+02:00","2026-04-15T08:13:20.000+02:00","SANEF\brevera","Cloud Agent","c87f2e30-4e2f-48e7-b57a-9f8c79b35d27","2025-09-22T12:53:09.000+02:00","2026-04-15T15:23:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","249.0" +"325015761","","PCB20748.sanef.groupe","PCB20748","58:1C:F8:EA:00:92","192.168.1.62,10.205.0.150","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3Y","","'+02:00","2026-04-13T08:52:04.000+02:00","SANEF\fontaine","Cloud Agent","f349dcfc-7ec4-4631-aa18-cd0e000d072e","2025-05-15T16:00:47.000+02:00","2026-04-15T15:12:43.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"375660754","351161761","PAD17110.sanef.groupe","PAD17110","F4:26:79:47:94:29, C8:5A:CF:B8:F2:76","10.255.2.172,10.20.31.5","fe80::46d9:15e9:9c20:5d17,fe80::d9e6:3740:f305:acf9","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP ProBook 640 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T74 Ver. 01.08.01","5CD15181MK","","'+02:00","2026-04-15T14:58:29.000+02:00","SANEF\LAD01483","Cloud Agent","88df9cf6-9884-4fa1-af10-d71cd6c6ba3e","2025-11-10T17:47:19.000+02:00","2026-04-15T15:06:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"385562639","355746923","PCB23578.sanef.groupe","PCB23578","C8:6E:08:88:FD:6A","10.203.31.7,10.255.2.169","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460LBG","","'+02:00","2026-03-31T10:17:56.000+02:00","SANEF\mutel","Cloud Agent","f72ed4a3-55aa-47ee-9814-8236313e4a6a","2025-12-22T15:01:56.000+02:00","2026-04-15T13:55:25.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"299204442","319643146","VMB12156.sanef.groupe","VMB12156","00:50:56:9C:74:60","10.45.13.207","fe80::6b80:cd98:b342:714e","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","VMware, Inc. VMW71.00V.24224532.B64.2408191458","VMware-42 1c 37 1a 69 cf 88 6c-e5 99 eb 52 79 45 f9 32","NoAssetTag","'+02:00","2025-11-29T09:05:26.000+02:00","SANEF\ARNOULD-ext","Cloud Agent","59aca380-8721-471c-8923-58f5fd2f2bbb","2025-02-10T17:27:37.000+02:00","2026-04-15T13:48:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"331167010","","PCB18712.sanef.groupe","PCB18712","BC:0F:F3:3D:F7:04","10.12.31.3","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224CRW","","'+02:00","2026-03-29T09:21:06.000+02:00","SANEF\dautelc","Cloud Agent","0b2deb87-1742-4794-9144-c33b63fcd504","2025-06-05T15:33:37.000+02:00","2026-04-15T13:38:05.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"320048077","328599590","PCB24025.sanef.groupe","PCB24025","EC:4C:8C:C1:88:CE","192.168.10.104,10.255.4.155","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4502HF4","","'+02:00","2026-04-07T13:43:19.000+02:00","SANEF\kuchar","Cloud Agent","c9d0e4ed-8e5f-403a-ad68-b0a98b85d10e","2025-04-28T10:09:14.000+02:00","2026-04-15T12:55:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"360922279","345098813","SVP21083.sanef-int.adds","SVP21083","64:4E:D7:9E:D0:9B","10.212.26.27,10.212.39.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.5909) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD336NWF4","","'+02:00","2026-04-08T12:15:09.000+02:00","Superviseur","Cloud Agent","b557de2d-c4a3-4688-af94-41587098919a","2025-09-18T13:22:08.000+02:00","2026-04-15T12:50:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"395849920","359642136","PCB24165.sanef.groupe","PCB24165","DC:90:09:E1:8B:B0","10.255.4.226","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XW","","'+02:00","2026-04-01T14:34:44.000+02:00","SANEF\omonts","Cloud Agent","a1e0c03a-d5c9-473e-b41a-bdafcc77985d","2026-01-29T12:07:48.000+02:00","2026-04-15T11:49:30.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"280778017","305600515","PCB21333.sanef.groupe","PCB21333","E4:60:17:CB:E7:1A","10.205.0.71,192.168.1.201","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764G0","","'+02:00","2026-04-03T09:57:19.000+02:00","SANEF\roberta","Cloud Agent","db08bee7-6ede-4e47-90ce-530d76b63c4a","2024-11-20T12:15:03.000+02:00","2026-04-15T11:38:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"347820161","339379527","PCB18114.sanef.groupe","PCB18114","38:CA:84:52:49:4A","10.205.0.12,10.101.243.175","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HTN","","'+02:00","2026-03-28T12:31:14.000+02:00","SANEF\NOMMAY-ext","Cloud Agent","54357094-730f-41f9-83fb-e156cf690985","2025-07-31T10:50:01.000+02:00","2026-04-15T11:32:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"320061791","328599323","PCB23569.sanef.groupe","PCB23569","C8:6E:08:88:FD:56","10.205.0.172,192.168.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L78","","'+02:00","2026-02-05T00:42:06.000+02:00","SANEF\spinner","Cloud Agent","2490e9dd-6223-400b-8633-9fd345d11808","2025-04-28T10:07:50.000+02:00","2026-04-15T11:11:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"331194562","","PCB17762.sanef.groupe","PCB17762","28:C5:D2:9F:C3:C9","10.255.3.230","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y3W","","'+02:00","2026-03-31T18:25:51.000+02:00","SANEF\boulefroy","Cloud Agent","ce1871d8-fd26-42ba-8996-4f8e4f048941","2025-06-05T17:26:18.000+02:00","2026-04-15T10:57:55.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"322342973","329422566","PCB22791.sanef.groupe","PCB22791","D0:AD:08:A3:E6:D4","10.5.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YPX","8CC3502YPX","'+02:00","2026-04-12T13:25:49.000+02:00","SANEF\kociolekn","Cloud Agent","c3554890-686d-4342-ae02-d558ad204316","2025-05-06T09:49:02.000+02:00","2026-04-15T09:57:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"327544297","","PCB23537.sanef.groupe","PCB23537","C8:6E:08:88:F0:D1","10.255.4.227,192.168.1.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L9V","","'+02:00","2026-04-03T09:57:57.000+02:00","SANEF\aubryv","Cloud Agent","2f6d5976-d8d4-4fe2-9828-3ab7f43e20cd","2025-05-27T12:12:22.000+02:00","2026-04-15T09:00:04.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"322118035","329343790","PCB23592.sanef.groupe","PCB23592","6C:0B:5E:EE:BC:A5","10.205.0.25,10.200.31.69","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7M","","'+02:00","2026-03-30T15:05:27.000+02:00","sebastien.david@sapn.fr","Cloud Agent","aab0f28b-5a73-4a18-872a-cd4b24bb48b0","2025-05-05T15:53:33.000+02:00","2026-04-14T17:57:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","147.0" +"415792290","367604464","PCB18191.sanef.groupe","PCB18191","64:4E:D7:0F:F2:7C","10.252.4.44","fe80::7b1:b88f:ba98:8528","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584)","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","","","15568","HP V74 Ver. 01.11.00","5CD3295RYH","","'+02:00","2026-04-14T16:39:34.000+02:00","","Cloud Agent","334bae13-e697-446d-8801-7d39e934711e","2026-04-14T16:30:16.000+02:00","2026-04-14T16:51:50.000+02:00","64 bits","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"413292284","366610510","PCB22720.sanef.groupe","PCB22720","D0:AD:08:AA:50:76","10.220.30.12,10.220.31.33","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.05.05","5CD34764KN","","'+02:00","2026-04-14T12:15:40.000+02:00","SANEF\delamarre","Cloud Agent","64ff0bb8-102d-421a-b3a3-393a4365eff1","2026-04-03T09:25:09.000+02:00","2026-04-14T16:33:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","145.0" +"343112024","337777714","PCB23697.sanef.groupe","PCB23697","6C:0B:5E:EE:EC:D9","10.103.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L5M","","'+02:00","2026-03-29T09:29:35.000+02:00","SANEF\CALOIN","Cloud Agent","52ad9fc3-f8f9-4987-bb8b-b9135813eb57","2025-07-18T11:59:41.000+02:00","2026-04-14T15:02:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","339.0" +"373213100","350070761","PCB24164.sanef.groupe","PCB24164","24:FB:E3:F3:E9:84","10.152.31.34","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.04.00","5CG52136XR","","'+02:00","2026-04-07T09:15:55.000+02:00","SANEF\VIENNOT","Cloud Agent","519e338c-dd70-43d8-a29b-84cca51c8242","2025-10-31T11:53:35.000+02:00","2026-04-14T14:55:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"320081805","328609236","PCB24041.sanef.groupe","PCB24041","EC:4C:8C:C0:1A:16","192.168.1.164,10.255.1.213","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.08.01","5CG4502HDW","","'+02:00","2026-03-24T15:47:25.000+02:00","SANEF\linet","Cloud Agent","da61d621-5ed0-4c65-9c41-c773f6dc9f1a","2025-04-28T11:43:21.000+02:00","2026-04-14T14:42:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"322061869","329334044","PCB21600.sanef.groupe","PCB21600","D0:AD:08:A4:4D:AA","10.105.31.7","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K5","8CC34711K5","'+02:00","2026-04-02T09:22:27.000+02:00","SANEF\POPOWSKI","Cloud Agent","e55ac753-3308-47e1-9e59-bfe295a40992","2025-05-05T14:22:54.000+02:00","2026-04-14T14:27:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","150.0" +"415474702","367483721","MTR-5MRTL64","MTR-5MRTL64","EC:4C:8C:94:AD:59","10.255.6.29","fe80::862f:e721:a5d1:3763","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","5MRTL64","","'+02:00","2026-04-14T10:13:48.000+02:00","Admin","Cloud Agent","cebdc9a7-69a9-45cf-871c-447bb7b84f62","2026-04-13T14:46:11.000+02:00","2026-04-14T13:00:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","245.0" +"327515529","","PCB23607.sanef.groupe","PCB23607","C8:6E:08:88:F0:8B","10.255.2.135","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L62","","'+02:00","2026-03-31T15:55:47.000+02:00","SANEF\POPOWSKI","Cloud Agent","f2cf4539-50d9-4c95-8751-f05e4e26ea8b","2025-05-27T09:59:16.000+02:00","2026-04-14T12:47:39.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"323160071","329797274","PCB23766.sanef.groupe","PCB23766","6C:0B:5E:EE:93:0F","10.8.30.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4L","","'+02:00","2026-03-31T09:08:35.000+02:00","SANEF\fillingerm","Cloud Agent","4ff800fb-0f8b-4577-8f12-ca49787488ab","2025-05-09T10:12:14.000+02:00","2026-04-14T11:52:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","329.0" +"321561177","329073260","PCB22341.sanef.groupe","PCB22341","60:45:2E:11:E8:0B","10.255.2.182","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLK","8CC3502YLK","'+02:00","2026-04-07T17:51:05.000+02:00","SANEF\LEON","Cloud Agent","31784324-4966-49bf-9dde-2831d44e56bf","2025-05-02T10:25:39.000+02:00","2026-04-14T04:32:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","145.0" +"364694470","346595161","PCB21602.sanef.groupe","PCB21602","28:C5:D2:84:07:38","10.255.1.139","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K7","8CC34711K7","'+02:00","2026-03-28T09:11:16.000+02:00","SANEF\adamp","Cloud Agent","7029210b-2d21-4cb9-b53e-9bd540dbd2ae","2025-10-01T13:01:11.000+02:00","2026-04-14T03:40:55.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","145.0" +"199488674","243924682","PCB15576.sanef.groupe","PCB15576","80:B6:55:35:D2:66","10.255.3.151","fe80::39e6:c0c6:e0b6:a2bd","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","3096","Intel(R) Core(TM) i5-10500 CPU @ 3.10GHz","16159","HP S21 Ver. 02.08.01","8CC1432Z3N","8CC1432Z3N","'+02:00","2026-04-03T13:57:00.000+02:00","{60B78E88-EAD8-445C-9CFD-0B87F74EA6CD}","Cloud Agent","28b3d669-88fd-4603-bda6-a2080adb4d05","2023-11-17T10:47:03.000+02:00","2026-04-13T16:55:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"415453544","367460886","MTO22918.sanef.groupe","MTO22918","60-45-2E-11-62-C8, 60-45-2E-11-62-C9, D0-AD-08-A3-7B-E7, 62-45-2E-11-62-C8, 60-45-2E-11-62-CC","10.252.4.23","fe80::f875:fe3f:7a1:d64e","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.8037)","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","","","16053","","8CC3502YVJ","8CC3502YVJ","'+02:00","2026-04-13T14:51:06.000+02:00","","Cloud Agent","0d14fa57-9307-4263-94cb-44eaf69be6c1","2026-04-13T10:41:06.000+02:00","2026-04-13T14:57:10.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"415474522","367481217","vpdsiangx2.sanef.groupe","","00:00:00:00:00:00, 00:50:56:90:1b:dd","192.168.19.161","::1","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Server","","","","","","VMware-42 10 4e f9 6e 78 ec d3-fa f1 ed 76 57 63 30 fe","","'+02:00","","","Cloud Agent","9f2559d4-1234-49aa-8f55-5057c02d8470","2026-04-13T14:27:05.000+02:00","2026-04-13T14:27:04.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","0.0" +"415486980","367481218","vpdsiangx1.sanef.groupe","","00:00:00:00:00:00, 00:50:56:90:ae:4a","192.168.19.160","::1","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Server","","","","","","VMware-42 10 8d 88 c9 1d 51 81-80 87 7e a2 d2 d0 a2 4c","","'+02:00","","","Cloud Agent","ec715c55-d9d9-4497-9159-deb3d95c5181","2026-04-13T14:23:28.000+02:00","2026-04-13T14:23:26.000+02:00","x64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","0.0" +"415479841","367480545","vpdsiahap2.sanef.groupe","","00:50:56:90:a5:70","192.168.19.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 79 42 7e 15 dd 6d-44 e3 7d 75 da f1 8e f6","","'+02:00","2026-04-13T14:17:29.000+02:00","cybintsys","Cloud Agent","94925ce9-7329-428f-a9fe-48b21f42a1c3","2026-04-13T14:17:35.000+02:00","2026-04-13T14:19:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","0.0" +"415483225","367480191","vpdsiahap1.sanef.groupe","","00:50:56:90:08:f8","192.168.19.132,192.168.19.134","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 2e 4a 83 50 cb 8e-0e 6c ef 83 29 6e 3c 7a","","'+02:00","2026-04-13T14:11:12.000+02:00","cybintsys","Cloud Agent","d2e411da-48eb-4fa6-8177-640b7de770a9","2026-04-13T14:11:22.000+02:00","2026-04-13T14:13:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","0.0" +"317053317","327378301","SVP22859.sanef-int.adds","SVP22859","D0:AD:08:A7:28:65","10.12.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLY","","'+02:00","2026-03-12T18:04:14.000+02:00","Superviseur","Cloud Agent","01f40769-a244-499f-8d12-0b0a1034ce1e","2025-04-16T08:51:32.000+02:00","2026-04-13T12:45:02.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Forescout,Workstation,Cloud Agent","686.0" +"356896721","343527045","SVP18476.sanef-int.adds","SVP18476","D0:AD:08:A2:AE:5E","10.212.39.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.09.01","5CD34764FP","","'+02:00","2026-03-25T11:29:18.000+02:00","Superviseur","Cloud Agent","109b0a18-0a20-4e0a-88f4-596d502f9f24","2025-09-04T13:48:03.000+02:00","2026-04-13T12:37:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","348.0" +"414970292","367268364","MTR-FKRTL64","MTR-FKRTL64","EC:4C:8C:91:DF:3E","10.255.6.28","fe80::f6c0:3abe:edfe:cc4e","Windows / Client","Microsoft Windows 11 IoT Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","Dell OptiPlex 7000 Desktop","20","1400","12th Gen Intel(R) Core(TM) i7-12700T","16073","Dell Inc. 1.22.0","FKRTL64","","'+02:00","2026-04-13T10:28:23.000+02:00","Skype","Cloud Agent","46b1c42c-45b2-4bc0-9983-7a870095a4bc","2026-04-10T17:24:09.000+02:00","2026-04-13T11:39:18.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","243.0" +"408025140","364323044","PCV21146.sanef-int.adds","PCV21146","D0:AD:08:A3:7B:23","10.252.2.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.21.00","8CC3502YXK","","'+02:00","2026-03-31T17:39:12.000+02:00","Operateur","Cloud Agent","650b5e2b-38b4-4c73-b8eb-c9b8712eb822","2026-03-12T16:59:38.000+02:00","2026-04-13T11:16:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","238.0" +"325702018","","PCB16442.sanef.groupe","PCB16442","DC:21:48:FE:76:17","192.168.248.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","1","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.06.03","5CD14383ZW","","'+02:00","2026-04-06T15:23:27.000+02:00","SANEF\LAMRANI-ext","Cloud Agent","74c8b238-0566-46f5-b792-f54c89b7c1ae","2025-05-19T12:20:12.000+02:00","2026-04-13T10:09:34.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"415422989","367450195","MTO22918.sanef.groupe","MTO22918","D0:AD:08:A3:7B:E7","10.252.4.23","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.21.00","8CC3502YVJ","","'+02:00","2026-04-13T09:40:53.000+02:00","SANEF\meteonewsw11","Cloud Agent","dc02f973-358a-4195-822c-560ace1077fb","2026-04-13T08:58:42.000+02:00","2026-04-13T10:02:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"329750335","","PCB20661.sanef.groupe","PCB20661","58:1C:F8:EA:00:65","10.205.0.11,192.168.1.179","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D31","","'+02:00","2026-03-31T13:56:23.000+02:00","SANEF\BOURICH","Cloud Agent","f501c876-daa2-4c0f-97a9-768a274a25df","2025-06-03T12:19:20.000+02:00","2026-04-13T08:48:43.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"407614729","364148644","PCB25914.sanef.groupe","PCB25914","C4-0F-08-B2-31-F2, C4-0F-08-B2-31-EE, C4-0F-08-B2-31-EF, C6-0F-08-B2-31-EE","10.255.3.169","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CG5342221","","'+01:00","","","Cloud Agent","6eec8df5-3e54-4bfd-918d-d687104eeaed","2026-03-11T09:28:40.000+02:00","2026-03-11T09:28:39.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"321562315","329083162","PCB21503.sanef.groupe","PCB21503","60:45:2E:11:62:BE","10.255.3.136","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YWG","8CC3502YWG","'+02:00","2026-03-29T09:11:52.000+02:00","SANEF\niva","Cloud Agent","fd8ab26e-a02c-452c-ba43-bb0a1b4719e6","2025-05-02T12:28:20.000+02:00","2026-04-13T07:48:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"414698137","367160168","MTO22918.sanef.groupe","MTO22918","D0:AD:08:A3:7B:E7","10.252.4.23","fe80::8b0e:9d7:4087:591","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.21.00","8CC3502YVJ","8CC3502YVJ","'+02:00","2026-04-09T16:59:50.000+02:00","","Cloud Agent","88e9f51b-f149-4b77-b06e-d0836cfaa023","2026-04-09T16:52:40.000+02:00","2026-04-13T05:42:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"360913044","345091213","PCB22770.sanef.groupe","PCB22770","60:45:2E:0F:3F:6B","10.255.1.134","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YL5","","'+02:00","2026-03-29T09:12:14.000+02:00","SANEF\CUGNART","Cloud Agent","b45a9412-bbdd-48fa-b800-9161d4592702","2025-09-18T11:46:01.000+02:00","2026-04-13T05:31:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"320123702","328628332","PCB23567.sanef.groupe","PCB23567","C8:6E:08:88:E2:67","10.255.4.187","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L49","","'+02:00","2026-04-09T17:10:42.000+02:00","SANEF\louchartr","Cloud Agent","29cb55c4-0c7e-4148-9ff6-e4df13021f83","2025-04-28T15:03:43.000+02:00","2026-04-13T05:07:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"331139903","","PCB23546.sanef.groupe","PCB23546","C8:6E:08:8A:3C:52","10.205.0.250,192.168.1.99","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L43","","'+02:00","2026-03-31T10:46:26.000+02:00","SANEF\hermary","Cloud Agent","1a675588-f1d0-4fdd-b17e-ee0c18a02d22","2025-06-05T13:58:40.000+02:00","2026-04-11T17:04:25.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"398581269","360738522","SVP21360.sanef-int.adds","SVP21360","D0:AD:08:A4:73:56","10.182.8.29,169.254.234.32","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764HB","","'+02:00","2026-03-28T12:10:17.000+02:00","Superviseur","Cloud Agent","88556871-e366-49dc-a5fa-fcb123c07a07","2026-02-08T11:06:15.000+02:00","2026-04-11T14:42:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"280812225","305628921","PCB21330.sanef.groupe","PCB21330","D0:AD:08:AA:50:AC","10.202.31.25","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MD","","'+02:00","2026-04-01T07:02:42.000+02:00","SANEF\maries","Cloud Agent","c1019324-bc03-48af-be25-72a6def43c85","2024-11-20T15:45:50.000+02:00","2026-04-10T19:07:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","126.0" +"324669813","330319042","PCB23753.sanef.groupe","PCB23753","6C:0B:5E:EE:C3:26","10.4.31.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4W","","'+02:00","2026-04-08T14:52:11.000+02:00","SANEF\gutel","Cloud Agent","5fc1452e-7013-4531-86e8-9f83e47956d6","2025-05-14T10:04:46.000+02:00","2026-04-10T17:56:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","143.0" +"332577348","","PCB18727.sanef.groupe","PCB18727","58:1C:F8:EB:6A:AE","10.255.4.232,192.168.1.109","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D3K","","'+02:00","2026-03-31T10:29:47.000+02:00","SANEF\mauprivez","Cloud Agent","00474b6f-ae57-471c-997a-28760be5d557","2025-06-11T11:44:45.000+02:00","2026-04-10T17:00:23.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"352658714","341621939","PCB21202.sanef.groupe","PCB21202","D0:AD:08:AA:50:2F","10.220.31.36","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764HC","","'+02:00","2026-04-01T17:03:01.000+02:00","SANEF\perrins","Cloud Agent","a0bdc37f-a7bb-4a61-9720-5f5e4ba6b697","2025-08-19T17:41:22.000+02:00","2026-04-10T16:40:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","139.0" +"385558302","355746676","PCB24166.sanef.groupe","PCB24166","DC:90:09:E0:59:57","10.255.4.223,10.255.4.130","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W70 Ver. 01.05.00","5CG52136XY","","'+01:00","2026-03-03T14:48:03.000+02:00","SANEF\beaudevin","Cloud Agent","f731ede4-2853-4074-a675-01689f3d5820","2025-12-22T14:57:45.000+02:00","2026-04-10T16:21:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","140.0" +"322008464","329319797","PCB23795.sanef.groupe","PCB23795","C8:6E:08:49:2D:43","10.255.2.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H4T","","'+02:00","2026-04-10T08:34:59.000+02:00","SANEF\PAULETTO","Cloud Agent","9c1f1d09-a74d-490b-8925-d29869bf6cc8","2025-05-05T11:30:26.000+02:00","2026-04-10T16:06:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","139.0" +"359144569","","PCB24103.sanef.groupe","PCB24103","30:E3:A4:D6:7B:08","192.168.1.252","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5192YLM","","'+02:00","2026-03-02T11:28:16.000+02:00","SANEF\barbryq","Cloud Agent","d09ca50c-fcca-410e-9891-7fdeaa1bc99d","2025-09-12T11:45:35.000+02:00","2026-04-10T15:05:52.000+02:00","64-Bit","2","PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","0.0" +"411392865","365642269","PCB23545.sanef.groupe","PCB23545","C8-6E-08-8A-45-70, C8-6E-08-8A-45-6C, C8-6E-08-8A-45-6D","10.255.2.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CG4460L79","","'+01:00","","","Cloud Agent","29d65277-283a-40a7-9da4-a52a6fb7095e","2026-03-25T16:58:43.000+02:00","2026-03-25T16:58:42.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"323216818","329820455","PCB23684.sanef.groupe","PCB23684","80:6D:97:11:D2:42","10.6.31.6,192.168.1.27","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4B","","'+02:00","2026-03-29T20:05:08.000+02:00","SANEF\tessier","Cloud Agent","c8ce5b63-bd94-4a22-a51d-12baf58579b0","2025-05-09T14:51:40.000+02:00","2026-04-10T14:44:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","143.0" +"356902135","343530061","PCB22721.sanef.groupe","PCB22721","D0:AD:08:AA:50:5B","10.220.31.14","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764JS","","'+02:00","2026-04-08T13:41:30.000+02:00","adelaide.frete@sapn.fr","Cloud Agent","d771ad3a-1c57-40d1-a577-4860ff36cd26","2025-09-04T14:26:45.000+02:00","2026-04-10T13:58:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","126.0" +"321590105","329097451","PCB21274.sanef.groupe","PCB21274","64:4E:D7:49:2A:DF","10.255.1.145,10.4.31.70","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3440GKJ","","'+02:00","2026-04-07T08:47:35.000+02:00","SANEF\niezynski","Cloud Agent","b7cb5d92-ed6e-4600-8294-4485da5075bf","2025-05-02T15:23:47.000+02:00","2026-04-10T12:40:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","144.0" +"372477256","349747579","PCB24217.sanef.groupe","PCB24217","10:B6:76:95:8B:A6","10.202.31.43","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZ7","","'+02:00","2026-04-02T07:20:14.000+02:00","SANEF\guiffard","Cloud Agent","f8342f54-b10f-4fd6-94d9-c1127fdfa292","2025-10-28T18:41:13.000+02:00","2026-04-10T12:14:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,BDD-SQL DYN","341.0" +"414893467","367232873","SVP22848.sanef-int.adds","SVP22848","D0-AD-08-A7-28-72, 60-45-2E-11-FD-DC, 60-45-2E-11-FD-DD, 62-45-2E-11-FD-DC, 60-45-2E-11-FD-E0","10.100.2.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","8CC3502YLL","","'+02:00","","","Cloud Agent","c377067a-c967-43d4-989b-f09075a94626","2026-04-10T10:37:47.000+02:00","2026-04-10T10:37:47.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"410588598","365382442","PCB18604.sanef.groupe","PCB18604","64:D6:9A:33:FF:E0","10.255.1.184,10.255.1.183","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2433WDK","","'+02:00","2026-04-08T10:50:00.000+02:00","SANEF\marechal-ext","Cloud Agent","3b5d5e4d-fa9d-4acb-ae67-8006f73698dc","2026-03-23T14:41:11.000+02:00","2026-04-10T10:28:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","126.0" +"324979670","","PCB18095.sanef.groupe","PCB18095","64:D6:9A:21:81:94","10.205.0.92,10.255.1.225","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HSV","","'+02:00","2026-03-29T09:23:37.000+02:00","SANEF\VERMOREL","Cloud Agent","50bd6c4c-03bb-4f6a-aba0-8597e2a27937","2025-05-15T12:00:45.000+02:00","2026-04-10T10:13:13.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"413151887","366557839","PCV22327.sanef-int.adds","PCV22327","D0:AD:08:A3:7B:1E","10.252.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.21.00","8CC3502YZZ","","'+02:00","2026-04-02T17:11:27.000+02:00","Operateur","Cloud Agent","6199eb5d-38c7-45fd-9311-540ccfba1e3b","2026-04-02T16:55:19.000+02:00","2026-04-10T10:12:14.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"367261722","347694847","PCB22504.sanef.groupe","PCB22504","E4:60:17:C4:EC:D5","10.205.0.84,10.255.3.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.11.00","5CD34764KM","","'+02:00","2026-04-10T09:01:33.000+02:00","SANEF\KEITA-ext","Cloud Agent","86e8155f-1db5-4e2e-9521-6c5f650d174e","2025-10-10T16:58:52.000+02:00","2026-04-10T10:04:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","329.0" +"382625299","354072276","PCB23722.sanef.groupe","PCB23722","C8:6E:08:47:62:B5","10.255.3.143,10.255.3.155","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.05.00","5CG4460H2X","","'+02:00","2026-04-09T08:03:24.000+02:00","SANEF\boidin","Cloud Agent","35cbea06-2630-4a78-97f0-c54651717165","2025-12-09T08:20:36.000+02:00","2026-04-10T09:17:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"323160502","329798676","PCB23605.sanef.groupe","PCB23605","6C:0B:5E:ED:A2:A4","10.5.31.55","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L4M","","'+02:00","2026-03-28T09:28:05.000+02:00","SANEF\QUENELISSE","Cloud Agent","37bfee57-dd14-4e54-b83f-8a68b7936a1c","2025-05-09T10:27:00.000+02:00","2026-04-10T08:10:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"333709430","333867043","PCB22454.sanef.groupe","PCB22454","D0:AD:08:A7:28:2A","10.105.31.8,10.105.30.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YJT","","'+01:00","2026-04-01T02:46:20.000+02:00","bruno.payen@sanef.com","Cloud Agent","5ada4f2d-7be0-47bf-bb7d-f59da219ed91","2025-06-16T12:05:40.000+02:00","2026-04-10T03:07:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","330.0" +"298481643","319185960","SVP20975.sanef-int.adds","SVP20975","BC:0F:F3:87:66:40","10.182.6.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLQ","","'+02:00","2025-10-28T09:25:15.000+02:00","Superviseur","Cloud Agent","9f607a1e-b9b1-4563-8e20-bb0a1df826f2","2025-02-07T11:24:26.000+02:00","2026-04-09T20:57:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"414580238","367118635","PVP18175.sanef-int.adds","PVP18175","00:0B:AB:E4:E4:C8","10.252.2.20","fe80::8f45:71a5:4b0c:dc4","Windows / Client","Microsoft Windows 10 Enterprise LTSC 2019 (1809 Build 17763.8511)","1809","Unidentified / Unidentified","Advantech","4","2301","Intel(R) Core(TM) i5-6500TE CPU @ 2.30GHz","8102","American Megatrends Inc. 5.12","Default string","Defaultstring","'+02:00","2026-04-09T11:50:27.000+02:00","AdmVoie","Cloud Agent","af8c7af0-d70f-4717-ae11-fb93eaaf3e18","2026-04-09T09:51:54.000+02:00","2026-04-09T19:31:04.000+02:00","64 bits","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","328.0" +"411606584","365720961","PCB18191.sanef.groupe","PCB18191","C8:5E:A9:A5:73:A5","10.255.1.176","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD3295RYH","","'+02:00","2026-04-09T16:20:12.000+02:00","SANEF\SALUR-ext","Cloud Agent","fa836a43-0c38-4fc6-b178-0c58896758d9","2026-03-26T11:27:27.000+02:00","2026-04-09T17:10:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","136.0" +"324661113","330322272","PCB20664.sanef.groupe","PCB20664","58:1C:F8:EA:54:48","10.205.0.52,10.255.3.162","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.13.01","5CG3224DS0","","'+02:00","2026-04-03T14:25:02.000+02:00","SANEF\DUPUIS","Cloud Agent","90627f64-a135-40e1-9e78-1acd1423956a","2025-05-14T10:26:23.000+02:00","2026-04-09T14:29:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","147.0" +"414230874","367004891","PCB16298.sanef.groupe","PCB16298","58:6C:25:2B:14:1B","10.255.2.205","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T39 Ver. 01.11.00","5CG13363ZF","","'+02:00","2026-04-08T15:59:32.000+02:00","SANEF\petiard","Cloud Agent","ff21f27b-9ab0-4a68-bd8e-9bd7a6bd5a63","2026-04-08T09:08:10.000+02:00","2026-04-09T13:59:57.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"407330177","364030578","PCB17199.sanef.groupe","PCB17199","58:6C:25:2B:1C:0E","10.255.1.229","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.04.02","5CG13363SF","","'+02:00","2026-03-31T16:04:59.000+02:00","SANEF\morelj","Cloud Agent","f6bbae74-72a9-491a-aa8b-f179113c3ec8","2026-03-10T09:55:31.000+02:00","2026-04-09T13:48:00.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","138.0" +"362320411","345693282","PCB16344.sanef.groupe","PCB16344","50:81:40:B9:F0:AA","10.200.30.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T76 Ver. 01.22.00","5CG1336597","","'+02:00","2026-03-30T09:21:30.000+02:00","SANEF\tamboura","Cloud Agent","f18b4144-110c-4456-8c62-a89ec908f338","2025-09-23T16:41:35.000+02:00","2026-04-09T13:04:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"414585717","367130940","SVP21129.sanef-int.adds","SVP21129","D0-AD-08-A4-71-9C","10.252.2.34","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CD34764LF","","'+02:00","","","Cloud Agent","7d13877f-3b95-4b2f-a36e-3b32b3ca130a","2026-04-09T11:32:21.000+02:00","2026-04-09T11:32:20.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"409003374","364780761","PCB17880.sanef.groupe","PCB17880","70:A8:D3:85:99:8B","10.255.1.139","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG21724L3","","'+02:00","2026-04-08T09:07:02.000+02:00","SANEF\LAINEF","Cloud Agent","f97f9019-0a4e-4880-bd41-6774e94c2e08","2026-03-17T09:46:02.000+02:00","2026-04-09T10:52:51.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"407320662","364030577","PCB18108.sanef.groupe","PCB18108","64:D6:9A:21:81:FD","10.255.2.206,10.255.2.194","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.09.01","5CG2376HSW","","'+02:00","2026-04-08T09:10:14.000+02:00","SANEF\BOBEE","Cloud Agent","dc5a7c1b-dc81-4c11-8b77-ccb33bdbfb6a","2026-03-10T09:55:00.000+02:00","2026-04-09T10:44:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","335.0" +"414227504","367004890","PCB16314.sanef.groupe","PCB16314","58:6C:25:2B:37:7A","10.255.4.224","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T76 Ver. 01.04.02","5CG13363TD","","'+02:00","2026-04-08T16:02:54.000+02:00","SANEF\beaudouin","Cloud Agent","d8be536e-2b62-4209-9693-b34e3a207ffa","2026-04-08T09:07:15.000+02:00","2026-04-09T10:40:44.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"414263867","367023560","PCB18726.sanef.groupe","PCB18726","BC:0F:F3:3B:D9:7F","10.200.31.57","fe80::3e2b:ceb5:c343:16e8","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3F","","'+02:00","2026-04-08T12:05:10.000+02:00","SANEF\mediouni-ext","Cloud Agent","cd6fe740-2e0e-4709-a7bf-a4f91522dced","2026-04-08T11:56:50.000+02:00","2026-04-09T10:13:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","336.0" +"410505275","365357799","PCV22806.sanef-int.adds","PCV22806","D0:AD:08:A3:7B:74","10.11.7.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YWC","","'+02:00","2026-03-23T09:46:36.000+02:00","Operateur","Cloud Agent","b0fdcd60-d8f4-49da-9125-a79c0a4d2688","2026-03-23T09:51:51.000+02:00","2026-04-09T08:59:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"413370586","366630137","PCB22639.sanef.groupe","PCB22639","E4:60:17:CB:E8:32","10.255.3.195","fe80::8981:733c:42b9:1959","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764FQ","","'+02:00","2026-04-03T15:44:24.000+02:00","SANEF\Mediouni-ext","Cloud Agent","36e19fba-f5b9-4132-9c31-80c19300f76a","2026-04-03T15:34:54.000+02:00","2026-04-08T16:39:28.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"364786822","346625517","PCB21612.sanef.groupe","PCB21612","D0:AD:08:A4:4D:AD","10.5.31.32,10.5.31.42","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC34711K2","8CC34711K2","'+02:00","2026-03-29T09:11:34.000+02:00","SANEF\blanchet","Cloud Agent","a33a6d05-c20b-46c6-ad62-1c844da87553","2025-10-01T18:02:32.000+02:00","2026-04-08T15:54:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","333.0" +"414301098","367044928","PCB13232.sanef.groupe","PCB13232","3C-52-82-57-8A-CC, 00-FF-B0-8B-5B-13, 00-00-00-00-00-00-00-E0","10.100.39.185","","Windows / Client","Microsoft Windows 7 Enterprise (6.1 SP1)","6.1","Computers / Unidentified","Computers","","","","","","CZC7458CXS","","'+02:00","","","Cloud Agent","eb749399-13a7-424a-b4d9-3574cbe2799d","2026-04-08T15:36:27.000+02:00","2026-04-08T15:36:25.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"414320371","367043466","WIN-OQNRU1G2RID","WIN-OQNRU1G2RID","00-50-56-9C-B7-78","10.30.6.10","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348)","21H2","Computers / Server","Server","","","","","","VMware-42 1c 72 51 50 84 7d 6f-ef 61 18 55 39 03 e4 ef","","'+02:00","","","Cloud Agent","e91987ff-33f1-4107-8443-ec55099f1fc4","2026-04-08T15:16:11.000+02:00","2026-04-08T15:16:09.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","0.0" +"322021436","329321018","PCB21559.sanef.groupe","PCB21559","D0:AD:08:A7:28:63","10.155.31.2","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLN","8CC3502YLN","'+02:00","2026-03-28T09:12:12.000+02:00","SANEF\delahayef","Cloud Agent","ca039f8e-bb14-4b92-93d5-29ae920cfb22","2025-05-05T11:49:29.000+02:00","2026-04-08T13:48:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"378846649","352658728","PCB24254.sanef.groupe","PCB24254","C8:58:B3:74:47:E9","10.255.2.195,10.255.2.180","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M4R","","'+02:00","2026-03-30T10:38:49.000+02:00","SANEF\creton","Cloud Agent","d050d42a-b2ed-4f6f-92bd-c208a6f0937d","2025-11-24T13:51:36.000+02:00","2026-04-08T12:43:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","339.0" +"350587655","340492601","PCB25858.sanef.groupe","PCB25858","28:95:29:22:6B:4F","10.205.0.163,10.255.3.183","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CSR","","'+01:00","2025-11-15T05:13:32.000+02:00","bryan.body@bipandgo.com","Cloud Agent","790d2754-0a54-47e8-badc-ec37700629c1","2025-08-11T16:39:20.000+02:00","2026-04-08T12:04:49.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","250.0" +"414023786","366911597","MTR-H1DSNT3","MTR-H1DSNT3","54:6C:EB:83:6C:B0","10.255.6.30","fe80::31e4:7b71:4da0:250b","Windows / Client","Microsoft Windows 11 Enterprise (22H2 Build 22621.525) 64-Bit","22H2","Computers / Desktop","Dell OptiPlex 7080 Desktop","16","2001","Intel(R) Core(TM) i7-10700T CPU @ 2.00GHz","16099","Dell Inc. 1.36.0","H1DSNT3","","'+02:00","2026-04-08T09:56:37.000+02:00","Skype","Cloud Agent","04be11c3-1e1b-423a-9e4b-880bb32b6574","2026-04-07T11:55:12.000+02:00","2026-04-08T11:22:31.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","348.0" +"413132485","366552050","PCB18726.sanef.groupe","PCB18726","BC:0F:F3:3B:D9:7F","10.252.3.5","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG3224D3F","","'+02:00","2026-04-08T10:30:29.000+02:00","SANEF\mediouni-ext","Cloud Agent","d0a26e9e-b237-4142-912f-a572366c82cf","2026-04-02T15:25:13.000+02:00","2026-04-08T10:52:23.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","334.0" +"321035417","328905575","PCB23632.sanef.groupe","PCB23632","C8:6E:08:88:FD:9C","192.168.1.170","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L7H","","'+01:00","2026-02-24T12:34:06.000+02:00","SANEF\LECUL-LOISEL","Cloud Agent","40f260d4-8909-4a85-8ca5-e9c2dadaf145","2025-04-30T14:38:26.000+02:00","2026-04-08T10:33:34.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","337.0" +"413815679","366829221","PCV21620.sanef-int.adds","PCV21620","D0:AD:08:A4:4D:B4","10.11.21.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC34711K0","","'+02:00","2026-01-03T19:22:58.000+02:00","Operateur","Cloud Agent","2a8c4283-d92e-4e97-b10e-8aa2072b1bda","2026-04-06T16:07:50.000+02:00","2026-04-08T08:01:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"381851478","353710813","PCV22445.sanef-int.adds","PCV22445","D0:AD:08:A7:27:D8","10.9.37.15","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YSY","","'+02:00","2026-02-15T18:17:58.000+02:00","Operateur","Cloud Agent","d44c0c4e-393e-48b0-a09b-6de22d8314b0","2025-12-05T10:49:38.000+02:00","2026-04-08T07:09:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"414038283","366923274","PCB17874.sanef.groupe","PCB17874","70:A8:D3:85:74:D8","10.255.3.171","fe80::989f:4a32:4d6d:5eda","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG21724K4","","'+02:00","2026-04-07T14:11:43.000+02:00","SANEF\vengadassalame","Cloud Agent","a5f51618-5d81-45a5-a878-7f13f3c507c1","2026-04-07T14:15:13.000+02:00","2026-04-07T18:19:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","345.0" +"381246644","353498210","PCB23590.sanef.groupe","PCB23590","C8:6E:08:8A:3B:F8","10.205.0.108,10.255.4.238","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460L53","","'+02:00","2026-04-07T11:31:52.000+02:00","SANEF\CHEVALIERST","Cloud Agent","2f5715a3-9766-404e-9a8a-a1df08a5377d","2025-12-03T12:31:00.000+02:00","2026-04-07T17:40:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"409485656","364924906","PCB17121.sanef.groupe","PCB17121","0A:00:27:00:00:15, F4:26:79:9D:00:EE","192.168.56.1,192.168.1.50","fe80::4a7b:bda7:92f9:c07d,2a02:842a:3620:a101:3297:a552:297a:3497,2a02:842a:3620:a101:41bc:7f34:f15:fcc,fe80::457f:c909:2a65:1b10","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP ProBook 640 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16112","HP T74 Ver. 01.08.01","5CD15181PD","","'+02:00","2026-04-07T13:54:22.000+02:00","SANEF\letort","Cloud Agent","931b04b8-1f35-425f-b7eb-317dabeb6875","2026-03-18T14:47:02.000+02:00","2026-04-07T16:15:32.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,BDD-SQL DYN","340.0" +"305945024","322943298","SVP22860.sanef-int.adds","SVP22860","D0:AD:08:A7:28:6B","10.8.29.20","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YLD","","'+02:00","2026-04-02T09:47:17.000+02:00","Superviseur","Cloud Agent","517557c6-b116-4e33-bd6b-9e97c9e5290e","2025-03-07T10:34:21.000+02:00","2026-04-07T13:31:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"362484906","345776139","PCB17917.sanef.groupe","PCB17917","70:A8:D3:85:68:F8","10.255.3.236","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.08.11","5CG21724P8","","'+02:00","2026-02-01T18:39:22.000+02:00","SANEF\sendra","Cloud Agent","4bf127bb-f177-4d8a-b460-ab7e67199dcb","2025-09-24T09:44:28.000+02:00","2026-04-07T11:07:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"359725235","","PCB21120.sanef.groupe","PCB21120","E4:60:17:CA:2F:47","10.205.0.109,192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MT","","'+02:00","2026-04-07T08:47:48.000+02:00","SANEF\jeanjean-ext","Cloud Agent","9f18d8f5-4943-4205-8fe9-a8a7534337c4","2025-09-15T10:34:13.000+02:00","2026-04-07T10:24:34.000+02:00","64-Bit","2","PM,GAV","Cloud Agent,Workstation","0.0" +"326195154","","PCB18022.sanef.groupe","PCB18022","38:CA:84:52:77:54","10.100.39.107","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HR8","","'+02:00","2026-04-03T16:09:52.000+02:00","SANEF\CHAUDOT","Cloud Agent","855e870d-f173-4264-a15a-5c4a42714cae","2025-05-21T11:40:53.000+02:00","2026-04-07T10:17:00.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"381720817","353647131","PCB22303.sanef.groupe","PCB22303","D0:AD:08:A3:7D:05","10.252.42.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YZ3","8CC3502YZ3","'+02:00","2026-03-29T09:12:00.000+02:00","SANEF\bellaton","Cloud Agent","e107bd02-e148-4562-acb2-3179ab0f8f34","2025-12-04T18:13:09.000+02:00","2026-04-07T09:54:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","349.0" +"411690878","365758916","PCB21081.sanef.groupe","PCB21081","E0:C2:64:5A:13:15","10.255.3.248,10.255.3.19","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD336NWDX","","'+02:00","2026-04-07T09:14:25.000+02:00","SANEF\mesdon-ext","Cloud Agent","8b2d4ac3-0d3a-4ec6-afcb-1549282fec0b","2026-03-26T18:47:05.000+02:00","2026-04-07T09:52:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","329.0" +"413976359","366892401","PCB18059.sanef.groupe","PCB18059","64-D6-9A-1D-39-3F, 64-D6-9A-1D-39-3B, 64-D6-9A-1D-39-3C, 38-CA-84-52-F8-73","10.101.242.10","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CG2376HRV","","'+02:00","","","Cloud Agent","7022fc4d-2513-402e-a82a-7ea78fd89293","2026-04-07T09:18:27.000+02:00","2026-04-07T09:18:26.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"413382455","366640245","PCB22463.sanef.groupe","PCB22463","D0:AD:08:E4:D1:D5","10.252.4.16","fe80::f452:8f9b:b605:d51c","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVB","","'+02:00","2026-04-03T19:10:57.000+02:00","","Cloud Agent","7f39715e-b8e6-4067-8c27-cf6957de321e","2026-04-03T19:24:50.000+02:00","2026-04-07T08:32:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"413707705","366786146","SVP22705.sanef-int.adds","SVP22705","D0-AD-08-A4-73-B2","10.106.18.22","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CD34764D6","","'+02:00","","","Cloud Agent","40e6ce74-d406-47f3-bb43-618a8091346e","2026-04-06T05:54:33.000+02:00","2026-04-06T05:54:33.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"269311813","299220497","SVP22765.sanef-int.adds","SVP22765","D0:AD:08:A7:27:CF","10.142.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YKX","","'+02:00","2026-03-28T06:29:32.000+02:00","Superviseur","Cloud Agent","016a4a54-6922-48df-8c1f-2e932d3fb3d0","2024-10-01T10:50:06.000+02:00","2026-04-05T04:51:35.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"413497258","366694610","SVP22516.sanef-int.adds","SVP22516","D0-AD-08-A4-72-DF","10.182.12.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CD34764F2","","'+02:00","","","Cloud Agent","4edbd6d1-276f-4999-806e-2bf5f2b5d782","2026-04-04T15:02:25.000+02:00","2026-04-04T15:02:25.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"162635575","216951204","PCB17233.sanef.groupe","PCB17233","58:6C:25:2B:14:AC","10.205.0.117,192.168.1.91","fe80::1f42:31c:44d8:17a3","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.04.02","5CG133659B","","'+02:00","2026-03-16T09:58:38.000+02:00","SANEF\desimeur","Cloud Agent","e6924210-1840-45d6-8d3e-cca844948ba5","2023-03-14T17:22:48.000+02:00","2026-04-03T22:36:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" +"413382221","366638357","PCB22463.sanef.groupe","PCB22463","D0:AD:08:E4:D1:D5","10.252.4.16","fe80::f452:8f9b:b605:d51c","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.11.00","5CG3501HVB","","'+02:00","2026-04-03T18:45:03.000+02:00","","Cloud Agent","3f28d8ea-9fbc-4f2d-b75f-10f55bfe6cab","2026-04-03T18:35:58.000+02:00","2026-04-03T18:58:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"346258439","339004850","PCB18055.sanef.groupe","PCB18055","64:D6:9A:1D:39:45","10.205.0.222,192.168.1.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.11.00","5CG2376HST","","'+02:00","2026-03-30T15:17:13.000+02:00","pauline.rivaud@sanef.com","Cloud Agent","ecc9fb31-8e43-4532-b73a-cf1d08464ce7","2025-07-29T12:30:27.000+02:00","2026-04-03T18:23:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"353288805","341947029","PCB20721.sanef.groupe","PCB20721","BC:0F:F3:3D:E7:B5","10.101.242.39","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224CRX","","'+02:00","2026-03-30T12:16:44.000+02:00","SANEF\MOUSSI","Cloud Agent","d464f76e-5c6c-454e-8e5b-ad960e42541e","2025-08-21T11:20:54.000+02:00","2026-04-03T15:17:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","140.0" +"372912931","349942106","PCB18747.sanef.groupe","PCB18747","BC:0F:F3:3D:48:25","192.168.1.155,10.200.31.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.12.00","5CG3224DRQ","","'+02:00","2026-04-02T08:05:27.000+02:00","SANEF\SOLTANE","Cloud Agent","c3e45b2e-60cb-49b6-b071-b238258b9258","2025-10-30T10:53:47.000+02:00","2026-04-03T15:07:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","140.0" +"324956464","","PCB21319.sanef.groupe","PCB21319","E4:60:17:C4:7B:CE","10.202.31.32,192.168.14.27","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764KD","","'+02:00","2026-01-28T11:19:40.000+02:00","SANEF\bourgault","Cloud Agent","9d1cd2a5-ebb2-4571-ac0a-d6d39f8bbd2c","2025-05-15T10:17:13.000+02:00","2026-04-03T14:09:27.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"413156143","366549935","PCB17220.sanef.groupe","PCB17220","50:81:40:B8:AF:CB","10.252.4.8","fe80::be7e:df4f:7e32:2446","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T76 Ver. 01.23.00","5CG13365JF","","'+02:00","2026-04-02T15:19:01.000+02:00","","Cloud Agent","946ac145-3a24-451b-8dd7-386146a0436a","2026-04-02T14:53:00.000+02:00","2026-04-03T13:59:03.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"403254780","362433508","PCB23740.sanef.groupe","PCB23740","C8:6E:08:46:BE:69","10.155.31.14,192.168.1.49","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H3C","","'+02:00","2026-03-30T22:03:54.000+02:00","SANEF\JUCHA","Cloud Agent","67b9a00d-4b61-4c80-9982-9a14748e6fbd","2026-02-23T12:30:12.000+02:00","2026-04-03T13:22:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"413336840","366619424","PCB22664.sanef.groupe","PCB22664","D0:AD:08:AA:4F:CF","10.252.4.36","fe80::b997:c51b:9267:43b9","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764D8","","'+02:00","2026-04-03T12:06:05.000+02:00","","Cloud Agent","89571fa8-b01d-48dd-b5fe-8e27d7756e3e","2026-04-03T11:56:35.000+02:00","2026-04-03T13:14:50.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"391686889","357954120","vmmvscdsi1.sanef-int.adds","VMMVSCDSI1","00:50:56:90:AE:DB","10.41.7.240","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 6e 49 18 66 d8 3a-dd a6 22 a5 bc af cc de","NoAssetTag","'+02:00","2026-02-02T18:22:24.000+02:00","Operateur","Cloud Agent","712c55a0-16dd-407c-885c-40a010a07fb6","2026-01-13T15:38:38.000+02:00","2026-04-03T11:58:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"388414447","357030741","PCB16322.sanef.groupe","PCB16322","58:6C:25:2B:1E:6B","10.101.243.115,10.255.4.208","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T76 Ver. 01.18.00","5CG13363S6","","'+02:00","2026-03-31T09:22:42.000+02:00","SANEF\LABBED","Cloud Agent","4c42d202-9a3b-4c98-bb57-73cebf790474","2026-01-06T17:05:41.000+02:00","2026-04-03T09:20:05.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"343848716","338134488","SVP22616.sanef-int.adds","SVP22616","D0:AD:08:A4:72:E0","10.82.14.28,10.82.6.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764F1","","'+02:00","2026-03-02T20:50:47.000+02:00","Superviseur","Cloud Agent","16674d0d-6672-4e08-8b0d-f8a8a9469f96","2025-07-22T05:52:44.000+02:00","2026-04-02T17:48:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"410063492","365176294","vdlabawdc1","VDLABAWDC1","00:50:56:9C:2A:AC","10.45.16.60","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","6143","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 53 c8 ae 5c 19 82-54 77 86 21 3d ed 86 ea","NoAssetTag","'+02:00","2026-03-23T15:47:31.000+02:00","Administrateur","Cloud Agent","136e4572-cdf9-46e8-9489-ee75016ec6d7","2026-03-20T16:25:19.000+02:00","2026-04-02T17:20:39.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN","341.0" +"413158942","366551699","PCB21323.sanef.groupe","PCB21323","D0:AD:08:A2:AF:37","10.252.4.14","fe80::f7f3:48ad:e77b:6351","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764MR","","'+02:00","2026-04-02T15:28:14.000+02:00","","Cloud Agent","56416798-a1bf-43d3-a40b-527623dc43a9","2026-04-02T15:18:22.000+02:00","2026-04-02T15:41:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"413142209","366551267","PCB25901.sanef.groupe","PCB25901","4C:CF:7C:0A:4C:11","10.252.4.10","fe80::6dfb:3188:9bf9:e11e","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.03.02","5CG5342231","","'+02:00","2026-04-02T15:14:44.000+02:00","","Cloud Agent","9023d486-6af3-4721-bbc7-ef9ba0e60eef","2026-04-02T15:11:45.000+02:00","2026-04-02T15:27:46.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"407955290","364302272","PCV18545.sanef-int.adds","PCV18545","30:13:8B:6C:56:64","10.252.2.24","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.05.02","CZC44473TL","","'+02:00","2026-03-23T16:15:12.000+02:00","Operateur","Cloud Agent","1b087b34-ecbe-4eb6-886d-3ac96ce441fb","2026-03-12T13:56:11.000+02:00","2026-04-02T14:58:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"412701712","366372290","PCV22327.sanef-int.adds","PCV22327","D0:AD:08:A3:7B:1E","10.252.2.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.21.00","8CC3502YZZ","","'+02:00","2026-04-01T09:27:23.000+02:00","Operateur","Cloud Agent","dcab164b-d63e-4f07-a9af-1588da7f82d5","2026-03-31T18:28:54.000+02:00","2026-04-02T12:54:21.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"413090057","366530597","PCB25860.sanef.groupe","PCB25860","28-95-29-1B-40-68, 28-95-29-1B-40-69, 2A-95-29-1B-40-68, 28-95-29-1B-40-6C","10.205.0.105","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CG5282CVN","","'+02:00","","","Cloud Agent","0ef98a64-1b0c-44ec-b27a-ac696cd1fdda","2026-04-02T11:04:22.000+02:00","2026-04-02T11:04:21.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"410979616","365488541","PCB20845.sanef.groupe","PCB20845","C8-6E-08-46-F2-4F, C8-6E-08-46-F2-4E, C8-6E-08-46-F2-52","10.255.1.223","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037)","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","14","","","32188","","5CG4460H58","","'+01:00","2026-04-02T10:31:39.000+02:00","","Cloud Agent","789cac50-9d1b-4ffa-91a9-8872d0ed66cc","2026-03-24T12:41:59.000+02:00","2026-04-02T10:41:52.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","335.0" +"412381382","366120882","PCB22732.sanef.groupe","PCB22732","E4-60-17-C7-00-9B, D0-AD-08-AA-50-51, D0-AD-08-A4-73-6B, E4-60-17-C7-00-97, E4-60-17-C7-00-98","10.208.31.21","fe80::c8c0:4efe:19b7:2557","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742)","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","","","15568","","5CD34764JG","","'+02:00","2025-11-06T15:28:32.000+02:00","","Cloud Agent","93958925-e554-454c-bf7d-69c2c6d574d8","2026-03-30T11:14:25.000+02:00","2026-04-02T10:00:10.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"329188187","","PCB21358.sanef.groupe","PCB21358","E4:60:17:C7:07:D1","10.205.0.17,10.255.3.170","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.11.00","5CD34764HR","","'+02:00","2026-04-01T08:18:10.000+02:00","delphine.lefevre-ext@sanef.com","Cloud Agent","7522f4e0-660b-4093-9392-5b7a002a6654","2025-06-02T13:49:01.000+02:00","2026-04-02T07:57:40.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"403289818","362453582","vrintaweb2.sanef.groupe","","02:42:78:ef:31:30, 00:50:56:82:ef:41","172.17.0.1,192.168.20.3","fe80::42:78ff:feef:3130,fe80::250:56ff:fe82:ef41","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 fd 8b 9c 89 53 12-a7 fc a4 c1 f5 3c cd 70","No Asset Tag","'+02:00","2026-02-23T13:29:29.000+02:00","husson-ext","Cloud Agent","67172794-53f1-4c5c-9922-dd6e8838fd8f","2026-02-23T15:45:41.000+02:00","2026-04-01T21:54:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","DMZ,Gestion institutionnel,Cloud Agent,OS-LIN-SRV DYN,Linux Server,Recette,Sans,Communication et Collaboration,VRF_INCONNUE,MID-NGINX DYN,BDD-POS DYN","139.0" +"318407324","328042960","PCB22846.sanef.groupe","PCB22846","D0:AD:08:A3:DD:F3","10.152.31.9","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YP1","8CC3502YP1","'+02:00","2026-03-28T09:11:31.000+02:00","SANEF\saintebeuve","Cloud Agent","701a1ffb-f88f-4066-98c8-a243f31d3d94","2025-04-22T14:42:05.000+02:00","2026-04-01T13:21:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","140.0" +"373865442","350366020","PCB24098.sanef.groupe","PCB24098","70:15:FB:7E:48:07","10.205.0.217,10.204.25.77","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7171) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZYK","","'+02:00","2026-03-26T18:35:05.000+02:00","SANEF\GARCIAL-ext","Cloud Agent","aa24f09a-b236-4ab8-9875-41113fb2c42b","2025-11-03T17:11:20.000+02:00","2026-04-01T12:08:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"393562161","358706364","PCB17780.sanef.groupe","PCB17780","28:C5:D2:9F:C3:C4","10.255.4.130","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","12","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.02.03","5CG3473Y4Q","","'+02:00","2026-03-08T13:40:33.000+02:00","SANEF\KOCHER","Cloud Agent","8115b0d6-e628-4d0a-9cfc-33033612c119","2026-01-20T11:09:55.000+02:00","2026-04-01T11:51:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","139.0" +"377467174","352067329","PCV21546.sanef-int.adds","PCV21546","D0:AD:08:A3:7C:C7","10.152.7.22","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YY6","","'+02:00","2025-11-18T14:59:52.000+02:00","Operateur","Cloud Agent","a52ac61e-0574-4196-aeaa-bdd772bb397c","2025-11-18T15:44:16.000+02:00","2026-04-01T11:10:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"405942540","363436664","PCB22443.sanef.groupe","PCB22443","D0:AD:08:A3:E6:CB","10.149.31.6,10.149.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4652) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YQ0","8CC3502YQ0","'+01:00","2026-03-11T12:54:17.000+02:00","SANEF\BROIE","Cloud Agent","c2d7848e-e954-4c35-bef0-dca0e49a29ee","2026-03-04T10:28:55.000+02:00","2026-04-01T10:50:42.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Workstation,Cloud Agent,Forescout","674.0" +"392184545","358112878","srdsiabkp1.sanef-rec.fr","","ec:eb:b8:9d:5f:98","10.43.253.30","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","15293","HPE U41 07/20/2023","CZJ82213V0","","'+02:00","2026-01-14T18:15:28.000+02:00","cybadmsys","Cloud Agent","83b1a7cf-656d-4934-89ac-69be2d111e12","2026-01-14T18:18:30.000+02:00","2026-04-01T10:21:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,BDD-ELA DYN,Cloud Agent,OS-LIN-SRV DYN,Linux Server","336.0" +"134892597","196012539","PCB15569.sanef.groupe","PCB15569","E0:70:EA:A8:74:44","10.100.39.57","fe80::9a5a:b651:1d37:da86","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","1","3096","Intel(R) Core(TM) i5-10500 CPU @ 3.10GHz","16159","HP S21 Ver. 02.08.01","8CC1432Z53","8CC1432Z53","'+02:00","2026-03-27T09:05:24.000+02:00","SANEF\psi","Cloud Agent","b2fa2fbe-924e-49d9-9b2c-0d6d5f714c35","2022-08-09T16:09:44.000+02:00","2026-04-01T07:02:06.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,VRF_INCONNUE","341.0" +"403260902","362450986","vvbooosea2.sanef-rec.fr","","00:50:56:9c:8c:2a","10.45.6.75","fe80::250:56ff:fe9c:8c2a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f8 de c1 d6 0d f9-43 43 4e 03 73 fc 6b d8","No Asset Tag","'+02:00","2026-03-09T17:00:55.000+02:00","cybadmsys","Cloud Agent","77417873-5a3e-49ef-871a-bf0fe50063d6","2026-02-23T15:08:48.000+02:00","2026-04-01T05:34:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,Recette,flux_libre,Linux Server,OS-LIN-SRV DYN,Cloud Agent","134.0" +"119481537","185246275","PCB17209.sanef.groupe","PCB17209","58:6C:25:2B:15:2E","10.205.0.57,192.168.1.15","fe80::5972:398d:f89b:5b8b","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.04.02","5CG133659N","","'+02:00","2026-03-23T09:41:55.000+02:00","SANEF\pelzer","Cloud Agent","78fce208-7650-4644-ad59-45745cd962ba","2022-04-04T15:51:20.000+02:00","2026-03-31T22:53:42.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation,VRF_INCONNUE","343.0" +"353358783","341973644","PCB18110.sanef.groupe","PCB18110","38:CA:84:52:09:98","10.101.243.142","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.18.00","5CG2376HTD","","'+02:00","2026-03-29T17:44:10.000+02:00","SANEF\KHUONG","Cloud Agent","0896aa38-a488-4a4a-b887-7ac8e7a2d983","2025-08-21T15:50:24.000+02:00","2026-03-31T18:45:02.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"412651305","366357254","PAD24096.sanef-int.adds","PAD24096","10:B6:76:7D:40:81","10.252.2.18","fe80::f4a3:98b5:5f7b:b895","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Build 26200.6584) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZF","","'+02:00","2026-03-31T15:49:35.000+02:00","","Cloud Agent","3cdfca41-ced2-4fac-bcf1-5b908a3a9fb5","2026-03-31T15:35:54.000+02:00","2026-03-31T16:20:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","344.0" +"412667650","366357675","PCV22327.sanef-int.adds","PCV22327","","10.252.2.23","fe80::f89b:bb0d:e850:e5f9","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","","","","","","Cloud Agent","74215795-bb3d-4e7c-b329-b1b0a0959c80","2026-03-31T15:43:25.000+02:00","2026-03-31T15:56:28.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"393390101","358619751","PCB21085.sanef.groupe","PCB21085","E4:60:17:CB:F4:E4","10.205.0.145,192.168.1.23","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764K6","","'+02:00","2026-03-30T12:30:05.000+02:00","SANEF\KIMAOUI-ext","Cloud Agent","0b2ceac8-2253-4271-8470-58e281234941","2026-01-19T17:57:36.000+02:00","2026-03-31T15:38:07.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","330.0" +"356620847","343412128","PCB24242.sanef.groupe","PCB24242","24:FB:E3:CD:06:1E","10.101.243.200,10.255.4.195","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M5C","","'+02:00","2026-03-30T09:05:51.000+02:00","SANEF\DARRIEUS-ext","Cloud Agent","41b93a9b-9dfe-4ccc-91e1-2d0d9befbaf6","2025-09-03T15:00:10.000+02:00","2026-03-31T14:59:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","328.0" +"361981512","345536974","PCB21078.sanef.groupe","PCB21078","E0:C2:64:59:CA:0E","10.255.4.30","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD336NWF3","","'+02:00","2026-03-31T10:37:33.000+02:00","othman.selmi-ext@bipandgo.com","Cloud Agent","b7ff4a29-92c2-4c14-adf9-7438ea4939a5","2025-09-22T15:17:55.000+02:00","2026-03-31T14:59:33.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"357904457","343918401","PCB22717.sanef.groupe","PCB22717","D0:AD:08:AA:50:4E","10.208.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764JC","","'+02:00","2026-03-30T15:04:50.000+02:00","SANEF\meneses","Cloud Agent","35c6d86c-72d5-4f16-bcb0-cc0e6c2c6070","2025-09-08T16:39:56.000+02:00","2026-03-31T14:52:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","144.0" +"397144069","360227233","PCB24329.sanef.groupe","PCB24329","70:15:FB:7E:45:0A","10.255.4.135,192.168.1.86","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZT","","'+02:00","2026-03-31T11:15:44.000+02:00","SANEF\RIZKI-ext","Cloud Agent","6de5a959-579d-411f-b6fa-6e8150f172b1","2026-02-03T13:50:32.000+02:00","2026-03-31T14:47:20.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","138.0" +"391576909","357913781","SVP22768.sanef-int.adds","SVP22768","D0:AD:08:A7:27:CC","10.252.2.16","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YL2","","'+02:00","2026-03-19T11:25:17.000+02:00","Superviseur","Cloud Agent","53e09944-95ba-49cb-8db0-2f01b766b772","2026-01-13T10:33:23.000+02:00","2026-03-31T14:45:36.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"355180643","342750800","PMS20925.sanef-int.adds","PMS20925","BC:0F:F3:87:70:A0","10.44.201.99","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","1","2000","12th Gen Intel(R) Core(TM) i5-12500T","15605","HP U21 Ver. 02.15.20","8CC3290LMR","","'+02:00","2026-02-19T12:10:54.000+02:00","Supwin","Cloud Agent","5227f9b5-9cb3-4e65-9aff-159dc150172f","2025-08-28T14:36:18.000+02:00","2026-03-31T14:14:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent,TAG-CAPIV,TAG-SIC","346.0" +"412639513","366351001","PAD24096.sanef-int.adds","PAD24096","10:B6:76:7D:40:81","10.252.2.18","fe80::2347:97c2:15d2:6ead","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZF","","'+02:00","2026-03-31T13:54:02.000+02:00","","Cloud Agent","fe9742bc-0586-4952-a55c-d392b6fdc7ab","2026-03-31T13:59:27.000+02:00","2026-03-31T14:02:01.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"412625287","366339054","PAD24096.sanef-int.adds","PAD24096","10:B6:76:7D:40:81","10.252.2.18","fe80::368e:865a:2bf9:22bb","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5153ZZF","","'+02:00","2026-03-31T12:24:50.000+02:00","","Cloud Agent","19dbce9e-55e4-417f-9488-ed6e95bee71d","2026-03-31T12:30:41.000+02:00","2026-03-31T12:33:17.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"407677936","364176154","PCB22639.sanef.groupe","PCB22639","D0:AD:08:AA:4F:FC","10.220.31.37","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.8037) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764FQ","","'+02:00","2026-03-31T08:49:03.000+02:00","florence.macon@sapn.fr","Cloud Agent","ca21c378-3a3a-48de-b759-8bf499357904","2026-03-11T13:37:09.000+02:00","2026-03-31T09:05:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","138.0" +"326814945","","PCB18713.sanef.groupe","PCB18713","58:1C:F8:E9:C0:B4","192.168.1.12","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224D30","","'+02:00","2026-03-28T09:20:46.000+02:00","SANEF\mariot","Cloud Agent","8550f421-93ac-440b-9399-b96d4a963dc7","2025-05-23T10:01:45.000+02:00","2026-03-31T09:03:39.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"409979466","365140802","PCB24241.sanef.groupe","PCB24241","C8:58:B3:34:01:D4","10.101.243.226,10.255.3.137","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5118M6V","","'+01:00","2026-03-26T17:05:22.000+02:00","SANEF\molinas-ext","Cloud Agent","8346832a-2bd9-4f62-b557-fd3723130e43","2026-03-20T11:21:47.000+02:00","2026-03-30T17:59:19.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","345.0" +"404138423","362713724","PCB23745.sanef.groupe","PCB23745","C8-6E-08-47-0B-E3, C8-6E-08-47-0B-E0, C8-6E-08-47-0B-DF","10.95.167.111","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G11 Notebook","1","1600","Intel(R) Core(TM) Ultra 5 135U","32188","HP W70 Ver. 01.04.00","5CG4460H5B","","'+01:00","2026-02-26T17:55:29.000+02:00","sofian.boutagni@sapn.fr","Cloud Agent","5df7de9a-0ae5-4bd1-9e7a-b5b9e31f8099","2026-02-25T15:46:21.000+02:00","2026-03-30T15:54:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","250.0" +"412416235","366142827","PCB22535.sanef.groupe","PCB22535","D0:AD:08:AA:50:89","10.255.3.248,10.252.4.28","fe80::5fa:653e:315:954c","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764L8","","'+02:00","2026-03-30T15:14:32.000+02:00","","Cloud Agent","956f07a2-49be-408a-8b19-c0a50b38c755","2026-03-30T15:12:20.000+02:00","2026-03-30T15:31:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"391116363","357836739","PCB16433.sanef.groupe","PCB16433","70:C6:AC:F4:CF:99, DC:21:48:FD:60:3D","192.168.177.20,10.255.2.129","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.4946) 64-Bit","24H2","Computers / Notebook","HP ProBook 630 G8 Notebook","1","2803","11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz","15616","HP T72 Ver. 01.19.00","5CD14383ZT","","'+02:00","2026-03-30T14:01:14.000+02:00","SANEF\CENSIER","Cloud Agent","12b83fbe-f079-405c-9415-085b2efd89ff","2026-01-12T16:50:43.000+02:00","2026-03-30T14:09:48.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"412386043","366127871","PCB21356.sanef.groupe","PCB21356","E4-60-17-C4-7F-15, D0-AD-08-A4-76-57, D0-AD-08-AA-50-56, E4-60-17-C4-7F-11, E4-60-17-C4-7F-12, E6-60-17-C4-7F-11","10.101.243.1","fe80::e965:5213:e65e:ff70","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CD34764JM","","'+02:00","","","Cloud Agent","1638903b-8a4b-45ea-aaf1-2ec50d5c6dc6","2026-03-30T12:46:36.000+02:00","2026-03-30T12:46:35.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"409071009","364813991","PCB22728.sanef.groupe","PCB22728","E6-60-17-CB-F4-F3, D0-AD-08-AA-50-40, E4-60-17-CB-F4-F4, E4-60-17-CB-F4-F3, D0-AD-08-A4-73-80, E4-60-17-CB-F4-F7","10.208.31.18","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7462)","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","","","15568","","5CD34764HX","","'+01:00","2026-03-17T16:06:43.000+02:00","","Cloud Agent","6b970665-8aa1-4727-a502-d19c0f110219","2026-03-17T16:04:03.000+02:00","2026-03-30T12:32:36.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","336.0" +"374403908","350600749","PCB21196.sanef.groupe","PCB21196","D0:AD:08:AA:50:73","10.208.31.11","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15576","HP V74 Ver. 01.05.05","5CD34764KK","","'+02:00","2026-03-30T09:59:37.000+02:00","SANEF\roulot","Cloud Agent","bdf1c231-629e-4ade-82af-4de1ecc6fdb8","2025-11-05T12:46:46.000+02:00","2026-03-30T11:54:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"313502893","325922026","SVP22605.sanef-int.adds","SVP22605","D0:AD:08:A4:73:AA","10.142.1.21","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764DG","","'+01:00","2025-12-27T10:19:53.000+02:00","Superviseur","Cloud Agent","6d683fb5-1b9f-4a7f-8d7c-5faf98a4a534","2025-04-03T18:35:56.000+02:00","2026-03-30T10:45:38.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"412339900","366115341","PCB17211.sanef.groupe","PCB17211","58-6C-25-2D-CD-FE, 5A-6C-25-2D-CD-FA, 58-6C-25-2D-CD-FB, 58-6C-25-2D-CD-FA","192.168.1.11","","Windows / Client","Microsoft Windows 11 Pro (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CG13363Y0","","'+02:00","","","Cloud Agent","f2eea4cd-274e-4555-9c60-98a12a86a269","2026-03-30T10:20:05.000+02:00","2026-03-30T10:20:04.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"411659853","365750926","PCB21356.sanef.groupe","PCB21356","D0-AD-08-A4-76-57, E4-60-17-C4-7F-11, E4-60-17-C4-7F-12, E6-60-17-C4-7F-11","10.255.2.13","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623)","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","","","15576","","5CD34764JM","","'+01:00","2026-02-04T20:31:41.000+02:00","","Cloud Agent","428d2ca8-4e48-4baf-93e9-a62cef358d5f","2026-03-26T17:08:04.000+02:00","2026-03-30T10:17:40.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"309303648","324140378","PAD21017.sanef.groupe","PAD21017","E0:C2:64:59:D7:79","10.255.2.223","fe80::d22b:f537:5227:3741","Windows / Client","Microsoft Windows 10 Pro (22H2 Build 19045) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","16016","HP V74 Ver. 01.01.07","5CD336NWF9","","'+02:00","2026-03-30T08:57:22.000+02:00","SANEF\LAD04561","Cloud Agent","120e94d4-718e-4bc1-b8f9-1748ec808004","2025-03-19T10:40:04.000+02:00","2026-03-30T09:18:11.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"408744878","364660679","PCB17887.sanef.groupe","PCB17887","70:A8:D3:85:76:77","10.255.4.242,10.255.4.229","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.6584) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T37 Ver. 01.10.00","5CG217248B","","'+01:00","2025-10-23T03:04:02.000+02:00","SANEF\fresneau","Cloud Agent","2ecdb5e6-a273-4f1b-a8f4-b3acfb7fd283","2026-03-16T11:58:28.000+02:00","2026-03-30T09:15:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","337.0" +"324096142","","PCB20672.sanef.groupe","PCB20672","58:1C:F8:E9:A7:05","10.205.0.144,192.168.0.38","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.12.00","5CG3224DPY","","'+02:00","2026-03-23T15:15:58.000+02:00","SANEF\FWOK","Cloud Agent","8063c54c-3bb3-42b7-854b-5257bc9fd56f","2025-05-12T16:05:06.000+02:00","2026-03-29T18:24:53.000+02:00","64-Bit","2","GAV","Workstation,Cloud Agent","0.0" +"180751469","233060988","vrsvpasan1","VRSVPASAN1","00:50:56:9C:DA:27","10.45.9.165","","Windows / Server","Microsoft Windows Server 2019 Datacenter (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","10239","Phoenix Technologies LTD 6.00","VMware-42 1c 17 5d 06 0b f5 4f-59 2d fa f1 92 e2 6d e8","NoAssetTag","'+02:00","2026-02-17T15:33:36.000+02:00","gare","Cloud Agent","64cc393e-df87-4d0a-8262-e286d87c14c8","2023-07-31T16:34:08.000+02:00","2026-03-29T16:20:26.000+02:00","64-Bit","4","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent,Windows Server,SVP,DEX","676.0" +"412186586","366022641","SVP18473.sanef-int.adds","SVP18473","D0-AD-08-A4-73-88","10.212.36.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CD34764GB","","'+02:00","","","Cloud Agent","c5c2693d-4174-4d16-b806-7f1df1d9cc5b","2026-03-29T10:20:44.000+02:00","2026-03-29T10:20:43.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"411668041","365755931","PCB18405.sanef.groupe","PCB18405","84:69:93:E1:B9:7A","10.252.4.19","fe80::4868:1075:a6b4:d3cf","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.08.11","5CG21724Q6","","'+01:00","2026-03-26T18:25:28.000+02:00","","Cloud Agent","885c4a60-e44d-4b15-bb48-67ef361380a5","2026-03-26T18:03:05.000+02:00","2026-03-27T17:02:58.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"395633761","359554349","PCB24332.sanef.groupe","PCB24332","70:15:FB:7E:44:BF","10.255.4.37,10.255.4.204","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7623) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","14","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.05.00","5CD5153ZZQ","","'+01:00","2026-02-02T16:35:30.000+02:00","SANEF\salama-ext","Cloud Agent","88609d51-7018-431d-a1f0-48cc3cfc7683","2026-01-28T17:54:25.000+02:00","2026-03-27T16:13:27.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","332.0" +"281013406","305755497","PCB22533.sanef.groupe","PCB22533","D0:AD:08:AA:50:91","10.202.31.8","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.06.03","5CD34764LJ","","'+01:00","2026-03-04T09:14:43.000+02:00","SANEF\vesque","Cloud Agent","e12afa47-c5d3-42cd-9e64-d0346e744b46","2024-11-21T13:45:06.000+02:00","2026-03-27T13:50:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"405463753","363231541","PCB18190.sanef.groupe","PCB18190","F4:3B:D8:4A:56:96","10.255.2.200","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G10 Notebook","1","1300","13th Gen Intel(R) Core(TM) i5-1335U","31952","HP V70 Ver. 01.04.00","5CG3292FT7","","'+01:00","2026-03-04T13:05:56.000+02:00","SANEF\ANTOINE","Cloud Agent","7b3c59e8-1537-4326-b6e5-85ffe97b3167","2026-03-02T16:36:16.000+02:00","2026-03-27T10:59:43.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","343.0" +"385783028","355855514","PCB25803.sanef.groupe","PCB25803","28:95:29:22:5D:8A","10.255.2.160,10.255.2.209","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EliteBook 8 G1i Notebook","1","2000","Intel(R) Core(TM) Ultra 5 235U","32188","HP X70 Ver. 01.01.13","5CG5282CSL","","'+01:00","2026-03-02T10:59:34.000+02:00","SANEF\nowak-ext","Cloud Agent","801cdeb8-0ad8-4433-9627-f3f4c1fb45f2","2025-12-23T14:59:00.000+02:00","2026-03-27T10:52:09.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","138.0" +"380179678","353134679","SVP22703.sanef-int.adds","SVP22703","D0:AD:08:A4:72:E2","10.192.18.29,169.254.149.51","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631.3447) 64-Bit","23H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","12","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764DN","","'+01:00","2026-02-27T13:57:24.000+02:00","Superviseur","Cloud Agent","ec73ec35-ee2e-4896-b053-e973f60dbc7e","2025-11-29T08:10:49.000+02:00","2026-03-26T17:28:47.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","343.0" +"411394122","365647855","PCB21106.sanef.groupe","PCB21106","E4:60:17:CA:41:03","10.101.243.189,10.255.4.185","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 630 G10 Notebook","1","1600","13th Gen Intel(R) Core(TM) i5-1345U","15568","HP V74 Ver. 01.05.05","5CD34764LQ","","'+01:00","2026-03-26T17:17:11.000+02:00","SANEF\lestrat-ext","Cloud Agent","5ddf7175-5d2c-4c41-af54-a2489382d939","2026-03-25T17:55:07.000+02:00","2026-03-26T17:21:16.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"411615563","365679975","10.44.7.102","","EC:46:70:03:88:C2","10.44.7.102","","Unknown","""Meinberg LANTIME M320 V7.10.007""","Unknown","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2026-03-26T13:07:26.000+02:00","2026-03-26T13:07:20.000+02:00","Unknown","2","VM,GAV","","141.0" +"411591909","365726632","PCB24234.sanef.groupe","PCB24234","24:FB:E3:BE:98:D2","10.252.4.17","fe80::9698:cb21:f5ac:3968","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 630 G11 Notebook","1","1300","Intel(R) Core(TM) Ultra 5 125U","15836","HP W74 Ver. 01.08.01","5CD5118M6L","","'+01:00","2026-03-26T12:45:46.000+02:00","","Cloud Agent","dab8ff88-df4c-45d9-b031-a841ddcc3165","2026-03-26T12:38:29.000+02:00","2026-03-26T12:50:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"411594083","365724459","SVP21084.sanef-int.adds","SVP21084","64-4E-D7-9E-D0-04","10.92.1.29","","Windows / Client","Microsoft Windows 11 Enterprise (23H2 Build 22631)","23H2","Computers / Unidentified","Computers","","","","","","5CD336NWF1","","'+01:00","","","Cloud Agent","6e85458c-25d0-4a38-b044-d95db81ce0b4","2026-03-26T12:12:53.000+02:00","2026-03-26T12:12:52.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"411410432","365648136","OSA22883.sanef-int.adds","OSA22883","","10.252.2.20","fe80::fed2:2d6c:7d4a:e461","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742)","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","","","15606","","8CC3502YMY","","","2026-03-25T18:12:52.000+02:00","","Cloud Agent","79e09ffb-e597-4578-9554-1392bfaa7fd0","2026-03-25T17:59:59.000+02:00","2026-03-26T07:46:29.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","342.0" +"411381239","365630516","OSA22883.sanef-int.adds","OSA22883","D0-AD-08-A7-27-C9, 62-45-2E-10-9B-B8, 60-45-2E-10-9B-B9, 60-45-2E-10-9B-B8, 60-45-2E-10-9B-BC","10.100.20.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","8CC3502YMY","","'+01:00","","","Cloud Agent","97561bd6-c144-4f63-bcc2-14864a3d4564","2026-03-25T14:53:06.000+02:00","2026-03-25T15:51:03.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"115078484","182292999","PCB13955.sanef.groupe","PCB13955","DC:1B:A1:DD:58:9C","10.255.4.175","fe80::189c:761:61e:2c2e","Windows / Client","Microsoft Windows 10 Pro (22H2 Build 19045) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G7 Notebook","1","2208","Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz","7965","HP S70 Ver. 01.01.06","5CG0415498","5CG0415498","'+01:00","2026-03-24T12:34:50.000+02:00","SANEF\dewilde","Cloud Agent","d0b434fa-9506-45c4-998a-2d9b22fc521d","2022-02-25T11:20:33.000+02:00","2026-03-25T15:35:04.000+02:00","64-Bit","2","SCA,VM,PM,GAV","VRF_INCONNUE,Workstation,Cloud Agent","345.0" +"236839239","266046155","OSA20935.sanef-int.adds","OSA20935","BC:0F:F3:87:6F:A6","10.100.20.32","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.3775) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","1997","12th Gen Intel(R) Core(TM) i5-12500T","16054","HP U21 Ver. 02.10.04","8CC3290LLR","","'+01:00","2026-03-24T07:53:43.000+02:00","Superviseur","Cloud Agent","539575ac-9e87-4280-b04e-c3dbd5a30696","2024-05-15T10:28:19.000+02:00","2026-03-25T14:01:29.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","341.0" +"411343438","365613779","PCB21304.sanef.groupe","PCB21304","30-F6-EF-A5-EB-1A, D0-AD-08-0C-7D-E4, 30-F6-EF-A5-EB-1D, 30-F6-EF-A5-EB-19","10.255.3.132","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100)","24H2","Computers / Unidentified","Computers","","","","","","5CG3440GKD","","'+01:00","","","Cloud Agent","74317d3d-dcba-47d0-a330-391dbae6dfc0","2026-03-25T12:18:34.000+02:00","2026-03-25T12:18:33.000+02:00","x64","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","0.0" +"118032863","184242493","PCB17225.sanef.groupe","PCB17225","50:81:40:B9:91:D2","10.4.31.110","fe80::8ab2:98e0:e1fb:6f5a","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T76 Ver. 01.04.02","5CG13363SL","","'+01:00","2026-03-17T13:05:48.000+02:00","SANEF\crabs","Cloud Agent","60e8573e-9060-4c85-838c-42e35c6b3afd","2022-03-21T18:07:53.000+02:00","2026-03-25T12:04:10.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,VRF_INCONNUE,Workstation","345.0" +"372634633","349824019","GTC18236","GTC18236","5C:60:BA:59:E6:01","10.100.210.20","","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Desktop","HP EliteDesk 800 G6 Desktop","12","2304","Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz","16159","HP S21 Ver. 02.11.00","8CC2250Y98","8CC2250Y98","'+01:00","2026-02-16T18:30:50.000+02:00","gtc-client","Cloud Agent","221aa88e-31d8-4923-a0fc-d52b0f3b8750","2025-10-29T11:06:24.000+02:00","2026-03-25T11:35:26.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Workstation,Cloud Agent","340.0" +"379351248","352793262","DAI18685.sanef-int.adds","DAI18685","30:13:8B:6C:5D:5B","10.100.70.31","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.05.01","CZC44473W1","","'+01:00","2025-12-04T16:41:35.000+02:00","DAIUSER","Cloud Agent","63b9b706-a646-4aeb-8c14-fb7d8f48d1fe","2025-11-25T17:39:01.000+02:00","2026-03-25T10:31:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","346.0" +"325891293","","PCB18049.sanef.groupe","PCB18049","0A:00:27:00:00:10","10.255.4.241,192.168.56.1","","Windows / Client","Microsoft Windows 11 Enterprise (25H2 Insider Preview Build 26200) 64-Bit","25H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.11.00","5CG2376HRK","","'+01:00","2026-03-09T07:59:30.000+02:00","SANEF\MOUTAOUAKIL-ext","Cloud Agent","835176c5-1083-4c62-bd38-763ccd4ea3f2","2025-05-20T09:37:07.000+02:00","2026-03-25T09:59:38.000+02:00","64-Bit","2","GAV","Cloud Agent,Workstation","0.0" +"200578202","244427397","PCB18610.sanef.groupe","PCB18610","38:CA:84:DB:9D:15","10.4.30.11,10.101.243.182","fe80::3dcc:39dc:f383:2fc5","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.16.00","5CG2433WCS","","'+01:00","2026-03-23T17:59:42.000+02:00","SANEF\gayr","Cloud Agent","97f0d1e5-312f-4995-88a7-fe82d65bf4b5","2023-11-23T17:35:22.000+02:00","2026-03-25T09:28:37.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","350.0" +"411062576","365482175","10.44.7.101","","EC:46:70:03:88:C1","10.44.7.101","","Unknown","""Meinberg LANTIME M320 V7.10.007""","Unknown","Unidentified / Unidentified","Unidentified","","","","","","","","","","","IP Scanner","","2026-03-24T17:10:29.000+02:00","2026-03-24T17:10:17.000+02:00","Unknown","2","VM,GAV","","141.0" +"201154449","244705509","PCB17883.sanef.groupe","PCB17883","84:69:93:E1:1A:69","10.255.2.32,10.4.31.97","fe80::2451:ac50:8af8:4a6","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG21724KL","","'+01:00","2026-03-24T12:32:41.000+02:00","SANEF\lambert","Cloud Agent","916bac68-a311-49e1-a296-8252525aa549","2023-11-27T18:18:53.000+02:00","2026-03-24T14:25:53.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","349.0" +"365294551","346842230","PCV21581.sanef-int.adds","PCV21581","D0:AD:08:A7:27:DA","10.107.7.40","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.15.20","8CC3502YT2","","'+01:00","2025-11-19T18:41:53.000+02:00","Operateur","Cloud Agent","9de2dc87-4fe4-4808-bb7f-16d57dfb2389","2025-10-03T17:08:08.000+02:00","2026-03-24T13:46:12.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"395039386","359284199","MIO20976.sanef-int.adds","MIO20976","BC:0F:F3:88:FD:31","10.100.40.51","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","15606","HP U21 Ver. 02.19.01","8CC3290LMH","","'+01:00","2026-02-09T06:06:22.000+02:00","Operateur","Cloud Agent","31935f62-3f6b-493b-852a-7c107d126149","2026-01-26T11:35:01.000+02:00","2026-03-24T12:51:41.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"319332093","328394847","PCB22899.sanef.groupe","PCB22899","D0:AD:08:A7:27:E0","10.107.30.14","","Windows / Client","Microsoft Windows 11 Pro (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Desktop","HP Elite Mini 800 G9 Desktop","12","2000","12th Gen Intel(R) Core(TM) i5-12500T","16053","HP U21 Ver. 02.11.01","8CC3502YSQ","8CC3502YSQ","'+01:00","2026-02-28T09:11:45.000+02:00","SANEF\LIBERALJ","Cloud Agent","108e4ebf-b499-45c2-aff7-097350bcbf16","2025-04-25T10:53:47.000+02:00","2026-03-24T11:35:08.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","140.0" +"194227844","241318825","PCB17116.sanef.groupe","PCB17116","0A:00:27:00:00:0E, C8:5A:CF:B8:F2:63","192.168.1.19,192.168.56.1,10.13.31.12","fe80::b554:f246:49a8:17be,fe80::8a8c:94e5:a5b6:fd3c","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.4170) 64-Bit","22H2","Computers / Notebook","HP ProBook 640 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T74 Ver. 01.08.01","5CD15181NF","","'+01:00","2026-03-24T10:59:22.000+02:00","SANEF\THIL","Cloud Agent","4b31d007-0b4d-44ea-8b17-62778aa142f4","2023-10-19T11:10:50.000+02:00","2026-03-24T11:17:40.000+02:00","64-Bit","2","SCA,VM,PM,GAV","BDD-SQL DYN,Cloud Agent,Workstation","345.0" +"176556834","230090902","PCB18638.sanef.groupe","PCB18638","64:D6:9A:74:73:E0","10.255.4.183,10.255.4.44","fe80::3dce:b3ac:c372:e029","Windows / Client","Microsoft Windows 10 Enterprise (22H2 Build 19045.6456) 64-Bit","22H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","16064","HP T37 Ver. 01.11.00","5CG2433WD5","","'+01:00","2026-03-18T15:25:59.000+02:00","SANEF\LEFEBVRE","Cloud Agent","58a45ab3-62a6-4d09-b3c4-e8c6548de41a","2023-06-30T10:21:28.000+02:00","2026-03-23T18:42:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","351.0" +"410597376","365384700","PCB18623.sanef.groupe","PCB18623","38:CA:84:DB:E6:C9","10.252.4.10","fe80::932b:e2b7:5790:b585","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.14.00","5CG2433WD8","","'+01:00","2026-03-23T15:17:29.000+02:00","","Cloud Agent","8d5255dd-83ff-4cdf-b067-4f882e36d13e","2026-03-23T15:15:51.000+02:00","2026-03-23T15:30:56.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","0.0" +"410064844","365176295","vdlabawdc2","VDLABAWDC2","00:50:56:9C:3A:77","10.45.16.61","","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.4773) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","6143","VMware, Inc. VMW71.00V.24504846.B64.2501180334","VMware-42 1c 90 40 4e e7 c5 8a-a2 2a 1c a7 7a fd 73 be","NoAssetTag","'+01:00","2026-03-20T13:01:44.000+02:00","Administrateur","Cloud Agent","e5c41965-3ef7-476d-801f-8ba584c63c13","2026-03-20T16:24:47.000+02:00","2026-03-23T14:58:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","OS-WIN-SRV DYN,Cloud Agent","248.0" +"408836610","364697184","PSX20822.sanef-int.adds","PSX20822","30:13:8B:6C:60:91","10.252.2.6","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Desktop","HP Z2 Workstation G9 Desktop","28","2100","Intel(R) Core(TM) i7-14700","31989","HP U50 Ver. 03.05.04","CZC4437Q89","","'+01:00","2026-03-20T11:29:50.000+02:00","UserSextan","Cloud Agent","507f17e1-83dd-444c-bd0a-ca5c44ae033c","2026-03-16T17:49:11.000+02:00","2026-03-23T13:55:59.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","342.0" +"399618484","361220609","PCB17947.sanef.groupe","PCB17947","70:A8:D3:88:5D:92","10.255.1.154","","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.7840) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","8","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15616","HP T37 Ver. 01.23.00","5CG21724PW","","'+01:00","2026-03-23T09:22:41.000+02:00","SANEF\assid-ext","Cloud Agent","6f3bb932-8ca4-4338-aa2a-92cb068b5825","2026-02-12T14:55:36.000+02:00","2026-03-23T13:23:52.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Workstation,Cloud Agent","344.0" +"410003164","365142434","PCB17220.sanef.groupe","PCB17220","50:81:40:B8:AF:CB","10.252.4.8","fe80::817c:5098:9290:1574","Windows / Client","Microsoft Windows 11 Enterprise (24H2 Build 26100.1742) 64-Bit","24H2","Computers / Notebook","HP EIiteBook 830 G8 Notebook","1","2611","11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz","15664","HP T76 Ver. 01.04.02","5CG13365JF","","'+01:00","2026-03-20T12:04:34.000+02:00","","Cloud Agent","a3cdfe03-f5d4-477b-8cbe-ba646eecf07d","2026-03-20T11:40:25.000+02:00","2026-03-23T12:54:45.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,Workstation","340.0" diff --git a/inputs/Agents_sanef-km1_20260422.csv b/inputs/Agents_sanef-km1_20260422.csv new file mode 100644 index 0000000..5b79df3 --- /dev/null +++ b/inputs/Agents_sanef-km1_20260422.csv @@ -0,0 +1,3291 @@ +"Agents","22 Apr 2026 11:44AM GMT+0200","3287" +"SANEF","30 boulevard Gallieni","Issy-les-Moulineaux","None","92130","France" +"Khalid MOUTAOUAKIL","sanef-km1","All roles granted" +"Asset Id","Errors","Agent Host","ipV4","ipV6","OS","Version","Last Activity","Last Checked-in","Configuration","SwCA Configuration","Agent Modules","Tags" +"112163518","","vpaiiaast1.sanef.groupe","10.30.10.141","fe80:0:0:0:df68:fd65:de79:8c57","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:06PM GMT+0200)","22 Apr 2026 07:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Collecte,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"112196090","","vmamrrdt2","10.45.2.186","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:03AM GMT+0200)","22 Apr 2026 06:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Recette,Trafic,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,ServersInCyberark,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"112571174","","VPAIIAADM1.sanef.groupe","10.30.10.132","fe80:0:0:0:6542:cbe6:a00b:f705","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.2.5.4","Manifest Downloaded (11 Apr 2026 09:56PM GMT+0200)","21 Apr 2026 06:05PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Outils prod (Monitoring, NMS, gestion de parc),Haute,VRF_INCONNUE,AD,DSI,OS-WIN-SRV DYN]" +"112571236","","vmrgmao7.sanef.groupe","10.43.255.15","","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 21013","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:13PM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,Obsolete,COSWIN,DSI,OS-WIN-SRV DYN]" +"112576691","","vpssiapki1.sanef.groupe","10.30.10.157","0:0:0:0:0:0:0:1","CentOS Stream 8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:27PM GMT+0200)","22 Apr 2026 10:00AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Production,Outils prod (Monitoring, NMS, gestion de parc),Obsolete,Gestion_PKI,DSI]" +"113463686","","vadvpapp1","10.30.11.51","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.6","6.1.0.28","Manifest Downloaded (14 Nov 2025 05:25AM GMT+0200)","14 Nov 2025 05:30AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Production,Gestion commerciale,Sans,VRF_INCONNUE,Obsolete,ADV-U,DEX,log4j,OS-LIN-SRV DYN]" +"113584905","","vpdecasas8.sanef.groupe","10.30.11.156","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:25AM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_INCONNUE,Obsolete,ServersInCyberark,SAS,DSI,OS-LIN-SRV DYN]" +"114204409","","lamaprac4.sanef.groupe","10.41.40.56","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:07PM GMT+0200)","22 Apr 2026 09:59AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,Sans,Haute,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN]" +"114208440","","lamarrac1.sanef.groupe","10.45.2.100","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:08PM GMT+0200)","22 Apr 2026 06:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN]" +"115078266","","PCB16518.sanef.groupe","10.4.31.8","fe80:0:0:0:b31d:a7e2:4483:499b","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","Inventory Manifest Downloaded (18 Mar 2026 05:04AM GMT+0200)","18 Mar 2026 11:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"115078484","","PCB13955.sanef.groupe","10.255.4.175","fe80:0:0:0:189c:761:61e:2c2e","Microsoft Windows 10 Professionnel 10.0.19045 64 bits N/A Build 19045","6.4.0.397","Manifest Downloaded (25 Mar 2026 03:35PM GMT+0200)","25 Mar 2026 03:35PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"118032863","","PCB17225.sanef.groupe","10.4.31.110","fe80:0:0:0:8ab2:98e0:e1fb:6f5a","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","Inventory Manifest Downloaded (25 Mar 2026 10:56AM GMT+0200)","25 Mar 2026 12:04PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"119198010","","vpdsiawsus1","192.168.18.4","fe80:0:0:0:820c:cb93:ba68:92d0","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:32AM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,WSUS,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"119481537","","PCB17209.sanef.groupe","10.205.0.57","fe80:0:0:0:5972:398d:f89b:5b8b","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","Manifest Downloaded (31 Mar 2026 04:49PM GMT+0200)","31 Mar 2026 10:53PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"121411208","","PCB16647.sanef.groupe","10.255.2.232","fe80:0:0:0:a629:7a00:83a0:7ca3","Microsoft Windows 10 Enterprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:43AM GMT+0200)","22 Apr 2026 04:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"126685594","","PCB13487.sanef.groupe","10.255.1.212","fe80:0:0:0:a22c:3fd3:b321:1258","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","Manifest Downloaded (16 Mar 2026 01:18PM GMT+0200)","16 Mar 2026 04:35PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"127861129","","VPBURADHCP1.sanef.groupe","10.30.12.142","fe80:0:0:0:4cad:f3cd:9fec:337d","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:57AM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,High,Production,VRF_INCONNUE,DHCP,OS-WIN-SRV DYN]" +"127861191","","VPBURADHCP2.sanef.groupe","10.30.12.42","fe80:0:0:0:ac7a:6971:1df6:6e87","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:30AM GMT+0200)","22 Apr 2026 09:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,High,Production,Réseaux et Télécom,VRF_INCONNUE,DHCP,OS-WIN-SRV DYN]" +"127861245","","VPAIIADNS3","192.168.2.27","fe80:0:0:0:8163:20e:fbe2:9486","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:08AM GMT+0200)","22 Apr 2026 06:40AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,High,Production,DMZ,TAG-SRVEXPOSEINTERNET,Reseau & Telecom,Haute,Réseaux et Télécom,VRF_INCONNUE,SED,DNS,OS-WIN-SRV DYN]" +"127861380","","VPAIIADNS4","192.168.2.28","fe80:0:0:0:f9f8:8431:cb7d:44ad","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:41AM GMT+0200)","22 Apr 2026 05:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,High,Production,DMZ,TAG-SRVEXPOSEINTERNET,Reseau & Telecom,Haute,Réseaux et Télécom,VRF_INCONNUE,SED,DNS,OS-WIN-SRV DYN]" +"127861636","","VPAIIADNS2","192.168.2.21","fe80:0:0:0:11d4:4e1e:91f:ab37","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:53AM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,High,Production,DMZ,TAG-SRVEXPOSEINTERNET,Reseau & Telecom,Haute,Réseaux et Télécom,VRF_INCONNUE,SED,DNS,OS-WIN-SRV DYN]" +"127865511","","VPAIIADNS1","192.168.2.20","fe80:0:0:0:94b8:1537:fac0:f118","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:16PM GMT+0200)","22 Apr 2026 09:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,High,Production,DMZ,TAG-SRVEXPOSEINTERNET,Reseau & Telecom,Haute,Réseaux et Télécom,VRF_INCONNUE,SED,DNS,OS-WIN-SRV DYN]" +"127866560","","vpemvawsus1","192.168.100.130","fe80:0:0:0:13a8:3643:4632:b096","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:49PM GMT+0200)","22 Apr 2026 08:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Windows Server,Production,DMZ,Sans,Systèmes et serveurs,VRF_INCONNUE,EMV,DEX,OS-WIN-SRV DYN]" +"127940862","","vpemvatse2.sanef.groupe","192.168.100.123","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4171","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:24AM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Windows Server,Production,DMZ,Sans,PCI Bunker EMV,EMV,DEX,OS-WIN-SRV DYN]" +"127959290","","vpburaadm1.sanef.groupe","10.30.10.37","fe80:0:0:0:70df:e8bc:11d0:6b8c","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:10PM GMT+0200)","22 Apr 2026 06:14AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,Production,Outils prod (Monitoring, NMS, gestion de parc),Gestion IMPRESSION,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"127973464","","vpaiiacam2","192.168.200.18","fe80:0:0:0:1191:6116:3ffd:cdeb","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:24PM GMT+0200)","22 Apr 2026 06:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,DMZ,Sans,VRF_INCONNUE,Autoroutes trafic,DEX,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN]" +"128129742","","vpaiiaazu1","192.168.230.40","fe80:0:0:0:8491:897e:a7d8:2606","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:06AM GMT+0200)","22 Apr 2026 08:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,DMZ,TAG-SRVEXPOSEINTERNET,Sécurité IT,Sans,VRF_INCONNUE,AD,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"128134207","","vpburaadfs2.sanef.groupe","10.30.12.15","fe80:0:0:0:c9d6:5763:e515:a94","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:05AM GMT+0200)","22 Apr 2026 08:44AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,High,Production,Compte & Acces,Haute,VRF_INCONNUE,AD,DSI,OS-WIN-SRV DYN]" +"128137865","","vpburawap2","192.168.162.69","fe80:0:0:0:e927:80d:48e6:e7ba","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:40PM GMT+0200)","22 Apr 2026 08:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,DMZ,Compte & Acces,Sans,VRF_INCONNUE,AD,DSI,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN]" +"128140111","","vpbipamod1","192.168.230.19","fe80:0:0:0:e5d7:5bd7:32aa:9c4a","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:46AM GMT+0200)","22 Apr 2026 07:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Low,Production,Péage,Gestion commerciale,DMZ,TAG-SRVEXPOSEINTERNET,Basse,VRF_INCONNUE,Modalisa,DSI,OS-WIN-SRV DYN]" +"128140865","","vpburawap1","192.168.162.68","fe80:0:0:0:bd50:f9cc:1fde:b9c8","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:26AM GMT+0200)","22 Apr 2026 06:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,DMZ,Compte & Acces,Sans,VRF_INCONNUE,AD,DSI,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN]" +"128143034","","VPSSIAPKI3","192.168.90.72","","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:43PM GMT+0200)","22 Apr 2026 10:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,DMZ,TAG-SRVEXPOSEINTERNET,Sécurité IT,Sans,VRF_INCONNUE,Gestion_PKI,DSI,OS-WIN-SRV DYN]" +"128143157","","VBURWDC2.sanef.groupe","10.30.12.40","fe80:0:0:0:7014:70a5:68c4:26e6","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:27PM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,High,Production,Sécurité IT,VRF_INCONNUE,AD,DSI,OS-WIN-SRV DYN]" +"128143331","","VBURWDC1.sanef.groupe","10.30.12.140","fe80:0:0:0:dc41:86ae:1457:dbd5","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Manifest Downloaded (22 Apr 2026 03:55AM GMT+0200)","22 Apr 2026 07:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Criticality,High,Production,Sécurité IT,VRF_INCONNUE,AD,DSI,OS-WIN-SRV DYN]" +"128143527","","RMILWDC1.sanef.groupe","10.30.62.30","fe80:0:0:0:f45f:7fb2:d439:1480","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:23AM GMT+0200)","22 Apr 2026 08:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Criticality,Critical,Production,Sécurité IT,VRF_INCONNUE,AD,DSI,OS-WIN-SRV DYN]" +"128150623","","vpssiapki2.sanef.groupe","10.30.10.236","fe80:0:0:0:1d0a:d757:3080:bbb6","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:44PM GMT+0200)","22 Apr 2026 07:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,Production,Gestion_PKI,DSI,OS-WIN-SRV DYN]" +"128150818","","vmradius3.sanef.groupe","10.30.10.124","fe80:0:0:0:fdc5:80ee:27a8:29d5","Microsoft Windows Server 2008 R2 Entreprise 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24546","5.6.0.20","Inventory Scan Complete (21 Apr 2026 09:24PM GMT+0200)","22 Apr 2026 06:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Windows Server 2008,Critical,Production,Sécurité IT,Sans,VRF_INCONNUE,Obsolete,Radius,DSI,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN]" +"128150824","","vmradius4.sanef.groupe","10.30.10.125","","Microsoft Windows Server 2008 R2 Entreprise 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24544","5.6.0.20","Inventory Scan Complete (21 Apr 2026 06:53PM GMT+0200)","22 Apr 2026 06:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Windows Server 2008,Critical,Production,Sécurité IT,Sans,VRF_INCONNUE,Obsolete,Radius,DSI,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN]" +"128152928","","VMPKI2.sanef.groupe","10.30.10.147","fe80:0:0:0:995c:8dcd:6a9:a100","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:00AM GMT+0200)","22 Apr 2026 09:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,High,Production,Sécurité IT,VRF_INCONNUE,Gestion_PKI,DSI,OS-WIN-SRV DYN]" +"128153026","","vpburaquo1.sanef.groupe","10.102.2.13","fe80:0:0:0:5474:c385:7fff:752d","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 21620","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:43AM GMT+0200)","22 Apr 2026 06:40AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,VRF_INCONNUE,Obsolete,OS-WIN-SRV DYN]" +"128166041","","vpemvaxsr1","192.168.105.1","fe80:0:0:0:3ce0:1669:302e:298f","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 21620","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:10PM GMT+0200)","22 Apr 2026 07:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[PCI Bunker Echange,PCI Bunker EMV - VLAN Echange,Cloud Agent,Windows Server,Production,Exploitation IT,DMZ,Sans,VRF_INCONNUE,Obsolete,EMV,DEX,OS-WIN-SRV DYN]" +"128166555","","vpburaadfs1.sanef.groupe","10.30.12.14","fe80:0:0:0:c96b:1f49:cdd7:9ec","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:03PM GMT+0200)","22 Apr 2026 08:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,High,Production,Compte & Acces,Haute,VRF_INCONNUE,AD,DSI,OS-WIN-SRV DYN]" +"128175548","","PCB16366.sanef.groupe","10.205.0.95","fe80:0:0:0:1213:3fdc:6b64:cdee","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:32AM GMT+0200)","21 Apr 2026 09:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"128519806","","ls-beauvais-centre","10.41.2.90","fe80:0:0:0:e59a:63c8:5689:f144","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:37AM GMT+0200)","22 Apr 2026 07:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"128519851","","ls-beauvais-nord","10.41.2.91","fe80:0:0:0:148:3589:905c:1a7d","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:22AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128588879","","ls-boulogne","10.41.2.103","fe80:0:0:0:1a3e:c2c6:5d8b:e4dd","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:54AM GMT+0200)","22 Apr 2026 10:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128591651","","ls-berck","10.41.2.100","fe80:0:0:0:c30b:d83b:a2f2:78c9","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:50PM GMT+0200)","22 Apr 2026 07:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128591682","","ls-bretonneux","10.41.2.49","fe80:0:0:0:ca55:acb5:4331:8534","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:20AM GMT+0200)","22 Apr 2026 07:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128593762","","ls-chateau-thierry","10.41.2.58","fe80:0:0:0:f71f:7715:e547:2bfe","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:39AM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128594047","","ls-hordain","10.142.1.20","fe80:0:0:0:dc88:56f4:5bd:f68f","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:26AM GMT+0200)","22 Apr 2026 09:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_INCONNUE,SVP,DEX,OS-WIN-SRV DYN]" +"128594378","","ls-courbes","10.41.2.47","fe80:0:0:0:71f1:fd75:4dac:6306","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:38AM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,OS-WIN-SRV DYN]" +"128600128","","ls-hardivilliers","10.41.2.92","fe80:0:0:0:b1c9:a5fd:4ad4:f960","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:45AM GMT+0200)","22 Apr 2026 07:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128609803","","ls-la-veuve-mourmelon","10.41.2.72","fe80:0:0:0:10be:27a0:7769:e103","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:48PM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128609877","","ls-lillers","10.41.2.39","fe80:0:0:0:c295:9b47:13d1:fd23","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 7792","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:51AM GMT+0200)","22 Apr 2026 08:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128614031","","ls-nordausques","10.41.2.35","fe80:0:0:0:a019:9ca3:ec73:2ce3","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:26AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128614112","","ls-montreuil-bretelle","10.41.2.63","fe80:0:0:0:ccbe:b3eb:6447:1dd1","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:23AM GMT+0200)","22 Apr 2026 08:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"128614292","","ls-plateau","10.41.2.83","fe80:0:0:0:b7cb:1019:15c3:43b1","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:21AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128614386","","ls-noeux-les-mines","10.41.2.52","fe80:0:0:0:4269:744d:a98c:4b49","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:48AM GMT+0200)","22 Apr 2026 09:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128614531","","ls-phalsbourg","10.41.2.111","fe80:0:0:0:8777:c6b0:e85b:247d","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:55AM GMT+0200)","22 Apr 2026 09:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128617920","","ls-poix-de-picardie","10.41.2.105","fe80:0:0:0:eec4:92e9:2b60:2b6d","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:51AM GMT+0200)","22 Apr 2026 07:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128618343","","ls-santerre","10.41.2.50","fe80:0:0:0:656d:2b7a:3f5d:64da","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:25PM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128618682","","ls-setques","10.106.18.20","fe80:0:0:0:bed4:4651:5cf:1890","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:44AM GMT+0200)","22 Apr 2026 07:44AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_INCONNUE,SVP,DEX,OS-WIN-SRV DYN]" +"128622406","","ls-st-omer","10.41.2.37","fe80:0:0:0:2e09:f2c2:455a:9f48","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:19AM GMT+0200)","22 Apr 2026 09:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"128622563","","ls-st-omer2","10.41.2.36","fe80:0:0:0:4280:cdd1:bfe3:dad7","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:53AM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,VRF_INCONNUE,SVP,DEX,OS-WIN-SRV DYN]" +"129006381","","PCM13449.sanef.groupe","10.4.31.12","fe80:0:0:0:3112:c7c:5d24:184f","Microsoft Windows 10 Enterprise 10.0.19045 64 bits N/A Build 19045 UBR 4046","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:19AM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"129304117","","LAMPSAS1.sanef.groupe","10.30.10.145","fe80:0:0:0:58be:8eb5:320f:60ef","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 19573","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:02PM GMT+0200)","22 Apr 2026 09:59AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Finances Comptabilité / Consolidation,VRF_INCONNUE,Obsolete,SAS,DSI,log4j,OS-WIN-SRV DYN,BDD-SQL DYN]" +"129304240","","LPDECABI42.sanef.groupe","10.30.11.131","","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 19460","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:11AM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,Obsolete,BusinessObjects,DFIN,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"129308228","","vmpgmao7.sanef.groupe","10.41.40.176","","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 18993","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:23PM GMT+0200)","22 Apr 2026 07:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_TRAFIC_DC,Obsolete,COSWIN,DSI,OS-WIN-SRV DYN]" +"129308577","","vpaiiafsso1.sanef.groupe","10.30.11.2","fe80:0:0:0:d8e9:555a:c54:bb6c","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 21620","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:59PM GMT+0200)","22 Apr 2026 09:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Sécurité IT,Sans,VRF_INCONNUE,Obsolete,FSSO,DSI,OS-WIN-SRV DYN]" +"129308617","","vpaiiafsso2.sanef.groupe","10.30.11.3","fe80:0:0:0:e920:9adf:f368:6768","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 21620","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:16PM GMT+0200)","22 Apr 2026 07:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Sécurité IT,Sans,VRF_INCONNUE,Obsolete,FSSO,DSI,OS-WIN-SRV DYN]" +"129310119","","ls-therouanne","10.41.2.38","fe80:0:0:0:f6e6:31d5:222e:18af","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:33PM GMT+0200)","22 Apr 2026 06:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"129310163","","ls-thillois","10.82.16.20","fe80:0:0:0:39fd:703d:3461:8879","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:13PM GMT+0200)","22 Apr 2026 07:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_INCONNUE,SVP,DEX,OS-WIN-SRV DYN]" +"129310553","","ls-vallee-de-l-aube","10.41.2.67","fe80:0:0:0:727a:280d:1b65:a849","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:06PM GMT+0200)","22 Apr 2026 07:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"129310619","","vpburaimp1.sanef.groupe","10.30.12.147","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:00PM GMT+0200)","22 Apr 2026 05:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,VRF_INCONNUE,DSI,PaperCut,OS-WIN-SRV DYN,BDD-SQL DYN,BDD-POS DYN]" +"129315687","","vpaiia8770.sanef.groupe","10.41.60.135","fe80:0:0:0:e832:e20e:ddfa:b187","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:33AM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Low,Production,Téléphonie,Basse,VRF_INCONNUE,OPENTOUCH,DSI,OS-WIN-SRV DYN]" +"129315697","","VPAIIAADA1.sanef.groupe","10.30.10.117","fe80:0:0:0:2de8:386f:e0f9:5df7","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8330","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:03PM GMT+0200)","22 Apr 2026 07:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Low,Production,Outils prod (Monitoring, NMS, gestion de parc),Basse,VRF_INCONNUE,AD,DSI,OS-WIN-SRV DYN]" +"129315730","","ls-vatry","10.41.2.108","fe80:0:0:0:4987:2689:abc0:a8b3","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:45PM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"129315770","","ls-verdun","10.41.2.77","fe80:0:0:0:7e5c:9755:ed11:41d2","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:04PM GMT+0200)","22 Apr 2026 07:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"129320176","","vpaiiadba1.sanef.groupe","10.30.10.149","fe80:0:0:0:d853:1b8b:ce23:7875","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:42PM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,ORACLE,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"129321325","","VPBIPBDEC1.sanef.groupe","10.30.11.21","fe80:0:0:0:81a1:d664:c32e:6afa","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8868","6.2.5.4","Manifest Downloaded (13 Apr 2026 06:55PM GMT+0200)","21 Apr 2026 07:41PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Gestion commerciale,VRF_INCONNUE,INSIDE,DFIN,OS-WIN-SRV DYN,BDD-SQL DYN]" +"129336589","","vpdaoalic1.sanef.groupe","10.30.10.59","fe80:0:0:0:353f:27f3:8e01:bdc1","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:30PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Low,Production,Logiciels,Basse,VRF_INCONNUE,ELEC,DEX,OS-WIN-SRV DYN]" +"129336695","","VPPATBL2R1.sanef.groupe","10.42.40.13","fe80:0:0:0:7c04:8771:dc55:13c0","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:51AM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Patrimoine,VRF_PATRIMOINE_DC,L2R,DFIN,OS-WIN-SRV DYN]" +"129337968","","ls-yvetot","10.41.2.86","fe80:0:0:0:111e:a59c:c6:ac2","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:16AM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"129338219","","vpsimasvp1.sanef.groupe","10.30.10.50","fe80:0:0:0:317e:1a7d:4f7f:84dc","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957","6.2.5.4","Manifest Downloaded (09 Apr 2026 05:19PM GMT+0200)","21 Apr 2026 07:21PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Péage,VRF_INCONNUE,FreeFlow,Flux Libre,OS-WIN-SRV DYN]" +"129338598","","vptraazen2.sanef.groupe","10.41.60.51","fe80:0:0:0:f546:1eb3:9fc2:b539","Microsoft Windows Server 2016 Standard 10.0.14393 64-bit N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:09PM GMT+0200)","22 Apr 2026 05:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Outils transverses,VRF_BURO,Enregistrement_COM,DEX,OS-WIN-SRV DYN]" +"129338620","","vdtrabtpa1.sanef.groupe","10.45.13.35","fe80:0:0:0:f9ca:10f4:5375:6ed3","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.2.5.4","Manifest Downloaded (11 Apr 2026 09:55PM GMT+0200)","21 Apr 2026 05:32PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Recette,Trafic,VRF_INCONNUE,Temps de parcours,DEX,OS-WIN-SRV DYN,BDD-SQL DYN,BDD-POS DYN]" +"129338677","","vpaiiatse2.sanef.groupe","10.30.11.8","fe80:0:0:0:fde9:4486:1354:5d73","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:03PM GMT+0200)","22 Apr 2026 05:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation IT,VRF_INCONNUE,AgileTime,DRH,OS-WIN-SRV DYN]" +"129338807","","vpaiiairs1.sanef.groupe","10.30.10.44","fe80:0:0:0:2279:f110:5569:5e94","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.2.5.4","Manifest Downloaded (11 Apr 2026 09:55PM GMT+0200)","22 Apr 2026 07:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,VRF_INCONNUE,IRS,DSI,OS-WIN-SRV DYN]" +"129338920","","vptraazen1.sanef.groupe","10.41.60.41","fe80:0:0:0:adca:2c88:5332:220a","Microsoft Windows Server 2016 Standard 10.0.14393 64-bit N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:26PM GMT+0200)","22 Apr 2026 07:00AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Outils transverses,VRF_BURO,Enregistrement_COM,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"129339614","","sppeaanvr12","10.41.7.111","fe80:0:0:0:1f4b:ac16:a242:b4fd","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:41AM GMT+0200)","22 Apr 2026 06:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129339728","","sppeaanvr10","10.41.7.109","fe80:0:0:0:6047:3cad:b2d9:5a8f","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:46PM GMT+0200)","22 Apr 2026 05:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129339882","","sppeaanvr14","10.41.7.113","fe80:0:0:0:f292:ef67:3db0:bea3","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:36PM GMT+0200)","22 Apr 2026 06:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129342529","","sppeaanvr15","10.41.7.114","fe80:0:0:0:b140:a7d:109c:3910","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 02:43PM GMT+0200)","22 Apr 2026 06:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129343041","","sppeaanvr7","10.41.7.106","fe80:0:0:0:5605:a31:eec3:b319","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:40AM GMT+0200)","22 Apr 2026 06:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129343396","","sppeaanvr9","10.41.7.108","fe80:0:0:0:577d:d7e8:b662:eb21","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:02PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129343757","","vppeaaref4","10.42.0.138","fe80:0:0:0:734d:2bd6:29be:aa4","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:50PM GMT+0200)","22 Apr 2026 07:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_EXTERNAL,SVP,DEX,OS-WIN-SRV DYN]" +"129345155","","VPROIAGTC1","10.41.19.15","fe80:0:0:0:e8d1:e467:5e5c:623f","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:09AM GMT+0200)","22 Apr 2026 08:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,High,Production,Trafic,Haute,VRF_INCONNUE,GTC,DEX,BDD-SQL DYN]" +"129345792","","vpsecawin1.sanef.groupe","10.30.10.60","fe80:0:0:0:8540:9f1:8b3e:d02e","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:35AM GMT+0200)","22 Apr 2026 10:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Sécurité IT,VRF_INCONNUE,SECOPS,DSI,OS-WIN-SRV DYN]" +"129346019","","vpsimaexp1.sanef.groupe","10.30.10.17","fe80:0:0:0:7ae0:1b47:66ee:babc","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:47AM GMT+0200)","22 Apr 2026 05:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,DOLLAR,DSI,OS-WIN-SRV DYN]" +"129354939","","vburimp2.sanef.groupe","10.30.12.146","","Microsoft Windows Server 2008 R2 Standard 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24356","5.6.0.20","Inventory Scan Complete (22 Apr 2026 08:39AM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server 2008,Production,Obsolete,Gestion IMPRESSION,DSI,OS-WIN-SRV DYN]" +"129355007","","vtmd.sanef.groupe","10.30.10.63","fe80:0:0:0:c1a8:2d8e:650:c4a1","Microsoft Windows Server 2008 R2 Standard 6.1.7601 64 bits Service Pack 1 Build 7601","5.6.0.20","Inventory Scan Complete (22 Apr 2026 07:07AM GMT+0200)","22 Apr 2026 08:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Windows Server 2008,Production,Trafic,VRF_INCONNUE,Obsolete,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-POS DYN]" +"129355044","","vpabnanvr1","10.187.6.10","fe80:0:0:0:d80a:4c23:8a33:dc7f","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:35AM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129355084","","vpamsanvr1","10.137.2.13","fe80:0:0:0:6026:d7a2:7dbf:6ccf","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:53AM GMT+0200)","22 Apr 2026 06:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129355323","","vpabvanvr1","10.137.1.11","fe80:0:0:0:d518:5969:6ecb:5f56","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:13AM GMT+0200)","22 Apr 2026 08:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129355353","","vpamlanvr1","10.137.4.13","fe80:0:0:0:d84d:147a:f82e:3c9c","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:04PM GMT+0200)","22 Apr 2026 06:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129355489","","vpcotanvr1","10.217.36.10","fe80:0:0:0:272b:138:a256:e659","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:18PM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129355604","","vpbmtanvr1","10.117.3.11","fe80:0:0:0:1130:1b36:8af6:bbd1","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:22AM GMT+0200)","22 Apr 2026 07:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129355670","","vpchtanvr1","10.147.3.10","fe80:0:0:0:3e2d:c1cc:4318:9c9a","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:31PM GMT+0200)","22 Apr 2026 07:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,NVR,DEX,OS-WIN-SRV DYN]" +"129355937","","vpbovanvr1","10.137.5.10","fe80:0:0:0:182f:5704:5a7:9917","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:29PM GMT+0200)","22 Apr 2026 06:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129356109","","vpctvanvr1","10.1.6.12","fe80:0:0:0:1c16:85d1:e59c:4210","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:29AM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129356148","","vphrqanvr1","10.137.3.11","fe80:0:0:0:3574:8853:34d7:ed8f","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:37AM GMT+0200)","22 Apr 2026 10:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129356503","","vpsaaanvr1","10.117.2.11","fe80:0:0:0:dff1:76c0:14af:311d","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:39AM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129356560","","vpormanvr1","10.27.3.12","fe80:0:0:0:56d9:e31e:a9ce:a3bb","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:41PM GMT+0200)","22 Apr 2026 06:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129356666","","vptsyanvr1","10.87.17.12","fe80:0:0:0:2354:a07a:4242:d826","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:47AM GMT+0200)","22 Apr 2026 06:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129356722","","vpmalanvr1","10.27.1.12","fe80:0:0:0:7358:3214:6b8:10cd","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:52AM GMT+0200)","22 Apr 2026 06:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129356867","","vpthlanvr1","10.87.16.11","fe80:0:0:0:aa56:26de:2299:2415","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:58AM GMT+0200)","22 Apr 2026 07:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129356894","","vpccyanvr1","10.27.2.30","fe80:0:0:0:b2e3:2887:3663:d840","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:30AM GMT+0200)","22 Apr 2026 04:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129362026","","vpflmanvr1","10.147.2.10","fe80:0:0:0:932:58:44c2:498a","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:21PM GMT+0200)","22 Apr 2026 07:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,NVR,DEX,OS-WIN-SRV DYN]" +"129362125","","vpsroanvr1","10.217.26.11","fe80:0:0:0:cf26:fa68:10f1:df73","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:25AM GMT+0200)","22 Apr 2026 07:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129362145","","vpstqanvr1","10.103.7.100","fe80:0:0:0:d6ad:10cc:4d47:e452","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:29PM GMT+0200)","22 Apr 2026 07:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129362237","","vphdnanvr1","10.147.1.10","fe80:0:0:0:6ccf:223b:6020:6040","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:16AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129362381","","vpsdtanvr1","10.11.7.13","fe80:0:0:0:4345:c426:ab9e:2a37","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:18PM GMT+0200)","22 Apr 2026 08:59AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129445939","","vprauareb1","192.168.90.70","","Microsoft Windows 7 Entreprise 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24289","5.6.0.20","Inventory Scan Complete (22 Apr 2026 06:08AM GMT+0200)","22 Apr 2026 07:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,Production,Exploitation,DMZ,Sans,VRF_INCONNUE,Obsolete,ASUR,DSI,TAG-SRVEXPOSEINDIRECT]" +"129449366","","MPCECMI1.sanef.groupe","10.60.2.100","fe80:0:0:0:9dc6:f5d3:2349:85f3","Microsoft Windows 10 Entreprise 2016 LTSB 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:12PM GMT+0200)","22 Apr 2026 06:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,Production,Trafic,VRF_INCONNUE,MUR,DEX]" +"129450949","","vpburafax2.sanef.groupe","10.41.60.151","fe80:0:0:0:2125:ad2a:d2fe:674f","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:19AM GMT+0200)","22 Apr 2026 07:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,VRF_TPH_DC,XMedius,DSI,OS-WIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"129450969","","vpradbtef1.sanef.groupe","10.41.91.42","fe80:0:0:0:a730:5ed3:3712:4426","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:27AM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,VRF_INCONNUE,TAIT,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"129474881","","vamrsycapp2.sanef.groupe","10.45.2.22","","Microsoft Windows Server 2008 R2 Standard 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24130","5.6.0.20","Inventory Scan Complete (21 Apr 2026 05:06PM GMT+0200)","22 Apr 2026 10:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Windows Server 2008,Recette,Patrimoine,Sans,VRF_INCONNUE,Obsolete,SIG,DEX,OS-WIN-SRV DYN]" +"129475229","","vexploit2.sanef.groupe","10.30.10.172","fe80:0:0:0:1116:f62b:39f9:2d87","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 21620","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:18PM GMT+0200)","22 Apr 2026 07:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,XFB,DEX,OS-WIN-SRV DYN,BDD-POS DYN]" +"129475833","","lamargis1.sanef.groupe","10.45.2.20","fe80:0:0:0:4c66:d435:49dd:c637","Microsoft Windows Server 2008 R2 Entreprise 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 23964","5.6.0.20","Inventory Scan Complete (22 Apr 2026 07:05AM GMT+0200)","22 Apr 2026 08:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Windows Server 2008,Recette,Patrimoine,Sans,VRF_INCONNUE,Obsolete,SIG,DEX,OS-WIN-SRV DYN]" +"129476951","","vrbipbdec1.sanef.groupe","10.45.13.163","fe80:0:0:0:387f:db6c:a7bb:6249","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:03PM GMT+0200)","22 Apr 2026 06:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,Gestion commerciale,VRF_INCONNUE,INSIDE,DFIN,OS-WIN-SRV DYN,BDD-SQL DYN]" +"129477136","","vmsapnrt1","10.30.10.35","","Microsoft Windows Server 2008 R2 Entreprise 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24356","5.6.0.20","Inventory Scan Complete (22 Apr 2026 08:01AM GMT+0200)","22 Apr 2026 08:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Windows Server 2008,Recette,Finances Comptabilité / Consolidation,VRF_INCONNUE,Obsolete,SAP,DFIN,OS-WIN-SRV DYN,BDD-SQL DYN]" +"129477171","","RMILSAS1","10.30.10.8","","Microsoft Windows Server 2008 R2 Standard 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24536","5.6.0.20","Inventory Scan Complete (22 Apr 2026 05:42AM GMT+0200)","22 Apr 2026 06:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Windows Server 2008,Recette,Finances Comptabilité / Consolidation,VRF_INCONNUE,Obsolete,SAS,DSI,OS-WIN-SRV DYN]" +"129477287","","vrtrabtpv1","10.43.255.11","fe80:0:0:0:50e9:bb91:63c3:a2c7","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:55PM GMT+0200)","22 Apr 2026 07:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,Trafic,VRF_INCONNUE,Temps de parcours,DEX,OS-WIN-SRV DYN,BDD-POS DYN]" +"129479933","","vpptrabalx1.sanef.groupe","10.41.49.15","fe80:0:0:0:9b0e:bf84:cbc4:daff","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:28PM GMT+0200)","22 Apr 2026 06:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,VRF_TRAFIC_DC,ALX,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"129733729","","PCB18431.sanef.groupe","10.200.31.31","fe80:0:0:0:22bc:ebc0:e08d:60d0","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:29AM GMT+0200)","21 Apr 2026 04:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"129846416","","sppeaanvr3","10.41.7.102","fe80:0:0:0:a4c6:8217:b153:8c44","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:33AM GMT+0200)","22 Apr 2026 09:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129846548","","sppeaanvr2","10.41.7.101","fe80:0:0:0:9734:59fd:14c5:3624","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:08AM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,NVR,DEX,OS-WIN-SRV DYN]" +"129931160","","vmampgis1.sanef.groupe","10.41.40.105","fe80:0:0:0:4f:a480:d4b:ecd6","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 21620","6.2.5.4","Manifest Downloaded (16 Apr 2026 06:39PM GMT+0200)","21 Apr 2026 05:37PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Patrimoine,VRF_TRAFIC_DC,Obsolete,GIS,DEX,OS-WIN-SRV DYN]" +"129931386","","vmampgis3.sanef.groupe","10.41.40.107","fe80:0:0:0:f9e4:a388:57bc:431b","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 21563","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:36AM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Patrimoine,VRF_TRAFIC_DC,Obsolete,GIS,DEX,OS-WIN-SRV DYN]" +"129931412","","vmampgis5.sanef.groupe","10.41.40.109","fe80:0:0:0:f56c:5a1a:5877:598c","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 21620","6.2.5.4","Manifest Downloaded (10 Apr 2026 07:46AM GMT+0200)","21 Apr 2026 08:43PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Patrimoine,VRF_INCONNUE,Obsolete,SIG,DEX,OS-WIN-SRV DYN]" +"129933290","","LAMAPGIS1.sanef.groupe","10.41.40.103","fe80:0:0:0:ed1d:58cb:d146:5f61","Microsoft Windows Server 2008 R2 Entreprise 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24494","5.6.0.20","Inventory Scan Complete (21 Apr 2026 11:49PM GMT+0200)","22 Apr 2026 07:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Windows Server 2008,Production,Patrimoine,Sans,VRF_TRAFIC_DC,Obsolete,SIG,DEX,OS-WIN-SRV DYN]" +"129933546","","vptrabalx1.sanef.groupe","10.41.40.15","fe80:0:0:0:7f36:cf5a:8ece:6e07","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:02PM GMT+0200)","22 Apr 2026 07:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,VRF_TRAFIC_DC,ALX,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"129933658","","vampsycapp2.sanef.groupe","10.41.40.101","","Microsoft Windows Server 2008 R2 Standard 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24130","5.6.0.20","Inventory Manifest Downloaded (15 Apr 2026 06:35AM GMT+0200)","22 Apr 2026 06:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Windows Server 2008,Production,Patrimoine,Sans,VRF_TRAFIC_DC,Obsolete,SIG,DEX,OS-WIN-SRV DYN]" +"129933754","","vrpatalag1.sanef.groupe","10.45.10.135","fe80:0:0:0:4eae:3207:194d:72bb","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.2.5.4","VM Manifest Downloaded (13 Apr 2026 02:42AM GMT+0200)","17 Apr 2026 06:51PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,Patrimoine,VRF_INCONNUE,Lago,DFIN,OS-WIN-SRV DYN]" +"129933839","","vampsycapp1.sanef.groupe","10.41.40.100","","Microsoft Windows Server 2008 R2 Standard 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24130","5.6.0.20","Inventory Scan Complete (21 Apr 2026 07:39PM GMT+0200)","22 Apr 2026 09:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Windows Server 2008,Production,Patrimoine,Sans,VRF_TRAFIC_DC,Obsolete,SIG,DEX,OS-WIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"129948367","","vpaiiapkg1","10.30.6.6","","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:03PM GMT+0200)","22 Apr 2026 07:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,Low,Production,Outils prod (Monitoring, NMS, gestion de parc),Basse,VRF_INCONNUE,Package,DSI,BDD-SQL DYN]" +"129952116","","sproibgtc1","10.78.200.10","fe80:0:0:0:fa4:9ef4:b16e:b389","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:07AM GMT+0200)","22 Apr 2026 06:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Trafic,Haute,VRF_INCONNUE,GTC,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"130318092","","VPAIIAVCL1.sanef.groupe","10.41.11.20","fe80:0:0:0:d18b:f8f1:98e9:5498","Microsoft Windows 10 Entreprise 10.0.17763 64 bits N/A Build 17763 UBR 1879","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:04AM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,Obsolete,NVR,DEX]" +"130330176","","VPAIIAPVC2.sanef.groupe","10.41.11.12","fe80:0:0:0:45cd:6d45:f975:d271","Microsoft Windows 10 Entreprise 10.0.17763 64 bits N/A Build 17763 UBR 1879","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:09PM GMT+0200)","22 Apr 2026 06:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,Production,Exploitation,Sans,Obsolete,NVR,DEX]" +"130330682","","VPPEAAIPH1.sanef.groupe","10.45.9.50","fe80:0:0:0:a50d:9ea4:7805:f203","Microsoft Windows 10 Enterprise 10.0.17763 64 bits N/A Build 17763 UBR 1879","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:59AM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,Production,Péage,VRF_INCONNUE,Obsolete,Alpha,DSI]" +"130330700","","VPAIIAPVC1.sanef.groupe","10.41.11.11","fe80:0:0:0:50cd:6e78:7688:8614","Microsoft Windows 10 Entreprise 10.0.17763 64 bits N/A Build 17763 UBR 1457","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:44AM GMT+0200)","22 Apr 2026 07:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,Production,Exploitation,VRF_INCONNUE,Obsolete,NVR,DEX]" +"130331191","","VPAIIAPVD3.sanef.groupe","10.41.11.17","fe80:0:0:0:e4cf:2c5b:a84a:38c4","Microsoft Windows 10 Entreprise 10.0.17763 64 bits N/A Build 17763 UBR 1879","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:36PM GMT+0200)","22 Apr 2026 04:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,Obsolete,NVR,DEX]" +"130331208","","VPAIIAPVD4.sanef.groupe","10.41.11.18","fe80:0:0:0:2cbf:bb83:13f5:956f","Microsoft Windows 10 Entreprise 10.0.17763 64 bits N/A Build 17763 UBR 1879","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:07AM GMT+0200)","22 Apr 2026 05:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,Obsolete,NVR,DEX]" +"130331258","","VPAIIAPVC4.sanef.groupe","10.41.11.14","fe80:0:0:0:e866:9ddd:c507:1e32","Microsoft Windows 10 Entreprise 10.0.17763 64 bits N/A Build 17763 UBR 1879","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:26PM GMT+0200)","22 Apr 2026 06:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,Obsolete,NVR,DEX]" +"130334728","","sptrabenr2.sanef.groupe","10.41.60.50","fe80:0:0:0:fce1:8515:d0eb:82d6","Microsoft Windows Server 2016 Standard 10.0.14393 64-bit N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:53PM GMT+0200)","21 Apr 2026 09:39PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Outils transverses,VRF_BURO,Enregistrement_COM,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"130335698","","VPAIIAPVD5.sanef.groupe","10.41.11.19","fe80:0:0:0:9c95:1217:69bb:fbc3","Microsoft Windows 10 Entreprise 10.0.17763 64 bits N/A Build 17763 UBR 1879","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:42AM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,Production,Exploitation,Sans,VRF_INCONNUE,Obsolete,NVR,DEX]" +"130346127","","VMAMPWEB1.sanef.groupe","10.41.40.111","fe80:0:0:0:fd9d:cd61:39ca:5304","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:19AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Patrimoine,VRF_TRAFIC_DC,Obsolete,SIG,DEX,OS-WIN-SRV DYN]" +"130346274","","VMAMPWEB2.sanef.groupe","10.41.40.112","fe80:0:0:0:e86b:bba:af54:270b","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:43AM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Patrimoine,VRF_TRAFIC_DC,Obsolete,SIG,DEX,OS-WIN-SRV DYN]" +"130352405","","vppatalag1.sanef.groupe","10.42.40.12","fe80:0:0:0:3db4:5b5f:1399:820d","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.2.5.4","Manifest Downloaded (17 Apr 2026 05:51PM GMT+0200)","21 Apr 2026 09:34PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Patrimoine,VRF_PATRIMOINE_DC,Lago,DFIN,OS-WIN-SRV DYN]" +"130356819","","vppeaaref2","10.41.2.231","fe80:0:0:0:9549:8413:d671:f787","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:43PM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"130356825","","vpppeaaref1","10.41.29.10","fe80:0:0:0:1f7d:b687:11df:5fc1","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:57PM GMT+0200)","22 Apr 2026 07:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"130357282","","vraiibsql3","10.43.253.3","fe80:0:0:0:d5b0:441c:7276:e932","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8146","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:27PM GMT+0200)","22 Apr 2026 07:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,BDD,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"130357913","","vppeaaref1","10.41.2.230","fe80:0:0:0:b747:dde8:3426:8a96","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:40AM GMT+0200)","22 Apr 2026 08:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"130357992","","vpboeacst1.sanef.groupe","10.41.21.10","fe80:0:0:0:17b:7958:c73e:bda5","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:34PM GMT+0200)","22 Apr 2026 07:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Péage,VRF_PEAGE_DC,OS-WIN-SRV DYN]" +"130359075","","vppeaaexp1","10.41.21.15","fe80:0:0:0:ee7c:54b9:c1a6:3255","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:20PM GMT+0200)","22 Apr 2026 09:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"130359106","","vppboeacst1","10.41.29.20","fe80:0:0:0:4909:4c74:faba:c9e3","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:09AM GMT+0200)","22 Apr 2026 08:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Péage,VRF_PEAGE_DC,OS-WIN-SRV DYN]" +"130360055","","vpppeaasvp1","10.41.29.11","fe80:0:0:0:e926:3caf:4d1d:7d08","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:43PM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Recette,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"130428362","","BLY-BLY2-GC2","10.92.10.233","fe80:0:0:0:85c7:e4a0:e217:b03","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64-bit N/A Build 9600 UBR 19237","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:47PM GMT+0200)","22 Apr 2026 06:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,Obsolete,OS-WIN-SRV DYN]" +"130431262","","BLY-BLY2-VES2","10.92.10.234","","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64-bit N/A Build 9600 UBR 19156","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:28AM GMT+0200)","22 Apr 2026 07:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,Obsolete,OS-WIN-SRV DYN,BDD-SQL DYN]" +"130580114","","lamrsip1","10.43.254.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.11","6.1.0.28","Inventory Manifest Downloaded (14 Nov 2025 04:41AM GMT+0200)","14 Nov 2025 04:41AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Recette,Péage,VRF_LEGACY,Obsolete,Central péage,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"130580382","","lamtpfe1.sanef.groupe","10.45.11.222","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.11","6.1.0.28","Manifest Downloaded (14 Nov 2025 05:27AM GMT+0200)","14 Nov 2025 05:27AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Recette,Exploitation IT,VRF_INCONNUE,Obsolete,XFB,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"130580517","","lamtinf1.sanef.groupe","10.45.7.30","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.11","6.1.0.28","Inventory Scan Complete (22 Apr 2026 12:41AM GMT+0200)","22 Apr 2026 06:40AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Recette,Bases de Données,VRF_INCONNUE,Obsolete,ORACLE,DSI,log4j,OS-LIN-SRV DYN,BDD-POS DYN]" +"130582564","","vmamrgtc1","10.45.2.160","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:00PM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"130582850","","vmamrgtc2","10.45.2.161","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:45AM GMT+0200)","22 Apr 2026 10:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"130582878","","vmamrtd1.sanef.groupe","10.45.2.195","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:25PM GMT+0200)","22 Apr 2026 06:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Traffic,DEX,log4j,OS-LIN-SRV DYN]" +"130583019","","vtexpbdech1.sanef.groupe","10.45.14.163","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:05PM GMT+0200)","22 Apr 2026 08:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Patrimoine,VRF_INCONNUE,Obsolete,DECHETS,DEX,TAG-SRVEXPOSEINDIRECT,BDD-POS DYN]" +"130583160","","vmcmdb1","10.30.11.107","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:29AM GMT+0200)","22 Apr 2026 07:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Recette,Péage,Bases de Données,VRF_INCONNUE,Obsolete,ITOP,DSI,TAG-SRVEXPOSEINDIRECT,BDD-POS DYN]" +"130583362","","node4","10.45.2.59","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:35PM GMT+0200)","22 Apr 2026 06:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Obsolete,MID-NGINX DYN,BDD-POS DYN]" +"130583718","","vdameasxt1","10.45.2.56","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:46PM GMT+0200)","22 Apr 2026 08:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Obsolete,BDD-POS DYN]" +"130584077","","node2","10.45.2.57","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:27AM GMT+0200)","22 Apr 2026 07:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Obsolete,BDD-POS DYN]" +"130584251","","node3","10.45.2.58","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:03AM GMT+0200)","22 Apr 2026 07:40AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Obsolete,MID-NGINX DYN,BDD-POS DYN]" +"130584303","","vmamdpmv2.sanef.groupe","10.45.2.129","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:42PM GMT+0200)","22 Apr 2026 06:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,VRF_INCONNUE,Obsolete,MIVISU,DEX,OS-LIN-SRV DYN]" +"130586766","","lamarrac2.sanef.groupe","10.45.2.102","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:36PM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN]" +"130586773","","lamarrac3.sanef.groupe","10.45.2.104","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:57PM GMT+0200)","22 Apr 2026 05:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN]" +"130586805","","vmamrdif1.sanef.groupe","10.45.2.25","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:47PM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"130586812","","vmamrhtp1","10.30.16.50","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:04PM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"130586828","","vmamrpmv1","10.30.16.80","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:03PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"130587915","","lamarrac4.sanef.groupe","10.45.2.106","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:26AM GMT+0200)","22 Apr 2026 07:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN]" +"130587922","","vrtraagas1","10.45.1.68","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:59PM GMT+0200)","22 Apr 2026 06:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Exploitation,VRF_INCONNUE,Obsolete,Gaspar,DEX,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"130587954","","vmamrmet1","10.45.2.150","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:17PM GMT+0200)","22 Apr 2026 08:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"130588099","","vamrsychtp1.sanef.groupe","10.45.2.23","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.5","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:13PM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Patrimoine,Sans,VRF_INCONNUE,Obsolete,SIG,DEX,OS-LIN-SRV DYN]" +"130588224","","vmamrpmv2","10.30.16.81","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:31AM GMT+0200)","22 Apr 2026 07:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"130588308","","vmamrhtp2","10.30.16.51","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:44AM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"130588548","","vmamrstg1","10.30.16.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:13PM GMT+0200)","22 Apr 2026 09:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN]" +"130588628","","vmamrsxt3","10.30.16.62","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:39PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"130588736","","vmamrsxt2","10.30.16.61","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:27PM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"130588848","","vmamrrdt1","10.45.2.185","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:16PM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"130588872","","vmamrstg2","10.30.16.11","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:46PM GMT+0200)","22 Apr 2026 09:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN]" +"130588882","","vmamrsxt1","10.30.16.60","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:46PM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"130590027","","vdameassl1.sanef.groupe","10.43.255.45","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:24PM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,VRF_INCONNUE,Sextan,DEX,OS-LIN-SRV DYN]" +"130590138","","vmamrsxt4","10.30.16.63","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:51PM GMT+0200)","22 Apr 2026 05:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"130590699","","vrameaoct1.sanef.groupe","10.45.2.80","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:25AM GMT+0200)","22 Apr 2026 09:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,VRF_INCONNUE,OCTAN,DEX,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"130590884","","vrameased1.sanef.groupe","10.45.2.75","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:27PM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,VRF_INCONNUE,SED,DEX,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN]" +"131142756","","vmcmdb","10.30.11.126","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:18AM GMT+0200)","22 Apr 2026 06:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Trafic,VRF_INCONNUE,Obsolete,ITOP,DSI,TAG-SRVEXPOSEINDIRECT]" +"131262266","","lampadv1.serveur.est.sanef.fr","10.30.11.52","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.11","6.1.0.28","Inventory Scan Complete (21 Apr 2026 11:07PM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Production,Gestion commerciale,Sans,VRF_INCONNUE,Obsolete,ADV-U,DEX,log4j,OS-LIN-SRV DYN,BDD-POS DYN]" +"131262350","","lampcrm1.serveur.est.sanef.fr","10.30.11.166","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.11","6.1.0.28","Inventory Scan Complete (22 Apr 2026 01:01AM GMT+0200)","22 Apr 2026 07:01AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Production,Gestion commerciale,Sans,VRF_INCONNUE,Obsolete,ServersInCyberark,Cleo,DSI,OS-LIN-SRV DYN,BDD-POS DYN]" +"131265958","","vmxfb1.sanef.groupe","10.30.11.99","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:31AM GMT+0200)","22 Apr 2026 07:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Exploitation IT,VRF_INCONNUE,Obsolete,ServersInCyberark,XFB,DEX,log4j,OS-LIN-SRV DYN]" +"131267086","","vpadvaapp4.sanef.groupe","10.30.10.46","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:40PM GMT+0200)","22 Apr 2026 05:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Gestion commerciale,VRF_INCONNUE,Obsolete,ADV-U,DEX,BDD-POS DYN]" +"131269839","","vpaiibcen1","10.30.12.122","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:02PM GMT+0200)","22 Apr 2026 10:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,Centreon,DSI]" +"131269845","","lampwaz1.sanef.groupe","10.41.40.122","0:0:0:0:0:0:0:1","CentOS Linux 7.7.1908","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:01PM GMT+0200)","22 Apr 2026 06:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Waze,DSI,log4j,MID-NGINX DYN,BDD-ELA DYN]" +"131270067","","vpechatal1.sanef.groupe","10.30.10.20","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:25PM GMT+0200)","22 Apr 2026 06:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Exploitation IT,VRF_INCONNUE,Obsolete,TALEND,DSI,log4j,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"131270155","","lpsimbpfe1.sanef.groupe","10.30.11.35","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:19AM GMT+0200)","22 Apr 2026 06:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Exploitation IT,VRF_INCONNUE,Obsolete,Plateforme d'échange,DEX,log4j,OS-LIN-SRV DYN]" +"131270182","","vpaiiacbi1.sanef.groupe","10.30.12.124","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:59PM GMT+0200)","22 Apr 2026 06:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,ServersInCyberark,Centreon,DSI]" +"131270365","","vpaiiarda1.sanef.groupe","10.30.10.75","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:06AM GMT+0200)","22 Apr 2026 10:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_INCONNUE,Obsolete,ServersInCyberark,Rebond]" +"131270890","","vpaiiapol1","10.30.12.125","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:15PM GMT+0200)","22 Apr 2026 05:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,Centreon,DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"131273902","","lpaiigrid1.sanef.groupe","10.30.12.34","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:27AM GMT+0200)","22 Apr 2026 08:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Bases de Données,VRF_INCONNUE,Obsolete,ORACLE,DSI]" +"131273947","","vpaiiacen1","10.30.12.121","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:21AM GMT+0200)","22 Apr 2026 08:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,Centreon,DSI,log4j,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"131274982","","vpaiiamap1","10.30.12.123","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:07AM GMT+0200)","22 Apr 2026 06:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,ServersInCyberark,Centreon,DSI]" +"131275015","","vpaiiapol2","10.30.12.126","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:01AM GMT+0200)","22 Apr 2026 06:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,Centreon,DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"131275076","","vpaiiapol6","10.40.2.40","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:44PM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,Centreon,DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"131275095","","vpaiiapol7","192.168.2.40","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:30PM GMT+0200)","22 Apr 2026 06:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,Centreon,DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"131275232","","vpaiiapol4","10.30.12.128","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:08PM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,Centreon,DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"131275361","","vpaiiapol5","10.40.2.46","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:10PM GMT+0200)","22 Apr 2026 05:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,Centreon,DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"131396410","","vpsimaapi2.sanef.groupe","10.30.11.10","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:55AM GMT+0200)","22 Apr 2026 07:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_INCONNUE,Obsolete,FreeFlow,Flux Libre,BDD-ELA DYN]" +"131396522","","lpsimabkp1.sanef.groupe","10.30.10.143","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:45PM GMT+0200)","22 Apr 2026 06:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sécurité IT,VRF_INCONNUE,Obsolete,ServersInCyberark,TINA,DSI,BDD-POS DYN]" +"131396612","","vptraatpf1.sanef.groupe","192.168.40.10","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:06PM GMT+0200)","22 Apr 2026 06:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,DMZ,Sans,VRF_INCONNUE,Obsolete,ServersInCyberark,Temps de parcours,DEX,TAG-SRVEXPOSEINDIRECT]" +"131396766","","vptraatpf2.sanef.groupe","192.168.40.11","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:32AM GMT+0200)","22 Apr 2026 07:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,DMZ,Sans,VRF_INCONNUE,Obsolete,Temps de parcours,DEX,TAG-SRVEXPOSEINDIRECT]" +"131396898","","vpcrmacle1","10.30.10.15","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:42AM GMT+0200)","22 Apr 2026 07:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Communication,VRF_INCONNUE,Cleo,DSI,OS-LIN-SRV DYN]" +"131401680","","lampasu1.sanef.groupe","10.41.40.190","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:32AM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Exploitation,Sans,Obsolete,ServersInCyberark,ASUR,DSI,log4j,OS-LIN-SRV DYN]" +"131401795","","lamaprac1.sanef.groupe","10.41.40.50","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:26PM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,Sans,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN]" +"131401827","","lamaprac3.sanef.groupe","10.41.40.54","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:11AM GMT+0200)","22 Apr 2026 07:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,Sans,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN]" +"131403992","","lamaprac2.sanef.groupe","10.41.40.52","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:47PM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,Sans,VRF_TRAFIC_DC,Obsolete,log4j,OS-LIN-SRV DYN]" +"131404287","","vmampdif1.sanef.groupe","10.41.40.120","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:27PM GMT+0200)","22 Apr 2026 06:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,Sans,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"131405384","","vmzeus.sanef.groupe","192.168.230.23","0:0:0:0:0:0:0:1","CentOS 6.3","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:07PM GMT+0200)","22 Apr 2026 09:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,DMZ,Sans,VRF_INCONNUE,Obsolete,ServersInCyberark,Sextan,DEX,log4j,TAG-SRVEXPOSEINDIRECT]" +"131405505","","rmila150.sanef.groupe","10.30.11.42","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:06PM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Péage,Sans,VRF_INCONNUE,Obsolete,ServersInCyberark,Central péage,DEX,log4j,OS-LIN-SRV DYN]" +"131405535","","vastapp1.sanef.groupe","10.30.10.28","0:0:0:0:0:0:0:1","CentOS 6.5","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:24AM GMT+0200)","22 Apr 2026 06:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Medium,Production,Péage,Moyenne,VRF_INCONNUE,Obsolete,ServersInCyberark,ADV-U,DEX,log4j,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"131405556","","vmampdif2.sanef.groupe","10.41.40.121","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:48PM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,Sans,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"131405746","","vmntp1.sanef.groupe","10.100.1.200","0:0:0:0:0:0:0:1","CentOS 6.4","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:32AM GMT+0200)","22 Apr 2026 07:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_INCONNUE,Obsolete,NTP,DSI]" +"131405762","","vmquorum1.sanef.groupe","10.102.2.11","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:07AM GMT+0200)","22 Apr 2026 06:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_INCONNUE,Obsolete,Sextan,DEX,OS-LIN-SRV DYN]" +"131405805","","vsapbdd1.sanef.groupe","10.30.10.139","0:0:0:0:0:0:0:1","CentOS 6.5","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:53AM GMT+0200)","22 Apr 2026 07:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Finances Comptabilité / Consolidation,VRF_INCONNUE,Obsolete,SAP,DFIN,log4j,BDD-POS DYN]" +"131406323","","vrracquo1","10.102.2.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:16AM GMT+0200)","22 Apr 2026 06:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_INCONNUE,Obsolete,Quorum,OS-LIN-SRV DYN]" +"131406665","","vpexparep1.sanef.groupe","10.41.40.19","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:23PM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_TRAFIC_DC,eReport,DEX,OS-LIN-SRV DYN]" +"131406886","","vpexpaxfb1.sanef.groupe","10.42.16.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:20AM GMT+0200)","22 Apr 2026 06:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_ECHANGE_DC,XFB,DEX,OS-LIN-SRV DYN]" +"131407949","","vpaiiapol9","10.30.12.129","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:26PM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,Centreon,DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"134892597","","PCB15569.sanef.groupe","10.100.39.57","fe80:0:0:0:9a5a:b651:1d37:da86","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","VM Manifest Downloaded (01 Apr 2026 07:02AM GMT+0200)","01 Apr 2026 07:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"137331581","","vpairatom1.sanef.groupe","10.42.40.135","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:14PM GMT+0200)","22 Apr 2026 09:59AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_AIRES_DC,VISIONAIRE,DSG,OS-LIN-SRV DYN]" +"137331600","","vpairahtp1.sanef.groupe","10.42.40.136","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:33PM GMT+0200)","22 Apr 2026 10:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_AIRES_DC,VISIONAIRE,DSG,OS-LIN-SRV DYN]" +"137339569","","vptraagas1","10.41.40.150","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:48PM GMT+0200)","22 Apr 2026 09:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Exploitation,VRF_TRAFIC_DC,Obsolete,Gaspar,DEX,OS-LIN-SRV DYN]" +"137346917","","vpexpbdech1.sanef.groupe","10.41.40.155","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:11AM GMT+0200)","22 Apr 2026 06:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Patrimoine,VRF_TRAFIC_DC,Obsolete,ServersInCyberark,DECHETS,DEX,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,BDD-POS DYN]" +"137347865","","vppeaasip1.sanef.groupe","10.41.20.35","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:40PM GMT+0200)","22 Apr 2026 06:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_PEAGE_DC,Obsolete,SSIP,DEX,MID-NGINX DYN,BDD-POS DYN]" +"137349499","","vppeabbst1.sanef.groupe","10.41.20.36","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:28AM GMT+0200)","22 Apr 2026 07:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_PEAGE_DC,Obsolete,ServersInCyberark,BOOST,DSI,BDD-ELA DYN]" +"137349545","","vairtom1.sanef.groupe","10.42.40.134","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.8","6.1.0.28","Inventory Scan Complete (14 Nov 2025 05:39AM GMT+0200)","14 Nov 2025 05:39AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Production,Aires,VRF_AIRES_DC,Obsolete,ServersInCyberark,Satisf'aire,DFIN,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"138279751","","vrtrabmas2","10.43.255.14","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:06AM GMT+0200)","22 Apr 2026 06:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,Masterparc,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"138992971","","vpdecasas6","10.30.11.154","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:01AM GMT+0200)","22 Apr 2026 07:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Finances Comptabilité / Consolidation,VRF_INCONNUE,Obsolete,SAS,DSI,OS-LIN-SRV DYN]" +"138993195","","PCB17877.sanef.groupe","10.255.1.163","fe80:0:0:0:5f5c:56dd:c787:a247","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:01AM GMT+0200)","22 Apr 2026 09:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"138994660","","RMILRAU1","10.41.40.201","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.3","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:53PM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Exploitation,VRF_INCONNUE,Obsolete,ASUR,DSI,log4j,OS-LIN-SRV DYN]" +"138994697","","RSMIRAU1","10.41.40.202","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.3","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:39PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Exploitation,VRF_INCONNUE,Obsolete,ServersInCyberark,ASUR,DSI,OS-LIN-SRV DYN]" +"139144075","","vadvpapp3","10.30.11.59","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.6","6.1.0.28","Inventory Scan Complete (14 Nov 2025 05:42AM GMT+0200)","14 Nov 2025 05:42AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Production,Gestion commerciale,VRF_INCONNUE,Obsolete,ServersInCyberark,ADV-U,DEX,log4j,OS-LIN-SRV DYN]" +"139155574","","vampsychtp1.sanef.groupe","10.41.40.102","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.5","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:28PM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Patrimoine,VRF_TRAFIC_DC,Obsolete,SIG,DEX,OS-LIN-SRV DYN]" +"139156912","","vmampgtc2","10.41.40.86","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:03AM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"139156941","","vmamphtp2.sanef.groupe","10.41.40.36","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:49PM GMT+0200)","22 Apr 2026 09:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN]" +"139156976","","vmamprdt1","10.41.40.70","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:00PM GMT+0200)","22 Apr 2026 10:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"139157052","","vmamptd1.sanef.groupe","10.41.40.165","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:13AM GMT+0200)","22 Apr 2026 09:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Traffic,DEX,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN]" +"139157311","","vmamprdt2","10.41.40.71","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:19PM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"139157827","","vmampmet1","10.41.40.77","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:19PM GMT+0200)","22 Apr 2026 08:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"139157881","","vmampgtc1","10.41.40.85","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:39PM GMT+0200)","22 Apr 2026 06:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"139157910","","vmamphtp1.sanef.groupe","10.41.40.35","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:19PM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"139157943","","vmampmet2","10.41.40.78","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:31PM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"139158019","","vmampsxt1","10.41.40.30","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:19PM GMT+0200)","22 Apr 2026 05:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"139158024","","vmampsxt2","10.41.40.31","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:28PM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"139158036","","vmampsxt3","10.41.40.32","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:59PM GMT+0200)","22 Apr 2026 05:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"139158077","","vmampstg1","10.41.40.45","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:22AM GMT+0200)","22 Apr 2026 07:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN]" +"139158084","","vmampstg2","10.41.40.46","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:43AM GMT+0200)","22 Apr 2026 07:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN]" +"139158116","","vmampsxt4","10.41.40.33","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:38PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"139158140","","asur-rau1","10.41.40.196","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:23AM GMT+0200)","22 Apr 2026 07:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Obsolete,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN]" +"139276377","","vpdecasas7.sanef.groupe","10.30.11.155","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:51PM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Finances Comptabilité / Consolidation,VRF_INCONNUE,Obsolete,ServersInCyberark,SAS,DSI,OS-LIN-SRV DYN]" +"139375864","","spasuagsm4","10.41.40.212","0:0:0:0:0:0:0:1","CentOS Linux 7.2.1511","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:17AM GMT+0200)","22 Apr 2026 06:54AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Exploitation,VRF_INCONNUE,Obsolete,ASUR,DSI,MID-NGINX DYN,BDD-POS DYN]" +"140091089","","vpbckmadm1","192.168.109.68","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:14AM GMT+0200)","22 Apr 2026 08:14AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,PCI Bunker EMV,Gestion SAUVEGARDE,OS-WIN-SRV DYN]" +"141340202","","vpbckaadm1","10.44.2.68","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:02AM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,Gestion SAUVEGARDE,OS-WIN-SRV DYN]" +"141441506","","vpbckacse2","10.42.16.70","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:53AM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_BACKUP_DC,Gestion SAUVEGARDE,OS-WIN-SRV DYN,BDD-SQL DYN]" +"141870951","","vpbckacse1","10.42.16.69","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:57AM GMT+0200)","22 Apr 2026 08:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_BACKUP_DC,Gestion SAUVEGARDE,OS-WIN-SRV DYN,BDD-SQL DYN]" +"143622225","","vpemvaldap1.sanef.groupe","192.168.100.127","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:49PM GMT+0200)","22 Apr 2026 10:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Linux Server,VRF_INCONNUE,Obsolete,PCI Bunker EMV,EMV,DEX,BDD-POS DYN]" +"143622461","","vpemvaadm1.sanef.groupe","192.168.100.120","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:59AM GMT+0200)","22 Apr 2026 07:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Linux Server,VRF_INCONNUE,EMV,DEX,OS-LIN-SRV DYN]" +"143622556","","vpemvantp1.sanef.groupe","192.168.100.132","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:21PM GMT+0200)","22 Apr 2026 09:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Linux Server,VRF_INCONNUE,Obsolete,EMV,DEX,BDD-POS DYN]" +"143625000","","vpemvapol1","192.168.100.210","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:26AM GMT+0200)","22 Apr 2026 07:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Obsolete,Centreon,PCI Bunker EMV,DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"143625294","","vpemvaftp1.sanef.groupe","192.168.100.109","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:38PM GMT+0200)","22 Apr 2026 06:14AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Linux Server,VRF_INCONNUE,EMV,DEX,OS-LIN-SRV DYN]" +"143625406","","vpemvantp2.sanef.groupe","192.168.100.133","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:15PM GMT+0200)","22 Apr 2026 05:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Linux Server,VRF_INCONNUE,Obsolete,EMV,DEX,BDD-POS DYN]" +"143625427","","vpemvaldap2.sanef.groupe","192.168.100.128","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:18AM GMT+0200)","22 Apr 2026 09:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Linux Server,VRF_INCONNUE,Obsolete,EMV,DEX,BDD-POS DYN]" +"143793491","","vrintbweb2.sanef.groupe","10.45.1.196","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:40PM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Gestion institutionnel,OS-LIN-SRV DYN,BDD-POS DYN]" +"148429963","","vppatbcao1.sanef.groupe","10.41.50.12","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:30AM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Administration_MS,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"148436350","","vrexpbtex1","10.45.2.226","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:04PM GMT+0200)","22 Apr 2026 05:40AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Transports Exceptionnels,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,BDD-POS DYN]" +"149751255","","vptraatai1.sanef.groupe","10.41.60.42","fe80:0:0:0:2177:52a7:2303:7a47","Microsoft Windows Server 2016 Standard 10.0.14393 64-bit N/A Build 14393 UBR 8868","6.2.5.4","Manifest Downloaded (16 Apr 2026 11:50PM GMT+0200)","22 Apr 2026 07:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_BURO,Enregistrement_COM,DEX,OS-WIN-SRV DYN]" +"149877032","","vrintaels1.sanef.groupe","10.45.1.197","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:50AM GMT+0200)","22 Apr 2026 07:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Gestion institutionnel,OS-LIN-SRV DYN,BDD-ELA DYN]" +"150015500","","PCB17214.sanef.groupe","10.4.31.68","fe80:0:0:0:83bf:c53c:a206:f14d","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:18AM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"150933985","","VPAIIAVCL2.sanef.groupe","10.41.11.21","fe80:0:0:0:40d9:5a2e:a5a5:cc32","Microsoft Windows 10 Entreprise 10.0.17763 64 bits N/A Build 17763 UBR 1879","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:57AM GMT+0200)","22 Apr 2026 09:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Windows Server,VRF_INCONNUE,Obsolete,NVR,DEX]" +"151063467","","PCB16012.sanef.groupe","10.255.2.216","fe80:0:0:0:2e8:3b5f:7eaa:2101","Microsoft Windows 10 Enterprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:03PM GMT+0200)","22 Apr 2026 09:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"151113330","","PCM15848.sanef.groupe","10.100.40.210","fe80:0:0:0:fb5a:da77:7379:ad04","Microsoft Windows 10 Enterprise 10.0.19044 64 bits N/A Build 19044 UBR 2604","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:55AM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"151119782","","PCB16046.sanef.groupe","10.255.4.237","fe80:0:0:0:105e:e86b:5e8c:3d80","Microsoft Windows 10 Enterprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:57AM GMT+0200)","22 Apr 2026 09:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"151127421","","PCB13426.sanef.groupe","10.200.40.22","fe80:0:0:0:374e:fb8f:d7f2:306f","Microsoft Windows 10 Enterprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:13PM GMT+0200)","22 Apr 2026 08:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,VRF_INCONNUE]" +"151763445","","PCB17903.sanef.groupe","10.255.3.182","fe80:0:0:0:f894:767d:4cfa:4536","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","Manifest Downloaded (31 Mar 2026 09:33AM GMT+0200)","31 Mar 2026 09:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"152233312","","vpiadaadm1.sanef-int.adds","10.44.2.164","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:37AM GMT+0200)","22 Apr 2026 08:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,AD,DSI,OS-WIN-SRV DYN]" +"152234120","","vpecmbsql1.sanef-int.adds","10.44.2.37","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:57AM GMT+0200)","22 Apr 2026 08:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,SCCM,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"152243081","","vpiadaada1.sanef-int.adds","10.44.2.165","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:52PM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,AD,DSI,OS-WIN-SRV DYN]" +"152255312","","vpsasapil1.sanef.groupe","10.41.32.20","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:58PM GMT+0200)","22 Apr 2026 10:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_BURO_DC,SAS,DSI,OS-LIN-SRV DYN]" +"152272093","","vrintaprx2.sanef.groupe","192.168.20.4","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:21PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Gestion institutionnel,OS-LIN-SRV DYN]" +"152278525","","vppeaaadm1.sanef-int.adds","10.44.6.36","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:47PM GMT+0200)","22 Apr 2026 07:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Péage,VRF_INCONNUE,SVP,DEX,OS-WIN-SRV DYN]" +"153092401","","vmsym2","10.30.11.239","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 7678","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:59AM GMT+0200)","22 Apr 2026 07:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,Symantec,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"154344319","","vppatbcae1.sanef.groupe","10.41.50.10","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:15AM GMT+0200)","22 Apr 2026 08:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,Babylon,DRH,OS-WIN-SRV DYN]" +"154878292","","nac.sanef.fr","10.44.2.100","0:0:0:0:0:0:0:1","Unknown","7.3.0.40","Manifest Downloaded (06 Apr 2026 11:21PM GMT+0200)","06 Apr 2026 11:21PM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server]" +"155037339","","ls-saverne","10.41.2.112","fe80:0:0:0:e3f:f085:f701:2a38","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:02AM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"156071801","","vpdsiaclo1.sanef.groupe","192.168.31.19","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:12AM GMT+0200)","22 Apr 2026 06:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,Owncloud,OS-LIN-SRV DYN,MID-NGINX DYN]" +"156095898","","vpdsiasat1.sanef.groupe","192.168.18.20","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:37PM GMT+0200)","22 Apr 2026 06:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,VRF_INCONNUE,Satellite,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"156225794","","vppintbweb1.sanef.groupe","10.46.39.16","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:38PM GMT+0200)","22 Apr 2026 08:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_BURO_DC,Gestion institutionnel,OS-LIN-SRV DYN,BDD-POS DYN]" +"156227469","","vpagtatse1.sanef.groupe","10.46.33.23","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:36AM GMT+0200)","22 Apr 2026 06:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_BURO_DC,AgileTime,DRH,OS-WIN-SRV DYN]" +"156298438","","vpdsiaadm1.sanef-int.adds","10.44.3.132","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:07PM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,VRF_INCONNUE,AD,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"156914176","","vpgmoaprx1.sanef.groupe","192.168.40.51","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:01AM GMT+0200)","22 Apr 2026 07:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,COSWIN,DSI,OS-LIN-SRV DYN]" +"157615760","","vppintaels1.sanef.groupe","10.46.39.15","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:24PM GMT+0200)","22 Apr 2026 10:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Gestion institutionnel,OS-LIN-SRV DYN,BDD-ELA DYN]" +"157732257","","vppintanfs1.sanef.groupe","192.168.20.22","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:33AM GMT+0200)","22 Apr 2026 07:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,VRF_INCONNUE,Gestion institutionnel,OS-LIN-SRV DYN]" +"157828168","","vppintaweb1.sanef.groupe","192.168.20.20","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:40PM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Gestion institutionnel,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"158184886","","vppintaprx1.sanef.groupe","192.168.20.19","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:52AM GMT+0200)","22 Apr 2026 07:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,Gestion institutionnel,OS-LIN-SRV DYN]" +"158198255","","vpdsiaumds1","192.168.18.36","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:01AM GMT+0200)","22 Apr 2026 10:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,VCENTER,DSI,OS-LIN-SRV DYN]" +"159244834","","vpsasamic1.sanef.groupe","10.41.32.5","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:24AM GMT+0200)","22 Apr 2026 10:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_BURO_DC,SAS,DSI,log4j,OS-LIN-SRV DYN,BDD-POS DYN]" +"159249333","","vpsasactr1.sanef.groupe","10.41.32.6","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:49PM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_BURO_DC,SAS,DSI,OS-LIN-SRV DYN,BDD-POS DYN]" +"159252140","","vpsasawrk1.sanef.groupe","10.41.32.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:22PM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_BURO_DC,SAS,DSI,OS-LIN-SRV DYN,BDD-POS DYN]" +"159378661","","VRNMSATSE1","10.43.253.5","fe80:0:0:0:ce5d:60d3:7bb4:3870","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:33AM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,VRF_INCONNUE,U2000,DSI,OS-WIN-SRV DYN]" +"159557652","","vpintaweb2.sanef.groupe","192.168.20.36","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:10PM GMT+0200)","22 Apr 2026 05:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Gestion institutionnel,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"159569521","","vpintaweb3.sanef.groupe","192.168.20.37","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:44AM GMT+0200)","22 Apr 2026 07:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Gestion institutionnel,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"159570303","","vpintanfs1.sanef.groupe","192.168.20.38","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:01PM GMT+0200)","22 Apr 2026 09:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,Gestion institutionnel,OS-LIN-SRV DYN]" +"159570896","","vpintaels1.sanef.groupe","10.46.33.15","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:27PM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_BURO_DC,Gestion institutionnel,OS-LIN-SRV DYN,BDD-ELA DYN]" +"159693566","","vpvpnarad1.sanef.groupe","192.168.19.6","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.3","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:16AM GMT+0200)","22 Apr 2026 06:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,VRF_INCONNUE,GEMALTO,VPN,Radius,DSI,OS-LIN-SRV DYN,MID-NGINX DYN]" +"160009590","","PVP19957.sanef-int.adds","10.192.16.47","fe80:0:0:0:3694:9d30:f8ac:b889","Microsoft Windows 10 Entreprise LTSC 10.0.17763 64 bits N/A Build 17763 UBR 7678","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:39PM GMT+0200)","22 Apr 2026 10:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"160093994","","vraiibpgs4","10.45.1.165","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:16AM GMT+0200)","22 Apr 2026 06:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,BDD,DSI,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN,BDD-ELA DYN]" +"160118702","","vrsupacen1.sanef.groupe","10.45.0.195","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:54PM GMT+0200)","22 Apr 2026 06:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"160222097","","vrsupbmbi1.sanef.groupe","10.45.0.197","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:06AM GMT+0200)","22 Apr 2026 06:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Recette,flux_libre,Centreon,DSI,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"160222343","","vrsupbcen1.sanef.groupe","10.45.0.196","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:29PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Centreon,DSI,Flux Libre,OS-LIN-SRV DYN]" +"160222392","","vrsupbmap1.sanef.groupe","10.45.0.198","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:45PM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Centreon,DSI,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"160244154","","vpameaoct1","10.41.40.130","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:04AM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OCTAN,DEX,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"160247428","","vpameaoct2","10.41.40.131","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:11PM GMT+0200)","22 Apr 2026 05:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OCTAN,DEX,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"160254541","","vpameaoct3","10.41.40.132","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:41AM GMT+0200)","22 Apr 2026 07:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OCTAN,DEX,OS-LIN-SRV DYN]" +"160500506","","vppintaweb2.sanef.groupe","192.168.20.21","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:13AM GMT+0200)","22 Apr 2026 07:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion institutionnel,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"160941710","","lamppea2","10.41.20.11","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.11","6.1.0.28","VM Manifest Downloaded (14 Nov 2025 06:03AM GMT+0200)","14 Nov 2025 06:03AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Obsolete,Central péage,DEX,log4j,OS-LIN-SRV DYN,BDD-POS DYN]" +"160946714","","lampoct1.sanef.groupe","10.42.40.140","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.11","6.1.0.28","Inventory Scan Complete (14 Nov 2025 06:06AM GMT+0200)","14 Nov 2025 06:06AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Obsolete,Satisf'aire,DFIN,log4j,OS-LIN-SRV DYN,BDD-POS DYN]" +"161779682","","vraiibpgs5","10.45.1.166","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:34PM GMT+0200)","22 Apr 2026 06:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,BDD,DSI,OS-LIN-SRV DYN,MID-NGINX DYN]" +"162039853","","vpsasacpt1.sanef.groupe","10.41.32.7","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:18AM GMT+0200)","22 Apr 2026 06:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,SAS,DSI,OS-LIN-SRV DYN]" +"162519244","","RSMIWDC1.sanef.groupe","10.30.22.30","fe80:0:0:0:4c9d:c820:8775:1571","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:25AM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,AD,DSI,OS-WIN-SRV DYN]" +"162617883","","VRBURXBAN8.sanef.groupe","10.30.4.8","fe80:0:0:0:ff5d:1c2d:9620:4b99","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:32AM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"162635575","","PCB17233.sanef.groupe","10.205.0.117","fe80:0:0:0:1f42:31c:44d8:17a3","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","VM Manifest Downloaded (03 Apr 2026 09:42PM GMT+0200)","03 Apr 2026 10:36PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"163770271","","vptraatai2.sanef.groupe","10.41.60.52","fe80:0:0:0:457:ab94:ec4a:bd13","Microsoft Windows Server 2016 Standard 10.0.14393 64-bit N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:04AM GMT+0200)","22 Apr 2026 10:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Outils transverses,Enregistrement_COM,DEX,OS-WIN-SRV DYN]" +"163883347","","vpppeaanvr1.sanef.groupe","10.41.79.50","fe80:0:0:0:ea49:724c:109e:bc32","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8146","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:58PM GMT+0200)","22 Apr 2026 09:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"163897942","","vmcmdb2","10.30.11.108","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:44PM GMT+0200)","22 Apr 2026 06:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,ITOP,DSI,TAG-SRVEXPOSEINDIRECT,BDD-POS DYN]" +"164432571","","PCM18235.sanef.groupe","10.4.210.20","fe80:0:0:0:25e8:fa35:7081:24d5","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:32PM GMT+0200)","22 Apr 2026 09:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"165442546","","vppataels1","10.42.40.14","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:41PM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,ISIS,DFIN,OS-LIN-SRV DYN,BDD-ELA DYN]" +"165477473","","vrdsiawsus1.recette.adds","10.45.0.163","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:01AM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","VM ","[Cloud Agent,Recette,WSUS,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"165484501","","vriadawdc2.recette.adds","10.45.0.132","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.0.397","VM Manifest Downloaded (18 Mar 2026 04:59AM GMT+0200)","18 Mar 2026 12:04PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,AD,DSI,OS-WIN-SRV DYN]" +"165485951","","vriadapki3.recette.adds","10.45.0.137","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:34AM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,Gestion_PKI,DSI,OS-WIN-SRV DYN]" +"165487722","","vriadawdc1.recette.adds","10.45.0.131","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:04PM GMT+0200)","22 Apr 2026 07:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,AD,DSI,OS-WIN-SRV DYN]" +"165493476","","vriadapki2.recette.adds","10.45.0.136","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:18AM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,Gestion_PKI,DSI,OS-WIN-SRV DYN]" +"165493503","","vrdsiaadm1.recette.adds","10.45.7.67","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:58AM GMT+0200)","22 Apr 2026 07:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,AD,DSI,OS-WIN-SRV DYN]" +"165493903","","vrdsiatse1.recette.adds","10.45.7.39","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:20PM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,AgileTime,DRH,OS-WIN-SRV DYN]" +"165610538","","vpameatra1.sanef.groupe","192.168.40.20","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:51PM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,Sextan,DEX,OS-LIN-SRV DYN]" +"165638728","","vrvidavsc1.recette.adds","10.45.7.99","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4529","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:14PM GMT+0200)","22 Apr 2026 07:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,NVR,DEX,OS-WIN-SRV DYN]" +"165730508","","vrvidavsc2.recette.adds","10.45.7.100","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4529","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:38AM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Recette,NVR,DEX,OS-WIN-SRV DYN]" +"165730592","","vrvidanvr1.recette.adds","10.45.7.101","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4529","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:47PM GMT+0200)","22 Apr 2026 08:56AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Recette,NVR,DEX,OS-WIN-SRV DYN]" +"167744458","","vpgesaquo1.sanef.groupe","10.100.16.6","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:49PM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Quorum,3PAR,DSI,OS-LIN-SRV DYN]" +"167744583","","vppciaquo1.sanef.groupe","10.100.16.7","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:22PM GMT+0200)","22 Apr 2026 05:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,3PAR,DSI,OS-LIN-SRV DYN]" +"167745827","","vpmetaquo1.sanef.groupe","10.100.16.5","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:44PM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,3PAR,DSI,OS-LIN-SRV DYN]" +"168303463","","PCB15685.sanef.groupe","10.205.0.49","fe80:0:0:0:c24c:65b7:75b0:1da4","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:29PM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"168848537","","vpaiiapol3","10.30.12.127","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:35PM GMT+0200)","22 Apr 2026 06:14AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,Centreon,DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"169599230","","vrpeaabst1","192.168.31.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:06PM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,DMZ,BOOST,DSI,OS-LIN-SRV DYN,MID-NGINX DYN]" +"169723549","","vpdsiagit1.sanef.groupe","10.30.11.216","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:20PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,CVS,DSI,OS-LIN-SRV DYN,MID-NGINX DYN]" +"170566947","","GTC-CLIENT1.sanef.groupe","10.41.19.50","","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:54AM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"171281499","","PCB18394.sanef.groupe","10.205.0.206","fe80:0:0:0:6917:8862:79bb:f23d","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:27AM GMT+0200)","17 Apr 2026 02:19PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"171734767","","lragtbpla1.sanef.groupe","10.45.1.227","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:40PM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,AgileTime,DRH,OS-LIN-SRV DYN]" +"171882719","","vpdsiatse2.sanef.groupe","10.44.2.44","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:13AM GMT+0200)","22 Apr 2026 09:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Rebond,OS-WIN-SRV DYN]" +"172608682","","vrecmadpr1.recette.adds","10.45.7.38","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4529","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:45AM GMT+0200)","22 Apr 2026 06:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,SCCM,DSI,OS-WIN-SRV DYN]" +"172623318","","vrecmbsql1.recette.adds","10.45.7.37","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4529","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:26PM GMT+0200)","22 Apr 2026 05:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,SCCM,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"173072883","","vvbotjump1.recette.adds","10.45.8.67","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:38PM GMT+0200)","22 Apr 2026 05:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN,BDD-ELA DYN]" +"173073664","","vdbocjump1.recette.adds","10.45.8.3","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:58PM GMT+0200)","22 Apr 2026 10:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN]" +"173079234","","vdbocs4ci1.sanef-rec.fr","10.45.6.35","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:37PM GMT+0200)","22 Apr 2026 06:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"173079542","","vdbocmedi1.sanef-rec.fr","10.45.6.37","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:52PM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"173083621","","vdbocharg1.sanef-rec.fr","10.45.6.36","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:07PM GMT+0200)","22 Apr 2026 08:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"173084373","","vdbocbsap1.sanef-rec.fr","10.45.6.39","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:54PM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"173084420","","vdbocsman1.sanef-rec.fr","10.45.6.38","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:41AM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"173085471","","vvboojump1.recette.adds","10.45.8.35","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:38PM GMT+0200)","22 Apr 2026 07:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN]" +"173355077","","vvboomocr1.sanef-rec.fr","10.45.6.72","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:55PM GMT+0200)","22 Apr 2026 10:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"173355626","","vvboobsql1.sanef-rec.fr","10.45.6.68","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:21PM GMT+0200)","22 Apr 2026 09:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"173355718","","vvbooosea1.sanef-rec.fr","10.45.6.69","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (20 Apr 2026 07:19PM GMT+0200)","20 Apr 2026 07:19PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"173355805","","vvbooaboo1.sanef-rec.fr","10.45.6.71","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:45PM GMT+0200)","22 Apr 2026 06:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN]" +"173357493","","vvbooaori1.sanef-rec.fr","10.45.6.79","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:54PM GMT+0200)","22 Apr 2026 10:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"174128300","","vpburafax1.sanef.groupe","10.41.60.150","fe80:0:0:0:a063:de4b:d923:534f","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:57PM GMT+0200)","22 Apr 2026 07:42AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,XMedius,DSI,OS-WIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"174236004","","sppeaanvr20","10.41.7.119","fe80:0:0:0:e171:d14e:2d1b:56e4","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:59PM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"174237279","","sppeaanvr18","10.41.7.117","fe80:0:0:0:d6b2:5fcc:f9cb:b9d9","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:35AM GMT+0200)","22 Apr 2026 06:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"174237326","","sppeaanvr19","10.41.7.118","fe80:0:0:0:4773:58e8:5d32:1b75","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:34AM GMT+0200)","22 Apr 2026 08:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,OS-WIN-SRV DYN]" +"174237368","","sppeaanvr21","10.41.7.120","fe80:0:0:0:f22a:5958:7f21:7727","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:16PM GMT+0200)","22 Apr 2026 05:54AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"174238444","","sppeaanvr22","10.41.7.121","fe80:0:0:0:2083:cdc6:4167:4de0","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:16AM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"174238482","","sppeaanvr24","10.41.7.123","fe80:0:0:0:58d4:4d8e:9dbe:e699","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:48PM GMT+0200)","22 Apr 2026 10:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"175025285","","vrairahtp1.sanef.groupe","10.43.255.19","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:39PM GMT+0200)","22 Apr 2026 06:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Satisf'aire,DFIN,OS-LIN-SRV DYN]" +"175043726","","vpaiiacol1.sanef.groupe","10.30.11.130","0:0:0:0:0:0:0:1","CentOS Linux 8.2.2004","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:54PM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Obsolete,Collecte,DSI]" +"175112254","","vvbotbsql1.recette.adds","10.45.6.131","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:48AM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Server (Linux/Windows)","","VM ","[Cloud Agent,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"175136490","","vvbotrssm1.recette.adds","192.168.21.164","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:49AM GMT+0200)","22 Apr 2026 08:34AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN]" +"175412357","","vvbocs4ci2.sanef-rec.fr","10.45.6.7","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:56PM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175414997","","vvbocmedi2.sanef-rec.fr","10.45.6.9","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:21AM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175415700","","vvbocharg2.sanef-rec.fr","10.45.6.8","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:47PM GMT+0200)","22 Apr 2026 10:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"175416002","","vvbocs4as2.sanef-rec.fr","10.45.6.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:10AM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175420304","","vvbotapps3.sanef-rec.fr","10.45.6.152","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:37PM GMT+0200)","22 Apr 2026 06:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175460796","","vvbotcach2.sanef-rec.fr","10.45.6.154","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:18PM GMT+0200)","22 Apr 2026 09:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175461662","","vvbotreco2.sanef-rec.fr","10.45.6.155","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:45PM GMT+0200)","22 Apr 2026 10:14AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175464703","","vvbotarmq2.sanef-rec.fr","10.45.6.156","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:45AM GMT+0200)","22 Apr 2026 09:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175464748","","vvbotatsp2.sanef-rec.fr","10.45.6.158","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:03AM GMT+0200)","22 Apr 2026 07:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175464776","","vvbotbtsd2.sanef-rec.fr","10.45.6.159","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:37AM GMT+0200)","22 Apr 2026 07:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175464814","","vvbotatst3.sanef-rec.fr","10.45.6.161","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:49AM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175564471","","vvbotatvv2.sanef-rec.fr","10.45.6.167","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:05AM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175565773","","vvbotrtms2.sanef-rec.fr","10.45.6.165","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:53AM GMT+0200)","22 Apr 2026 07:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"175568112","","vvbotrssc2.sanef-rec.fr","10.45.6.164","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:29AM GMT+0200)","22 Apr 2026 07:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"175919695","","vpaiiapol10","10.30.12.130","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:53PM GMT+0200)","22 Apr 2026 10:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,Centreon,DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"175944074","","vvbotapps1.sanef-rec.fr","10.45.6.132","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:40PM GMT+0200)","22 Apr 2026 06:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175946491","","vvbotcach1.sanef-rec.fr","10.45.6.134","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:22AM GMT+0200)","22 Apr 2026 06:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175948080","","vvbotreco1.sanef-rec.fr","10.45.6.135","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:40PM GMT+0200)","22 Apr 2026 06:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175948082","","vvbotarmq1.sanef-rec.fr","10.45.6.136","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:38AM GMT+0200)","22 Apr 2026 07:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175948102","","vppatbsip1.sanef.groupe","10.42.40.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:55PM GMT+0200)","22 Apr 2026 10:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,ISIS,DFIN,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"175948571","","vvbotbtsd1.sanef-rec.fr","10.45.6.139","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:41AM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175948572","","vvbotatsp1.sanef-rec.fr","10.45.6.138","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:23PM GMT+0200)","22 Apr 2026 05:59AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175949260","","vvbotarep1.sanef-rec.fr","10.45.6.140","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:52PM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175949562","","vvbocs4as1.sanef-rec.fr","10.45.6.6","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:48AM GMT+0200)","22 Apr 2026 07:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175950116","","vvbocmedi1.sanef-rec.fr","10.45.6.5","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:36PM GMT+0200)","22 Apr 2026 06:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175950695","","vvbocs4ci1.sanef-rec.fr","10.45.6.3","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:34AM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"175950696","","vvbocharg1.sanef-rec.fr","10.45.6.4","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:50PM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"175951171","","vvbotrssm2","10.45.6.163","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:04PM GMT+0200)","22 Apr 2026 06:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN]" +"176095383","","vvbooaori2.sanef-rec.fr","10.45.6.80","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:01AM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"176096529","","vvboobsql2.sanef-rec.fr","10.45.6.74","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:13PM GMT+0200)","22 Apr 2026 09:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"176096530","","vvboomocr2.sanef-rec.fr","10.45.6.78","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:59AM GMT+0200)","22 Apr 2026 07:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"176097843","","vvbooaboo2.sanef-rec.fr","10.45.6.77","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:48AM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN]" +"176109783","","MTR-D1DSNT3","10.2.32.201","fe80:0:0:0:c5a2:db25:7e4:4d26","Microsoft Windows 10 IoT Enterprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:05PM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"176257351","","PCB20674.sanef.groupe","10.205.0.87","fe80:0:0:0:b4a1:b642:2c3:534e","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:56PM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"176287347","","MTR-HH775R3","10.89.32.201","fe80:0:0:0:7ede:ccfe:24d6:599d","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:55PM GMT+0200)","22 Apr 2026 07:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"176394880","","vpdaibctc1","10.41.70.10","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:51AM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DAI,DEX,OS-WIN-SRV DYN,BDD-POS DYN]" +"176395364","","vpdaibana1","10.41.70.20","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:51PM GMT+0200)","22 Apr 2026 07:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DAI,DEX,OS-WIN-SRV DYN,BDD-POS DYN]" +"176398964","","vpdaibana2","10.41.70.21","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:09AM GMT+0200)","22 Apr 2026 09:44AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DAI,DEX,OS-WIN-SRV DYN,BDD-POS DYN]" +"176398970","","vpdaibana4","10.41.70.23","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:35PM GMT+0200)","22 Apr 2026 06:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DAI,DEX,OS-WIN-SRV DYN,BDD-POS DYN]" +"176399068","","vpdaibana3","10.41.70.22","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:06PM GMT+0200)","22 Apr 2026 06:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DAI,DEX,OS-WIN-SRV DYN,BDD-POS DYN]" +"176400087","","vpdaibana5","10.41.70.24","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:59AM GMT+0200)","22 Apr 2026 09:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DAI,DEX,OS-WIN-SRV DYN,BDD-POS DYN]" +"176400096","","vpdaibana6","10.41.70.25","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:01AM GMT+0200)","22 Apr 2026 08:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DAI,DEX,OS-WIN-SRV DYN,BDD-POS DYN]" +"176407089","","vvbotbsql2.recette.adds","10.45.6.151","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:24AM GMT+0200)","22 Apr 2026 09:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"176428756","","vrdsiakms1.recette.adds","10.45.7.35","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4171","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:37PM GMT+0200)","22 Apr 2026 06:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,AD,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"176556834","","PCB18638.sanef.groupe","10.255.4.183","fe80:0:0:0:3dce:b3ac:c372:e029","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","Manifest Downloaded (30 Mar 2026 02:23PM GMT+0200)","30 Mar 2026 02:23PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"176569811","","PCB18078.sanef.groupe","10.205.0.62","fe80:0:0:0:de56:8a4b:74dc:5812","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:34AM GMT+0200)","21 Apr 2026 09:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"176933488","","PCB20673.sanef.groupe","10.205.0.38","2a01:e0a:f9b:43e0:5d4:4427:ca9d:3378","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:09AM GMT+0200)","21 Apr 2026 05:20PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"176981288","","MTR-4Q3J8Y3","10.200.32.206","fe80:0:0:0:93fd:e837:5c7f:880e","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:06AM GMT+0200)","22 Apr 2026 09:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"177079686","","vvbocbsap1.sanef-rec.fr","10.45.6.11","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:37PM GMT+0200)","22 Apr 2026 06:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,OS-LIN-SRV DYN]" +"177126092","","MTR-8Q3J8Y3","10.200.32.209","fe80:0:0:0:c9bc:6965:4834:73b8","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:36PM GMT+0200)","22 Apr 2026 07:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"177128653","","MTR-2Q3J8Y3","10.200.32.207","fe80:0:0:0:a4b6:49f8:9a23:f58","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:57PM GMT+0200)","22 Apr 2026 09:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"177183604","","vptchagtc1","10.41.19.45","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:38AM GMT+0200)","22 Apr 2026 08:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,GTC,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"177186810","","vptchbgtc1","10.41.19.40","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:51AM GMT+0200)","22 Apr 2026 08:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,GTC,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"177200698","","vraiibsql2","10.45.1.190","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","VM Manifest Downloaded (02 Mar 2026 11:48PM GMT+0200)","03 Mar 2026 12:40PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,BDD,DSI,BDD-POS DYN]" +"177828430","","vpdsiatse1.sanef-int.adds","10.44.2.40","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:43AM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Rebond,OS-WIN-SRV DYN]" +"178053006","","vptrabpxp1.sanef.groupe","10.41.40.161","fe80:0:0:0:4cd3:28a8:a688:87de","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:30PM GMT+0200)","22 Apr 2026 07:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,PX Prévia,DEX,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN,BDD-POS DYN]" +"178168038","","vpameased1.sanef.groupe","10.41.40.43","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:17AM GMT+0200)","22 Apr 2026 06:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,SED,DEX,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN]" +"178201254","","ls-hochfelden-ouest","10.41.2.114","fe80:0:0:0:d55e:1578:a803:55c3","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 02:42PM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"178245544","","MTR-12DSNT3","10.152.32.200","fe80:0:0:0:55fa:53:adbc:5fdb","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:41AM GMT+0200)","22 Apr 2026 05:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"178261318","","MTR-J1DSNT3","10.100.32.214","fe80:0:0:0:1f2d:4484:65c2:ddf5","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:22PM GMT+0200)","22 Apr 2026 06:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"178987974","","vpsasawrk2.sanef.groupe","10.41.32.11","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:23AM GMT+0200)","22 Apr 2026 06:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,SAS,DSI,OS-LIN-SRV DYN,BDD-POS DYN]" +"178991227","","vpsasawrk3.sanef.groupe","10.41.32.12","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:09PM GMT+0200)","22 Apr 2026 09:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,SAS,DSI,OS-LIN-SRV DYN,BDD-POS DYN]" +"178993124","","vpsasawrk5.sanef.groupe","10.41.32.14","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:27AM GMT+0200)","22 Apr 2026 07:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,SAS,DSI,OS-LIN-SRV DYN,BDD-POS DYN]" +"178993271","","vpsasawrk6.sanef.groupe","10.41.32.15","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:43PM GMT+0200)","22 Apr 2026 06:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,SAS,DSI,OS-LIN-SRV DYN,BDD-POS DYN]" +"178994738","","vpsasawrk4.sanef.groupe","10.41.32.13","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:41PM GMT+0200)","22 Apr 2026 07:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,SAS,DSI,OS-LIN-SRV DYN,BDD-POS DYN]" +"179101365","","vrpeaaref1.recette.adds","10.45.9.170","fe80:0:0:0:fc69:84fd:ff26:396a","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:18PM GMT+0200)","22 Apr 2026 08:00AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,SVP,DEX,OS-WIN-SRV DYN]" +"179157135","","vrdsibsql1.recette.adds","10.45.1.164","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:03PM GMT+0200)","22 Apr 2026 06:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,BDD,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"179784561","","vrrauaast2.sanef-rec.fr","10.45.9.228","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:44PM GMT+0200)","22 Apr 2026 09:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,ASUR,DSI,OS-LIN-SRV DYN]" +"180099331","","vrrauaast1.sanef-rec.fr","10.45.9.227","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:27PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,ASUR,DSI,OS-LIN-SRV DYN]" +"180099540","","vdosapsrv1.sanef-rec.fr","10.45.9.66","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:50PM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,DEX,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"180108602","","vrrauaapp2.sanef-rec.fr","10.45.9.232","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:39AM GMT+0200)","22 Apr 2026 07:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,ASUR,DSI,OS-LIN-SRV DYN]" +"180108924","","vrrauaapp1.sanef-rec.fr","10.45.9.231","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:10PM GMT+0200)","22 Apr 2026 05:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,ASUR,DSI,OS-LIN-SRV DYN]" +"180272387","","MTR-1G1CXM3","10.100.32.209","fe80:0:0:0:e490:3854:1bf9:9664","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:06AM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"180394921","","vrrauafrt2.sanef-rec.fr","10.45.9.236","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:01AM GMT+0200)","22 Apr 2026 07:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,ASUR,DSI,OS-LIN-SRV DYN]" +"180395955","","vrcosaapp1.sanef-rec.fr","10.45.9.195","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:51PM GMT+0200)","22 Apr 2026 05:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,COSWIN,DSI,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN]" +"180751469","","vrsvpasan1","10.45.9.165","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.0.397","Manifest Downloaded (29 Mar 2026 04:20PM GMT+0200)","29 Mar 2026 04:20PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,SVP,DEX,OS-WIN-SRV DYN]" +"180754668","","MTR-2G1CXM3","10.100.32.210","fe80:0:0:0:227d:8b4:61cd:fd12","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:51PM GMT+0200)","22 Apr 2026 06:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"180917347","","PCB18098.sanef.groupe","","","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 5737","Unknown","Provisioned (null)","","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"181212369","","vpiadawdc1.sanef-int.adds","10.44.3.4","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:44AM GMT+0200)","22 Apr 2026 06:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,AD,DSI,OS-WIN-SRV DYN]" +"181231705","","vpvidavsc2.sanef.groupe","10.41.7.201","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:12AM GMT+0200)","22 Apr 2026 07:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"181705921","","vrosapsrv1.sanef-rec.fr","10.45.9.67","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:15AM GMT+0200)","22 Apr 2026 06:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,DEX,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"181714565","","vrsvpatst1","10.45.9.168","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:01AM GMT+0200)","22 Apr 2026 06:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,SVP,DEX,OS-WIN-SRV DYN]" +"181718030","","vrsvpasap1","10.45.9.167","fe80:0:0:0:ac8f:f1ea:fa5b:1a3a","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:00AM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,SVP,DEX,OS-WIN-SRV DYN]" +"182078097","","PCB18708.sanef.groupe","10.4.31.25","fe80:0:0:0:fea1:744b:557:1ddd","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","Manifest Downloaded (17 Mar 2026 05:11PM GMT+0200)","17 Mar 2026 05:11PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"182212643","","svboomcla2.sanef-rec.fr","10.45.6.73","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:52PM GMT+0200)","22 Apr 2026 06:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"182754885","","vrsimbffl1.sanef.groupe","10.45.6.226","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:21AM GMT+0200)","22 Apr 2026 07:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,FreeFlow,Flux Libre,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-POS DYN]" +"183438113","","vpburbimp1.sanef.groupe","10.46.31.70","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:34AM GMT+0200)","22 Apr 2026 08:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DSI,PaperCut,OS-WIN-SRV DYN,BDD-SQL DYN]" +"183457732","","vtdsibpgs1.sanef-rec.fr","10.45.1.167","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:19PM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,PATRIMOINE,OS-LIN-SRV DYN]" +"183949377","","vmamdpmv1","10.45.2.128","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:40PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,MIVISU,DEX,OS-LIN-SRV DYN]" +"183965866","","vmamrmet2","10.45.2.151","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:12PM GMT+0200)","22 Apr 2026 07:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN]" +"184089794","","vpcybapsm2.sanef.groupe","10.44.1.69","fe80:0:0:0:38c1:6ad2:723a:276e","Microsoft Windows Server 2019 Datacenter 10.0.17763 64-bit N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:50AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,CyberArk,DSI,OS-WIN-SRV DYN]" +"184091720","","vpcybapsm1.sanef.groupe","10.44.1.68","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64-bit N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:39AM GMT+0200)","22 Apr 2026 08:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,CyberArk,DSI,OS-WIN-SRV DYN]" +"184253385","","vpcybapvwa1","10.44.1.100","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64-bit N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:45AM GMT+0200)","22 Apr 2026 04:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,CyberArk,DSI,OS-WIN-SRV DYN]" +"184256628","","vpcybapvwa2","10.44.1.101","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64-bit N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:53AM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,CyberArk,DSI,OS-WIN-SRV DYN]" +"184274823","","vpsimaapi1","10.41.20.30","0:0:0:0:0:0:0:1","CentOS Linux 7.4.1708","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:14PM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,FreeFlow,Flux Libre,log4j,MID-NGINX DYN,BDD-POS DYN,BDD-ELA DYN]" +"185110186","","ls-spare-mon","10.210.22.254","fe80:0:0:0:e793:df05:4eff:4319","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Manifest Downloaded (15 Apr 2026 10:13PM GMT+0200)","16 Apr 2026 11:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"185292892","","vproibgtc1","10.41.19.10","fe80:0:0:0:8b92:d20e:5b74:a67f","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:31AM GMT+0200)","22 Apr 2026 09:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Trafic,Haute,GTC,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"185590289","","sppeaanvr28","10.41.7.127","fe80:0:0:0:c7ea:a30d:91bc:ea9","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:01AM GMT+0200)","22 Apr 2026 07:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"185591823","","sppeaanvr27","10.41.7.126","fe80:0:0:0:86e3:1c9e:f2fe:2879","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:19PM GMT+0200)","22 Apr 2026 09:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"185608238","","vpdsiakms1.sanef-int.adds","10.44.2.39","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4893","6.2.5.4","VM Manifest Downloaded (09 Apr 2026 08:48PM GMT+0200)","22 Apr 2026 08:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,AD,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"186024350","","ls-spare-sen","10.100.2.251","fe80:0:0:0:325e:d546:e662:4711","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:05AM GMT+0200)","22 Apr 2026 08:05AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"186210649","","vmampsxt5","10.41.40.29","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:55PM GMT+0200)","22 Apr 2026 06:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"186249269","","ls-spare-eco","10.4.2.253","fe80:0:0:0:50f4:ac3e:5ab1:1c97","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:52PM GMT+0200)","22 Apr 2026 10:32AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"186259544","","vvafljump2.recette.adds","10.45.8.132","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:35AM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"186260446","","vvafljump1.recette.adds","10.45.8.131","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:34PM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"186261448","","ls-spare-etv","10.152.2.252","fe80:0:0:0:5371:34a3:f025:e494","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:42AM GMT+0200)","22 Apr 2026 10:52AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"186457322","","vpemvgrid1.sanef.groupe","192.168.100.134","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Manifest Downloaded (11 Feb 2026 01:12PM GMT+0200)","11 Feb 2026 03:27PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Linux Server,EMV,DEX,OS-LIN-SRV DYN]" +"186459705","","spcybabkp1","10.44.1.36","fe80:0:0:0:6c0c:43a5:1fdd:ca26","Microsoft Windows Server 2016 Standard 10.0.14393 64-bit N/A Build 14393 UBR 8957","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:32AM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,CyberArk,DSI,OS-WIN-SRV DYN]" +"186490508","","MTR-BQ3J8Y3","10.8.32.200","fe80:0:0:0:aac4:e698:bdf3:acfa","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:39AM GMT+0200)","22 Apr 2026 07:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"186519288","","vpiadawdc2.sanef-int.adds","10.44.3.5","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:27AM GMT+0200)","22 Apr 2026 08:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,AD,DSI,OS-WIN-SRV DYN]" +"186523049","","vpiadawdc3.sanef-int.adds","10.44.3.6","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:26AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,AD,DSI,OS-WIN-SRV DYN]" +"186524683","","vpiadawdc4.sanef-int.adds","10.44.3.7","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:28AM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,AD,DSI,OS-WIN-SRV DYN]" +"186849609","","MTR-DQ3J8Y3","10.107.32.200","fe80:0:0:0:b706:b71d:3541:bdc1","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:56AM GMT+0200)","22 Apr 2026 07:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"186883762","","MTR-HQ3J8Y3","10.105.32.200","fe80:0:0:0:75be:6bd2:8e8:563d","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:06PM GMT+0200)","22 Apr 2026 09:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"186915082","","MTR-9Q3J8Y3","10.155.32.201","fe80:0:0:0:ff79:a660:4372:e895","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:36PM GMT+0200)","22 Apr 2026 06:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"187333435","","MTR-F1DSNT3","10.13.32.200","fe80:0:0:0:2f9e:9f26:bdd8:30da","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:32AM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"187703359","","lremvbremv2.sanef.groupe","192.168.108.116","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.8","7.2.0.38","Inventory Scan Complete (21 Apr 2026 09:12PM GMT+0200)","22 Apr 2026 08:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard V17 Recette,Linux Server,EMV,DEX,OS-LIN-SRV DYN]" +"187703886","","lremvaste2","192.168.108.108","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:18AM GMT+0200)","22 Apr 2026 07:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard V17 Recette,Linux Server,EMV,DEX,OS-LIN-SRV DYN]" +"187703888","","lremvbremv1.sanef.groupe","192.168.108.107","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.8","7.2.0.38","Inventory Scan Complete (22 Apr 2026 12:52AM GMT+0200)","22 Apr 2026 07:59AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard V17 Recette,Linux Server,EMV,DEX,OS-LIN-SRV DYN]" +"187710898","","nvr-spare-beu","10.217.33.252","fe80:0:0:0:48e8:6230:d795:7e8","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:58PM GMT+0200)","22 Apr 2026 07:10AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,NVR,DEX,OS-WIN-SRV DYN]" +"187719047","","nvr-spare-mon","10.210.27.252","fe80:0:0:0:e93c:8368:73c2:e341","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (16 Apr 2026 06:13AM GMT+0200)","16 Apr 2026 02:47PM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,NVR,DEX,OS-WIN-SRV DYN]" +"187892632","","vpgtcawsus1","192.168.191.40","fe80:0:0:0:a7d0:92a1:ada:de90","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:54AM GMT+0200)","22 Apr 2026 07:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,WSUS,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"187965585","","MTR-7Q3J8Y3","10.11.32.200","fe80:0:0:0:f45e:d9cf:658d:9972","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:10AM GMT+0200)","22 Apr 2026 09:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"188071336","","MTR-5Q3J8Y3","10.12.32.202","fe80:0:0:0:6967:3d23:bb54:958b","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:11PM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"188271995","","MTR-G1DSNT3","10.104.32.200","fe80:0:0:0:5ec5:7cc7:98ba:293c","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:08PM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"188336946","","MTR-2J775R3","10.1.32.200","fe80:0:0:0:e863:75c2:4531:707e","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:54PM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"188376349","","MTR-GQ3J8Y3","10.200.32.204","fe80:0:0:0:d7f1:2459:1ce7:1c0","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:39AM GMT+0200)","22 Apr 2026 07:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"188895648","","lpgesanas1.sanef.groupe","10.46.30.5","fe80:0:0:0:7514:f7d8:cced:343","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:26AM GMT+0200)","22 Apr 2026 05:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DFS,OS-WIN-SRV DYN]" +"188895660","","lpgesanas2.sanef.groupe","10.46.30.6","fe80:0:0:0:12b:5f13:aea1:d222","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:22AM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DFS,OS-WIN-SRV DYN]" +"189160131","","vpdsiaans1.sanef.groupe","10.44.2.134","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:27PM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Ansible,OS-LIN-SRV DYN]" +"189172820","","vvpeaarcv1.sanef-rec.fr","10.45.6.100","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:37PM GMT+0200)","22 Apr 2026 05:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,log4j,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"189179496","","vvpeaarcv2.sanef-rec.fr","10.45.6.101","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:09PM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,log4j,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"189946429","","vibotrssm1","10.41.23.152","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:58AM GMT+0200)","22 Apr 2026 08:40AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN]" +"190479231","","vpecmapss1.sanef-int.adds","10.44.2.36","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:27PM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,SCCM,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"190511242","","vibotbquo1.sanef-int.adds","10.100.16.10","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:50AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN]" +"190550423","","vvpeaabst2.sanef-rec.fr","10.45.10.101","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:04AM GMT+0200)","22 Apr 2026 06:40AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"190553349","","vvpeaabst1.sanef-rec.fr","10.45.10.100","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:48PM GMT+0200)","22 Apr 2026 06:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"190915657","","vvaflsmtp1.sanef-rec.fr","10.45.0.231","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:49PM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"191127169","","vpiadapki2.sanef-int.adds","10.44.3.11","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:58AM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Gestion_PKI,DSI,OS-WIN-SRV DYN]" +"191148215","","vpiadapki3.sanef-int.adds","10.44.3.12","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:11AM GMT+0200)","22 Apr 2026 08:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Gestion_PKI,DSI,OS-WIN-SRV DYN]" +"191420278","","viboobsql1.sanef.groupe","10.41.22.197","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:33AM GMT+0200)","22 Apr 2026 07:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,BDD-SQL]" +"191420514","","viboobsql2.sanef.groupe","10.41.22.198","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:08AM GMT+0200)","22 Apr 2026 06:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"191420571","","vibooosea2.sanef.groupe","10.41.22.201","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:16PM GMT+0200)","22 Apr 2026 05:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"191422143","","vibooosea1.sanef.groupe","10.41.22.200","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:27PM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"191423864","","viboomocr1.sanef.groupe","10.41.22.203","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:34AM GMT+0200)","22 Apr 2026 07:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"191424031","","vibooaboo1.sanef.groupe","10.41.22.202","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:24PM GMT+0200)","22 Apr 2026 05:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN]" +"191424299","","vibooaori1.sanef.groupe","10.41.22.208","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:47PM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"191424454","","vibooaori2.sanef.groupe","10.41.22.209","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:50PM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"191624499","","VRPATBL2R1.recette.adds","10.45.10.131","","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:53AM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,L2R,DFIN,OS-WIN-SRV DYN]" +"191660245","","sibocbsap2.sanef.groupe","10.41.22.76","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:42PM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"191765853","","vragtatse2.recette.adds","10.45.1.229","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:02AM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,AgileTime,DRH,OS-WIN-SRV DYN]" +"192389444","","vppeaabst1.sanef.groupe","10.41.20.51","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Manifest Downloaded (22 Apr 2026 01:02AM GMT+0200)","22 Apr 2026 07:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,MID-NGINX DYN]" +"192863549","","vpeapnot1","10.30.10.18","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:42PM GMT+0200)","22 Apr 2026 06:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,High,Production,high priority,Obsolete,E-notification,DSI,MID-NGINX DYN,BDD-POS DYN]" +"193226459","","vibocs4ci1.sanef.groupe","10.41.22.69","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:17PM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"193226489","","vpbocs4ci1.sanef.groupe","10.41.22.5","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:33PM GMT+0200)","22 Apr 2026 05:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"193238549","","vpbocharg1.sanef.groupe","10.41.22.6","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:32PM GMT+0200)","22 Apr 2026 06:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"193239279","","vpbocsman1.sanef.groupe","10.41.22.12","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:24AM GMT+0200)","22 Apr 2026 07:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"193240995","","vpbocmedi1.sanef.groupe","10.41.22.7","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:33PM GMT+0200)","22 Apr 2026 06:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"193570115","","PCB16118.sanef.groupe","10.205.0.19","fe80:0:0:0:bb9b:2362:3b2c:e047","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (16 Apr 2026 10:22PM GMT+0200)","17 Apr 2026 09:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"193606163","","vibocs4as1.sanef.groupe","10.41.22.72","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:15PM GMT+0200)","22 Apr 2026 09:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"193616126","","vibocs4as3.sanef.groupe","10.41.22.74","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:47PM GMT+0200)","22 Apr 2026 06:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"193617668","","vibocs4as2.sanef.groupe","10.41.22.73","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:31PM GMT+0200)","22 Apr 2026 08:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"193617840","","vpbocs4as1.sanef.groupe","10.41.22.8","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:00PM GMT+0200)","22 Apr 2026 08:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"193621036","","vpbocs4as3.sanef.groupe","10.41.22.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:29PM GMT+0200)","22 Apr 2026 06:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"193621646","","vpbocs4as2.sanef.groupe","10.41.22.9","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:31PM GMT+0200)","22 Apr 2026 06:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"193979918","","vpburaaov1.sanef.groupe","10.205.0.2","fe80:0:0:0:6cab:ada:fca1:a136","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:41AM GMT+0200)","22 Apr 2026 08:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,TAG-SRVEXPOSEINTERNET,Compte & Acces,Haute,VPN,DSI,OS-WIN-SRV DYN]" +"193994075","","vpbotbquo1.sanef.groupe","10.100.16.12","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 3091","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:24PM GMT+0200)","22 Apr 2026 07:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN]" +"194005729","","vvaflgsys1.sanef-rec.fr","10.45.7.168","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:56PM GMT+0200)","22 Apr 2026 05:54AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"194227844","","PCB17116.sanef.groupe","192.168.1.19","fe80:0:0:0:9897:d9d:5c77:adfb","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 4170","6.4.0.397","Inventory Scan Complete (24 Mar 2026 11:17AM GMT+0200)","24 Mar 2026 11:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"194257182","","vpcosaapp1.sanef.groupe","10.41.40.178","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:02PM GMT+0200)","22 Apr 2026 06:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,COSWIN,DSI,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN]" +"194260782","","vppeaarcv1.sanef.groupe","10.41.20.40","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:16AM GMT+0200)","22 Apr 2026 07:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,log4j,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"194428822","","spbocbsap1.sanef.groupe","10.41.22.11","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:43AM GMT+0200)","22 Apr 2026 07:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"194461477","","vpgesapent1","10.30.11.140","0:0:0:0:0:0:0:1","CentOS Linux 7.2.1511","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:53AM GMT+0200)","22 Apr 2026 07:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,ITOP,DSI,log4j]" +"194981569","","vpbotbsql2.sanef.groupe","10.41.23.13","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:54PM GMT+0200)","22 Apr 2026 07:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"194981963","","vpbotrssm1.sanef.groupe","10.41.23.8","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:42AM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN]" +"194984819","","vpbotbsql1.sanef.groupe","10.41.23.12","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:39AM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"195005946","","vpdaibana7","10.41.70.26","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:12AM GMT+0200)","22 Apr 2026 07:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DAI,DEX,OS-WIN-SRV DYN,BDD-POS DYN]" +"195071010","","vpbocrsap1.sanef.groupe","10.41.22.13","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:06AM GMT+0200)","22 Apr 2026 05:54AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"195074577","","vvbocrsap1.sanef-rec.fr","10.45.6.12","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:00PM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"195400913","","vpbotatvv1.sanef.groupe","10.41.23.11","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (16 Apr 2026 01:59AM GMT+0200)","16 Apr 2026 04:38PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"195401077","","vpbotrssm2.sanef.groupe","10.41.23.9","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:33PM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"195405316","","vpbotangx1.sanef.groupe","10.41.23.5","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:10PM GMT+0200)","22 Apr 2026 09:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"195789744","","vpbotreco1.sanef.groupe","10.41.23.18","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:31PM GMT+0200)","22 Apr 2026 06:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"195792930","","vpbotreco2.sanef.groupe","10.41.23.19","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:29PM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"195792948","","vpbotreco3.sanef.groupe","10.41.23.20","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:28AM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"195794735","","vpbotreco4.sanef.groupe","10.41.23.21","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:15AM GMT+0200)","22 Apr 2026 06:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"195796370","","vpbotapps2.sanef.groupe","10.41.23.15","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:20PM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"195798232","","vpbotapps1.sanef.groupe","10.41.23.14","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:28AM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"195833595","","lptrabgas1.sanef.groupe","10.41.40.151","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:25PM GMT+0200)","22 Apr 2026 05:59AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gaspar,DEX,OS-LIN-SRV DYN]" +"195865806","","MTR-3Q3J8Y3","10.106.32.200","fe80:0:0:0:ea2d:4fb:fbdf:7e55","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:09PM GMT+0200)","22 Apr 2026 09:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"195878803","","vpbotapps3.sanef.groupe","10.41.23.16","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:56PM GMT+0200)","22 Apr 2026 09:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"195994447","","MTR-32DSNT3","10.207.32.201","","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:41PM GMT+0200)","22 Apr 2026 07:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"196043340","","vpbotatsp1.sanef.groupe","10.41.23.26","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:58PM GMT+0200)","22 Apr 2026 06:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"196050820","","vpbotasim1.sanef.groupe","10.41.23.31","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:59PM GMT+0200)","22 Apr 2026 06:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"196660165","","vpbooaori1.sanef.groupe","10.41.22.139","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:55PM GMT+0200)","22 Apr 2026 06:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"196660167","","vpbooaori2.sanef.groupe","10.41.22.140","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:17AM GMT+0200)","22 Apr 2026 10:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"196660267","","vpboobsql2.sanef.groupe","10.41.22.134","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:03PM GMT+0200)","22 Apr 2026 10:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"196660268","","vpbooosea1.sanef.groupe","10.41.22.135","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:58PM GMT+0200)","22 Apr 2026 06:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"196660269","","vpbooosea2.sanef.groupe","10.41.22.136","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:35PM GMT+0200)","22 Apr 2026 06:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"196660337","","vpbooaboo1.sanef.groupe","10.41.22.137","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:00AM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN]" +"196660522","","vpboomocr1.sanef.groupe","10.41.22.138","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:02AM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"196663142","","vpboobsql1.sanef.groupe","10.41.22.133","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:17PM GMT+0200)","22 Apr 2026 09:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"196663725","","vpbooangx1.sanef.groupe","10.41.22.147","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:01PM GMT+0200)","22 Apr 2026 05:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"196663887","","vpboobquo1.sanef.groupe","10.100.16.13","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:11AM GMT+0200)","22 Apr 2026 06:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"197021705","","MTR-CQ3J8Y3","10.203.32.200","fe80:0:0:0:e165:e42c:a790:8729","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:56PM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"197037005","","vpbckmcse2","192.168.109.5","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8027","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:36PM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,PCI Bunker EMV,Gestion SAUVEGARDE,OS-WIN-SRV DYN,BDD-SQL DYN]" +"197060278","","MTR-1J775R3","10.202.32.200","fe80:0:0:0:bb1d:4fe3:58ec:d469","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:38PM GMT+0200)","22 Apr 2026 05:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"197446702","","MTR-22DSNT3","10.5.32.200","fe80:0:0:0:8da2:d7dd:e776:80bd","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:48AM GMT+0200)","22 Apr 2026 06:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"197783947","","vplpeanvr1","10.117.1.11","fe80:0:0:0:7633:abf9:5270:5922","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:06AM GMT+0200)","22 Apr 2026 05:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Exploitation,NVR,DEX,OS-WIN-SRV DYN]" +"197806642","","nvr-spare-sen","10.100.7.252","fe80:0:0:0:7528:d7bc:a9a5:421a","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:25AM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"197807916","","nvr-spare-etv","10.152.7.252","fe80:0:0:0:6c6c:919c:e531:6ba0","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:15PM GMT+0200)","22 Apr 2026 08:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,NVR,DEX,OS-WIN-SRV DYN]" +"197825360","","nvr-spare-mtz","10.12.7.252","fe80:0:0:0:29ae:1e3:beea:c9ab","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:54PM GMT+0200)","22 Apr 2026 06:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"198003947","","vdaflbdwh1.recette.adds","10.45.7.166","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4297","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:29AM GMT+0200)","22 Apr 2026 08:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"198004081","","vrsvpadev1","10.45.9.180","fe80:0:0:0:24d3:d735:e07f:305d","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:06PM GMT+0200)","22 Apr 2026 06:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,SVP,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"198005759","","vdaflbsta1.recette.adds","10.45.7.164","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4297","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:27PM GMT+0200)","22 Apr 2026 07:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"198425521","","nvr-spare-eco","10.1.27.252","fe80:0:0:0:59df:b009:bdc0:9fbe","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:46AM GMT+0200)","22 Apr 2026 06:46AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,NVR,DEX,OS-WIN-SRV DYN]" +"198463133","","vrsvpaffb1","10.45.9.172","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.0.397","VM Manifest Downloaded (03 Mar 2026 01:05AM GMT+0200)","03 Mar 2026 02:36PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,SVP,DEX,OS-WIN-SRV DYN]" +"198942271","","lpinfbcos1.sanef.groupe","10.41.40.179","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:34PM GMT+0200)","22 Apr 2026 08:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,COSWIN,DSI,OS-LIN-SRV DYN]" +"198996312","","vpisibtel1.sanef.groupe","10.41.40.123","","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:15PM GMT+0200)","22 Apr 2026 05:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,ISI-COM,DSI,OS-WIN-SRV DYN]" +"199138445","","vptchagtc2","10.41.19.46","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:06AM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,GTC,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"199488674","","PCB15576.sanef.groupe","10.255.3.151","fe80:0:0:0:39e6:c0c6:e0b6:a2bd","Microsoft Windows 10 Enterprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Manifest Downloaded (13 Apr 2026 08:17AM GMT+0200)","13 Apr 2026 04:55PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"200009562","","vppeahbst3.sanef.groupe","10.41.20.50","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:16PM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"200010195","","vppeabbst4.sanef.groupe","10.41.20.53","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:30AM GMT+0200)","22 Apr 2026 07:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,BOOST,DSI,Flux Libre,OS-LIN-SRV DYN,BDD-ELA DYN]" +"200012633","","vppeaabst2.sanef.groupe","10.41.20.52","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:18PM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,MID-NGINX DYN]" +"200166052","","vppeabbst2.sanef.groupe","10.41.20.54","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:39AM GMT+0200)","22 Apr 2026 07:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,BOOST,DSI,Flux Libre,OS-LIN-SRV DYN,BDD-ELA DYN]" +"200350065","","vppeabbst3.sanef.groupe","10.41.20.55","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:05AM GMT+0200)","22 Apr 2026 06:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,BOOST,DSI,Flux Libre,OS-LIN-SRV DYN,BDD-ELA DYN]" +"200531597","","PAD21014.sanef.groupe","10.255.4.11","fe80:0:0:0:a17c:3ff:e9b2:b1c7","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","VM Manifest Downloaded (15 Mar 2026 03:04PM GMT+0200)","16 Mar 2026 09:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"200577338","","vptrabkme1.sanef.groupe","10.41.40.16","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:20AM GMT+0200)","22 Apr 2026 07:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,KMELC,DSI,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,MID-NGINX DYN]" +"200578202","","PCB18610.sanef.groupe","10.4.30.11","fe80:0:0:0:992a:4167:ddb2:383c","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Agent Downloaded (13 Apr 2026 08:43AM GMT+0200)","13 Apr 2026 08:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"200710325","","vppeahbst1.sanef.groupe","192.168.31.67","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:55PM GMT+0200)","22 Apr 2026 09:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,TAG-SRVEXPOSEINTERNET,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"201103950","","PCM20931.sanef.groupe","10.78.210.20","fe80:0:0:0:4996:10fd:b964:8967","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 3570","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:47AM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"201134053","","PCB18628.sanef.groupe","10.4.30.27","fe80:0:0:0:66f2:9b24:a95d:f063","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","Manifest Downloaded (17 Mar 2026 04:19PM GMT+0200)","17 Mar 2026 04:19PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"201154449","","PCB17883.sanef.groupe","10.255.2.32","fe80:0:0:0:7c3d:5620:5bde:40e0","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","Inventory Manifest Downloaded (24 Mar 2026 01:28PM GMT+0200)","24 Mar 2026 02:25PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"201283026","","PCB18081.sanef.groupe","10.100.39.234","fe80:0:0:0:f92d:1025:3bc0:7302","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:47AM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"201497726","","vrtrabkme1.sanef-rec.fr","10.45.10.66","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:17PM GMT+0200)","22 Apr 2026 05:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Masterparc,DEX,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,MID-NGINX DYN]" +"201783484","","vrameastg2","10.45.2.11","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:18PM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"202020109","","vpbotjump1.sanef.groupe","10.41.23.34","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:34PM GMT+0200)","22 Apr 2026 08:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"202390516","","vrameastg1.sanef-rec.fr","10.45.2.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:56AM GMT+0200)","22 Apr 2026 07:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,SSTG,DEX,OS-LIN-SRV DYN]" +"202413299","","vrameasxt2.sanef-rec.fr","10.45.2.61","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:03AM GMT+0200)","22 Apr 2026 06:40AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Sextan,DEX,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"202413303","","vrameasxt3.sanef-rec.fr","10.45.2.62","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:51PM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Sextan,DEX,OS-LIN-SRV DYN]" +"202417909","","vrameasxt1.sanef-rec.fr","10.45.2.60","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:28PM GMT+0200)","22 Apr 2026 06:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Sextan,DEX,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"202418413","","vrameasxt4.sanef-rec.fr","10.45.2.63","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:51PM GMT+0200)","22 Apr 2026 06:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Sextan,DEX,OS-LIN-SRV DYN]" +"202758101","","vposapast1.sanef.groupe","10.41.8.60","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:27AM GMT+0200)","22 Apr 2026 07:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Péage,DEX,OS-LIN-SRV DYN]" +"202807661","","viosapast1.sanef.groupe","10.41.8.61","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:50AM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,DEX,OS-LIN-SRV DYN]" +"202841729","","VPAIIADCC1.sanef.groupe","10.40.1.23","fe80:0:0:0:74ee:dd25:14b5:378c","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:26PM GMT+0200)","22 Apr 2026 07:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,DESIGO,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"202866425","","vipeaabst3.sanef.groupe","10.41.29.51","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:00PM GMT+0200)","22 Apr 2026 08:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,BOOST,DSI,OS-LIN-SRV DYN]" +"202869826","","viosapapp1.sanef.groupe","10.41.29.60","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:20PM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,MID-NGINX DYN]" +"203201197","","viboobquo2.sanef.groupe","10.100.16.14","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:34AM GMT+0200)","22 Apr 2026 07:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"203204186","","vpboobquo2.sanef.groupe","10.100.16.15","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:33PM GMT+0200)","22 Apr 2026 06:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"203604125","","vrdsibans1.sanef-rec.fr","10.45.0.166","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:29PM GMT+0200)","22 Apr 2026 06:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Ansible,OS-LIN-SRV DYN]" +"204046362","","vvaflbsta1","10.45.7.165","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:38AM GMT+0200)","22 Apr 2026 05:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"204049665","","vragtaweb1.recette.adds","10.45.1.230","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:16PM GMT+0200)","22 Apr 2026 06:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,AgileTime,DRH,OS-WIN-SRV DYN]" +"204123362","","vpbotbtsd1.sanef.groupe","10.41.23.27","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:57PM GMT+0200)","22 Apr 2026 09:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"204318593","","vpaiiagml1","192.168.190.199","fe80:0:0:0:406c:3b3a:c35d:743b","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:26PM GMT+0200)","22 Apr 2026 06:54AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,TAG-SRVEXPOSEINTERNET,GEMALTO,DSI,OS-WIN-SRV DYN]" +"204326479","","vpcybapsm4.sanef-int.adds","10.44.1.73","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:32PM GMT+0200)","22 Apr 2026 10:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,CyberArk,DSI,OS-WIN-SRV DYN]" +"204326484","","vpcybapsm3.sanef-int.adds","10.44.1.72","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:30PM GMT+0200)","22 Apr 2026 05:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,CyberArk,DSI,OS-WIN-SRV DYN]" +"204348432","","vrdsiaans1.sanef-rec.fr","10.45.0.165","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:05AM GMT+0200)","22 Apr 2026 08:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Ansible,OS-LIN-SRV DYN,MID-NGINX DYN]" +"204376373","","MTR-BBD4804","10.154.32.200","fe80:0:0:0:9292:85d5:c373:e914","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:51PM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"204587145","","MTR-CBD4804","10.209.32.200","fe80:0:0:0:c1d4:acb4:c070:d24a","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:36PM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"205308048","","vpbotarep2.sanef.groupe","192.168.21.67","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:02AM GMT+0200)","22 Apr 2026 07:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,log4j,OS-LIN-SRV DYN]" +"205329293","","vibotbsql2.sanef.groupe","10.41.23.134","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:54AM GMT+0200)","22 Apr 2026 05:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"205329423","","vibotatst2.sanef.groupe","10.41.23.148","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:21AM GMT+0200)","22 Apr 2026 06:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN]" +"205329451","","vibotbsql1.sanef.groupe","10.41.23.133","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:28AM GMT+0200)","22 Apr 2026 08:00AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"205522748","","vposapels1.sanef.groupe","10.41.20.61","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:43PM GMT+0200)","22 Apr 2026 06:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Péage,DEX,OS-LIN-SRV DYN,BDD-ELA DYN]" +"205538618","","vvaflbdwh1.recette.adds","10.45.7.167","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:37AM GMT+0200)","22 Apr 2026 07:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"205550121","","vpbooarep1.sanef.groupe","192.168.21.3","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:47AM GMT+0200)","22 Apr 2026 07:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"205606145","","vvbocaprx1.sanef-rec.fr","192.168.22.3","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:33AM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"205781540","","vpbocaprx1.sanef.groupe","192.168.21.195","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:51PM GMT+0200)","22 Apr 2026 05:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"207904238","","vpaflbdwh1.sanef.groupe","10.46.34.6","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:21AM GMT+0200)","22 Apr 2026 10:00AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"207904430","","viaflbsta1.sanef.groupe","10.46.34.68","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:31AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"207907268","","vpaflbsta1.sanef.groupe","10.46.34.4","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:37AM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"207966352","","viaflbdwh1.sanef.groupe","10.46.34.70","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:24AM GMT+0200)","22 Apr 2026 05:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,FreeFlow,Flux Libre,OS-WIN-SRV DYN,BDD-SQL DYN]" +"207971781","","vrdsiadev1","10.45.10.227","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:34PM GMT+0200)","22 Apr 2026 06:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Collecte,DSI,OS-LIN-SRV DYN]" +"208624727","","vibotrssm2.sanef.groupe","10.41.23.153","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:43PM GMT+0200)","22 Apr 2026 10:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"208768095","","vibotatvv1.sanef.groupe","10.41.23.155","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:36PM GMT+0200)","22 Apr 2026 06:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"208776146","","vibotarmq2.sanef.groupe","10.41.23.142","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:54AM GMT+0200)","22 Apr 2026 07:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"208776231","","vibotarmq1.sanef.groupe","10.41.23.141","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:22PM GMT+0200)","22 Apr 2026 09:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"208777939","","vibotangx1.sanef.groupe","10.41.23.151","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:10AM GMT+0200)","22 Apr 2026 07:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"208777986","","vibotapps2.sanef.groupe","10.41.23.137","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:43PM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"208782494","","vibotreco3.sanef.groupe","10.41.23.159","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:27PM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"208784156","","vibotatsp1.sanef.groupe","10.41.23.144","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:49AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"208784339","","vibotatst1.sanef.groupe","10.41.23.147","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:22AM GMT+0200)","22 Apr 2026 06:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"208784479","","vibotasim1.sanef.groupe","10.41.23.156","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:17PM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"208784631","","vibotreco4.sanef.groupe","10.41.23.160","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:35AM GMT+0200)","22 Apr 2026 07:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"208798629","","PCB20616.sanef.groupe","10.255.2.236","fe80:0:0:0:e61:e972:db98:c374","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 5737","6.4.1.22","Inventory Scan Complete (16 Apr 2026 10:48AM GMT+0200)","16 Apr 2026 02:53PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"208831505","","vibotbtsd1.sanef.groupe","10.41.23.145","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:31PM GMT+0200)","22 Apr 2026 08:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"209161378","","vibotreco1.sanef.groupe","10.41.23.139","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:43PM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"209161379","","vibotreco2.sanef.groupe","10.41.23.140","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:35AM GMT+0200)","22 Apr 2026 07:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"209164475","","vibotapps3.sanef.groupe","10.41.23.157","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:36PM GMT+0200)","22 Apr 2026 06:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"209168351","","vibotarmq3.sanef.groupe","10.41.23.158","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:39PM GMT+0200)","22 Apr 2026 06:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"209200389","","VPAPTAPSH1.sanef.groupe","10.46.33.9","fe80:0:0:0:aeb2:2d71:1a21:55a4","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 3930","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:41PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"209598658","","vpbotarmq3.sanef.groupe","10.41.23.24","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:35PM GMT+0200)","22 Apr 2026 08:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"209599636","","vpbotarmq2.sanef.groupe","10.41.23.23","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:33AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"210022570","","siboomcla2.sanef.groupe","10.41.22.205","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:17PM GMT+0200)","22 Apr 2026 09:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"210040166","","siboomcla1.sanef.groupe","10.41.22.204","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:17PM GMT+0200)","22 Apr 2026 10:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"210209133","","vposapmet1.sanef-int.adds","10.44.6.38","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:43AM GMT+0200)","22 Apr 2026 07:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Péage,DEX,OS-WIN-SRV DYN]" +"210406652","","lremvaste1","192.168.108.114","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:35AM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard V17 Recette,Linux Server,EMV,DEX,OS-LIN-SRV DYN]" +"210605077","","lremvaste3","192.168.108.115","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:46AM GMT+0200)","22 Apr 2026 07:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard V17 Recette,Linux Server,EMV,DEX,OS-LIN-SRV DYN]" +"211148562","","vpbotaapm1.sanef.groupe","10.41.23.25","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:44AM GMT+0200)","22 Apr 2026 09:44AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,log4j,OS-LIN-SRV DYN]" +"211396220","","vrpeaabst2.sanef-rec.fr","10.45.10.103","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:39PM GMT+0200)","22 Apr 2026 05:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,BOOST,DSI,OS-LIN-SRV DYN,MID-NGINX DYN]" +"211399224","","vrpeabbst2.sanef-rec.fr","10.45.10.102","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:50PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,BOOST,DSI,OS-LIN-SRV DYN,BDD-ELA DYN]" +"211430837","","OSA20986.sanef-int.adds","10.100.20.33","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:34AM GMT+0200)","22 Apr 2026 07:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"211609269","","vpbotcach1.sanef.groupe","10.41.23.17","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:16PM GMT+0200)","22 Apr 2026 05:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"212726115","","PCB18008.sanef.groupe","10.200.40.24","fe80:0:0:0:9a49:41a:ba46:2d03","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:21PM GMT+0200)","22 Apr 2026 10:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"212748468","","vpbooarep2.sanef.groupe","10.41.22.146","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:02PM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"212764598","","viaflperf1.sanef.groupe","192.168.22.35","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:06PM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"212784022","","rsminas1.sanef.groupe","10.30.10.244","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:06AM GMT+0200)","22 Apr 2026 06:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,Package,DSI,log4j,OS-LIN-SRV DYN]" +"213122768","","vpbckangw1","192.168.18.52","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:45PM GMT+0200)","22 Apr 2026 06:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"213123476","","vpbckangw3","10.44.3.164","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:57PM GMT+0200)","22 Apr 2026 06:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"213124947","","vpbckangw2","192.168.18.53","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:16PM GMT+0200)","22 Apr 2026 10:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"213125599","","vpbckangw4","10.44.3.165","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:04AM GMT+0200)","22 Apr 2026 07:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"213308548","","vposapexp1.sanef-int.adds","10.44.6.37","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:00AM GMT+0200)","22 Apr 2026 06:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,Péage,DEX,OS-WIN-SRV DYN]" +"213847413","","LS-BOULAY-PSB-SPARE.sanef.fr","10.12.2.254","fe80:0:0:0:f859:4417:9484:2f4","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:52AM GMT+0200)","22 Apr 2026 06:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,VRF_BACKUP_DC,SVP,DEX,OS-WIN-SRV DYN]" +"213847569","","sppeaanvr5","10.41.7.104","fe80:0:0:0:f4e2:1bb2:d154:d8bc","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:50PM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213848989","","sppeaanvr17","10.41.7.116","fe80:0:0:0:cfa8:7f27:c87e:bbef","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:48PM GMT+0200)","22 Apr 2026 06:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213848992","","srtrabgas1.sanef.groupe","10.45.1.66","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:13PM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gaspar,DEX,OS-LIN-SRV DYN]" +"213849158","","asur-rau2","10.41.40.197","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:17AM GMT+0200)","22 Apr 2026 07:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN]" +"213849160","","sppeaanvr6","10.41.7.105","fe80:0:0:0:4263:e49d:815a:74b4","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Manifest Downloaded (21 Apr 2026 11:48PM GMT+0200)","22 Apr 2026 05:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213849175","","sppeaanvr26","10.41.7.125","fe80:0:0:0:7320:e182:7ba7:c43a","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:55AM GMT+0200)","22 Apr 2026 08:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213849189","","spemvalog1.sanef.groupe","192.168.100.74","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:00PM GMT+0200)","22 Apr 2026 05:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Linux Server,Forescout,Splunk,DSI,OS-LIN-SRV DYN]" +"213849711","","sppeaanvr23","10.41.7.122","fe80:0:0:0:254a:3dfa:cecd:d8cb","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:22AM GMT+0200)","22 Apr 2026 10:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213849721","","specmadpr2.sanef-int.adds","10.44.2.42","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:47AM GMT+0200)","22 Apr 2026 09:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,SCCM,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"213849768","","sppeaanvr13","10.41.7.112","fe80:0:0:0:a02c:9be5:c29:9380","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:08PM GMT+0200)","22 Apr 2026 07:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213849807","","sppeaanvr29","10.41.7.128","fe80:0:0:0:3b11:3dfc:1d11:2f44","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:59AM GMT+0200)","22 Apr 2026 07:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213849842","","spboomcla1.sanef.groupe","10.41.22.143","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:30PM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"213849878","","spsecalog1.sanef.groupe","10.30.10.163","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:10AM GMT+0200)","22 Apr 2026 06:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,Splunk,DSI,OS-LIN-SRV DYN]" +"213850235","","sppeaanvr11","10.41.7.110","fe80:0:0:0:3639:b9ea:5a49:ec64","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:06AM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213850269","","specmadpr3.sanef-int.adds","10.44.2.43","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:07AM GMT+0200)","22 Apr 2026 08:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,SCCM,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"213850551","","sppeaanvr4","10.41.7.103","fe80:0:0:0:1937:8dd8:17e:1af7","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:24AM GMT+0200)","22 Apr 2026 06:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213853630","","lampasu2.sanef.groupe","10.41.40.191","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 6.6","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:22AM GMT+0200)","22 Apr 2026 08:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,ASUR,DSI,OS-LIN-SRV DYN]" +"213853686","","sppeaanvr25","10.41.7.124","fe80:0:0:0:bc40:828:2e5:38b3","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:58AM GMT+0200)","22 Apr 2026 06:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213853706","","spasuagsm2","10.41.40.207","0:0:0:0:0:0:0:1","CentOS Linux 7.2.1511","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:16AM GMT+0200)","22 Apr 2026 09:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,ASUR,DSI,MID-NGINX DYN,BDD-POS DYN]" +"213853725","","sppeaanvr16","10.41.7.115","fe80:0:0:0:4063:32fc:7d9b:ec7a","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:25PM GMT+0200)","22 Apr 2026 10:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213853736","","lamppea1","10.41.20.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.11","6.1.0.28","Inventory Scan Complete (14 Nov 2025 05:56AM GMT+0200)","14 Nov 2025 05:56AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Obsolete,Central péage,DEX,log4j,OS-LIN-SRV DYN,BDD-POS DYN]" +"213854267","","sppeaanvr1","10.41.7.100","fe80:0:0:0:e59b:d4f1:9c22:8b47","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:23PM GMT+0200)","22 Apr 2026 06:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"213855634","","spboomcla2.sanef.groupe","10.41.22.144","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:42PM GMT+0200)","22 Apr 2026 06:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"213855638","","spasuagsm3","10.41.40.211","0:0:0:0:0:0:0:1","CentOS Linux 7.2.1511","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:16AM GMT+0200)","22 Apr 2026 07:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,ASUR,DSI,MID-NGINX DYN,BDD-POS DYN]" +"213855690","","lampdec1.sanef.groupe","10.30.13.140","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.11","6.1.0.28","Inventory Scan Complete (21 Apr 2026 10:50PM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Obsolete,BusinessObjects,DFIN,log4j,OS-LIN-SRV DYN,BDD-POS DYN]" +"213857752","","sptrabenr1.sanef.groupe","10.41.60.40","fe80:0:0:0:c4a8:2f0f:49fd:9012","Microsoft Windows Server 2016 Standard 10.0.14393 64-bit N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:48AM GMT+0200)","22 Apr 2026 09:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Enregistrement_COM,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"213857788","","specmadpr1.sanef-int.adds","10.44.2.41","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:08AM GMT+0200)","22 Apr 2026 08:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,SCCM,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"213858465","","lpagtbpla1.sanef.groupe","10.46.33.21","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:44AM GMT+0200)","22 Apr 2026 07:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,AgileTime,DRH,OS-LIN-SRV DYN]" +"213858623","","lampadp2","10.41.20.16","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.11","6.1.0.28","Inventory Manifest Downloaded (14 Nov 2025 04:31AM GMT+0200)","14 Nov 2025 05:17AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Obsolete,Central péage,DEX,log4j,OS-LIN-SRV DYN,BDD-POS DYN]" +"213858625","","spburadpe1.sanef.groupe","10.200.30.9","fe80:0:0:0:c9ff:700b:6cc1:5fdd","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8783","6.4.1.22","Manifest Downloaded (16 Apr 2026 09:33AM GMT+0200)","16 Apr 2026 11:09PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,SCCM,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"213858750","","spasuagsm1","10.41.40.206","0:0:0:0:0:0:0:1","CentOS Linux 7.2.1511","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:20AM GMT+0200)","22 Apr 2026 07:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,ASUR,DSI,MID-NGINX DYN,BDD-POS DYN]" +"213859268","","lampadp1","10.41.20.15","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 5.11","6.1.0.28","Inventory Scan Complete (14 Nov 2025 05:52AM GMT+0200)","14 Nov 2025 05:52AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server,Obsolete,Central péage,DEX,log4j,OS-LIN-SRV DYN,BDD-POS DYN]" +"213875839","","sppeaanvr8","10.41.7.107","fe80:0:0:0:72cc:1043:8a24:ea67","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:41AM GMT+0200)","22 Apr 2026 07:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"214011840","","OSA20949.sanef-int.adds","10.100.20.35","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:46AM GMT+0200)","22 Apr 2026 10:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"214115359","","MTR-6Q3J8Y3","10.6.32.200","fe80:0:0:0:a007:e93a:ab37:6ad9","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:06PM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"214450548","","VRSVPAPAR1","10.45.9.166","fe80:0:0:0:a67a:548d:1bf7:ddb9","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.0.397","Manifest Downloaded (03 Mar 2026 02:51AM GMT+0200)","03 Mar 2026 01:30PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,SVP,DEX,OS-WIN-SRV DYN]" +"214502631","","vipeaabst2.sanef.groupe","10.41.29.54","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:25AM GMT+0200)","22 Apr 2026 10:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,BOOST,DSI,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"215157024","","MTR-1CD4804","10.100.32.203","fe80:0:0:0:13f5:5b9:4b1d:6d3f","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:39AM GMT+0200)","22 Apr 2026 06:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"215165445","","ls-bolbec","10.41.2.84","fe80:0:0:0:b850:62d6:c6a2:708c","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:44PM GMT+0200)","22 Apr 2026 07:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,VRF_BACKUP_DC,SVP,DEX,OS-WIN-SRV DYN]" +"215187156","","vipeabbst4.sanef.groupe","10.41.29.55","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:39AM GMT+0200)","22 Apr 2026 07:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,BDD-ELA DYN]" +"215213259","","ls-beautot","10.41.2.88","fe80:0:0:0:b055:abba:828a:f685","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:41AM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,VRF_BACKUP_DC,SVP,DEX,OS-WIN-SRV DYN]" +"215213361","","ls-fecamp","10.41.2.85","fe80:0:0:0:e219:a7df:edf5:b512","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:18AM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,VRF_BACKUP_DC,SVP,DEX,OS-WIN-SRV DYN]" +"215218494","","ls-srom-ouvert","10.41.2.81","fe80:0:0:0:48b9:b0bf:30d7:1ec0","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:31AM GMT+0200)","22 Apr 2026 08:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,VRF_BACKUP_DC,SVP,DEX,OS-WIN-SRV DYN]" +"215222543","","ls-yerville","10.41.2.87","fe80:0:0:0:9f75:800f:7c14:cb0a","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:35PM GMT+0200)","22 Apr 2026 07:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"215228959","","ls-srom-ferme","10.41.2.82","fe80:0:0:0:f0d2:9ace:6258:5d05","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:11AM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"216068010","","OSA20981.sanef-int.adds","10.12.20.31","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:02PM GMT+0200)","22 Apr 2026 06:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"216433861","","vipeabbst3.sanef.groupe","10.41.29.57","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:03PM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,Flux Libre,OS-LIN-SRV DYN,BDD-ELA DYN]" +"216883440","","vpaflgsys1.sanef.groupe","10.46.34.8","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:06PM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"216910714","","vppeaabst3.sanef.groupe","10.41.20.37","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:04PM GMT+0200)","22 Apr 2026 09:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"217858385","","vpemvatse1.sanef.groupe","192.168.100.122","fe80:0:0:0:7577:a9ee:bae1:1676","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4171","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:00AM GMT+0200)","22 Apr 2026 07:00AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Windows Server,EMV,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"218315519","","viboobquo1.sanef.groupe","10.100.16.11","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:51PM GMT+0200)","22 Apr 2026 10:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"218323011","","vibooangx1.sanef.groupe","10.41.22.210","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:19PM GMT+0200)","22 Apr 2026 05:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,ServersInCyberark,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"218330049","","vpagtaweb1.sanef.groupe","10.46.33.22","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:31AM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,AgileTime,DRH,OS-WIN-SRV DYN]" +"218502735","","viosapquo1.sanef.groupe","10.100.16.16","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:07PM GMT+0200)","22 Apr 2026 10:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,BDD-ELA DYN]" +"218937543","","OSA20948.sanef-int.adds","10.152.20.30","fe80:0:0:0:26b:9811:769c:3532","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:07PM GMT+0200)","22 Apr 2026 06:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"219138825","","OSA20964.sanef-int.adds","10.152.20.32","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:39PM GMT+0200)","22 Apr 2026 06:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"219161571","","OSA20983.sanef-int.adds","10.100.20.34","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:48PM GMT+0200)","22 Apr 2026 07:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"219208217","","viosapels2.sanef.groupe","10.41.29.62","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:34AM GMT+0200)","22 Apr 2026 07:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Péage,OS-LIN-SRV DYN,BDD-ELA DYN]" +"219788187","","ls-cottevrard","10.212.36.200","fe80:0:0:0:1a1b:20ee:da7d:52b4","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:09PM GMT+0200)","22 Apr 2026 07:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"219800194","","vpbotarmq1.sanef.groupe","10.41.23.22","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:17AM GMT+0200)","22 Apr 2026 06:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,OS-LIN-SRV DYN]" +"219821714","","ls-srom-bpv","10.212.26.201","fe80:0:0:0:3bca:2f5f:25b7:8172","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:12AM GMT+0200)","22 Apr 2026 09:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"220106403","","OSA20952.sanef-int.adds","10.12.20.32","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:25PM GMT+0200)","22 Apr 2026 10:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"220360665","","viosapels1.sanef.groupe","10.41.29.61","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:03PM GMT+0200)","22 Apr 2026 05:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,DEX,OS-LIN-SRV DYN,BDD-ELA DYN]" +"220595112","","vvbooarep2.sanef-rec.fr","10.45.6.81","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:05AM GMT+0200)","22 Apr 2026 07:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"221316812","","ls-arsy","10.41.2.27","fe80:0:0:0:bd60:d9a:d99:d938","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:52AM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"221319867","","ls-bapaume","10.41.2.32","fe80:0:0:0:6eae:35c5:543e:82e2","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:04AM GMT+0200)","22 Apr 2026 06:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"221320256","","vpboojump1.sanef.groupe","10.41.22.148","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:20AM GMT+0200)","22 Apr 2026 09:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,FreeFlow,Flux Libre,OS-WIN-SRV DYN]" +"221331665","","ls-gauchy","10.41.2.46","fe80:0:0:0:1525:7a:e35f:f0d0","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:21AM GMT+0200)","22 Apr 2026 09:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"221336958","","ls-maurepas","10.41.2.31","fe80:0:0:0:d9c:cf42:1198:8884","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:43AM GMT+0200)","22 Apr 2026 09:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"221337261","","ls-arras","10.41.2.33","fe80:0:0:0:b4b4:c473:ee76:4bf0","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:20PM GMT+0200)","22 Apr 2026 07:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"221344661","","ls-chevrieres","10.41.2.26","fe80:0:0:0:1b5d:15ec:38c7:3a8b","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:14AM GMT+0200)","22 Apr 2026 06:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"221402131","","OSA20928.sanef-int.adds","10.5.20.31","fe80:0:0:0:5b55:19cb:6719:b7cc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:10PM GMT+0200)","22 Apr 2026 08:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"221414626","","vposapels2.sanef.groupe","10.41.20.62","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:46AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Péage,DEX,OS-LIN-SRV DYN,BDD-ELA DYN]" +"221418055","","vposapquo1.sanef.groupe","10.100.16.17","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:59AM GMT+0200)","22 Apr 2026 07:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Péage,OS-LIN-SRV DYN,BDD-ELA DYN]" +"222255714","","OSA20951.sanef-int.adds","10.5.20.32","fe80:0:0:0:2af2:5399:e666:c3af","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:36AM GMT+0200)","22 Apr 2026 08:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"222290141","","vibotcach1.sanef.groupe","10.41.23.138","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:20PM GMT+0200)","22 Apr 2026 10:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"222314779","","OSA20945.sanef-int.adds","10.5.20.30","fe80:0:0:0:6b5c:7e05:b9e6:fc71","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:29AM GMT+0200)","22 Apr 2026 06:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"222316165","","OSA20933.sanef-int.adds","10.12.20.30","fe80:0:0:0:fe2f:8d1c:55e6:9c7c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:39AM GMT+0200)","22 Apr 2026 07:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"222335936","","OSA20946.sanef-int.adds","10.12.20.33","fe80:0:0:0:16cf:9b30:5acd:91c4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:37AM GMT+0200)","22 Apr 2026 09:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"222529119","","vppatakib1.sanef.groupe","10.42.40.15","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:14PM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,DFIN,PATRIMOINE,OS-LIN-SRV DYN]" +"222529401","","vpburaexc1.sanef.groupe","10.42.30.10","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:09PM GMT+0200)","22 Apr 2026 06:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,EXCHANGE,DSI,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN]" +"222570163","","vpdsiaads1.sanef.groupe","10.44.2.166","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:47AM GMT+0200)","22 Apr 2026 09:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,AD,DSI,OS-WIN-SRV DYN]" +"222570527","","vpburaexc2.sanef.groupe","10.42.30.30","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:00AM GMT+0200)","22 Apr 2026 08:00AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,EXCHANGE,DSI,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN]" +"223150678","","ls-amblainville","10.132.1.20","fe80:0:0:0:d126:fc85:c9cf:ba71","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:36PM GMT+0200)","22 Apr 2026 06:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Péage,Haute,SVP,DEX,OS-WIN-SRV DYN]" +"223160633","","OSA20932.sanef-int.adds","10.100.20.30","fe80:0:0:0:50b0:5ee5:8416:5c4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:32PM GMT+0200)","22 Apr 2026 08:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"223163371","","ls-herquelingue","10.132.3.20","fe80:0:0:0:c9d7:798e:11c8:fd32","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:05AM GMT+0200)","22 Apr 2026 09:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,SVP,DEX,OS-WIN-SRV DYN]" +"223163472","","ls-coutevroult","10.1.1.12","fe80:0:0:0:bf74:e7ad:817a:6cfc","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:11AM GMT+0200)","22 Apr 2026 09:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"223166642","","ls-haudricourt","10.132.4.20","fe80:0:0:0:3d8e:ef30:d61b:87ca","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:24AM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Péage,Haute,SVP,DEX,OS-WIN-SRV DYN]" +"223167444","","ls-ormes","10.22.3.20","fe80:0:0:0:95dc:5e9a:35ef:4cec","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:05PM GMT+0200)","22 Apr 2026 06:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,SVP,DEX,OS-WIN-SRV DYN]" +"223171074","","ls-courcy","10.22.2.20","fe80:0:0:0:3073:5175:d6c3:12f3","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:56AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Péage,Haute,SVP,DEX,OS-WIN-SRV DYN]" +"223174845","","ls-fresnes","10.142.2.20","fe80:0:0:0:930f:3940:f50a:f897","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:34AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"223175180","","ls-schwindratzheim","10.11.2.20","fe80:0:0:0:6221:fd62:107a:e6ad","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:26AM GMT+0200)","22 Apr 2026 05:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE,VRF_PEAGE_DC,VRF_BACKUP_DC,SVP,DEX,OS-WIN-SRV DYN]" +"223188722","","ls-beaumont","10.112.3.20","fe80:0:0:0:e0c1:b4ce:df4:51d1","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:54AM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"223188899","","ls-chamant","10.142.3.20","fe80:0:0:0:6c8e:7198:837b:9d82","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:58PM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,SVP,DEX,OS-WIN-SRV DYN]" +"223190130","","OSA20934.sanef-int.adds","10.100.20.31","fe80:0:0:0:e265:414:9fda:413b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:55PM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"223439899","","ls-abbeville-nord","10.182.6.20","fe80:0:0:0:5a01:eeb6:bef6:5074","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:04AM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"224249089","","PCB20677.sanef.groupe","10.205.0.167","fe80:0:0:0:4642:78af:5af1:c340","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:01PM GMT+0200)","22 Apr 2026 08:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"225055358","","ls-jules-verne","10.132.5.20","fe80:0:0:0:a0cb:a872:d8e0:358f","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:08AM GMT+0200)","22 Apr 2026 10:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,SVP,DEX,OS-WIN-SRV DYN]" +"225058556","","ls-amiens-sud","10.132.2.20","fe80:0:0:0:1fe9:a1a7:cd79:3cb4","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:30AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,SVP,DEX,OS-WIN-SRV DYN]" +"225100522","","ls-st-avold-a","10.112.2.20","fe80:0:0:0:9d25:d076:1c48:ae1b","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:56AM GMT+0200)","22 Apr 2026 06:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,SVP,DEX,OS-WIN-SRV DYN]" +"225171191","","ls-cambrai","10.41.2.34","fe80:0:0:0:cc77:e8d5:d943:37f4","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:00AM GMT+0200)","22 Apr 2026 08:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,SVP,DEX,OS-WIN-SRV DYN]" +"225426807","","ls-meru","10.41.2.89","fe80:0:0:0:cd7b:17c7:490a:9263","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:51AM GMT+0200)","22 Apr 2026 07:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"225427710","","ls-montreuil-bpv","10.22.1.20","fe80:0:0:0:caf3:d509:159d:c2e","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:50AM GMT+0200)","22 Apr 2026 05:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"225436821","","ls-lievin","10.41.2.41","fe80:0:0:0:3718:ad1c:827a:a431","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:09PM GMT+0200)","22 Apr 2026 06:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"225439577","","ls-bethune","10.41.2.40","fe80:0:0:0:ad83:e989:9edf:cbfa","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:20PM GMT+0200)","22 Apr 2026 08:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"225456379","","vpssiandes1.sanef.groupe","192.168.162.80","fe80:0:0:0:abae:eaa2:a3ba:de4e","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8644","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:34AM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Critical,Production,TAG-SRVEXPOSEINTERNET,Gestion_PKI,DSI,OS-WIN-SRV DYN]" +"225744238","","ls-taissy","10.82.17.20","fe80:0:0:0:ad2c:f83:e94f:98ac","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:00AM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"225965686","","vrsvpasan2","10.45.9.169","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:41AM GMT+0200)","22 Apr 2026 09:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"225989696","","vpvidavsc1.sanef.groupe","10.41.7.200","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:52PM GMT+0200)","22 Apr 2026 07:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,NVR,DEX,OS-WIN-SRV DYN]" +"226167930","","ls-roye","10.41.2.29","fe80:0:0:0:415:c546:c5a8:4808","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:23PM GMT+0200)","22 Apr 2026 07:59AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,Haute,VRF_PEAGE_DC,SVP,OS-WIN-SRV DYN]" +"226168693","","ls-thelus","10.41.2.42","fe80:0:0:0:6ad7:4632:1fe3:5ff4","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:56AM GMT+0200)","22 Apr 2026 07:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"226169190","","ls-la-vallee","10.41.2.45","fe80:0:0:0:29a9:bfbe:46ba:f0d0","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:08AM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,OS-WIN-SRV DYN]" +"227064676","","PCM20938.sanef.groupe","10.100.39.115","fe80:0:0:0:5f9f:b24a:9733:e158","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 4170","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:21AM GMT+0200)","22 Apr 2026 06:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"227193811","","ls-ressons","10.41.2.28","fe80:0:0:0:8137:321c:7cbb:fa58","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:32AM GMT+0200)","22 Apr 2026 06:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Péage,SVP,OS-WIN-SRV DYN]" +"227198904","","ls-marquion","10.41.2.43","fe80:0:0:0:ff94:74ad:ebeb:8b0e","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:25AM GMT+0200)","22 Apr 2026 08:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Péage,SVP,OS-WIN-SRV DYN]" +"227199088","","ls-athies","10.41.2.51","fe80:0:0:0:eeea:5484:4cf4:108f","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:10AM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"227211624","","ls-vallee-somme","10.41.2.30","fe80:0:0:0:3d6a:4dd7:caa4:c5a3","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:23PM GMT+0200)","22 Apr 2026 10:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,OS-WIN-SRV DYN]" +"227259072","","OSA20936.sanef-int.adds","10.5.20.33","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:27PM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"227451627","","VRBURXBAN11.sanef.groupe","10.30.4.11","fe80:0:0:0:f3d0:96a4:25a4:7642","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:31AM GMT+0200)","22 Apr 2026 04:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Recette]" +"227708214","","ls-laon","10.41.2.48","fe80:0:0:0:12f6:1fc:b4b7:81dc","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:15AM GMT+0200)","22 Apr 2026 07:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"227708370","","ls-bonsecours","10.41.2.24","fe80:0:0:0:b109:f1d3:21e8:dabf","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:00AM GMT+0200)","22 Apr 2026 09:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"227708505","","ls-masniere","10.41.2.44","fe80:0:0:0:e2a:926f:f031:6b98","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:29AM GMT+0200)","22 Apr 2026 06:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"227715620","","ls-st-witz","10.41.2.23","fe80:0:0:0:4600:7820:c9b7:5f78","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:17PM GMT+0200)","22 Apr 2026 10:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"228081514","","MTR-JBD4804","10.220.32.201","fe80:0:0:0:1acf:5ea8:e80c:bdf6","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:25PM GMT+0200)","22 Apr 2026 09:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"228415190","","ls-sarreguemines","10.41.2.109","fe80:0:0:0:3459:868c:786e:f3c6","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:51AM GMT+0200)","22 Apr 2026 06:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"228420755","","ls-ste-marie","10.41.2.65","fe80:0:0:0:9b47:1541:4cbc:90b1","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:42PM GMT+0200)","22 Apr 2026 08:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"228420904","","ls-hochfelden","10.41.2.117","fe80:0:0:0:6dad:fe0a:3482:80d","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:50AM GMT+0200)","22 Apr 2026 09:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"228421026","","ls-chamant2","10.41.2.25","fe80:0:0:0:857:ad43:2d18:2172","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:46AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"228426057","","ls-farebersviller","10.41.2.116","fe80:0:0:0:9aef:78a3:c424:bc0f","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:05AM GMT+0200)","22 Apr 2026 10:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"228428106","","ls-st-avold-b","10.41.2.115","fe80:0:0:0:8501:ff7c:ee12:9eb4","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:33AM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"228684181","","vpbocasec1","10.41.22.16","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:13AM GMT+0200)","22 Apr 2026 06:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN]" +"228697918","","vvbocasec1","10.45.6.14","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:56AM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN]" +"228724304","","vpbocarep1.sanef.groupe","10.41.22.15","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:26PM GMT+0200)","22 Apr 2026 10:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN]" +"228734286","","vvaflblog1.sanef-rec.fr","10.45.0.205","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:00PM GMT+0200)","22 Apr 2026 08:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,Flux Libre,OS-LIN-SRV DYN,BDD-ELA DYN]" +"229191355","","vvbocarep1.sanef-rec.fr","10.45.6.13","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:28AM GMT+0200)","22 Apr 2026 07:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN]" +"229361884","","vpsupacen1.sanef.groupe","10.44.5.99","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:02PM GMT+0200)","22 Apr 2026 05:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN]" +"229372706","","vpsupbcen1.sanef.groupe","10.44.5.100","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:26AM GMT+0200)","22 Apr 2026 08:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN]" +"229382460","","vpsupbmbi1.sanef.groupe","10.44.5.101","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:48PM GMT+0200)","22 Apr 2026 06:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN]" +"229387995","","vpsupbmap1.sanef.groupe","10.44.5.102","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:03PM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN]" +"230083469","","vdechatal3.recette.adds","10.45.11.200","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:52AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,OS-WIN-SRV DYN,BDD-SQL DYN]" +"230114750","","vvbotatst4.recette.adds","10.45.6.162","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:30AM GMT+0200)","22 Apr 2026 09:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,OS-WIN-SRV DYN,BDD-SQL DYN]" +"230338974","","vpadvaapp1.sanef.groupe","10.41.20.70","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:26PM GMT+0200)","22 Apr 2026 06:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"230348234","","vradvaapp1.sanef-rec.fr","10.45.13.3","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:52AM GMT+0200)","22 Apr 2026 07:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"230365978","","ls-vemars-ouest","10.41.2.119","fe80:0:0:0:8944:b7fb:76ef:ad28","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:04PM GMT+0200)","22 Apr 2026 06:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"230366366","","ls-st-etienne","10.41.2.73","fe80:0:0:0:b44c:7df5:412f:6ffa","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:31PM GMT+0200)","22 Apr 2026 06:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"230366424","","ls-ste-menehould","10.41.2.74","fe80:0:0:0:579b:d96e:bea0:b26f","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:19PM GMT+0200)","22 Apr 2026 06:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"230369388","","ls-clermont-en-arg","10.41.2.107","fe80:0:0:0:9fe9:7065:d0b1:e4ff","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:03AM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Péage,SVP,OS-WIN-SRV DYN]" +"230624144","","vpsupapol3.sanef.groupe","10.44.5.105","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:21PM GMT+0200)","22 Apr 2026 10:01AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"230624333","","vpsupapol2.sanef.groupe","10.44.5.104","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:56PM GMT+0200)","22 Apr 2026 05:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN,BDD-ELA DYN]" +"230624660","","vpsupapol1.sanef.groupe","10.44.5.103","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:16AM GMT+0200)","22 Apr 2026 06:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"231514970","","ls-essertaux","10.41.2.93","fe80:0:0:0:5728:ed64:d5b3:f99b","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:03PM GMT+0200)","22 Apr 2026 05:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"231515226","","ls-aumale-ouest","10.41.2.104","fe80:0:0:0:dc61:4096:ee8f:58e4","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:43AM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"231517264","","ls-puttelange","10.41.2.113","fe80:0:0:0:b130:53f9:8bfe:f902","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:35PM GMT+0200)","22 Apr 2026 07:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"231528363","","ls-aumale-est","10.41.2.20","fe80:0:0:0:8c9d:a8b3:aece:62e9","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:19PM GMT+0200)","22 Apr 2026 06:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"231533958","","lpemvaste5","192.168.101.112","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:29AM GMT+0200)","22 Apr 2026 07:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,EMV,DEX,OS-LIN-SRV DYN]" +"231533960","","lpemvaste6","192.168.101.113","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:06AM GMT+0200)","22 Apr 2026 06:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,PCI Bunker EMV,EMV,DEX,OS-LIN-SRV DYN]" +"231598452","","vpsecbcadg2.sanef.groupe","10.41.50.11","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:07PM GMT+0200)","22 Apr 2026 06:59AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Nedap,DEX,OS-WIN-SRV DYN,BDD-SQL DYN]" +"231599326","","ls-vallee-nievre","10.41.2.97","fe80:0:0:0:813e:a8f8:4d01:6b37","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:58PM GMT+0200)","22 Apr 2026 09:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"231613066","","vvbotatvv1.sanef-rec.fr","192.168.21.169","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:46AM GMT+0200)","22 Apr 2026 07:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,OS-LIN-SRV DYN]" +"231613074","","vvbotrssc1.sanef-rec.fr","192.168.21.165","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:07AM GMT+0200)","22 Apr 2026 06:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,OS-LIN-SRV DYN]" +"231765205","","ls-mont-choisy","10.41.2.69","fe80:0:0:0:7b15:1971:afea:21fd","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:16AM GMT+0200)","22 Apr 2026 05:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"231771998","","ls-sommesous","10.41.2.68","fe80:0:0:0:c1d0:b938:b930:fcb4","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:17AM GMT+0200)","22 Apr 2026 05:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"231772330","","ls-le-touquet","10.41.2.101","fe80:0:0:0:c6a9:6b2e:f39c:8c49","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:56PM GMT+0200)","22 Apr 2026 08:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"231858479","","vrcybapsm2.recette.adds","10.45.11.100","fe80:0:0:0:5b00:e228:d52c:4bdd","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8644","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:54PM GMT+0200)","22 Apr 2026 07:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,OS-WIN-SRV DYN]" +"231859805","","vrcybapsm1.recette.adds","10.45.11.99","fe80:0:0:0:1874:aea3:b770:8095","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8644","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:38PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,OS-WIN-SRV DYN]" +"231861643","","vrcybapvwa1","10.45.11.131","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8644","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:20AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,OS-WIN-SRV DYN]" +"231862030","","vrcybapvwa2","10.45.11.132","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8644","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:31PM GMT+0200)","22 Apr 2026 09:44AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Recette,OS-WIN-SRV DYN]" +"231863508","","vrcybacpm1.sanef-rec.fr","10.45.11.67","fe80:0:0:0:c481:5526:59fd:e494","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8644","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:38AM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,OS-WIN-SRV DYN]" +"232011762","","ls-voie-sacree","10.41.2.75","fe80:0:0:0:6f81:4f74:382:93a4","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:45PM GMT+0200)","22 Apr 2026 08:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"232013299","","ls-jarny","10.41.2.80","fe80:0:0:0:f9bb:c31f:da19:3e62","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:43AM GMT+0200)","22 Apr 2026 06:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"232016361","","ls-charmont","10.41.2.66","fe80:0:0:0:9556:1f56:3275:77d6","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:05AM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"232019701","","ls-amiens-nord","10.41.2.96","fe80:0:0:0:e24f:28d5:422f:22e6","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:19AM GMT+0200)","22 Apr 2026 08:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"232288356","","SVP20947.sanef-int.adds","10.1.1.24","fe80:0:0:0:cd49:6c03:94eb:85d4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:44AM GMT+0200)","22 Apr 2026 08:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"232513887","","lrpeabsip1.sanef-rec.fr","10.45.1.35","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:04PM GMT+0200)","22 Apr 2026 09:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN]" +"233064565","","ls-sarre-union","10.41.2.110","fe80:0:0:0:30e8:b328:ded5:d2ba","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:05AM GMT+0200)","22 Apr 2026 05:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"233075560","","ls-fresnes-en-woevre","10.41.2.78","fe80:0:0:0:e009:b7a2:df6a:89e","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:04PM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"233285732","","ls-portes-vignoble","10.41.2.21","fe80:0:0:0:90c5:7afb:c5ea:76e5","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:07AM GMT+0200)","22 Apr 2026 07:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,OS-WIN-SRV DYN]" +"233980699","","ls-la-neuvillette","10.41.2.55","fe80:0:0:0:5de5:3954:c852:7414","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:31AM GMT+0200)","22 Apr 2026 05:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,DEX,OS-WIN-SRV DYN]" +"234568691","","vrechatre2.sanef-rec.fr","10.45.11.196","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:20PM GMT+0200)","22 Apr 2026 09:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,TALEND,OS-LIN-SRV DYN]" +"234568952","","vrechatre3.sanef-rec.fr","10.45.11.197","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:42PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,TALEND,OS-LIN-SRV DYN]" +"234569455","","vrechatre1.sanef-rec.fr","10.45.11.195","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:53PM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,TALEND,OS-LIN-SRV DYN]" +"235695165","","vamrsycapp1.sanef.groupe","10.45.2.21","","Microsoft Windows Server 2008 R2 Standard 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24130","5.6.0.20","Inventory Scan Complete (22 Apr 2026 08:06AM GMT+0200)","22 Apr 2026 08:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Windows Server 2008,Recette,Patrimoine,Obsolete,SIG,DEX,OS-WIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"236266412","","ls-amiens-ouest","10.41.2.95","fe80:0:0:0:5b68:2ee8:941f:ed62","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:40AM GMT+0200)","22 Apr 2026 09:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,OS-WIN-SRV DYN]" +"236300233","","lpemvbaemv1.sanef.groupe","192.168.101.106","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:58PM GMT+0200)","22 Apr 2026 06:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,PCI Bunker EMV,EMV,OS-LIN-SRV DYN]" +"236301380","","lpemvaste3","192.168.101.103","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:46AM GMT+0200)","22 Apr 2026 07:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,PCI Bunker EMV,EMV,OS-LIN-SRV DYN]" +"236301381","","lpemvaste4","192.168.101.111","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:28AM GMT+0200)","22 Apr 2026 07:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,PCI Bunker EMV,EMV,OS-LIN-SRV DYN]" +"236302913","","lpemvbpemv3.sanef.groupe","192.168.101.117","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:27PM GMT+0200)","22 Apr 2026 06:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,PCI Bunker EMV,EMV,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"236303035","","lpemvaste2","192.168.101.102","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:03PM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,PCI Bunker EMV,EMV,OS-LIN-SRV DYN]" +"236303036","","lpemvaste1","192.168.101.101","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:41PM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,PCI Bunker EMV,EMV,OS-LIN-SRV DYN]" +"236313681","","vpemvagtw1.sanef.groupe","192.168.101.110","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:03PM GMT+0200)","22 Apr 2026 10:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,PCI Bunker EMV,EMV,log4j,OS-LIN-SRV DYN]" +"236487392","","ls-la-veuve-reims","10.41.2.71","fe80:0:0:0:ade0:bfa1:f:8a79","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:33PM GMT+0200)","22 Apr 2026 07:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,OS-WIN-SRV DYN]" +"236525160","","ls-rn29","10.41.2.94","fe80:0:0:0:5215:992f:a389:691","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:34AM GMT+0200)","22 Apr 2026 07:50AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Péage,SVP,OS-WIN-SRV DYN]" +"236549774","","vpechatre1.sanef.groupe","10.42.16.133","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:15PM GMT+0200)","22 Apr 2026 05:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,TALEND,OS-LIN-SRV DYN]" +"236549943","","vpechatre2.sanef.groupe","10.42.16.134","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:10PM GMT+0200)","22 Apr 2026 08:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,TALEND,OS-LIN-SRV DYN]" +"236554069","","vpechatre3.sanef.groupe","10.42.16.135","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:05AM GMT+0200)","22 Apr 2026 06:40AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,TALEND,OS-LIN-SRV DYN]" +"236555919","","nvr-spare-tqx","10.1.27.251","fe80:0:0:0:ccab:f6c9:7cd5:aad0","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:40PM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,OS-WIN-SRV DYN]" +"236561622","","vpaptbjup1","10.46.34.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:17AM GMT+0200)","22 Apr 2026 07:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"236839239","","OSA20935.sanef-int.adds","10.100.20.32","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.0.397","Manifest Downloaded (25 Mar 2026 12:30AM GMT+0200)","25 Mar 2026 02:01PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"236870596","","ls-st-jean","10.41.2.62","fe80:0:0:0:7080:49e1:cf62:4676","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:30AM GMT+0200)","22 Apr 2026 09:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,High,Production,Péage,VRF_PEAGE_DC,SVP,OS-WIN-SRV DYN]" +"236872619","","vpechatre4.sanef.groupe","10.42.16.136","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:46PM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,TALEND,OS-LIN-SRV DYN]" +"236874396","","ls-montreuil-reims","10.41.2.56","fe80:0:0:0:2c82:6758:2aa2:98a3","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:48AM GMT+0200)","22 Apr 2026 06:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Péage,SVP,OS-WIN-SRV DYN]" +"236885633","","ls-dormans","10.41.2.59","fe80:0:0:0:4541:dd3c:bb82:7b0b","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:05AM GMT+0200)","22 Apr 2026 06:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Péage,SVP,OS-WIN-SRV DYN]" +"236895900","","vpvpnarad2","192.168.19.7","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.3","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:12PM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,GEMALTO,VPN,Radius,DSI,OS-LIN-SRV DYN,MID-NGINX DYN]" +"236930843","","SVP20940.sanef-int.adds","10.106.2.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:24AM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"238271425","","vipeahbst3.sanef.groupe","10.41.29.50","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:53AM GMT+0200)","22 Apr 2026 07:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"238271861","","ls-abbeville-est","10.41.2.98","fe80:0:0:0:db:ba35:af87:b24a","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:04PM GMT+0200)","22 Apr 2026 10:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Péage,SVP,OS-WIN-SRV DYN]" +"238271912","","vipeaabst1.sanef.groupe","10.41.29.52","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:26PM GMT+0200)","22 Apr 2026 09:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,DSI,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"238272359","","vipeahbst1.sanef.groupe","192.168.31.83","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:30PM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,TAG-SRVEXPOSEINTERNET,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"238272367","","vipeabbst2.sanef.groupe","10.41.29.56","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:14PM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,BDD-ELA DYN]" +"238296972","","lpemvbpemv4.sanef.groupe","192.168.101.118","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:41PM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,EMV,OS-LIN-SRV DYN]" +"238297816","","lpemvbpemv2.sanef.groupe","192.168.101.105","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:51PM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,EMV,OS-LIN-SRV DYN]" +"238298215","","lpemvbpemv1.sanef.groupe","192.168.101.104","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:24AM GMT+0200)","22 Apr 2026 06:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Production,PCI Bunker EMV,EMV,OS-LIN-SRV DYN]" +"238473501","","SVP20927.sanef-int.adds","10.1.1.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:27AM GMT+0200)","22 Apr 2026 07:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"238482775","","ls-cote-picarde","10.41.2.99","fe80:0:0:0:c7dd:1f5d:741d:df28","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:26AM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Péage,SVP,OS-WIN-SRV DYN]" +"238500914","","ls-neufchatel","10.41.2.102","fe80:0:0:0:7795:5619:f4c4:acc6","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:50AM GMT+0200)","22 Apr 2026 08:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Péage,SVP,OS-WIN-SRV DYN]" +"238501906","","vibotapps1.sanef.groupe","10.41.23.136","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:47PM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,flux_libre,Flux Libre,OS-LIN-SRV DYN]" +"238501960","","ls-st-gibrien","10.41.2.70","fe80:0:0:0:50f2:f3da:1356:b34e","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:28AM GMT+0200)","22 Apr 2026 10:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Péage,SVP,OS-WIN-SRV DYN]" +"238538628","","SVP20953.sanef-int.adds","10.132.5.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:45AM GMT+0200)","22 Apr 2026 05:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"238565707","","vibocmedi1","10.41.22.71","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:14AM GMT+0200)","22 Apr 2026 08:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"238724130","","vpbotarep1.sanef.groupe","10.41.23.28","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:42PM GMT+0200)","22 Apr 2026 08:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,log4j,OS-LIN-SRV DYN]" +"238996811","","SVP20942.sanef-int.adds","10.22.2.29","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:19AM GMT+0200)","22 Apr 2026 06:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"239590813","","SVP20954.sanef-int.adds","10.132.2.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 08:22PM GMT+0200)","22 Apr 2026 07:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"239623460","","SVP20972.sanef-int.adds","10.132.4.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:09PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"239805777","","SVP20943.sanef-int.adds","10.22.3.25","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:45AM GMT+0200)","22 Apr 2026 09:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"239823210","","vpdsiasat2.sanef.groupe","10.44.2.133","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.9","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:46PM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Satellite,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"239875267","","PCB22769.sanef.groupe","10.100.39.118","fe80:0:0:0:c642:c493:e79b:f026","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:39AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"240039974","","ls-spare-beu","10.212.33.254","fe80:0:0:0:3f86:1ead:ea5b:56d1","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:46AM GMT+0200)","22 Apr 2026 08:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,High,Production,Péage,Haute,VRF_PEAGE_DC,VRF_BACKUP_DC,SVP,OS-WIN-SRV DYN]" +"240046093","","SVP20974.sanef-int.adds","10.142.2.12","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:07AM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"240051824","","ls-bouville","10.252.12.200","fe80:0:0:0:c8dc:5997:49f0:2241","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Manifest Downloaded (21 Apr 2026 05:41PM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Péage,SVP,OS-WIN-SRV DYN]" +"240060233","","OSA20929.sanef-int.adds","10.152.20.33","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:30PM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"240062524","","MAC16761","10.255.1.226","0:0:0:0:0:0:0:1","macOS 26.3.1","5.3.0.31","Manifest Downloaded (09 Mar 2026 12:25PM GMT+0200)","09 Mar 2026 06:00PM GMT+0200","Default Profile","","PM,SCA,VM ","[Cloud Agent,BDD-POS DYN]" +"240161242","","SVP20958.sanef-int.adds","10.192.12.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:16PM GMT+0200)","22 Apr 2026 09:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"240162557","","SVP20956.sanef-int.adds","10.22.1.25","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:32PM GMT+0200)","22 Apr 2026 09:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"240163727","","LS-BOULAY-PSB","10.92.10.21","","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:05PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,High,Production,Péage,Haute,VRF_PEAGE_DC,VRF_BACKUP_DC,OS-WIN-SRV DYN]" +"240178229","","SVP20955.sanef-int.adds","10.22.1.17","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:10PM GMT+0200)","22 Apr 2026 05:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"240181789","","SVP20977.sanef-int.adds","10.106.18.12","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:10AM GMT+0200)","22 Apr 2026 08:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"240205944","","lrinfbcos1.sanef.groupe","10.45.9.196","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:54AM GMT+0200)","22 Apr 2026 07:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,COSWIN,OS-LIN-SRV DYN]" +"240208314","","vpbooardp1.sanef.groupe","10.44.6.131","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:14PM GMT+0200)","22 Apr 2026 10:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,Flux Libre,OS-WIN-SRV DYN]" +"240210698","","vpbotardp1.sanef.groupe","10.44.6.133","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 3091","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:57PM GMT+0200)","22 Apr 2026 09:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,Production,flux_libre,Flux Libre,OS-WIN-SRV DYN]" +"240373008","","vibocsman1","10.41.22.75","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:32AM GMT+0200)","22 Apr 2026 07:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"240378938","","vibocaprx1.sanef.groupe","192.168.21.227","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:59AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN]" +"240414317","","vibocharg1","10.41.22.70","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Manifest Downloaded (22 Apr 2026 01:14AM GMT+0200)","22 Apr 2026 07:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"240441858","","vpiadawsus1.sanef-int.adds","10.44.3.36","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:04PM GMT+0200)","22 Apr 2026 06:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server,OS-WIN-SRV DYN]" +"240758424","","PCB20642.sanef.groupe","10.205.0.84","2a01:e0a:810:d130:58c0:fdca:6ec9:66b4","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:08AM GMT+0200)","22 Apr 2026 08:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"241525484","","vpvsaaafl1.sanef.groupe","10.42.16.85","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:10PM GMT+0200)","22 Apr 2026 05:44AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241531310","","vpvsaaafl2.sanef.groupe","10.42.16.86","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:15PM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241533000","","vpvsaaahp2.sanef.groupe","10.42.16.87","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:28PM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241536911","","vpvsaaafz2.sanef.groupe","192.168.18.79","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:43PM GMT+0200)","22 Apr 2026 05:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241539604","","vpvsaaafz1.sanef.groupe","192.168.18.78","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:13PM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241549584","","vpvsaaahz2.sanef.groupe","192.168.18.80","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:16PM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241562936","","vpvsaagez1","192.168.18.75","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.8","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:24PM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241563039","","vpvsaages1.sanef.groupe","10.42.16.82","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:14PM GMT+0200)","22 Apr 2026 05:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241563624","","vpvsaages2.sanef.groupe","10.42.16.83","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:51PM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241563930","","vpvsaagez2","192.168.18.76","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:29AM GMT+0200)","22 Apr 2026 07:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241565638","","vpvsaamet1.sanef.groupe","10.42.16.80","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.6","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:39AM GMT+0200)","22 Apr 2026 07:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241565659","","vpvsaamet2.sanef.groupe","10.42.16.81","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:38AM GMT+0200)","22 Apr 2026 07:14AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241566273","","vpvsaamez1.sanef.groupe","192.168.18.73","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:16AM GMT+0200)","22 Apr 2026 07:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241566316","","vpvsaamez2","192.168.18.74","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:27AM GMT+0200)","22 Apr 2026 07:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241566442","","vpvsaarez2","192.168.18.77","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.8","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:11AM GMT+0200)","22 Apr 2026 07:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"241575082","","vrdepaast1.sanef-rec.fr","10.45.13.67","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:16AM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN]" +"241858782","","SVP22763.sanef-int.adds","10.209.20.101","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:00PM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"241859199","","vpdsiawik1.sanef.groupe","192.168.31.51","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:51AM GMT+0200)","22 Apr 2026 09:51AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,DocuWiki,OS-LIN-SRV DYN,MID-NGINX DYN]" +"241863974","","SVP22762.sanef-int.adds","10.209.20.100","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:53PM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"242119222","","vpvsaaiad1","10.44.0.104","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:30PM GMT+0200)","22 Apr 2026 06:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"242127639","","vpvsaaiad2","10.44.0.105","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:14PM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Gestion SAUVEGARDE]" +"243163293","","SVP20957.sanef-int.adds","10.132.3.25","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:06PM GMT+0200)","22 Apr 2026 07:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"243225301","","MTO22898.sanef.groupe","10.152.31.31","fe80:0:0:0:520d:d552:4704:2969","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 2428","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:48AM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"243422747","","SVP20939.sanef-int.adds","10.132.1.11","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:08PM GMT+0200)","22 Apr 2026 07:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"243982908","","vdechatal1.sanef.groupe","10.45.11.221","0:0:0:0:0:0:0:1","CentOS Linux 7.9.2009","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:32PM GMT+0200)","22 Apr 2026 06:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Obsolete,TALEND,DSI,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"244000868","","MTO22455.sanef.groupe","10.189.31.7","fe80:0:0:0:8586:9586:28ff:c5d","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6649","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:08PM GMT+0200)","22 Apr 2026 07:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"244006598","","MTO22783.sanef.groupe","10.107.31.10","fe80:0:0:0:cab7:e94c:b00b:a861","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6491","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:57PM GMT+0200)","22 Apr 2026 09:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"244010477","","MTO22902.sanef.groupe","10.106.31.1","fe80:0:0:0:7716:a0ee:a31b:d344","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5768","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:06PM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"244019009","","MTO21621.sanef.groupe","10.1.31.9","fe80:0:0:0:abe8:f8ea:ca4f:19df","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5768","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:10AM GMT+0200)","22 Apr 2026 03:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"244023476","","MTO22447.sanef.groupe","10.103.31.10","fe80:0:0:0:e871:8c4:e1d5:26da","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6060","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:09PM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"244050629","","MTO21622.sanef.groupe","10.8.31.1","fe80:0:0:0:c155:c4ff:f337:13b2","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6491","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:30PM GMT+0200)","22 Apr 2026 07:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"244496219","","OSA20930.sanef-int.adds","10.152.20.31","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:53PM GMT+0200)","22 Apr 2026 05:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"244968772","","MTO21618.sanef.groupe","10.89.31.7","fe80:0:0:0:ae10:6d62:8e37:7f85","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6199","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:45PM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"245276150","","MTO21623.sanef.groupe","10.13.31.7","fe80:0:0:0:993:4480:87cc:65fa","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 2428","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:09AM GMT+0200)","22 Apr 2026 06:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"245297076","","MTO21617.sanef.groupe","10.3.31.9","fe80:0:0:0:105d:ac51:2457:de8d","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5472","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:01PM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"245518417","","MTO20923.sanef.groupe","10.100.39.73","fe80:0:0:0:5377:f80e:57b:3ca4","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 4890","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:18AM GMT+0200)","21 Apr 2026 04:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"246115834","","MTR-9BD4804","10.100.32.204","fe80:0:0:0:fbef:b25a:716f:8ecb","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:38PM GMT+0200)","22 Apr 2026 06:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"246261768","","MTO22332.sanef.groupe","10.202.31.10","fe80:0:0:0:818c:7b45:e9d:65f9","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 4037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:23PM GMT+0200)","22 Apr 2026 10:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"246263460","","vraptbjup1","10.45.10.163","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:15PM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,BDD,DSI,OS-LIN-SRV DYN,MID-NGINX DYN]" +"246316015","","MTO22261.sanef.groupe","10.200.40.26","fe80:0:0:0:97db:b70a:69de:8a19","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5039","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:17PM GMT+0200)","22 Apr 2026 07:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"246505713","","MTO21065.sanef.groupe","10.155.31.17","fe80:0:0:0:6278:2c7c:9aa3:b1fd","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5768","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:37AM GMT+0200)","22 Apr 2026 07:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"246580411","","VMXOBI.sanef.groupe","10.30.6.4","fe80:0:0:0:f51f:d056:b0fd:a91a","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5909","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:51PM GMT+0200)","22 Apr 2026 07:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"246611741","","MTO21050.sanef.groupe","10.108.31.3","fe80:0:0:0:a388:3cbe:808:856e","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5768","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:10PM GMT+0200)","22 Apr 2026 07:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"246623861","","MTO21049.sanef.groupe","10.104.31.0","fe80:0:0:0:a153:4ed3:2c69:d0f5","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 2428","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:47PM GMT+0200)","22 Apr 2026 06:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"247092697","","MTO21607.sanef.groupe","10.2.31.1","fe80:0:0:0:eb2:1bca:f6f6:37c7","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5768","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:19AM GMT+0200)","22 Apr 2026 07:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"247101827","","MTO21609.sanef.groupe","10.6.31.2","fe80:0:0:0:b128:6c23:1ea7:cea3","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6649","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:29PM GMT+0200)","22 Apr 2026 08:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"248469383","","MTO22331.sanef.groupe","10.200.40.25","fe80:0:0:0:65da:b401:894b:150c","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6345","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:02AM GMT+0200)","22 Apr 2026 05:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"248475907","","MTO21605.sanef.groupe","10.11.31.12","fe80:0:0:0:ca7d:bf6:b9c6:8496","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5768","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:37AM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"248751878","","MTO21604.sanef.groupe","10.4.31.81","fe80:0:0:0:c852:5a94:e1f6:8395","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5189","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:35PM GMT+0200)","22 Apr 2026 07:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"249286903","","vrsvpasan3","10.45.9.175","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:56PM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,SVP,OS-WIN-SRV DYN]" +"249294684","","vrsvpaalb1","10.45.9.173","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:46PM GMT+0200)","22 Apr 2026 06:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,SVP,OS-WIN-SRV DYN]" +"249342100","","vrameapmv1.sanef-rec.fr","10.45.2.130","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:43PM GMT+0200)","22 Apr 2026 06:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,MIVISU,OS-LIN-SRV DYN]" +"249487889","","vrsvpasap2","10.45.9.174","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:24PM GMT+0200)","22 Apr 2026 06:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,SVP,OS-WIN-SRV DYN]" +"249813575","","lrdsibrac1.sanef-rec.fr","10.45.7.9","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:08PM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,ORACLE,OS-LIN-SRV DYN]" +"249819387","","vraptapsh1.recette.adds","10.45.10.228","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:22AM GMT+0200)","22 Apr 2026 09:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,SHAREPOINT,OS-WIN-SRV DYN]" +"249836031","","lrdsibrac2.sanef-rec.fr","10.45.7.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:08AM GMT+0200)","22 Apr 2026 07:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,ORACLE,OS-LIN-SRV DYN]" +"249841179","","vpbocardp1.sanef.groupe","10.44.6.132","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:54AM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,flux_libre,OS-WIN-SRV DYN]" +"249846543","","vpa14bgtc1","10.41.19.69","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:05PM GMT+0200)","22 Apr 2026 09:00AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-SQL DYN]" +"250360594","","SVP20959.sanef-int.adds","10.200.2.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:42PM GMT+0200)","22 Apr 2026 05:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"253759791","","REX20980.sanef-int.adds","10.45.11.241","fe80:0:0:0:9b:b804:b3e5:d190","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:28AM GMT+0200)","22 Apr 2026 06:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"255409754","","lramebrac1.sanef-rec.fr","10.45.2.110","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:10AM GMT+0200)","22 Apr 2026 07:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Sextan,Amelie,OS-LIN-SRV DYN]" +"255415529","","lramebrac2.sanef-rec.fr","10.45.2.111","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:14PM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Sextan,Amelie,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"255418106","","lramebrac3.sanef-rec.fr","10.45.2.112","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:02PM GMT+0200)","22 Apr 2026 08:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Sextan,Amelie,OS-LIN-SRV DYN]" +"255419684","","lramebrac4.sanef-rec.fr","10.45.2.113","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:51PM GMT+0200)","22 Apr 2026 08:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Sextan,Amelie,OS-LIN-SRV DYN]" +"255916763","","vpcybacpm1.sanef.groupe","10.44.1.164","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:31PM GMT+0200)","22 Apr 2026 07:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,CyberArk,OS-WIN-SRV DYN]" +"257780648","","vpsupapol4.sanef.groupe","10.44.5.106","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:48AM GMT+0200)","22 Apr 2026 07:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Centreon,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"260022315","","vrdsiasat1.sanef-rec.fr","10.45.0.164","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:47AM GMT+0200)","22 Apr 2026 07:24AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,Satellite,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"262514109","","vpecmapss3.sanef.groupe","10.44.5.67","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:40AM GMT+0200)","22 Apr 2026 07:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,SCCM,OS-WIN-SRV DYN,BDD-SQL DYN]" +"263390489","","vpexpbtex1","10.41.40.26","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:26PM GMT+0200)","22 Apr 2026 09:55AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Transports Exceptionnels,OS-LIN-SRV DYN]" +"264669796","","vrpbiadgw1.recette.adds","10.45.7.169","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:25AM GMT+0200)","22 Apr 2026 06:30AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Recette,PowerBI,OS-WIN-SRV DYN]" +"265688076","","vpexpatex1.sanef.groupe","10.41.40.25","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:10PM GMT+0200)","22 Apr 2026 10:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Transports Exceptionnels,OS-LIN-SRV DYN]" +"266513879","","vpecmbsql3.sanef.groupe","10.44.5.68","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:37AM GMT+0200)","22 Apr 2026 09:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-SQL DYN]" +"267395255","","vtdsiakib1.sanef-rec.fr","10.45.1.172","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:35PM GMT+0200)","22 Apr 2026 06:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN]" +"267399590","","SVP21062.sanef-int.adds","10.142.3.25","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:35AM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"267466879","","vpracaquo1.sanef.groupe","10.100.16.18","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:52AM GMT+0200)","22 Apr 2026 07:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"267915555","","VPA14CGTC1","10.41.19.75","fe80:0:0:0:68bf:526c:f778:246c","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6783","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:24PM GMT+0200)","22 Apr 2026 06:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"269157283","","SVP21070.sanef-int.adds","10.5.20.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:28PM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"269157478","","SVP21059.sanef-int.adds","10.5.20.100","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:43PM GMT+0200)","22 Apr 2026 07:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"269294748","","SVP22813.sanef-int.adds","10.100.20.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:49AM GMT+0200)","22 Apr 2026 07:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"269311813","","SVP22765.sanef-int.adds","10.142.2.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.0.397","VM Manifest Downloaded (04 Apr 2026 11:10PM GMT+0200)","05 Apr 2026 04:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"269316158","","vtdsiaels1.sanef-rec.fr","10.45.1.170","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (18 Apr 2026 07:09AM GMT+0200)","18 Apr 2026 07:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"269330646","","vtdsiaels2.sanef-rec.fr","10.45.1.171","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Configuration Downloaded (14 Mar 2026 03:34AM GMT+0200)","14 Mar 2026 04:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"269338854","","vtdsiaquo1.sanef-rec.fr","10.100.16.100","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:45PM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"269374554","","vpa14agtc1","10.41.19.70","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:25PM GMT+0200)","22 Apr 2026 07:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-SQL DYN]" +"269390447","","vpa14agtc2","10.41.19.71","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:24AM GMT+0200)","22 Apr 2026 07:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-SQL DYN]" +"269620053","","SVP21069.sanef-int.adds","10.142.1.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:36PM GMT+0200)","22 Apr 2026 06:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"269816525","","SVP21064.sanef-int.adds","10.100.20.27","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:24PM GMT+0200)","22 Apr 2026 07:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"269822805","","vragtatse3.recette.adds","10.45.1.231","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:56PM GMT+0200)","22 Apr 2026 09:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,OS-WIN-SRV DYN]" +"269828069","","SVP21072.sanef-int.adds","10.100.20.100","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:21AM GMT+0200)","22 Apr 2026 07:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"269834129","","SVP21060.sanef-int.adds","10.5.20.101","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:34PM GMT+0200)","22 Apr 2026 09:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"269850043","","SVP21073.sanef-int.adds","10.5.20.21","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:32PM GMT+0200)","22 Apr 2026 05:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"269860731","","SVP21075.sanef-int.adds","10.5.29.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:48AM GMT+0200)","22 Apr 2026 09:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"269936877","","vragtatse1.recette.adds","10.45.1.228","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:28AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,OS-WIN-SRV DYN]" +"270549061","","SVP21047.sanef-int.adds","10.152.29.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:15AM GMT+0200)","22 Apr 2026 07:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"270583136","","vpiadapki4.sanef-int.adds","10.44.3.13","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:02PM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,Gestion_PKI,DSI,OS-WIN-SRV DYN]" +"270620850","","SVP21038.sanef-int.adds","10.152.2.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:05AM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"270773160","","SVP22799.sanef-int.adds","10.1.1.13","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.1.0.28","Inventory Scan Complete (21 Apr 2026 07:17PM GMT+0200)","22 Apr 2026 06:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"270777465","","SVP21052.sanef-int.adds","10.132.2.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:45PM GMT+0200)","22 Apr 2026 07:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"270786600","","SVP21044.sanef-int.adds","10.152.20.22","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:57PM GMT+0200)","22 Apr 2026 08:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"270786601","","SVP21042.sanef-int.adds","10.152.20.102","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:30PM GMT+0200)","22 Apr 2026 08:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"270790245","","SVP21041.sanef-int.adds","10.154.2.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:39AM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"270805290","","SVP21067.sanef-int.adds","10.22.1.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:00PM GMT+0200)","22 Apr 2026 10:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"270831169","","SVP21040.sanef-int.adds","10.152.20.101","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:33PM GMT+0200)","22 Apr 2026 06:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"270839116","","SVP21043.sanef-int.adds","10.152.20.21","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:23AM GMT+0200)","22 Apr 2026 08:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"271018752","","REX21532.sanef-int.adds","10.45.11.238","fe80:0:0:0:ecf5:a517:e98e:3f05","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Manifest Downloaded (21 Apr 2026 07:03PM GMT+0200)","22 Apr 2026 06:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"271044748","","SVP21055.sanef-int.adds","10.155.2.25","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:24AM GMT+0200)","22 Apr 2026 07:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"271067968","","SVP21039.sanef-int.adds","10.182.6.25","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:51PM GMT+0200)","22 Apr 2026 10:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"271287627","","SVP21056.sanef-int.adds","10.106.2.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:40PM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"271509896","","PCM16040.sanef.groupe","10.200.61.6","fe80:0:0:0:209c:af45:5765:904e","Microsoft Windows 10 Entreprise 10.0.19042 64 bits N/A Build 19042 UBR 746","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:02PM GMT+0200)","22 Apr 2026 10:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"271510081","","SVP21054.sanef-int.adds","10.106.18.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:42AM GMT+0200)","22 Apr 2026 05:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"272326721","","vvbotaapm2.sanef-rec.fr","10.45.6.157","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:47PM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,Flux Libre,OS-LIN-SRV DYN]" +"272327301","","vvbotaapm1.sanef-rec.fr","10.45.6.137","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:01AM GMT+0200)","22 Apr 2026 07:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,OS-LIN-SRV DYN]" +"272386986","","MTR-HBD4804","10.103.32.200","fe80:0:0:0:279a:fff4:c8a9:36b7","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:41PM GMT+0200)","22 Apr 2026 07:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"272517340","","SVP22453.sanef-int.adds","10.89.29.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:05AM GMT+0200)","22 Apr 2026 07:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"272562374","","SVP21045.sanef-int.adds","10.154.29.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:19AM GMT+0200)","22 Apr 2026 08:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"272737296","","SVP21051.sanef-int.adds","10.155.29.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:30PM GMT+0200)","22 Apr 2026 09:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"272957025","","SVP21048.sanef-int.adds","10.7.48.11","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:25AM GMT+0200)","22 Apr 2026 08:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"272969322","","SVP21053.sanef-int.adds","10.82.14.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:15PM GMT+0200)","22 Apr 2026 07:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"273591568","","vppbiadgw1.sanef.groupe","10.46.34.12","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:11AM GMT+0200)","22 Apr 2026 07:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"273781743","","PCB17201.sanef.groupe","10.205.1.16","fe80:0:0:0:51cd:7e6c:2ecf:dcd8","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","VM Manifest Downloaded (10 Apr 2026 09:29AM GMT+0200)","15 Apr 2026 08:12PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"273997305","","vpbocjump1.sanef.groupe","10.41.22.14","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:40AM GMT+0200)","22 Apr 2026 10:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,flux_libre,Flux Libre,OS-WIN-SRV DYN]" +"277325037","","VRAPTCPSH1","10.45.13.99","fe80:0:0:0:6dbf:352e:e0cd:de75","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6936","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:40PM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Recette]" +"279112238","","vpemvasat1.sanef.groupe","192.168.100.141","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:04PM GMT+0200)","22 Apr 2026 06:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"279142399","","vrdecasas5.sanef.groupe","10.45.1.8","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:57PM GMT+0200)","22 Apr 2026 06:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"279153754","","vrdecasas3.sanef.groupe","10.45.1.6","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:30PM GMT+0200)","22 Apr 2026 10:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN]" +"279155823","","vrdecasas2.sanef.groupe","10.45.1.5","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:28PM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,BDD-POS DYN]" +"279163184","","vrdecasas4.sanef.groupe","10.45.1.7","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:01AM GMT+0200)","22 Apr 2026 06:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,BDD-POS DYN]" +"279169027","","vrdecasas1.sanef.groupe","10.45.1.4","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:56PM GMT+0200)","22 Apr 2026 06:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN]" +"279169222","","vrtrabtpc1","10.43.255.10","fe80:0:0:0:1b9:52a5:36f:b6b8","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8511","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:04PM GMT+0200)","22 Apr 2026 06:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN]" +"279991991","","vpnitardp1","192.168.191.68","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:23PM GMT+0200)","22 Apr 2026 06:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,flux_libre,Flux Libre,OS-WIN-SRV DYN]" +"280014653","","vpgeoagps2","192.168.40.67","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:04PM GMT+0200)","22 Apr 2026 05:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,TAG-SRVEXPOSEINTERNET,OS-WIN-SRV DYN]" +"280776380","","PCB21322.sanef.groupe","10.220.31.17","fe80:0:0:0:40bf:35aa:bbc8:1790","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 09:19AM GMT+0200)","21 Apr 2026 09:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280778017","","PCB21333.sanef.groupe","10.205.0.71","fe80:0:0:0:e5e2:b09d:5d43:3520","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","Inventory Scan Complete (15 Apr 2026 11:38AM GMT+0200)","15 Apr 2026 11:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280788729","","PCB21325.sanef.groupe","10.220.31.37","fe80:0:0:0:392a:22c0:afcf:9815","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:20AM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280792658","","PCB21337.sanef.groupe","10.202.31.8","fe80:0:0:0:1a67:d902:ec0c:568b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:31AM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280792740","","PCB21329.sanef.groupe","10.202.31.0","fe80:0:0:0:3b69:3d00:f26e:454d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 03:13PM GMT+0200)","21 Apr 2026 03:13PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280811046","","PCB21347.sanef.groupe","10.202.31.12","fe80:0:0:0:32fa:d1b6:5c6a:34e4","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6783","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:47AM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280812225","","PCB21330.sanef.groupe","10.202.31.25","fe80:0:0:0:d0bd:ce11:2d09:5dd4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (10 Apr 2026 03:37PM GMT+0200)","10 Apr 2026 07:07PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280824387","","PCB22514.sanef.groupe","10.220.31.36","fe80:0:0:0:9226:e536:29e2:d8b6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 4946","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:40AM GMT+0200)","22 Apr 2026 08:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280824922","","PCB21332.sanef.groupe","10.220.31.40","fe80:0:0:0:825b:ef04:5bc5:226e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:17AM GMT+0200)","17 Apr 2026 02:52PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280830803","","PCB21328.sanef.groupe","10.202.31.17","fe80:0:0:0:22df:4726:d74e:4af0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:40AM GMT+0200)","22 Apr 2026 08:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280841848","","PCB21341.sanef.groupe","10.205.0.115","fe80:0:0:0:f05:e217:6df0:24ce","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:33AM GMT+0200)","22 Apr 2026 08:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280843592","","PCB22510.sanef.groupe","10.208.31.16","fe80:0:0:0:150e:5bbe:8ae4:7947","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:25AM GMT+0200)","22 Apr 2026 09:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280843816","","PCB22511.sanef.groupe","10.255.2.143","fe80:0:0:0:55dd:61a:7508:dd61","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:51AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280845992","","PCB22508.sanef.groupe","10.202.31.9","fe80:0:0:0:e215:bc65:481:e640","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:45AM GMT+0200)","22 Apr 2026 09:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"280846706","","PCB21324.sanef.groupe","10.205.0.36","fe80:0:0:0:8dd7:b399:851a:41fa","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 07:00AM GMT+0200)","17 Apr 2026 05:54PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281007422","","PCB22534.sanef.groupe","10.220.31.10","fe80:0:0:0:b276:519f:78da:1d5b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:23AM GMT+0200)","21 Apr 2026 10:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281012466","","PCB21326.sanef.groupe","10.220.31.1","fe80:0:0:0:b4a:ee40:c937:fee3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:27AM GMT+0200)","21 Apr 2026 09:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281013406","","PCB22533.sanef.groupe","10.202.31.8","fe80:0:0:0:4934:fb98:e316:9774","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","VM Manifest Downloaded (27 Mar 2026 08:48AM GMT+0200)","27 Mar 2026 01:50PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281015704","","PCB22507.sanef.groupe","10.202.31.7","fe80:0:0:0:aaf6:167c:c52b:aecc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:47AM GMT+0200)","22 Apr 2026 09:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281019343","","PCB21345.sanef.groupe","10.202.31.26","fe80:0:0:0:fa6e:74e3:bb8c:1d5b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 08:46AM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281019346","","PCB21331.sanef.groupe","10.202.31.19","fe80:0:0:0:9a8b:64dd:e108:4e23","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:45AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281021857","","PCB22512.sanef.groupe","10.202.31.40","fe80:0:0:0:6361:f337:2902:61f4","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6060","6.4.0.397","VM Manifest Downloaded (19 Mar 2026 08:13PM GMT+0200)","19 Mar 2026 08:18PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281025877","","PCB21334.sanef.groupe","10.255.3.174","fe80:0:0:0:393e:ef2d:2613:56c0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:50AM GMT+0200)","21 Apr 2026 08:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281032077","","PCB21335.sanef.groupe","10.202.31.36","fe80:0:0:0:3817:2405:77d5:94e4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 01:59PM GMT+0200)","16 Apr 2026 07:48PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281032241","","PCB21327.sanef.groupe","10.255.2.10","fe80:0:0:0:7122:e749:bf5c:dc3f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:10PM GMT+0200)","21 Apr 2026 03:10PM GMT+0200","Profil Workstation","","PM,SCA ","[Cloud Agent,Workstation]" +"281047365","","PCB21336.sanef.groupe","10.202.31.15","fe80:0:0:0:8ae5:2bdc:c582:d214","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (20 Apr 2026 06:44AM GMT+0200)","20 Apr 2026 06:44AM GMT+0200","Profil Workstation","","PM,SCA ","[Cloud Agent,Workstation]" +"281049216","","PCB22530.sanef.groupe","172.16.208.13","fe80:0:0:0:ed38:78c9:3afa:d006","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:49AM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"281050802","","PCB22527.sanef.groupe","10.202.31.11","fe80:0:0:0:a9b0:d2ca:66d1:90d5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (20 Mar 2026 05:43PM GMT+0200)","20 Mar 2026 06:57PM GMT+0200","Profil Workstation","","PM,VM ","[Cloud Agent,Workstation]" +"281057287","","PCB21350.sanef.groupe","10.202.31.3","fe80:0:0:0:28bb:1f59:712b:fae4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:24PM GMT+0200)","21 Apr 2026 03:24PM GMT+0200","Profil Workstation","","PM,SCA ","[Cloud Agent,Workstation]" +"281061306","","PCB22529.sanef.groupe","10.220.31.58","fe80:0:0:0:dc12:cc3c:8c98:9294","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:25AM GMT+0200)","21 Apr 2026 09:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281061310","","PCB22531.sanef.groupe","10.202.31.11","fe80:0:0:0:2213:488c:57f2:45b4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (20 Apr 2026 01:44PM GMT+0200)","20 Apr 2026 01:44PM GMT+0200","Profil Workstation","","PM,SCA ","[Cloud Agent,Workstation]" +"281406923","","vtpataels1.sanef-rec.fr","10.45.9.133","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:16PM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,VM ","[Cloud Agent,Linux Server,Recette,Patrimoine,OS-LIN-SRV DYN,BDD-ELA DYN]" +"281432893","","PCB21318.sanef.groupe","10.255.1.147","fe80:0:0:0:8bbb:3c7f:7056:6308","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Manifest Downloaded (21 Apr 2026 08:20AM GMT+0200)","21 Apr 2026 08:20AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"281435082","","PCB21321.sanef.groupe","10.202.31.31","fe80:0:0:0:a79c:11de:a684:d622","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 02:48PM GMT+0200)","21 Apr 2026 02:48PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"281447180","","PCB21349.sanef.groupe","10.202.31.24","fe80:0:0:0:9f29:8dc5:a8c9:39e5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:32AM GMT+0200)","22 Apr 2026 08:32AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"282000274","","SVP22766.sanef-int.adds","10.105.29.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:20PM GMT+0200)","22 Apr 2026 09:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"282386306","","SVP21063.sanef-int.adds","10.108.2.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:13PM GMT+0200)","22 Apr 2026 08:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"282888814","","vrdsiagit1.sanef-rec.fr","10.45.7.229","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:48PM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,GitLab,OS-LIN-SRV DYN,MID-NGINX DYN]" +"282933324","","SVP22872.sanef-int.adds","10.209.20.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:24PM GMT+0200)","21 Apr 2026 09:24PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"282956067","","SVP22871.sanef-int.adds","10.209.20.21","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:04PM GMT+0200)","21 Apr 2026 10:04PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"283859437","","vpstlbpea2","10.41.13.51","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 3453","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:59AM GMT+0200)","22 Apr 2026 06:31AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Production,Systel,OS-WIN-SRV DYN,BDD-SQL DYN]" +"283885210","","SVP22855.sanef-int.adds","10.12.20.101","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:28AM GMT+0200)","22 Apr 2026 02:28AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"283907894","","SVP22857.sanef-int.adds","10.12.20.102","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:24AM GMT+0200)","22 Apr 2026 08:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"284079753","","MTR-FBD4804","10.100.32.207","fe80:0:0:0:55fe:3ba4:c5b9:b305","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:10PM GMT+0200)","22 Apr 2026 07:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"284156129","","SVP22864.sanef-int.adds","10.112.2.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:54AM GMT+0200)","22 Apr 2026 09:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"284198268","","MTR-DKRTL64","10.100.32.213","fe80:0:0:0:fb4:8784:e2ba:d5d","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:09PM GMT+0200)","22 Apr 2026 07:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"284319306","","MTR-1KRTL64","10.208.32.200","fe80:0:0:0:e148:752:733a:f1d6","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:50AM GMT+0200)","22 Apr 2026 07:50AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"284373652","","vtdsibquo1.sanef-rec.fr","10.100.16.101","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:22AM GMT+0200)","22 Apr 2026 07:01AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,PATRIMOINE,OS-LIN-SRV DYN]" +"284376210","","SVP22888.sanef-int.adds","10.92.11.29","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:11AM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"284376405","","SVP22862.sanef-int.adds","10.112.1.26","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:15PM GMT+0200)","21 Apr 2026 10:15PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"284376860","","vtdsibpmm1.sanef-rec.fr","10.45.1.175","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:06AM GMT+0200)","22 Apr 2026 06:42AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,PATRIMOINE,OS-LIN-SRV DYN]" +"284390018","","vtdsibpgs3.sanef-rec.fr","10.45.1.174","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Manifest Downloaded (13 Feb 2026 01:18PM GMT+0200)","13 Feb 2026 01:18PM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,PATRIMOINE,OS-LIN-SRV DYN,BDD-POS DYN]" +"284462757","","MTR-8BD4804","10.220.32.200","fe80:0:0:0:121d:4314:1aff:7b0c","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:50PM GMT+0200)","21 Apr 2026 10:50PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"285107069","","ls-spare-alb","10.252.12.254","fe80:0:0:0:99b:e5e1:bed7:99a8","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:25PM GMT+0200)","22 Apr 2026 07:27AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Péage,SVP,OS-WIN-SRV DYN]" +"285173835","","SVP22870.sanef-int.adds","10.212.26.205","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.2.5.4","Inventory Scan Complete (21 Apr 2026 10:43PM GMT+0200)","21 Apr 2026 10:43PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"285212527","","SVP22869.sanef-int.adds","10.212.26.209","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:44AM GMT+0200)","22 Apr 2026 08:44AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"285257306","","SVP22854.sanef-int.adds","10.112.3.25","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:19PM GMT+0200)","21 Apr 2026 10:19PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"285269478","","vrpctbams1","10.45.13.195","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8389","6.3.0.81","Manifest Downloaded (25 Feb 2026 11:07AM GMT+0200)","25 Feb 2026 11:07AM GMT+0200","Default Profile","","PM,SCA,VM ","[Cloud Agent,Recette,OS-WIN-SRV DYN,BDD-POS DYN]" +"285274690","","SVP22867.sanef-int.adds","10.212.36.205","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:05AM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"285481462","","SVP22866.sanef-int.adds","10.92.5.10","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (20 Apr 2026 08:45PM GMT+0200)","21 Apr 2026 08:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"286033623","","vrsvpapar2","10.45.9.178","fe80:0:0:0:a3f1:9d1a:c622:9854","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8146","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:30PM GMT+0200)","22 Apr 2026 07:14AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,SVP,OS-WIN-SRV DYN]" +"287085773","","MTR-8KRTL64","10.4.32.201","fe80:0:0:0:1d2e:e23a:bff3:feef","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:23PM GMT+0200)","22 Apr 2026 07:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"287165442","","MTR-GJRTL64","10.100.32.201","fe80:0:0:0:4ab6:41fb:4a:ef86","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:55PM GMT+0200)","22 Apr 2026 07:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"287505491","","vrecmapss1.recette.adds","10.45.7.36","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4529","6.4.1.22","Inventory Manifest Downloaded (21 Apr 2026 08:10PM GMT+0200)","22 Apr 2026 06:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,OS-WIN-SRV DYN,BDD-SQL DYN]" +"287511377","","SVP22863.sanef-int.adds","10.11.16.25","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:57AM GMT+0200)","22 Apr 2026 07:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"287512303","","ls-spare-mtz","10.12.2.250","fe80:0:0:0:6eca:290f:ee3d:6f1d","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:05PM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Péage,SVP,OS-WIN-SRV DYN]" +"287513653","","vpstlbtel1.sanef-int.adds","10.41.13.52","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 3453","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:07AM GMT+0200)","22 Apr 2026 10:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-SQL DYN]" +"287925589","","vrosapast1.sanef-rec.fr","10.45.9.51","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:43PM GMT+0200)","22 Apr 2026 06:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN]" +"287926188","","vrosapapp1.sanef-rec.fr","10.45.9.70","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:21PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN]" +"287936544","","vrosapels1.sanef-rec.fr","10.45.9.71","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:50PM GMT+0200)","22 Apr 2026 05:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,BDD-ELA DYN]" +"287937932","","vrosapels2.sanef-rec.fr","10.45.9.72","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:50PM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,BDD-ELA DYN]" +"287954932","","vrosapquo1.sanef-rec.fr","10.100.16.102","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:29PM GMT+0200)","22 Apr 2026 09:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,BDD-ELA DYN]" +"290939628","","SVP22782.sanef-int.adds","10.100.29.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:47PM GMT+0200)","22 Apr 2026 07:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"290942898","","SVP22865.sanef-int.adds","10.11.2.22","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:51AM GMT+0200)","22 Apr 2026 07:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"291118836","","PCB20921.sanef.groupe","10.4.31.11","fe80:0:0:0:f023:27cc:6fc:57fd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:57AM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"291945704","","vpdaibctc2","10.41.70.11","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:53AM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN]" +"292150349","","ls-spare-tqx","10.4.2.252","fe80:0:0:0:6b41:6b3c:ae09:56ae","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:39AM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Péage,SVP,OS-WIN-SRV DYN]" +"292508850","","VRBURXBAN1.sanef.groupe","10.30.4.1","fe80:0:0:0:57d4:ca05:431b:8c8d","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6936","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:57PM GMT+0200)","22 Apr 2026 07:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"292523826","","vpsimaexp2.sanef.groupe","10.30.10.130","0:0:0:0:0:0:0:1","CentOS Linux 8.1.1911","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:22AM GMT+0200)","22 Apr 2026 09:22AM GMT+0200","Profil Server (Linux/Windows)","","PM(ERROR),SCA,VM ","[Cloud Agent,Linux Server]" +"292527147","","VMXATR","10.30.4.16","fe80:0:0:0:503d:818e:587d:1887","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5909","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:46PM GMT+0200)","22 Apr 2026 09:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"294113565","","vpadvangx1.sanef.groupe","192.168.20.67","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:12AM GMT+0200)","22 Apr 2026 06:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Péage,ADV-U,OS-LIN-SRV DYN,MID-NGINX DYN]" +"294119824","","vpvsaarec2.sanef.groupe","10.42.16.84","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:20PM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server]" +"294135637","","vradvangx1.sanef-rec.fr","192.168.20.83","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:58PM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Péage,ADV-U,OS-LIN-SRV DYN,MID-NGINX DYN]" +"294384825","","vptrabwaz1.sanef.groupe","10.41.40.124","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:31PM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"294564327","","vpdepbels1.sanef.groupe","10.41.40.62","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:06PM GMT+0200)","22 Apr 2026 09:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"295082073","","vpdepaast1.sanef.groupe","10.41.40.60","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:00AM GMT+0200)","22 Apr 2026 06:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"295103250","","vpngwasic2","10.44.200.101","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:05AM GMT+0200)","22 Apr 2026 06:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,TAG-SIC,TAG-SIA]" +"295110908","","vpngwasic1","10.44.200.100","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:43AM GMT+0200)","22 Apr 2026 10:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,TAG-SIC,TAG-SIA]" +"295268950","","PCB22963.sanef.groupe","10.100.39.31","fe80:0:0:0:bafd:58e7:df6:e3c7","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:01AM GMT+0200)","22 Apr 2026 10:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"295273598","","vpdepaapp1.sanef.groupe","10.41.40.61","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:14PM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,MID-NGINX DYN]" +"295291112","","vpvsaasic2","10.44.200.105","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:49PM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,TAG-SIC,TAG-SIA]" +"295300195","","vpvsaasic1","10.44.200.104","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:23PM GMT+0200)","22 Apr 2026 10:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,TAG-SIC,TAG-SIA]" +"295368261","","vvpeaabst3.sanef-rec.fr","10.45.10.104","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:51PM GMT+0200)","22 Apr 2026 05:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,BOOST,OS-LIN-SRV DYN,MID-NGINX DYN]" +"295835229","","vpngwasia1","10.44.2.196","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:20PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server]" +"295840239","","vpngwasia2","10.44.2.197","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:24AM GMT+0200)","22 Apr 2026 06:59AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server]" +"295952448","","vpvsaasia2","10.44.2.201","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:44PM GMT+0200)","22 Apr 2026 08:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server]" +"295975028","","vpvsaasia1","10.44.2.200","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:21AM GMT+0200)","22 Apr 2026 06:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server]" +"296033054","","vpiadapol1","10.44.3.68","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:14AM GMT+0200)","22 Apr 2026 06:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"296257160","","REX21541.sanef-int.adds","10.45.11.237","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Manifest Downloaded (21 Apr 2026 09:15PM GMT+0200)","22 Apr 2026 09:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"296273892","","REX21544.sanef-int.adds","10.100.91.82","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:51AM GMT+0200)","22 Apr 2026 10:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"296274639","","REX21540.sanef-int.adds","10.12.91.80","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:56AM GMT+0200)","22 Apr 2026 07:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"296277432","","REX21538.sanef-int.adds","10.100.91.83","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:57AM GMT+0200)","22 Apr 2026 06:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"296277825","","REX21548.sanef-int.adds","10.100.91.81","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:46AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"296278413","","REX21552.sanef-int.adds","10.100.91.80","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:39AM GMT+0200)","22 Apr 2026 09:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"296278441","","REX21542.sanef-int.adds","10.45.11.236","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:40PM GMT+0200)","22 Apr 2026 06:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"296279621","","REX21551.sanef-int.adds","10.200.91.81","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:10PM GMT+0200)","22 Apr 2026 06:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"296411443","","REX21543.sanef-int.adds","10.200.91.80","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:10PM GMT+0200)","22 Apr 2026 07:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"296495204","","REX21603.sanef-int.adds","10.200.91.82","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5909","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:31PM GMT+0200)","22 Apr 2026 07:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"297160954","","PCB22967.sanef.groupe","10.100.39.45","fe80:0:0:0:f41e:d0af:d6f1:1160","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:22AM GMT+0200)","21 Apr 2026 04:18PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"297211374","","vemvsym1","192.168.100.79","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4529","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:49AM GMT+0200)","22 Apr 2026 07:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,OS-WIN-SRV DYN,BDD-SQL DYN]" +"297474042","","OSA22819.sanef-int.adds","10.209.20.32","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:55PM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"297558271","","OSA22801.sanef-int.adds","10.209.20.31","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:10AM GMT+0200)","22 Apr 2026 05:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"298436585","","vpameapmv1.sanef.groupe","10.44.201.3","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:52AM GMT+0200)","22 Apr 2026 07:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,TAG-SIC,TAG-MIVISUPMV]" +"298442394","","vpameapmv2.sanef.groupe","10.44.201.4","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:35PM GMT+0200)","22 Apr 2026 10:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,TAG-SIC,TAG-MIVISUPMV]" +"298481643","","SVP20975.sanef-int.adds","10.182.6.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","VM Manifest Downloaded (09 Apr 2026 03:08PM GMT+0200)","09 Apr 2026 08:57PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"299204442","","VMB12156.sanef.groupe","10.45.13.207","fe80:0:0:0:6b80:cd98:b342:714e","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Manifest Downloaded (15 Apr 2026 08:43AM GMT+0200)","15 Apr 2026 01:48PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"299322920","","MTR-DBD4804","10.219.32.200","fe80:0:0:0:b43:4f2c:5c6d:2f81","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:51PM GMT+0200)","22 Apr 2026 06:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"300252485","","SVP22858.sanef-int.adds","10.12.20.22","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:07AM GMT+0200)","22 Apr 2026 06:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"300253495","","SVP22856.sanef-int.adds","10.12.20.21","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:59PM GMT+0200)","22 Apr 2026 06:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"300882812","","PCB22462.sanef.groupe","10.104.31.9","fe80:0:0:0:7c42:8d68:4b6f:fd43","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:35AM GMT+0200)","22 Apr 2026 08:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"300889362","","OSA22767.sanef-int.adds","10.209.20.30","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:00AM GMT+0200)","22 Apr 2026 09:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"300893075","","PCB23613.sanef.groupe","10.103.31.3","fe80:0:0:0:84ee:e3ff:bcb8:6c60","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:27AM GMT+0200)","22 Apr 2026 07:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"301230398","","vrdsismtp2.sanef-rec.fr","192.168.19.53","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:41AM GMT+0200)","22 Apr 2026 07:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"301233552","","vrdsismtp1.sanef-rec.fr","192.168.19.52","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:42PM GMT+0200)","22 Apr 2026 06:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"301577270","","SVP20968.sanef-int.adds","10.210.12.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:31AM GMT+0200)","22 Apr 2026 04:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"303886597","","vrdepbels1.sanef-rec.fr","10.45.13.69","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:11PM GMT+0200)","22 Apr 2026 05:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Gestion dépanneurs,OS-LIN-SRV DYN,BDD-ELA DYN]" +"303906738","","vpdsismtp1.sanef.groupe","192.168.19.36","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:55PM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,TAG-SRVEXPOSEINTERNET,EXCHANGE,OS-LIN-SRV DYN]" +"303906796","","vrdepaapp1.sanef-rec.fr","10.45.13.68","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:46PM GMT+0200)","22 Apr 2026 10:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Gestion dépanneurs,OS-LIN-SRV DYN,MID-NGINX DYN]" +"303923893","","vrdepbels2.sanef-rec.fr","10.45.13.70","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:11AM GMT+0200)","22 Apr 2026 06:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Gestion dépanneurs,OS-LIN-SRV DYN,BDD-ELA DYN]" +"303928250","","vpdsismtp2.sanef.groupe","192.168.19.37","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:24PM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,TAG-SRVEXPOSEINTERNET,EXCHANGE,OS-LIN-SRV DYN]" +"304096310","","vpsupapol5","10.44.5.107","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:12AM GMT+0200)","22 Apr 2026 06:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Centreon,Flux Libre,OS-LIN-SRV DYN]" +"304604398","","vrpeabbst1","192.168.31.13","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:20PM GMT+0200)","22 Apr 2026 05:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"304657276","","PCB21173.sanef.groupe","10.255.4.143","fe80:0:0:0:c2c1:f9af:a51d:b1a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 02:15PM GMT+0200)","21 Apr 2026 07:43PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"304660259","","PCB22461.sanef.groupe","10.107.31.20","fe80:0:0:0:ebd7:46f8:6c87:a33a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 07:52AM GMT+0200)","17 Apr 2026 12:56PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"304663556","","vpdsiacol1.sanef.groupe","10.44.6.164","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:56PM GMT+0200)","22 Apr 2026 08:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Collecte,OS-LIN-SRV DYN]" +"304687011","","PCB17652.sanef.groupe","10.107.31.4","fe80:0:0:0:fce5:9017:69db:3ed8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:21AM GMT+0200)","22 Apr 2026 10:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"304688619","","PCB22611.sanef.groupe","10.107.30.10","fe80:0:0:0:2efc:3ea4:3370:6c2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:34PM GMT+0200)","21 Apr 2026 01:34PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"304863349","","PCB22610.sanef.groupe","10.107.31.2","fe80:0:0:0:3b95:e581:c865:58c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 07:40AM GMT+0200)","17 Apr 2026 12:42PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"304883316","","PCB22706.sanef.groupe","10.107.31.13","fe80:0:0:0:add2:6dc6:7bc2:5b17","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 06:55AM GMT+0200)","17 Apr 2026 11:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"304884109","","PCB18474.sanef.groupe","10.107.31.11","fe80:0:0:0:9dc5:269c:8c89:6127","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:30AM GMT+0200)","21 Apr 2026 08:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"304902203","","vpalbanvr1","10.252.17.10","fe80:0:0:0:361e:672c:ffe9:3b8e","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:15PM GMT+0200)","22 Apr 2026 08:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Péage,OS-WIN-SRV DYN]" +"304915606","","PCB22606.sanef.groupe","10.107.31.8","fe80:0:0:0:a454:8975:88f9:4707","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 04:22PM GMT+0200)","17 Apr 2026 07:53PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305054446","","PCB22609.sanef.groupe","10.107.31.18","fe80:0:0:0:b43d:7c97:6dcc:dd9e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:31PM GMT+0200)","21 Apr 2026 01:31PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305108644","","PCB22663.sanef.groupe","10.107.31.22","fe80:0:0:0:3121:db83:febe:8da1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:36AM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305109248","","PCB21133.sanef.groupe","10.107.31.29","fe80:0:0:0:91bc:6023:ea5f:c084","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 01:48PM GMT+0200)","17 Apr 2026 07:33PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305189609","","vpsicardp1.sanef-int.adds","10.44.6.195","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4297","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:29AM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,MIVISU,OS-WIN-SRV DYN]" +"305238828","","PCB18492.sanef.groupe","10.107.31.9","fe80:0:0:0:ad4:ef67:7af4:408a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:55AM GMT+0200)","21 Apr 2026 06:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305242753","","PCB18491.sanef.groupe","10.107.31.16","fe80:0:0:0:cd92:2733:c50b:877d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:32AM GMT+0200)","22 Apr 2026 08:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305247249","","PCB18482.sanef.groupe","10.107.31.25","fe80:0:0:0:ef4:c427:d1b3:3e1d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:37AM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305248036","","PCB22661.sanef.groupe","10.107.31.1","fe80:0:0:0:13de:c168:cd60:ae47","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 07:44AM GMT+0200)","21 Apr 2026 07:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305248158","","PCB21132.sanef.groupe","10.107.31.7","fe80:0:0:0:6904:d442:613:cedd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:34PM GMT+0200)","21 Apr 2026 01:34PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305325421","","PCB18481.sanef.groupe","10.255.2.173","fe80:0:0:0:1b3b:8b0a:d36d:dac5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:30AM GMT+0200)","21 Apr 2026 08:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305327615","","PCB22628.sanef.groupe","10.255.2.166","fe80:0:0:0:4739:5c45:dce5:68d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:23AM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305487413","","PCB22629.sanef.groupe","10.107.31.14","fe80:0:0:0:d169:30d7:6871:6def","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:25AM GMT+0200)","22 Apr 2026 10:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305487492","","PCB22640.sanef.groupe","10.107.31.28","fe80:0:0:0:a293:52b2:61f4:e05a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:20AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305488465","","PCB18483.sanef.groupe","10.107.31.17","fe80:0:0:0:fe27:1492:1061:2304","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:36AM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"305549366","","vpgesbref1","10.46.33.30","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:44PM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN,BDD-POS DYN]" +"305733241","","spsicaquo1.sanef.groupe","10.100.254.50","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:16PM GMT+0200)","22 Apr 2026 05:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,TAG-SIC,TAG-SIA]" +"305794746","","vrgesbref1.sanef-rec.fr","10.45.13.227","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:05AM GMT+0200)","22 Apr 2026 06:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,BDD,OS-LIN-SRV DYN,BDD-POS DYN]" +"305945024","","SVP22860.sanef-int.adds","10.8.29.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.0.397","Manifest Downloaded (06 Apr 2026 09:57PM GMT+0200)","07 Apr 2026 01:31PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"307146663","","PCB21170.sanef.groupe","10.205.0.173","fe80:0:0:0:f3d6:a81e:91de:d20a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:08AM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"307154463","","PCB21171.sanef.groupe","10.205.0.26","fe80:0:0:0:575a:f03b:b851:4430","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:03AM GMT+0200)","22 Apr 2026 09:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"307629995","","PCB17194.sanef.groupe","10.4.30.19","fe80:0:0:0:a106:c3f5:2984:cff0","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Manifest Downloaded (17 Apr 2026 10:14AM GMT+0200)","17 Apr 2026 02:57PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"307901617","","PCB17806.sanef.groupe","10.205.0.38","fe80:0:0:0:6ca2:ed77:6620:797b","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 7840","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:30AM GMT+0200)","17 Apr 2026 01:23PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"307935084","","PCB21134.sanef.groupe","10.107.31.15","fe80:0:0:0:68d3:e167:6b92:4774","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 06:43AM GMT+0200)","17 Apr 2026 11:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"308160251","","PCB20643.sanef.groupe","10.200.31.40","fe80:0:0:0:83a9:eee6:5a01:349c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:24AM GMT+0200)","21 Apr 2026 11:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"308848238","","vrdsibetc1.sanef-rec.fr","10.45.1.176","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:00PM GMT+0200)","22 Apr 2026 09:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,BDD,OS-LIN-SRV DYN]" +"308850037","","vrdsibetc2.sanef-rec.fr","10.45.1.177","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:29PM GMT+0200)","22 Apr 2026 10:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,BDD,OS-LIN-SRV DYN]" +"309082626","","PCB17809.sanef.groupe","10.100.39.110","fe80:0:0:0:7012:92d7:a636:19cb","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:35PM GMT+0200)","22 Apr 2026 08:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"309303648","","PAD21017.sanef.groupe","10.255.2.223","fe80:0:0:0:d22b:f537:5227:3741","Microsoft Windows 10 Professionnel 10.0.19045 64 bits N/A Build 19045","6.4.0.397","Manifest Downloaded (30 Mar 2026 09:18AM GMT+0200)","30 Mar 2026 09:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"309350005","","SVP21504.sanef-int.adds","10.5.2.20","fe80:0:0:0:da42:eb5d:89fc:401f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:11PM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"309374866","","vrdsiaazu1.recette.adds","10.45.0.140","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:44AM GMT+0200)","22 Apr 2026 08:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,AD,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"309388699","","vrpeaakib1.sanef-rec.fr","10.45.10.105","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:49AM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Péage,BDD,OS-LIN-SRV DYN]" +"309682021","","vrdsiaazu2.recette.adds","10.45.0.141","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:48AM GMT+0200)","22 Apr 2026 07:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,AD,OS-WIN-SRV DYN,BDD-SQL DYN]" +"310037482","","ls-vallee-de-l-aisne","10.41.2.54","fe80:0:0:0:f5be:5f1:4ebf:e113","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:06AM GMT+0200)","22 Apr 2026 05:48AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"310050047","","ls-loupershouse","10.112.1.20","fe80:0:0:0:d380:5070:5af7:b55d","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:47AM GMT+0200)","22 Apr 2026 06:00AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,High,Production,Péage,SVP,DEX,OS-WIN-SRV DYN]" +"310532594","","PCB17803.sanef.groupe","10.205.0.112","fe80:0:0:0:d3c3:c1d6:bab6:5b6d","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:56AM GMT+0200)","22 Apr 2026 09:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"310544677","","vptrabtpc1.sanef.groupe","10.41.40.10","fe80:0:0:0:c373:c2c2:5511:ce57","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:39PM GMT+0200)","22 Apr 2026 08:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,Trafic,Temps de parcours,OS-WIN-SRV DYN,BDD-POS DYN]" +"310772909","","PCB22464.sanef.groupe","192.168.1.11","fe80:0:0:0:9f3f:5d02:4171:6252","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:30AM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"311159768","","vrosapkib1.sanef-rec.fr","10.45.9.73","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:35PM GMT+0200)","22 Apr 2026 09:44AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Péage,OS-LIN-SRV DYN]" +"311171805","","vrgawamft1.sanef-rec.fr","10.45.14.67","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:53PM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Plateforme d'échange,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"311188894","","vrgawbpgs1.sanef-rec.fr","10.45.14.68","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:22AM GMT+0200)","22 Apr 2026 07:00AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Plateforme d'échange,OS-LIN-SRV DYN,BDD-POS DYN]" +"311198745","","vrgawagtw1.sanef-rec.fr","192.168.19.83","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:52PM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Plateforme d'échange,OS-LIN-SRV DYN]" +"311383420","","vpsicamic1.sanef-int.adds","10.44.201.35","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:47AM GMT+0200)","22 Apr 2026 07:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,OS-WIN-SRV DYN,BDD-SQL DYN,TAG-SIC,TAG-CAPIV]" +"312232107","","vrffbagsim1.recette.adds","10.45.6.235","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:47PM GMT+0200)","22 Apr 2026 07:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,SVP,OS-WIN-SRV DYN]" +"312270851","","vrsvpaosap1","10.45.9.171","","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:45PM GMT+0200)","22 Apr 2026 05:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,SVP,OS-WIN-SRV DYN]" +"312515481","","vrsvpacli1","10.45.9.162","fe80:0:0:0:18d7:300a:565e:51e7","Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:16PM GMT+0200)","22 Apr 2026 07:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,SVP,OS-WIN-SRV DYN]" +"312827606","","vpgawgtw1.sanef.groupe","192.168.19.68","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:28PM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"313110685","","vraiiavid2.sanef.groupe","10.41.79.101","fe80:0:0:0:605c:5deb:7300:3b47","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:33AM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,Péage,VRF_VIDEO,OS-WIN-SRV DYN]" +"313113952","","vprauahtp2.sanef.groupe","192.168.40.83","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:33AM GMT+0200)","22 Apr 2026 07:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,MID-NGINX DYN]" +"313114324","","vraiiavid1.sanef.groupe","10.41.79.100","fe80:0:0:0:3972:b343:77e9:2074","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:42PM GMT+0200)","22 Apr 2026 09:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,Péage,VRF_VIDEO,OS-WIN-SRV DYN]" +"313413111","","vrameaquo1.sanef-rec.fr","10.100.16.104","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:17PM GMT+0200)","22 Apr 2026 08:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"313502893","","SVP22605.sanef-int.adds","10.142.1.21","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Agent Downloaded (20 Apr 2026 10:14AM GMT+0200)","20 Apr 2026 10:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"313690077","","vpdsibpmm1.sanef.groupe","10.44.5.133","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:27PM GMT+0200)","22 Apr 2026 09:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN]" +"313809924","","SVP18480.sanef-int.adds","10.192.1.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (19 Apr 2026 07:24PM GMT+0200)","20 Apr 2026 09:50PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"314334821","","PCB18630.sanef.groupe","10.255.4.216","fe80:0:0:0:996b:6904:ccbc:3733","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:25AM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"314384921","","vrpwdamft1.sanef-rec.fr","10.45.14.99","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:06PM GMT+0200)","22 Apr 2026 09:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,BDD,OS-LIN-SRV DYN]" +"314655310","","vpdsibels2.sanef.groupe","10.44.5.164","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Manifest Downloaded (22 Apr 2026 09:43AM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN,BDD-ELA DYN]" +"314659720","","vpdsibquo1.sanef.groupe","10.100.16.19","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:12AM GMT+0200)","22 Apr 2026 06:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN,BDD-ELA DYN]" +"314659903","","vpdsibels1.sanef.groupe","10.44.5.163","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:31PM GMT+0200)","22 Apr 2026 06:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN,BDD-ELA DYN]" +"314663097","","vpdsiakib1.sanef.groupe","10.44.5.165","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:32PM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN]" +"314908353","","vrdsiasaf1","192.168.19.24","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:19AM GMT+0200)","22 Apr 2026 10:43AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Radius,OS-LIN-SRV DYN]" +"314914047","","LAMAPGIS2.sanef.groupe","10.41.40.104","fe80:0:0:0:a005:622a:cd38:ad9","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 19460","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:46AM GMT+0200)","22 Apr 2026 07:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Obsolete,OS-WIN-SRV DYN]" +"316480701","","PCB9998.sanef.groupe","10.4.31.15","fe80:0:0:0:81bc:b82a:fe03:dd98","Microsoft Windows 7 Entreprise 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24544","5.6.0.20","Inventory Scan Complete (22 Apr 2026 03:59AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"317053317","","SVP22859.sanef-int.adds","10.12.29.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.1.0.28","Inventory Manifest Downloaded (13 Apr 2026 11:42AM GMT+0200)","13 Apr 2026 12:45PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"317343007","","nvr-spare-alb","10.252.17.254","fe80:0:0:0:7095:3fc5:75e6:3265","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:21PM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Péage,OS-WIN-SRV DYN]" +"317401026","","PCB21361.sanef.groupe","10.205.0.127","fe80:0:0:0:3168:e54:975:79d6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:37AM GMT+0200)","22 Apr 2026 10:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"317575147","","PCB23781.sanef.groupe","10.1.31.0","fe80:0:0:0:dc5a:1e2a:20c2:be06","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:38AM GMT+0200)","22 Apr 2026 09:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"317577351","","PCB23761.sanef.groupe","10.108.31.10","fe80:0:0:0:a2e1:e4bc:b8e6:56b0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (20 Apr 2026 11:21PM GMT+0200)","20 Apr 2026 11:21PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"317591666","","PCB23783.sanef.groupe","10.108.31.1","fe80:0:0:0:293:bb62:6ebd:12aa","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:27AM GMT+0200)","22 Apr 2026 08:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"317594434","","PCB23774.sanef.groupe","10.207.31.2","fe80:0:0:0:99de:f278:f783:5719","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 09:54AM GMT+0200)","16 Apr 2026 03:22PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"317706215","","PCB23711.sanef.groupe","10.108.31.9","fe80:0:0:0:a0e1:a1a5:cacd:7583","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (20 Apr 2026 02:07PM GMT+0200)","20 Apr 2026 02:07PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"317708210","","PCB23710.sanef.groupe","10.149.31.4","fe80:0:0:0:3e7:5c4b:e90d:15ad","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 10:56AM GMT+0200)","17 Apr 2026 03:35PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"317717545","","PCB23763.sanef.groupe","10.108.31.7","fe80:0:0:0:385b:9e22:d463:2c5f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 04:03PM GMT+0200)","22 Apr 2026 07:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"317721019","","PCB23765.sanef.groupe","10.100.38.21","fe80:0:0:0:8465:839f:c6f2:6666","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:16AM GMT+0200)","22 Apr 2026 06:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"317723208","","PCB23580.sanef.groupe","10.100.39.188","fe80:0:0:0:7eb5:c599:bb93:6678","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:28PM GMT+0200)","22 Apr 2026 07:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"317826589","","PCB23778.sanef.groupe","10.255.3.168","fe80:0:0:0:239b:ec19:4f03:56de","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:11AM GMT+0200)","17 Apr 2026 01:50PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318364496","","PCB22929.sanef.groupe","10.105.31.13","fe80:0:0:0:682c:8364:d1ba:d165","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:31PM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318366878","","PCB22841.sanef.groupe","10.108.31.4","fe80:0:0:0:a42b:e367:eee7:987f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:06AM GMT+0200)","17 Apr 2026 01:00PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318377516","","PCB22843.sanef.groupe","10.107.31.32","fe80:0:0:0:9a02:11da:2b45:273f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:37AM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318390107","","PCB23782.sanef.groupe","10.100.39.173","fe80:0:0:0:2e3f:730:4324:1bdf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:19PM GMT+0200)","22 Apr 2026 05:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318392781","","PCB23721.sanef.groupe","10.255.4.139","fe80:0:0:0:44c8:987:4773:beff","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","VM Manifest Downloaded (16 Apr 2026 08:03AM GMT+0200)","16 Apr 2026 01:47PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318396680","","PCB21178.sanef.groupe","10.155.31.3","fe80:0:0:0:9fc7:6026:6ea4:bbc6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:25AM GMT+0200)","22 Apr 2026 06:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318403523","","PCB23739.sanef.groupe","10.199.31.0","fe80:0:0:0:48c0:6c82:58c3:ada4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 08:13PM GMT+0200)","22 Apr 2026 07:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318405583","","PCB23762.sanef.groupe","10.100.39.25","fe80:0:0:0:da76:e284:c9fd:daee","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:35AM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318405690","","PCB22803.sanef.groupe","10.189.31.2","fe80:0:0:0:ebf1:5660:678d:a345","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:02AM GMT+0200)","21 Apr 2026 11:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318407324","","PCB22846.sanef.groupe","10.152.31.9","fe80:0:0:0:ea4b:79d9:f5b8:d554","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (31 Mar 2026 09:18PM GMT+0200)","01 Apr 2026 01:21PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318412083","","PCB23723.sanef.groupe","10.108.31.14","fe80:0:0:0:48de:7f42:124:fe41","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:11PM GMT+0200)","22 Apr 2026 07:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318424837","","vrameakfk1.sanef-rec.fr","10.45.2.40","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:49PM GMT+0200)","22 Apr 2026 10:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Amelie,OS-LIN-SRV DYN]" +"318425666","","vrameakfk2.sanef-rec.fr","10.45.2.41","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:29AM GMT+0200)","22 Apr 2026 07:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Amelie,OS-LIN-SRV DYN]" +"318433915","","PCB22916.sanef.groupe","10.104.31.1","fe80:0:0:0:1268:2122:fb3e:8556","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:43AM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318433984","","vrameakfk3.sanef-rec.fr","10.45.2.42","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:48PM GMT+0200)","22 Apr 2026 09:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"318434431","","PCB23760.sanef.groupe","10.100.39.147","fe80:0:0:0:e9c6:b24c:1579:be69","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:04AM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318436041","","PCB17807.sanef.groupe","10.205.0.5","fe80:0:0:0:42e1:8056:e7cb:6386","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 04:39AM GMT+0200)","20 Apr 2026 04:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318687698","","PCB22442.sanef.groupe","10.104.31.4","fe80:0:0:0:fa53:e1e8:1a87:dbeb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:45PM GMT+0200)","22 Apr 2026 08:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318689107","","PCB22894.sanef.groupe","10.209.31.6","fe80:0:0:0:db38:7895:829a:7c76","Microsoft Windows 11 Professionnel 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:34AM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318693920","","PCB22919.sanef.groupe","10.13.31.10","fe80:0:0:0:b7f1:c6e9:6211:5fec","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:10PM GMT+0200)","22 Apr 2026 06:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318710863","","PCB22897.sanef.groupe","10.1.31.4","fe80:0:0:0:c11f:e634:fd89:743f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:39PM GMT+0200)","22 Apr 2026 06:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318712993","","PCB22928.sanef.groupe","10.1.31.11","fe80:0:0:0:1d83:c273:8a6b:47b4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:25AM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318715229","","PCB21057.sanef.groupe","10.155.30.14","fe80:0:0:0:d167:b9d9:bc29:90d7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (20 Apr 2026 11:27AM GMT+0200)","22 Apr 2026 08:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318721619","","PCB22933.sanef.groupe","10.100.38.15","fe80:0:0:0:6b53:ab86:6912:335c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:55AM GMT+0200)","22 Apr 2026 10:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318743453","","PCB22921.sanef.groupe","10.108.31.2","fe80:0:0:0:6f2d:c0e7:359e:75f2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:15PM GMT+0200)","22 Apr 2026 07:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318827679","","PCB22879.sanef.groupe","10.152.31.13","fe80:0:0:0:6430:6ec1:958e:5307","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:45AM GMT+0200)","21 Apr 2026 07:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318844339","","PCB22896.sanef.groupe","10.108.31.5","fe80:0:0:0:fa50:bab0:430f:d486","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:56PM GMT+0200)","22 Apr 2026 07:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318938690","","PCB22911.sanef.groupe","10.108.31.6","fe80:0:0:0:f4c4:dfbd:7495:8e40","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:30AM GMT+0200)","22 Apr 2026 09:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"318969382","","MTR-CJRTL64","10.108.32.201","fe80:0:0:0:8c6d:584a:2e5d:ef45","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:06PM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319172684","","MTR-3LRTL64","10.101.246.204","fe80:0:0:0:8b74:b626:90b6:ef8f","Microsoft Windows 11 IoT Enterprise 10.0.22621 64 bits N/A Build 22621 UBR 6060","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:36PM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319178116","","PCB22627.sanef.groupe","10.255.4.166","fe80:0:0:0:d478:e307:283f:1dfc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (20 Mar 2026 03:49PM GMT+0200)","20 Mar 2026 09:39PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319196125","","MTR-2KRTL64","10.101.246.200","fe80:0:0:0:2c24:db8e:64c0:562e","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:57PM GMT+0200)","22 Apr 2026 09:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319330663","","PCB22838.sanef.groupe","10.1.30.12","fe80:0:0:0:3cbb:57ed:9df5:6364","Microsoft Windows 11 Professionnel 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:04AM GMT+0200)","22 Apr 2026 08:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319332093","","PCB22899.sanef.groupe","10.107.30.14","fe80:0:0:0:c96d:c47d:8908:782b","Microsoft Windows 11 Professionnel 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","VM Manifest Downloaded (23 Mar 2026 11:21PM GMT+0200)","24 Mar 2026 11:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319334511","","PCB22907.sanef.groupe","10.139.31.2","fe80:0:0:0:ebfd:f6bc:62be:65c8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:06PM GMT+0200)","22 Apr 2026 07:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319338194","","PCB22844.sanef.groupe","10.103.31.5","fe80:0:0:0:3cc3:94b8:9e84:2e4c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (13 Apr 2026 07:31PM GMT+0200)","21 Apr 2026 04:40PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319342781","","PCB23620.sanef.groupe","10.255.3.168","fe80:0:0:0:52a5:fcd:3e31:f9d8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:27AM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319344986","","PCB22880.sanef.groupe","10.255.2.161","fe80:0:0:0:da22:50f8:3c82:2f2a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:18AM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319348494","","PCB22795.sanef.groupe","10.152.31.21","fe80:0:0:0:d3a2:4923:a21f:5c92","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:57PM GMT+0200)","22 Apr 2026 05:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319353853","","PCB22895.sanef.groupe","10.107.30.16","fe80:0:0:0:be67:33c5:6723:8f7b","Microsoft Windows 11 Professionnel 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:39PM GMT+0200)","22 Apr 2026 08:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319374768","","PCB22901.sanef.groupe","10.152.31.1","fe80:0:0:0:233b:9daa:b475:1553","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:30PM GMT+0200)","22 Apr 2026 06:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319378585","","PCB24022.sanef.groupe","10.100.39.189","fe80:0:0:0:2d56:4b41:a705:d74a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:41AM GMT+0200)","17 Apr 2026 04:49PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319394905","","PCB23741.sanef.groupe","10.4.31.19","fe80:0:0:0:ec75:718d:4914:7304","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7462","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:13AM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"319423559","","PCB24047.sanef.groupe","10.255.4.213","fe80:0:0:0:7aa3:7cdf:4959:4caa","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:55AM GMT+0200)","21 Apr 2026 10:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320047241","","PCB22913.sanef.groupe","10.139.31.3","fe80:0:0:0:2c1d:1837:9601:f672","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:20PM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320047252","","PCB24045.sanef.groupe","10.255.4.217","fe80:0:0:0:9f27:bd8d:b624:1c2f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:31AM GMT+0200)","22 Apr 2026 10:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320048077","","PCB24025.sanef.groupe","10.205.0.127","fe80:0:0:0:748b:1566:bd76:7011","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Agent Downloaded (13 Apr 2026 09:12AM GMT+0200)","15 Apr 2026 12:55PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320058233","","PCB24030.sanef.groupe","10.2.31.7","fe80:0:0:0:5ccc:4247:922d:611a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:43PM GMT+0200)","22 Apr 2026 07:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320061791","","PCB23569.sanef.groupe","10.205.0.172","fe80:0:0:0:ba31:d1c9:65b2:449b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7623","6.4.1.22","Manifest Downloaded (15 Apr 2026 11:11AM GMT+0200)","15 Apr 2026 11:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320061853","","PCB22934.sanef.groupe","10.139.31.4","fe80:0:0:0:e8f9:436:dfdf:34f9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:23PM GMT+0200)","22 Apr 2026 10:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320071565","","PCB23671.sanef.groupe","10.5.31.40","fe80:0:0:0:afce:6841:7825:71b5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:18AM GMT+0200)","21 Apr 2026 02:54PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320073836","","PCB24028.sanef.groupe","10.101.243.64","fe80:0:0:0:70cf:2071:a680:6311","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:54AM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320075313","","PCB23666.sanef.groupe","10.100.39.109","fe80:0:0:0:2506:63b4:1d9b:47aa","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:58AM GMT+0200)","17 Apr 2026 05:47PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320075698","","PCB23523.sanef.groupe","10.255.2.199","fe80:0:0:0:b8e9:e4be:1cef:f349","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:26AM GMT+0200)","22 Apr 2026 08:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320077906","","PCB18072.sanef.groupe","10.101.243.29","fe80:0:0:0:3d9c:3986:d697:2432","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:54AM GMT+0200)","22 Apr 2026 09:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320080778","","PCB23517.sanef.groupe","10.255.3.160","fe80:0:0:0:fbdd:ab25:36d5:fdca","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:00AM GMT+0200)","22 Apr 2026 10:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320081168","","PCB23667.sanef.groupe","10.255.4.178","fe80:0:0:0:5b00:841e:f0c4:d2b4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:33AM GMT+0200)","22 Apr 2026 10:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320081444","","PCB23571.sanef.groupe","10.255.4.9","fe80:0:0:0:1c29:3f36:5cc7:f0a1","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:16AM GMT+0200)","22 Apr 2026 12:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320081805","","PCB24041.sanef.groupe","192.168.1.164","fe80:0:0:0:f36:d4af:1941:c11","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (14 Apr 2026 10:19AM GMT+0200)","14 Apr 2026 02:42PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320084390","","PCB22927.sanef.groupe","10.149.30.12","fe80:0:0:0:65a9:b16d:55fb:860d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:21AM GMT+0200)","22 Apr 2026 07:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320087765","","PCB22448.sanef.groupe","10.106.31.9","fe80:0:0:0:2b07:1f63:a432:3ad7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:54PM GMT+0200)","22 Apr 2026 08:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320088358","","PCB22924.sanef.groupe","10.106.31.4","fe80:0:0:0:e495:71bd:50cd:2c73","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:56PM GMT+0200)","22 Apr 2026 07:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320117638","","PCB23566.sanef.groupe","10.89.31.4","fe80:0:0:0:1f71:6b9:dee6:f1a1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:53PM GMT+0200)","22 Apr 2026 06:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320120950","","PCB23558.sanef.groupe","10.100.39.135","fe80:0:0:0:255:8a9a:31d0:a297","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:10AM GMT+0200)","22 Apr 2026 09:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320123702","","PCB23567.sanef.groupe","10.255.4.187","fe80:0:0:0:baa2:670c:9ffb:b91","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","VM Manifest Downloaded (10 Apr 2026 12:00AM GMT+0200)","13 Apr 2026 05:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320132436","","PCB22446.sanef.groupe","10.103.31.9","fe80:0:0:0:7111:8675:6a58:77c3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:01AM GMT+0200)","22 Apr 2026 07:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320134630","","PCB23543.sanef.groupe","10.202.31.30","fe80:0:0:0:3b29:287a:d350:d99a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:08AM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320134631","","PCB23708.sanef.groupe","10.205.0.142","fe80:0:0:0:f448:4df7:87f:7acf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:22AM GMT+0200)","21 Apr 2026 11:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320134680","","PCB23544.sanef.groupe","10.100.39.24","fe80:0:0:0:ca38:a500:9961:399d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:57AM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320192003","","PCB23550.sanef.groupe","10.255.3.225","fe80:0:0:0:143e:1d44:943a:508e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 03:13AM GMT+0200)","16 Apr 2026 02:21PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320261591","","PCB23524.sanef.groupe","192.168.1.126","fe80:0:0:0:9e99:1823:1bce:eaa5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:23AM GMT+0200)","22 Apr 2026 09:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320281394","","PCB23532.sanef.groupe","10.2.31.3","fe80:0:0:0:78e7:aef3:86ff:3fed","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:26AM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320284533","","PCB24035.sanef.groupe","10.205.0.185","fe80:0:0:0:3cc8:a985:3f10:77a9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:23PM GMT+0200)","22 Apr 2026 10:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320286752","","PCB23589.sanef.groupe","10.12.31.29","fe80:0:0:0:d055:43c9:41b6:b558","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:22AM GMT+0200)","22 Apr 2026 09:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320288653","","PCB23664.sanef.groupe","10.100.39.113","fe80:0:0:0:1391:2c93:c9a2:3bc5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:08AM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320289837","","PCB22788.sanef.groupe","10.1.31.18","fe80:0:0:0:43ea:56dc:4b6:4417","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (16 Apr 2026 08:13PM GMT+0200)","17 Apr 2026 08:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320290061","","PCB23621.sanef.groupe","10.6.31.1","fe80:0:0:0:43ba:df05:d240:d5a5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 07:45AM GMT+0200)","17 Apr 2026 12:41PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320292015","","PCB23594.sanef.groupe","10.255.1.217","fe80:0:0:0:e652:757d:4e90:532","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:54AM GMT+0200)","22 Apr 2026 09:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320292147","","PCB23525.sanef.groupe","10.11.31.0","fe80:0:0:0:6673:538e:be44:3963","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:23AM GMT+0200)","21 Apr 2026 09:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320292420","","PCB23595.sanef.groupe","10.205.0.45","fe80:0:0:0:5fd5:4e93:7d59:55d6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (22 Apr 2026 09:11AM GMT+0200)","22 Apr 2026 10:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320296214","","PCB23551.sanef.groupe","10.100.39.54","fe80:0:0:0:c0da:15c6:b32c:3508","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:00AM GMT+0200)","17 Apr 2026 02:51PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320296363","","PCB23596.sanef.groupe","10.255.1.134","fe80:0:0:0:e338:64b3:c01e:e7d0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:59AM GMT+0200)","22 Apr 2026 07:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320298027","","PCB23533.sanef.groupe","10.205.0.31","fe80:0:0:0:67fc:5819:9dbf:3cdb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (10 Apr 2026 09:08AM GMT+0200)","15 Apr 2026 11:54PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320418494","","PCB23627.sanef.groupe","10.205.0.20","fe80:0:0:0:3ae:b8f7:b32f:8fac","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:36AM GMT+0200)","20 Apr 2026 01:31PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320434189","","PCB22891.sanef.groupe","10.1.31.10","fe80:0:0:0:f622:aa54:7d4d:e9a8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:35AM GMT+0200)","22 Apr 2026 08:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320435785","","PCB23561.sanef.groupe","10.100.39.33","fe80:0:0:0:dde0:e6d8:a6d7:b5ce","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:02PM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320442963","","PCB23630.sanef.groupe","10.255.2.137","fe80:0:0:0:4dc3:5d2e:4d1a:2635","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 06:54AM GMT+0200)","17 Apr 2026 11:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320444685","","PCB24029.sanef.groupe","10.100.39.39","fe80:0:0:0:d9bd:ea5e:86bc:9173","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:09AM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320446276","","PCB22816.sanef.groupe","10.155.31.4","fe80:0:0:0:1b4c:124e:998c:2c96","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:33AM GMT+0200)","22 Apr 2026 08:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320446388","","PCB22906.sanef.groupe","10.29.31.2","fe80:0:0:0:3c67:f4fd:98a0:2afb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:23AM GMT+0200)","22 Apr 2026 07:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320448237","","PCB23678.sanef.groupe","10.255.2.215","fe80:0:0:0:e0b8:20b2:18bf:e7e0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:09AM GMT+0200)","17 Apr 2026 01:04PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320452039","","PCB22930.sanef.groupe","10.149.31.0","fe80:0:0:0:d7bb:4fa6:5bda:f579","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:28AM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320461802","","PCB22842.sanef.groupe","10.29.31.0","fe80:0:0:0:e814:a051:dff4:4f3b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:42AM GMT+0200)","22 Apr 2026 06:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320461965","","PCB23663.sanef.groupe","10.105.31.3","fe80:0:0:0:8def:f76c:5a11:31b6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:08PM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320465298","","PCB23686.sanef.groupe","10.205.0.5","fe80:0:0:0:487b:db34:59c3:5df8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:11AM GMT+0200)","17 Apr 2026 01:51PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320467349","","PCB24036.sanef.groupe","10.255.1.247","fe80:0:0:0:6cf7:dfe5:1d4d:b426","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 09:54AM GMT+0200)","17 Apr 2026 02:24PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320477208","","PCB24019.sanef.groupe","10.100.39.127","fe80:0:0:0:93ab:d3e4:2e9d:7a8f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:29AM GMT+0200)","22 Apr 2026 09:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320480375","","PCB23568.sanef.groupe","10.205.0.125","fe80:0:0:0:beb1:415:99b4:d0e8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:20AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320491264","","PCB23698.sanef.groupe","10.6.31.5","fe80:0:0:0:be66:7863:37ec:2b60","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:49AM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320491281","","PCB23649.sanef.groupe","10.100.39.4","fe80:0:0:0:fff7:e30:e82a:bae8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:27AM GMT+0200)","22 Apr 2026 08:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320506426","","PCB21156.sanef.groupe","10.205.0.56","fe80:0:0:0:eb40:1fd9:36f9:5628","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:03AM GMT+0200)","20 Apr 2026 09:17PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320507201","","PCB23631.sanef.groupe","10.152.31.0","fe80:0:0:0:cb9a:f2a:edd6:abaa","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:42AM GMT+0200)","22 Apr 2026 10:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320513751","","PCB23634.sanef.groupe","10.255.3.193","fe80:0:0:0:435d:dd7d:42d7:db67","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:49AM GMT+0200)","17 Apr 2026 02:21PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320612891","","PCB23637.sanef.groupe","10.5.31.52","fe80:0:0:0:d21b:c262:5ba4:b31b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:18PM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320920854","","PCB23654.sanef.groupe","10.205.0.55","fe80:0:0:0:73d3:6661:a4ab:a4a9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:52AM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320925287","","PCB22773.sanef.groupe","10.199.31.4","fe80:0:0:0:5c02:9342:467d:44bb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:45AM GMT+0200)","22 Apr 2026 09:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320928421","","PCB22908.sanef.groupe","10.255.4.4","fe80:0:0:0:f10c:f228:4a41:339","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:06PM GMT+0200)","22 Apr 2026 06:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320929796","","PCB24032.sanef.groupe","10.100.39.50","fe80:0:0:0:34fd:4345:3920:96de","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:24AM GMT+0200)","22 Apr 2026 06:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320931046","","PCB22787.sanef.groupe","10.149.31.3","fe80:0:0:0:24fc:6901:f49b:8487","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:14AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320931309","","PCB23656.sanef.groupe","10.11.31.4","fe80:0:0:0:ff1b:b029:224d:20a8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:08AM GMT+0200)","22 Apr 2026 07:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320931755","","PCB24020.sanef.groupe","10.6.31.6","fe80:0:0:0:2e5a:3e3c:eeb8:8e2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:50PM GMT+0200)","22 Apr 2026 05:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320931986","","PCB22830.sanef.groupe","10.103.30.13","fe80:0:0:0:e2f3:38ea:ce7e:c054","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Inventory Manifest Downloaded (22 Mar 2026 09:42PM GMT+0200)","23 Mar 2026 11:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320952835","","PCB22831.sanef.groupe","10.103.31.2","fe80:0:0:0:5b1:6fdf:da3b:dbf4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:11AM GMT+0200)","22 Apr 2026 06:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320968472","","PCB24031.sanef.groupe","10.2.30.12","fe80:0:0:0:29fc:f939:2448:3bb6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:13PM GMT+0200)","22 Apr 2026 06:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320968788","","PCB24044.sanef.groupe","10.205.0.92","2a01:cb0c:84c2:2400:8a3d:65e0:2d5f:c924","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:32AM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320970310","","PCB23662.sanef.groupe","10.255.4.157","fe80:0:0:0:d894:7acd:960c:feb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:55AM GMT+0200)","22 Apr 2026 09:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320971878","","PCB23646.sanef.groupe","10.205.0.163","fe80:0:0:0:7139:229f:36ef:8559","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:59AM GMT+0200)","22 Apr 2026 09:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320972075","","PCB22886.sanef.groupe","10.152.31.23","fe80:0:0:0:eccf:13a3:fa3d:5f0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:26PM GMT+0200)","22 Apr 2026 05:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"320991728","","PCB23693.sanef.groupe","10.255.2.184","fe80:0:0:0:63bd:7d78:31fa:566d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:55AM GMT+0200)","21 Apr 2026 10:16PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321001260","","PCB23614.sanef.groupe","192.168.68.51","fe80:0:0:0:f5f2:3d1b:2591:fd7f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 10:13AM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321014209","","PCB23672.sanef.groupe","10.205.0.30","fe80:0:0:0:7886:7048:f424:66d8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:04AM GMT+0200)","21 Apr 2026 10:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321015068","","PCB23626.sanef.groupe","10.205.0.68","fe80:0:0:0:37b4:9951:382c:f7b0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:22AM GMT+0200)","21 Apr 2026 09:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321023014","","PCB24033.sanef.groupe","10.205.0.111","fe80:0:0:0:7260:5ec3:50c1:d074","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:51AM GMT+0200)","21 Apr 2026 09:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321023093","","PCB24034.sanef.groupe","10.205.0.78","fe80:0:0:0:ca4b:440:a4d8:a047","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:22AM GMT+0200)","22 Apr 2026 09:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321035417","","PCB23632.sanef.groupe","192.168.1.170","fe80:0:0:0:72a0:be5:dd2a:29d3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7623","6.4.0.397","Manifest Downloaded (01 Apr 2026 02:32PM GMT+0200)","08 Apr 2026 10:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321036659","","PCB23694.sanef.groupe","10.205.0.22","fe80:0:0:0:1bfb:15c5:cda2:2354","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 09:18AM GMT+0200)","20 Apr 2026 09:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321037931","","PCB23648.sanef.groupe","10.255.2.133","fe80:0:0:0:891c:81c:d754:3245","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 07:08AM GMT+0200)","22 Apr 2026 07:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321039922","","PCB24016.sanef.groupe","10.255.2.231","fe80:0:0:0:8543:fb47:1b56:6c12","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:07AM GMT+0200)","21 Apr 2026 06:01PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321051455","","PCB21513.sanef.groupe","10.255.3.11","fe80:0:0:0:6688:a3d1:dd34:1465","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","Agent Downloaded (14 Apr 2026 01:34PM GMT+0200)","14 Apr 2026 01:34PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321056437","","PCB24040.sanef.groupe","10.105.31.20","fe80:0:0:0:7045:f268:944:e0e4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:10PM GMT+0200)","22 Apr 2026 06:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321056836","","PCB23757.sanef.groupe","10.104.30.11","fe80:0:0:0:53a2:3a44:ad7f:5c3d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (20 Mar 2026 12:46PM GMT+0200)","20 Mar 2026 12:46PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321058844","","PCB23758.sanef.groupe","10.105.31.21","fe80:0:0:0:93d:d2c5:e34b:d9a8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:41AM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321066786","","PCB18754.sanef.groupe","10.4.31.35","fe80:0:0:0:c6c4:2ba6:a52a:1ce2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 08:32AM GMT+0200)","22 Apr 2026 10:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321090803","","PCB21179.sanef.groupe","10.205.0.31","fe80:0:0:0:82ad:3943:951:5d8f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:54AM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321519323","","PCB22304.sanef.groupe","10.207.31.7","fe80:0:0:0:b9c4:8921:c55b:3566","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:40AM GMT+0200)","22 Apr 2026 07:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321527933","","PCB23744.sanef.groupe","10.152.31.8","fe80:0:0:0:af88:e325:21d9:e56c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 07:11PM GMT+0200)","22 Apr 2026 09:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321532357","","PCB23743.sanef.groupe","10.105.30.14","fe80:0:0:0:9d80:4fef:e181:1a0b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:09PM GMT+0200)","21 Apr 2026 01:09PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321535715","","PCB21271.sanef.groupe","10.4.31.54","fe80:0:0:0:6628:5c1c:be41:44d7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 09:43AM GMT+0200)","17 Apr 2026 02:18PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321548437","","PCB23796.sanef.groupe","10.255.2.163","fe80:0:0:0:1b78:3648:be63:a010","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:35AM GMT+0200)","17 Apr 2026 02:08PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321548463","","PCB21535.sanef.groupe","10.4.31.4","fe80:0:0:0:4090:b772:4c9a:9a95","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:41AM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321548577","","PCB22351.sanef.groupe","10.202.31.16","fe80:0:0:0:f2e6:da89:9b0a:4546","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:35PM GMT+0200)","22 Apr 2026 10:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321548725","","PCB23652.sanef.groupe","10.255.3.182","fe80:0:0:0:2903:e05:7551:fd2b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:47PM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321549850","","PCB23657.sanef.groupe","10.105.31.5","fe80:0:0:0:6a37:ac8d:57dc:5ece","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Manifest Downloaded (17 Apr 2026 09:30AM GMT+0200)","17 Apr 2026 01:33PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321549896","","PCB23643.sanef.groupe","10.255.3.152","fe80:0:0:0:3e27:8a4a:8a9b:1b59","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:04AM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321551175","","PCB22814.sanef.groupe","10.103.31.0","fe80:0:0:0:ae35:bf13:90e4:d61f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:09PM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321551461","","PCB22905.sanef.groupe","10.119.31.4","fe80:0:0:0:63a0:da9f:6c81:2d76","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:35PM GMT+0200)","22 Apr 2026 07:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321551581","","PCB22823.sanef.groupe","10.8.30.11","fe80:0:0:0:af67:f5a4:eef9:83ee","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:16AM GMT+0200)","22 Apr 2026 10:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321551755","","PCB23661.sanef.groupe","10.205.0.17","fe80:0:0:0:17c2:6061:3b02:c1e3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:03AM GMT+0200)","20 Apr 2026 11:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321553605","","PCB22352.sanef.groupe","10.206.31.0","fe80:0:0:0:6416:c994:c2ee:4af4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 06:46AM GMT+0200)","20 Apr 2026 02:28PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321553800","","PCB22444.sanef.groupe","10.149.31.2","fe80:0:0:0:eabc:9c6:c089:72de","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:12AM GMT+0200)","22 Apr 2026 05:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"321553872","","PCB23617.sanef.groupe","10.105.31.1","fe80:0:0:0:a460:1056:9a71:4d4c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 04:08AM GMT+0200)","21 Apr 2026 04:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321554503","","PCB21066.sanef.groupe","10.139.31.5","fe80:0:0:0:5b4c:17f3:2e1f:e1b6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:39PM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321561177","","PCB22341.sanef.groupe","10.255.2.182","fe80:0:0:0:998e:271d:719a:1981","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (14 Apr 2026 12:25AM GMT+0200)","14 Apr 2026 04:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321562315","","PCB21503.sanef.groupe","10.255.3.136","fe80:0:0:0:320c:25b7:bca2:7a02","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (12 Apr 2026 08:08PM GMT+0200)","13 Apr 2026 07:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321562826","","PCB23679.sanef.groupe","10.105.31.25","fe80:0:0:0:87e4:478a:704b:5da4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:33AM GMT+0200)","22 Apr 2026 10:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321563365","","PCB23712.sanef.groupe","10.119.31.3","fe80:0:0:0:cfa6:2da3:9a98:131","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:11AM GMT+0200)","22 Apr 2026 08:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321564320","","PCB23601.sanef.groupe","10.255.2.200","fe80:0:0:0:731e:fec:1e7e:4569","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 08:54AM GMT+0200)","17 Apr 2026 05:01PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321564790","","PCB21534.sanef.groupe","10.12.31.6","fe80:0:0:0:7a53:6224:9678:4570","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:47AM GMT+0200)","22 Apr 2026 07:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321578354","","PCB22325.sanef.groupe","10.207.31.5","fe80:0:0:0:4646:6db8:a30b:f03a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:17AM GMT+0200)","22 Apr 2026 10:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321586044","","PCB21143.sanef.groupe","10.139.31.1","fe80:0:0:0:885c:7:3e17:ed9f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:03AM GMT+0200)","22 Apr 2026 06:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321588534","","PCB23658.sanef.groupe","10.203.31.4","fe80:0:0:0:abda:7088:4c8c:cd4c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:02AM GMT+0200)","17 Apr 2026 11:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321588929","","PCB23746.sanef.groupe","10.105.31.9","fe80:0:0:0:13eb:11fd:a843:6529","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:53AM GMT+0200)","21 Apr 2026 09:00PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321589806","","PCB21572.sanef.groupe","10.255.1.140","fe80:0:0:0:274e:4e58:7a5f:fd04","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (20 Mar 2026 02:18PM GMT+0200)","20 Mar 2026 02:18PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321589866","","PCB22910.sanef.groupe","10.189.31.6","fe80:0:0:0:9ce6:d628:63e8:9661","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:07AM GMT+0200)","22 Apr 2026 07:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321590105","","PCB21274.sanef.groupe","10.255.1.145","fe80:0:0:0:abfb:5733:1c21:108e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (10 Apr 2026 07:40AM GMT+0200)","10 Apr 2026 12:40PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321595147","","PCB21573.sanef.groupe","10.13.31.0","fe80:0:0:0:6679:4eb0:2254:a43e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:19PM GMT+0200)","22 Apr 2026 05:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321605793","","PCB23793.sanef.groupe","10.202.31.13","fe80:0:0:0:ae32:b79f:977e:d30b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:48AM GMT+0200)","22 Apr 2026 09:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321605798","","PCB21154.sanef.groupe","10.89.31.0","fe80:0:0:0:156c:52b2:ca62:2432","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:56AM GMT+0200)","22 Apr 2026 08:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321605977","","PCB23597.sanef.groupe","10.100.39.112","fe80:0:0:0:61e7:3205:70a0:9f12","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:39AM GMT+0200)","22 Apr 2026 07:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321609764","","PCB23653.sanef.groupe","10.202.31.23","fe80:0:0:0:be70:7140:e145:b875","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:37AM GMT+0200)","17 Apr 2026 01:24PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321615979","","PCB21629.sanef.groupe","10.119.31.0","fe80:0:0:0:322c:74b:8208:655c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:15AM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321970327","","PCB21276.sanef.groupe","10.205.0.30","fe80:0:0:0:fae7:5855:7edd:cde5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:14AM GMT+0200)","22 Apr 2026 09:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321972468","","vpintbweb2.sanef.groupe","10.46.33.16","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:58PM GMT+0200)","22 Apr 2026 10:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Gestion institutionnel,OS-LIN-SRV DYN,BDD-POS DYN]" +"321980901","","PCB23756.sanef.groupe","10.13.31.5","fe80:0:0:0:b8a8:83d5:945f:67ff","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:56AM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321987532","","PCB20847.sanef.groupe","10.205.0.43","fe80:0:0:0:7e7e:1597:1e36:b8e0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 11:34AM GMT+0200)","21 Apr 2026 11:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321994023","","PCB20834.sanef.groupe","10.205.0.133","fe80:0:0:0:de2c:a7b5:41c:4fd3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (18 Apr 2026 10:39AM GMT+0200)","18 Apr 2026 10:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321994295","","PCB23728.sanef.groupe","10.152.31.28","fe80:0:0:0:24a1:7cc4:c156:ebab","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (18 Apr 2026 10:14PM GMT+0200)","18 Apr 2026 10:14PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321997482","","PCB23612.sanef.groupe","10.200.30.19","fe80:0:0:0:1793:15a:89d1:4e4a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Manifest Downloaded (22 Apr 2026 01:32AM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321999185","","PCB21145.sanef.groupe","10.29.31.1","fe80:0:0:0:f735:305e:c9e9:6bd7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:23PM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"321999317","","PCB23794.sanef.groupe","10.13.30.10","fe80:0:0:0:68ca:6843:e714:df26","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:18AM GMT+0200)","22 Apr 2026 08:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322000854","","PCB22834.sanef.groupe","10.89.30.11","fe80:0:0:0:41a9:f1e:3d20:e503","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:10PM GMT+0200)","22 Apr 2026 08:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322003769","","PCB23696.sanef.groupe","10.100.39.165","fe80:0:0:0:17a5:d964:2ce9:fa04","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:13AM GMT+0200)","22 Apr 2026 09:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322004527","","PCB23675.sanef.groupe","10.200.31.9","fe80:0:0:0:fad6:1a2f:be7c:5aee","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:00AM GMT+0200)","22 Apr 2026 09:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322005587","","PCB23767.sanef.groupe","10.13.31.12","fe80:0:0:0:cac4:bae9:9762:f050","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:05AM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322005791","","PCB23642.sanef.groupe","10.205.0.32","fe80:0:0:0:e7cb:401b:57ee:e6f8","Microsoft Windows 11 Professionnel 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:37AM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322006461","","PCB23714.sanef.groupe","10.152.31.5","fe80:0:0:0:8f75:6109:5542:3066","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Manifest Downloaded (21 Apr 2026 09:57PM GMT+0200)","22 Apr 2026 06:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322007233","","PCB23640.sanef.groupe","10.205.0.51","fe80:0:0:0:317:c4bb:e62:85a8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Manifest Downloaded (17 Apr 2026 07:38AM GMT+0200)","17 Apr 2026 09:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322008464","","PCB23795.sanef.groupe","10.255.2.142","fe80:0:0:0:c5e6:f033:f269:926","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (10 Apr 2026 07:05AM GMT+0200)","10 Apr 2026 04:06PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322010592","","PCB21144.sanef.groupe","10.2.31.5","fe80:0:0:0:aca8:4e3:2aa9:712a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:53AM GMT+0200)","22 Apr 2026 09:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322014450","","PCB22437.sanef.groupe","10.11.31.2","fe80:0:0:0:816c:8f0c:5126:d7de","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:43AM GMT+0200)","22 Apr 2026 10:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322014494","","PCB21576.sanef.groupe","10.3.31.7","fe80:0:0:0:e0f2:6c92:a12a:2d0d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:21AM GMT+0200)","22 Apr 2026 06:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322014579","","PCB23669.sanef.groupe","10.200.31.8","fe80:0:0:0:8546:de32:f6a9:d03e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 11:00AM GMT+0200)","17 Apr 2026 03:46PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322014696","","PCB23628.sanef.groupe","10.255.3.147","fe80:0:0:0:1095:2e66:8c69:fa0b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:30AM GMT+0200)","22 Apr 2026 09:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322014778","","PCB23727.sanef.groupe","10.205.0.133","fe80:0:0:0:878d:94b3:883b:6fc3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 09:31AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322021427","","PCB22839.sanef.groupe","10.89.31.1","fe80:0:0:0:6460:55c9:1658:b763","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:36PM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322021436","","PCB21559.sanef.groupe","10.155.31.2","fe80:0:0:0:c0a1:b648:dd8c:424d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (08 Apr 2026 12:30PM GMT+0200)","08 Apr 2026 01:48PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322021511","","PCB21561.sanef.groupe","10.119.31.1","fe80:0:0:0:bf0d:afa5:cba0:9ba9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:45PM GMT+0200)","22 Apr 2026 08:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322022919","","PCB23673.sanef.groupe","10.205.0.59","fe80:0:0:0:988c:d1e0:dade:485","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","VM Manifest Downloaded (20 Apr 2026 09:32AM GMT+0200)","20 Apr 2026 06:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322034316","","PCB23622.sanef.groupe","10.200.31.2","fe80:0:0:0:12b4:42ab:602d:3f63","Microsoft Windows 11 Professionnel 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 08:23AM GMT+0200)","20 Apr 2026 01:35PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322034706","","PCB23674.sanef.groupe","10.205.0.59","fe80:0:0:0:6690:fb88:a145:4419","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:57AM GMT+0200)","22 Apr 2026 09:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322039953","","PCB21283.sanef.groupe","10.4.30.17","fe80:0:0:0:8aa1:1944:2381:f2c4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:31AM GMT+0200)","22 Apr 2026 06:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322043434","","PCB23641.sanef.groupe","10.200.31.6","fe80:0:0:0:514a:5f20:c0f6:adc9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:39AM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322061860","","PCB21278.sanef.groupe","10.205.0.137","fe80:0:0:0:873c:d464:6a2f:9f3e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:08PM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322061869","","PCB21600.sanef.groupe","10.105.31.7","fe80:0:0:0:7fc6:ddf7:4c60:6186","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (14 Apr 2026 11:28AM GMT+0200)","14 Apr 2026 02:27PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322062131","","PCB21577.sanef.groupe","10.3.31.2","fe80:0:0:0:feae:1d80:8072:833d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:11AM GMT+0200)","22 Apr 2026 09:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322067132","","PCB23562.sanef.groupe","10.255.1.190","fe80:0:0:0:c7fb:fdd8:8a5a:65a8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 12:00PM GMT+0200)","17 Apr 2026 04:56PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322071111","","PCB23747.sanef.groupe","10.152.31.16","fe80:0:0:0:c84a:543:55ec:129b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:42AM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322099729","","PCB23615.sanef.groupe","192.168.1.190","fe80:0:0:0:b3ed:37d9:4c60:e9a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:25AM GMT+0200)","17 Apr 2026 01:16PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322101765","","PCB23647.sanef.groupe","10.200.31.23","fe80:0:0:0:cff5:2210:aa60:8174","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:48AM GMT+0200)","22 Apr 2026 10:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322101853","","PCB23651.sanef.groupe","10.255.4.141","fe80:0:0:0:4e14:83ac:e93b:12fa","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:19AM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322106482","","PCB23644.sanef.groupe","10.200.30.46","fe80:0:0:0:43f2:79a3:b0ed:9780","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:40AM GMT+0200)","22 Apr 2026 08:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322116362","","PCB23695.sanef.groupe","10.200.31.60","fe80:0:0:0:9847:4d0f:6ea3:a97c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:03AM GMT+0200)","17 Apr 2026 02:51PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322116608","","PCB23563.sanef.groupe","10.200.31.38","fe80:0:0:0:1c7a:2cbf:fff7:ecd6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 10:11AM GMT+0200)","17 Apr 2026 02:52PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322118035","","PCB23592.sanef.groupe","10.205.0.25","fe80:0:0:0:289f:ac07:f851:720f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (14 Apr 2026 08:59AM GMT+0200)","14 Apr 2026 05:57PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322118634","","PCB21270.sanef.groupe","10.4.31.31","fe80:0:0:0:b82a:f6dc:9d54:38e7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:18AM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322118778","","PCB23729.sanef.groupe","10.255.4.192","fe80:0:0:0:3df9:f8f:fdc0:1607","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:43AM GMT+0200)","22 Apr 2026 08:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322126626","","PCB21593.sanef.groupe","10.255.2.234","fe80:0:0:0:a721:1132:1181:5422","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:34PM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322325528","","PCB23553.sanef.groupe","10.205.0.141","fe80:0:0:0:626e:2c0b:adbd:521f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 04:59PM GMT+0200)","16 Apr 2026 05:57PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322326438","","PCB23586.sanef.groupe","10.205.0.32","fe80:0:0:0:7d27:71ae:b1b7:5c21","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:11AM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322326539","","PCB23555.sanef.groupe","10.255.1.226","fe80:0:0:0:94e7:fc84:d4fc:609d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:13AM GMT+0200)","22 Apr 2026 09:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322331213","","PCB21275.sanef.groupe","10.4.31.43","fe80:0:0:0:a651:1e34:629c:c329","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:00PM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322331256","","PCB23800.sanef.groupe","10.205.0.4","fe80:0:0:0:7dc3:15d9:b793:990","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:50AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322335500","","PCB20862.sanef.groupe","10.200.31.62","fe80:0:0:0:a5c7:a0c6:861:a6b1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:54AM GMT+0200)","22 Apr 2026 06:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322338468","","PCB22798.sanef.groupe","10.189.31.3","fe80:0:0:0:c06d:6fa3:6e44:7ced","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:37PM GMT+0200)","21 Apr 2026 12:37PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322341389","","PCB22912.sanef.groupe","10.149.30.10","fe80:0:0:0:e489:792:defa:2e6b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:20PM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322342951","","PCS22792.sanef-int.adds","10.12.13.100","fe80:0:0:0:71f7:1be5:1e38:78a7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:09AM GMT+0200)","22 Apr 2026 09:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"322342973","","PCB22791.sanef.groupe","10.5.31.14","fe80:0:0:0:8669:f7d2:13db:30db","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (14 Apr 2026 06:43PM GMT+0200)","15 Apr 2026 09:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322344604","","PCB23799.sanef.groupe","10.255.3.225","fe80:0:0:0:251:5fd9:e8aa:456b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:07AM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322357044","","PCS22781.sanef-int.adds","10.5.13.100","fe80:0:0:0:424e:727:1009:3279","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:28AM GMT+0200)","22 Apr 2026 10:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"322357104","","PCB23706.sanef.groupe","10.207.31.1","fe80:0:0:0:36a9:7f36:7ecc:3d56","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:02PM GMT+0200)","22 Apr 2026 06:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322357113","","PCB21294.sanef.groupe","10.5.31.28","fe80:0:0:0:95c7:3b75:a862:6e93","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 09:45PM GMT+0200)","22 Apr 2026 07:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322359750","","PCB23780.sanef.groupe","10.255.1.206","fe80:0:0:0:39b6:d6bf:cc74:187","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 09:44AM GMT+0200)","17 Apr 2026 09:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322362730","","PCB23701.sanef.groupe","10.200.31.72","fe80:0:0:0:abda:4036:834f:62cf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 10:19AM GMT+0200)","22 Apr 2026 10:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322363728","","PCB23773.sanef.groupe","10.205.0.16","fe80:0:0:0:8ad:d1c5:61b7:5e6d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:51AM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322364764","","PCB23564.sanef.groupe","10.200.31.16","fe80:0:0:0:50f3:c56e:c7e1:a06b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 10:57AM GMT+0200)","16 Apr 2026 01:57PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322364793","","PCB22774.sanef.groupe","10.149.31.7","fe80:0:0:0:9089:5537:1161:d22a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:26PM GMT+0200)","22 Apr 2026 06:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322370699","","PCB23772.sanef.groupe","10.205.0.159","fe80:0:0:0:fd31:ff86:f505:ac85","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:16AM GMT+0200)","17 Apr 2026 02:53PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322374230","","PCB23619.sanef.groupe","192.168.1.144","fe80:0:0:0:6fc:8037:660c:cf80","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (19 Apr 2026 03:27PM GMT+0200)","21 Apr 2026 10:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322374316","","PCB23687.sanef.groupe","10.200.31.11","fe80:0:0:0:f7da:ef10:3f3c:f8ba","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:49AM GMT+0200)","22 Apr 2026 10:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322379733","","PCB22789.sanef.groupe","10.1.31.3","fe80:0:0:0:4e4d:15df:5395:ef3a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:47PM GMT+0200)","22 Apr 2026 09:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322389621","","PCB23565.sanef.groupe","10.205.0.28","fe80:0:0:0:8ae4:e942:10ac:75f1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:40AM GMT+0200)","21 Apr 2026 06:17PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322390911","","PCB21296.sanef.groupe","10.255.3.179","2a01:cb00:55:9700:52ea:fd2b:100e:3dc1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:57AM GMT+0200)","21 Apr 2026 09:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322391623","","PCB23633.sanef.groupe","10.2.31.2","fe80:0:0:0:b8a7:bd0d:ae89:659d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:59PM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322391768","","PCB23699.sanef.groupe","10.220.31.12","fe80:0:0:0:8550:b1fa:4606:6c54","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:47AM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322391978","","PCB23616.sanef.groupe","10.205.0.14","fe80:0:0:0:e85:64c:7e3:c4cb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:51AM GMT+0200)","21 Apr 2026 07:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322392766","","PCB23629.sanef.groupe","10.200.30.18","fe80:0:0:0:c241:3b8d:88a9:b705","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (20 Apr 2026 09:08AM GMT+0200)","22 Apr 2026 09:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322401949","","PCB23599.sanef.groupe","10.205.1.48","fe80:0:0:0:5e55:ecba:59d7:28c3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 02:03PM GMT+0200)","22 Apr 2026 09:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322404057","","PCB21292.sanef.groupe","10.4.31.6","fe80:0:0:0:7191:c0e4:2567:a77","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:57AM GMT+0200)","20 Apr 2026 01:09PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322405176","","PCB22278.sanef.groupe","10.209.31.7","fe80:0:0:0:ec91:750d:8942:d14e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:59PM GMT+0200)","22 Apr 2026 06:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322582324","","PCB22338.sanef.groupe","10.219.31.8","fe80:0:0:0:6370:77eb:8c50:5ac9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 02:08PM GMT+0200)","16 Apr 2026 02:08PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322590821","","PCB18400.sanef.groupe","10.101.243.85","fe80:0:0:0:347e:9b63:3c31:9c6e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 11:04AM GMT+0200)","22 Apr 2026 10:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322591008","","PCB21289.sanef.groupe","10.12.31.13","fe80:0:0:0:a353:15cc:41ba:ece5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (18 Apr 2026 08:28AM GMT+0200)","18 Apr 2026 12:09PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322597044","","PCS22825.sanef-int.adds","10.100.13.102","fe80:0:0:0:b6bd:d932:c1c5:5ee9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3476","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:41PM GMT+0200)","22 Apr 2026 10:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"322598573","","PCB21628.sanef.groupe","10.4.31.22","fe80:0:0:0:9ddd:947f:97ea:4cc0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:51AM GMT+0200)","22 Apr 2026 09:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322598693","","PCB23650.sanef.groupe","10.205.0.134","fe80:0:0:0:6d31:106a:cb2d:3e6c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:19AM GMT+0200)","21 Apr 2026 11:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322600782","","PCS22821.sanef-int.adds","10.209.13.100","fe80:0:0:0:9af4:f132:dc6c:3f71","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:40AM GMT+0200)","22 Apr 2026 06:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"322631139","","PCB21285.sanef.groupe","10.4.31.5","fe80:0:0:0:3bd2:6045:b3b0:cf85","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (16 Apr 2026 10:31AM GMT+0200)","16 Apr 2026 06:04PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322639738","","PCB22824.sanef.groupe","10.219.31.6","fe80:0:0:0:23a3:aecb:f415:4aed","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:12AM GMT+0200)","22 Apr 2026 06:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322639832","","PCB22771.sanef.groupe","10.106.31.12","fe80:0:0:0:2caa:1069:2e36:8e7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:20PM GMT+0200)","22 Apr 2026 07:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322640228","","PCB23715.sanef.groupe","10.2.31.4","fe80:0:0:0:ccb6:7eb0:d48e:2e5b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 07:45AM GMT+0200)","17 Apr 2026 12:42PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322648531","","PCS22776.sanef-int.adds","10.152.13.100","fe80:0:0:0:eedf:f387:207c:5647","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:37AM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"322650851","","PCB23754.sanef.groupe","10.255.3.142","fe80:0:0:0:4787:b026:ee96:fee1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:13AM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"322656204","","PCB23755.sanef.groupe","10.255.3.145","fe80:0:0:0:d339:bddd:e6eb:b9dc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:43AM GMT+0200)","22 Apr 2026 09:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323150669","","PCB21288.sanef.groupe","10.255.3.162","fe80:0:0:0:6897:f465:3a99:660","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:27AM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323151444","","PCB21147.sanef.groupe","10.255.2.139","fe80:0:0:0:389a:4b8c:c86e:1483","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:56PM GMT+0200)","22 Apr 2026 01:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323153594","","PCB22851.sanef.groupe","10.219.31.5","fe80:0:0:0:6a96:a074:2d22:65ad","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:11AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323154710","","PCB23581.sanef.groupe","10.106.31.8","fe80:0:0:0:e560:6c19:ab34:fb20","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:41PM GMT+0200)","22 Apr 2026 06:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323156235","","PCB22314.sanef.groupe","10.200.30.28","fe80:0:0:0:2ebc:94c7:c829:50a0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:08AM GMT+0200)","22 Apr 2026 10:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323156256","","PCB22920.sanef.groupe","10.152.30.14","fe80:0:0:0:b1a4:c00d:7122:4d70","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:47PM GMT+0200)","22 Apr 2026 07:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323156866","","PCB23732.sanef.groupe","192.168.1.70","fe80:0:0:0:6b7d:87ef:aa20:ad71","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:52AM GMT+0200)","17 Apr 2026 09:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323157321","","PCB22893.sanef.groupe","10.189.30.10","fe80:0:0:0:f8ba:a4a0:681a:f14c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:11AM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323159819","","PCB23716.sanef.groupe","10.12.31.8","fe80:0:0:0:b9b:377a:b0a5:f8ec","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 09:36AM GMT+0200)","17 Apr 2026 01:49PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323160071","","PCB23766.sanef.groupe","10.8.30.14","fe80:0:0:0:c561:7b5b:621f:613b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (13 Apr 2026 10:49AM GMT+0200)","14 Apr 2026 11:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323160502","","PCB23605.sanef.groupe","10.5.31.55","fe80:0:0:0:367c:792a:b19:e03d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","VM Manifest Downloaded (10 Apr 2026 03:36AM GMT+0200)","10 Apr 2026 08:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323162090","","PCB22457.sanef.groupe","10.100.39.15","fe80:0:0:0:923f:e7ed:84c2:49df","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:15AM GMT+0200)","22 Apr 2026 07:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323162176","","PCB23720.sanef.groupe","10.220.31.31","fe80:0:0:0:9476:d251:66b1:dd58","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:03AM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323162513","","PCB22780.sanef.groupe","10.209.31.5","fe80:0:0:0:73b7:ea23:d657:46","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:18AM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323163331","","PCB20836.sanef.groupe","10.255.2.240","fe80:0:0:0:b5d6:11e0:fb7a:2367","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:14AM GMT+0200)","22 Apr 2026 11:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323173882","","PCB23584.sanef.groupe","10.255.2.15","fe80:0:0:0:f1d8:f992:a83d:baeb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Inventory Scan Complete (20 Apr 2026 11:33AM GMT+0200)","20 Apr 2026 11:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323174338","","PCB22778.sanef.groupe","10.189.31.5","fe80:0:0:0:f798:c368:ab51:f8bf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (08 Apr 2026 10:39AM GMT+0200)","21 Apr 2026 12:33PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323176461","","PCB22904.sanef.groupe","10.105.31.4","fe80:0:0:0:f5fe:545c:3bd1:a2c4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 06:10PM GMT+0200)","19 Apr 2026 11:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323177281","","PCB23738.sanef.groupe","10.5.31.20","fe80:0:0:0:19c5:6f48:5d99:9bd2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:59AM GMT+0200)","22 Apr 2026 09:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323177560","","PCB22889.sanef.groupe","10.152.30.10","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:48AM GMT+0200)","22 Apr 2026 03:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323177947","","PCB22903.sanef.groupe","10.100.39.11","fe80:0:0:0:9242:2d10:46a:99d8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:18PM GMT+0200)","22 Apr 2026 06:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323178071","","PCB21141.sanef.groupe","10.255.2.176","fe80:0:0:0:e3c:1ee3:7bd2:21a6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:54PM GMT+0200)","22 Apr 2026 06:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323178109","","PCB23736.sanef.groupe","10.5.31.48","fe80:0:0:0:8c9b:6be6:15bf:a187","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:13AM GMT+0200)","21 Apr 2026 10:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323178938","","PCB17649.sanef.groupe","10.101.243.86","fe80:0:0:0:b452:a894:db09:2f91","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:42AM GMT+0200)","21 Apr 2026 10:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323181432","","PCB23718.sanef.groupe","10.205.1.3","fe80:0:0:0:674:1d33:9056:23dd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 10:15AM GMT+0200)","16 Apr 2026 07:34PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323182464","","PCB23737.sanef.groupe","10.5.31.43","fe80:0:0:0:931f:8c2c:e38e:2cce","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:19AM GMT+0200)","17 Apr 2026 02:55PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323186398","","PCB23770.sanef.groupe","10.3.31.3","fe80:0:0:0:37de:1342:60ba:efe3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:30AM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323187973","","PCB22815.sanef.groupe","10.152.31.32","fe80:0:0:0:c255:579c:39b3:e74c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:13PM GMT+0200)","17 Apr 2026 09:31PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323205153","","vpgawamft2.sanef.groupe","10.42.16.17","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:57PM GMT+0200)","22 Apr 2026 09:40AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"323212275","","PCB23587.sanef.groupe","10.100.39.30","fe80:0:0:0:cfb:aca4:f696:f1f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:07AM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323213012","","PCB23688.sanef.groupe","10.5.31.18","fe80:0:0:0:f6b0:7933:e49a:4e2a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:42PM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323214239","","PCB20844.sanef.groupe","10.205.0.36","fe80:0:0:0:4685:3379:f277:f1c0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:02AM GMT+0200)","17 Apr 2026 02:50PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323214900","","vpgawagtw2.sanef.groupe","192.168.19.69","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:56PM GMT+0200)","22 Apr 2026 09:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"323216445","","PCB23771.sanef.groupe","10.5.31.60","fe80:0:0:0:90a1:8a1f:5e3e:53b0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:28AM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323216818","","PCB23684.sanef.groupe","10.6.31.6","fe80:0:0:0:b586:c44e:e0e0:6448","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (10 Apr 2026 09:47AM GMT+0200)","10 Apr 2026 02:44PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"323979817","","PCB22282.sanef.groupe","10.202.31.29","fe80:0:0:0:e109:f71e:15c9:e488","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:32PM GMT+0200)","21 Apr 2026 06:32PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"323985060","","PCB22326.sanef.groupe","10.255.1.8","fe80:0:0:0:3f26:a0d7:c77:ce89","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:47PM GMT+0200)","21 Apr 2026 05:47PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"323987697","","PCB23749.sanef.groupe","10.4.31.26","fe80:0:0:0:e56d:ae1f:4e0f:5d0e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (20 Apr 2026 08:28AM GMT+0200)","20 Apr 2026 08:28AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"323988926","","PCB23689.sanef.groupe","10.205.0.193","fe80:0:0:0:c44:af7c:5db:7d7a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:42AM GMT+0200)","22 Apr 2026 09:42AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"323994533","","PCB20628.sanef.groupe","10.100.39.3","fe80:0:0:0:ff16:6981:6873:2e2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:59AM GMT+0200)","17 Apr 2026 08:59AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"323998861","","PCB22336.sanef.groupe","10.203.31.9","fe80:0:0:0:445:3ad:803:3269","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:37PM GMT+0200)","21 Apr 2026 07:37PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324004548","","PCB18099.sanef.groupe","192.168.1.14","fe80:0:0:0:5d7:e13f:1fdc:775a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:06AM GMT+0200)","22 Apr 2026 09:06AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324016325","","PCB18612.sanef.groupe","10.255.4.176","fe80:0:0:0:e10c:f6fd:16b6:9bb4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:06AM GMT+0200)","22 Apr 2026 08:06AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324023210","","PCB18751.sanef.groupe","192.168.1.33","fe80:0:0:0:7262:7c35:c55:2c2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:35AM GMT+0200)","22 Apr 2026 08:35AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324025716","","PCB20740.sanef.groupe","10.255.2.224","fe80:0:0:0:fc10:ecc3:6143:19c6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Manifest Downloaded (20 Apr 2026 07:50PM GMT+0200)","20 Apr 2026 07:50PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324026821","","PCB22324.sanef.groupe","10.203.31.0","fe80:0:0:0:ce5c:4208:c8d4:6b91","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:24AM GMT+0200)","22 Apr 2026 08:24AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324027359","","PCB20634.sanef.groupe","10.100.39.66","fe80:0:0:0:f08:4ca2:ed1d:169","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:44AM GMT+0200)","22 Apr 2026 08:44AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324031877","","PCB20687.sanef.groupe","10.200.31.3","fe80:0:0:0:13be:fa11:1253:73a0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:07AM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324031938","","PCB17911.sanef.groupe","10.4.31.57","fe80:0:0:0:1946:1603:79e6:6512","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:13PM GMT+0200)","21 Apr 2026 12:13PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324041162","","PCB17959.sanef.groupe","10.205.0.131","fe80:0:0:0:ac2f:5d63:2ae1:b5a4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:12AM GMT+0200)","22 Apr 2026 09:12AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324049856","","PCB22275.sanef.groupe","10.255.3.137","fe80:0:0:0:5978:9e2f:a223:dbeb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:59AM GMT+0200)","22 Apr 2026 07:59AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324054990","","PCB23788.sanef.groupe","10.5.31.39","fe80:0:0:0:97ce:1694:4824:afe0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:43AM GMT+0200)","22 Apr 2026 08:43AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324061930","","PCB22340.sanef.groupe","10.203.31.5","fe80:0:0:0:b072:fe04:bb00:2044","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:21AM GMT+0200)","22 Apr 2026 05:21AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324088493","","PCB21282.sanef.groupe","192.168.0.15","fe80:0:0:0:2dc4:c71e:2628:7991","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:11AM GMT+0200)","22 Apr 2026 08:11AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324096142","","PCB20672.sanef.groupe","10.205.0.144","fe80:0:0:0:1a2b:9ec0:5b1:b3a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.0.397","Inventory Manifest Downloaded (29 Mar 2026 06:24PM GMT+0200)","29 Mar 2026 06:24PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324115008","","PCB23789.sanef.groupe","10.12.31.12","fe80:0:0:0:ee7b:953c:2b8d:b7c2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:22PM GMT+0200)","21 Apr 2026 09:22PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324122852","","PCB23556.sanef.groupe","10.4.31.2","fe80:0:0:0:f692:e8f8:e7dc:78ef","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:27AM GMT+0200)","22 Apr 2026 07:27AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324122888","","PCB23769.sanef.groupe","10.5.30.17","fe80:0:0:0:d909:3d47:1056:a5d9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:06AM GMT+0200)","22 Apr 2026 02:06AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324129408","","PCB22328.sanef.groupe","10.203.31.6","fe80:0:0:0:2d8f:3e46:2f15:b448","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 02:37PM GMT+0200)","21 Apr 2026 02:37PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324132423","","PCB18068.sanef.groupe","192.168.1.15","fe80:0:0:0:455d:4d74:4720:af8c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:55AM GMT+0200)","22 Apr 2026 07:55AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324140248","","PCB18113.sanef.groupe","10.100.39.64","fe80:0:0:0:ef2b:b625:e67c:727","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:09AM GMT+0200)","21 Apr 2026 10:09AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324324774","","PCB18615.sanef.groupe","10.4.31.29","fe80:0:0:0:7845:f279:a7f5:84bf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:05AM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324329964","","PCB18617.sanef.groupe","192.168.1.32","fe80:0:0:0:ea18:640f:4c72:e985","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:45AM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324333089","","PCB18634.sanef.groupe","10.255.1.184","fe80:0:0:0:e4c5:1c71:2518:473a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Manifest Downloaded (20 Apr 2026 10:14AM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324354937","","PCB22285.sanef.groupe","10.207.31.0","fe80:0:0:0:906a:6030:7983:2bd9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:17AM GMT+0200)","22 Apr 2026 07:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324358337","","PCB18711.sanef.groupe","10.205.0.106","fe80:0:0:0:4195:c02a:dff1:3d37","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:56AM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324358744","","PCB22316.sanef.groupe","10.255.3.146","fe80:0:0:0:774c:bfb1:61f1:f823","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:13AM GMT+0200)","22 Apr 2026 08:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324359363","","vpgawbpgs1","10.42.16.18","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:58PM GMT+0200)","22 Apr 2026 06:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,BDD-POS DYN]" +"324381157","","PCB22287.sanef.groupe","10.209.31.3","fe80:0:0:0:efc4:9261:967f:317e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 07:13PM GMT+0200)","22 Apr 2026 07:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324382600","","PCB21312.sanef.groupe","10.255.4.190","fe80:0:0:0:16ec:c3ae:bc64:5ffb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 10:00AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324401372","","PCB20833.sanef.groupe","10.5.31.31","2001:861:5a83:a200:705e:dbd1:c30d:bdeb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:05PM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324418064","","PCB20824.sanef.groupe","10.5.31.51","fe80:0:0:0:2cbf:d17b:f6d5:f70a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:58AM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324420574","","PCB23791.sanef.groupe","10.205.0.20","fe80:0:0:0:a3c3:5794:7fb5:adbc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:58AM GMT+0200)","17 Apr 2026 02:57PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324421657","","PCB23775.sanef.groupe","10.5.31.42","fe80:0:0:0:c27e:9dc1:201f:98c7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:34AM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324426868","","PCB20832.sanef.groupe","10.5.31.33","fe80:0:0:0:6064:aa14:ae74:2239","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:20AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324439316","","PCB23790.sanef.groupe","10.255.2.134","fe80:0:0:0:b41b:69e8:e523:7320","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:06AM GMT+0200)","22 Apr 2026 09:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324455640","","PCB23777.sanef.groupe","10.5.30.15","fe80:0:0:0:8534:f37a:dac:244d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:36AM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324636772","","PCB17799.sanef.groupe","10.200.31.24","fe80:0:0:0:c06c:38b1:6312:82fe","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:17AM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324640354","","PCB23725.sanef.groupe","10.255.3.250","fe80:0:0:0:7b64:e30a:4acf:3282","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:05PM GMT+0200)","22 Apr 2026 10:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324654124","","PCB20667.sanef.groupe","10.255.2.156","fe80:0:0:0:8d5a:989e:43e6:b42b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:50AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324661113","","PCB20664.sanef.groupe","10.205.0.52","fe80:0:0:0:8d05:b4ea:3895:649e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (09 Apr 2026 04:13PM GMT+0200)","09 Apr 2026 04:13PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324669813","","PCB23753.sanef.groupe","10.4.31.39","fe80:0:0:0:9671:18cc:7606:792b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (10 Apr 2026 08:54AM GMT+0200)","10 Apr 2026 05:56PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324670706","","PCB20679.sanef.groupe","10.100.39.38","fe80:0:0:0:4eec:8924:8060:1455","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:49AM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324673028","","PCB20650.sanef.groupe","10.100.39.48","fe80:0:0:0:c4f6:810a:620b:2d9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:45AM GMT+0200)","22 Apr 2026 09:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"324673744","","PCB23748.sanef.groupe","10.5.31.56","fe80:0:0:0:85eb:bbc1:5430:f1f6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:03AM GMT+0200)","22 Apr 2026 09:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324680968","","PCB23787.sanef.groupe","10.205.0.109","fe80:0:0:0:365d:e4f:e993:458f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:36AM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324683544","","PCB17795.sanef.groupe","10.220.31.53","fe80:0:0:0:534c:6295:4213:5fce","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 09:36AM GMT+0200)","22 Apr 2026 09:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324685105","","PCB20743.sanef.groupe","10.255.4.203","fe80:0:0:0:c109:e0bb:e0f9:981a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:48AM GMT+0200)","22 Apr 2026 09:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324685600","","PCB23786.sanef.groupe","10.255.1.129","fe80:0:0:0:33dc:b2ff:9fef:ebcd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 11:57AM GMT+0200)","17 Apr 2026 03:17PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324686300","","PCB20660.sanef.groupe","10.205.0.130","fe80:0:0:0:332a:c5f0:57ac:3cf0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:19AM GMT+0200)","17 Apr 2026 03:00PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324697414","","PCB17779.sanef.groupe","192.168.1.17","fe80:0:0:0:b29e:6b4f:d1ff:2f09","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 10:36AM GMT+0200)","20 Apr 2026 10:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324698116","","PCB23733.sanef.groupe","10.205.0.71","fe80:0:0:0:f6e6:1748:10f8:e9a0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:01AM GMT+0200)","22 Apr 2026 09:01AM GMT+0200","Profil Workstation","","PM,VM ","[Cloud Agent,Workstation]" +"324698955","","vpgawamft1.sanef.groupe","10.42.16.16","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:32PM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"324702377","","PCB23734.sanef.groupe","10.205.0.133","fe80:0:0:0:6e47:b86b:6222:6a70","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:12PM GMT+0200)","21 Apr 2026 01:12PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324711392","","PCB23776.sanef.groupe","192.168.1.167","fe80:0:0:0:3035:21ff:d1e7:805d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:23AM GMT+0200)","22 Apr 2026 08:23AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324711439","","PCB23750.sanef.groupe","10.5.31.44","fe80:0:0:0:9900:c09f:766f:85f4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:38AM GMT+0200)","22 Apr 2026 08:38AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"324719796","","PCB20675.sanef.groupe","10.100.39.51","fe80:0:0:0:5ec1:7260:8681:95b2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:23AM GMT+0200)","22 Apr 2026 08:23AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324720612","","PCB23752.sanef.groupe","192.168.1.25","fe80:0:0:0:eba8:33cb:4088:c515","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:55AM GMT+0200)","22 Apr 2026 07:55AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324722790","","PCB18115.sanef.groupe","192.168.1.109","fe80:0:0:0:4610:f3e3:5699:875b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:02AM GMT+0200)","22 Apr 2026 09:02AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324727578","","PCB23784.sanef.groupe","10.205.0.229","fe80:0:0:0:35dd:2198:7131:d14","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:44PM GMT+0200)","21 Apr 2026 04:44PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324730239","","PCB23726.sanef.groupe","10.205.0.119","fe80:0:0:0:45a2:1cb4:bf20:e70f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:51AM GMT+0200)","21 Apr 2026 11:51AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324739346","","sppeaanvr33","10.41.7.132","fe80:0:0:0:673f:30e2:bb50:a939","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:01AM GMT+0200)","22 Apr 2026 06:24AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Production,NVR,OS-WIN-SRV DYN]" +"324752677","","sppeaanvr30","10.41.7.129","fe80:0:0:0:bdab:15f2:9b99:2dca","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:49PM GMT+0200)","22 Apr 2026 06:31AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Production,NVR,OS-WIN-SRV DYN]" +"324759055","","sppeaanvr31","10.41.7.130","fe80:0:0:0:ac09:85a:2dfb:2b","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:43AM GMT+0200)","22 Apr 2026 09:05AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Production,NVR,OS-WIN-SRV DYN]" +"324767419","","sppeaanvr32","10.41.7.131","fe80:0:0:0:995c:772e:84b2:f62a","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:49AM GMT+0200)","22 Apr 2026 08:20AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Production,NVR,OS-WIN-SRV DYN]" +"324936733","","vpstlbtel2.sanef-int.adds","10.41.13.53","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 3453","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:03AM GMT+0200)","22 Apr 2026 09:47AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Production,Systel,OS-WIN-SRV DYN,BDD-SQL DYN]" +"324947687","","vpstlbhis1.sanef-int.adds","10.41.13.54","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 3453","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:55PM GMT+0200)","22 Apr 2026 06:12AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Production,Systel,OS-WIN-SRV DYN,BDD-SQL DYN]" +"324950264","","vpstlbpea1.sanef-int.adds","10.41.13.50","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 3453","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:27AM GMT+0200)","22 Apr 2026 07:08AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Production,Systel,OS-WIN-SRV DYN,BDD-SQL DYN]" +"324951257","","vmm_stl_01.sanef-int.adds","10.41.13.60","fe80:0:0:0:586f:1819:ecc4:ae02","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:24PM GMT+0200)","21 Apr 2026 07:24PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324953378","","SVP21342.sanef-int.adds","10.112.2.27","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Configuration Downloaded (20 Apr 2026 06:27PM GMT+0200)","21 Apr 2026 01:34PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324955368","","PCB23751.sanef.groupe","10.5.31.36","fe80:0:0:0:b2c7:7638:970f:b849","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:49AM GMT+0200)","22 Apr 2026 10:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324956464","","PCB21319.sanef.groupe","10.202.31.32","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631","6.4.0.397","Inventory Manifest Downloaded (03 Apr 2026 02:09PM GMT+0200)","03 Apr 2026 02:09PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324956494","","PCB20659.sanef.groupe","10.205.0.91","fe80:0:0:0:cd25:3240:7359:1d0b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:31AM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"324960240","","PCB20671.sanef.groupe","10.100.39.20","fe80:0:0:0:563b:3a11:a5f2:fae5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:12AM GMT+0200)","22 Apr 2026 08:12AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"324979670","","PCB18095.sanef.groupe","10.205.0.92","fe80:0:0:0:f33c:e3c3:42dd:ca2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Manifest Downloaded (10 Apr 2026 10:13AM GMT+0200)","10 Apr 2026 10:13AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"324980888","","PCB17797.sanef.groupe","10.200.31.18","fe80:0:0:0:625f:8f6a:bbd6:9e61","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:11AM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"324997505","","PCB21263.sanef.groupe","10.8.30.12","fe80:0:0:0:369d:d95a:5a12:8d42","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:06AM GMT+0200)","22 Apr 2026 04:06AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325012405","","PCB21259.sanef.groupe","10.255.2.239","fe80:0:0:0:dc80:2e23:7e9e:d898","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:36PM GMT+0200)","21 Apr 2026 11:36PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325013557","","PCB18023.sanef.groupe","10.100.39.52","fe80:0:0:0:98bd:bc2e:2516:c749","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (16 Apr 2026 07:43AM GMT+0200)","16 Apr 2026 07:43AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325015761","","PCB20748.sanef.groupe","10.205.0.150","fe80:0:0:0:9a78:531f:320:6652","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (15 Apr 2026 03:12PM GMT+0200)","15 Apr 2026 03:12PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325026193","","viaflarat1.sanef.groupe","10.46.34.78","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:48PM GMT+0200)","22 Apr 2026 06:24AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,OS-LIN-SRV DYN]" +"325041070","","vpaflarat1.sanef.groupe","10.46.34.14","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:21AM GMT+0200)","22 Apr 2026 07:57AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,OS-LIN-SRV DYN]" +"325044028","","PCB18026.sanef.groupe","192.168.1.122","fe80:0:0:0:1a01:5a54:9594:b17f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:39AM GMT+0200)","17 Apr 2026 08:39AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325166878","","SVP21267.sanef-int.adds","10.82.17.15","fe80:0:0:0:12be:6c47:e705:b197","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:37AM GMT+0200)","22 Apr 2026 07:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"325177105","","PCB21258.sanef.groupe","10.3.31.5","fe80:0:0:0:fddd:c896:f554:d988","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:24PM GMT+0200)","21 Apr 2026 05:24PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"325192331","","PCB21260.sanef.groupe","10.155.31.5","fe80:0:0:0:c420:f3e2:8275:fdd5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:54PM GMT+0200)","21 Apr 2026 07:54PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325208536","","PCB20742.sanef.groupe","10.200.31.22","fe80:0:0:0:2fa4:ba0:d407:b707","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:33AM GMT+0200)","22 Apr 2026 08:33AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325208884","","PCB21564.sanef.groupe","10.11.31.1","fe80:0:0:0:7ea3:ff70:37ad:32fa","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:51AM GMT+0200)","22 Apr 2026 04:51AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325213661","","PCB17884.sanef.groupe","10.255.1.155","fe80:0:0:0:5edd:e53e:fb6e:71ea","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:01AM GMT+0200)","22 Apr 2026 08:01AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325222565","","PCB21585.sanef.groupe","10.100.38.37","fe80:0:0:0:a269:ef2f:4784:7842","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:41AM GMT+0200)","22 Apr 2026 07:41AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325240938","","PCB20610.sanef.groupe","10.255.4.219","fe80:0:0:0:e60e:35b5:2bc7:478f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:53AM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325247657","","PCB21592.sanef.groupe","10.89.31.3","fe80:0:0:0:1c62:3f44:74fa:bb62","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:47PM GMT+0200)","21 Apr 2026 05:47PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325248248","","vposapkib1.sanef.groupe","10.41.20.63","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:52PM GMT+0200)","22 Apr 2026 08:47AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Péage,OS-LIN-SRV DYN]" +"325248310","","PCB21578.sanef.groupe","10.6.31.0","fe80:0:0:0:636e:8a94:3fdd:1ae0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:12AM GMT+0200)","22 Apr 2026 08:12AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325249200","","PCB21545.sanef.groupe","10.103.31.13","fe80:0:0:0:9e3a:41c5:1117:c369","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:41PM GMT+0200)","21 Apr 2026 08:41PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325249298","","PCB21562.sanef.groupe","10.6.30.10","fe80:0:0:0:54fa:76a8:814a:a519","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:34PM GMT+0200)","21 Apr 2026 08:34PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325249410","","PCB23625.sanef.groupe","10.12.31.4","fe80:0:0:0:ccbe:f664:313f:870","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:31AM GMT+0200)","17 Apr 2026 09:31AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325256015","","PCB23659.sanef.groupe","10.205.0.25","fe80:0:0:0:ca3c:7e1:a77c:3716","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:58PM GMT+0200)","21 Apr 2026 11:58PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325259667","","PCB21566.sanef.groupe","10.4.31.63","fe80:0:0:0:e358:f5de:c540:8bf9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:14AM GMT+0200)","22 Apr 2026 03:14AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325260276","","PCB21563.sanef.groupe","10.4.31.74","fe80:0:0:0:f0c1:e04c:7a41:33d0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.0.397","Inventory Scan Complete (19 Mar 2026 07:10AM GMT+0200)","19 Mar 2026 07:10AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325264423","","PCB21591.sanef.groupe","10.119.30.12","fe80:0:0:0:337b:897a:246:ed89","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:26AM GMT+0200)","22 Apr 2026 12:26AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325658504","","PCB20722.sanef.groupe","192.168.0.3","fe80:0:0:0:dfb2:ab40:ae89:3450","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:54AM GMT+0200)","21 Apr 2026 08:54AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325664644","","PCB20730.sanef.groupe","192.168.1.10","fe80:0:0:0:5c40:d096:90a5:87fb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:30AM GMT+0200)","22 Apr 2026 07:30AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325669861","","vpdsigrid1.sanef.groupe","10.44.5.227","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:38PM GMT+0200)","22 Apr 2026 06:13AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN]" +"325672004","","PCB20724.sanef.groupe","192.168.0.48","fe80:0:0:0:2a0b:e873:75b5:3480","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:27AM GMT+0200)","22 Apr 2026 08:27AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325678102","","PCB18611.sanef.groupe","10.5.31.0","fe80:0:0:0:309a:64e1:8b:ed03","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:38AM GMT+0200)","22 Apr 2026 07:38AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325679404","","PCB21136.sanef.groupe","10.208.31.12","fe80:0:0:0:27ad:4c38:2e34:1cd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:51AM GMT+0200)","22 Apr 2026 07:51AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325686787","","PCB18624.sanef.groupe","10.4.31.38","fe80:0:0:0:5cee:d29e:1a31:e28a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:59AM GMT+0200)","22 Apr 2026 08:59AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325688542","","PCB18044.sanef.groupe","10.205.0.44","fe80:0:0:0:aeca:7e63:ee4b:92fc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (18 Apr 2026 09:26AM GMT+0200)","18 Apr 2026 09:26AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325698057","","PCB20645.sanef.groupe","10.100.39.69","fe80:0:0:0:3887:baec:1345:b7ad","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:15AM GMT+0200)","22 Apr 2026 08:15AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325702018","","PCB16442.sanef.groupe","192.168.248.42","fe80:0:0:0:a601:bba5:a02d:4c62","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Manifest Downloaded (13 Apr 2026 10:09AM GMT+0200)","13 Apr 2026 10:09AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325710464","","PCB18054.sanef.groupe","10.205.0.126","fe80:0:0:0:14ce:2b40:8e4d:bdf4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:36PM GMT+0200)","21 Apr 2026 05:36PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325715706","","PCB20693.sanef.groupe","10.255.2.193","fe80:0:0:0:315d:f471:321d:2436","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (16 Apr 2026 09:10AM GMT+0200)","16 Apr 2026 09:10AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325726204","","PCB20749.sanef.groupe","192.168.1.15","fe80:0:0:0:d4f6:6ec0:e22f:aa64","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (19 Apr 2026 11:07AM GMT+0200)","19 Apr 2026 11:07AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325726629","","SVP22360.sanef-int.adds","10.252.12.210","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:13PM GMT+0200)","21 Apr 2026 10:13PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325730232","","PCB20646.sanef.groupe","10.100.39.108","fe80:0:0:0:1d9f:d2a0:d45:9372","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:42AM GMT+0200)","21 Apr 2026 09:42AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325731383","","PCB18735.sanef.groupe","10.205.0.178","fe80:0:0:0:5915:3d31:afb3:4efb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:06AM GMT+0200)","22 Apr 2026 09:06AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325748195","","PCB18619.sanef.groupe","10.205.0.67","fe80:0:0:0:a2a:4763:3bf8:c8e5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:29AM GMT+0200)","17 Apr 2026 08:29AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325891293","","PCB18049.sanef.groupe","10.255.4.241","fe80:0:0:0:42d5:f2b2:1da0:b7a0","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","6.4.0.397","Inventory Scan Complete (25 Mar 2026 09:59AM GMT+0200)","25 Mar 2026 09:59AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325911628","","PCB20681.sanef.groupe","10.108.31.13","fe80:0:0:0:5fbc:bf73:9d0f:4710","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:24AM GMT+0200)","22 Apr 2026 08:24AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325921598","","PCB18626.sanef.groupe","10.4.31.45","fe80:0:0:0:d7f1:5d2c:1578:e5e8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:00PM GMT+0200)","21 Apr 2026 07:00PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325938475","","PCB20725.sanef.groupe","192.168.1.13","fe80:0:0:0:72da:d18a:fed8:1193","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:05AM GMT+0200)","22 Apr 2026 08:05AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325943544","","PCB20727.sanef.groupe","10.255.1.180","fe80:0:0:0:ffc1:8360:59b5:93e4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:42AM GMT+0200)","22 Apr 2026 08:42AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325944997","","PCB20731.sanef.groupe","10.200.30.15","fe80:0:0:0:2c81:8aa8:ab9d:db93","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (20 Apr 2026 08:05AM GMT+0200)","20 Apr 2026 08:05AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325961873","","PCB20746.sanef.groupe","10.205.0.35","fe80:0:0:0:1ee6:27dd:7b43:f4f3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 07:41AM GMT+0200)","17 Apr 2026 07:41AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"325976420","","PCB18622.sanef.groupe","10.4.31.39","fe80:0:0:0:fca4:7e89:b735:30e0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:15AM GMT+0200)","22 Apr 2026 07:15AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326134718","","vposapapp1.sanef.groupe","10.41.20.60","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:45PM GMT+0200)","22 Apr 2026 10:32AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Péage,OS-LIN-SRV DYN,MID-NGINX DYN]" +"326191026","","PCB18417.sanef.groupe","192.168.1.13","2a01:cb0d:41:ca00:85a7:1a5c:777c:816c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:46AM GMT+0200)","22 Apr 2026 07:46AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326195154","","PCB18022.sanef.groupe","10.100.39.107","fe80:0:0:0:5591:228c:8206:5cca","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.0.397","Inventory Manifest Downloaded (07 Apr 2026 10:17AM GMT+0200)","07 Apr 2026 10:17AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326195826","","PCB18613.sanef.groupe","10.255.1.200","fe80:0:0:0:438e:d894:9231:7fa6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:44AM GMT+0200)","21 Apr 2026 09:44AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326195972","","PCB18057.sanef.groupe","10.205.0.251","fe80:0:0:0:e481:403b:44eb:9fba","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:24AM GMT+0200)","17 Apr 2026 09:24AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326211679","","PCB20644.sanef.groupe","10.100.39.153","fe80:0:0:0:cd1d:8871:9e50:4a29","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:22PM GMT+0200)","21 Apr 2026 08:22PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326222279","","PCB18058.sanef.groupe","10.205.0.45","fe80:0:0:0:7ad4:c8e3:539f:826a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:05AM GMT+0200)","22 Apr 2026 08:05AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326255599","","PCB21100.sanef.groupe","10.100.39.191","fe80:0:0:0:933a:2153:8340:3883","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:04AM GMT+0200)","21 Apr 2026 10:04AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326335081","","PCB21127.sanef.groupe","10.255.3.221","fe80:0:0:0:fe03:d8f4:6421:5353","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:43AM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326523065","","PCB23785.sanef.groupe","10.205.0.42","fe80:0:0:0:a656:9c4c:985a:2ae3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:45AM GMT+0200)","22 Apr 2026 01:45AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326545718","","PCB18038.sanef.groupe","192.168.1.166","fe80:0:0:0:7a27:a0fe:3322:2b68","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:20AM GMT+0200)","22 Apr 2026 08:20AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326550094","","PCB18056.sanef.groupe","10.255.1.192","fe80:0:0:0:84ff:88f7:eedf:a702","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:13AM GMT+0200)","22 Apr 2026 09:13AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326550236","","PCB23603.sanef.groupe","192.168.1.11","fe80:0:0:0:fce8:5134:ef9e:a060","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:40AM GMT+0200)","22 Apr 2026 08:40AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326559813","","PCB23735.sanef.groupe","192.168.1.31","fe80:0:0:0:7afa:b572:ae91:fe45","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:44AM GMT+0200)","17 Apr 2026 08:44AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326581508","","PCB17788.sanef.groupe","10.205.0.87","fe80:0:0:0:156f:3b60:2812:b235","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 04:14PM GMT+0200)","17 Apr 2026 04:14PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326582596","","PCB20726.sanef.groupe","10.255.3.224","fe80:0:0:0:afdc:6cc5:94e0:7fd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:58AM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326648225","","vpvsampci2","192.168.109.15","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:16AM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server]" +"326655696","","PCB24015.sanef.groupe","10.101.243.177","fe80:0:0:0:2d8c:f81f:6c5e:3c8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:59AM GMT+0200)","22 Apr 2026 08:59AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326661934","","vpvsampci1","192.168.109.14","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:17PM GMT+0200)","22 Apr 2026 09:13AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server]" +"326805330","","SVP22518.sanef-int.adds","10.132.1.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:56AM GMT+0200)","22 Apr 2026 07:56AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326811958","","PCB18715.sanef.groupe","10.255.3.159","fe80:0:0:0:b3fd:ca13:9c45:c4e4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:03AM GMT+0200)","17 Apr 2026 08:03AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326814945","","PCB18713.sanef.groupe","192.168.1.12","2a01:cb0d:288:4f00:240:610:d83b:2d04","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.0.397","Inventory Scan Complete (31 Mar 2026 09:03AM GMT+0200)","31 Mar 2026 09:03AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"326832593","","PCB23635.sanef.groupe","10.255.3.191","fe80:0:0:0:56f3:7a6c:9ac6:e26e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (15 Apr 2026 10:31AM GMT+0200)","15 Apr 2026 10:18PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"326853850","","PCB23665.sanef.groupe","192.168.1.64","fe80:0:0:0:d91e:aca6:bdf:aebc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:25PM GMT+0200)","21 Apr 2026 05:25PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"326855610","","PCB24039.sanef.groupe","10.100.39.111","fe80:0:0:0:549:e2f9:b790:2d1c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:22AM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"326861197","","PCB18722.sanef.groupe","10.255.2.242","fe80:0:0:0:9936:2562:1d4f:9e35","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Manifest Downloaded (21 Apr 2026 09:28AM GMT+0200)","21 Apr 2026 09:28AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"326865147","","PCB24024.sanef.groupe","10.255.3.226","fe80:0:0:0:b4e1:e557:fe0c:f36d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:53AM GMT+0200)","22 Apr 2026 09:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"326906953","","PCB23542.sanef.groupe","10.205.0.35","fe80:0:0:0:9e2a:4341:762:39f6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:41AM GMT+0200)","17 Apr 2026 01:31PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"327282857","","PCB18440.sanef.groupe","10.205.0.80","fe80:0:0:0:d5a9:fe33:d8b7:4e2b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:16AM GMT+0200)","22 Apr 2026 07:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"327302925","","PCB20637.sanef.groupe","10.100.38.26","fe80:0:0:0:e8ac:1123:9db1:6436","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Manifest Downloaded (16 Apr 2026 07:57AM GMT+0200)","16 Apr 2026 07:22PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"327315662","","PCB20732.sanef.groupe","10.255.2.148","fe80:0:0:0:6299:befa:de66:694f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:49AM GMT+0200)","22 Apr 2026 07:49AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327322327","","PCB21557.sanef.groupe","10.6.30.13","fe80:0:0:0:f146:754d:2a11:787a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:35AM GMT+0200)","22 Apr 2026 04:35AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327322734","","PCB17793.sanef.groupe","10.205.0.89","2a01:cb0c:88e7:5200:5c83:e0db:28b:812f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:52PM GMT+0200)","21 Apr 2026 08:52PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327324433","","PCB21157.sanef.groupe","10.205.0.169","fe80:0:0:0:bf2d:1424:6398:60f1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (20 Apr 2026 12:07PM GMT+0200)","20 Apr 2026 12:07PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327328494","","PCB20624.sanef.groupe","10.200.31.7","fe80:0:0:0:d0cf:a441:55b0:5474","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:21AM GMT+0200)","22 Apr 2026 08:21AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327506991","","PCB23583.sanef.groupe","10.205.1.6","fe80:0:0:0:4292:a5f4:213d:ba2e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (19 Apr 2026 04:05PM GMT+0200)","19 Apr 2026 04:05PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327512345","","PCB23577.sanef.groupe","10.205.0.58","fe80:0:0:0:7099:67fb:f530:7dcc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:20AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"327515529","","PCB23607.sanef.groupe","10.255.2.135","fe80:0:0:0:bf55:1407:545b:6fb7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Manifest Downloaded (14 Apr 2026 12:47PM GMT+0200)","14 Apr 2026 12:47PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327519043","","vpgeobody1.sanef.groupe","10.41.40.171","fe80:0:0:0:1d43:83e0:d130:7fb2","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 18993","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:38AM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Géolocalisation,OS-WIN-SRV DYN,BDD-POS DYN]" +"327522961","","PCB23514.sanef.groupe","10.205.0.128","fe80:0:0:0:f08f:fc9a:9efe:b208","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (20 Apr 2026 09:24AM GMT+0200)","20 Apr 2026 09:24AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327523638","","PCB23547.sanef.groupe","10.255.2.151","fe80:0:0:0:8028:4dd8:5071:a4c9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:56AM GMT+0200)","22 Apr 2026 07:56AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327525060","","PCB23536.sanef.groupe","10.255.4.229","fe80:0:0:0:c420:15bb:2c75:84af","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:53AM GMT+0200)","21 Apr 2026 09:53AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327526036","","PCB23521.sanef.groupe","10.152.31.2","fe80:0:0:0:e1b3:a6f4:c950:69d5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:04AM GMT+0200)","22 Apr 2026 09:04AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327528319","","PCB20605.sanef.groupe","10.255.3.216","fe80:0:0:0:9af3:9531:2b29:a3d9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:53AM GMT+0200)","21 Apr 2026 09:53AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327528672","","PCB21582.sanef.groupe","10.2.31.6","fe80:0:0:0:315c:e72b:5b47:c0da","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:17AM GMT+0200)","22 Apr 2026 06:17AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327531276","","PCB23538.sanef.groupe","10.205.0.216","fe80:0:0:0:e34:8e76:ee04:fa8a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 10:12AM GMT+0200)","17 Apr 2026 10:12AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327537099","","PCB23512.sanef.groupe","192.168.1.195","fe80:0:0:0:4eb2:db3e:959b:e084","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:02AM GMT+0200)","22 Apr 2026 09:02AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327537152","","PCB20747.sanef.groupe","192.168.1.109","fe80:0:0:0:ec6c:333a:e2bc:8612","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:36AM GMT+0200)","22 Apr 2026 09:36AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327544297","","PCB23537.sanef.groupe","10.255.4.227","fe80:0:0:0:c395:bd4:a2a1:8c2a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Manifest Downloaded (15 Apr 2026 09:00AM GMT+0200)","15 Apr 2026 09:00AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327556832","","PCB20676.sanef.groupe","10.255.2.187","fe80:0:0:0:6e5f:4811:54ab:19bb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:59AM GMT+0200)","21 Apr 2026 08:59AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327559932","","PCB23540.sanef.groupe","192.168.1.200","fe80:0:0:0:d387:2c2:5f8e:d8a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:10AM GMT+0200)","22 Apr 2026 09:10AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327564746","","PCB23682.sanef.groupe","10.205.0.88","fe80:0:0:0:f59e:4bd9:209:8dd8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (20 Apr 2026 08:47PM GMT+0200)","20 Apr 2026 08:47PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327577343","","vrdsibetc3.sanef-rec.fr","10.100.16.103","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:34PM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,BDD,OS-LIN-SRV DYN]" +"327578148","","PCB20686.sanef.groupe","192.168.1.12","fe80:0:0:0:53d:2f90:23f7:3188","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (19 Apr 2026 04:05PM GMT+0200)","19 Apr 2026 04:05PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327589740","","PCB23792.sanef.groupe","10.3.31.6","fe80:0:0:0:e86b:fcfd:bc10:c6ed","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:23AM GMT+0200)","22 Apr 2026 08:23AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327606224","","PCB20691.sanef.groupe","192.168.1.21","fe80:0:0:0:2ad6:777:cb9:26bc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:36AM GMT+0200)","21 Apr 2026 08:36AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327770408","","PCB21303.sanef.groupe","10.12.31.16","fe80:0:0:0:a986:94dd:fd5b:8550","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:39AM GMT+0200)","22 Apr 2026 07:39AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327790435","","PCB23575.sanef.groupe","10.255.3.179","fe80:0:0:0:963a:975e:31b8:862","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:31AM GMT+0200)","22 Apr 2026 08:31AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327807308","","PCB23552.sanef.groupe","10.203.31.8","fe80:0:0:0:d3d7:9ffe:ca39:a51b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:48PM GMT+0200)","21 Apr 2026 10:48PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327807405","","PCB23574.sanef.groupe","10.207.31.3","fe80:0:0:0:ea0b:f48:71e3:1cd8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:54AM GMT+0200)","22 Apr 2026 02:54AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327817179","","PCB23691.sanef.groupe","10.205.0.190","fe80:0:0:0:df6e:d194:ec54:c835","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 12:26PM GMT+0200)","17 Apr 2026 12:26PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327821307","","PCB23704.sanef.groupe","10.207.31.6","fe80:0:0:0:7659:f0ba:c301:786e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:18AM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327829869","","PCB23707.sanef.groupe","10.255.3.132","fe80:0:0:0:5cad:57f8:8405:f41d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:32AM GMT+0200)","22 Apr 2026 07:32AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"327831271","","PCB23576.sanef.groupe","192.168.1.75","fe80:0:0:0:3d1f:8637:64d8:6e6e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:34AM GMT+0200)","17 Apr 2026 09:34AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"328573634","","PCB17653.sanef.groupe","10.101.243.31","fe80:0:0:0:f09:5986:fce6:2c74","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:12AM GMT+0200)","22 Apr 2026 09:12AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"328593294","","PCB23705.sanef.groupe","192.168.1.20","fe80:0:0:0:fb0e:6a91:95ad:23de","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:29PM GMT+0200)","21 Apr 2026 01:29PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"328593408","","PCB20745.sanef.groupe","10.255.4.192","fe80:0:0:0:efea:d4dd:a1a2:e2b6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:48AM GMT+0200)","22 Apr 2026 08:48AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"328601589","","PCB18051.sanef.groupe","192.168.1.33","fe80:0:0:0:6006:3c4e:b2b5:35db","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:01AM GMT+0200)","22 Apr 2026 08:01AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"328602133","","PCB21308.sanef.groupe","10.5.31.23","2a01:cb0d:40:7700:b952:f9f9:d683:d94d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:11AM GMT+0200)","22 Apr 2026 08:11AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"328612085","","PCB23680.sanef.groupe","10.205.0.32","fe80:0:0:0:5096:78b3:cb64:729f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (19 Apr 2026 06:47PM GMT+0200)","19 Apr 2026 06:47PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"328617436","","PCB23582.sanef.groupe","10.205.0.20","fe80:0:0:0:8535:8ad3:8032:ea86","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:46AM GMT+0200)","22 Apr 2026 08:46AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"328622009","","PCB23611.sanef.groupe","10.202.31.44","fe80:0:0:0:47b4:2d7c:d876:6c20","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:13AM GMT+0200)","22 Apr 2026 08:13AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"328633300","","PCB23703.sanef.groupe","192.168.0.4","fe80:0:0:0:943e:3d39:3eaa:d452","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:32AM GMT+0200)","22 Apr 2026 08:32AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"328645186","","PCB23700.sanef.groupe","10.219.31.1","fe80:0:0:0:2421:dabc:971:f2f0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:51AM GMT+0200)","22 Apr 2026 12:51AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329160327","","PCB21119.sanef.groupe","10.205.0.8","fe80:0:0:0:e958:592e:bc51:3652","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:25AM GMT+0200)","22 Apr 2026 01:25AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329188187","","PCB21358.sanef.groupe","10.205.0.17","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.0.397","Inventory Scan Complete (02 Apr 2026 07:57AM GMT+0200)","02 Apr 2026 07:57AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329215988","","PCB22520.sanef.groupe","10.205.1.81","fe80:0:0:0:fd58:a6ce:7a58:4691","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 10:09AM GMT+0200)","17 Apr 2026 10:09AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329216178","","PCB21109.sanef.groupe","192.168.1.41","fe80:0:0:0:f73b:12b:d341:892f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:24AM GMT+0200)","22 Apr 2026 09:24AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329229740","","PCB21095.sanef.groupe","10.255.2.241","fe80:0:0:0:3697:9c2c:814d:cf31","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:05AM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329426618","","MTR-4J775R3","10.101.246.203","","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:38AM GMT+0200)","22 Apr 2026 09:38AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329726746","","MTR-4PXF2L3","10.101.246.205","fe80:0:0:0:69c2:8e55:a1f0:817e","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:06PM GMT+0200)","21 Apr 2026 04:06PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329730033","","MTR-7PXF2L3","10.101.246.201","fe80:0:0:0:c70b:ea6e:6653:2b42","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:56PM GMT+0200)","22 Apr 2026 09:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"329737832","","MTR-JH775R3","10.101.246.202","fe80:0:0:0:fac1:3201:a69e:1e26","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:38AM GMT+0200)","22 Apr 2026 09:38AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329750335","","PCB20661.sanef.groupe","10.205.0.11","fe80:0:0:0:c773:d6be:6f37:1ba1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (13 Apr 2026 08:48AM GMT+0200)","13 Apr 2026 08:48AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329750376","","MTR-JF1CXM3","10.101.246.206","fe80:0:0:0:ca6:e03d:589d:a96b","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:36AM GMT+0200)","22 Apr 2026 09:36AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329760923","","MTR-3G1CXM3","10.101.246.208","fe80:0:0:0:f286:b73a:cbf2:2a81","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:39AM GMT+0200)","22 Apr 2026 08:39AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329765681","","MTR-1PXF2L3","10.101.246.207","fe80:0:0:0:339c:91:6c63:5d3e","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:39AM GMT+0200)","22 Apr 2026 08:39AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329775921","","PCB23683.sanef.groupe","10.255.3.174","fe80:0:0:0:84da:d353:f429:4a2e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:27AM GMT+0200)","22 Apr 2026 08:27AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329804270","","PCB17642.sanef.groupe","10.100.39.132","fe80:0:0:0:d597:93c5:b94a:2a08","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:02AM GMT+0200)","22 Apr 2026 09:02AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329815109","","PCB23655.sanef.groupe","10.255.2.142","fe80:0:0:0:a6e0:eb43:9866:7a0f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:40AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Workstation","","SCA,VM ","[Cloud Agent,Workstation]" +"329858125","","PCB22460.sanef.groupe","10.100.39.129","fe80:0:0:0:d6b3:714:aeff:8527","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:48AM GMT+0200)","22 Apr 2026 07:48AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329894638","","PCB18092.sanef.groupe","10.255.1.197","fe80:0:0:0:87ae:48db:601e:74d5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:48PM GMT+0200)","21 Apr 2026 09:48PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329929192","","PCB24038.sanef.groupe","10.152.31.10","fe80:0:0:0:1036:b5b6:d948:4b23","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:00PM GMT+0200)","21 Apr 2026 08:00PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329943602","","PCB23541.sanef.groupe","10.200.31.49","fe80:0:0:0:f57b:a20e:809:18b2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:06AM GMT+0200)","22 Apr 2026 09:06AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"329961623","","PCB23602.sanef.groupe","10.152.31.11","fe80:0:0:0:d640:b2a6:1a99:78e8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:29AM GMT+0200)","22 Apr 2026 08:29AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"330676210","","PCB18745.sanef.groupe","10.4.31.10","fe80:0:0:0:b60:c2d6:9120:acba","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:34AM GMT+0200)","22 Apr 2026 02:34AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"330689877","","PCB22707.sanef.groupe","10.4.31.42","fe80:0:0:0:8c80:310e:15cc:c09b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:21AM GMT+0200)","22 Apr 2026 08:21AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"330692278","","vdrepapbi1.recette.adds","10.45.7.170","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:10PM GMT+0200)","22 Apr 2026 09:44AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Recette,PowerBI,OS-WIN-SRV DYN]" +"330698020","","PCB21020.sanef.groupe","10.4.31.71","fe80:0:0:0:5502:981a:b0e9:3df","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (20 Apr 2026 08:12AM GMT+0200)","20 Apr 2026 08:12AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"330710708","","PCB21362.sanef.groupe","10.205.0.13","fe80:0:0:0:5db7:b9f0:748a:4876","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:53AM GMT+0200)","22 Apr 2026 07:53AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"330770170","","PCB23529.sanef.groupe","10.255.1.205","fe80:0:0:0:b166:5bda:8517:243d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:53AM GMT+0200)","21 Apr 2026 09:53AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"330772184","","PCB21290.sanef.groupe","10.4.31.88","fe80:0:0:0:8293:a75b:7da5:757a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:17AM GMT+0200)","22 Apr 2026 07:17AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"330793253","","PCB21286.sanef.groupe","10.205.0.28","fe80:0:0:0:d659:321c:7145:19d5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:36AM GMT+0200)","22 Apr 2026 08:36AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"330876341","","PCB23539.sanef.groupe","10.255.3.162","fe80:0:0:0:6dbf:8046:f9ea:c0f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:13AM GMT+0200)","22 Apr 2026 08:13AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331039777","","vrameahtp1.sanef-rec.fr","10.45.2.50","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:28PM GMT+0200)","22 Apr 2026 10:00AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,Sextan,DEX,OS-LIN-SRV DYN,MID-NGINX DYN]" +"331046153","","vrameahtp2.sanef-rec.fr","10.45.2.51","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:06AM GMT+0200)","22 Apr 2026 06:42AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,Sextan,DEX,OS-LIN-SRV DYN,MID-NGINX DYN]" +"331101993","","PCB18714.sanef.groupe","10.2.31.0","fe80:0:0:0:15f3:57ce:ed06:3f1d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:32AM GMT+0200)","21 Apr 2026 08:32AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331108752","","PMS22811.sanef-int.adds","10.44.201.102","fe80:0:0:0:7c6b:8d4b:639f:dc62","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:02AM GMT+0200)","22 Apr 2026 06:45AM GMT+0200","Profil Workstation","","SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN,TAG-SIC,TAG-CAPIV]" +"331108947","","PCB17651.sanef.groupe","10.189.31.9","fe80:0:0:0:f0bf:513f:ca1c:a379","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:10AM GMT+0200)","21 Apr 2026 03:10AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331111297","","PCB21167.sanef.groupe","10.152.30.12","fe80:0:0:0:3191:74a0:db26:e017","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:17AM GMT+0200)","22 Apr 2026 02:17AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331119694","","PCB21177.sanef.groupe","10.101.243.174","fe80:0:0:0:c01a:916f:c54:89b0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:24AM GMT+0200)","22 Apr 2026 09:24AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331127670","","PCB17646.sanef.groupe","10.152.31.38","fe80:0:0:0:a798:5ebc:787f:d319","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:17AM GMT+0200)","22 Apr 2026 08:17AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331137812","","PCB23606.sanef.groupe","192.168.1.47","fe80:0:0:0:f4ff:5d34:635b:4c61","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:12AM GMT+0200)","17 Apr 2026 08:12AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331139903","","PCB23546.sanef.groupe","10.205.0.250","fe80:0:0:0:3685:4573:5f68:2e49","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (11 Apr 2026 05:04PM GMT+0200)","11 Apr 2026 05:04PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331142306","","PCB23692.sanef.groupe","10.101.243.118","fe80:0:0:0:7212:f367:6dbd:6b1c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:44AM GMT+0200)","22 Apr 2026 09:44AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331143523","","PCB23588.sanef.groupe","10.205.0.132","fe80:0:0:0:a88:3018:5217:76ca","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:33AM GMT+0200)","21 Apr 2026 10:33AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331143614","","PCB22465.sanef.groupe","10.205.0.143","fe80:0:0:0:f692:8e33:ec98:1e24","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:41AM GMT+0200)","17 Apr 2026 08:41AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331154160","","PCB17772.sanef.groupe","10.154.31.3","fe80:0:0:0:90b6:f777:5f4b:e58","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:14PM GMT+0200)","21 Apr 2026 05:14PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331161666","","PCB17778.sanef.groupe","10.255.2.180","fe80:0:0:0:340c:7b29:7cb:2679","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:42AM GMT+0200)","21 Apr 2026 08:42AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331166341","","PCB21169.sanef.groupe","10.154.31.2","fe80:0:0:0:a7dd:7a75:672f:7833","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:30AM GMT+0200)","22 Apr 2026 01:30AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331167010","","PCB18712.sanef.groupe","10.12.31.3","fe80:0:0:0:5e03:e024:c7b8:393c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (15 Apr 2026 01:38PM GMT+0200)","15 Apr 2026 01:38PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331168809","","PCB18734.sanef.groupe","10.205.0.10","fe80:0:0:0:bddb:75d9:31ff:3ffc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:05AM GMT+0200)","22 Apr 2026 08:05AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"331169666","","PCB17792.sanef.groupe","10.154.31.1","fe80:0:0:0:c80d:ccde:25b:561f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:09AM GMT+0200)","22 Apr 2026 02:09AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331170138","","PCB21307.sanef.groupe","10.12.31.11","fe80:0:0:0:3929:ddfd:e49f:c7da","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:19AM GMT+0200)","22 Apr 2026 08:19AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331182695","","PCB23554.sanef.groupe","10.255.4.209","fe80:0:0:0:a98a:a5fc:9344:f251","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:13AM GMT+0200)","22 Apr 2026 09:13AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331186057","","PCB17770.sanef.groupe","10.152.31.9","fe80:0:0:0:40a3:aa41:2a55:f98b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:16AM GMT+0200)","22 Apr 2026 08:16AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331188629","","PCB23690.sanef.groupe","10.101.243.79","fe80:0:0:0:e15f:7d43:b5dd:e1a4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:22AM GMT+0200)","21 Apr 2026 10:22AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331188763","","PCB17760.sanef.groupe","10.255.4.136","fe80:0:0:0:992a:99f1:738a:ef1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 07:35AM GMT+0200)","17 Apr 2026 07:35AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331190937","","PCB23513.sanef.groupe","10.255.2.181","fe80:0:0:0:2598:2e34:68c6:a319","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:16AM GMT+0200)","22 Apr 2026 08:16AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331194562","","PCB17762.sanef.groupe","10.255.3.230","fe80:0:0:0:9f19:a55c:a82b:8428","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (15 Apr 2026 10:57AM GMT+0200)","15 Apr 2026 10:57AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331197662","","PCB21172.sanef.groupe","10.255.1.172","fe80:0:0:0:76a:ff5e:ed6c:1f6b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:37AM GMT+0200)","22 Apr 2026 08:37AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331201436","","PCB17769.sanef.groupe","10.255.3.140","fe80:0:0:0:979f:562b:fed5:9ded","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:27AM GMT+0200)","22 Apr 2026 07:27AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331201820","","PCB21163.sanef.groupe","10.152.31.46","fe80:0:0:0:6bf9:37e5:db6d:58c4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:08PM GMT+0200)","21 Apr 2026 10:08PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331206420","","PCB17791.sanef.groupe","10.100.39.101","fe80:0:0:0:6628:47e0:a8ac:715d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:00AM GMT+0200)","22 Apr 2026 07:00AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331360553","","PCB17771.sanef.groupe","10.255.4.139","fe80:0:0:0:626f:6a4c:5a1d:b92d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:17AM GMT+0200)","22 Apr 2026 07:17AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331378739","","vrmonaftp1.sanef-rec.fr","10.45.14.195","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:49PM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,EMV,OS-LIN-SRV DYN]" +"331385324","","vpmonaftp1.sanef.groupe","10.41.20.80","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:27PM GMT+0200)","22 Apr 2026 10:41AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,EMV,OS-LIN-SRV DYN]" +"331393040","","PCB21162.sanef.groupe","10.154.31.10","fe80:0:0:0:3915:24f0:311c:80f8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:42AM GMT+0200)","22 Apr 2026 08:42AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331393225","","PCB23515.sanef.groupe","10.205.0.81","fe80:0:0:0:427c:8fe5:a061:ef53","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:38AM GMT+0200)","22 Apr 2026 08:38AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331397176","","PCB20678.sanef.groupe","192.168.1.35","fe80:0:0:0:3650:ebb7:5820:44c7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:26AM GMT+0200)","22 Apr 2026 08:26AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331403288","","PCB17643.sanef.groupe","10.100.39.155","fe80:0:0:0:2214:17b6:cd79:9d10","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:40AM GMT+0200)","22 Apr 2026 07:40AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331406250","","PCB23518.sanef.groupe","10.255.4.145","fe80:0:0:0:31dd:8b82:eb5a:a0b1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:03AM GMT+0200)","17 Apr 2026 08:03AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331417841","","PCB23604.sanef.groupe","10.209.31.10","fe80:0:0:0:b78f:54d2:71e4:d1f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:07PM GMT+0200)","21 Apr 2026 08:07PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331425157","","PCB23560.sanef.groupe","10.206.31.1","fe80:0:0:0:6afc:5cad:6be:2dba","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:48AM GMT+0200)","17 Apr 2026 09:48AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331425423","","PCB23519.sanef.groupe","10.255.3.160","fe80:0:0:0:8eaf:a11c:604f:771b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:22AM GMT+0200)","21 Apr 2026 08:22AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331425552","","PCB23530.sanef.groupe","10.206.31.8","fe80:0:0:0:cc8f:dc31:c17a:5d5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:03AM GMT+0200)","22 Apr 2026 08:03AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331425935","","PCB23535.sanef.groupe","10.206.31.5","fe80:0:0:0:7fdc:846:bb46:1283","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:03AM GMT+0200)","21 Apr 2026 10:03AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331429903","","PCB23527.sanef.groupe","10.205.0.40","fe80:0:0:0:3ff7:db49:2e7f:9daf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:06AM GMT+0200)","21 Apr 2026 08:06AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331430582","","PCB23531.sanef.groupe","10.206.31.2","fe80:0:0:0:e81f:beba:8fa:2bcf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:02PM GMT+0200)","21 Apr 2026 10:02PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331432984","","PCB17766.sanef.groupe","10.205.0.16","fe80:0:0:0:50b9:df9c:5092:ad45","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:30AM GMT+0200)","21 Apr 2026 10:30AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331434867","","PCB17802.sanef.groupe","10.255.3.199","fe80:0:0:0:2c77:dd96:913e:9b71","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:34AM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331437535","","PCB23557.sanef.groupe","10.101.243.90","fe80:0:0:0:f26e:e7a1:5e0e:67","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:44AM GMT+0200)","22 Apr 2026 08:44AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331437541","","PCB21160.sanef.groupe","10.255.3.216","fe80:0:0:0:1bdd:7d:b297:c0da","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:39AM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331442489","","PCB23534.sanef.groupe","10.255.2.155","fe80:0:0:0:2f83:7b9b:bf29:1cb2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:06AM GMT+0200)","21 Apr 2026 08:06AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331463433","","PCB21158.sanef.groupe","192.168.1.21","fe80:0:0:0:51a9:7d66:3903:6354","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:46AM GMT+0200)","21 Apr 2026 08:46AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"331465240","","PCB21176.sanef.groupe","10.255.3.136","fe80:0:0:0:1f5e:af6:a726:ac28","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 06:49AM GMT+0200)","17 Apr 2026 06:49AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"332233886","","PCB21174.sanef.groupe","10.255.4.220","fe80:0:0:0:cdef:5c72:4273:d47b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:11AM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"332249862","","PCB17796.sanef.groupe","10.189.31.1","fe80:0:0:0:b2b6:4d0a:78d0:365b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:11AM GMT+0200)","17 Apr 2026 08:11AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"332255291","","PCB21302.sanef.groupe","192.168.1.41","fe80:0:0:0:84ee:ab05:8502:bf32","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:24AM GMT+0200)","22 Apr 2026 07:24AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"332259638","","PCB21161.sanef.groupe","10.205.0.132","fe80:0:0:0:cbc8:e097:84ff:b465","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:34AM GMT+0200)","17 Apr 2026 08:34AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"332261798","","PCB21301.sanef.groupe","10.12.31.28","fe80:0:0:0:2586:410:c391:cb0b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Manifest Downloaded (17 Apr 2026 07:40AM GMT+0200)","17 Apr 2026 07:40AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"332262809","","vpameahtp1.sanef.groupe","10.41.41.50","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:15AM GMT+0200)","22 Apr 2026 07:51AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Sextan,OS-LIN-SRV DYN,MID-NGINX DYN]" +"332273716","","PCB21175.sanef.groupe","10.12.31.26","fe80:0:0:0:3aee:4be3:9b02:42f2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:03AM GMT+0200)","22 Apr 2026 09:03AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"332275911","","vpameahtp2.sanef.groupe","10.41.41.51","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:53PM GMT+0200)","22 Apr 2026 06:29AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Sextan,OS-LIN-SRV DYN,MID-NGINX DYN]" +"332275914","","vpameaquo1","10.100.16.20","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:58PM GMT+0200)","22 Apr 2026 06:37AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Sextan,OS-LIN-SRV DYN]" +"332295040","","vpameakfq1.sanef.groupe","10.100.16.21","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:28PM GMT+0200)","22 Apr 2026 09:42AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Sextan,OS-LIN-SRV DYN]" +"332353560","","vpameakfk1.sanef.groupe","10.41.41.40","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:48PM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Sextan,OS-LIN-SRV DYN]" +"332364676","","vpameakfk2.sanef.groupe","10.41.41.41","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:33PM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Sextan,OS-LIN-SRV DYN]" +"332577348","","PCB18727.sanef.groupe","10.255.4.232","fe80:0:0:0:97a3:e906:80d:c868","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Manifest Downloaded (16 Apr 2026 09:21AM GMT+0200)","16 Apr 2026 09:21AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"332661497","","PCB21018.sanef.groupe","10.205.0.146","fe80:0:0:0:cb67:f99c:1f98:c5f3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:28AM GMT+0200)","21 Apr 2026 08:28AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"332680998","","PCB21300.sanef.groupe","10.12.31.1","fe80:0:0:0:9054:3547:47f5:8227","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:55AM GMT+0200)","22 Apr 2026 07:55AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"332880170","","vpagtaftp1.sanef.groupe","10.46.33.20","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:44AM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"332949821","","vrpatbl2r2.recette.adds","10.45.10.132","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:38AM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Recette,L2R,OS-WIN-SRV DYN]" +"332979745","","vpsimaxsr1","192.168.230.31","","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:32AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,TAG-SRVEXPOSEINTERNET,XFB,DEX,OS-WIN-SRV DYN]" +"333156387","","PCB24023.sanef.groupe","192.168.1.13","fe80:0:0:0:3e10:9d28:1f7:cf62","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:40AM GMT+0200)","22 Apr 2026 08:40AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"333160313","","PCB24037.sanef.groupe","10.255.1.208","fe80:0:0:0:d586:4f5e:c8fb:410d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:45AM GMT+0200)","22 Apr 2026 09:45AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"333168741","","vrvidanvr2.recette.adds","10.45.7.102","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4529","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:46AM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Recette,NVR,OS-WIN-SRV DYN]" +"333709430","","PCB22454.sanef.groupe","10.105.31.8","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (01 Apr 2026 02:48AM GMT+0200)","10 Apr 2026 03:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"333956547","","PCB18719.sanef.groupe","10.4.31.36","fe80:0:0:0:6701:93aa:672b:765a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:10AM GMT+0200)","21 Apr 2026 09:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"333980009","","PCB24126.sanef.groupe","10.107.31.3","fe80:0:0:0:311a:97dc:79ae:5ecc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 09:18PM GMT+0200)","21 Apr 2026 08:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"333991638","","VRBURXBAN4.sanef.groupe","10.30.4.4","fe80:0:0:0:ae8c:868a:cda4:f2f8","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:07PM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"333991857","","PCB24125.sanef.groupe","10.104.31.6","fe80:0:0:0:b54e:81a9:a406:c74d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:34PM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"333993604","","PCB24114.sanef.groupe","10.104.30.12","fe80:0:0:0:344:bd6d:590d:ea93","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:13AM GMT+0200)","21 Apr 2026 12:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"333993622","","PCB24127.sanef.groupe","10.107.31.23","fe80:0:0:0:8362:1b80:d723:27e9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:25AM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"333994544","","PCB24131.sanef.groupe","10.205.0.17","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:37AM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"333995189","","PCB24112.sanef.groupe","10.105.31.8","fe80:0:0:0:63c:9ef:e175:4992","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:46AM GMT+0200)","22 Apr 2026 08:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334021957","","PCB24133.sanef.groupe","10.104.31.13","fe80:0:0:0:914f:d9ea:29e4:4a9b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 11:14AM GMT+0200)","17 Apr 2026 04:23PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334027204","","PCB24132.sanef.groupe","10.107.31.5","fe80:0:0:0:71cb:2a10:e32e:cfb4","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (17 Apr 2026 02:36AM GMT+0200)","17 Apr 2026 01:13PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334030261","","PCB24129.sanef.groupe","10.107.31.19","fe80:0:0:0:ba5d:7c8d:649a:9040","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:59AM GMT+0200)","17 Apr 2026 02:50PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334070533","","PCB24123.sanef.groupe","10.104.31.5","fe80:0:0:0:2e02:28c7:19e8:e496","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:51AM GMT+0200)","22 Apr 2026 07:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334073897","","PCB24111.sanef.groupe","10.107.31.39","fe80:0:0:0:f87:6978:5948:ef1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 07:58AM GMT+0200)","17 Apr 2026 08:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334074300","","PCB24113.sanef.groupe","10.104.30.10","fe80:0:0:0:fec6:dd61:8698:ab00","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:04PM GMT+0200)","22 Apr 2026 06:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334075657","","PCB24124.sanef.groupe","10.205.0.96","fe80:0:0:0:46b8:2fd7:65c5:93f6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (16 Apr 2026 10:27AM GMT+0200)","17 Apr 2026 11:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334380244","","PCB24110.sanef.groupe","10.104.30.11","fe80:0:0:0:f6ac:3f3b:a668:356b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:33AM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334385383","","PCB24108.sanef.groupe","10.104.31.3","fe80:0:0:0:f606:960e:4cfb:a996","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (15 Apr 2026 11:28AM GMT+0200)","15 Apr 2026 03:37PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334403560","","PCB22923.sanef.groupe","10.100.39.16","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:55AM GMT+0200)","21 Apr 2026 08:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334429377","","PCB24118.sanef.groupe","10.104.31.8","fe80:0:0:0:4d5c:c352:a5b9:29b5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:54AM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334435348","","vrdsiasaf2.sanef-rec.fr","192.168.19.25","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:07PM GMT+0200)","22 Apr 2026 09:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Radius,OS-LIN-SRV DYN]" +"334437559","","PCB24120.sanef.groupe","10.104.31.2","fe80:0:0:0:534b:b56a:52c4:6228","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:57AM GMT+0200)","22 Apr 2026 07:57AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"334464094","","PCB21166.sanef.groupe","10.202.31.1","fe80:0:0:0:1048:f00f:b5a1:6599","Microsoft Windows 11 Professionnel 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:19AM GMT+0200)","22 Apr 2026 08:19AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"334472877","","PCB24117.sanef.groupe","10.155.31.13","fe80:0:0:0:7b78:43f8:fbd5:7363","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:06AM GMT+0200)","22 Apr 2026 08:06AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"334474020","","vrdsiarad2.sanef-rec.fr","10.45.14.133","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:45PM GMT+0200)","22 Apr 2026 07:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Radius,OS-LIN-SRV DYN]" +"334478188","","PCB24088.sanef.groupe","10.100.39.119","fe80:0:0:0:3a42:2d2e:8034:bbe4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 03:59AM GMT+0200)","17 Apr 2026 03:59AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"334495487","","vrdsiarad1.sanef-rec.fr","10.45.14.132","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:55PM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Radius,OS-LIN-SRV DYN]" +"334628432","","PCB24109.sanef.groupe","10.1.31.5","fe80:0:0:0:fd2d:9c81:e0aa:7b92","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:55AM GMT+0200)","22 Apr 2026 06:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334645335","","PCB24080.sanef.groupe","10.105.31.0","fe80:0:0:0:8d71:f07e:98fe:166c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Manifest Downloaded (17 Apr 2026 07:54AM GMT+0200)","17 Apr 2026 07:54AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"334658627","","PCB24160.sanef.groupe","10.1.31.7","fe80:0:0:0:dc05:6eb5:187f:e770","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:01PM GMT+0200)","21 Apr 2026 10:01PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"334676791","","PCB24158.sanef.groupe","192.168.1.25","fe80:0:0:0:1d15:72f5:de:c1c6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 07:58AM GMT+0200)","17 Apr 2026 07:58AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"334679543","","PCB24157.sanef.groupe","10.106.31.14","fe80:0:0:0:edf1:7b00:b1d7:be65","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:38PM GMT+0200)","21 Apr 2026 08:38PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334688859","","PCB24159.sanef.groupe","10.106.31.7","fe80:0:0:0:e13a:81bd:755a:e110","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:46AM GMT+0200)","22 Apr 2026 07:46AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334693868","","PCB24121.sanef.groupe","10.103.31.8","fe80:0:0:0:c18d:be4a:d313:aa15","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:00AM GMT+0200)","21 Apr 2026 09:00AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334700474","","PCB24085.sanef.groupe","10.155.31.12","fe80:0:0:0:567d:2e29:c8bc:ad12","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:25PM GMT+0200)","21 Apr 2026 08:25PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334714713","","PCB24071.sanef.groupe","10.205.0.52","fe80:0:0:0:40a:5fde:2110:16d2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:17AM GMT+0200)","22 Apr 2026 08:17AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334719895","","PCB24075.sanef.groupe","10.205.0.79","fe80:0:0:0:f1d2:11c5:9d27:55cc","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:32AM GMT+0200)","22 Apr 2026 08:32AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334726617","","PCB24076.sanef.groupe","10.205.0.4","fe80:0:0:0:e094:cb21:c7e3:c531","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 07:27AM GMT+0200)","17 Apr 2026 07:27AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"334734731","","PCB24072.sanef.groupe","10.255.2.163","fe80:0:0:0:d15a:b7ec:e181:47a8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:35AM GMT+0200)","21 Apr 2026 10:35AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334752929","","vrdataapp1.sanef-rec.fr","10.45.14.165","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:54PM GMT+0200)","22 Apr 2026 10:38AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,DATI,OS-LIN-SRV DYN,MID-NGINX DYN]" +"334755653","","SVP18497.sanef-int.adds","10.92.7.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:34AM GMT+0200)","22 Apr 2026 07:34AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334758337","","PCB24084.sanef.groupe","10.106.31.11","fe80:0:0:0:2da1:644f:824f:1a0a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Manifest Downloaded (20 Apr 2026 01:52AM GMT+0200)","20 Apr 2026 01:52AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334940270","","PCB24066.sanef.groupe","10.255.1.148","fe80:0:0:0:8dc8:8dff:531f:4c61","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:53AM GMT+0200)","22 Apr 2026 09:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334948979","","PCB24067.sanef.groupe","10.155.31.16","fe80:0:0:0:d64b:8b66:7caf:8d0b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (16 Apr 2026 08:55AM GMT+0200)","16 Apr 2026 02:27PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334960502","","PCB24082.sanef.groupe","10.205.0.14","fe80:0:0:0:9dc8:912d:5440:b13e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (20 Apr 2026 08:03AM GMT+0200)","20 Apr 2026 08:03AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334961695","","PCB24077.sanef.groupe","10.155.31.0","fe80:0:0:0:29b1:b7f0:6e4d:ec4c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:21AM GMT+0200)","22 Apr 2026 03:21AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334967788","","PCB24090.sanef.groupe","10.255.3.149","fe80:0:0:0:44bb:1257:1c54:bb39","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:49PM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"334971811","","MAC15905","10.255.1.18","0:0:0:0:0:0:0:1","macOS 26.3.1","5.3.0.31","Inventory Scan Complete (22 Apr 2026 09:43AM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Default Profile",""," ","[Cloud Agent]" +"334971951","","PCB24083.sanef.groupe","10.205.0.227","fe80:0:0:0:20cb:9ba5:66e3:fb23","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 05:19PM GMT+0200)","17 Apr 2026 05:19PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334993487","","PCB24116.sanef.groupe","10.255.1.223","fe80:0:0:0:2c81:5be0:b58f:9d4a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:22AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"334994056","","PCB24079.sanef.groupe","10.255.1.217","fe80:0:0:0:eab8:b551:319a:dc42","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:58AM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335004263","","vrresardp1.recette.adds","10.45.8.163","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:01AM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Recette,Radius,OS-WIN-SRV DYN]" +"335429142","","PCB21284.sanef.groupe","10.255.1.225","fe80:0:0:0:599:afe5:18f1:20d3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:27AM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335441245","","PCB24119.sanef.groupe","10.205.0.122","fe80:0:0:0:1e3d:6004:4a40:e01f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (20 Apr 2026 10:46AM GMT+0200)","20 Apr 2026 10:46AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335441959","","vtdsiatmp4.sanef.groupe","10.43.253.7","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:54PM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,test_rhel9,OS-LIN-SRV DYN]" +"335442432","","PCB24128.sanef.groupe","10.1.30.15","fe80:0:0:0:aa76:bb88:686f:925a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:22PM GMT+0200)","21 Apr 2026 04:22PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335450613","","PCB21363.sanef.groupe","10.100.39.187","fe80:0:0:0:2b0c:bc03:1fad:299d","Microsoft Windows 11 Professionnel 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:14AM GMT+0200)","22 Apr 2026 09:14AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335451010","","PCB23516.sanef.groupe","10.1.31.15","fe80:0:0:0:ad4:8eb5:a773:f91b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:49PM GMT+0200)","21 Apr 2026 09:49PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335451097","","PCB24183.sanef.groupe","10.103.31.1","fe80:0:0:0:4d81:8a1d:11d7:f45d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:58PM GMT+0200)","22 Apr 2026 07:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"335459248","","PCB24106.sanef.groupe","10.1.31.6","fe80:0:0:0:a524:5e6f:c69e:efc5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:54AM GMT+0200)","22 Apr 2026 09:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"335470917","","PCB24177.sanef.groupe","10.203.31.13","fe80:0:0:0:83c2:e8bc:eed4:d4e7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:42PM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"335478185","","PCB24181.sanef.groupe","10.1.31.14","fe80:0:0:0:abfe:a0ba:4bc7:8337","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:52AM GMT+0200)","22 Apr 2026 06:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"335482466","","PCB24176.sanef.groupe","10.3.31.8","fe80:0:0:0:9d3f:7d34:456:1c8d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:26AM GMT+0200)","21 Apr 2026 06:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"335484683","","PCB20614.sanef.groupe","10.100.38.14","fe80:0:0:0:7583:4888:9e00:415f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 11:13AM GMT+0200)","20 Apr 2026 09:15PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"335485295","","PCB24179.sanef.groupe","10.209.31.0","fe80:0:0:0:7fea:8581:4d98:4a81","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:50AM GMT+0200)","22 Apr 2026 10:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"335495684","","PCB24170.sanef.groupe","10.255.1.135","fe80:0:0:0:d7e3:60ca:b128:fd98","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:30AM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"335498006","","PCB24168.sanef.groupe","10.1.31.13","fe80:0:0:0:4e9:9b5d:f099:51b1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:45AM GMT+0200)","22 Apr 2026 09:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"335550719","","PCB24172.sanef.groupe","192.168.1.13","fe80:0:0:0:e519:d5ee:ced3:40e2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:56AM GMT+0200)","22 Apr 2026 07:56AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335596647","","PCB24171.sanef.groupe","10.101.243.184","fe80:0:0:0:66d5:ee2f:d6c7:ebd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:00AM GMT+0200)","21 Apr 2026 10:00AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335602324","","PCB24182.sanef.groupe","10.101.243.135","fe80:0:0:0:a3a8:48a:97c5:59f5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:55AM GMT+0200)","22 Apr 2026 08:55AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335695704","","SVP20941.sanef-int.adds","10.100.20.103","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:15PM GMT+0200)","21 Apr 2026 09:15PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335702402","","PCB24178.sanef.groupe","10.89.31.10","fe80:0:0:0:d2fb:fd3:63bd:64a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:32AM GMT+0200)","21 Apr 2026 01:32AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335714568","","vrdatafrt1.sanef-rec.fr","192.168.40.115","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:38AM GMT+0200)","22 Apr 2026 10:38AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"335895691","","PCB24184.sanef.groupe","10.205.0.141","fe80:0:0:0:8802:dd05:6a29:e903","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:49PM GMT+0200)","21 Apr 2026 08:49PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335897723","","vrrpaangx1.sanef-rec.fr","10.45.14.227","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:39PM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,MID-NGINX DYN]" +"335905349","","vrrpnangx1.sanef-rec.fr","10.45.14.229","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:41PM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,MID-NGINX DYN]" +"335910968","","PCB24175.sanef.groupe","10.100.38.29","fe80:0:0:0:ee24:46a4:79be:830a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:00AM GMT+0200)","22 Apr 2026 08:00AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"335928595","","vrrpsangx1.sanef-rec.fr","10.45.14.228","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:26AM GMT+0200)","22 Apr 2026 09:26AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,MID-NGINX DYN]" +"335930480","","PCB23645.sanef.groupe","10.205.0.108","fe80:0:0:0:a0a3:ebf7:6ce2:2889","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:55AM GMT+0200)","17 Apr 2026 08:55AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"336664466","","PCB24064.sanef.groupe","10.5.31.4","fe80:0:0:0:5fb3:f2d0:2666:fc27","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:20AM GMT+0200)","22 Apr 2026 02:20AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"336702734","","PCB21168.sanef.groupe","10.101.243.15","fe80:0:0:0:cfed:3f6e:614a:1958","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:21AM GMT+0200)","22 Apr 2026 07:21AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"336736143","","PCB24089.sanef.groupe","10.100.39.43","fe80:0:0:0:76be:c05b:293c:c90d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:07PM GMT+0200)","21 Apr 2026 09:07PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"337000887","","PCB17798.sanef.groupe","10.205.0.39","fe80:0:0:0:6f28:c768:9316:bc7f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 02:22AM GMT+0200)","17 Apr 2026 02:22AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"337904983","","PCB21313.sanef.groupe","10.255.4.197","fe80:0:0:0:672f:e15d:faec:65e1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:08AM GMT+0200)","22 Apr 2026 09:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"337912529","","PCB21306.sanef.groupe","10.205.0.97","fe80:0:0:0:cd44:d91f:4c65:6faf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:37AM GMT+0200)","22 Apr 2026 08:37AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"338322095","","PCB24180.sanef.groupe","10.205.0.134","fe80:0:0:0:cbf3:7c95:9c8d:4fa7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 02:54PM GMT+0200)","21 Apr 2026 02:54PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"338447216","","PCB21595.sanef.groupe","10.100.39.7","fe80:0:0:0:33b2:fe4f:6c8:cbdc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:11AM GMT+0200)","22 Apr 2026 06:11AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"338615879","","PCB21509.sanef.groupe","10.6.31.4","fe80:0:0:0:8ad9:b8b7:dcde:a832","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:37PM GMT+0200)","21 Apr 2026 08:37PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"338797464","","PCB22925.sanef.groupe","10.255.1.162","fe80:0:0:0:7081:974e:3c98:7926","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:05PM GMT+0200)","21 Apr 2026 08:05PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"338803303","","PCB21521.sanef.groupe","10.100.39.0","fe80:0:0:0:5b51:edff:df40:548d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:17AM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"338807292","","vpintaprx2.sanef.groupe","192.168.20.35","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:53PM GMT+0200)","22 Apr 2026 06:28AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,High,Production,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,ServersInCyberark,Gestion institutionnel,OS-LIN-SRV DYN]" +"338810406","","PCB21630.sanef.groupe","10.100.39.2","fe80:0:0:0:2a76:8194:fe03:6714","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:45PM GMT+0200)","21 Apr 2026 04:45PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"338840609","","PCB21529.sanef.groupe","10.13.31.3","fe80:0:0:0:3b1b:efe4:ae42:7ceb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:50PM GMT+0200)","21 Apr 2026 07:50PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"338843133","","PCB21611.sanef.groupe","10.152.31.43","fe80:0:0:0:93a8:d5d1:b951:ed46","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:35AM GMT+0200)","22 Apr 2026 04:35AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"338852480","","PCB21579.sanef.groupe","10.209.31.2","fe80:0:0:0:bda9:5ca7:a2d4:6bad","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:03PM GMT+0200)","21 Apr 2026 11:03PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"339039077","","SVP18484.sanef-int.adds","10.182.2.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Manifest Downloaded (17 Apr 2026 07:02PM GMT+0200)","21 Apr 2026 01:36PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"339094295","","vpecmardp1.sanef-int.adds","10.44.6.227","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:38AM GMT+0200)","22 Apr 2026 09:40AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"339141680","","SVP22636.sanef-int.adds","10.192.12.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:15AM GMT+0200)","22 Apr 2026 06:15AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"339175043","","PCB17776.sanef.groupe","10.205.0.9","fe80:0:0:0:966c:f106:5b4c:42da","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:11PM GMT+0200)","21 Apr 2026 10:11PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"339814656","","vrpatbl2r3.sanef-rec.fr","10.45.10.133","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:32AM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,L2R,OS-LIN-SRV DYN,BDD-POS DYN]" +"339864900","","PCB17790.sanef.groupe","10.119.31.5","fe80:0:0:0:69ed:437f:bffd:c5cd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:10AM GMT+0200)","22 Apr 2026 02:10AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"339866385","","PCB17777.sanef.groupe","10.255.4.140","fe80:0:0:0:f750:f81e:7d31:d505","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:30AM GMT+0200)","22 Apr 2026 07:30AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"339876040","","PCB17065.sanef.groupe","10.205.1.8","fe80:0:0:0:1943:7c08:2006:ac29","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:22AM GMT+0200)","22 Apr 2026 09:22AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"339876286","","vppwdahap1.sanef.groupe","10.44.1.196","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:24PM GMT+0200)","22 Apr 2026 09:05AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN]" +"339877892","","vppwdahap2.sanef.groupe","10.44.1.197","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:32PM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN]" +"339878420","","PCB21277.sanef.groupe","10.119.31.2","fe80:0:0:0:5424:e56e:4d2d:1901","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:21AM GMT+0200)","22 Apr 2026 07:21AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"339993099","","SVP22617.sanef-int.adds","10.82.9.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631","6.4.1.22","Inventory Scan Complete (17 Apr 2026 04:54PM GMT+0200)","17 Apr 2026 04:54PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"340053174","","vppwdapod2.sanef.groupe","10.44.1.201","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:20PM GMT+0200)","22 Apr 2026 10:58AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN]" +"340054184","","vppwdbsql1.sanef.groupe","10.44.1.204","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:23AM GMT+0200)","22 Apr 2026 06:58AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN]" +"340059665","","SVP22861.sanef-int.adds","10.99.29.20","","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:59AM GMT+0200)","22 Apr 2026 03:59AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"340062892","","lpamebrac3.sanef.groupe","10.41.41.112","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:58PM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Amelie,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"340063684","","lpamebrac1.sanef.groupe","10.41.41.110","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:28AM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Amelie,OS-LIN-SRV DYN]" +"340063685","","lpamebrac2.sanef.groupe","10.41.41.111","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:02AM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Amelie,OS-LIN-SRV DYN]" +"340070824","","vppwdapod1.sanef.groupe","10.44.1.200","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:07AM GMT+0200)","22 Apr 2026 07:43AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN]" +"340078604","","lpamebrac4.sanef.groupe","10.41.41.113","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:16PM GMT+0200)","22 Apr 2026 05:54AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Production,Amelie,OS-LIN-SRV DYN]" +"340144930","","PCB17782.sanef.groupe","10.255.1.221","fe80:0:0:0:f72f:dfa1:927a:d51c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:21AM GMT+0200)","22 Apr 2026 08:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"340145305","","PCB17786.sanef.groupe","10.205.0.77","fe80:0:0:0:5965:d95f:d0f6:1863","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 02:23PM GMT+0200)","21 Apr 2026 02:23PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"340176500","","PCB21287.sanef.groupe","10.205.0.134","fe80:0:0:0:a9b0:f4b2:c96c:fa14","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:32AM GMT+0200)","22 Apr 2026 10:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"340186410","","PCB21298.sanef.groupe","10.152.30.22","fe80:0:0:0:dcef:8e4b:5e0e:9280","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:24AM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"340379006","","SVP18486.sanef-int.adds","10.155.2.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:00AM GMT+0200)","22 Apr 2026 06:00AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"340403894","","PCB21125.sanef.groupe","10.205.0.75","fe80:0:0:0:d7c0:468a:3bd2:e0cf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:56AM GMT+0200)","22 Apr 2026 08:56AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"340405417","","PCB21297.sanef.groupe","10.101.243.69","fe80:0:0:0:1807:e9d4:9605:f7be","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 06:52AM GMT+0200)","17 Apr 2026 06:52AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"340414768","","PCB17794.sanef.groupe","10.101.243.221","fe80:0:0:0:5930:92b1:a090:65a5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:41AM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"340421101","","PCB17785.sanef.groupe","10.255.4.215","2a0d:e487:126e:da5b:6034:eeb1:c3a3:6f38","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:23AM GMT+0200)","21 Apr 2026 09:23AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"340425872","","PCB21311.sanef.groupe","10.205.0.126","fe80:0:0:0:af47:61b3:f6dd:8b28","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:18AM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"340537046","","SVP22626.sanef-int.adds","10.192.8.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631","6.4.1.22","Inventory Scan Complete (19 Apr 2026 04:18PM GMT+0200)","19 Apr 2026 04:18PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"340643848","","SVP22704.sanef-int.adds","10.107.2.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:14AM GMT+0200)","21 Apr 2026 06:14AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"340717645","","PCB21097.sanef.groupe","10.205.0.127","fe80:0:0:0:d8e3:a7e3:4437:7de3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:24PM GMT+0200)","22 Apr 2026 11:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"340740272","","PCB21359.sanef.groupe","10.205.0.83","fe80:0:0:0:e180:449a:3627:9d26","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:56AM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"340753145","","SVP21708.sanef-int.adds","10.82.13.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Manifest Downloaded (13 Apr 2026 09:43AM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"340812113","","PCB21101.sanef.groupe","10.205.0.22","fe80:0:0:0:5689:2b16:99d8:2c04","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:53AM GMT+0200)","21 Apr 2026 09:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"341032622","","vrpatbcao1.recette.adds","10.45.10.195","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:09AM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,Administration_MS,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"341837493","","SVP22637.sanef-int.adds","10.192.19.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (19 Apr 2026 06:29PM GMT+0200)","19 Apr 2026 10:01PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"341899839","","PCB21527.sanef.groupe","10.209.31.1","fe80:0:0:0:eda8:e823:797d:1f92","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:45AM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"341913504","","PCB21150.sanef.groupe","10.152.31.20","fe80:0:0:0:6b5d:e2f5:6ca5:b137","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:59AM GMT+0200)","22 Apr 2026 06:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"341939484","","PCB20846.sanef.groupe","10.203.31.3","fe80:0:0:0:d2d3:462a:111b:cc53","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:01AM GMT+0200)","17 Apr 2026 01:00PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"341940106","","PCB23797.sanef.groupe","192.168.1.20","fe80:0:0:0:344a:7be6:6083:543a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 01:41PM GMT+0200)","17 Apr 2026 01:41PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"342013503","","PCB21113.sanef.groupe","10.205.0.135","2001:861:8b40:2f70:bc14:6f58:74d0:5c3e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:21AM GMT+0200)","21 Apr 2026 10:46PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"342140592","","PCB24321.sanef.groupe","10.200.31.54","fe80:0:0:0:a879:7014:bf37:1304","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:35AM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"342188071","","PCB21082.sanef.groupe","10.205.0.108","fe80:0:0:0:55a4:8573:70ef:3df7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:39AM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"342249673","","PCB23719.sanef.groupe","10.205.0.103","fe80:0:0:0:c14f:169c:fbe1:1cb1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:42AM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"342271741","","PCB17765.sanef.groupe","10.205.0.207","fe80:0:0:0:60fc:7511:447b:eab6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (19 Apr 2026 12:58PM GMT+0200)","19 Apr 2026 04:35PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"342477291","","PCB18720.sanef.groupe","192.168.1.66","fe80:0:0:0:f5f4:40bc:1ec0:7215","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","Configuration Downloaded (15 Apr 2026 11:50AM GMT+0200)","15 Apr 2026 11:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"342493696","","PCB17764.sanef.groupe","10.255.3.200","fe80:0:0:0:650:289d:21e1:f60b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:45AM GMT+0200)","22 Apr 2026 09:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"342506007","","PCB21096.sanef.groupe","10.101.243.142","fe80:0:0:0:cb59:91bb:884b:fe5c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:13AM GMT+0200)","22 Apr 2026 10:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"342524098","","PCB21281.sanef.groupe","10.255.4.222","fe80:0:0:0:9958:66de:4f5c:2d1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:33AM GMT+0200)","22 Apr 2026 10:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343089288","","PCB20716.sanef.groupe","10.255.4.251","fe80:0:0:0:d8b8:9a06:fe07:4d18","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:54AM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343092142","","PCB23730.sanef.groupe","10.255.4.225","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:41AM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343105252","","PCB24163.sanef.groupe","10.103.31.6","2a01:e0a:a93:2920:70e9:a412:5e13:ff08","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:33PM GMT+0200)","22 Apr 2026 05:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343105603","","PCB18106.sanef.groupe","10.205.0.102","fe80:0:0:0:e4e9:1743:1bfc:3094","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:23AM GMT+0200)","21 Apr 2026 10:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343106717","","PCB18029.sanef.groupe","10.205.0.59","fe80:0:0:0:2a16:ca45:5b1:27e2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:18AM GMT+0200)","21 Apr 2026 05:21PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343111830","","PCB23668.sanef.groupe","10.199.30.10","fe80:0:0:0:aad7:be3a:2732:fcb0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 07:17AM GMT+0200)","17 Apr 2026 12:15PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343112024","","PCB23697.sanef.groupe","10.103.31.11","fe80:0:0:0:ad67:c804:d3d9:1b23","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (14 Apr 2026 10:43AM GMT+0200)","14 Apr 2026 03:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343114608","","PCB21587.sanef.groupe","10.5.31.62","fe80:0:0:0:e6fc:8a38:9a21:9a5d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:13AM GMT+0200)","22 Apr 2026 08:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343130510","","PCB23638.sanef.groupe","10.152.31.29","fe80:0:0:0:1ec8:82da:f234:3774","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:12AM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343140417","","PCB20717.sanef.groupe","10.255.1.148","fe80:0:0:0:b50:e7c0:3ac8:f5be","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:55PM GMT+0200)","22 Apr 2026 10:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343639568","","PCB20702.sanef.groupe","10.101.243.192","fe80:0:0:0:e5a8:789b:5556:740e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 11:27AM GMT+0200)","17 Apr 2026 03:12PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343643752","","PCB20699.sanef.groupe","10.205.0.116","fe80:0:0:0:1de8:4ed:a6f5:d4cd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:31AM GMT+0200)","22 Apr 2026 10:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343644727","","PCB20711.sanef.groupe","192.168.1.14","fe80:0:0:0:395c:ee2a:ae3a:15e9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 07:47PM GMT+0200)","21 Apr 2026 03:20PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343658306","","PCB21079.sanef.groupe","10.220.31.47","fe80:0:0:0:73f1:382a:e404:a30c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:18AM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343661199","","PCB21128.sanef.groupe","10.220.31.21","fe80:0:0:0:779e:68fe:5555:4584","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 10:54AM GMT+0200)","17 Apr 2026 03:35PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343661247","","PCB21354.sanef.groupe","10.255.4.220","fe80:0:0:0:bc1d:53df:feeb:ef4e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:32AM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343698967","","PCB20707.sanef.groupe","10.255.1.222","2001:861:5872:3930:71d6:178c:a656:574e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 10:17AM GMT+0200)","21 Apr 2026 10:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343848716","","SVP22616.sanef-int.adds","10.82.14.28","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Configuration Downloaded (21 Apr 2026 11:14AM GMT+0200)","21 Apr 2026 11:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"343989065","","PCB21105.sanef.groupe","10.101.243.195","fe80:0:0:0:9b68:c7fe:75d9:2f99","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 10:13AM GMT+0200)","22 Apr 2026 10:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344008066","","PCB23572.sanef.groupe","10.255.4.241","fe80:0:0:0:a95c:ff3b:276:e03e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 11:39AM GMT+0200)","20 Apr 2026 07:40PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344301603","","SVP18495.sanef-int.adds","10.112.2.27","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Manifest Downloaded (15 Apr 2026 08:22AM GMT+0200)","21 Apr 2026 03:12PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344320163","","PCB20713.sanef.groupe","10.255.2.247","fe80:0:0:0:90c4:20a7:d0cc:4f50","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:50AM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344364139","","PCB18034.sanef.groupe","10.101.243.97","fe80:0:0:0:4796:3c9e:a439:117d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:01AM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344378834","","PCB18033.sanef.groupe","10.101.243.222","fe80:0:0:0:5c86:59b9:1356:843","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:32AM GMT+0200)","22 Apr 2026 10:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344395322","","PCB20640.sanef.groupe","10.101.243.87","fe80:0:0:0:574e:7c33:97ff:edc2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 11:24AM GMT+0200)","22 Apr 2026 10:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344751012","","PCB20709.sanef.groupe","192.168.1.87","fe80:0:0:0:8bee:75cc:c23f:eb1e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:04AM GMT+0200)","22 Apr 2026 10:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344777514","","PCB18105.sanef.groupe","10.255.4.164","fe80:0:0:0:2234:87b7:483b:f031","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:01AM GMT+0200)","22 Apr 2026 10:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344814567","","PCB23528.sanef.groupe","10.255.2.223","fe80:0:0:0:4d6b:a89c:15a7:8248","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:38AM GMT+0200)","21 Apr 2026 10:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344816869","","PCB17763.sanef.groupe","10.101.242.43","fe80:0:0:0:3ece:98e4:b341:8ae4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:05AM GMT+0200)","22 Apr 2026 09:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344834146","","PCB23779.sanef.groupe","10.255.3.240","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:38AM GMT+0200)","17 Apr 2026 03:08PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344869190","","PCB21309.sanef.groupe","10.255.2.203","fe80:0:0:0:4956:2c1d:9f66:7cd0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:21AM GMT+0200)","22 Apr 2026 10:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"344881629","","PCB23549.sanef.groupe","10.101.243.107","fe80:0:0:0:930a:32e5:fc53:2756","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:18AM GMT+0200)","17 Apr 2026 02:52PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"345046416","","PCB20639.sanef.groupe","10.205.0.105","fe80:0:0:0:f3d1:e8e2:2bb7:92b7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:11AM GMT+0200)","21 Apr 2026 02:39PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"345138778","","PCB23522.sanef.groupe","10.205.0.10","fe80:0:0:0:1157:8ff4:f590:e110","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:07AM GMT+0200)","17 Apr 2026 05:11PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"345639528","","PCB24139.sanef.groupe","10.101.243.61","fe80:0:0:0:8848:b5ad:a84c:d40e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 10:29AM GMT+0200)","21 Apr 2026 10:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"345672227","","PCB21115.sanef.groupe","10.205.0.162","fe80:0:0:0:2d31:d30d:5fed:177d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:47PM GMT+0200)","21 Apr 2026 12:47PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"345675238","","PCB23559.sanef.groupe","10.255.4.231","fe80:0:0:0:e82e:bc75:1fdd:e01d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:47AM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346001975","","SVP22607.sanef-int.adds","10.22.1.21","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:28PM GMT+0200)","21 Apr 2026 12:28PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346030468","","PCB17774.sanef.groupe","10.101.243.81","fe80:0:0:0:72fd:58ec:43de:7a8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:37AM GMT+0200)","22 Apr 2026 09:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346045642","","PCB18090.sanef.groupe","10.101.243.59","fe80:0:0:0:39e5:42bd:1609:6fca","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 09:48AM GMT+0200)","16 Apr 2026 03:11PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346164627","","PCB18084.sanef.groupe","10.101.243.124","fe80:0:0:0:6a4e:501c:4056:d67e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:53AM GMT+0200)","21 Apr 2026 10:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346164661","","PCB25871.sanef.groupe","10.205.0.12","fe80:0:0:0:cf7c:13d0:2f67:d5fe","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:38AM GMT+0200)","22 Apr 2026 07:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346242039","","PCB25861.sanef.groupe","10.101.243.48","fe80:0:0:0:43be:44c:1d01:4545","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:45AM GMT+0200)","22 Apr 2026 09:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346243488","","PCB25846.sanef.groupe","10.205.0.174","fe80:0:0:0:57ac:c3:1b5d:8201","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:49AM GMT+0200)","22 Apr 2026 03:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346258439","","PCB18055.sanef.groupe","10.205.0.222","fe80:0:0:0:437b:3143:9bed:f04e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","VM Manifest Downloaded (03 Apr 2026 09:04AM GMT+0200)","03 Apr 2026 06:23PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346258649","","PCB25847.sanef.groupe","10.205.0.5","fe80:0:0:0:3a81:9d4a:5bfa:800b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:15AM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346581131","","PCB21121.sanef.groupe","10.205.0.153","fe80:0:0:0:e89e:50b3:f5e5:8d66","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:11AM GMT+0200)","21 Apr 2026 10:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"346596772","","PCB25844.sanef.groupe","10.101.243.14","fe80:0:0:0:d136:54fa:f388:8895","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:44AM GMT+0200)","22 Apr 2026 10:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346615227","","PCB25845.sanef.groupe","10.205.0.36","fe80:0:0:0:6de6:493f:4744:16d1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:29AM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346650733","","PCB25843.sanef.groupe","10.101.243.2","fe80:0:0:0:d5c1:4d52:dcef:43d0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:06AM GMT+0200)","21 Apr 2026 09:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"346728573","","PCB25859.sanef.groupe","10.205.0.73","fe80:0:0:0:cd51:6bef:443b:9dd4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:39AM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"347124460","","PCB18041.sanef.groupe","10.205.0.154","fe80:0:0:0:c1f7:ab37:e363:ad07","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:43AM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"347403825","","PCB21102.sanef.groupe","192.168.1.11","fe80:0:0:0:ad59:9fb2:27b0:aff3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:19AM GMT+0200)","22 Apr 2026 10:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"347441583","","PCB20735.sanef.groupe","10.101.243.116","fe80:0:0:0:8b21:bdaa:7693:5692","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:49AM GMT+0200)","22 Apr 2026 10:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"347523620","","PCB23526.sanef.groupe","10.205.0.75","fe80:0:0:0:2908:5f8b:cc9:f877","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:56AM GMT+0200)","17 Apr 2026 02:51PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"347738945","","MTO21619.sanef.groupe","10.199.31.2","fe80:0:0:0:f51c:e07f:3783:c4b2","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 2428","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:46PM GMT+0200)","22 Apr 2026 09:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"347776899","","PCB18043.sanef.groupe","10.101.243.105","fe80:0:0:0:43be:5307:74d:d23c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:19AM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"347820161","","PCB18114.sanef.groupe","10.205.0.12","fe80:0:0:0:aa81:87ff:1d8f:3bb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (15 Apr 2026 11:32AM GMT+0200)","15 Apr 2026 11:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"347834883","","PCB24026.sanef.groupe","10.255.2.215","2a02:8424:aa35:a001:35f0:924c:1456:934f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:00AM GMT+0200)","22 Apr 2026 10:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"347837761","","PCB18119.sanef.groupe","10.255.4.45","fe80:0:0:0:350b:25b5:dca:3302","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (16 Mar 2026 11:05AM GMT+0200)","16 Mar 2026 11:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"347908376","","PCB18052.sanef.groupe","10.101.243.42","fe80:0:0:0:2167:925b:e10c:5872","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:55AM GMT+0200)","22 Apr 2026 09:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"347918139","","vrlogbels1.sanef-rec.fr","10.45.15.164","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:28PM GMT+0200)","22 Apr 2026 06:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"347941250","","vrlogbels2.sanef-rec.fr","10.45.15.165","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:14PM GMT+0200)","22 Apr 2026 09:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"348196101","","PCB22451.sanef.groupe","10.108.31.0","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:28AM GMT+0200)","22 Apr 2026 06:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"348209822","","PCB23685.sanef.groupe","10.205.0.19","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (18 Apr 2026 09:10AM GMT+0200)","18 Apr 2026 11:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"348824677","","PCB24013.sanef.groupe","10.255.1.203","fe80:0:0:0:c7cf:c05f:1da5:3b1a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:38AM GMT+0200)","22 Apr 2026 10:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"348983322","","PCB18102.sanef.groupe","10.101.243.123","fe80:0:0:0:5f48:f167:5f42:52a2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:51AM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"349162740","","PCB21199.sanef.groupe","10.220.31.24","fe80:0:0:0:2b14:dba8:3b1f:f5af","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:20AM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"349167459","","PCB22723.sanef.groupe","10.220.31.52","fe80:0:0:0:dd77:ad66:53f4:56d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:09AM GMT+0200)","22 Apr 2026 09:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"349251465","","PCB22668.sanef.groupe","10.220.31.55","fe80:0:0:0:e195:844e:51ef:1f6e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:35AM GMT+0200)","21 Apr 2026 08:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"349447362","","PCB25840.sanef.groupe","10.5.31.37","fe80:0:0:0:7082:8edb:ddcc:3e34","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:06AM GMT+0200)","22 Apr 2026 09:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"349449582","","vrpwdapod1","10.45.14.100","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:14PM GMT+0200)","22 Apr 2026 05:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"349463322","","PCB25834.sanef.groupe","10.5.30.10","fe80:0:0:0:fb08:2f93:3486:64c2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:50PM GMT+0200)","22 Apr 2026 03:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"349485901","","PCB25806.sanef.groupe","10.5.30.18","fe80:0:0:0:b5af:7bce:890c:93a6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Manifest Downloaded (19 Apr 2026 09:48PM GMT+0200)","20 Apr 2026 05:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"349509572","","PCB22665.sanef.groupe","10.220.31.35","fe80:0:0:0:1f3d:24a7:6de:a1f2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:21AM GMT+0200)","22 Apr 2026 08:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"349735151","","vrechbetl1.sanef-rec.fr","10.45.11.205","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:19PM GMT+0200)","22 Apr 2026 09:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"349737402","","vrechaetl2.sanef-rec.fr","10.45.11.207","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:05AM GMT+0200)","22 Apr 2026 08:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN]" +"349742049","","vrechaetl1","10.45.11.206","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:58PM GMT+0200)","22 Apr 2026 05:59AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN]" +"349748226","","vrlogbquo1","10.100.16.105","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:12PM GMT+0200)","22 Apr 2026 05:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"349750444","","PCB24205.sanef.groupe","10.4.31.13","fe80:0:0:0:1b49:cc8:a784:bc97","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:13AM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"349775614","","vpodaboem2.sanef.groupe","10.42.15.90","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:02AM GMT+0200)","22 Apr 2026 07:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN]" +"349775782","","vpodaboem1.sanef.groupe","10.42.15.100","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:22PM GMT+0200)","22 Apr 2026 05:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN]" +"349790308","","vpodaboem4.sanef.groupe","10.42.15.91","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:21PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server]" +"349797065","","vpodaboem3.sanef.groupe","10.42.15.101","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:22PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server]" +"350002387","","PCB25850.sanef.groupe","10.255.3.185","fe80:0:0:0:3f1d:5702:8453:89fd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:04AM GMT+0200)","22 Apr 2026 10:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350018634","","PCB25807.sanef.groupe","10.205.0.26","fe80:0:0:0:e8de:6629:480e:8659","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:16AM GMT+0200)","22 Apr 2026 10:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350019008","","PCB25805.sanef.groupe","192.168.1.56","fe80:0:0:0:ffff:2cb5:ecc8:7a7d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:47AM GMT+0200)","17 Apr 2026 05:37PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350042094","","PCB22526.sanef.groupe","10.220.31.28","fe80:0:0:0:35f4:d283:cf57:7194","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:03AM GMT+0200)","21 Apr 2026 11:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350056341","","PCB25802.sanef.groupe","10.205.0.39","fe80:0:0:0:ed4:15ed:d604:5e80","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (16 Apr 2026 10:56AM GMT+0200)","16 Apr 2026 10:04PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350066707","","PCB25774.sanef.groupe","10.205.0.56","fe80:0:0:0:5e73:9c01:dab9:e09d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:57AM GMT+0200)","17 Apr 2026 02:23PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350499537","","PCB25826.sanef.groupe","10.205.0.36","fe80:0:0:0:3b9c:6cb3:2349:a253","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 02:00AM GMT+0200)","17 Apr 2026 12:33PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350501265","","PCB25868.sanef.groupe","10.101.243.159","fe80:0:0:0:168b:7389:401a:b936","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 09:57AM GMT+0200)","20 Apr 2026 07:24PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350507290","","PCB25782.sanef.groupe","10.205.0.54","2a01:e0a:f27:c0e0:2251:e4ec:e1ed:fd28","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:18PM GMT+0200)","21 Apr 2026 11:38PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350533261","","PCB25828.sanef.groupe","10.205.0.75","fe80:0:0:0:c9d0:510f:e3c1:9e7d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:39AM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350537152","","PCB25820.sanef.groupe","10.101.243.4","fe80:0:0:0:59a1:76e9:cb9d:901","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:37AM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350543270","","PCB25816.sanef.groupe","192.168.1.81","fe80:0:0:0:38aa:d79f:429d:ba22","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:20AM GMT+0200)","22 Apr 2026 09:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350546202","","PCB21201.sanef.groupe","10.220.31.9","fe80:0:0:0:9133:9875:252c:8739","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:58AM GMT+0200)","21 Apr 2026 06:47PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350556707","","PCB25785.sanef.groupe","10.101.243.68","fe80:0:0:0:c303:79f1:22f8:a989","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:13AM GMT+0200)","21 Apr 2026 10:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350558324","","PCB25773.sanef.groupe","10.205.0.48","fe80:0:0:0:3b52:457f:242a:51b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:36PM GMT+0200)","21 Apr 2026 10:50PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350568845","","PCB25796.sanef.groupe","10.205.0.126","fe80:0:0:0:b889:4e4d:6e99:c513","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:15AM GMT+0200)","21 Apr 2026 10:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350573351","","PCB25829.sanef.groupe","10.101.243.36","fe80:0:0:0:583d:6a4d:a408:8ef6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:09AM GMT+0200)","17 Apr 2026 05:52PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350587655","","PCB25858.sanef.groupe","10.205.0.163","fe80:0:0:0:4a93:d15c:ff90:63dc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.0.397","Manifest Downloaded (08 Apr 2026 12:04PM GMT+0200)","08 Apr 2026 12:04PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350779189","","PCB25799.sanef.groupe","10.205.0.145","fe80:0:0:0:9fd5:cabb:6b2:ee37","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:36AM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350781759","","PCB25831.sanef.groupe","10.205.1.39","fe80:0:0:0:c38c:cfa6:d086:cb58","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:05PM GMT+0200)","22 Apr 2026 09:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350795419","","PCB25832.sanef.groupe","10.255.2.240","fe80:0:0:0:682b:a2e7:b66c:5b00","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:25AM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350801769","","PCB21339.sanef.groupe","10.220.31.56","fe80:0:0:0:7f1a:4894:901e:8ed4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:38AM GMT+0200)","21 Apr 2026 01:22PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350843633","","PCB25811.sanef.groupe","10.205.0.39","fe80:0:0:0:3e62:9bc0:78b7:27c0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (18 Apr 2026 10:16PM GMT+0200)","19 Apr 2026 02:19PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350872267","","SVP22624.sanef-int.adds","10.82.15.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (20 Apr 2026 01:11PM GMT+0200)","20 Apr 2026 01:11PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"350890895","","PCB22716.sanef.groupe","10.220.31.41","fe80:0:0:0:e76e:8f03:a4a3:1ac8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:12AM GMT+0200)","22 Apr 2026 09:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"351067078","","PCB25808.sanef.groupe","10.101.243.71","fe80:0:0:0:875a:eed0:7254:6189","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:36PM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"351067100","","SVP22614.sanef-int.adds","10.82.10.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 6649","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:34AM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"351094057","","PCB25823.sanef.groupe","10.205.0.113","fe80:0:0:0:6b02:9ad2:8ff6:9473","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:19AM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"351146339","","VRBURXBAN10.sanef.groupe","10.30.4.10","fe80:0:0:0:5c55:2598:4a39:e82","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:50AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"351157832","","VRBURXBAN7.sanef.groupe","10.30.4.7","fe80:0:0:0:35b2:b87b:4325:52b4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:31PM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"351380231","","PCB24017.sanef.groupe","10.101.243.202","fe80:0:0:0:dc56:6185:1707:3b55","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 11:26AM GMT+0200)","21 Apr 2026 03:16PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"351409873","","VRBURXBAN2.sanef.groupe","10.30.4.2","fe80:0:0:0:1f95:98a4:4589:27b5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:11PM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"352096727","","PCB21093.sanef.groupe","10.101.243.7","fe80:0:0:0:f480:fccb:7854:f10a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:36AM GMT+0200)","22 Apr 2026 08:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"352191310","","PCB23768.sanef.groupe","10.205.0.202","fe80:0:0:0:2a:bc25:8927:5b38","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 07:54AM GMT+0200)","16 Apr 2026 01:40PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"352438899","","PCB25849.sanef.groupe","10.101.243.172","fe80:0:0:0:e5dd:7c7c:b8a6:91e4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:36AM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"352580911","","PCB25852.sanef.groupe","10.255.2.229","fe80:0:0:0:2125:cf1b:e12b:e3f1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:52AM GMT+0200)","21 Apr 2026 10:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"352581103","","PCB25851.sanef.groupe","10.101.242.49","fe80:0:0:0:50a7:23d2:2890:a448","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:11AM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"352603936","","PCB25862.sanef.groupe","10.205.0.82","fe80:0:0:0:11a0:844b:f6b2:9a8c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:40AM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"352658714","","PCB21202.sanef.groupe","10.220.31.36","fe80:0:0:0:a294:3db6:e7aa:5a20","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (10 Apr 2026 11:39AM GMT+0200)","10 Apr 2026 04:40PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"352994824","","PCM22309.sanef.groupe","10.252.14.15","fe80:0:0:0:f47d:97fb:630:ef4d","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:31AM GMT+0200)","22 Apr 2026 09:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"352998720","","PCB17804.sanef.groupe","10.255.2.235","fe80:0:0:0:6adc:29a8:d15e:172a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:11AM GMT+0200)","22 Apr 2026 09:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353038704","","PCB20708.sanef.groupe","10.205.0.19","fe80:0:0:0:8876:ccb2:d4b8:a63f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:06AM GMT+0200)","22 Apr 2026 04:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353084340","","PCB21091.sanef.groupe","10.205.0.56","fe80:0:0:0:1524:1b46:96f3:8037","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (20 Apr 2026 11:47AM GMT+0200)","21 Apr 2026 06:47PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353100235","","PCB25848.sanef.groupe","10.205.0.4","fe80:0:0:0:a738:704:c5d6:7be2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (19 Apr 2026 10:33AM GMT+0200)","19 Apr 2026 12:30PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353110348","","PCB18071.sanef.groupe","10.205.0.235","fe80:0:0:0:89e:448:f37d:d8a4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (20 Apr 2026 11:52AM GMT+0200)","20 Apr 2026 11:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353262715","","PCB18074.sanef.groupe","10.205.0.52","fe80:0:0:0:dbf0:1d8:644a:e03b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:37AM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353288805","","PCB20721.sanef.groupe","10.101.242.39","fe80:0:0:0:9121:790a:39fd:b68d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Inventory Scan Complete (03 Apr 2026 11:28AM GMT+0200)","03 Apr 2026 03:17PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353299227","","srlogbels1.sanef-rec.fr","10.45.15.166","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:14PM GMT+0200)","22 Apr 2026 05:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"353304779","","srlogbels2.sanef-rec.fr","10.45.15.167","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:26PM GMT+0200)","22 Apr 2026 10:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"353316804","","PCB20696.sanef.groupe","192.168.1.182","fe80:0:0:0:a0ee:35fa:3efd:34c7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 09:05AM GMT+0200)","21 Apr 2026 09:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353328564","","PCB20819.sanef.groupe","10.205.0.62","fe80:0:0:0:b177:1673:2da9:eb45","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (20 Apr 2026 02:02PM GMT+0200)","21 Apr 2026 03:35PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353358783","","PCB18110.sanef.groupe","10.101.243.142","fe80:0:0:0:de57:cc9f:91c3:4b06","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","VM Manifest Downloaded (31 Mar 2026 09:27AM GMT+0200)","31 Mar 2026 06:45PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353719933","","PCB17781.sanef.groupe","10.101.243.145","fe80:0:0:0:f70d:731a:16e:3242","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:21AM GMT+0200)","21 Apr 2026 10:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353723925","","PCB20698.sanef.groupe","10.255.1.218","fe80:0:0:0:2ee2:c453:2e08:50fc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:11AM GMT+0200)","22 Apr 2026 10:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"353775005","","SVP21076.sanef-int.adds","10.92.8.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (19 Apr 2026 12:11PM GMT+0200)","19 Apr 2026 12:11PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"354301929","","PCB22794.sanef.groupe","10.100.39.5","fe80:0:0:0:f5a9:5ada:6780:bbf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:49PM GMT+0200)","22 Apr 2026 07:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"354362166","","PCB20719.sanef.groupe","10.4.31.70","fe80:0:0:0:cac:75d9:de10:4f80","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:41AM GMT+0200)","22 Apr 2026 09:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"354366742","","PCB20638.sanef.groupe","10.205.0.12","fe80:0:0:0:27d8:4b20:304d:336e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:14AM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"354586794","","PCB18087.sanef.groupe","10.205.0.159","fe80:0:0:0:b188:e029:bbf6:139b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:22AM GMT+0200)","22 Apr 2026 10:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"354600307","","PCB20700.sanef.groupe","10.101.243.65","fe80:0:0:0:e45b:d327:97b8:f50a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:52AM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"354632280","","PCB17775.sanef.groupe","10.255.4.244","fe80:0:0:0:b29a:7c7e:acbc:b800","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 01:22PM GMT+0200)","20 Apr 2026 01:22PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"354633506","","PCB20723.sanef.groupe","10.101.243.32","fe80:0:0:0:b47:3cb:72c4:fff9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 08:10AM GMT+0200)","22 Apr 2026 10:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"354639273","","vpdsiasaf1.sanef.groupe","192.168.19.8","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:46AM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"354650363","","vpdsiasaf2.sanef.groupe","192.168.19.9","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:39PM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"354672880","","vpdsiarad1.sanef.groupe","10.44.5.195","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:13PM GMT+0200)","22 Apr 2026 09:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Radius,OS-LIN-SRV DYN]" +"354674441","","PCB21023.sanef.groupe","10.205.0.52","fe80:0:0:0:d924:dc9b:46d1:b85b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 09:56AM GMT+0200)","16 Apr 2026 05:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"354675277","","vpechbetl1.sanef.groupe","10.42.16.140","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:04PM GMT+0200)","22 Apr 2026 06:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"354676610","","vpdsiarad2.sanef.groupe","10.44.5.196","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:21PM GMT+0200)","22 Apr 2026 10:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Radius,OS-LIN-SRV DYN]" +"354679096","","vpechaetl4.sanef.groupe","10.42.16.144","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:34PM GMT+0200)","22 Apr 2026 09:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"354679518","","vpechaetl1.sanef.groupe","10.42.16.141","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:49PM GMT+0200)","22 Apr 2026 10:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"354689834","","vpechaetl3.sanef.groupe","10.42.16.143","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:35PM GMT+0200)","22 Apr 2026 09:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"354695010","","vpechaetl2.sanef.groupe","10.42.16.142","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:34AM GMT+0200)","22 Apr 2026 07:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"354905032","","PCB18040.sanef.groupe","10.205.0.14","fe80:0:0:0:5e8:1864:b7c5:b1d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 09:30AM GMT+0200)","20 Apr 2026 06:25PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"354947020","","PCB25777.sanef.groupe","10.101.243.83","fe80:0:0:0:88b5:a3af:bcda:60fd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:30AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"355126754","","PCB20734.sanef.groupe","10.255.1.203","fe80:0:0:0:1d12:86ff:1d8b:5146","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 10:19AM GMT+0200)","22 Apr 2026 09:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"355147671","","PMS20971.sanef-int.adds","10.44.201.100","fe80:0:0:0:d8ef:761e:3dc8:581f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 4946","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:02AM GMT+0200)","22 Apr 2026 09:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN,TAG-SIC,TAG-CAPIV]" +"355180643","","PMS20925.sanef-int.adds","10.44.201.99","fe80:0:0:0:b0b9:a8e4:2aeb:3998","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 4946","6.4.0.397","Manifest Downloaded (09 Apr 2026 01:30PM GMT+0200)","09 Apr 2026 01:30PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,TAG-SIC,TAG-CAPIV]" +"355211523","","PCB20714.sanef.groupe","10.255.3.234","fe80:0:0:0:7535:ce2a:5bce:ad9a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:00AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"355232539","","PCB17808.sanef.groupe","10.255.4.9","fe80:0:0:0:a41b:4657:1b47:fb2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Agent Downloaded (20 Apr 2026 11:04AM GMT+0200)","20 Apr 2026 04:35PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"355464746","","PBM22810.sanef-int.adds","10.100.50.11","fe80:0:0:0:c44e:7ade:a222:996f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 4946","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:27AM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"355989064","","PCB18030.sanef.groupe","10.101.243.139","fe80:0:0:0:747e:bd43:3845:91fe","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:19AM GMT+0200)","17 Apr 2026 06:57PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356057370","","PCB18091.sanef.groupe","10.205.0.19","fe80:0:0:0:92e5:e2b0:3e02:d174","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (18 Apr 2026 11:29AM GMT+0200)","18 Apr 2026 11:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356058023","","PCM18705.sanef-int.adds","10.5.17.10","fe80:0:0:0:6a6:9fad:c366:8e34","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:20AM GMT+0200)","22 Apr 2026 07:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356059125","","PCB20703.sanef.groupe","10.205.0.152","fe80:0:0:0:2aba:6f9e:1c95:6bdc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:14AM GMT+0200)","22 Apr 2026 10:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356270805","","PCB21108.sanef.groupe","192.168.8.235","fe80:0:0:0:481e:8ff5:e545:929d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:19AM GMT+0200)","21 Apr 2026 06:51PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356275330","","PCB18042.sanef.groupe","10.101.243.55","2001:861:3206:8260:95bf:f2e:2b99:6b11","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:48AM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356281593","","vpdsiadep1.sanef.groupe","10.44.6.5","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:54AM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,NextCloud,OS-LIN-SRV DYN,MID-NGINX DYN]" +"356292342","","vrdsiadep1.sanef-rec.fr","10.45.7.132","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:57PM GMT+0200)","22 Apr 2026 09:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN]" +"356302749","","PCB18066.sanef.groupe","10.101.243.8","fe80:0:0:0:a05e:2f26:9931:29de","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:42AM GMT+0200)","21 Apr 2026 10:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356305508","","PCB18097.sanef.groupe","10.101.243.89","fe80:0:0:0:7f7e:bc52:6910:184b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 09:38AM GMT+0200)","18 Apr 2026 10:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356333830","","PCB24169.sanef.groupe","10.255.3.176","fe80:0:0:0:8548:829a:23b0:c0f7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:19PM GMT+0200)","22 Apr 2026 07:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356359986","","PCB21116.sanef.groupe","192.168.1.197","fe80:0:0:0:4285:9acb:373d:c5dc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:07AM GMT+0200)","21 Apr 2026 11:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356378351","","PCB21117.sanef.groupe","10.205.0.142","2a01:cb08:52e:a900:1d35:6519:7d07:9724","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:14AM GMT+0200)","21 Apr 2026 10:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"356380926","","PCB21560.sanef.groupe","10.100.39.163","fe80:0:0:0:c446:353b:4b1a:5225","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:25AM GMT+0200)","22 Apr 2026 07:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356380927","","PCB21594.sanef.groupe","10.100.39.22","fe80:0:0:0:c332:a712:d4ad:8d65","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:41AM GMT+0200)","22 Apr 2026 06:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"356383716","","PCB22657.sanef.groupe","10.220.31.13","fe80:0:0:0:21c4:868e:4873:6cc6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 11:43AM GMT+0200)","17 Apr 2026 04:51PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356385720","","PCB24173.sanef.groupe","10.100.39.27","fe80:0:0:0:dc2d:651c:a8ba:9b86","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:58AM GMT+0200)","22 Apr 2026 06:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356385889","","PCB21343.sanef.groupe","10.220.31.34","fe80:0:0:0:5695:e50b:1922:cdbb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:17AM GMT+0200)","21 Apr 2026 11:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356545009","","vpburadps1.sanef.groupe","10.100.38.9","fe80:0:0:0:f16d:78f8:e10:bee3","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:55PM GMT+0200)","22 Apr 2026 06:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,VRF_BURO,SCCM,OS-WIN-SRV DYN,BDD-SQL DYN]" +"356588752","","PCB21123.sanef.groupe","10.205.0.107","fe80:0:0:0:728a:3a4e:e9ae:e401","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:56AM GMT+0200)","21 Apr 2026 09:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356604589","","PCB22733.sanef.groupe","10.255.2.205","fe80:0:0:0:371a:adb7:6bf0:6cf8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:25AM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356620847","","PCB24242.sanef.groupe","10.255.4.195","fe80:0:0:0:6316:5514:f3b7:407f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (31 Mar 2026 05:07PM GMT+0200)","31 Mar 2026 05:07PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356621961","","PCB20712.sanef.groupe","10.205.0.227","fe80:0:0:0:91f1:fd74:4e95:22ec","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:04AM GMT+0200)","17 Apr 2026 06:45PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356624693","","PCB17805.sanef.groupe","10.255.4.177","fe80:0:0:0:5f03:fc1b:bbda:a46c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:33AM GMT+0200)","22 Apr 2026 09:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356624773","","PCB22509.sanef.groupe","10.220.31.39","fe80:0:0:0:c25a:306b:2794:d49","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:37AM GMT+0200)","21 Apr 2026 11:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356625275","","PCB21098.sanef.groupe","10.220.31.4","fe80:0:0:0:f0fb:80c7:ceeb:a24e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:48AM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356632998","","PCB17943.sanef.groupe","10.101.243.19","fe80:0:0:0:5406:c5d0:90c6:ebb5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:42AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356636844","","PCB24225.sanef.groupe","10.205.0.127","fe80:0:0:0:4b8a:91f8:faef:a8e0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:18AM GMT+0200)","22 Apr 2026 10:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356654578","","PCB21706.sanef.groupe","10.220.31.14","fe80:0:0:0:6b6c:8d15:7e5:13dc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:20AM GMT+0200)","22 Apr 2026 10:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356861640","","PCB20641.sanef.groupe","172.18.119.152","fe80:0:0:0:86e1:2087:a809:7267","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:40AM GMT+0200)","21 Apr 2026 09:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356865778","","PCB20657.sanef.groupe","10.101.243.154","fe80:0:0:0:cda8:65b:f3d1:4344","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (16 Apr 2026 11:04AM GMT+0200)","16 Apr 2026 03:04PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356882850","","PCB22517.sanef.groupe","10.205.0.117","fe80:0:0:0:713c:278a:3c59:6b33","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:01PM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356896721","","SVP18476.sanef-int.adds","10.212.39.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Manifest Downloaded (13 Apr 2026 10:40AM GMT+0200)","13 Apr 2026 12:37PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356899321","","PCB24099.sanef.groupe","10.205.0.19","fe80:0:0:0:c22d:f01c:aa4f:a77c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (19 Apr 2026 04:46PM GMT+0200)","19 Apr 2026 04:46PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356902135","","PCB22721.sanef.groupe","10.220.31.14","fe80:0:0:0:71db:226e:874f:fccb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (10 Apr 2026 04:30PM GMT+0200)","10 Apr 2026 04:30PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356905320","","PCB22618.sanef.groupe","10.220.31.22","fe80:0:0:0:67b5:2c66:a06a:83cf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:39AM GMT+0200)","21 Apr 2026 11:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"356915896","","PCB18028.sanef.groupe","10.101.243.22","fe80:0:0:0:50aa:3d7e:e48e:322b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:43AM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"357106870","","PCB20656.sanef.groupe","10.255.3.239","fe80:0:0:0:512c:a4c6:5287:1726","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:18AM GMT+0200)","21 Apr 2026 11:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"357143220","","PCB18035.sanef.groupe","10.205.0.6","fe80:0:0:0:bf52:7288:2003:9fa0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:49AM GMT+0200)","22 Apr 2026 08:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"357841979","","PCB24203.sanef.groupe","10.100.39.12","fe80:0:0:0:86b1:d84d:1978:16b4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:26AM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"357852646","","PCB22714.sanef.groupe","10.220.31.2","fe80:0:0:0:a4bd:3b70:cfe6:72c6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:50AM GMT+0200)","22 Apr 2026 08:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"357852976","","PCB22666.sanef.groupe","10.208.31.0","fe80:0:0:0:30df:5525:3dad:e171","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:52AM GMT+0200)","22 Apr 2026 09:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"357858337","","PCB21272.sanef.groupe","10.4.31.3","fe80:0:0:0:39bc:daa5:f0a8:31be","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:19PM GMT+0200)","22 Apr 2026 06:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"357859057","","PCB22619.sanef.groupe","10.220.31.8","fe80:0:0:0:57e2:523c:a00f:bcc0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 09:08AM GMT+0200)","17 Apr 2026 01:50PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"357873287","","PCB21203.sanef.groupe","10.220.31.64","fe80:0:0:0:5b1d:ba7b:d893:5d3a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (18 Apr 2026 08:57AM GMT+0200)","18 Apr 2026 12:30PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"357880804","","PCB18746.sanef.groupe","10.100.39.44","fe80:0:0:0:c052:8ed4:5f67:f3c6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:03AM GMT+0200)","21 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"357895561","","PCB21137.sanef.groupe","10.101.243.111","fe80:0:0:0:61c9:37ff:e40f:69a7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:29AM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"357896652","","vprpsangx1.sanef.groupe","10.41.20.25","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:42PM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Péage,OS-LIN-SRV DYN,MID-NGINX DYN]" +"357904457","","PCB22717.sanef.groupe","10.208.31.8","fe80:0:0:0:1412:c831:f2af:b898","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (31 Mar 2026 04:35PM GMT+0200)","31 Mar 2026 04:35PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"357904904","","vprpnangx1","10.41.20.26","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:11AM GMT+0200)","22 Apr 2026 06:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Péage,OS-LIN-SRV DYN,MID-NGINX DYN]" +"358057716","","SVP21130.sanef-int.adds","10.192.8.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (19 Apr 2026 07:10AM GMT+0200)","22 Apr 2026 06:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358103185","","SVP22519.sanef-int.adds","10.104.2.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:11PM GMT+0200)","22 Apr 2026 06:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358107596","","PCB22621.sanef.groupe","10.205.0.139","fe80:0:0:0:f0ca:4af5:75ca:bd81","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:15AM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358116950","","PCV22847.sanef-int.adds","10.100.7.11","fe80:0:0:0:f8ac:c42d:bc63:9ff2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 4946","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:19AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358121472","","PCB25787.sanef.groupe","10.205.0.115","fe80:0:0:0:a8ba:63ca:c97c:1dad","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:43PM GMT+0200)","21 Apr 2026 10:51PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358126652","","PCB24093.sanef.groupe","10.101.243.37","2a0d:3344:10ce:8f10:39bd:ad81:7034:27aa","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:02AM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358140645","","vrdsibarc1.sanef-rec.fr","10.45.15.133","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:22PM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,BDD,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"358157529","","PCB18749.sanef.groupe","10.255.4.244","fe80:0:0:0:e0fe:e90c:7c84:be60","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:56AM GMT+0200)","21 Apr 2026 10:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358166523","","PCV18552.sanef-int.adds","10.100.7.30","fe80:0:0:0:b1c6:77a:82e9:1882","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 4946","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:32AM GMT+0200)","22 Apr 2026 08:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358170685","","vpdsiagrd1.sanef.groupe","192.168.19.100","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:44PM GMT+0200)","22 Apr 2026 08:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,DMZ,TAG-SRVEXPOSEINTERNET,DNS,OS-LIN-SRV DYN,MID-NGINX DYN]" +"358173066","","PCB24167.sanef.groupe","10.100.39.133","fe80:0:0:0:525:8eb3:a6ce:7515","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 10:03AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358425181","","PCB21204.sanef.groupe","10.202.31.2","fe80:0:0:0:a092:ed38:664:b898","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:27AM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358427467","","VMMCAFLC1.sanef-int.adds","10.41.50.251","fe80:0:0:0:7f75:2312:824c:170","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:35AM GMT+0200)","22 Apr 2026 07:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"358632755","","VMMCAGC1.sanef-int.adds","10.41.50.250","fe80:0:0:0:e0d2:fbac:e16c:830d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:14AM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"358634791","","VMMDAIC1.sanef-int.adds","10.41.70.250","fe80:0:0:0:3b2b:180d:9caf:521d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:53AM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358637191","","PCB17767.sanef.groupe","10.255.1.151","fe80:0:0:0:26a8:1783:1978:b9ae","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:53AM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358642751","","vpdsiawsus2.sanef-int.adds","10.44.2.132","","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:52PM GMT+0200)","22 Apr 2026 08:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,VRF_INCONNUE,WSUS,OS-WIN-SRV DYN,BDD-SQL DYN]" +"358647992","","VMMPBXC1.sanef-int.adds","10.41.60.136","fe80:0:0:0:f888:1284:e2a7:69c4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:53PM GMT+0200)","22 Apr 2026 06:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358649991","","VMMWLANC1.sanef-int.adds","10.42.31.25","fe80:0:0:0:edbe:7f56:5da2:18b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:45PM GMT+0200)","22 Apr 2026 06:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358651974","","VMMVSCC1.sanef-int.adds","10.41.7.250","fe80:0:0:0:961a:8211:f1f7:6df","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:05AM GMT+0200)","22 Apr 2026 08:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358653134","","VMMSVPC1.sanef-int.adds","10.41.2.250","fe80:0:0:0:4f1b:1ba3:f54e:512c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:29PM GMT+0200)","22 Apr 2026 06:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358779414","","vrcybapta1","10.45.11.163","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:20AM GMT+0200)","22 Apr 2026 06:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,CyberArk,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"358783975","","PCB20697.sanef.groupe","10.101.243.179","fe80:0:0:0:3078:c640:ca92:16d7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:28AM GMT+0200)","21 Apr 2026 10:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358822881","","PCB18062.sanef.groupe","10.101.243.144","fe80:0:0:0:948b:f5b3:e77c:2917","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:41AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358830635","","PCB24256.sanef.groupe","10.12.31.32","fe80:0:0:0:ea45:c2c:4ec8:22bd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:02PM GMT+0200)","22 Apr 2026 06:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358835155","","PCB24251.sanef.groupe","192.168.3.64","fe80:0:0:0:3732:261b:655f:39a1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:04PM GMT+0200)","21 Apr 2026 12:04PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358858681","","PCB17483.sanef.groupe","10.255.2.244","fe80:0:0:0:fcb4:47ea:2bdf:dd5a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:38PM GMT+0200)","21 Apr 2026 01:38PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358859662","","PCB24210.sanef.groupe","10.89.31.2","fe80:0:0:0:dc5b:1f6:f35e:f246","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 02:45AM GMT+0200)","21 Apr 2026 02:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"358892330","","PCB24244.sanef.groupe","10.99.31.0","fe80:0:0:0:87f:1e24:efc1:b7ba","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:24AM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358895507","","PCB24100.sanef.groupe","10.5.31.11","fe80:0:0:0:cda3:6439:a2de:7516","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:13AM GMT+0200)","22 Apr 2026 05:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"358919587","","PCB18493.sanef.groupe","10.101.243.168","2a02:842a:dc2:4d01:6053:30ad:adbb:a927","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:18AM GMT+0200)","22 Apr 2026 09:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358926256","","PCB24226.sanef.groupe","10.89.31.11","fe80:0:0:0:b584:65bb:1346:38e9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:22AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"358926849","","PCB24199.sanef.groupe","10.255.3.144","fe80:0:0:0:422a:2698:ded3:746e","Microsoft Windows 11 Professionnel 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 10:59AM GMT+0200)","17 Apr 2026 12:07PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"358928583","","PCB24212.sanef.groupe","10.255.4.164","fe80:0:0:0:5f62:5ce1:1cd3:4dfd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 07:27AM GMT+0200)","17 Apr 2026 07:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"358930712","","PCB24220.sanef.groupe","10.255.2.252","fe80:0:0:0:9bd6:7e74:cabb:1e6a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:00PM GMT+0200)","22 Apr 2026 06:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"359125417","","PCB24186.sanef.groupe","10.99.31.3","fe80:0:0:0:3343:d0e5:2c19:b6ec","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:38AM GMT+0200)","21 Apr 2026 08:38AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359125442","","PCB24229.sanef.groupe","10.255.1.165","fe80:0:0:0:f85:9690:28b4:e954","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:12AM GMT+0200)","22 Apr 2026 08:12AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"359126048","","PCB24206.sanef.groupe","10.255.2.175","fe80:0:0:0:1b9d:311a:c0d:1326","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:18AM GMT+0200)","22 Apr 2026 08:18AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"359135332","","PCB20689.sanef.groupe","10.255.1.175","fe80:0:0:0:1113:5f1f:e00a:98f9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:39AM GMT+0200)","22 Apr 2026 08:39AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359136877","","vprpaangx1.sanef.groupe","10.42.0.140","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:45PM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Péage,OS-LIN-SRV DYN,MID-NGINX DYN]" +"359140638","","PCB24102.sanef.groupe","10.255.3.157","fe80:0:0:0:725f:d29:86f1:ca6e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:13AM GMT+0200)","22 Apr 2026 08:13AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359142980","","PCB24228.sanef.groupe","10.255.4.155","fe80:0:0:0:7ef9:ea51:9e42:9bfb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:00AM GMT+0200)","22 Apr 2026 08:00AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"359144569","","PCB24103.sanef.groupe","192.168.1.252","fe80:0:0:0:9edc:409d:dda7:e1d0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Manifest Downloaded (10 Apr 2026 03:05PM GMT+0200)","10 Apr 2026 03:05PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"359154690","","PCB24219.sanef.groupe","10.5.31.12","fe80:0:0:0:e9af:c47e:f2c8:fdcd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:47PM GMT+0200)","21 Apr 2026 05:47PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359163918","","PCB24190.sanef.groupe","10.255.4.168","fe80:0:0:0:183:7d23:2f21:6281","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:08AM GMT+0200)","22 Apr 2026 12:08AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359192054","","PCB20651.sanef.groupe","10.255.4.208","fe80:0:0:0:3a38:929f:cfb4:7475","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:11AM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359721618","","PCB24223.sanef.groupe","10.106.31.10","fe80:0:0:0:8702:e39c:6fab:8df","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Manifest Downloaded (20 Apr 2026 08:26AM GMT+0200)","20 Apr 2026 08:26AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359724016","","PCB24101.sanef.groupe","10.152.31.42","fe80:0:0:0:c9af:ae17:d484:cc61","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:46PM GMT+0200)","21 Apr 2026 04:46PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359725235","","PCB21120.sanef.groupe","10.205.0.109","fe80:0:0:0:97d8:bee2:a1f6:9a1a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.0.397","Inventory Manifest Downloaded (07 Apr 2026 10:24AM GMT+0200)","07 Apr 2026 10:24AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359734091","","PCB24193.sanef.groupe","10.255.1.224","fe80:0:0:0:fc89:b19c:55a1:45d6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (16 Apr 2026 10:08AM GMT+0200)","16 Apr 2026 10:08AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359736472","","PCB24194.sanef.groupe","10.100.39.102","fe80:0:0:0:c600:37e1:94cf:7b1b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:36PM GMT+0200)","21 Apr 2026 07:36PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359736670","","PCB24214.sanef.groupe","10.105.31.14","fe80:0:0:0:130b:acb5:b6a6:198e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:34PM GMT+0200)","21 Apr 2026 08:34PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359739684","","PCB24188.sanef.groupe","10.105.31.16","fe80:0:0:0:f111:6fbd:377c:eef8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:15AM GMT+0200)","22 Apr 2026 08:15AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359743599","","PCB24086.sanef.groupe","10.155.31.20","fe80:0:0:0:ee25:a01:e60f:314c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:08AM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359746010","","PCB24345.sanef.groupe","10.100.39.99","fe80:0:0:0:2217:fad5:1f94:2b0f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:10AM GMT+0200)","22 Apr 2026 07:10AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"359755573","","PCB24343.sanef.groupe","10.255.3.184","fe80:0:0:0:6608:db48:4a04:aa60","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:09PM GMT+0200)","21 Apr 2026 09:09PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"359756317","","PCB24326.sanef.groupe","10.205.0.105","fe80:0:0:0:1b84:b291:b3df:2241","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (20 Apr 2026 09:54AM GMT+0200)","20 Apr 2026 09:54AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359757086","","PCB24333.sanef.groupe","10.100.39.84","fe80:0:0:0:b338:f756:bb44:60a0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:36AM GMT+0200)","22 Apr 2026 07:36AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"359758271","","PCB24341.sanef.groupe","10.105.31.2","fe80:0:0:0:5c35:4ff0:cd35:fc9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:29AM GMT+0200)","22 Apr 2026 03:29AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359763318","","PCB24334.sanef.groupe","10.255.4.146","fe80:0:0:0:d621:ede3:ddb:d968","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:24PM GMT+0200)","21 Apr 2026 10:24PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359766551","","PCB24339.sanef.groupe","10.155.31.11","fe80:0:0:0:11ee:7662:f118:b68b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:42PM GMT+0200)","21 Apr 2026 07:42PM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"359788816","","PCB22274.sanef.groupe","10.200.31.86","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:42AM GMT+0200)","22 Apr 2026 02:42AM GMT+0200","Profil Workstation","","PM ","[Cloud Agent,Workstation]" +"359800633","","PCB24344.sanef.groupe","10.100.39.92","fe80:0:0:0:5f6c:1d08:6808:39ac","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:04PM GMT+0200)","21 Apr 2026 11:04PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"359801327","","vrcybapsp2.sanef-rec.fr","10.45.11.104","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:16PM GMT+0200)","22 Apr 2026 05:50AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,CyberArk,OS-LIN-SRV DYN]" +"359801373","","PCB24342.sanef.groupe","10.106.31.6","fe80:0:0:0:1f20:19d6:d3fb:2ad4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:26AM GMT+0200)","22 Apr 2026 08:26AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"359801548","","vrcybapsp1.sanef-rec.fr","10.45.11.103","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:51AM GMT+0200)","22 Apr 2026 09:51AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,CyberArk,OS-LIN-SRV DYN]" +"359802333","","vrpeahbst1.sanef-rec.fr","192.168.31.14","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:21PM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,TAG-SRVEXPOSEINTERNET,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN,TAG-SED]" +"359805856","","PCB24336.sanef.groupe","10.105.31.26","fe80:0:0:0:7cf9:5efb:6f17:e90e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:11AM GMT+0200)","22 Apr 2026 08:11AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"359809284","","vsccmr3.sanef.groupe","10.30.12.31","fe80:0:0:0:4d4:7d96:4eec:9426","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64-bit N/A Build 9600 UBR 20778","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:09PM GMT+0200)","22 Apr 2026 07:51AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Obsolete,DSI,OS-WIN-SRV DYN,BDD-SQL DYN]" +"359809599","","PCB24330.sanef.groupe","10.154.31.8","fe80:0:0:0:dd21:2a66:bea5:50ae","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:13AM GMT+0200)","17 Apr 2026 09:13AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"359816288","","PCB24331.sanef.groupe","10.205.0.40","fe80:0:0:0:2a3b:2aad:c88d:352a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (19 Apr 2026 01:16PM GMT+0200)","19 Apr 2026 01:16PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360008000","","PCB24323.sanef.groupe","10.255.1.133","fe80:0:0:0:cb61:fa4f:efcf:3d10","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:58PM GMT+0200)","21 Apr 2026 03:58PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360012141","","PCB24324.sanef.groupe","10.152.31.6","fe80:0:0:0:d716:b6a1:75bd:e96c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:04AM GMT+0200)","22 Apr 2026 06:04AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"360012474","","PCB24322.sanef.groupe","10.255.1.137","fe80:0:0:0:ab81:f854:1186:600","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:32AM GMT+0200)","22 Apr 2026 07:32AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"360013248","","PCB18717.sanef.groupe","10.205.0.12","fe80:0:0:0:878b:e2ca:e64f:4ad3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:56AM GMT+0200)","22 Apr 2026 07:56AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360021614","","PCB18088.sanef.groupe","10.202.31.28","fe80:0:0:0:dbcd:8754:a809:5ca3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:30AM GMT+0200)","22 Apr 2026 08:30AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360021676","","PCB18093.sanef.groupe","192.168.1.20","fe80:0:0:0:d2db:7ed5:9a56:a48","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:42AM GMT+0200)","21 Apr 2026 10:42AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360026634","","PCB24043.sanef.groupe","10.255.1.184","fe80:0:0:0:7768:4719:8b79:bd83","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:09AM GMT+0200)","21 Apr 2026 09:09AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360028776","","PCB18069.sanef.groupe","10.200.31.73","fe80:0:0:0:b430:aa14:358a:8277","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:31AM GMT+0200)","17 Apr 2026 08:31AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360030418","","PCB18716.sanef.groupe","10.200.31.0","fe80:0:0:0:51ef:921c:ddee:d9b6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:51AM GMT+0200)","22 Apr 2026 08:51AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360032867","","PCB18730.sanef.groupe","192.168.1.11","fe80:0:0:0:7710:b89a:790c:f382","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (18 Apr 2026 12:47PM GMT+0200)","18 Apr 2026 12:47PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360033209","","PCB18756.sanef.groupe","10.200.30.25","fe80:0:0:0:9599:fa9a:21ee:f2d7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:35AM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360038167","","PCB18750.sanef.groupe","10.200.31.63","fe80:0:0:0:4e3f:917f:b545:c87e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:22PM GMT+0200)","21 Apr 2026 10:22PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360043291","","PCB18425.sanef.groupe","10.200.31.1","fe80:0:0:0:6b94:ca97:c220:ccc4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:09PM GMT+0200)","21 Apr 2026 11:09PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360043312","","vrtrabmut1.sanef-rec.fr","10.45.15.4","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:59PM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Server (Linux/Windows)","","SCA,VM ","[Cloud Agent,Linux Server,Recette,ORACLE,MID-APACHE-TOMCAT DYN]" +"360047595","","PCB24337.sanef.groupe","10.155.31.6","fe80:0:0:0:6779:ea72:2410:68eb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:13PM GMT+0200)","21 Apr 2026 04:13PM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360073185","","PCB18082.sanef.groupe","10.205.0.25","fe80:0:0:0:9ff:15a4:2ee1:1a1d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:05AM GMT+0200)","17 Apr 2026 08:05AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360074060","","PCB18741.sanef.groupe","10.255.1.150","fe80:0:0:0:e2fb:d7ac:8726:a901","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:56AM GMT+0200)","22 Apr 2026 07:56AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360126650","","VMMSTLC1.sanef-int.adds","10.41.13.250","fe80:0:0:0:aeb4:5fbd:e0e0:980b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3476","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:04AM GMT+0200)","22 Apr 2026 04:04AM GMT+0200","Profil Workstation","","SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"360161243","","VMMSTLC2.sanef-int.adds","10.41.13.251","fe80:0:0:0:f59d:4025:d327:e4fd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3476","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:25PM GMT+0200)","22 Apr 2026 02:33AM GMT+0200","Profil Workstation","","SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"360266394","","PCB18489.sanef.groupe","10.255.3.172","fe80:0:0:0:7035:db24:a1ed:82db","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:27AM GMT+0200)","22 Apr 2026 08:27AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360424581","","PCB18079.sanef.groupe","192.168.1.24","2a01:cb06:b0:cb00:4068:4ce6:e6e8:3607","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:48AM GMT+0200)","21 Apr 2026 07:48AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360433718","","PCB22667.sanef.groupe","10.208.31.9","fe80:0:0:0:a007:cde2:3aaf:e089","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:50AM GMT+0200)","22 Apr 2026 07:50AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360465499","","PCB18488.sanef.groupe","10.101.243.209","fe80:0:0:0:1aa7:d13f:d7:289","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:12AM GMT+0200)","22 Apr 2026 09:12AM GMT+0200","Profil Workstation",""," ","[Cloud Agent,Workstation]" +"360477448","","PCB18639.sanef.groupe","10.4.31.16","fe80:0:0:0:f168:5cca:384c:9a73","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:12AM GMT+0200)","22 Apr 2026 08:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"360521279","","PCB21624.sanef.groupe","10.255.4.139","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:00PM GMT+0200)","21 Apr 2026 05:53PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"360522982","","PCB18640.sanef.groupe","10.200.31.45","fe80:0:0:0:7708:2d92:bb5c:df00","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:45AM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"360834094","","vrrauafrt1.sanef-rec.fr","10.45.9.235","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:18PM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"360897033","","PCB24191.sanef.groupe","10.255.1.142","fe80:0:0:0:3565:c394:5f4d:1a01","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:16AM GMT+0200)","17 Apr 2026 09:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"360913044","","PCB22770.sanef.groupe","10.255.1.134","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Manifest Downloaded (12 Apr 2026 05:56PM GMT+0200)","13 Apr 2026 05:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"360913777","","PCB18736.sanef.groupe","10.255.2.217","fe80:0:0:0:d1c3:f608:5bdb:5f80","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:42AM GMT+0200)","21 Apr 2026 09:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"360922279","","SVP21083.sanef-int.adds","10.212.26.27","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5909","6.4.1.22","Manifest Downloaded (15 Apr 2026 11:29AM GMT+0200)","15 Apr 2026 12:50PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361002016","","PCV21616.sanef-int.adds","10.100.7.12","fe80:0:0:0:56f:3eac:bac9:3014","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:01AM GMT+0200)","22 Apr 2026 07:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361217485","","VMMSTLC3.sanef-int.adds","10.41.13.252","fe80:0:0:0:7268:ce58:9117:19be","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3476","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:34AM GMT+0200)","22 Apr 2026 08:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"361258829","","PCB23670.sanef.groupe","10.255.1.129","fe80:0:0:0:9434:d94:6065:ea38","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:28PM GMT+0200)","21 Apr 2026 12:28PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361277472","","PCB21597.sanef.groupe","10.12.30.12","fe80:0:0:0:216a:bdbd:69dd:2b12","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:35PM GMT+0200)","22 Apr 2026 07:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361291519","","PCB24207.sanef.groupe","10.208.31.4","fe80:0:0:0:62d9:ab94:e294:31d7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:11AM GMT+0200)","18 Apr 2026 08:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361293868","","PCB24211.sanef.groupe","10.200.31.88","fe80:0:0:0:57f0:e2c4:81ad:4412","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:09AM GMT+0200)","21 Apr 2026 11:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361912721","","PCB24091.sanef.groupe","10.100.39.75","fe80:0:0:0:fc20:9373:d6ac:2aa9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 09:02AM GMT+0200)","16 Apr 2026 02:29PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361913480","","PCB24253.sanef.groupe","10.100.39.183","fe80:0:0:0:ce17:6d86:cd7f:7b9c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:52AM GMT+0200)","22 Apr 2026 06:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"361915686","","PCB24249.sanef.groupe","10.208.31.8","fe80:0:0:0:ad88:ce1:bde7:974e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:23AM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361918697","","PCB18616.sanef.groupe","10.100.39.104","fe80:0:0:0:ffc3:f240:725a:d500","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 03:50AM GMT+0200)","17 Apr 2026 05:11PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361928844","","REX21539.sanef-int.adds","10.12.91.81","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:35AM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361943237","","SVP22662.sanef-int.adds","10.105.18.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (16 Apr 2026 12:09PM GMT+0200)","16 Apr 2026 03:06PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361944196","","PCB24246.sanef.groupe","10.255.4.174","fe80:0:0:0:2644:eaec:e040:ebc6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","Agent Downloaded (14 Apr 2026 08:52AM GMT+0200)","21 Apr 2026 03:31PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"361948001","","PCB17789.sanef.groupe","10.101.243.216","2a01:cb01:2047:4476:1a2:229c:36f7:1ff3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:03AM GMT+0200)","22 Apr 2026 10:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"361952346","","PCB24197.sanef.groupe","10.255.3.135","fe80:0:0:0:ab86:4739:6cad:b1a1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:04PM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"361954461","","PCB24204.sanef.groupe","10.206.31.6","fe80:0:0:0:d57d:4d52:ceae:9eb2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (15 Apr 2026 10:10AM GMT+0200)","15 Apr 2026 03:23PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"361981512","","PCB21078.sanef.groupe","10.255.4.30","fe80:0:0:0:5283:94d5:fd10:aa52","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","VM Manifest Downloaded (31 Mar 2026 10:50AM GMT+0200)","31 Mar 2026 02:59PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"361981752","","PCB17944.sanef.groupe","10.200.31.40","fe80:0:0:0:62fb:168b:57e4:de03","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (20 Apr 2026 11:47AM GMT+0200)","22 Apr 2026 09:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362017413","","PCB24097.sanef.groupe","10.202.31.21","fe80:0:0:0:ff2d:32e1:e8ca:680c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:21AM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362035818","","PCB24063.sanef.groupe","10.200.31.53","fe80:0:0:0:5f21:9a7e:e296:c878","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:20AM GMT+0200)","21 Apr 2026 05:05PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362042307","","PCB24196.sanef.groupe","10.255.2.12","fe80:0:0:0:2fc4:ae46:15e9:8b50","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:32AM GMT+0200)","22 Apr 2026 08:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362044576","","PCB24094.sanef.groupe","10.219.31.10","fe80:0:0:0:a17c:5558:cd07:22c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:49AM GMT+0200)","22 Apr 2026 08:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"362047917","","PCB24320.sanef.groupe","10.255.1.187","fe80:0:0:0:1a47:9d96:d43a:a7b7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:12AM GMT+0200)","17 Apr 2026 03:53PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362056790","","PCB24069.sanef.groupe","10.208.31.15","fe80:0:0:0:985b:b9af:3e95:ab3a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 08:00AM GMT+0200)","17 Apr 2026 08:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"362060157","","PCB24248.sanef.groupe","10.219.31.2","fe80:0:0:0:3e2c:71f2:1038:f2a2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 04:59PM GMT+0200)","17 Apr 2026 04:59PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"362206490","","PCB22459.sanef.groupe","10.255.2.212","fe80:0:0:0:8c6b:49a8:7c43:cd83","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:03AM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362211657","","PCB18742.sanef.groupe","10.4.31.9","fe80:0:0:0:4433:b70a:3473:399f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:10PM GMT+0200)","22 Apr 2026 06:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362246145","","PCB23731.sanef.groupe","10.255.3.131","fe80:0:0:0:3189:8674:6185:2468","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:23PM GMT+0200)","22 Apr 2026 07:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362249300","","PCB22620.sanef.groupe","192.168.1.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:32AM GMT+0200)","21 Apr 2026 09:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362249908","","PCB24074.sanef.groupe","10.202.31.5","fe80:0:0:0:61e4:9f02:ca07:58b2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:58AM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362256073","","PCB24200.sanef.groupe","10.255.1.149","fe80:0:0:0:1550:57d5:eff1:df34","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 06:53AM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362272203","","PCB17869.sanef.groupe","10.255.3.181","fe80:0:0:0:ec9e:5531:72a7:c431","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7171","6.4.0.397","Manifest Downloaded (19 Mar 2026 12:01PM GMT+0200)","19 Mar 2026 12:54PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362315090","","PCB21351.sanef.groupe","10.101.243.141","fe80:0:0:0:2ba3:a47b:8aca:8ab0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:21AM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362320411","","PCB16344.sanef.groupe","10.200.30.11","fe80:0:0:0:35f9:c5ec:ec55:361c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (09 Apr 2026 07:59AM GMT+0200)","09 Apr 2026 01:04PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362484906","","PCB17917.sanef.groupe","10.255.3.236","fe80:0:0:0:8f94:930:b1db:edc2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7623","6.4.0.397","VM Manifest Downloaded (07 Apr 2026 10:45AM GMT+0200)","07 Apr 2026 11:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362517134","","PCB24202.sanef.groupe","10.200.31.47","fe80:0:0:0:f8eb:3d2e:27ce:1332","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 07:17AM GMT+0200)","17 Apr 2026 12:26PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"362607255","","PCB25772.sanef.groupe","10.4.31.48","fe80:0:0:0:585a:43ff:a264:9674","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:02PM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362737044","","PCB17878.sanef.groupe","192.168.1.196","fe80:0:0:0:c785:8939:5207:ab0b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Agent Downloaded (22 Apr 2026 09:06AM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362903921","","PCB24068.sanef.groupe","10.255.3.202","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (16 Apr 2026 11:28AM GMT+0200)","16 Apr 2026 03:06PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362968902","","PCB22892.sanef.groupe","10.100.39.103","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:26AM GMT+0200)","22 Apr 2026 05:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"362978365","","PCB22708.sanef.groupe","10.255.2.213","fe80:0:0:0:a3e6:afb7:5ba3:352","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:24AM GMT+0200)","22 Apr 2026 10:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363021135","","vpmetaads1.sanef-int.adds","10.44.7.132","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:57AM GMT+0200)","22 Apr 2026 06:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,AD,Radius,OS-WIN-SRV DYN]" +"363025279","","PCV20827.sanef-int.adds","10.100.7.34","fe80:0:0:0:919:5683:2744:7af4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:18AM GMT+0200)","22 Apr 2026 10:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363031615","","PCB21590.sanef.groupe","10.12.31.33","fe80:0:0:0:9e5b:3062:ad47:86f3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:11PM GMT+0200)","22 Apr 2026 08:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363043551","","PCB16374.sanef.groupe","10.255.3.196","","Microsoft Windows 11 Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:17AM GMT+0200)","22 Apr 2026 10:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363182865","","PCB21533.sanef.groupe","10.12.31.20","fe80:0:0:0:c024:849e:7706:4fd4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:10AM GMT+0200)","22 Apr 2026 06:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363186062","","PCB25797.sanef.groupe","10.255.3.212","fe80:0:0:0:d1e6:6ae1:6cef:7335","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:03AM GMT+0200)","21 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363225908","","PCV18682.sanef-int.adds","10.100.7.31","fe80:0:0:0:37ba:9834:d561:9229","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:37PM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363228698","","PCB18496.sanef.groupe","10.205.0.27","fe80:0:0:0:6023:fd57:5410:3cc6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:32AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363247793","","PCV18677.sanef-int.adds","10.100.7.35","fe80:0:0:0:26b2:f064:1c33:1210","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:17AM GMT+0200)","22 Apr 2026 05:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363247806","","vpdsibarc1.sanef.groupe","10.46.33.40","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.6","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:12PM GMT+0200)","22 Apr 2026 06:10AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"363271952","","vpdataapp1.sanef.groupe","10.41.40.145","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:23AM GMT+0200)","22 Apr 2026 06:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,MID-NGINX DYN]" +"363277770","","SVP22612.sanef-int.adds","10.1.1.18","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:23AM GMT+0200)","22 Apr 2026 10:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363308117","","PCV18550.sanef-int.adds","10.100.7.32","fe80:0:0:0:af04:b68e:a68a:e1a4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:08AM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363309467","","vrdsiaadg1.recette.adds","10.45.16.3","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:26AM GMT+0200)","22 Apr 2026 10:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,AD,OS-WIN-SRV DYN]" +"363309552","","PCB18024.sanef.groupe","10.200.31.46","fe80:0:0:0:6f92:a0bc:8546:e9e7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:30AM GMT+0200)","20 Apr 2026 11:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363314612","","PCV18542.sanef-int.adds","10.152.7.18","fe80:0:0:0:817c:a0d7:5ff7:ff","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:22AM GMT+0200)","22 Apr 2026 08:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363318959","","vrsamaext1.recette.adds","192.168.10.3","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:50AM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,TAG-SRVEXPOSEINTERNET,OS-WIN-SRV DYN]" +"363322957","","PCB18103.sanef.groupe","10.205.0.88","fe80:0:0:0:aaf6:d027:23ba:ac9f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Manifest Downloaded (17 Apr 2026 09:25AM GMT+0200)","17 Apr 2026 01:56PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363840829","","PCB16351.sanef.groupe","192.168.0.22","fe80:0:0:0:472:7118:fba7:68c1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:16AM GMT+0200)","17 Apr 2026 02:57PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363856796","","PCV22836.sanef-int.adds","10.152.7.11","fe80:0:0:0:a143:5d4c:39e2:2f7e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:10AM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363859540","","PCB21596.sanef.groupe","10.12.31.35","fe80:0:0:0:4365:2ae3:a0d5:1df6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:51PM GMT+0200)","22 Apr 2026 08:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363863260","","PCV21514.sanef-int.adds","10.7.53.17","fe80:0:0:0:5da8:a73d:d8af:bfcb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (18 Mar 2026 09:02AM GMT+0200)","18 Mar 2026 12:55PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363863295","","PCV18547.sanef-int.adds","10.152.7.17","fe80:0:0:0:478c:b161:7381:b27c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Manifest Downloaded (22 Apr 2026 07:26AM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363887034","","PCV21567.sanef-int.adds","10.152.7.12","fe80:0:0:0:2901:a89:14cb:704e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:29AM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363889479","","PCB21608.sanef.groupe","10.12.31.0","fe80:0:0:0:3702:6f58:45f3:e29f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:01PM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363905873","","PCB21599.sanef.groupe","10.12.31.19","fe80:0:0:0:a659:4302:bbb4:8186","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:08PM GMT+0200)","22 Apr 2026 06:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363949800","","PCV18563.sanef-int.adds","10.152.7.16","fe80:0:0:0:a279:7b75:543c:e0e0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:50AM GMT+0200)","22 Apr 2026 06:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363965240","","PCB21574.sanef.groupe","10.12.31.7","fe80:0:0:0:6bf2:d99e:4ec7:1b34","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:21PM GMT+0200)","22 Apr 2026 06:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363969483","","vptrabmut1.sanef.groupe","10.41.40.230","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:28PM GMT+0200)","22 Apr 2026 10:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,MID-APACHE-TOMCAT DYN]" +"363976393","","PCB21598.sanef.groupe","10.12.31.21","fe80:0:0:0:7523:5652:5bcc:818b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:16PM GMT+0200)","22 Apr 2026 08:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"363981573","","vptrabmut3.sanef.groupe","10.41.40.231","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:29PM GMT+0200)","22 Apr 2026 06:04AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD]" +"364163892","","PCB21584.sanef.groupe","10.5.30.16","fe80:0:0:0:a654:7b80:e57e:83af","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:26AM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364168702","","PBM21558.sanef-int.adds","10.152.50.11","fe80:0:0:0:3fdb:d975:b3bc:2e65","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:07AM GMT+0200)","22 Apr 2026 07:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"364171253","","vpdsiaito1.sanef.groupe","10.46.33.35","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Manifest Downloaded (19 Mar 2026 12:51AM GMT+0200)","19 Mar 2026 11:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,ITOP,OS-LIN-SRV DYN,MID-NGINX DYN]" +"364174784","","PCV18551.sanef-int.adds","10.152.7.15","fe80:0:0:0:2945:6820:8b99:b629","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:34AM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364314681","","PCV21502.sanef-int.adds","10.210.57.42","fe80:0:0:0:10c3:db8:fc5f:55f0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:19AM GMT+0200)","22 Apr 2026 07:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364342917","","PCV22885.sanef-int.adds","10.210.37.41","fe80:0:0:0:4fb0:4321:8f9:acdf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:15AM GMT+0200)","22 Apr 2026 08:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364461654","","PCV21511.sanef-int.adds","10.217.26.15","fe80:0:0:0:160c:3d53:7a64:ed16","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:55AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364466255","","PCV21518.sanef-int.adds","10.7.53.18","fe80:0:0:0:a321:1dc8:f006:67a4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:41AM GMT+0200)","22 Apr 2026 06:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364638303","","PCV22887.sanef-int.adds","10.117.2.17","fe80:0:0:0:f0ac:e3f2:5bd0:1c2c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 06:05PM GMT+0200)","22 Apr 2026 07:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364678473","","PCB21547.sanef.groupe","10.255.1.189","fe80:0:0:0:ea9c:4071:26e8:7302","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:53AM GMT+0200)","22 Apr 2026 08:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364694470","","PCB21602.sanef.groupe","10.255.1.139","fe80:0:0:0:2cad:9a19:e148:ae5b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Manifest Downloaded (14 Apr 2026 03:16AM GMT+0200)","14 Apr 2026 03:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364731184","","PCB25839.sanef.groupe","10.5.31.1","fe80:0:0:0:3f1d:9d7a:ebd5:84fb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:17PM GMT+0200)","18 Apr 2026 03:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364740389","","PCB18732.sanef.groupe","10.220.31.6","fe80:0:0:0:32cc:de51:c7f6:5cdd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:16AM GMT+0200)","21 Apr 2026 11:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364757960","","PCB18752.sanef.groupe","10.205.0.8","fe80:0:0:0:ce0f:a186:23cf:f7b3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 08:12AM GMT+0200)","17 Apr 2026 01:57PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364774157","","PCV21575.sanef-int.adds","10.155.7.40","fe80:0:0:0:a93e:2970:62c6:7d58","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:00AM GMT+0200)","22 Apr 2026 08:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364786822","","PCB21612.sanef.groupe","10.5.31.32","fe80:0:0:0:7e17:9dcd:c48:267c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Agent Downloaded (17 Apr 2026 11:57AM GMT+0200)","17 Apr 2026 11:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364815609","","PCB25812.sanef.groupe","10.5.30.11","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:49AM GMT+0200)","21 Apr 2026 05:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364919240","","PCV18560.sanef-int.adds","10.100.7.33","fe80:0:0:0:2cfe:bd:aa05:64d8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:17AM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364922812","","PCB21520.sanef.groupe","10.3.31.1","fe80:0:0:0:492c:5e16:1f6b:794a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:54PM GMT+0200)","22 Apr 2026 06:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364955465","","PCV21614.sanef-int.adds","10.12.7.23","fe80:0:0:0:78ce:6f89:7510:a1f8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:06PM GMT+0200)","22 Apr 2026 08:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364961612","","PCV21626.sanef-int.adds","10.155.7.19","fe80:0:0:0:a2c7:49ea:d6e2:abe8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:37AM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364967263","","PCB21583.sanef.groupe","10.5.30.12","fe80:0:0:0:f0e9:520d:e1fb:710a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:06AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364969640","","PCV21516.sanef-int.adds","10.100.7.19","fe80:0:0:0:ac06:4c91:cc50:3f1a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:48PM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364970231","","PCV22931.sanef-int.adds","10.100.7.20","fe80:0:0:0:4ae9:4d2d:3de3:44b1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:49PM GMT+0200)","22 Apr 2026 06:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364972594","","MAC15857.sanef.groupe","10.255.1.10","0:0:0:0:0:0:0:1","macOS 26.3.1","5.3.0.31","Inventory Scan Complete (21 Apr 2026 12:23PM GMT+0200)","21 Apr 2026 12:23PM GMT+0200","Default Profile","","PM,SCA,VM ","[Cloud Agent]" +"364973468","","PCV22452.sanef-int.adds","10.100.7.10","fe80:0:0:0:615f:8899:5504:f899","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:14PM GMT+0200)","22 Apr 2026 06:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364978143","","PCV22439.sanef-int.adds","10.147.2.15","fe80:0:0:0:5132:17e1:b260:7390","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:38PM GMT+0200)","22 Apr 2026 08:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364978252","","PCV21058.sanef-int.adds","10.100.7.16","fe80:0:0:0:e454:c92e:c4b5:bfd6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:27PM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364982225","","PCB22263.sanef.groupe","10.5.30.24","fe80:0:0:0:929f:3616:cb91:8855","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:21AM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364984841","","PCV21523.sanef-int.adds","10.87.14.15","fe80:0:0:0:e77a:78d7:20a3:6fc5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:37PM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"364994659","","PCV21586.sanef-int.adds","10.117.3.15","fe80:0:0:0:ca89:1016:3b2b:1b22","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:34AM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365022594","","PCB22264.sanef.groupe","10.5.31.35","fe80:0:0:0:807b:5644:99a4:a959","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:06PM GMT+0200)","22 Apr 2026 06:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365027416","","PCB22262.sanef.groupe","10.1.31.2","fe80:0:0:0:c7b8:eead:bd35:4ed7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 04:34AM GMT+0200)","17 Apr 2026 01:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365189729","","PCV22828.sanef-int.adds","10.100.7.14","fe80:0:0:0:f141:8a45:6bd:da52","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:03PM GMT+0200)","22 Apr 2026 09:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365200904","","PCV21501.sanef-int.adds","10.147.1.21","fe80:0:0:0:56e:5852:a2a8:fc89","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:14AM GMT+0200)","22 Apr 2026 05:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365228466","","PCV21517.sanef-int.adds","10.100.7.15","fe80:0:0:0:6385:b82e:1dd2:1936","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:58PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365235573","","PCB24187.sanef.groupe","10.5.31.2","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:57AM GMT+0200)","22 Apr 2026 07:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"365237392","","PCV22900.sanef-int.adds","10.100.7.21","fe80:0:0:0:78ef:738d:79c2:5778","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:08AM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365244238","","PCV21526.sanef-int.adds","10.100.7.17","fe80:0:0:0:a260:475:8891:4cd2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:23PM GMT+0200)","22 Apr 2026 06:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365246435","","PCV21570.sanef-int.adds","10.154.7.17","fe80:0:0:0:60fb:923:2877:ce94","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:03PM GMT+0200)","22 Apr 2026 06:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365271809","","PCV20973.sanef-int.adds","10.11.21.16","fe80:0:0:0:507c:8795:8743:d9ba","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:56AM GMT+0200)","22 Apr 2026 07:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365288994","","PCV21510.sanef-int.adds","10.187.6.15","fe80:0:0:0:bd00:d1e8:93e0:672e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:41AM GMT+0200)","22 Apr 2026 07:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365294551","","PCV21581.sanef-int.adds","10.107.7.40","fe80:0:0:0:9491:3d63:ab2b:8bf1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (24 Mar 2026 01:28PM GMT+0200)","24 Mar 2026 01:46PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365778389","","PCV22817.sanef-int.adds","10.154.7.18","fe80:0:0:0:29ca:cab0:845e:8402","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Inventory Scan Complete (17 Mar 2026 11:22AM GMT+0200)","17 Mar 2026 01:03PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365792017","","PCV21565.sanef-int.adds","10.100.7.18","fe80:0:0:0:3d27:c8a5:eaf2:fb32","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:16AM GMT+0200)","22 Apr 2026 06:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365792814","","vpdatafrt1.sanef.groupe","192.168.40.99","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:13PM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"365793399","","PCV22935.sanef-int.adds","10.5.7.10","fe80:0:0:0:249d:9c36:bc04:9937","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:33AM GMT+0200)","22 Apr 2026 07:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365854817","","PCB18641.sanef.groupe","10.5.31.46","fe80:0:0:0:ce48:825b:a8c:8b13","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:46AM GMT+0200)","22 Apr 2026 07:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"365862687","","vppcmardp1.sanef-int.adds","10.44.6.228","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4171","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:14AM GMT+0200)","22 Apr 2026 09:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"365863055","","vpresardp2.sanef-int.adds","10.44.7.68","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4171","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:38AM GMT+0200)","22 Apr 2026 10:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,Radius,OS-WIN-SRV DYN]" +"366063141","","PCB24144.sanef.groupe","10.101.243.84","fe80:0:0:0:ddd8:79a0:9368:e09b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:07PM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"366064116","","PCB25784.sanef.groupe","10.5.31.6","fe80:0:0:0:bd48:9655:7090:2e39","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 09:59AM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"366113694","","PCB24150.sanef.groupe","10.205.0.179","2a01:cb00:6ec:fc00:1da6:f600:fd4a:fda7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:24PM GMT+0200)","21 Apr 2026 12:24PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"366115477","","PCB24147.sanef.groupe","10.101.243.226","fe80:0:0:0:c0d6:de63:8ac9:5332","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:42AM GMT+0200)","21 Apr 2026 08:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"366118896","","PCB24143.sanef.groupe","10.205.0.73","fe80:0:0:0:2782:e489:12cd:9712","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:03AM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"366129118","","PCB17784.sanef.groupe","10.205.0.66","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:38AM GMT+0200)","21 Apr 2026 10:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"366152124","","vpsicapol1.sanef.groupe","10.44.200.132","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:04PM GMT+0200)","22 Apr 2026 09:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Centreon,OS-LIN-SRV DYN,TAG-SIA]" +"366318087","","PCB25809.sanef.groupe","10.5.31.17","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:10AM GMT+0200)","22 Apr 2026 08:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"366364463","","MTR-5J775R3","10.101.246.209","fe80:0:0:0:4304:b0fe:73e7:b92b","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:08PM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"366408981","","PCB17503.sanef.groupe","10.101.243.52","fe80:0:0:0:871d:12d7:d7fb:84c8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 10:36AM GMT+0200)","17 Apr 2026 03:13PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"366505741","","MTR-3PXF2L3","10.100.32.205","fe80:0:0:0:c204:fe62:4a3f:ce2","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:22AM GMT+0200)","22 Apr 2026 06:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"366599196","","PCB20633.sanef.groupe","10.205.0.132","fe80:0:0:0:8042:13c6:2bac:66ce","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:35AM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"366884514","","vrpataels1.sanef.groupe","10.43.255.22","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:13PM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-ELA DYN]" +"366892020","","vrpatbsip1.sanef.groupe","10.43.255.20","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:41PM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN]" +"367200068","","PCB16430.sanef.groupe","10.100.39.40","fe80:0:0:0:e926:dda3:c058:5b1","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:49AM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"367219018","","PBM20984.sanef-int.adds","10.100.50.8","fe80:0:0:0:6c77:9ef6:5449:d6e9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:45AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"367245149","","DAI20950.sanef-int.adds","10.100.70.14","fe80:0:0:0:1bd:1666:9596:9e74","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:38AM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"367260527","","PCB21280.sanef.groupe","10.4.31.77","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:19AM GMT+0200)","17 Apr 2026 05:37PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"367261722","","PCB22504.sanef.groupe","10.205.0.84","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (10 Apr 2026 09:12AM GMT+0200)","10 Apr 2026 10:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"367842599","","PCB21092.sanef.groupe","10.220.31.60","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:17AM GMT+0200)","17 Apr 2026 10:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"367872200","","PCB18731.sanef.groupe","192.168.1.52","fe80:0:0:0:f52:1b1d:1b1:23b5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:21AM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"367874530","","PCB18725.sanef.groupe","10.220.31.18","fe80:0:0:0:e1d7:d324:fc3e:642b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:31AM GMT+0200)","17 Apr 2026 03:04PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"367919266","","PCB18117.sanef.groupe","10.220.31.25","fe80:0:0:0:3438:939:ecfb:cecb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:13AM GMT+0200)","21 Apr 2026 11:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"367949395","","PCB23579.sanef.groupe","10.255.1.158","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:35AM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368152215","","PCB25835.sanef.groupe","10.5.30.21","fe80:0:0:0:eaf:cd4c:5552:fb23","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 02:02PM GMT+0200)","21 Apr 2026 02:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368408453","","PCB21707.sanef.groupe","10.205.0.25","fe80:0:0:0:de37:895b:c73c:40b5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:25AM GMT+0200)","21 Apr 2026 04:23PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368411315","","PCB18107.sanef.groupe","10.255.2.218","fe80:0:0:0:ed2a:d721:a8b5:c028","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:34AM GMT+0200)","21 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368428977","","PCB18487.sanef.groupe","10.220.31.7","fe80:0:0:0:ef5d:7dc:cc77:b5f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:53AM GMT+0200)","17 Apr 2026 01:45PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368447117","","vppixbams1.sanef-int.adds","10.41.17.10","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:07AM GMT+0200)","22 Apr 2026 07:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN]" +"368453771","","vppixatsf1.sanef-int.adds","10.41.17.15","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:01PM GMT+0200)","22 Apr 2026 05:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"368453794","","vppixbams2.sanef-int.adds","10.41.17.11","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:26AM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN]" +"368454760","","vppixatsf2.sanef-int.adds","10.41.17.16","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:09AM GMT+0200)","22 Apr 2026 07:40AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"368460166","","PCB18744.sanef.groupe","10.220.31.27","fe80:0:0:0:9f99:20c:bee3:6b46","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 10:08AM GMT+0200)","17 Apr 2026 02:52PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368460951","","PCB18743.sanef.groupe","10.220.31.32","fe80:0:0:0:5391:5033:15b2:e62c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 09:35AM GMT+0200)","19 Apr 2026 12:42PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368789681","","PCB18755.sanef.groupe","10.220.31.46","fe80:0:0:0:b97c:fd0c:c96e:3699","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:49AM GMT+0200)","21 Apr 2026 08:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368819283","","PCB18111.sanef.groupe","10.205.0.13","fe80:0:0:0:dbda:5d7b:ea78:5ded","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 08:57AM GMT+0200)","16 Apr 2026 02:31PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368821229","","PCB21299.sanef.groupe","10.101.243.91","fe80:0:0:0:7497:9878:3656:7de5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 10:26AM GMT+0200)","22 Apr 2026 10:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368890436","","PCB17234.sanef.groupe","10.220.31.16","fe80:0:0:0:3c9e:de25:b1f1:e2d2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:40AM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368962198","","PCB16110.sanef.groupe","10.220.31.30","fe80:0:0:0:7900:4c0d:46b7:c713","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:58AM GMT+0200)","22 Apr 2026 09:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"368987646","","MTR-7BD4804","10.101.246.210","fe80:0:0:0:70d:620d:adec:315","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:26AM GMT+0200)","22 Apr 2026 07:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"369207325","","PCB23598.sanef.groupe","10.8.30.10","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (22 Apr 2026 07:58AM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"369277894","","vrdsiaito1.sanef-rec.fr","10.45.15.132","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:17AM GMT+0200)","22 Apr 2026 06:54AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN]" +"369279734","","PCB18063.sanef.groupe","10.255.4.129","fe80:0:0:0:85bc:7a27:9b76:cf94","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:34AM GMT+0200)","21 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"369348919","","PCB18718.sanef.groupe","10.3.31.4","fe80:0:0:0:ac1e:e8da:268b:db81","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:38AM GMT+0200)","22 Apr 2026 06:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"369365031","","PCB25794.sanef.groupe","192.168.0.37","fe80:0:0:0:1077:3409:b1:9616","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:50AM GMT+0200)","21 Apr 2026 09:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"369610774","","PCB18101.sanef.groupe","10.200.31.15","fe80:0:0:0:886b:cd43:5982:ded0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:04AM GMT+0200)","22 Apr 2026 10:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"369633115","","vmdtrac01.recette.adds","10.45.17.4","fe80:0:0:0:1bd8:9174:9592:22ed","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:27AM GMT+0200)","22 Apr 2026 08:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370154243","","PCB21316.sanef.groupe","10.205.0.100","fe80:0:0:0:563c:ff2f:9a0c:c629","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:26PM GMT+0200)","21 Apr 2026 03:26PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370158037","","PCB21112.sanef.groupe","192.168.8.219","2a01:cb04:db2:7100:79ed:3c96:cfe0:ecb0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:27AM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370171321","","PCB21200.sanef.groupe","10.208.31.20","fe80:0:0:0:9d2c:154:94e2:5f98","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:42AM GMT+0200)","22 Apr 2026 08:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370189451","","PCB25783.sanef.groupe","10.205.0.253","fe80:0:0:0:183c:c34:4c9:5f7f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Manifest Downloaded (21 Apr 2026 10:16AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370350166","","PCB24346.sanef.groupe","10.255.4.133","fe80:0:0:0:a165:4135:abc2:14d8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 07:08AM GMT+0200)","17 Apr 2026 02:09PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370357368","","PCB22712.sanef.groupe","10.220.31.44","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:48AM GMT+0200)","22 Apr 2026 10:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370383934","","PCB17801.sanef.groupe","10.200.31.21","fe80:0:0:0:e6e3:6a64:1f3:166e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:44PM GMT+0200)","22 Apr 2026 08:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370394464","","PCB21159.sanef.groupe","10.205.0.158","fe80:0:0:0:1d48:3178:b8f2:25a0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:58AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370402310","","PCB24325.sanef.groupe","10.205.0.109","fe80:0:0:0:76c5:44e6:3746:1272","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:39AM GMT+0200)","22 Apr 2026 09:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"370420720","","PCB22468.sanef.groupe","10.200.31.83","fe80:0:0:0:7e7a:9d0d:f89b:52fc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:17AM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370439767","","vmdtrac02.recette.adds","10.45.17.5","fe80:0:0:0:e012:8fec:9fa:6925","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:32PM GMT+0200)","22 Apr 2026 06:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370464427","","PCB21110.sanef.groupe","192.168.1.44","fe80:0:0:0:454f:9ae2:b10f:63e6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:34AM GMT+0200)","22 Apr 2026 10:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370646430","","PCB21346.sanef.groupe","10.205.0.34","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:18AM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370705148","","PCB16326.sanef.groupe","10.205.0.142","fe80:0:0:0:39e4:2830:a09d:6cd2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:10PM GMT+0200)","22 Apr 2026 05:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370758189","","PCB21293.sanef.groupe","10.255.3.130","fe80:0:0:0:3b01:7fdf:1140:fd9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:59AM GMT+0200)","22 Apr 2026 10:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"370937437","","PCM16091.sanef.groupe","10.1.22.140","fe80:0:0:0:ddd4:b77a:d92e:7278","Microsoft Windows 10 Enterprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:01AM GMT+0200)","22 Apr 2026 07:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"371078338","","PCB22300.sanef.groupe","10.255.4.6","fe80:0:0:0:822f:ec2f:9c24:3a1d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:11AM GMT+0200)","21 Apr 2026 10:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"371388068","","vrtrabpxp1.recette.adds","10.45.14.168","","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:48PM GMT+0200)","22 Apr 2026 06:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,PX Prévia,OS-WIN-SRV DYN,BDD-POS DYN]" +"371884493","","PCB17064.sanef.groupe","10.255.1.161","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:29PM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"371887041","","PCB22449.sanef.groupe","10.105.31.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:27PM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"371891976","","PCB23639.sanef.groupe","10.255.4.161","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:18PM GMT+0200)","22 Apr 2026 07:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"371893689","","vppmrames1","10.41.91.60","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4405","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:42AM GMT+0200)","22 Apr 2026 06:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,VRF_PMR,OS-WIN-SRV DYN]" +"371972285","","PCB24255.sanef.groupe","10.12.31.9","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 02:13PM GMT+0200)","22 Apr 2026 08:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372122822","","vppciamft1.sanef.groupe","192.168.101.100","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:46PM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"372123651","","vppciagtw1.sanef.groupe","192.168.105.10","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:17AM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"372173101","","PCB24201.sanef.groupe","10.255.4.248","fe80:0:0:0:5655:7505:1178:ff93","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:03AM GMT+0200)","22 Apr 2026 08:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372192071","","PCB24209.sanef.groupe","10.99.31.2","fe80:0:0:0:cbc7:6b0d:5a79:1e7b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:50PM GMT+0200)","22 Apr 2026 09:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372396935","","PCV21142.sanef-int.adds","10.210.37.40","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:33AM GMT+0200)","22 Apr 2026 07:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372434228","","PCB24185.sanef.groupe","10.4.31.90","fe80:0:0:0:7439:61bc:56fe:a771","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:09PM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372445056","","PBM22807.sanef-int.adds","10.5.50.50","fe80:0:0:0:f913:3634:1a68:5aee","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:30PM GMT+0200)","22 Apr 2026 10:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372447411","","vpgesaquo2.sanef.groupe","10.100.16.8","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4648","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:20AM GMT+0200)","22 Apr 2026 06:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"372472457","","MTO22784.sanef.groupe","10.105.30.16","fe80:0:0:0:b5c5:4e17:2093:47b8","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 5039","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:30PM GMT+0200)","22 Apr 2026 07:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372477256","","PCB24217.sanef.groupe","10.202.31.43","fe80:0:0:0:b239:487:3bc5:731a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (10 Apr 2026 07:56AM GMT+0200)","10 Apr 2026 12:14PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"372479786","","PBM21153.sanef-int.adds","10.5.50.51","fe80:0:0:0:f069:7ff9:ffdd:1249","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (16 Apr 2026 10:01AM GMT+0200)","16 Apr 2026 11:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372503675","","PBM22779.sanef-int.adds","10.12.50.50","fe80:0:0:0:213b:f43:a530:3209","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:55PM GMT+0200)","22 Apr 2026 07:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372634633","","GTC18236","10.100.210.20","","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","VM Manifest Downloaded (25 Mar 2026 09:51AM GMT+0200)","25 Mar 2026 11:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"372648273","","vpsamaext1.sanef-int.adds","192.168.10.11","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4297","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:45PM GMT+0200)","22 Apr 2026 09:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,OS-WIN-SRV DYN]" +"372711388","","PCB24347.sanef.groupe","10.255.3.194","fe80:0:0:0:f6b9:62e3:b908:2f95","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:24PM GMT+0200)","22 Apr 2026 04:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372733189","","PCB23618.sanef.groupe","10.207.31.4","fe80:0:0:0:ea6c:ab89:7eca:4db8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:23AM GMT+0200)","22 Apr 2026 07:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372912931","","PCB18747.sanef.groupe","192.168.1.155","fe80:0:0:0:d1c0:3172:7246:98d1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (03 Apr 2026 02:13AM GMT+0200)","03 Apr 2026 03:07PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372939353","","PCB22840.sanef.groupe","10.154.31.6","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:18PM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372963503","","PSX18558.sanef-int.adds","10.100.40.37","fe80:0:0:0:748a:3e83:ed2c:c889","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:57AM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"372999308","","vpodabquo1.sanef.groupe","10.100.16.22","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:49AM GMT+0200)","22 Apr 2026 07:23AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,ORACLE,OS-LIN-SRV DYN]" +"373009533","","PCB24250.sanef.groupe","10.8.31.0","fe80:0:0:0:8419:1ec7:2114:6748","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 06:51AM GMT+0200)","17 Apr 2026 12:18PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373028956","","PSX18565.sanef-int.adds","10.100.40.41","fe80:0:0:0:cc6f:56d9:a52:92b2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:50PM GMT+0200)","22 Apr 2026 08:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373161807","","PCB24237.sanef.groupe","10.12.31.17","fe80:0:0:0:d3df:9e6:ad43:48e9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:18AM GMT+0200)","22 Apr 2026 07:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373167808","","PCB17895.sanef.groupe","10.255.2.224","2a02:8428:15a2:4101:e423:9056:385e:2f2a","Microsoft Windows 11 Professionnel 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:15AM GMT+0200)","21 Apr 2026 10:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373211951","","vpameasxt3.sanef.groupe","10.41.41.62","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:48PM GMT+0200)","22 Apr 2026 06:28AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sextan,OS-LIN-SRV DYN]" +"373212739","","vpameasxt2.sanef.groupe","10.41.41.61","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:37PM GMT+0200)","22 Apr 2026 06:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sextan,OS-LIN-SRV DYN]" +"373212905","","vpameasxt1.sanef.groupe","10.41.41.60","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:18AM GMT+0200)","22 Apr 2026 06:54AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sextan,OS-LIN-SRV DYN]" +"373213100","","PCB24164.sanef.groupe","10.152.31.34","fe80:0:0:0:df3f:db63:d249:f7b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (14 Apr 2026 10:34AM GMT+0200)","14 Apr 2026 02:55PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373217282","","vpameasxt4.sanef.groupe","10.41.41.63","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:57PM GMT+0200)","22 Apr 2026 06:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sextan,OS-LIN-SRV DYN]" +"373541986","","PCB23676.sanef.groupe","10.219.30.12","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:54PM GMT+0200)","22 Apr 2026 09:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373758364","","PCB24195.sanef.groupe","10.8.31.2","fe80:0:0:0:9fc9:8be8:6439:8177","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:50AM GMT+0200)","22 Apr 2026 09:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373789062","","PSX18689.sanef-int.adds","10.12.40.31","fe80:0:0:0:c884:1da9:aa6b:14cd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:48AM GMT+0200)","22 Apr 2026 10:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373790472","","PCB24135.sanef.groupe","10.12.31.23","fe80:0:0:0:b751:e43b:d4e3:63d2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 07:27AM GMT+0200)","17 Apr 2026 12:26PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373790985","","PSX18693.sanef-int.adds","10.12.40.30","fe80:0:0:0:720d:bb61:a48f:f7aa","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:51AM GMT+0200)","22 Apr 2026 07:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373797096","","MacBook-Pro.sanef.groupe","192.168.1.115","0:0:0:0:0:0:0:1","macOS 26.3.1 (a)","5.3.0.31","Manifest Downloaded (21 Apr 2026 12:54PM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Default Profile","","PM,SCA,VM ","[Cloud Agent]" +"373860351","","PCB15567.sanef.groupe","10.155.30.10","fe80:0:0:0:17dd:780:2105:3cb9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 05:24AM GMT+0200)","17 Apr 2026 01:39PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373865442","","PCB24098.sanef.groupe","10.205.0.217","fe80:0:0:0:511f:f694:934f:23e8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7171","6.4.0.397","Manifest Downloaded (08 Apr 2026 10:43AM GMT+0200)","08 Apr 2026 10:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373865559","","PSX18700.sanef-int.adds","10.12.40.33","fe80:0:0:0:fa6:d9b9:7af8:e1f6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:58PM GMT+0200)","22 Apr 2026 07:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373866362","","PSX18688.sanef-int.adds","10.12.40.32","fe80:0:0:0:843a:cce4:f99d:26e8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:40AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373868890","","VMMVSCC2.sanef-int.adds","10.41.7.251","fe80:0:0:0:eb2a:a125:43aa:b673","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:31AM GMT+0200)","22 Apr 2026 09:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373882203","","PCB17077.sanef.groupe","10.100.39.61","fe80:0:0:0:cdc6:eee9:bf88:30f3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:30PM GMT+0200)","22 Apr 2026 06:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"373889164","","PCV18692.sanef-int.adds","10.100.7.60","fe80:0:0:0:5096:1047:17c8:3b9f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7171","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:52AM GMT+0200)","22 Apr 2026 06:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374069723","","PCB22276.sanef.groupe","10.200.31.91","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (22 Mar 2026 08:08AM GMT+0200)","22 Mar 2026 09:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374101557","","vmdtrac15.recette.adds","10.45.17.17","fe80:0:0:0:e63b:bd73:6c2d:9ad5","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:34AM GMT+0200)","22 Apr 2026 07:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"374115560","","PCB21295.sanef.groupe","10.1.31.1","fe80:0:0:0:4f40:3b19:c479:3078","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:32AM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374116985","","SVP22357.sanef-int.adds","10.252.12.249","fe80:0:0:0:65d:c760:272b:6d80","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:41AM GMT+0200)","22 Apr 2026 07:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374169822","","PCV18544.sanef-int.adds","10.5.7.15","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:45PM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374170362","","PCV21625.sanef-int.adds","10.5.7.11","fe80:0:0:0:4c44:a065:c3f1:2645","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:42PM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374186576","","PCV18557.sanef-int.adds","10.5.7.18","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:38AM GMT+0200)","22 Apr 2026 08:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374190918","","PCV18543.sanef-int.adds","10.5.7.17","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:08AM GMT+0200)","22 Apr 2026 09:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374356809","","PCB16337.sanef.groupe","10.200.31.75","fe80:0:0:0:46f1:f589:1c6c:17f4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:04AM GMT+0200)","22 Apr 2026 10:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374402796","","PCB18077.sanef.groupe","10.200.31.52","fe80:0:0:0:4978:9572:53e8:780","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:06AM GMT+0200)","21 Apr 2026 10:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374403908","","PCB21196.sanef.groupe","10.208.31.11","fe80:0:0:0:fa86:1f6a:7a09:1b82","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Inventory Scan Complete (30 Mar 2026 11:48AM GMT+0200)","30 Mar 2026 11:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374439355","","SMI18193.sanef.groupe","10.100.40.222","","Microsoft Windows 10 Enterprise LTSC 10.0.17763 64-bit N/A Build 17763 UBR 3887","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:24PM GMT+0200)","22 Apr 2026 10:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"374458503","","PCB22718.sanef.groupe","10.208.31.22","fe80:0:0:0:0:705b:a009:6482","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:13AM GMT+0200)","22 Apr 2026 09:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374498072","","PCB24348.sanef.groupe","10.152.31.33","fe80:0:0:0:e2cd:4c95:4eb6:8e0b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:11AM GMT+0200)","22 Apr 2026 09:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374686464","","PCB22710.sanef.groupe","192.168.1.57","fe80:0:0:0:c7d9:c815:e353:5770","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:25AM GMT+0200)","17 Apr 2026 01:17PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374692768","","PCB22506.sanef.groupe","10.208.31.13","fe80:0:0:0:88ea:5e7a:1ebe:12b8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:40AM GMT+0200)","22 Apr 2026 09:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374708992","","PCV18564.sanef-int.adds","10.5.7.16","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:57PM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374742401","","DAI22853.sanef-int.adds","10.100.70.15","fe80:0:0:0:ecc7:31ff:2c14:e518","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:40AM GMT+0200)","22 Apr 2026 07:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374942542","","PCV22837.sanef-int.adds","10.5.7.22","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (20 Apr 2026 12:36PM GMT+0200)","20 Apr 2026 12:36PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"374966006","","PCB22466.sanef.groupe","10.255.4.234","fe80:0:0:0:7098:a41b:f6b1:decd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 08:45AM GMT+0200)","21 Apr 2026 05:40PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"375477015","","PCB23520.sanef.groupe","10.202.31.6","fe80:0:0:0:7ac9:41d3:b569:aa68","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:30AM GMT+0200)","22 Apr 2026 09:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"375550014","","PCB21505.sanef.groupe","10.5.31.5","fe80:0:0:0:a5cc:9e72:248a:d3ca","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:59PM GMT+0200)","22 Apr 2026 09:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"375600264","","DAI20967.sanef-int.adds","10.100.70.13","fe80:0:0:0:9f96:a84f:534:29a1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:00AM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"375660754","","PAD17110.sanef.groupe","10.255.2.172","fe80:0:0:0:46d9:15e9:9c20:5d17","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (15 Apr 2026 03:06PM GMT+0200)","15 Apr 2026 03:06PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376076712","","PCB17985.sanef.groupe","10.200.30.16","fe80:0:0:0:83b8:6d3a:152:60fc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:44AM GMT+0200)","22 Apr 2026 09:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376096355","","PCB18263.sanef.groupe","10.255.4.147","fe80:0:0:0:3878:5de6:a395:a669","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:35PM GMT+0200)","22 Apr 2026 07:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376109812","","PCB16043.sanef.groupe","10.200.31.87","fe80:0:0:0:f2a4:7fae:f2b8:66b1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:38AM GMT+0200)","22 Apr 2026 07:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376111395","","PCB17984.sanef.groupe","10.200.31.41","fe80:0:0:0:abc0:3bc1:fdb3:c018","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:14PM GMT+0200)","22 Apr 2026 10:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376111505","","PCB18012.sanef.groupe","10.200.31.20","fe80:0:0:0:51ce:2171:9ca2:58f0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:38AM GMT+0200)","22 Apr 2026 08:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376166689","","PCB18006.sanef.groupe","10.200.31.32","fe80:0:0:0:22d2:eaaa:b09d:286a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:10AM GMT+0200)","22 Apr 2026 09:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376175090","","PCB18239.sanef.groupe","10.200.31.12","fe80:0:0:0:97e4:6cd3:985:d699","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:47AM GMT+0200)","22 Apr 2026 07:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376333333","","PCB24092.sanef.groupe","10.205.0.44","2a01:e0a:14f:7a40:3667:2430:5ae6:1b42","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:09AM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376341349","","vptrabmut2.sanef.groupe","10.41.40.220","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:30AM GMT+0200)","22 Apr 2026 07:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,ORACLE]" +"376359111","","vptrabmut4.sanef.groupe","10.41.40.221","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:32PM GMT+0200)","22 Apr 2026 06:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,BDD,ORACLE,MID-APACHE-TOMCAT DYN]" +"376415144","","vipeaarcv1.sanef.groupe","10.41.29.40","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:54PM GMT+0200)","22 Apr 2026 09:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,log4j,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"376415237","","vpcybapsp1.sanef.groupe","10.44.1.74","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:23AM GMT+0200)","22 Apr 2026 06:58AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,CyberArk,OS-LIN-SRV DYN]" +"376422961","","vpcybapsp2.sanef.groupe","10.44.1.75","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:11PM GMT+0200)","22 Apr 2026 05:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,CyberArk,OS-LIN-SRV DYN]" +"376610054","","PCV21580.sanef-int.adds","10.12.7.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:51AM GMT+0200)","22 Apr 2026 08:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376611618","","PBM22800.sanef-int.adds","10.12.50.51","fe80:0:0:0:d263:e118:7022:a443","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:15AM GMT+0200)","22 Apr 2026 09:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376614015","","PCV22826.sanef-int.adds","10.12.7.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:35AM GMT+0200)","22 Apr 2026 06:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376636329","","PCB24073.sanef.groupe","10.255.4.155","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","Inventory Scan Complete (16 Apr 2026 01:54PM GMT+0200)","16 Apr 2026 03:31PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376636656","","PCB18260.sanef.groupe","10.200.30.12","fe80:0:0:0:aedb:7b3:d1fc:8b5c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:04AM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376638224","","PCB18270.sanef.groupe","10.255.3.203","fe80:0:0:0:11c8:d4b6:bc71:eb6d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:43AM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376646340","","PCV21571.sanef-int.adds","10.12.7.22","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:29AM GMT+0200)","22 Apr 2026 10:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376647924","","PCV21553.sanef-int.adds","10.12.7.21","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:30AM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376650173","","PCV18678.sanef-int.adds","10.12.7.18","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:21PM GMT+0200)","22 Apr 2026 08:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"376693686","","PCB20683.sanef.groupe","10.205.0.40","fe80:0:0:0:7606:80f2:2d10:fd47","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:30AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377179264","","vpresardp1.sanef-int.adds","10.44.7.67","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4171","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:38AM GMT+0200)","22 Apr 2026 07:09AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"377179863","","PCB17986.sanef.groupe","10.200.31.1","fe80:0:0:0:8513:e093:f3a2:a86b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (20 Mar 2026 11:19AM GMT+0200)","20 Mar 2026 12:18PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377186426","","PCB18243.sanef.groupe","10.200.30.13","fe80:0:0:0:52da:ac97:ef99:285d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:17PM GMT+0200)","22 Apr 2026 06:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377213567","","PCB16037.sanef.groupe","10.200.31.27","fe80:0:0:0:25f5:36b8:d646:e737","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:42AM GMT+0200)","21 Apr 2026 08:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377243668","","PCB16077.sanef.groupe","10.200.31.85","fe80:0:0:0:f1d:9674:c799:3487","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","VM Manifest Downloaded (04 Mar 2026 01:10PM GMT+0200)","19 Mar 2026 01:36PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377360245","","PCB24335.sanef.groupe","10.152.31.45","fe80:0:0:0:503e:9eef:2c56:d1b8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:03AM GMT+0200)","22 Apr 2026 08:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"377386658","","PCV21074.sanef-int.adds","10.106.7.18","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:42AM GMT+0200)","22 Apr 2026 10:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377391132","","PCB24233.sanef.groupe","10.152.30.13","fe80:0:0:0:9a9:74bd:abf4:27dd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:29AM GMT+0200)","22 Apr 2026 08:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"377394622","","vmdpeag02.recette.adds","10.45.17.196","fe80:0:0:0:3fb6:15f5:323a:c5e1","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:21AM GMT+0200)","22 Apr 2026 05:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-POS DYN,BDD-ELA DYN]" +"377408736","","PCB24349.sanef.groupe","10.100.39.13","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7171","6.4.1.22","Inventory Scan Complete (20 Apr 2026 11:56PM GMT+0200)","20 Apr 2026 11:56PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377410288","","vmddops03.recette.adds","10.45.17.69","fe80:0:0:0:62fa:e691:416e:f804","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:46PM GMT+0200)","22 Apr 2026 09:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"377467174","","PCV21546.sanef-int.adds","10.152.7.22","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","VM Manifest Downloaded (31 Mar 2026 09:22PM GMT+0200)","01 Apr 2026 11:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377507123","","PCB24046.sanef.groupe","10.149.31.1","fe80:0:0:0:8587:1dc7:bc69:b170","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:40AM GMT+0200)","22 Apr 2026 09:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377517554","","PCB24218.sanef.groupe","10.100.39.94","fe80:0:0:0:259:2158:e3ac:41a9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:11AM GMT+0200)","22 Apr 2026 09:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377672978","","PCB24189.sanef.groupe","10.152.31.12","fe80:0:0:0:bd04:b772:fc9a:dec4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:20AM GMT+0200)","22 Apr 2026 08:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"377683971","","PCV21615.sanef-int.adds","10.197.12.15","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 06:50PM GMT+0200)","22 Apr 2026 08:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377717881","","vdpatbsip1.sanef-rec.fr","10.45.9.130","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:55PM GMT+0200)","22 Apr 2026 09:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN]" +"377730248","","PCV21152.sanef-int.adds","10.12.7.11","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:32AM GMT+0200)","22 Apr 2026 09:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377731711","","PCB18264.sanef.groupe","10.105.31.11","fe80:0:0:0:fb5b:a8f2:ebe6:d223","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 12:13PM GMT+0200)","17 Apr 2026 01:03PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377741241","","PCV21507.sanef-int.adds","10.12.7.12","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:28AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377749981","","vrdsiahax2.sanef-rec.fr","192.168.19.197","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:19PM GMT+0200)","22 Apr 2026 05:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,DMZ,OS-LIN-SRV DYN,MID-NGINX DYN]" +"377750629","","PCV20821.sanef-int.adds","10.12.7.15","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:46AM GMT+0200)","22 Apr 2026 08:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377757145","","vrdsiahax1.sanef-rec.fr","192.168.19.196","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:45PM GMT+0200)","22 Apr 2026 10:35AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,DMZ,OS-LIN-SRV DYN,MID-NGINX DYN]" +"377767567","","PCV20828.sanef-int.adds","10.12.7.17","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:09AM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377773483","","PCB25887.sanef.groupe","10.255.2.7","fe80:0:0:0:7182:b7ba:28d6:43ec","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:02AM GMT+0200)","21 Apr 2026 11:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377784871","","PCB25946.sanef.groupe","10.255.1.9","fe80:0:0:0:759f:c186:b303:8869","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:12AM GMT+0200)","22 Apr 2026 10:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"377801287","","PCV20869.sanef-int.adds","10.12.7.16","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:32AM GMT+0200)","22 Apr 2026 07:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377802815","","PCB25888.sanef.groupe","10.252.42.156","fe80:0:0:0:fb37:95e3:4bb0:6c11","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:57AM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"377804143","","PCV21261.sanef-int.adds","10.108.7.17","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:36AM GMT+0200)","22 Apr 2026 09:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377806339","","PCB25886.sanef.groupe","10.255.1.209","fe80:0:0:0:e623:bf71:6ac7:d143","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 11:00AM GMT+0200)","17 Apr 2026 01:05PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"377808411","","vpdsiahap2.sanef.groupe","192.168.19.133","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:21PM GMT+0200)","22 Apr 2026 05:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"377809009","","vpdsiangx1.sanef.groupe","192.168.19.160","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:41PM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,MID-NGINX DYN]" +"377809988","","vpdsiangx2.sanef.groupe","192.168.19.161","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:45PM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,MID-NGINX DYN]" +"377822105","","vpdsiahap1.sanef.groupe","192.168.19.132","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:15PM GMT+0200)","22 Apr 2026 05:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"377919355","","VPAIIAPVD2.sanef.groupe","10.41.11.16","fe80:0:0:0:70c9:19a4:b4a:d1fd","Windows Microsoft Windows 10 Enterprise 10.0.17763 Build 17763","6.0.0.13","Provisioned (20 Nov 2025 04:53AM GMT+0200)","20 Nov 2025 04:53AM GMT+0200","","","PM,SCA,VM ","[Cloud Agent]" +"378000978","","PCB22334.sanef.groupe","10.200.31.5","fe80:0:0:0:5e5d:41b:35a4:4d7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:33AM GMT+0200)","22 Apr 2026 06:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378007417","","PCB21273.sanef.groupe","10.205.0.37","fe80:0:0:0:ecc8:84d0:deaf:72e5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:27AM GMT+0200)","22 Apr 2026 09:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378015144","","vmdispt01.recette.adds","10.45.17.62","fe80:0:0:0:c36e:da85:18de:79b8","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 7462","6.3.0.81","Inventory Scan Complete (29 Dec 2025 02:56PM GMT+0200)","29 Dec 2025 02:56PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378018869","","PCB23702.sanef.groupe","10.255.1.156","fe80:0:0:0:e83d:5f73:1820:7499","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:59AM GMT+0200)","22 Apr 2026 09:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378020521","","PCV21528.sanef-int.adds","10.12.7.25","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:36AM GMT+0200)","22 Apr 2026 07:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378044222","","PCV20826.sanef-int.adds","10.209.7.15","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:44PM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378049638","","vpdsiahap4.sanef.groupe","192.168.19.145","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:19PM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"378053755","","PCV21549.sanef-int.adds","10.210.7.43","fe80:0:0:0:dafb:108e:4e6b:c4c0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:26PM GMT+0200)","22 Apr 2026 06:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378054296","","PCV21555.sanef-int.adds","10.209.7.10","fe80:0:0:0:7981:48bb:1843:d4d5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:29PM GMT+0200)","22 Apr 2026 10:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378054380","","PCB22297.sanef.groupe","10.200.31.58","fe80:0:0:0:adb8:c39e:fdb5:6cb3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:18AM GMT+0200)","22 Apr 2026 08:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378055027","","vpdsiangx4.sanef.groupe","192.168.19.163","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:44PM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"378055243","","vpdsiahap3.sanef.groupe","192.168.19.144","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:02PM GMT+0200)","22 Apr 2026 10:47AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"378056718","","PCV21556.sanef-int.adds","10.209.7.11","fe80:0:0:0:de2:14e8:66c6:54df","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:35PM GMT+0200)","22 Apr 2026 06:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378058864","","PCB22288.sanef.groupe","10.200.31.50","fe80:0:0:0:ef31:9825:5c0c:6d6e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:20AM GMT+0200)","22 Apr 2026 09:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378059947","","vpdsiangx3.sanef.groupe","192.168.19.162","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:10PM GMT+0200)","22 Apr 2026 05:44AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"378066936","","vrlogakib1.sanef-rec.fr","10.45.15.163","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:13PM GMT+0200)","22 Apr 2026 05:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,MID-NGINX DYN]" +"378067606","","PCV22450.sanef-int.adds","10.217.36.18","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:07AM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378080679","","PCV18674.sanef-int.adds","10.209.7.16","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:52PM GMT+0200)","22 Apr 2026 09:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378081562","","PCV21568.sanef-int.adds","10.210.7.18","fe80:0:0:0:54cb:9aa8:95fb:108","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:35PM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378083322","","PCB17978.sanef.groupe","10.199.31.1","fe80:0:0:0:3677:bfb5:8171:eac5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:47PM GMT+0200)","22 Apr 2026 09:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378283970","","PCV20962.sanef-int.adds","10.210.7.17","fe80:0:0:0:1dd0:6d30:5a8a:72cd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:46AM GMT+0200)","22 Apr 2026 10:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378284988","","PBM20937.sanef-int.adds","10.200.50.51","fe80:0:0:0:398a:cb61:1ef3:1c43","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:00PM GMT+0200)","22 Apr 2026 05:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"378308167","","PSX18702.sanef-int.adds","10.100.40.30","fe80:0:0:0:ce1e:ec87:950e:f231","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:25AM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378316331","","PSX18697.sanef-int.adds","10.100.40.42","fe80:0:0:0:e129:8508:f404:29a2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:56AM GMT+0200)","22 Apr 2026 08:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378318758","","PSX18694.sanef-int.adds","10.100.40.43","fe80:0:0:0:e6b9:9fe0:92ff:70fe","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:37AM GMT+0200)","22 Apr 2026 09:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378358100","","PSX18703.sanef-int.adds","10.200.40.32","fe80:0:0:0:4882:30b1:5d37:f5c1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:10PM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378358691","","PCV21536.sanef-int.adds","10.210.7.22","fe80:0:0:0:4434:9686:cae8:3c55","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:56PM GMT+0200)","22 Apr 2026 05:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378363780","","PSX18699.sanef-int.adds","10.200.40.30","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:46AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378846649","","PCB24254.sanef.groupe","10.255.2.195","fe80:0:0:0:d5a7:432d:55ba:e12d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (08 Apr 2026 08:56AM GMT+0200)","08 Apr 2026 12:43PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"378865939","","PCB25827.sanef.groupe","10.205.0.123","fe80:0:0:0:bfa3:3b7:9266:fd35","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:05AM GMT+0200)","22 Apr 2026 10:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378874409","","vrpctbams2.recette.adds","10.45.13.197","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8389","6.3.0.81","VM Manifest Downloaded (25 Feb 2026 12:38AM GMT+0200)","25 Feb 2026 03:33PM GMT+0200","Default Profile","","PM,SCA,VM ","[Cloud Agent,Recette,OS-WIN-SRV DYN,BDD-POS DYN]" +"378910480","","PBM21508.sanef-int.adds","10.152.50.10","fe80:0:0:0:8606:b6f5:e89d:1247","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:26AM GMT+0200)","22 Apr 2026 06:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378961878","","PSX18686.sanef-int.adds","10.200.40.31","fe80:0:0:0:b13a:11ff:6ef0:8f16","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:37PM GMT+0200)","22 Apr 2026 07:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"378966700","","PSX18690.sanef-int.adds","10.100.40.32","fe80:0:0:0:fa3c:62b4:ed92:408","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:11AM GMT+0200)","22 Apr 2026 10:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379088425","","PCB25877.sanef.groupe","10.252.42.143","fe80:0:0:0:b275:5ad:2f4:ff06","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:13AM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379103170","","PCB25885.sanef.groupe","10.252.42.136","fe80:0:0:0:c863:3679:47d9:ba29","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:54AM GMT+0200)","22 Apr 2026 09:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379117183","","PSX18691.sanef-int.adds","10.100.40.36","fe80:0:0:0:99cc:272:ed64:17b6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:05PM GMT+0200)","22 Apr 2026 10:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379119003","","PSX18695.sanef-int.adds","10.100.40.34","fe80:0:0:0:a629:32c3:44d9:973d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:00PM GMT+0200)","22 Apr 2026 09:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379334198","","PCB20602.sanef.groupe","10.200.31.80","fe80:0:0:0:5de4:5e62:e7c4:d587","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 09:52AM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379351234","","PCV22438.sanef-int.adds","10.210.67.40","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:47AM GMT+0200)","22 Apr 2026 09:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379351248","","DAI18685.sanef-int.adds","10.100.70.31","fe80:0:0:0:e796:db5c:833b:e5ad","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","VM Manifest Downloaded (25 Mar 2026 12:33AM GMT+0200)","25 Mar 2026 10:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379376176","","srdsiatmp1.sanef.groupe","10.43.253.20","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (03 Feb 2026 04:37PM GMT+0200)","03 Feb 2026 04:37PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"379466112","","PCB24134.sanef.groupe","10.255.4.191","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (17 Apr 2026 06:59AM GMT+0200)","17 Apr 2026 11:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379514975","","vpdecasas5","10.30.11.153","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:38AM GMT+0200)","22 Apr 2026 07:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Finances Comptabilité / Consolidation,VRF_INCONNUE,Obsolete,SAS,DSI,OS-LIN-SRV DYN,BDD-POS DYN]" +"379524208","","vpcybapta1.sanef.groupe","10.44.1.132","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:02AM GMT+0200)","22 Apr 2026 06:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"379559158","","spbckamag1.sanef.groupe","10.42.16.73","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:36PM GMT+0200)","22 Apr 2026 06:15AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"379570961","","PCV18549.sanef-int.adds","10.209.7.17","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:55AM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379577179","","MTR-2CD4804","10.4.32.200","fe80:0:0:0:d856:bf8a:4de6:fd34","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:11PM GMT+0200)","22 Apr 2026 07:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379713036","","PCB22286.sanef.groupe","10.252.42.130","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:30AM GMT+0200)","22 Apr 2026 09:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379735235","","PCB17655.sanef.groupe","10.205.0.114","fe80:0:0:0:2be2:665d:633a:cb29","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:09AM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379757077","","PCB22730.sanef.groupe","10.107.31.27","fe80:0:0:0:b6ae:76dc:9bf8:388c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:14PM GMT+0200)","22 Apr 2026 05:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379762503","","spbckamag4.sanef.groupe","10.42.16.76","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:16PM GMT+0200)","22 Apr 2026 09:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"379762603","","PCB17783.sanef.groupe","10.255.2.142","fe80:0:0:0:8221:2580:c69c:e20d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 07:59AM GMT+0200)","17 Apr 2026 12:58PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379779221","","spbckamag3.sanef.groupe","10.42.16.74","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:52PM GMT+0200)","22 Apr 2026 05:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"379837939","","PCB22722.sanef.groupe","10.255.2.242","fe80:0:0:0:157d:cd85:ad58:c187","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:03AM GMT+0200)","21 Apr 2026 11:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379841430","","vtdsiatmp1.sanef.groupe","10.43.253.4","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:49PM GMT+0200)","22 Apr 2026 08:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"379846586","","spbckamag2.sanef.groupe","10.42.16.75","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:37AM GMT+0200)","22 Apr 2026 09:37AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"379860536","","DAI22945.sanef-int.adds","10.155.70.10","fe80:0:0:0:7720:263e:fc6c:598e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:29AM GMT+0200)","22 Apr 2026 05:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"379875748","","PCV22875.sanef-int.adds","10.137.3.15","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","VM Manifest Downloaded (20 Apr 2026 09:12AM GMT+0200)","20 Apr 2026 09:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380043837","","DAI22947.sanef-int.adds","10.207.70.10","fe80:0:0:0:9d1:cda:a8bb:98ed","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:29PM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380072288","","PCB23573.sanef.groupe","10.220.31.11","fe80:0:0:0:b8b3:3969:a6e7:6fa","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:20AM GMT+0200)","22 Apr 2026 10:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380179678","","SVP22703.sanef-int.adds","10.192.18.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.0.397","Manifest Downloaded (03 Apr 2026 09:36AM GMT+0200)","03 Apr 2026 09:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380530583","","PCB22764.sanef.groupe","10.219.31.3","fe80:0:0:0:82bc:5efe:2e29:fa5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:12AM GMT+0200)","22 Apr 2026 06:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380544038","","PCB16096.sanef.groupe","10.100.39.158","fe80:0:0:0:9ce1:5c30:66a5:a04","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:33AM GMT+0200)","22 Apr 2026 10:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380765547","","PCB22273.sanef.groupe","10.252.42.133","fe80:0:0:0:84c6:820b:515b:d968","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:00AM GMT+0200)","22 Apr 2026 06:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380784580","","PCB18230.sanef.groupe","10.100.39.21","fe80:0:0:0:e8c8:e8bc:e1db:e059","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:57PM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380788141","","PCB22344.sanef.groupe","10.252.42.131","fe80:0:0:0:73a5:f886:ac38:c918","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:14PM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380798367","","PCB17968.sanef.groupe","10.100.39.157","fe80:0:0:0:d5b2:ecf0:6009:ca16","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:21PM GMT+0200)","22 Apr 2026 10:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380799479","","PCV21522.sanef-int.adds","10.152.7.20","fe80:0:0:0:ecc2:6fa5:6088:28d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:43AM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380802442","","PCV21519.sanef-int.adds","10.152.7.21","fe80:0:0:0:6601:3b5c:de30:591f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:11AM GMT+0200)","22 Apr 2026 06:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380802560","","PCB17971.sanef.groupe","10.100.39.14","fe80:0:0:0:a00c:a6bd:ec46:943a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:08PM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"380802646","","spbckamag6.sanef.groupe","10.42.16.102","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:44AM GMT+0200)","22 Apr 2026 07:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"380803972","","spbckamag5.sanef.groupe","10.42.16.100","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:42AM GMT+0200)","22 Apr 2026 07:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"380815733","","PCB17983.sanef.groupe","10.100.39.164","fe80:0:0:0:8505:20d:7c5c:3ca9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:06PM GMT+0200)","22 Apr 2026 06:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381242008","","PCB18231.sanef.groupe","10.100.39.161","fe80:0:0:0:1078:29c1:c167:3c72","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:19PM GMT+0200)","22 Apr 2026 09:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381245853","","PCB22342.sanef.groupe","10.252.42.139","fe80:0:0:0:6cf0:356e:ad0b:ef3c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:04PM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381246644","","PCB23590.sanef.groupe","10.205.0.108","fe80:0:0:0:d026:1200:3c61:cf6d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (07 Apr 2026 05:36PM GMT+0200)","07 Apr 2026 05:40PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381250980","","PCV21530.sanef-int.adds","10.6.69.17","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:51AM GMT+0200)","22 Apr 2026 04:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381251026","","PCV22804.sanef-int.adds","10.11.7.18","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:11AM GMT+0200)","22 Apr 2026 06:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381302025","","PCB22713.sanef.groupe","10.220.31.49","fe80:0:0:0:6b8b:3310:1871:a5e4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 11:57AM GMT+0200)","17 Apr 2026 05:09PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381588691","","PCB22440.sanef.groupe","10.219.31.12","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:55PM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381698913","","spbckamag7.sanef.groupe","10.42.16.101","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 08:54PM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"381711057","","spbckamag8.sanef.groupe","10.42.16.103","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:28PM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"381719252","","VRBURXBAN6.sanef.groupe","10.30.4.6","fe80:0:0:0:9599:3c:62da:289e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:31PM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381720817","","PCB22303.sanef.groupe","10.252.42.142","fe80:0:0:0:7e62:de0c:f4b9:9c22","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","VM Manifest Downloaded (07 Apr 2026 07:05AM GMT+0200)","07 Apr 2026 09:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381851478","","PCV22445.sanef-int.adds","10.9.37.15","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (08 Apr 2026 01:11AM GMT+0200)","08 Apr 2026 07:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381854279","","PCB22280.sanef.groupe","10.252.42.141","fe80:0:0:0:a304:c6e1:53de:3a81","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:57PM GMT+0200)","22 Apr 2026 10:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381903284","","PCB22312.sanef.groupe","10.252.42.13","fe80:0:0:0:9772:a569:95c1:1995","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:14PM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381932693","","PCB25863.sanef.groupe","10.255.4.138","fe80:0:0:0:aff8:85ac:67ed:eac1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:21AM GMT+0200)","22 Apr 2026 08:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381938977","","PCB20739.sanef.groupe","192.168.1.184","fe80:0:0:0:517:b30e:176c:23d6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 06:21PM GMT+0200)","17 Apr 2026 06:21PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"381946188","","PCB22350.sanef.groupe","10.252.42.147","fe80:0:0:0:a2:42b7:dddd:9ce6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:25AM GMT+0200)","22 Apr 2026 07:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382130998","","PCB22305.sanef.groupe","10.252.42.24","fe80:0:0:0:5176:f944:8972:e71f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:53AM GMT+0200)","22 Apr 2026 06:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382151069","","PCB22319.sanef.groupe","10.252.42.19","fe80:0:0:0:687c:5969:b7a8:91e7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:18AM GMT+0200)","22 Apr 2026 07:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382389068","","PCB24222.sanef.groupe","10.200.31.37","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:11PM GMT+0200)","22 Apr 2026 08:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"382409868","","PCB25781.sanef.groupe","10.252.42.132","fe80:0:0:0:c789:5b8b:47dc:c65a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:44AM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"382416400","","PCB25789.sanef.groupe","10.252.42.150","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:15PM GMT+0200)","22 Apr 2026 06:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382416402","","PCB25924.sanef.groupe","10.252.42.14","fe80:0:0:0:b204:d83e:2e0b:cab4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:55AM GMT+0200)","22 Apr 2026 08:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382416623","","PCB25869.sanef.groupe","10.205.0.162","fe80:0:0:0:5d6a:e4b:59fb:6a3f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:33AM GMT+0200)","22 Apr 2026 07:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382416807","","PCB25853.sanef.groupe","10.255.4.189","fe80:0:0:0:57da:fff4:6ad:9544","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:45AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"382417790","","PCB25867.sanef.groupe","10.252.42.129","fe80:0:0:0:66f8:5349:e57d:25b7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:18AM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382417791","","PCB25780.sanef.groupe","10.205.0.31","fe80:0:0:0:f687:539b:3da3:500d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:32AM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"382418907","","PCB25865.sanef.groupe","10.205.0.32","fe80:0:0:0:fc1:82f2:feda:48f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:12AM GMT+0200)","22 Apr 2026 08:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382419017","","PCB25800.sanef.groupe","10.252.42.153","fe80:0:0:0:699d:73a3:a745:e0c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:14AM GMT+0200)","22 Apr 2026 09:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382420751","","PCB25856.sanef.groupe","10.255.2.133","fe80:0:0:0:b155:6a12:102e:f073","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:17AM GMT+0200)","22 Apr 2026 08:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382420952","","PCB25792.sanef.groupe","10.252.42.134","fe80:0:0:0:7b4d:7b15:d511:3363","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:24AM GMT+0200)","22 Apr 2026 08:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382433027","","PCB25793.sanef.groupe","10.252.42.151","fe80:0:0:0:1bea:454a:e274:313e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:21AM GMT+0200)","21 Apr 2026 10:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"382436600","","PCB25815.sanef.groupe","10.255.2.194","fe80:0:0:0:826c:2c03:8abb:a78e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:05AM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"382445576","","PCB25864.sanef.groupe","10.255.2.183","fe80:0:0:0:fd0b:7acc:ba55:a01","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:26AM GMT+0200)","22 Apr 2026 09:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382446975","","PCB25937.sanef.groupe","10.252.42.146","fe80:0:0:0:26d1:212a:e408:ad52","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:40AM GMT+0200)","22 Apr 2026 10:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382447117","","PCB22339.sanef.groupe","10.200.31.70","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:10AM GMT+0200)","22 Apr 2026 06:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382450855","","PCB25912.sanef.groupe","10.252.42.17","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:02AM GMT+0200)","22 Apr 2026 07:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"382479156","","spbckmmag1.sanef.groupe","192.168.109.8","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:08AM GMT+0200)","22 Apr 2026 06:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"382503949","","PCB22291.sanef.groupe","10.252.42.20","fe80:0:0:0:a6ef:51dc:cc61:c434","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:40PM GMT+0200)","22 Apr 2026 10:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382506671","","PCB22323.sanef.groupe","10.252.42.148","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:47PM GMT+0200)","22 Apr 2026 09:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382522823","","PCB25923.sanef.groupe","10.252.42.140","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:16AM GMT+0200)","21 Apr 2026 01:43PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382535369","","vrdsiascr1.sanef-rec.fr","192.168.31.3","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:29AM GMT+0200)","22 Apr 2026 07:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,NextCloud,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"382625299","","PCB23722.sanef.groupe","10.255.3.143","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (10 Apr 2026 08:25AM GMT+0200)","10 Apr 2026 09:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382710695","","vmmvscast1.sanef-int.adds","10.41.7.230","fe80:0:0:0:b2cc:1b1d:71e0:6345","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:42AM GMT+0200)","22 Apr 2026 07:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382721458","","spbckmmag2.sanef.groupe","192.168.109.9","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:22PM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"382728208","","PCB24065.sanef.groupe","10.205.0.94","fe80:0:0:0:b8e9:c0f5:8beb:b5a7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:51AM GMT+0200)","22 Apr 2026 09:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382795127","","PCB25770.sanef.groupe","10.205.0.84","fe80:0:0:0:e779:e05d:f27b:fbaf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:22AM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"382795575","","PCB25814.sanef.groupe","10.255.2.190","fe80:0:0:0:1115:851d:6a6b:99f4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:57AM GMT+0200)","22 Apr 2026 10:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382798622","","PCB22283.sanef.groupe","10.252.42.11","fe80:0:0:0:9b94:6690:6fd2:d263","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:54AM GMT+0200)","22 Apr 2026 10:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"382990199","","vrpeabrac1.sanef-rec.fr","10.45.15.36","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:15PM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN]" +"382992167","","vrpeabrac2.sanef-rec.fr","10.45.15.37","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:28PM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN]" +"383012443","","PCB18251.sanef.groupe","10.106.31.13","fe80:0:0:0:8db1:f233:4c99:5ca","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 02:48AM GMT+0200)","17 Apr 2026 08:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383034526","","PCB24241.sanef.groupe","10.101.243.45","fe80:0:0:0:6d08:79c0:33ef:fd2a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (20 Mar 2026 10:32AM GMT+0200)","20 Mar 2026 11:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383183107","","PCB25895.sanef.groupe","10.255.4.175","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:31AM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383235630","","PCB18011.sanef.groupe","10.200.31.17","fe80:0:0:0:684f:2806:e831:e5c6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:46AM GMT+0200)","22 Apr 2026 10:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383250509","","PCB22349.sanef.groupe","10.252.42.149","fe80:0:0:0:aee2:28f2:6683:60b1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:45PM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383287965","","PCV21149.sanef-int.adds","10.1.6.28","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:55PM GMT+0200)","22 Apr 2026 06:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383422407","","PCV22822.sanef-int.adds","10.27.1.20","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:16AM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383452162","","vibotakpi1.sanef.groupe","10.41.23.146","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:21PM GMT+0200)","22 Apr 2026 09:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN]" +"383456003","","vpbotakpi1.sanef.groupe","10.41.23.30","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:32PM GMT+0200)","22 Apr 2026 09:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN]" +"383464215","","PCV21512.sanef-int.adds","10.1.6.16","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:05PM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383465193","","PCB22320.sanef.groupe","10.252.42.29","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:36AM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383506473","","PCB17787.sanef.groupe","10.100.39.41","fe80:0:0:0:ff2a:253e:bd08:6cef","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:26PM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383507042","","vpgeobody2.sanef.groupe","10.41.40.172","fe80:0:0:0:bcbe:49f6:145f:1cbf","Microsoft Windows Server 2012 R2 Standard 6.3.9600 64 bits N/A Build 9600 UBR 19023","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:36PM GMT+0200)","22 Apr 2026 08:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Géolocalisation,OS-WIN-SRV DYN,BDD-POS DYN]" +"383528725","","vptrabtpv1.sanef.groupe","10.41.40.11","fe80:0:0:0:61a8:e208:f63e:36b9","Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8276","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:11AM GMT+0200)","22 Apr 2026 09:55AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN]" +"383937293","","PCB22290.sanef.groupe","10.252.42.25","fe80:0:0:0:9661:71ad:3e9d:8ee6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:11AM GMT+0200)","22 Apr 2026 06:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383948228","","PCB22337.sanef.groupe","10.252.42.26","fe80:0:0:0:b11f:ecce:370b:a4d6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:49AM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383959306","","PCB20685.sanef.groupe","10.202.31.35","fe80:0:0:0:26e:9047:d1ed:dd1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:00AM GMT+0200)","22 Apr 2026 10:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"383961082","","PCB21524.sanef.groupe","10.139.31.0","fe80:0:0:0:4d7:64f6:6f7d:2382","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:31PM GMT+0200)","22 Apr 2026 07:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384021056","","PCV22833.sanef-int.adds","10.1.6.18","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:20PM GMT+0200)","22 Apr 2026 09:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384053776","","PCB21704.sanef.groupe","10.255.2.230","fe80:0:0:0:aa9f:904e:8309:d24","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:03AM GMT+0200)","22 Apr 2026 09:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384204424","","PCB24192.sanef.groupe","10.12.31.30","fe80:0:0:0:979d:3d60:3d73:74ca","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:19AM GMT+0200)","22 Apr 2026 09:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384235884","","PCB22725.sanef.groupe","10.205.0.119","fe80:0:0:0:ff55:6cb3:1423:da41","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 01:14PM GMT+0200)","21 Apr 2026 01:14PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384265495","","VMDGEST06.recette.adds","10.45.17.136","fe80:0:0:0:1cd6:2766:5605:9b43","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:20AM GMT+0200)","22 Apr 2026 07:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384282475","","VMDGEST02.recette.adds","10.45.17.132","fe80:0:0:0:cd3e:1c8c:51a:ee55","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:56PM GMT+0200)","22 Apr 2026 07:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384302525","","PCB23724.sanef.groupe","10.4.31.21","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 06:59AM GMT+0200)","17 Apr 2026 04:04PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384482711","","PCB22279.sanef.groupe","10.252.42.22","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:40AM GMT+0200)","22 Apr 2026 08:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384522351","","vrgrsangx1.sanef-rec.fr","10.45.9.177","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:16AM GMT+0200)","22 Apr 2026 07:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Péage,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"384553215","","PCV21266.sanef-int.adds","10.252.17.40","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Manifest Downloaded (15 Apr 2026 06:02PM GMT+0200)","16 Apr 2026 07:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384581014","","PCB22702.sanef.groupe","10.101.243.136","2a01:cb04:5dc:1f00:a41c:d31e:1d3c:5cd4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 11:29AM GMT+0200)","20 Apr 2026 11:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384732663","","SVP21046.sanef-int.adds","10.106.29.20","fe80:0:0:0:24cc:5050:fe6d:e879","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (17 Apr 2026 10:14AM GMT+0200)","17 Apr 2026 10:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"384764086","","vtpatbsip1.sanef-rec.fr","10.45.9.132","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:52AM GMT+0200)","22 Apr 2026 07:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"384791163","","PCB16089.sanef.groupe","10.100.39.19","fe80:0:0:0:4910:206a:60e:4dcb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:21PM GMT+0200)","22 Apr 2026 10:23AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384808442","","PCB24213.sanef.groupe","10.5.31.15","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:04AM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384812740","","PCB25837.sanef.groupe","10.4.31.67","fe80:0:0:0:78dc:8284:ddb:dc22","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:50AM GMT+0200)","22 Apr 2026 08:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384865532","","PCB17898.sanef.groupe","10.100.39.17","fe80:0:0:0:9259:749e:5f7a:23e1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:37AM GMT+0200)","21 Apr 2026 04:30PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"384866221","","PCB24162.sanef.groupe","10.1.31.8","fe80:0:0:0:4d7b:e2bc:c11c:816d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:55AM GMT+0200)","22 Apr 2026 08:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"385548399","","PCB24208.sanef.groupe","10.4.31.47","fe80:0:0:0:2897:83c7:a7b0:e0ad","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:24AM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"385558302","","PCB24166.sanef.groupe","10.255.4.223","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","VM Manifest Downloaded (10 Apr 2026 02:31PM GMT+0200)","10 Apr 2026 04:21PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"385562639","","PCB23578.sanef.groupe","10.203.31.7","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (15 Apr 2026 12:57PM GMT+0200)","15 Apr 2026 01:55PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"385585248","","SVP22623.sanef-int.adds","10.82.5.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:31PM GMT+0200)","21 Apr 2026 12:31PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"385630145","","PCB17645.sanef.groupe","10.101.243.24","fe80:0:0:0:4500:2464:4d6e:2ffd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:02AM GMT+0200)","22 Apr 2026 09:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"385738268","","PCB18061.sanef.groupe","10.101.243.173","fe80:0:0:0:a922:5ed0:466d:7342","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:21AM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"385761488","","PCB16437.sanef.groupe","192.168.1.52","fe80:0:0:0:f543:df37:5213:7955","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (17 Apr 2026 03:37PM GMT+0200)","17 Apr 2026 04:26PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"385783028","","PCB25803.sanef.groupe","10.255.2.160","fe80:0:0:0:90aa:4656:fa50:e2e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (02 Apr 2026 02:05PM GMT+0200)","02 Apr 2026 02:05PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"385913861","","PCB25931.sanef.groupe","10.252.42.135","fe80:0:0:0:2a7f:3d01:4ca:a7cf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:26PM GMT+0200)","22 Apr 2026 07:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"385999740","","vrlogaagt1.sanef-rec.fr","10.45.15.168","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:26PM GMT+0200)","22 Apr 2026 06:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Logiciels,OS-LIN-SRV DYN]" +"386721821","","PCB16056.sanef.groupe","10.2.30.11","fe80:0:0:0:8a08:2fc8:ef77:7cc2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 08:16PM GMT+0200)","20 Apr 2026 08:16PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"386725450","","PCB16157.sanef.groupe","10.100.39.81","fe80:0:0:0:32b:af7:6b9e:decc","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:05AM GMT+0200)","21 Apr 2026 10:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-POS DYN]" +"386997086","","vmdtrac04.recette.adds","10.45.17.6","fe80:0:0:0:ff7b:5a6c:795:f666","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:59PM GMT+0200)","22 Apr 2026 10:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387000430","","vmdtrac05.recette.adds","10.45.17.7","fe80:0:0:0:3b35:2680:d52f:3e93","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:33PM GMT+0200)","22 Apr 2026 07:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387006557","","vmdispt01.recette.adds","10.45.17.62","fe80:0:0:0:df23:e686:6263:7b6a","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:12PM GMT+0200)","22 Apr 2026 06:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387033350","","vmdtrac06.recette.adds","10.45.17.8","fe80:0:0:0:959c:b5cb:e305:e793","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:20PM GMT+0200)","22 Apr 2026 07:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387115105","","vmdtrac09.recette.adds","10.45.17.11","fe80:0:0:0:fd80:245e:2758:9f76","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:32PM GMT+0200)","22 Apr 2026 10:11AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387117872","","vmdtrac08.recette.adds","10.45.17.10","fe80:0:0:0:4801:3c04:37ed:b08","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:05AM GMT+0200)","22 Apr 2026 10:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387139379","","vmdtrac07.recette.adds","10.45.17.9","fe80:0:0:0:ab5f:a8c7:43dc:f929","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:33PM GMT+0200)","22 Apr 2026 07:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387139793","","vmdtrac12.recette.adds","10.45.17.14","fe80:0:0:0:780d:e6c9:7935:6665","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:59PM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387139802","","vmdtrac11.recette.adds","10.45.17.13","fe80:0:0:0:d794:a632:1a29:e2d1","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:45PM GMT+0200)","22 Apr 2026 06:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387141599","","vmdtrac10.recette.adds","10.45.17.12","fe80:0:0:0:a2a0:c1c0:1627:9e2","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:19PM GMT+0200)","22 Apr 2026 06:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387155302","","vmdtrac13.recette.adds","10.45.17.15","fe80:0:0:0:b111:bf7e:14b6:6bfa","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:31AM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387157481","","vmdgest03.recette.adds","10.45.17.133","fe80:0:0:0:2eb0:d6ab:1b18:6f3f","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:30PM GMT+0200)","22 Apr 2026 07:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387170879","","vmdpeag04.recette.adds","10.45.17.198","fe80:0:0:0:ec86:b8ef:2bd2:bf72","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:16PM GMT+0200)","22 Apr 2026 07:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387174043","","vmdgest04.recette.adds","10.45.17.134","fe80:0:0:0:ec80:edf1:5d79:1177","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:33AM GMT+0200)","22 Apr 2026 07:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387175213","","vmddops02.recette.adds","10.45.17.68","fe80:0:0:0:a7c7:43e:b813:5a99","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:18PM GMT+0200)","22 Apr 2026 08:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387177773","","vmddops01.recette.adds","10.45.17.67","fe80:0:0:0:70f8:8b63:91d3:43ad","Windows Microsoft Windows 11 Enterprise 10.0.26200 Build 26200 UBR 7462","6.3.0.81","Agent Downloaded (31 Dec 2025 03:33PM GMT+0200)","31 Dec 2025 03:50PM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387183197","","vmdpeag05.recette.adds","10.45.17.199","fe80:0:0:0:350a:4dab:ae6c:f928","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:46AM GMT+0200)","22 Apr 2026 08:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387187542","","vmdgest05.recette.adds","10.45.17.135","fe80:0:0:0:82eb:9019:7ac7:4de3","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:01AM GMT+0200)","22 Apr 2026 10:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387189143","","vmdgest01.recette.adds","10.45.17.131","fe80:0:0:0:f839:6638:c52c:3ce6","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:33PM GMT+0200)","22 Apr 2026 08:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387190533","","vmdpeag01.recette.adds","10.45.17.195","fe80:0:0:0:78fa:4563:a9ee:4aa5","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:32AM GMT+0200)","22 Apr 2026 07:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387193123","","vmdtrac14.recette.adds","10.45.17.16","fe80:0:0:0:e691:fe78:141b:944b","Windows Microsoft Windows 11 Enterprise 10.0.26200 Build 26200 UBR 7462","6.3.0.81","Manifest Downloaded (31 Dec 2025 04:37PM GMT+0200)","31 Dec 2025 05:27PM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387195521","","vmdpeag03.recette.adds","10.45.17.197","fe80:0:0:0:862f:d285:9555:17ca","Windows Microsoft Windows 11 Enterprise 10.0.26200 Build 26200 UBR 7462","6.3.0.81","Manifest Downloaded (31 Dec 2025 04:45PM GMT+0200)","31 Dec 2025 05:36PM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387454382","","PCB21205.sanef.groupe","10.220.31.48","2a01:cb06:855:6800:6817:97cd:563:367b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:13AM GMT+0200)","22 Apr 2026 09:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"387494428","","MIO20985.sanef-int.adds","10.100.40.50","fe80:0:0:0:3b1a:924e:f132:b6c6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:30PM GMT+0200)","22 Apr 2026 08:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"388069108","","PCB21126.sanef.groupe","10.205.0.13","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 08:12PM GMT+0200)","21 Apr 2026 08:12PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"388102188","","PCB24240.sanef.groupe","10.255.2.237","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:39AM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"388146163","","PCB22729.sanef.groupe","10.255.4.6","fe80:0:0:0:7ac4:21a6:7e87:c5c9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (20 Apr 2026 12:00PM GMT+0200)","21 Apr 2026 12:09PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"388302870","","PCB22322.sanef.groupe","10.252.42.10","fe80:0:0:0:45d8:bfb7:9068:e214","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:12PM GMT+0200)","22 Apr 2026 08:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"388368806","","PCB17647.sanef.groupe","10.205.0.71","fe80:0:0:0:99b2:eb36:49c2:dfb0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:56AM GMT+0200)","22 Apr 2026 09:48AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"388414447","","PCB16322.sanef.groupe","10.101.243.115","fe80:0:0:0:33fe:faca:6846:a7b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (03 Apr 2026 09:20AM GMT+0200)","03 Apr 2026 09:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"388897816","","PCB24247.sanef.groupe","10.100.39.8","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:43AM GMT+0200)","22 Apr 2026 07:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"389128701","","PCB25902.sanef.groupe","10.255.2.132","fe80:0:0:0:bb09:7fe:b6ff:1bf4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:49AM GMT+0200)","22 Apr 2026 10:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"389537477","","PSX18555.sanef-int.adds","10.12.40.34","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:18AM GMT+0200)","22 Apr 2026 06:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"389544206","","PCB21320.sanef.groupe","10.202.31.45","fe80:0:0:0:3418:a8d2:65f1:200b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:21AM GMT+0200)","22 Apr 2026 10:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"389545130","","PCB17891.sanef.groupe","10.255.3.224","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Manifest Downloaded (16 Apr 2026 11:12AM GMT+0200)","16 Apr 2026 03:04PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"389643535","","PCB21107.sanef.groupe","10.101.243.176","fe80:0:0:0:4796:8eda:b3a1:eb88","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (21 Apr 2026 09:04AM GMT+0200)","22 Apr 2026 09:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"389765378","","PCB18261.sanef.groupe","10.200.30.24","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:01PM GMT+0200)","22 Apr 2026 07:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"390152402","","PSX18698.sanef-int.adds","10.100.40.33","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:51PM GMT+0200)","22 Apr 2026 08:20AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"390278077","","PCB23709.sanef.groupe","10.205.0.201","fe80:0:0:0:dbf3:deb9:e1bf:8091","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:19PM GMT+0200)","22 Apr 2026 10:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"390363422","","PBM20982.sanef-int.adds","10.200.50.50","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:04PM GMT+0200)","22 Apr 2026 10:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"391025304","","PCB22525.sanef.groupe","10.107.31.6","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:53PM GMT+0200)","21 Apr 2026 03:53PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391030446","","PCB21550.sanef.groupe","10.5.31.41","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:57PM GMT+0200)","22 Apr 2026 06:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391116363","","PCB16433.sanef.groupe","10.255.2.129","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 4946","6.4.0.397","VM Manifest Downloaded (30 Mar 2026 02:09PM GMT+0200)","30 Mar 2026 02:09PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391148476","","vrdsialab2.sanef-rec.fr","10.45.16.36","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:10AM GMT+0200)","22 Apr 2026 07:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,test_rhel9,OS-LIN-SRV DYN]" +"391149540","","vmddops01.recette.adds","10.45.17.67","fe80:0:0:0:70f8:8b63:91d3:43ad","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:45AM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391547803","","PCB24252.sanef.groupe","10.255.1.177","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:19AM GMT+0200)","21 Apr 2026 09:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391576909","","SVP22768.sanef-int.adds","10.252.2.16","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (31 Mar 2026 02:06PM GMT+0200)","31 Mar 2026 02:45PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391583411","","PCB23609.sanef.groupe","10.255.4.131","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (28 Mar 2026 05:14PM GMT+0200)","28 Mar 2026 05:14PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391586124","","vpburaaov2.sanef.groupe","10.205.0.3","fe80:0:0:0:2d68:92e0:5fee:78ff","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:55PM GMT+0200)","22 Apr 2026 07:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,TAG-SRVEXPOSEINTERNET,Compte & Acces,Haute,VPN,DSI,OS-WIN-SRV DYN]" +"391596617","","vmmvsccad1.sanef-int.adds","10.41.7.231","fe80:0:0:0:3bd2:ae27:703:4cb6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:42PM GMT+0200)","22 Apr 2026 03:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391641920","","vmmvscdem2.sanef-int.adds","10.41.7.236","fe80:0:0:0:beb4:400d:a368:73c6","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 03:36PM GMT+0200)","22 Apr 2026 03:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391641926","","vmmvsccad2.sanef-int.adds","10.41.7.232","fe80:0:0:0:8379:2056:693a:33bd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:54AM GMT+0200)","22 Apr 2026 06:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391648857","","vmmvscdem1.sanef-int.adds","10.41.7.235","fe80:0:0:0:507a:46a4:cd2:7b86","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:08PM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391685025","","SVP21364.sanef-int.adds","10.132.5.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (17 Apr 2026 01:44PM GMT+0200)","17 Apr 2026 02:12PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"391686889","","vmmvscdsi1.sanef-int.adds","10.41.7.240","fe80:0:0:0:ef04:a3b5:6d78:8ece","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","VM Manifest Downloaded (03 Apr 2026 12:52AM GMT+0200)","03 Apr 2026 11:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"392047034","","PCV21531.sanef-int.adds","10.210.47.40","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:08AM GMT+0200)","22 Apr 2026 06:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"392184545","","srdsiabkp1.sanef-rec.fr","10.43.253.30","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","VM Manifest Downloaded (01 Apr 2026 01:24AM GMT+0200)","01 Apr 2026 10:21AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,BDD-ELA DYN]" +"392400088","","PCV21589.sanef-int.adds","10.108.7.15","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:00PM GMT+0200)","22 Apr 2026 08:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"392410566","","vdpataels1.sanef-rec.fr","10.45.9.131","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:21PM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,ISIS,DFIN,OS-LIN-SRV DYN,BDD-ELA DYN]" +"392444844","","vrvpnaaov1.recette.adds","10.205.10.3","","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:29AM GMT+0200)","22 Apr 2026 10:38AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,High,TAG-SRVEXPOSEINTERNET,Compte & Acces,Haute,DSI,OS-WIN-SRV DYN]" +"392480138","","vrvpnaaov2.recette.adds","10.205.10.4","","Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8868","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:32AM GMT+0200)","22 Apr 2026 09:25AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,High,TAG-SRVEXPOSEINTERNET,Compte & Acces,Haute,DSI,OS-WIN-SRV DYN]" +"392590176","","vrdsiaada1.recette.adds","10.45.0.144","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:18AM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"392620270","","VRSIGAFRT1","10.45.2.30","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:02PM GMT+0200)","22 Apr 2026 09:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,SIG,OS-LIN-SRV DYN,MID-NGINX DYN]" +"392818522","","vrdsialab1.sanef-rec.fr","10.45.16.35","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:34PM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,BDD-POS DYN]" +"392827254","","PCB18728.sanef.groupe","10.255.2.202","fe80:0:0:0:ad23:e9bd:5752:738c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:19AM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"393273466","","PCB21198.sanef.groupe","10.220.31.0","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:41AM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"393290213","","PCB22827.sanef.groupe","10.255.4.148","fe80:0:0:0:da7d:f875:4bdf:cb33","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:53AM GMT+0200)","22 Apr 2026 05:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"393319958","","VRVPNARAD2.recette.adds","10.45.14.137","fe80:0:0:0:5d01:71f5:3806:a503","Microsoft Windows Server 2008 R2 Entreprise 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24241","5.6.0.20","Inventory Scan Complete (22 Apr 2026 12:53AM GMT+0200)","22 Apr 2026 09:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server 2008,Recette,Obsolete,Radius,DSI,OS-WIN-SRV DYN]" +"393324304","","VRVPNARAD1.recette.adds","10.45.14.136","fe80:0:0:0:b11f:a3f1:9da5:d3a0","Microsoft Windows Server 2008 R2 Entreprise 6.1.7601 64 bits Service Pack 1 Build 7601 UBR 24241","5.6.0.20","Inventory Scan Complete (22 Apr 2026 07:26AM GMT+0200)","22 Apr 2026 07:42AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Windows Server 2008,Recette,Obsolete,Radius,DSI,OS-WIN-SRV DYN]" +"393372827","","PCB21340.sanef.groupe","10.205.0.188","fe80:0:0:0:95a7:9c32:7291:5818","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 09:36PM GMT+0200)","22 Apr 2026 08:37AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"393390101","","PCB21085.sanef.groupe","10.205.0.145","fe80:0:0:0:fe25:2069:4b4a:3418","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (31 Mar 2026 04:40PM GMT+0200)","31 Mar 2026 04:40PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"393562161","","PCB17780.sanef.groupe","10.255.4.130","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Inventory Scan Complete (01 Apr 2026 08:24AM GMT+0200)","01 Apr 2026 11:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"393977374","","PCB18753.sanef.groupe","10.205.0.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:18AM GMT+0200)","22 Apr 2026 04:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"394261303","","PCB20632.sanef.groupe","10.4.31.17","fe80:0:0:0:d3a2:fe09:d0ed:3378","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 03:03AM GMT+0200)","17 Apr 2026 03:44PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"394284538","","MIO22805.sanef-int.adds","10.100.40.52","fe80:0:0:0:f2ef:ddff:5a65:3fa4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:27PM GMT+0200)","22 Apr 2026 09:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"394534768","","PCB23742.sanef.groupe","10.100.39.180","fe80:0:0:0:6adc:fbd8:b2b6:2fc0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:33AM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395038420","","MIO22267.sanef-int.adds","10.200.40.50","fe80:0:0:0:b5fd:4c0d:5421:f8e0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:10AM GMT+0200)","22 Apr 2026 09:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395039386","","MIO20976.sanef-int.adds","10.100.40.51","fe80:0:0:0:e86e:4266:da3:f042","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Inventory Manifest Downloaded (24 Mar 2026 07:18AM GMT+0200)","24 Mar 2026 12:51PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395060526","","MIO22878.sanef-int.adds","10.12.40.51","fe80:0:0:0:8bd8:7191:5e91:3404","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:01AM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395080589","","MIO22284.sanef-int.adds","10.200.40.51","fe80:0:0:0:5efc:bae8:a332:3ead","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:26AM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395087203","","PCB18609.sanef.groupe","10.205.0.73","fe80:0:0:0:1436:4f1c:99a:5e96","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 08:01AM GMT+0200)","20 Apr 2026 12:34PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395087644","","MIO22295.sanef-int.adds","10.12.40.50","fe80:0:0:0:4963:a2ec:d020:48f3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:29PM GMT+0200)","22 Apr 2026 09:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"395089118","","PCB18606.sanef.groupe","192.168.1.27","fe80:0:0:0:36ef:3784:a397:bbed","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:08AM GMT+0200)","17 Apr 2026 09:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395097762","","PCB20648.sanef.groupe","10.4.31.80","fe80:0:0:0:71e8:2e9e:a90d:e362","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:06AM GMT+0200)","22 Apr 2026 10:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395117158","","PCB18629.sanef.groupe","10.4.31.27","fe80:0:0:0:f6b5:1af6:b03a:9849","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:19AM GMT+0200)","22 Apr 2026 09:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"395126369","","PCB20606.sanef.groupe","10.4.31.28","fe80:0:0:0:5210:4d05:a555:767c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:47AM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395140282","","PBM22298.sanef-int.adds","10.209.50.50","fe80:0:0:0:1f6c:e4f1:42fe:6361","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:50PM GMT+0200)","22 Apr 2026 08:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"395268286","","DAI18696.sanef-int.adds","10.100.70.33","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:48PM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395298641","","PCB20618.sanef.groupe","10.101.243.56","fe80:0:0:0:2159:8b83:774e:dfc9","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.1.22","Inventory Scan Complete (20 Apr 2026 11:34AM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395319668","","PCB25942.sanef.groupe","10.255.2.136","fe80:0:0:0:86ef:8574:ca12:a02c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:55PM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395321155","","PCB21099.sanef.groupe","10.255.4.130","fe80:0:0:0:a3a6:adec:6e85:a06d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:41AM GMT+0200)","22 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395329408","","PCB21022.sanef.groupe","10.205.0.39","fe80:0:0:0:333f:4e6e:ff7a:9df","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:29PM GMT+0200)","21 Apr 2026 08:29PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395334739","","PCB20609.sanef.groupe","192.168.1.196","fe80:0:0:0:6dec:d92f:2949:9b82","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 09:27AM GMT+0200)","22 Apr 2026 10:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395334749","","PCB21104.sanef.groupe","10.101.243.126","fe80:0:0:0:88c3:4005:eac0:4ce2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:46AM GMT+0200)","22 Apr 2026 08:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395335979","","PCB24042.sanef.groupe","10.205.0.122","fe80:0:0:0:f96b:6f98:f43e:90f4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:21AM GMT+0200)","21 Apr 2026 10:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395373817","","PCB21088.sanef.groupe","10.205.0.126","fe80:0:0:0:197b:ddd8:db26:eb2e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (20 Apr 2026 11:37AM GMT+0200)","22 Apr 2026 11:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395535068","","vrsigaags1.sanef-rec.fr","10.45.2.34","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:44PM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,SIG,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN]" +"395540025","","vrsigaapp1.sanef-rec.fr","10.45.2.31","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:59PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,SIG,OS-LIN-SRV DYN]" +"395543997","","vrsigaptl1.sanef-rec.fr","10.45.2.33","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:44PM GMT+0200)","22 Apr 2026 09:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,SIG,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,BDD-POS DYN]" +"395567531","","vrsigaapp2.sanef-rec.fr","10.45.2.32","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:31PM GMT+0200)","22 Apr 2026 09:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,SIG,OS-LIN-SRV DYN]" +"395594796","","PCB23624.sanef.groupe","10.255.4.163","fe80:0:0:0:5ce9:77f9:49df:6f12","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:02AM GMT+0200)","22 Apr 2026 10:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395633761","","PCB24332.sanef.groupe","10.255.4.37","fe80:0:0:0:5335:db38:ba68:6435","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7623","6.4.0.397","VM Manifest Downloaded (27 Mar 2026 10:50AM GMT+0200)","27 Mar 2026 04:13PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395819795","","PCB22501.sanef.groupe","10.205.0.11","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7171","6.4.0.397","Manifest Downloaded (16 Mar 2026 07:07PM GMT+0200)","16 Mar 2026 07:07PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395825841","","VRAIRAHTP2","10.45.1.103","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:58PM GMT+0200)","22 Apr 2026 10:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,MID-NGINX DYN]" +"395830937","","PCB25948.sanef.groupe","10.205.0.122","fe80:0:0:0:5c1c:b3d5:fce9:37bd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:36AM GMT+0200)","22 Apr 2026 08:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395849920","","PCB24165.sanef.groupe","10.255.4.226","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (15 Apr 2026 10:52AM GMT+0200)","15 Apr 2026 11:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"395875292","","vpvsaagpu1.sanef.groupe","10.42.16.88","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:45PM GMT+0200)","22 Apr 2026 06:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sauvegarde & Securite,Gestion SAUVEGARDE]" +"395881501","","vpvsaagpu2.sanef.groupe","10.42.16.89","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:45PM GMT+0200)","22 Apr 2026 06:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Sauvegarde & Securite,Gestion SAUVEGARDE]" +"395894144","","PCB25894.sanef.groupe","10.255.4.173","fe80:0:0:0:ee71:3a6d:51cf:1659","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:32AM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"395905873","","vpnapamed1.sanef.groupe","10.100.16.9","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:59AM GMT+0200)","22 Apr 2026 10:20AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Quorum,OS-LIN-SRV DYN]" +"395909012","","PCB25884.sanef.groupe","10.4.31.60","fe80:0:0:0:facb:4a64:e053:25ed","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:03AM GMT+0200)","22 Apr 2026 09:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"396073935","","PCB25918.sanef.groupe","10.4.31.34","fe80:0:0:0:9247:e772:ab11:b168","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:38AM GMT+0200)","22 Apr 2026 07:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"396119002","","PCB25917.sanef.groupe","192.168.1.88","fe80:0:0:0:75:fdd8:fd43:90f7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 08:39AM GMT+0200)","20 Apr 2026 08:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"396145815","","PCB25929.sanef.groupe","10.4.31.23","fe80:0:0:0:487c:129:57cd:6107","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:14PM GMT+0200)","22 Apr 2026 07:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"396161228","","vmdpeag03.recette.adds","10.45.17.197","fe80:0:0:0:862f:d285:9555:17ca","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:01AM GMT+0200)","22 Apr 2026 07:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"396161645","","vmdtrac14.recette.adds","10.45.17.16","fe80:0:0:0:e691:fe78:141b:944b","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:33AM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"396183133","","PCB24070.sanef.groupe","10.255.4.16","fe80:0:0:0:cc00:2520:1cdb:dd18","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:53AM GMT+0200)","21 Apr 2026 11:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"396850110","","PCB18614.sanef.groupe","10.106.31.15","fe80:0:0:0:46b5:ef15:b8a1:ef3e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:00AM GMT+0200)","22 Apr 2026 09:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397104243","","PCB21135.sanef.groupe","10.255.2.218","fe80:0:0:0:5e24:3d68:45ec:9ddd","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 10:24AM GMT+0200)","20 Apr 2026 10:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397128337","","PCB16099.sanef.groupe","10.255.3.180","fe80:0:0:0:b576:5e0:59e4:96","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:26AM GMT+0200)","22 Apr 2026 06:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397144069","","PCB24329.sanef.groupe","10.255.4.135","fe80:0:0:0:7453:b3be:7a75:bce4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Agent Downloaded (20 Apr 2026 11:50AM GMT+0200)","20 Apr 2026 11:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397149291","","vrtrabwaz1.sanef-rec.fr","10.45.2.122","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:22AM GMT+0200)","22 Apr 2026 09:22AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,Waze,DSI,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN]" +"397198246","","PCB24231.sanef.groupe","10.205.0.78","fe80:0:0:0:4862:6ae1:2e2b:698a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 10:20AM GMT+0200)","17 Apr 2026 02:56PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397215782","","PCB24338.sanef.groupe","10.4.31.72","fe80:0:0:0:5cb8:b310:4852:b2f7","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:22AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397303566","","VPAIIAPVD1.sanef.groupe","10.41.11.15","fe80:0:0:0:f5ba:cb00:749a:3623","Windows Microsoft Windows 10 Enterprise 10.0.17763 Build 17763","6.1.0.28","Provisioned (04 Feb 2026 05:33AM GMT+0200)","04 Feb 2026 05:33AM GMT+0200","","","PM,SCA,VM ","[Cloud Agent]" +"397353695","","SVP22630.sanef-int.adds","10.82.9.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Manifest Downloaded (16 Apr 2026 10:54AM GMT+0200)","16 Apr 2026 10:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397458696","","vmmvsccad3.sanef-int.adds","10.41.7.233","fe80:0:0:0:34d:96e0:34da:f1c8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:41PM GMT+0200)","22 Apr 2026 07:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397469805","","PCB24221.sanef.groupe","10.255.2.160","fe80:0:0:0:d12:ee47:2b79:ad60","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:12AM GMT+0200)","21 Apr 2026 09:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397469862","","PCB24232.sanef.groupe","10.205.0.21","fe80:0:0:0:4a61:6d3:4743:1d80","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:59AM GMT+0200)","22 Apr 2026 10:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397475889","","vmmvscdem3.sanef-int.adds","10.41.7.237","fe80:0:0:0:ec5:607a:253e:c24d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:57PM GMT+0200)","22 Apr 2026 10:21AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397486515","","PCB20622.sanef.groupe","10.220.31.5","fe80:0:0:0:5c95:9ef9:8025:f716","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:33AM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397490169","","vmmvscdem5.sanef-int.adds","10.41.7.239","fe80:0:0:0:53b4:4b26:c4de:7637","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:29PM GMT+0200)","22 Apr 2026 09:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397495752","","vmmvsccad4.sanef-int.adds","10.41.7.234","fe80:0:0:0:e58b:d3b0:a88d:328f","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:57PM GMT+0200)","22 Apr 2026 09:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397495753","","vmmvscdem4.sanef-int.adds","10.41.7.238","fe80:0:0:0:c921:982:8dcc:6888","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:07PM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397921252","","PCB18413.sanef.groupe","10.101.243.146","fe80:0:0:0:c375:1ad9:3b29:6c35","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:07AM GMT+0200)","22 Apr 2026 10:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397923227","","PCB21090.sanef.groupe","192.168.1.80","fe80:0:0:0:883c:d943:a8b:a140","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:04AM GMT+0200)","21 Apr 2026 07:48PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"397950357","","PCB20611.sanef.groupe","10.101.243.76","fe80:0:0:0:c1b8:7b9d:b4aa:4b6d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:55AM GMT+0200)","21 Apr 2026 10:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"398226015","","PCB23677.sanef.groupe","192.168.1.27","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:49PM GMT+0200)","21 Apr 2026 05:49PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"398236665","","vpdsibetc2.sanef.groupe","10.44.5.132","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:54AM GMT+0200)","22 Apr 2026 07:32AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"398238102","","vpdsibetc3.sanef.groupe","10.100.16.23","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:01PM GMT+0200)","22 Apr 2026 09:16AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"398248431","","vpdsibetc1.sanef.groupe","10.44.5.131","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:06PM GMT+0200)","22 Apr 2026 09:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN]" +"398330693","","macbook-pro.home","10.255.1.11","0:0:0:0:0:0:0:1","macOS 26.3.1","5.3.0.31","Manifest Downloaded (20 Apr 2026 09:45AM GMT+0200)","22 Apr 2026 06:03AM GMT+0200","Default Profile","","PM,SCA,VM ","[Cloud Agent]" +"398581269","","SVP21360.sanef-int.adds","10.182.8.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Manifest Downloaded (11 Apr 2026 02:47PM GMT+0200)","11 Apr 2026 02:47PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"398820756","","PCB16013.sanef.groupe","10.200.31.58","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7623","6.4.0.397","Manifest Downloaded (19 Mar 2026 01:45PM GMT+0200)","19 Mar 2026 01:45PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"398856812","","PCB21310.sanef.groupe","10.100.39.144","fe80:0:0:0:b483:e885:849b:ea99","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (22 Apr 2026 05:48AM GMT+0200)","22 Apr 2026 08:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"398936502","","PSX18701.sanef-int.adds","10.200.40.33","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:57PM GMT+0200)","22 Apr 2026 07:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"399025769","","PCB21114.sanef.groupe","10.205.0.29","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:12AM GMT+0200)","21 Apr 2026 11:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"399074773","","vtdsibpgs2.sanef-rec.fr","10.45.1.173","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:14PM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,PATRIMOINE,OS-LIN-SRV DYN,BDD-POS DYN]" +"399337159","","PCB24224.sanef.groupe","192.168.1.17","fe80:0:0:0:8f6b:f4a0:a5a4:7ded","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:52AM GMT+0200)","22 Apr 2026 09:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"399338908","","PCB16447.sanef.groupe","10.0.11.53","fe80:0:0:0:7ccb:9a48:7c68:afd8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:02AM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"399388387","","vpemvgrid1.sanef.groupe","192.168.100.134","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 10:49AM GMT+0200)","22 Apr 2026 10:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,PCI Bunker EMV - VLAN Supervision/Admin,Linux Server,OS-LIN-SRV DYN]" +"399424731","","SPBURADPI1","10.101.242.9","fe80:0:0:0:f29e:175f:9e8d:ea11","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:40PM GMT+0200)","22 Apr 2026 08:48AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,VRF_BURO,VRF_INCONNUE,SCCM,DSI,OS-WIN-SRV DYN]" +"399593705","","MacBook-Pro.local","10.255.6.16","0:0:0:0:0:0:0:1","macOS 26.3.1","5.3.0.31","Inventory Scan Complete (22 Apr 2026 07:27AM GMT+0200)","22 Apr 2026 07:27AM GMT+0200","Default Profile","","PM,SCA,VM ","[Cloud Agent]" +"399595897","","PCB21071.sanef.groupe","10.100.39.126","fe80:0:0:0:a297:cd5f:5704:b551","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:25AM GMT+0200)","22 Apr 2026 10:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"399618484","","PCB17947.sanef.groupe","10.255.1.154","fe80:0:0:0:c99a:edb5:63a6:ade5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Inventory Scan Complete (23 Mar 2026 09:02AM GMT+0200)","23 Mar 2026 01:23PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"399660876","","vodsiaito1.sanef.groupe","10.46.39.35","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:30PM GMT+0200)","22 Apr 2026 05:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN]" +"399667072","","PCV20830.sanef-int.adds","10.100.7.53","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:48PM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"399698917","","PCV20889.sanef-int.adds","10.100.7.61","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:13AM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"399888645","","PCB25940.sanef.groupe","10.205.1.35","fe80:0:0:0:cbb:dadf:a7dc:a075","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 06:47AM GMT+0200)","17 Apr 2026 05:55PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"399973106","","PCB22296.sanef.groupe","10.152.31.17","fe80:0:0:0:1cc7:44b6:4281:ce08","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:28AM GMT+0200)","22 Apr 2026 09:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"400644771","","PCB18729.sanef.groupe","10.220.31.23","fe80:0:0:0:d063:57e:9b84:eb0c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:54AM GMT+0200)","22 Apr 2026 10:35AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"400732597","","PCV20864.sanef-int.adds","10.5.7.50","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:59PM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"400930315","","PCV20888.sanef-int.adds","10.100.7.68","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:07PM GMT+0200)","22 Apr 2026 06:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"400946924","","PCB25933.sanef.groupe","10.205.0.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 01:34PM GMT+0200)","17 Apr 2026 03:45PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"400947350","","vpdsiasta1","192.168.19.4","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:07PM GMT+0200)","22 Apr 2026 07:14AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"401234526","","PCV18679.sanef-int.adds","10.100.7.50","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:53PM GMT+0200)","22 Apr 2026 10:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"401496198","","PCV20918.sanef-int.adds","10.100.7.51","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:32PM GMT+0200)","22 Apr 2026 10:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"401525321","","PCV20872.sanef-int.adds","10.100.7.52","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:37PM GMT+0200)","22 Apr 2026 09:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"401615942","","SVP18475.sanef-int.adds","10.6.64.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Agent Downloaded (18 Apr 2026 03:00PM GMT+0200)","18 Apr 2026 03:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"402056731","","PCB22845.sanef.groupe","10.100.39.49","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:33PM GMT+0200)","22 Apr 2026 06:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"402065710","","PCV18680.sanef-int.adds","10.5.7.51","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:44PM GMT+0200)","22 Apr 2026 08:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"402067537","","PCB21122.sanef.groupe","10.101.243.211","fe80:0:0:0:3b80:ff23:ac5b:392a","Windows Microsoft Windows 10 Pro 10.0.19045 Build 19045","6.4.0.397","Manifest Downloaded (16 Mar 2026 05:24PM GMT+0200)","16 Mar 2026 05:24PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"402138691","","PCB24340.sanef.groupe","10.101.243.5","fe80:0:0:0:de15:220a:a88c:c906","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:08AM GMT+0200)","21 Apr 2026 11:08AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"402304603","","PCB24215.sanef.groupe","10.106.31.3","fe80:0:0:0:2a4a:f0ae:6dfa:5a4d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:53PM GMT+0200)","22 Apr 2026 06:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"402351359","","PCB18094.sanef.groupe","10.205.0.82","fe80:0:0:0:b0a7:97c9:6274:ec31","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:19AM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"402451872","","PCB24235.sanef.groupe","10.101.243.213","fe80:0:0:0:2d95:1d53:45d5:2116","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 11:45AM GMT+0200)","20 Apr 2026 11:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"402455023","","PCB18632.sanef.groupe","10.4.31.91","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:02AM GMT+0200)","21 Apr 2026 11:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"402455407","","PCB24239.sanef.groupe","10.255.2.214","fe80:0:0:0:2439:c164:b7e0:7103","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:34AM GMT+0200)","22 Apr 2026 09:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"403254780","","PCB23740.sanef.groupe","10.155.31.14","fe80:0:0:0:aa6f:c1a8:4028:c4ef","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","VM Manifest Downloaded (03 Apr 2026 09:37AM GMT+0200)","03 Apr 2026 01:22PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"403260902","","vvbooosea2.sanef-rec.fr","10.45.6.75","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Manifest Downloaded (04 Apr 2026 04:05AM GMT+0200)","04 Apr 2026 04:05AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,Flux Libre,OS-LIN-SRV DYN]" +"403264772","","PCB25778.sanef.groupe","10.100.39.23","fe80:0:0:0:43b7:5e3d:619c:95a4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:32AM GMT+0200)","22 Apr 2026 09:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"403270155","","PCB20701.sanef.groupe","10.205.0.152","","Windows Microsoft Windows 11 Pro 10.0.26100 Build 26100 UBR 7840","6.2.5.4","Manifest Downloaded (04 Mar 2026 05:10PM GMT+0200)","17 Mar 2026 05:10PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"403289818","","vrintaweb2.sanef.groupe","192.168.20.3","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Manifest Downloaded (05 Apr 2026 12:07AM GMT+0200)","05 Apr 2026 12:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Recette,DMZ,Communication et Collaboration,Sans,VRF_INCONNUE,Gestion institutionnel,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"403324006","","MTR-FGNN0H4","10.4.32.203","fe80:0:0:0:a048:44c:b596:2cb5","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:58PM GMT+0200)","22 Apr 2026 07:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"403818019","","PAD24236.sanef-int.adds","10.44.102.10","fe80:0:0:0:2003:f0a:2198:dea5","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.0.397","VM Manifest Downloaded (04 Mar 2026 01:20PM GMT+0200)","04 Mar 2026 01:22PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"403864752","","PCB22701.sanef.groupe","10.205.0.172","fe80:0:0:0:88e1:1361:c6f5:bc8e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 11:55AM GMT+0200)","20 Apr 2026 11:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"403878605","","PCV20917.sanef-int.adds","10.100.7.69","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:56AM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"403898149","","MTR-FJRTL64","10.4.32.204","fe80:0:0:0:4a6f:5159:3f8e:1eea","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:24PM GMT+0200)","22 Apr 2026 06:18AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"404099926","","vrpctbams1.recette.adds","10.45.13.195","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8389","6.3.0.81","Manifest Downloaded (27 Feb 2026 02:40AM GMT+0200)","27 Feb 2026 08:16AM GMT+0200","Default Profile","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN]" +"404138423","","PCB23745.sanef.groupe","192.168.1.6","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.0.397","Inventory Manifest Downloaded (02 Mar 2026 04:13PM GMT+0200)","30 Mar 2026 03:54PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"404158020","","vrpctbams2.recette.adds","10.45.13.197","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8389","6.3.0.81","VM Manifest Downloaded (27 Feb 2026 07:13AM GMT+0200)","27 Feb 2026 09:40AM GMT+0200","Default Profile","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN]" +"404163179","","PCB18621.sanef.groupe","10.255.4.246","fe80:0:0:0:6b3d:295:adf1:ac14","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:17AM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"404391139","","SVP22625.sanef-int.adds","10.6.64.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Configuration Downloaded (16 Apr 2026 02:55PM GMT+0200)","16 Apr 2026 02:54PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"404429706","","PCB25818.sanef.groupe","10.255.1.164","fe80:0:0:0:670c:3224:5086:9242","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:58AM GMT+0200)","22 Apr 2026 10:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"404433492","","PCB25892.sanef.groupe","10.100.39.42","fe80:0:0:0:1739:f6e4:efe7:f84b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 09:13AM GMT+0200)","17 Apr 2026 01:12PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"404446816","","PCB25880.sanef.groupe","10.255.3.13","fe80:0:0:0:b19c:a320:2fa3:868a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7840","6.4.0.397","Manifest Downloaded (25 Mar 2026 10:58AM GMT+0200)","25 Mar 2026 10:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"404462971","","MTR-JHNN0H4","10.4.32.202","fe80:0:0:0:bf21:3de2:580d:74d2","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8246","6.4.0.397","Inventory Scan Complete (21 Apr 2026 09:01PM GMT+0200)","22 Apr 2026 07:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"404678116","","vrpctbams2.recette.adds","10.45.13.197","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:42PM GMT+0200)","22 Apr 2026 09:30AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN]" +"404697314","","vrpctbams1.recette.adds","10.45.13.195","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:41PM GMT+0200)","22 Apr 2026 06:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN,BDD-POS DYN]" +"404732912","","PCB21118.sanef.groupe","10.205.0.203","2a02:8426:19a0:e901:7966:e0a3:cd55:7604","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (17 Apr 2026 09:28AM GMT+0200)","22 Apr 2026 10:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"405455633","","PAD24216.sanef-int.adds","10.44.102.10","fe80:0:0:0:3c57:ee14:71eb:c738","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","6.4.1.22","Inventory Scan Complete (17 Apr 2026 10:36AM GMT+0200)","17 Apr 2026 01:20PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"405463753","","PCB18190.sanef.groupe","10.255.2.200","2a01:cb10:367:7400:2a90:7b08:aab8:f000","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (27 Mar 2026 09:48AM GMT+0200)","27 Mar 2026 10:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"405477092","","vmmgtca14c1.sanef-int.adds","10.41.19.76","fe80:0:0:0:6578:21f6:5897:2ccc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:51PM GMT+0200)","22 Apr 2026 07:36AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"405479460","","vmmgtctchc1.sanef-int.adds","10.41.19.51","fe80:0:0:0:2c97:f8ae:c7ad:5150","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:19AM GMT+0200)","22 Apr 2026 09:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"405482222","","vmmgtcroic1.sanef-int.adds","10.41.19.16","fe80:0:0:0:f2ab:8c11:eee4:8a27","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:29AM GMT+0200)","22 Apr 2026 03:29AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"405651420","","PCB23636.sanef.groupe","10.101.243.11","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:00AM GMT+0200)","22 Apr 2026 10:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"405931964","","PCB20600.sanef.groupe","10.4.31.79","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 03:14AM GMT+0200)","17 Apr 2026 03:17PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"405934328","","PCB17641.sanef.groupe","10.12.31.18","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:51PM GMT+0200)","22 Apr 2026 07:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"405942540","","PCB22443.sanef.groupe","10.149.31.8","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 4652","6.4.0.397","VM Manifest Downloaded (16 Mar 2026 08:37PM GMT+0200)","01 Apr 2026 10:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"406013806","","PCM18569.sanef-int.adds","10.45.13.200","fe80:0:0:0:cea2:79dc:bf0c:7709","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:59AM GMT+0200)","22 Apr 2026 10:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406197063","","PAD24096.sanef-int.adds","10.252.2.5","fe80:0:0:0:3b8e:7782:1237:5c68","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","5.0.0.17","Manifest Downloaded (05 Mar 2026 11:27AM GMT+0200)","05 Mar 2026 11:27AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406232630","","PCV20893.sanef-int.adds","10.12.7.50","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:32PM GMT+0200)","22 Apr 2026 05:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406248836","","PAD24096.sanef-int.adds","10.252.2.5","fe80:0:0:0:8d9e:6f80:a121:e423","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","5.0.0.17","Manifest Downloaded (05 Mar 2026 01:40PM GMT+0200)","05 Mar 2026 01:40PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406249126","","PCV18675.sanef-int.adds","10.12.7.51","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:09PM GMT+0200)","22 Apr 2026 07:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406253851","","PAD24236.sanef-int.adds","10.45.11.244","fe80:0:0:0:1f9d:74b2:e50b:9d4","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","5.0.0.17","Manifest Downloaded (05 Mar 2026 02:34PM GMT+0200)","05 Mar 2026 02:34PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406263184","","PCV20892.sanef-int.adds","10.12.7.54","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:46AM GMT+0200)","22 Apr 2026 07:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406269848","","PAD24236.sanef-int.adds","10.45.11.244","fe80:0:0:0:d3a9:81be:f259:912d","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","5.0.0.17","Manifest Downloaded (05 Mar 2026 05:03PM GMT+0200)","05 Mar 2026 05:03PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406279962","","PCV20919.sanef-int.adds","10.12.7.52","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:08AM GMT+0200)","22 Apr 2026 10:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406280008","","PAD24096.sanef-int.adds","10.252.2.5","fe80:0:0:0:14b2:152a:b34d:a0b8","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","5.0.0.17","Manifest Downloaded (05 Mar 2026 04:56PM GMT+0200)","05 Mar 2026 04:56PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406292356","","PAD24081.sanef-int.adds","10.252.2.10","fe80:0:0:0:4a53:6973:b9e:ec81","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","5.0.0.17","Inventory Scan Complete (05 Mar 2026 05:08PM GMT+0200)","05 Mar 2026 05:08PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406293517","","PCV20890.sanef-int.adds","10.12.7.53","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:54AM GMT+0200)","22 Apr 2026 07:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406509483","","PCB24062.sanef.groupe","10.5.31.8","fe80:0:0:0:bc4b:e69e:95be:afc0","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:20AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"406548815","","vrboeacst1.recette.adds","10.45.6.195","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:18AM GMT+0200)","22 Apr 2026 09:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,Péage,OS-WIN-SRV DYN]" +"407049273","","PCB23593.sanef.groupe","10.205.0.84","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:23AM GMT+0200)","22 Apr 2026 10:09AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407114551","","PCV18562.sanef-int.adds","10.152.7.51","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:06PM GMT+0200)","22 Apr 2026 07:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407115941","","PCV18548.sanef-int.adds","10.152.7.50","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:46PM GMT+0200)","22 Apr 2026 07:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407122268","","PCB25875.sanef.groupe","10.152.30.11","fe80:0:0:0:f33b:840b:4afe:77b8","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:56PM GMT+0200)","22 Apr 2026 05:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407131864","","vrpctatsf1.recette.adds","10.45.13.196","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:20PM GMT+0200)","22 Apr 2026 09:41AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"407133596","","PSX18687.sanef-int.adds","10.100.40.44","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:19AM GMT+0200)","22 Apr 2026 07:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407162519","","vrpctatsf2.recette.adds","10.45.13.198","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8389","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:33AM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"407320662","","PCB18108.sanef.groupe","10.255.2.206","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Manifest Downloaded (09 Apr 2026 10:05AM GMT+0200)","09 Apr 2026 10:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407330177","","PCB17199.sanef.groupe","10.255.1.229","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Inventory Scan Complete (09 Apr 2026 09:17AM GMT+0200)","09 Apr 2026 01:48PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407337019","","MAC16761","10.255.1.15","0:0:0:0:0:0:0:1","macOS 26.4","5.3.0.31","Inventory Scan Complete (22 Apr 2026 08:41AM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Default Profile","","PM,SCA,VM ","[Cloud Agent,MID-NGINX DYN,BDD-POS DYN]" +"407354446","","PCB24122.sanef.groupe","10.100.39.148","fe80:0:0:0:828a:7df3:7acd:3533","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:35AM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407377442","","vpbckmcse1","192.168.109.4","","Microsoft Windows Server 2019 Standard 10.0.17763 64-bit N/A Build 17763 UBR 8027","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:55AM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,VRF_INCONNUE,PCI Bunker EMV,Gestion SAUVEGARDE,OS-WIN-SRV DYN,BDD-SQL DYN]" +"407449347","","PCB21094.sanef.groupe","10.107.31.31","fe80:0:0:0:9499:ad72:fa11:f19d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 03:12PM GMT+0200)","20 Apr 2026 03:12PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407614349","","PCB20615.sanef.groupe","10.255.2.131","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100 UBR 6899","6.4.0.397","Manifest Downloaded (20 Mar 2026 11:44AM GMT+0200)","20 Mar 2026 11:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407614729","","PCB25914.sanef.groupe","10.255.3.169","fe80:0:0:0:8ca4:a488:c442:2cc4","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100","6.4.1.22","Manifest Downloaded (13 Apr 2026 08:12AM GMT+0200)","13 Apr 2026 08:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407627825","","splogbels3","10.44.7.42","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:53PM GMT+0200)","22 Apr 2026 06:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"407677936","","PCB22639.sanef.groupe","10.220.31.37","fe80:0:0:0:8b6a:74d2:db9a:8f37","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","VM Manifest Downloaded (31 Mar 2026 09:05AM GMT+0200)","31 Mar 2026 09:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407771009","","splogbels4","10.44.7.44","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:41PM GMT+0200)","22 Apr 2026 10:12AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"407779679","","PCV20831.sanef-int.adds","10.209.7.50","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:52AM GMT+0200)","22 Apr 2026 08:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407781441","","PCV18676.sanef-int.adds","10.209.7.51","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:50AM GMT+0200)","22 Apr 2026 09:55AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407932259","","PCV18541.sanef-int.adds","10.210.7.45","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:07AM GMT+0200)","22 Apr 2026 05:45AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407939380","","PCV18553.sanef-int.adds","10.210.7.46","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:37AM GMT+0200)","22 Apr 2026 06:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407940473","","splogbels2","10.44.7.43","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:34AM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"407940862","","PCV18546.sanef-int.adds","10.210.7.44","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:33AM GMT+0200)","22 Apr 2026 10:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407943702","","PCB17951.sanef.groupe","10.255.3.242","fe80:0:0:0:1864:14a1:4249:8e29","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Inventory Scan Complete (19 Mar 2026 12:48PM GMT+0200)","19 Mar 2026 01:28PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407952467","","PCV18681.sanef-int.adds","10.210.7.47","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:12AM GMT+0200)","22 Apr 2026 06:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407955290","","PCV18545.sanef-int.adds","10.252.2.24","fe80:0:0:0:69a3:d657:c59d:60a2","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","VM Manifest Downloaded (02 Apr 2026 12:55PM GMT+0200)","02 Apr 2026 02:58PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407987714","","PCV18554.sanef-int.adds","10.210.7.48","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:59AM GMT+0200)","22 Apr 2026 05:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"407993958","","splogbels1","10.44.7.41","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:22AM GMT+0200)","22 Apr 2026 06:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN]" +"408007431","","PCB18443.sanef.groupe","10.205.0.66","fe80:0:0:0:eaec:7979:8e4b:f029","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:51AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408011773","","PCB20620.sanef.groupe","10.205.0.23","fe80:0:0:0:185e:4a0d:2faa:9343","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (22 Apr 2026 01:56AM GMT+0200)","22 Apr 2026 09:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408021532","","PCB21068.sanef.groupe","10.100.39.168","fe80:0:0:0:4ff9:db25:473a:b9ea","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:55AM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408025140","","PCV21146.sanef-int.adds","10.252.2.19","fe80:0:0:0:abb2:5df3:f2d3:93ca","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (13 Apr 2026 04:32AM GMT+0200)","13 Apr 2026 11:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408197910","","SRCYBABKP1.sanef-rec.fr","10.45.11.35","fe80:0:0:0:5fc9:98d0:5d98:a639","Microsoft Windows Server 2022 Standard 10.0.20348 64-bit N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:36PM GMT+0200)","22 Apr 2026 07:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,DSI,OS-WIN-SRV DYN]" +"408223923","","PCB22281.sanef.groupe","10.203.31.12","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (15 Apr 2026 08:12PM GMT+0200)","16 Apr 2026 03:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408236298","","PCB22348.sanef.groupe","10.202.31.18","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (15 Apr 2026 05:56PM GMT+0200)","15 Apr 2026 05:56PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408246057","","PCB17490.sanef.groupe","10.255.3.176","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100 UBR 7171","6.4.0.397","Manifest Downloaded (17 Mar 2026 03:25PM GMT+0200)","17 Mar 2026 03:33PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408629459","","PCB13703.sanef.groupe","192.168.1.21","2a01:cb0c:8c8a:a900:2db5:cfbf:cbb5:ec00","Windows Microsoft Windows 10 Enterprise 10.0.19045 Build 19045","6.4.1.22","Configuration Downloaded (16 Apr 2026 06:14AM GMT+0200)","16 Apr 2026 06:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408734457","","PCB25786.sanef.groupe","10.255.2.164","fe80:0:0:0:6a7f:460:bb0:c789","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:39AM GMT+0200)","22 Apr 2026 09:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"408744878","","PCB17887.sanef.groupe","10.255.4.242","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6584","6.4.1.22","Configuration Downloaded (21 Apr 2026 09:31AM GMT+0200)","21 Apr 2026 09:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408806431","","PSX20822.sanef-int.adds","10.252.2.23","fe80:0:0:0:e8b2:5e60:ecd6:aecc","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (16 Mar 2026 04:48PM GMT+0200)","16 Mar 2026 04:48PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408836610","","PSX20822.sanef-int.adds","10.252.2.6","fe80:0:0:0:6b3e:28c:2ac6:6c36","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (23 Mar 2026 12:22PM GMT+0200)","23 Mar 2026 01:56PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408839040","","PCB18007.sanef.groupe","10.255.3.4","fe80:0:0:0:25d4:dc37:3a0d:29ef","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:06AM GMT+0200)","22 Apr 2026 09:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"408850859","","PCB18738.sanef.groupe","10.4.31.7","fe80:0:0:0:1f14:1b:f30e:1307","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:16AM GMT+0200)","22 Apr 2026 09:16AM GMT+0200","Profil Workstation","","PM(ERROR),SCA,VM ","[Cloud Agent,Workstation]" +"408858542","","PCB21122.sanef.groupe","10.205.0.80","fe80:0:0:0:3027:ac4b:e04b:be23","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (20 Apr 2026 11:29AM GMT+0200)","21 Apr 2026 03:30PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"409003374","","PCB17880.sanef.groupe","10.255.1.139","fe80:0:0:0:b9f4:ca60:c052:b99c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","VM Manifest Downloaded (09 Apr 2026 10:12AM GMT+0200)","09 Apr 2026 10:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"409023782","","vibotaapm1.sanef.groupe","10.41.23.143","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:30PM GMT+0200)","22 Apr 2026 06:06AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,Flux Libre,log4j,OS-LIN-SRV DYN]" +"409071009","","PCB22728.sanef.groupe","10.208.31.18","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100 UBR 7462","6.4.0.397","Inventory Manifest Downloaded (30 Mar 2026 11:48AM GMT+0200)","30 Mar 2026 12:32PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"409450683","","PCB22306.sanef.groupe","10.255.1.143","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:24AM GMT+0200)","22 Apr 2026 05:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"409462641","","vplogbels1","10.44.7.39","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:42PM GMT+0200)","22 Apr 2026 08:27AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-ELA DYN]" +"409485656","","PCB17121.sanef.groupe","192.168.1.50","2a02:842a:3620:a101:3297:a552:297a:3497","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","Manifest Downloaded (07 Apr 2026 04:15PM GMT+0200)","07 Apr 2026 04:15PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"409486574","","PCB18191.sanef.groupe","10.100.39.18","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100","6.4.0.397","Manifest Downloaded (18 Mar 2026 02:00PM GMT+0200)","18 Mar 2026 03:42PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"409490442","","PCB22345.sanef.groupe","10.206.31.9","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 06:58AM GMT+0200)","22 Apr 2026 09:03AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"409523114","","PCB23608.sanef.groupe","10.255.3.240","fe80:0:0:0:4cf5:11f2:4500:2c47","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:02AM GMT+0200)","22 Apr 2026 09:43AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"409534543","","PCB24230.sanef.groupe","192.168.1.101","2a01:e0a:b0e:5040:a23:fbe:54a5:1a71","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (19 Apr 2026 08:56AM GMT+0200)","22 Apr 2026 08:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"409746895","","vpdsiaito1.sanef.groupe","10.46.33.35","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:16AM GMT+0200)","22 Apr 2026 06:49AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN]" +"409762886","","PCB22715.sanef.groupe","10.205.0.86","fe80:0:0:0:75ce:42a7:1fc0:6166","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:34AM GMT+0200)","22 Apr 2026 09:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-POS DYN]" +"409979466","","PCB24241.sanef.groupe","10.255.3.179","fe80:0:0:0:f649:d942:3917:8ef1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Inventory Scan Complete (26 Mar 2026 04:29PM GMT+0200)","30 Mar 2026 05:59PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"410003164","","PCB17220.sanef.groupe","10.252.4.8","fe80:0:0:0:817c:5098:9290:1574","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (23 Mar 2026 12:15PM GMT+0200)","23 Mar 2026 12:54PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"410063492","","vdlabawdc1","10.45.16.60","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.0.397","Manifest Downloaded (02 Apr 2026 01:43PM GMT+0200)","02 Apr 2026 05:20PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"410064844","","vdlabawdc2","10.45.16.61","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.1.0.28","Manifest Downloaded (23 Mar 2026 01:30AM GMT+0200)","23 Mar 2026 02:58PM GMT+0200","Default Profile","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"410108159","","vriadawdc3","10.45.0.133","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4773","6.4.1.22","Inventory Scan Complete (19 Apr 2026 10:28PM GMT+0200)","20 Apr 2026 12:57PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Recette,APP_SAM,OS-WIN-SRV DYN]" +"410505275","","PCV22806.sanef-int.adds","10.11.7.15","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","VM Manifest Downloaded (08 Apr 2026 11:13PM GMT+0200)","09 Apr 2026 08:59AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"410510148","","PCB24107.sanef.groupe","10.205.0.42","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (17 Apr 2026 11:07AM GMT+0200)","21 Apr 2026 03:34PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"410521998","","PCV22458.sanef-int.adds","10.103.7.23","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:54PM GMT+0200)","22 Apr 2026 09:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"410541366","","PCB17927.sanef.groupe","10.255.3.40","fe80:0:0:0:cd55:44a3:abc7:df25","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045","6.4.1.22","Agent Downloaded (13 Apr 2026 12:00PM GMT+0200)","16 Apr 2026 03:09PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"410588598","","PCB18604.sanef.groupe","10.255.1.184","fe80:0:0:0:2c6:6e40:b73d:ccc3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","VM Manifest Downloaded (10 Apr 2026 09:35AM GMT+0200)","10 Apr 2026 10:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"410597376","","PCB18623.sanef.groupe","10.252.4.10","fe80:0:0:0:932b:e2b7:5790:b585","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.0.397","Manifest Downloaded (23 Mar 2026 03:22PM GMT+0200)","23 Mar 2026 03:30PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"410850412","","PCB18618.sanef.groupe","10.4.30.23","fe80:0:0:0:d120:6b0c:e88b:6728","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:15AM GMT+0200)","22 Apr 2026 10:15AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"410979616","","PCB20845.sanef.groupe","10.255.1.46","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100 UBR 8037","6.4.0.397","Configuration Downloaded (24 Mar 2026 02:02PM GMT+0200)","02 Apr 2026 10:41AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411100608","","DAI22946.sanef-int.adds","10.100.70.16","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:39AM GMT+0200)","22 Apr 2026 05:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411102519","","PCB25944.sanef.groupe","10.255.1.168","fe80:0:0:0:9bba:443c:dfc9:6ffb","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 09:26AM GMT+0200)","22 Apr 2026 09:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411130803","","vplogbels2","10.44.7.40","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:17PM GMT+0200)","22 Apr 2026 05:53AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-ELA DYN]" +"411132159","","PCB24245.sanef.groupe","10.255.2.182","fe80:0:0:0:80b4:aa55:3065:6bac","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 05:12PM GMT+0200)","22 Apr 2026 10:05AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411140383","","PCB21021.sanef.groupe","192.168.1.172","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100 UBR 7623","6.4.1.22","Configuration Downloaded (17 Apr 2026 11:52AM GMT+0200)","21 Apr 2026 04:21PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411157863","","vplogalst1","10.44.7.51","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:15PM GMT+0200)","22 Apr 2026 08:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"411158635","","vplogakib1","10.44.7.37","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:11PM GMT+0200)","22 Apr 2026 10:13AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN]" +"411327666","","vplogbquo1.sanef.groupe","10.100.16.24","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:34PM GMT+0200)","22 Apr 2026 06:08AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-ELA DYN]" +"411343438","","PCB21304.sanef.groupe","10.255.3.132","","Windows Microsoft Windows 11 Pro 10.0.26100 Build 26100","6.2.5.4","Provisioned (25 Mar 2026 12:18PM GMT+0200)","25 Mar 2026 12:18PM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411381239","","OSA22883.sanef-int.adds","10.100.20.31","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100","6.4.0.397","Configuration Downloaded (25 Mar 2026 03:40PM GMT+0200)","25 Mar 2026 03:51PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411392831","","OSA20987.sanef-int.adds","10.100.20.32","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:53PM GMT+0200)","22 Apr 2026 10:33AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411392865","","PCB23545.sanef.groupe","10.255.2.240","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100","6.4.1.22","Manifest Downloaded (10 Apr 2026 03:00PM GMT+0200)","10 Apr 2026 03:00PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411394122","","PCB21106.sanef.groupe","10.101.243.189","fe80:0:0:0:6c9f:6acb:2202:a8e3","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (26 Mar 2026 05:21PM GMT+0200)","26 Mar 2026 05:21PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411394993","","vpdecasas4","10.30.11.152","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux Server 7.9","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:10AM GMT+0200)","22 Apr 2026 06:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,Finances Comptabilité / Consolidation,VRF_INCONNUE,Obsolete,SAS,DSI,OS-LIN-SRV DYN]" +"411397277","","PCB25769.sanef.groupe","10.101.243.166","fe80:0:0:0:4b0e:ed64:1f61:2f42","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:47AM GMT+0200)","22 Apr 2026 10:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411410432","","OSA22883.sanef-int.adds","10.252.2.20","fe80:0:0:0:fed2:2d6c:7d4a:e461","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (25 Mar 2026 08:32PM GMT+0200)","26 Mar 2026 07:46AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411591909","","PCB24234.sanef.groupe","10.252.4.17","fe80:0:0:0:9698:cb21:f5ac:3968","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","6.4.0.397","Configuration Downloaded (26 Mar 2026 12:50PM GMT+0200)","26 Mar 2026 12:50PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411592329","","vrsigbmut1.sanef-rec.fr","10.45.15.68","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:42PM GMT+0200)","22 Apr 2026 05:17AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,ENV-REC]" +"411594083","","SVP21084.sanef-int.adds","10.92.1.29","","Windows Microsoft Windows 11 Enterprise 10.0.22631 Build 22631","6.4.1.22","Agent Downloaded (21 Apr 2026 08:36PM GMT+0200)","21 Apr 2026 08:36PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411599357","","PCB25898.sanef.groupe","10.189.31.8","fe80:0:0:0:661d:2860:4249:345c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:29AM GMT+0200)","22 Apr 2026 07:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411606584","","PCB18191.sanef.groupe","10.255.1.176","fe80:0:0:0:787d:1858:1ed5:dc3e","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.0.397","Inventory Manifest Downloaded (09 Apr 2026 05:10PM GMT+0200)","09 Apr 2026 05:10PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411628774","","vrsigbmut2.sanef-rec.fr","10.45.15.69","0:0:0:0:0:0:0:1","Oracle Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:38PM GMT+0200)","22 Apr 2026 06:18AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,ENV-REC]" +"411659853","","PCB21356.sanef.groupe","10.255.2.13","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100 UBR 7623","6.4.0.397","Manifest Downloaded (30 Mar 2026 10:03AM GMT+0200)","30 Mar 2026 10:17AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411667686","","PCB18737.sanef.groupe","10.4.31.76","fe80:0:0:0:24:654c:a666:8cb1","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 10:00AM GMT+0200)","16 Apr 2026 02:46PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411668041","","PCB18405.sanef.groupe","10.252.4.19","fe80:0:0:0:4868:1075:a6b4:d3cf","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Inventory Scan Complete (27 Mar 2026 12:10PM GMT+0200)","27 Mar 2026 05:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411687552","","PCB21106.sanef.groupe","10.255.4.219","fe80:0:0:0:375d:e18b:7517:ae96","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 10:30AM GMT+0200)","20 Apr 2026 10:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411690878","","PCB21081.sanef.groupe","10.255.3.248","fe80:0:0:0:d392:f3b1:dc24:a4f4","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","5.7.0.22","Manifest Downloaded (07 Apr 2026 09:16AM GMT+0200)","07 Apr 2026 09:53AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411743506","","SVP22515.sanef-int.adds","10.182.12.29","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631","6.4.1.22","Manifest Downloaded (16 Apr 2026 09:44AM GMT+0200)","16 Apr 2026 11:47AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411840560","","PCV20924.sanef-int.adds","10.1.27.18","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Manifest Downloaded (16 Apr 2026 12:08AM GMT+0200)","16 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"411843487","","vpgrnangx1.sanf.groupe","10.41.20.86","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:44PM GMT+0200)","22 Apr 2026 05:45AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"411849639","","vpgrsangx1.sanef.groupe","10.41.20.85","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:50PM GMT+0200)","22 Apr 2026 09:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"411855378","","vpgraangx1.sanef.groupe","10.42.0.142","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 09:24PM GMT+0200)","22 Apr 2026 09:14AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-POS DYN]" +"412186586","","SVP18473.sanef-int.adds","10.212.36.29","","Windows Microsoft Windows 11 Enterprise 10.0.22631 Build 22631","6.4.0.397","Manifest Downloaded (05 Apr 2026 09:39AM GMT+0200)","05 Apr 2026 09:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412339900","","PCB17211.sanef.groupe","192.168.1.11","","Windows Microsoft Windows 11 Pro 10.0.22631 Build 22631","6.2.5.4","Manifest Downloaded (16 Apr 2026 08:52AM GMT+0200)","16 Apr 2026 08:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412358345","","PCB18119.sanef.groupe","10.255.4.224","fe80:0:0:0:9fce:2eb6:35ff:6d75","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:33AM GMT+0200)","22 Apr 2026 09:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412381024","","PCB18709.sanef.groupe","192.168.1.161","fe80:0:0:0:62bb:501e:6d5a:e46","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (21 Apr 2026 08:20AM GMT+0200)","22 Apr 2026 09:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412381382","","PCB22732.sanef.groupe","10.208.31.21","fe80:0:0:0:c8c0:4efe:19b7:2557","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (02 Apr 2026 09:46AM GMT+0200)","02 Apr 2026 10:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412386043","","PCB21356.sanef.groupe","10.101.243.1","fe80:0:0:0:e965:5213:e65e:ff70","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100","5.7.0.22","Configuration Downloaded (30 Mar 2026 12:47PM GMT+0200)","30 Mar 2026 12:47PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412386089","","PCB22719.sanef.groupe","10.255.2.157","fe80:0:0:0:91cd:5ffc:3f9a:d36c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 08:02AM GMT+0200)","22 Apr 2026 10:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412386131","","PCB21506.sanef.groupe","10.4.31.62","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:46PM GMT+0200)","22 Apr 2026 06:14AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412395439","","PCB20705.sanef.groupe","10.101.243.63","fe80:0:0:0:1a42:4ff6:ca3e:7e1c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 10:19AM GMT+0200)","22 Apr 2026 10:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412399058","","PCB18096.sanef.groupe","10.205.0.143","fe80:0:0:0:8b56:b344:39de:fc6c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:06AM GMT+0200)","21 Apr 2026 10:06AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412416235","","PCB22535.sanef.groupe","10.255.3.248","fe80:0:0:0:5fa:653e:315:954c","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Agent Downloaded (20 Apr 2026 11:16AM GMT+0200)","20 Apr 2026 11:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412426241","","PCB21348.sanef.groupe","10.220.31.29","fe80:0:0:0:beb4:794c:2b8:6813","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 12:02PM GMT+0200)","20 Apr 2026 12:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412581119","","PCB24095.sanef.groupe","10.100.39.74","fe80:0:0:0:3a7c:39b0:2302:c53b","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Manifest Downloaded (16 Apr 2026 10:58AM GMT+0200)","16 Apr 2026 04:19PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412590253","","PCB21111.sanef.groupe","10.205.0.187","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7171","6.4.1.22","Inventory Manifest Downloaded (13 Apr 2026 02:13PM GMT+0200)","21 Apr 2026 11:25AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412625287","","PAD24096.sanef-int.adds","10.252.2.18","fe80:0:0:0:368e:865a:2bf9:22bb","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","5.0.0.17","Inventory Scan Complete (31 Mar 2026 12:33PM GMT+0200)","31 Mar 2026 12:33PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412639513","","PAD24096.sanef-int.adds","10.252.2.18","fe80:0:0:0:2347:97c2:15d2:6ead","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","5.0.0.17","Manifest Downloaded (31 Mar 2026 02:02PM GMT+0200)","31 Mar 2026 02:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412651305","","PAD24096.sanef-int.adds","10.252.2.18","fe80:0:0:0:f4a3:98b5:5f7b:b895","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.0.397","Manifest Downloaded (31 Mar 2026 03:53PM GMT+0200)","31 Mar 2026 04:20PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412657468","","SVP22873.sanef-int.adds","10.252.12.201","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 3775","6.4.1.22","Inventory Scan Complete (21 Apr 2026 06:22PM GMT+0200)","22 Apr 2026 10:38AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412657480","","PCB25907.sanef.groupe","10.5.31.10","fe80:0:0:0:9745:ab9e:4872:b195","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:50AM GMT+0200)","21 Apr 2026 09:50AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412667650","","PCV22327.sanef-int.adds","10.252.2.23","fe80:0:0:0:f89b:bb0d:e850:e5f9","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100","6.4.0.397","Configuration Downloaded (31 Mar 2026 04:43PM GMT+0200)","31 Mar 2026 04:43PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412683112","","PCB25824.sanef.groupe","10.101.243.122","fe80:0:0:0:828b:6873:88ea:7a84","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:54AM GMT+0200)","22 Apr 2026 10:51AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412701712","","PCV22327.sanef-int.adds","10.252.2.23","fe80:0:0:0:6f3c:1ad8:3725:770d","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.0.397","Manifest Downloaded (02 Apr 2026 08:28AM GMT+0200)","02 Apr 2026 12:54PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"412885399","","GTC18237","10.155.210.20","","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.1.22","Inventory Scan Complete (21 Apr 2026 02:28AM GMT+0200)","21 Apr 2026 02:28AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"413090057","","PCB25860.sanef.groupe","10.205.0.105","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100","6.3.0.81","Provisioned (02 Apr 2026 11:04AM GMT+0200)","02 Apr 2026 11:04AM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413132485","","PCB18726.sanef.groupe","10.252.3.5","fe80:0:0:0:8eb7:5be7:dfe1:e723","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.0.397","Manifest Downloaded (08 Apr 2026 10:52AM GMT+0200)","08 Apr 2026 10:52AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413141831","","PCB24096.sanef.groupe","10.100.39.121","fe80:0:0:0:6742:6840:3e6e:a057","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.1.22","Agent Downloaded (20 Apr 2026 03:02PM GMT+0200)","20 Apr 2026 04:44PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413141837","","PCB21317.sanef.groupe","10.4.31.78","fe80:0:0:0:370b:f460:23ce:f467","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","Inventory Scan Complete (22 Apr 2026 02:43AM GMT+0200)","22 Apr 2026 10:34AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413142209","","PCB25901.sanef.groupe","10.252.4.10","fe80:0:0:0:6dfb:3188:9bf9:e11e","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","6.4.0.397","Configuration Downloaded (02 Apr 2026 03:18PM GMT+0200)","02 Apr 2026 03:27PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413151887","","PCV22327.sanef-int.adds","10.252.2.23","fe80:0:0:0:faea:4702:bc19:89b","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Manifest Downloaded (10 Apr 2026 05:12AM GMT+0200)","10 Apr 2026 10:12AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413156143","","PCB17220.sanef.groupe","10.252.4.8","fe80:0:0:0:be7e:df4f:7e32:2446","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.0.397","Inventory Scan Complete (03 Apr 2026 09:43AM GMT+0200)","03 Apr 2026 01:59PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413158942","","PCB21323.sanef.groupe","10.252.4.14","fe80:0:0:0:f7f3:48ad:e77b:6351","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.0.397","Manifest Downloaded (02 Apr 2026 03:27PM GMT+0200)","02 Apr 2026 03:41PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413292284","","PCB22720.sanef.groupe","10.220.30.12","fe80:0:0:0:13cf:62d3:82c9:41c5","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (14 Apr 2026 01:03PM GMT+0200)","14 Apr 2026 04:33PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413336840","","PCB22664.sanef.groupe","10.252.4.36","fe80:0:0:0:b997:c51b:9267:43b9","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.0.397","Manifest Downloaded (03 Apr 2026 12:52PM GMT+0200)","03 Apr 2026 01:14PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413355832","","vpsecapki1.sanef.groupe","10.44.3.196","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:12AM GMT+0200)","22 Apr 2026 06:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"413370586","","PCB22639.sanef.groupe","10.255.3.195","fe80:0:0:0:8981:733c:42b9:1959","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","6.4.0.397","Manifest Downloaded (08 Apr 2026 04:39PM GMT+0200)","08 Apr 2026 04:39PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413382221","","PCB22463.sanef.groupe","10.252.4.16","fe80:0:0:0:f452:8f9b:b605:d51c","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.0.397","Configuration Downloaded (03 Apr 2026 06:47PM GMT+0200)","03 Apr 2026 06:58PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413382455","","PCB22463.sanef.groupe","10.252.4.16","fe80:0:0:0:f452:8f9b:b605:d51c","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.0.397","VM Manifest Downloaded (06 Apr 2026 10:32PM GMT+0200)","07 Apr 2026 08:32AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413497258","","SVP22516.sanef-int.adds","10.182.12.29","","Windows Microsoft Windows 11 Enterprise 10.0.22631 Build 22631","6.4.1.22","Manifest Downloaded (11 Apr 2026 09:44AM GMT+0200)","11 Apr 2026 09:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413707705","","SVP22705.sanef-int.adds","10.106.18.22","","Windows Microsoft Windows 11 Enterprise 10.0.22631 Build 22631","6.3.0.81","Provisioned (06 Apr 2026 05:54AM GMT+0200)","06 Apr 2026 05:54AM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413815679","","PCV21620.sanef-int.adds","10.11.21.15","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Manifest Downloaded (08 Apr 2026 07:10AM GMT+0200)","08 Apr 2026 08:01AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413950453","","PCB23798.sanef.groupe","10.13.31.2","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 08:17AM GMT+0200)","22 Apr 2026 09:49AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413976359","","PCB18059.sanef.groupe","10.101.242.10","","Windows Microsoft Windows 11 Pro 10.0.26100 Build 26100","6.3.0.81","Manifest Downloaded (07 Apr 2026 10:26AM GMT+0200)","07 Apr 2026 10:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"413992083","","PCB22463.sanef.groupe","10.205.0.24","fe80:0:0:0:ed59:3ba2:4b6e:8548","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","Inventory Scan Complete (20 Apr 2026 09:31PM GMT+0200)","20 Apr 2026 09:31PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414023786","","MTR-H1DSNT3","10.255.6.30","fe80:0:0:0:31e4:7b71:4da0:250b","Microsoft Windows 11 IoT Enterprise 10.0.22621 64 bits N/A Build 22621 UBR 525","6.3.0.81","Manifest Downloaded (08 Apr 2026 10:44AM GMT+0200)","08 Apr 2026 11:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414038283","","PCB17874.sanef.groupe","10.255.3.171","fe80:0:0:0:989f:4a32:4d6d:5eda","Microsoft Windows 10 Entreprise 10.0.19045 64 bits N/A Build 19045 UBR 6456","6.4.0.397","Manifest Downloaded (07 Apr 2026 05:19PM GMT+0200)","07 Apr 2026 06:19PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414070005","","vpdsiasta2","192.168.19.5","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 01:47AM GMT+0200)","22 Apr 2026 09:24AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"414227504","","PCB16314.sanef.groupe","10.255.4.224","fe80:0:0:0:d75d:ffca:310b:ad7a","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.3.0.81","VM Manifest Downloaded (09 Apr 2026 10:04AM GMT+0200)","09 Apr 2026 10:40AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414230874","","PCB16298.sanef.groupe","10.255.2.205","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.3.0.81","Manifest Downloaded (09 Apr 2026 06:26AM GMT+0200)","09 Apr 2026 01:59PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414232388","","PCB23717.sanef.groupe","10.255.3.248","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 6899","6.4.1.22","Inventory Scan Complete (21 Apr 2026 12:05PM GMT+0200)","21 Apr 2026 12:05PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414263867","","PCB18726.sanef.groupe","10.200.31.57","fe80:0:0:0:3e2b:ceb5:c343:16e8","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","5.7.0.22","Inventory Scan Complete (09 Apr 2026 09:31AM GMT+0200)","09 Apr 2026 10:13AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414295899","","vrdsiasta1.recette.adds","192.168.19.20","","Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893","6.4.1.22","Inventory Scan Complete (22 Apr 2026 03:40AM GMT+0200)","22 Apr 2026 06:03AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,DMZ,OS-WIN-SRV DYN]" +"414301098","","PCB13232.sanef.groupe","10.100.39.185","","Windows Microsoft Windows 7 Enterprise 6.1.1130 Service Pack 1 Build 1130","5.6.0.20","Configuration Downloaded (20 Apr 2026 10:07AM GMT+0200)","20 Apr 2026 10:07AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414320371","","WIN-OQNRU1G2RID","10.30.6.10","","Windows Microsoft Windows Server 2022 Standard 10.0.20348 Build 20348","6.1.0.28","Provisioned (08 Apr 2026 03:16PM GMT+0200)","08 Apr 2026 03:16PM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,OS-WIN-SRV DYN]" +"414580238","","PVP18175.sanef-int.adds","10.252.2.20","fe80:0:0:0:8f45:71a5:4b0c:dc4","Windows Microsoft Windows 10 Enterprise LTSC 2019 10.0.17763 Build 17763 UBR 8511","6.4.1.22","Manifest Downloaded (09 Apr 2026 12:14PM GMT+0200)","09 Apr 2026 07:31PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414585717","","SVP21129.sanef-int.adds","10.252.2.34","","Windows Microsoft Windows 11 Enterprise 10.0.22631 Build 22631","6.3.0.81","Provisioned (09 Apr 2026 11:32AM GMT+0200)","09 Apr 2026 11:32AM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414638987","","vrpxpapps1","10.45.14.169","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:33PM GMT+0200)","22 Apr 2026 06:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"414671458","","SVP18494.sanef-int.adds","10.142.2.26","","Microsoft Windows 11 Entreprise 10.0.22631 64 bits N/A Build 22631 UBR 3447","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:44AM GMT+0200)","21 Apr 2026 11:44AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414697998","","PCB18110.sanef.groupe","10.205.0.31","fe80:0:0:0:3ffc:75af:7b20:8893","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:36PM GMT+0200)","22 Apr 2026 10:00AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414698137","","MTO22918.sanef.groupe","10.252.4.23","fe80:0:0:0:8b0e:9d7:4087:591","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.1.22","Manifest Downloaded (12 Apr 2026 05:42PM GMT+0200)","13 Apr 2026 05:42AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414893467","","SVP22848.sanef-int.adds","10.100.2.20","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100","6.1.0.28","Provisioned (10 Apr 2026 10:37AM GMT+0200)","10 Apr 2026 10:37AM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414925193","","SVP22876.sanef-int.adds","10.142.2.23","fe80:0:0:0:19a1:6373:b8b2:2e59","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:53PM GMT+0200)","22 Apr 2026 10:22AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"414970292","","MTR-FKRTL64","10.255.6.28","fe80:0:0:0:f6c0:3abe:edfe:cc4e","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Inventory Manifest Downloaded (13 Apr 2026 12:18AM GMT+0200)","13 Apr 2026 11:39AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"415400907","","PCB18064.sanef.groupe","10.205.0.17","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.4.1.22","Manifest Downloaded (16 Apr 2026 02:25PM GMT+0200)","16 Apr 2026 02:25PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"415422989","","MTO22918.sanef.groupe","10.252.4.23","fe80:0:0:0:a40e:d7dc:84bc:a650","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","6.4.1.22","Agent Downloaded (13 Apr 2026 10:02AM GMT+0200)","13 Apr 2026 10:02AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"415447090","","PCB17502.sanef.groupe","10.255.2.220","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 7623","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:45AM GMT+0200)","22 Apr 2026 10:16AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,Forescout]" +"415453544","","MTO22918.sanef.groupe","10.252.4.23","fe80:0:0:0:f875:fe3f:7a1:d64e","Windows Microsoft Windows 11 Enterprise 10.0.26200 Build 26200 UBR 8037","6.4.1.22","Manifest Downloaded (13 Apr 2026 10:53AM GMT+0200)","13 Apr 2026 02:57PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"415474522","","vpdsiangx2.sanef.groupe","192.168.19.161","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7 (Plow) 9.7","7.3.0.40","Provisioned (13 Apr 2026 02:27PM GMT+0200)","13 Apr 2026 02:27PM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"415474702","","MTR-5MRTL64","10.255.6.29","fe80:0:0:0:862f:e721:a5d1:3763","Microsoft Windows 11 IoT Enterprise 10.0.26100 64 bits N/A Build 26100 UBR 8037","6.2.5.4","Inventory Scan Complete (14 Apr 2026 11:31AM GMT+0200)","14 Apr 2026 01:00PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"415479841","","vpdsiahap2.sanef.groupe","192.168.19.133","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (13 Apr 2026 02:19PM GMT+0200)","13 Apr 2026 02:19PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"415483225","","vpdsiahap1.sanef.groupe","192.168.19.132","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (13 Apr 2026 02:13PM GMT+0200)","13 Apr 2026 02:13PM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"415486980","","vpdsiangx1.sanef.groupe","192.168.19.160","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7 (Plow) 9.7","7.3.0.40","Provisioned (13 Apr 2026 02:23PM GMT+0200)","13 Apr 2026 02:23PM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"415518160","","PCB20706.sanef.groupe","10.205.0.168","fe80:0:0:0:50f9:cf2d:20be:930","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.1.22","Inventory Scan Complete (21 Apr 2026 04:12PM GMT+0200)","22 Apr 2026 05:54AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"415580155","","SVP21613.sanef-int.adds","10.252.2.11","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100 UBR 1742","6.4.1.22","Inventory Scan Complete (22 Apr 2026 07:08AM GMT+0200)","22 Apr 2026 10:56AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"415782722","","PCB20635.sanef.groupe","10.252.4.39","fe80:0:0:0:5419:bb3:3338:4067","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.1.22","Inventory Scan Complete (22 Apr 2026 04:09AM GMT+0200)","22 Apr 2026 06:30AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"415791403","","PCB25878.sanef.groupe","10.252.4.8","fe80:0:0:0:9394:a71:a53e:c7ed","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8037","6.4.1.22","Inventory Scan Complete (16 Apr 2026 03:18AM GMT+0200)","16 Apr 2026 11:19AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"415792290","","PCB18191.sanef.groupe","10.252.4.44","fe80:0:0:0:7b1:b88f:ba98:8528","Windows Microsoft Windows 11 Enterprise 10.0.26200 Build 26200 UBR 6584","5.7.0.22","Inventory Scan Complete (14 Apr 2026 04:36PM GMT+0200)","14 Apr 2026 04:51PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"415979507","","PCM13456.sanef.groupe","10.4.50.250","fe80:0:0:0:20fb:47a2:ed39:d904","Microsoft Windows 10 Professionnel 10.0.19045 64 bits N/A Build 19045 UBR 2965","6.4.1.22","Inventory Scan Complete (16 Apr 2026 10:12AM GMT+0200)","16 Apr 2026 03:02PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation,BDD-SQL DYN]" +"416050086","","vrzbxaapp2.sanef-rec.fr","10.45.15.197","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:21AM GMT+0200)","22 Apr 2026 06:56AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"416076516","","vrzbxbpgs2.sanef-rec.fr","10.45.15.202","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:14AM GMT+0200)","22 Apr 2026 03:36AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"416426637","","PCB18191.sanef.groupe","10.100.39.90","fe80:0:0:0:fa68:8769:d5ab:917c","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.1.22","Inventory Scan Complete (21 Apr 2026 11:29AM GMT+0200)","22 Apr 2026 09:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"416465486","","PCV22761.sanef-int.adds","10.5.7.20","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100","6.2.5.4","Provisioned (16 Apr 2026 03:50PM GMT+0200)","16 Apr 2026 03:50PM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"416486588","","PCB22890.sanef.groupe","10.252.4.50","fe80:0:0:0:3a20:5cd1:ddfb:7f97","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","6.4.1.22","Inventory Scan Complete (16 Apr 2026 05:05PM GMT+0200)","16 Apr 2026 05:05PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"416487289","","vrzbxaapp1.sanef-rec.fr","10.45.15.196","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (21 Apr 2026 10:25PM GMT+0200)","22 Apr 2026 09:52AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"416488481","","vpbotatvv1.sanef.groupe","10.41.23.11","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 8.10","7.3.0.40","Inventory Scan Complete (21 Apr 2026 11:15PM GMT+0200)","22 Apr 2026 08:07AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"416728934","","PCB16134.sanef.groupe","10.252.4.5","fe80:0:0:0:5a7a:9eb1:ad03:665a","Windows Microsoft Windows 11 Enterprise 10.0.26200 Build 26200","5.7.0.22","Configuration Downloaded (17 Apr 2026 03:50PM GMT+0200)","17 Apr 2026 03:50PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"416742830","","vrzbxaprx1.sanef-rec.fr","10.45.15.207","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 01:05AM GMT+0200)","22 Apr 2026 07:39AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"416893750","","vrzbxaprx2.sanef-rec.fr","10.45.15.208","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 09:46AM GMT+0200)","22 Apr 2026 09:46AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"416897959","","vrzbxaprx3.sanef-rec.fr","192.168.10.67","0:0:0:0:0:0:0:1","Red Hat Enterprise Linux 9.7","7.3.0.40","Inventory Scan Complete (22 Apr 2026 12:36AM GMT+0200)","22 Apr 2026 07:11AM GMT+0200","Profil Server (Linux/Windows)","","PM,SCA,VM ","[Cloud Agent,Linux Server,OS-LIN-SRV DYN]" +"417328565","","PCB22818.sanef.groupe","10.105.31.6","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100","6.3.0.81","Provisioned (20 Apr 2026 07:04AM GMT+0200)","20 Apr 2026 07:04AM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"417348859","","PCB20721.sanef.groupe","10.205.0.71","fe80:0:0:0:698b:ce28:5034:84f2","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.1.22","Inventory Scan Complete (21 Apr 2026 09:34AM GMT+0200)","22 Apr 2026 09:24AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"417358618","","PCB17061.sanef.groupe","192.168.1.118","2a01:cb14:1dd:9800:285a:56e4:556b:6b26","Windows Microsoft Windows 10 Pro 10.0.19045 Build 19045","6.3.0.81","Provisioned (20 Apr 2026 09:48AM GMT+0200)","20 Apr 2026 09:48AM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"417401361","","MTO18276.sanef.groupe","10.100.39.53","fe80:0:0:0:5e5:b1aa:8bca:a346","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 8246","6.4.1.22","Inventory Scan Complete (22 Apr 2026 12:20AM GMT+0200)","22 Apr 2026 08:58AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"417403086","","PCB23600.sanef.groupe","10.255.1.199","fe80:0:0:0:67a3:87ee:8465:6652","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.1.22","Inventory Scan Complete (21 Apr 2026 10:26AM GMT+0200)","21 Apr 2026 10:26AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"417452432","","PCB17088.sanef.groupe","10.252.4.6","fe80:0:0:0:5886:ea76:52b0:1ac4","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200","6.4.1.22","Inventory Scan Complete (20 Apr 2026 06:28PM GMT+0200)","20 Apr 2026 06:28PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"417632377","","PCB24061.sanef.groupe","10.100.39.141","fe80:0:0:0:604a:4812:f2f4:922","Microsoft Windows 11 Entreprise 10.0.26200 64 bits N/A Build 26200 UBR 6584","6.4.1.22","Inventory Scan Complete (22 Apr 2026 05:31AM GMT+0200)","22 Apr 2026 05:31AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"417712350","","PCB18740.sanef.groupe","192.168.1.65","","Microsoft Windows 11 Entreprise 10.0.26100 64 bits N/A Build 26100","6.4.1.22","Inventory Scan Complete (21 Apr 2026 07:27PM GMT+0200)","21 Apr 2026 11:59PM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"417983498","","MTO22918.sanef.groupe","10.252.4.7","fe80:0:0:0:1c7f:c169:2354:6c42","Windows Microsoft Windows 11 Enterprise 10.0.26200 Build 26200","6.4.1.22","Configuration Downloaded (22 Apr 2026 10:10AM GMT+0200)","22 Apr 2026 10:10AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"417984458","","PCB17963.sanef.groupe","10.252.4.9","","Windows Microsoft Windows 10 Enterprise 10.0.19045 Build 19045","6.4.0.397","Provisioned (22 Apr 2026 09:17AM GMT+0200)","22 Apr 2026 09:17AM GMT+0200","","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"417984887","","PCB23660.sanef.groupe","10.101.243.94","fe80:0:0:0:f6ed:7250:b1fa:f13b","Windows Microsoft Windows 11 Enterprise 10.0.26200 Build 26200","5.7.0.22","Inventory Scan Complete (22 Apr 2026 10:17AM GMT+0200)","22 Apr 2026 10:57AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" +"417998396","","PCV21151.sanef-int.adds","10.209.7.20","","Windows Microsoft Windows 11 Enterprise 10.0.26100 Build 26100","6.4.1.22","Agent Downloaded (22 Apr 2026 10:04AM GMT+0200)","22 Apr 2026 10:04AM GMT+0200","Profil Workstation","","PM,SCA,VM ","[Cloud Agent,Workstation]" diff --git a/inputs/DMZ/POS-DMZ.csv - Raccourci.lnk b/inputs/DMZ/POS-DMZ.csv - Raccourci.lnk new file mode 100644 index 0000000..e5dc332 Binary files /dev/null and b/inputs/DMZ/POS-DMZ.csv - Raccourci.lnk differ diff --git a/inputs/DMZ/qualys_assets_20260422_203104.csv b/inputs/DMZ/qualys_assets_20260422_203104.csv new file mode 100644 index 0000000..ab081e5 --- /dev/null +++ b/inputs/DMZ/qualys_assets_20260422_203104.csv @@ -0,0 +1,24 @@ +Nom;IP;FQDN;OS;Status;Version;Check-in;Localisation;Tags;ID +vpaiiaazu1;192.168.230.40;vpaiiaazu1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:37:29Z;N/A;Windows Server, DOM-INF, DSI, BDD-SQL DYN, TYP-VIR, Sans, DMZ, TAG-SEI, Production, Sécurité IT, AD, Cloud Agent, ZONE-DMZ, OS-WIN-SRV DYN, ENV-PRD, OS-WIN-SRV, TAG-SRVEXPOSEINTERNET, VRF_INCONNUE;128129742 +VPAIIADNS1;192.168.2.20;VPAIIADNS1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:49:26Z;N/A;"Réseaux et Télécom, Windows Server, OS-WIN-SRV DYN, High, TAG-SRVEXPOSEINTERNET, Cloud Agent, DOM-INF, DNS, OS-WIN-SRV, ENV-PRD, Production, ZONE-DMZ, TAG-SEI, Haute, TYP-VIR, SED, DMZ, VRF_INCONNUE, Critical, Reseau & Telecom";127865511 +VPAIIADNS2;192.168.2.21;VPAIIADNS2;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:11:18Z;N/A;"DMZ, SED, ZONE-DMZ, ENV-PRD, OS-WIN-SRV, Windows Server, VRF_INCONNUE, DOM-INF, Reseau & Telecom, TAG-SEI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINTERNET, Production, High, Cloud Agent, Haute, TYP-VIR, DNS, Réseaux et Télécom, Critical";127861636 +VPAIIADNS3;192.168.2.27;VPAIIADNS3;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:09:00Z;N/A;"Haute, DNS, ENV-PRD, TYP-VIR, Production, TAG-SRVEXPOSEINTERNET, Réseaux et Télécom, SED, ZONE-DMZ, DMZ, Cloud Agent, Windows Server, OS-WIN-SRV, OS-WIN-SRV DYN, TAG-SEI, VRF_INCONNUE, DOM-INF, Critical, Reseau & Telecom, High";127861245 +VPAIIADNS4;192.168.2.28;VPAIIADNS4;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:12:20Z;N/A;"High, TYP-VIR, Réseaux et Télécom, Cloud Agent, Production, DOM-INF, DMZ, Reseau & Telecom, VRF_INCONNUE, TAG-SRVEXPOSEINTERNET, Haute, ENV-PRD, DNS, SED, OS-WIN-SRV DYN, OS-WIN-SRV, ZONE-DMZ, Windows Server, Critical, TAG-SEI";127861380 +vpbipamod1;192.168.230.19;vpbipamod1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:17:52Z;N/A;OS-WIN-SRV DYN, ENV-PRD, VRF_INCONNUE, Production, Cloud Agent, Windows Server, OS-WIN-SRV, DOM-PEA, TAG-SRVEXPOSEINTERNET, Basse, Modalisa, ZONE-DMZ, TYP-VIR, DMZ, Low, Péage, DSI, Gestion commerciale, TAG-SEI;128140111 +vpburaexc1.sanef.groupe;10.42.30.10;vpburaexc1.sanef.groupe;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:24:52Z;N/A;OS-WIN-SRV DYN, DSI, ENV-PRD, Cloud Agent, TAG-SRVEXPOSEINDIRECT, High, TYP-VIR, EXCHANGE, TAG-SEI, Windows Server, OS-WIN-SRV, DOM-INF, ZONE-DMZ;222529401 +vpburaexc2.sanef.groupe;10.42.30.30;vpburaexc2.sanef.groupe;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893;STATUS_ACTIVE;6.4.1.22;2026-04-22T14:46:49Z;N/A;EXCHANGE, Windows Server, OS-WIN-SRV, ENV-PRD, High, Cloud Agent, ZONE-DMZ, DSI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINDIRECT, TYP-VIR, TAG-SEI, DOM-INF;222570527 +vpdecasas4;10.30.11.152;vpdecasas4.sanef.groupe;Red Hat Enterprise Linux Server 7.9;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:15:00Z;N/A;DSI, Obsolete, TAG-SEI, Finances Comptabilité / Consolidation, Production, TYP-VIR, TAG-SED, Linux Server, VRF_INCONNUE, ENV-PRD, Cloud Agent, ZONE-DMZ, OS-LIN-SRV DYN, SAS, DOM-BI, OS-LIN-SRV;411394993 +vpdsiaclo1.sanef.groupe;192.168.31.19;vpdsiaclo1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:32:20Z;N/A;ENV-PRD, Owncloud, TAG-SRVEXPOSEINTERNET, TAG-SEI, ZONE-DMZ, TYP-VIR, MID-NGINX DYN, DOM-INF, TAG-SRVEXPOSEINDIRECT, VRF_INCONNUE, OS-LIN-SRV, Cloud Agent, OS-LIN-SRV DYN, Linux Server;156071801 +vpdsiawsus1;192.168.18.4;vpdsiawsus1;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:29:32Z;N/A;VRF_INCONNUE, Windows Server, BDD-SQL DYN, TAG-SRVEXPOSEINTERNET, DSI, WSUS, OS-WIN-SRV DYN, OS-WIN-SRV, TYP-VIR, TAG-SEI, Cloud Agent, ENV-PRD, DOM-INF;119198010 +vpexpbdech1.sanef.groupe;10.41.40.155;vpexpbdech1.sanef.groupe;Red Hat Enterprise Linux Server 7.9;STATUS_ACTIVE;7.3.0.40;2026-04-22T12:27:06Z;N/A;TAG-SRVEXPOSEINDIRECT, Cloud Agent, Patrimoine, OS-LIN-SRV DYN, DECHETS, OS-LIN-SRV, ServersInCyberark, VRF_TRAFIC_DC, BDD-POS DYN, DEX, TYP-VIR, TAG-SEI, Production, DOM-GES, Obsolete, ZONE-DMZ, ENV-PRD, DOM-INF, Linux Server;137346917 +vpgeoagps2;192.168.40.67;vpgeoagps2;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:04:17Z;N/A;DOM-INF, Cloud Agent, ZONE-DMZ, OS-WIN-SRV DYN, OS-WIN-SRV, TYP-VIR, TAG-SRVEXPOSEINTERNET, ENV-PRD, TAG-SEI;280014653 +vpintaweb2.sanef.groupe;192.168.20.36;vpintaweb2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T13:42:12Z;N/A;TAG-SRVEXPOSEINDIRECT, BDD-POS DYN, TYP-VIR, MID-NGINX DYN, TAG-SEI, Linux Server, ZONE-DMZ, ENV-PRD, Cloud Agent, VRF_INCONNUE, Gestion institutionnel, OS-LIN-SRV DYN, OS-LIN-SRV;159557652 +vpintaweb3.sanef.groupe;192.168.20.37;vpintaweb3.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:31:56Z;N/A;Gestion institutionnel, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, VRF_INCONNUE, TAG-SEI, Linux Server, ZONE-DMZ, Cloud Agent, OS-LIN-SRV, TYP-VIR, MID-NGINX DYN, BDD-POS DYN, ENV-PRD;159569521 +vppeaabst1.sanef.groupe;10.41.20.51;vppeaabst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:12:43Z;N/A;flux_libre, MID-NGINX DYN, ENV-PRD, Cloud Agent, OS-LIN-SRV DYN, Linux Server, ZONE-DMZ, DM-FL, Production, OS-LIN-SRV, TAG-SRVEXPOSEINDIRECT, FreeFlow, TAG-SEI, TYP-VIR, Flux Libre;192389444 +vppeaabst2.sanef.groupe;10.41.20.52;vppeaabst2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T16:28:47Z;N/A;Linux Server, ENV-PRD, Production, OS-LIN-SRV DYN, ZONE-DMZ, TYP-VIR, OS-LIN-SRV, flux_libre, DM-FL, FreeFlow, TAG-SRVEXPOSEINDIRECT, TAG-SEI, MID-NGINX DYN, Flux Libre, Cloud Agent;200012633 +vppeaabst3.sanef.groupe;10.41.20.37;vppeaabst3.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T14:54:30Z;N/A;flux_libre, TYP-VIR, FreeFlow, Linux Server, OS-LIN-SRV, ENV-PRD, MID-NGINX DYN, TAG-SEI, OS-LIN-SRV DYN, DM-FL, Cloud Agent, Flux Libre;216910714 +vpsimaxsr1;192.168.230.31;vpsimaxsr1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:30:00Z;N/A;XFB, OS-WIN-SRV DYN, DOM-PEA, TAG-SRVEXPOSEINTERNET, ZONE-DMZ, DOM-INF, TYP-VIR, DEX, TAG-SEI, ENV-PRD, OS-WIN-SRV, Cloud Agent;332979745 +vpssiandes1.sanef.groupe;192.168.162.80;vpssiandes1.sanef.groupe;Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8644;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:34:45Z;N/A;DOM-INF, Gestion_PKI, ENV-PRD, TYP-VIR, Production, Windows Server, TAG-SEI, Critical, Cloud Agent, OS-WIN-SRV, ZONE-DMZ, TAG-SRVEXPOSEINTERNET, OS-WIN-SRV DYN, DSI;225456379 +VPSSIAPKI3;192.168.90.72;VPSSIAPKI3.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T14:18:17Z;N/A;TAG-SRVEXPOSEINTERNET, DOM-INF, DMZ, OS-WIN-SRV DYN, TYP-VIR, Gestion_PKI, VRF_INCONNUE, Production, Sécurité IT, DSI, Cloud Agent, TAG-SEI, ENV-PRD, OS-WIN-SRV, Windows Server, Sans, ZONE-DMZ;128143034 +vrosapsrv1.sanef-rec.fr;10.45.9.67;vrosapsrv1.sanef-rec.fr;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:15:40Z;N/A;BDD-ELA DYN, Linux Server, TAG-SEI, MID-NGINX DYN, Cloud Agent, OS-LIN-SRV, DEX, Péage, DOM-PEA, ZONE-DMZ, ENV-REC, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, TYP-VIR;181705921 +vrsamaext1.recette.adds;192.168.10.3;vrsamaext1.recette.adds;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:29:06Z;N/A;DOM-INF, TAG-SEI, Cloud Agent, TAG-SRVEXPOSEINTERNET, ENV-REC, OS-WIN-SRV DYN, OS-WIN-SRV, TYP-VIR, ZONE-DMZ;363318959 diff --git a/inputs/DMZ/qualys_assets_20260422_203137.csv b/inputs/DMZ/qualys_assets_20260422_203137.csv new file mode 100644 index 0000000..3cfcb45 --- /dev/null +++ b/inputs/DMZ/qualys_assets_20260422_203137.csv @@ -0,0 +1,11 @@ +Nom;IP;FQDN;OS;Status;Version;Check-in;Localisation;Tags;ID +vipeahbst1.sanef.groupe;192.168.31.83;vipeahbst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:10:46Z;N/A;Recette, ENV-PPR, FreeFlow, OS-LIN-SRV DYN, TYP-VIR, Flux Libre, Cloud Agent, Linux Server, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, DM-FL, TAG-SED, ZONE-DMZ, flux_libre;238272359 +vpburaaov1.sanef.groupe;10.205.0.2;vpburaaov1.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:38:22Z;N/A;"VPN, ZONE-DMZ, OS-WIN-SRV, Compte & Acces, Windows Server, TYP-VIR, DOM-INF, ENV-PRD, TAG-SED, Production, Cloud Agent, High, OS-WIN-SRV DYN, Haute, DSI, TAG-SRVEXPOSEINTERNET";193979918 +vpburaaov2.sanef.groupe;10.205.0.3;vpburaaov2.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:10:04Z;N/A;"Haute, ZONE-DMZ, TYP-VIR, OS-WIN-SRV, VPN, Cloud Agent, TAG-SED, TAG-SRVEXPOSEINTERNET, DOM-INF, OS-WIN-SRV DYN, DSI, Compte & Acces, ENV-PRD";391586124 +vpburawap1;192.168.162.68;vpburawap1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:30:19Z;N/A;"AD, ENV-PRD, Cloud Agent, TYP-VIR, ZONE-DMZ, DMZ, DOM-INF, Production, VRF_INCONNUE, Sans, TAG-SED, OS-WIN-SRV DYN, DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, OS-WIN-SRV, Compte & Acces";128140865 +vpburawap2;192.168.162.69;vpburawap2;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:09:01Z;N/A;"DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, Production, OS-WIN-SRV, TAG-SED, DOM-INF, ZONE-DMZ, Compte & Acces, Cloud Agent, Sans, OS-WIN-SRV DYN, AD, ENV-PRD, TYP-VIR, DMZ, VRF_INCONNUE";128137865 +vpdecasas4;10.30.11.152;vpdecasas4.sanef.groupe;Red Hat Enterprise Linux Server 7.9;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:15:00Z;N/A;DSI, Obsolete, TAG-SEI, Finances Comptabilité / Consolidation, Production, TYP-VIR, TAG-SED, Linux Server, VRF_INCONNUE, ENV-PRD, Cloud Agent, ZONE-DMZ, OS-LIN-SRV DYN, SAS, DOM-BI, OS-LIN-SRV;411394993 +vpintaprx2.sanef.groupe;192.168.20.35;vpintaprx2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:20:05Z;N/A;Production, ZONE-DMZ, OS-LIN-SRV DYN, OS-LIN-SRV, ServersInCyberark, Cloud Agent, ENV-PRD, VRF_INCONNUE, Linux Server, TAG-SRVEXPOSEINTERNET, TAG-SED, Gestion institutionnel, High, TYP-VIR;338807292 +vppeahbst1.sanef.groupe;192.168.31.67;vppeahbst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:28:33Z;N/A;OS-LIN-SRV DYN, Flux Libre, DM-FL, ZONE-DMZ, flux_libre, ENV-PRD, TYP-VIR, Production, Linux Server, FreeFlow, Cloud Agent, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, TAG-SED;200710325 +vppintaprx1.sanef.groupe;192.168.20.19;vppintaprx1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:53:01Z;N/A;Cloud Agent, TAG-SRVEXPOSEINTERNET, OS-LIN-SRV DYN, TYP-VIR, TAG-SED, VRF_INCONNUE, ENV-PPR, Linux Server, OS-LIN-SRV, ZONE-DMZ, Gestion institutionnel;158184886 +vrpeahbst1.sanef-rec.fr;192.168.31.14;vrpeahbst1.sanef-rec.fr;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:21:51Z;N/A;Cloud Agent, FreeFlow, TAG-SRVEXPOSEINTERNET, Flux Libre, ZONE-DMZ, OS-LIN-SRV, TAG-SED, Recette, ENV-REC, OS-LIN-SRV DYN, flux_libre, TYP-VIR, Linux Server, DM-FL;359802333 diff --git a/inputs/DMZ/tag-sed.csv b/inputs/DMZ/tag-sed.csv new file mode 100644 index 0000000..3704f88 --- /dev/null +++ b/inputs/DMZ/tag-sed.csv @@ -0,0 +1,11 @@ +Nom;IP;FQDN;OS;Status;Version;Check-in;Localisation;Tags;ID +vipeahbst1.sanef.groupe;192.168.31.83;vipeahbst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T18:08:29Z;N/A;Recette, ENV-PPR, FreeFlow, OS-LIN-SRV DYN, EQT-VIR, Flux Libre, Cloud Agent, Linux Server, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, POS-FL, TAG-SED, POS-DMZ, flux_libre;238272359 +vpburaaov1.sanef.groupe;10.205.0.2;vpburaaov1.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:38:22Z;N/A;"VPN, POS-DMZ, OS-WIN-SRV, Compte & Acces, Windows Server, EQT-VIR, POS-INF, ENV-PRD, TAG-SED, Production, Cloud Agent, High, OS-WIN-SRV DYN, Haute, DSI, TAG-SRVEXPOSEINTERNET";193979918 +vpburaaov2.sanef.groupe;10.205.0.3;vpburaaov2.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:10:04Z;N/A;"Haute, POS-DMZ, EQT-VIR, OS-WIN-SRV, VPN, Cloud Agent, TAG-SED, TAG-SRVEXPOSEINTERNET, POS-INF, OS-WIN-SRV DYN, DSI, Compte & Acces, ENV-PRD";391586124 +vpburawap1;192.168.162.68;vpburawap1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:37:49Z;N/A;"AD, ENV-PRD, Cloud Agent, EQT-VIR, POS-DMZ, DMZ, POS-INF, Production, VRF_INCONNUE, Sans, TAG-SED, OS-WIN-SRV DYN, DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, OS-WIN-SRV, Compte & Acces";128140865 +vpburawap2;192.168.162.69;vpburawap2;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:52:54Z;N/A;"DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, Production, OS-WIN-SRV, TAG-SED, POS-INF, POS-DMZ, Compte & Acces, Cloud Agent, Sans, OS-WIN-SRV DYN, AD, ENV-PRD, EQT-VIR, DMZ, VRF_INCONNUE";128137865 +vpdsiawsus1;192.168.18.4;vpdsiawsus1;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:29:32Z;N/A;VRF_INCONNUE, Windows Server, TAG-SED, BDD-SQL DYN, TAG-SRVEXPOSEINTERNET, DSI, WSUS, OS-WIN-SRV DYN, OS-WIN-SRV, EQT-VIR, Cloud Agent, ENV-PRD, POS-INF;119198010 +vpintaprx2.sanef.groupe;192.168.20.35;vpintaprx2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:20:05Z;N/A;Production, POS-DMZ, OS-LIN-SRV DYN, OS-LIN-SRV, ServersInCyberark, Cloud Agent, ENV-PRD, VRF_INCONNUE, Linux Server, TAG-SRVEXPOSEINTERNET, TAG-SED, Gestion institutionnel, High, EQT-VIR;338807292 +vppeahbst1.sanef.groupe;192.168.31.67;vppeahbst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:28:33Z;N/A;OS-LIN-SRV DYN, Flux Libre, POS-FL, POS-DMZ, flux_libre, ENV-PRD, EQT-VIR, Production, Linux Server, FreeFlow, Cloud Agent, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, TAG-SED;200710325 +vppintaprx1.sanef.groupe;192.168.20.19;vppintaprx1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:53:01Z;N/A;Cloud Agent, TAG-SRVEXPOSEINTERNET, OS-LIN-SRV DYN, EQT-VIR, TAG-SED, VRF_INCONNUE, ENV-PPR, Linux Server, OS-LIN-SRV, POS-DMZ, Gestion institutionnel;158184886 +vrpeahbst1.sanef-rec.fr;192.168.31.14;vrpeahbst1.sanef-rec.fr;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:21:51Z;N/A;Cloud Agent, FreeFlow, TAG-SRVEXPOSEINTERNET, Flux Libre, POS-DMZ, OS-LIN-SRV, TAG-SED, Recette, ENV-REC, OS-LIN-SRV DYN, flux_libre, EQT-VIR, Linux Server, POS-FL;359802333 diff --git a/inputs/DMZ/tag-sed_new.csv b/inputs/DMZ/tag-sed_new.csv new file mode 100644 index 0000000..dd27979 --- /dev/null +++ b/inputs/DMZ/tag-sed_new.csv @@ -0,0 +1,12 @@ +"Asset ID","Host ID","Asset Name","NetBIOS Name","MAC Address","IPV4 Address","IPV6 Address","Operating System Category","Operating System","Operating System Version","Hardware Category","Hardware","CPU Count","CPU Speed (MHz)","CPU Description","Total Memory (MB)","BIOS Description","BIOS Serial Number","BIOS Asset Tag","Timezone","Last System Boot","Last Logged On User","Inventory Source","Agent ID","Inventory Created On","Inventory Last Updated On","Architecture","CriticalityScore","Modules","Tags","TruRisk Score" +"128137865","191075741","vpburawap2","VPBURAWAP2","00:50:56:82:B9:E6","192.168.162.69","fe80::e927:80d:48e6:e7ba","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-4c 46 02 42 c5 5f 4c 05-78 4f 03 0a 88 0d 03 38","NoAssetTag","'+02:00","2026-04-16T15:01:25.000+02:00","Administrateur","Cloud Agent","6d2c3536-00e7-41d7-aee3-590b64818ecf","2022-06-16T11:32:15.000+02:00","2026-04-22T20:52:53.000+02:00","64-Bit","4","SCA,VM,PM,GAV","AD,EQT-VIR,TAG-SED,OS-WIN-SRV,OS-WIN-SRV DYN,ENV-PRD,Production,Compte & Acces,Sans,DMZ,POS-INF,VRF_INCONNUE,POS-DMZ,Windows Server,Cloud Agent,TAG-SRVEXPOSEINDIRECT,DSI","0.0" +"128140865","191076817","vpburawap1","VPBURAWAP1","00:50:56:82:5B:D4","192.168.162.68","fe80::bd50:f9cc:1fde:b9c8","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 2a 26 a5 60 4a 40-8b 7a 39 2e ea 4a 33 d1","NoAssetTag","'+02:00","2026-04-15T15:45:25.000+02:00","Administrateur","Cloud Agent","cb6e3115-fd28-47a0-b69c-d38f10a466be","2022-06-16T11:55:13.000+02:00","2026-04-22T20:37:48.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,OS-WIN-SRV,POS-INF,EQT-VIR,Windows Server,TAG-SED,AD,ENV-PRD,POS-DMZ,DMZ,Production,Compte & Acces,Sans,VRF_INCONNUE,DSI,TAG-SRVEXPOSEINDIRECT","0.0" +"238272359","269262153","vipeahbst1.sanef.groupe","","00:50:56:90:10:e3","192.168.31.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 de 88 b6 2b cd 2b-3c 44 43 0e b9 e9 28 23","No Asset Tag","'+02:00","2026-04-14T10:29:18.000+02:00","cybsecope","Cloud Agent","b46fa68f-ff5c-405c-bd2d-5cad329b7181","2024-05-21T14:50:12.000+02:00","2026-04-22T20:08:28.000+02:00","x86_64","4","SCA,VM,PM,GAV","ENV-PPR,EQT-VIR,FreeFlow,OS-LIN-SRV,POS-FL,TAG-SED,OS-LIN-SRV DYN,TAG-SRVEXPOSEINTERNET,flux_libre,Flux Libre,Cloud Agent,Linux Server,POS-DMZ,Recette","132.0" +"193979918","241187013","vpburaaov1.sanef.groupe","VPBURAAOV1","00:50:56:9C:F8:67, 00:50:56:9C:29:C6","192.168.212.34,10.205.0.2","fe80::5834:ed7b:9857:836f,fe80::6cab:ada:fca1:a136","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 1c ad 2c bc b1 54 5f-f4 77 34 de 1a 89 cf 09","NoAssetTag","'+02:00","2026-03-19T11:55:38.000+02:00","SANEF.GROUPE\atrad@sanef.com","Cloud Agent","38d0f6d8-38ff-488f-91c6-e3670f7b747c","2023-10-18T09:07:27.000+02:00","2026-04-22T19:38:21.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,VPN,TAG-SED,POS-INF,POS-DMZ,EQT-VIR,OS-WIN-SRV,Compte & Acces,Cloud Agent,Windows Server,High,TAG-SRVEXPOSEINTERNET,Production,Haute,ENV-PRD","160.0" +"338807292","336780149","vpintaprx2.sanef.groupe","","00:50:56:82:0d:77","192.168.20.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 46 17 6e 3f 09 37-1d fd 03 38 fd fb 2e 79","No Asset Tag","'+02:00","2026-04-15T14:51:46.000+02:00","cybreconcile","Cloud Agent","f6767056-31a2-4cd1-9c8a-288474c49fce","2025-07-03T10:02:20.000+02:00","2026-04-22T19:20:04.000+02:00","x86_64","4","SCA,VM,GAV","POS-DMZ,OS-LIN-SRV DYN,EQT-VIR,Linux Server,Cloud Agent,TAG-SED,Gestion institutionnel,TAG-SRVEXPOSEINTERNET,OS-LIN-SRV,ENV-PRD,High,VRF_INCONNUE,Production,ServersInCyberark","132.0" +"158184886","210914051","vppintaprx1.sanef.groupe","","00:50:56:82:66:76","192.168.20.19","fe80::250:56ff:fe82:6676","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 98 5e 01 55 5c ea-d6 a7 9f f8 28 64 bc a9","No Asset Tag","'+02:00","2026-04-14T14:21:02.000+02:00","cybreconcile","Cloud Agent","7ddfba67-cd2f-4aad-85b8-b9b1d639cab3","2023-02-06T11:51:10.000+02:00","2026-04-22T20:41:15.000+02:00","x86_64","4","SCA,VM,PM,GAV","EQT-VIR,VRF_INCONNUE,TAG-SRVEXPOSEINTERNET,TAG-SED,POS-DMZ,Gestion institutionnel,OS-LIN-SRV,OS-LIN-SRV DYN,ENV-PPR,Cloud Agent,Linux Server","132.0" +"119198010","191556755","vpdsiawsus1","VPDSIAWSUS1","00:50:56:82:92:FF","192.168.18.4","fe80::820c:cb93:ba68:92d0","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 7c 98 96 cc 53 df-9a 07 61 3d 1c b5 54 8d","NoAssetTag","'+02:00","2026-04-15T15:18:13.000+02:00","kmoad-ext","Cloud Agent","a77ea24f-21a4-476a-854f-886159937d56","2022-04-01T10:18:28.000+02:00","2026-04-22T18:29:31.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,DSI,TAG-SED,OS-WIN-SRV,ENV-PRD,BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,EQT-VIR,Windows Server,POS-INF,TAG-SRVEXPOSEINTERNET,WSUS","0.0" +"391586124","357917326","vpburaaov2.sanef.groupe","VPBURAAOV2","00:50:56:9C:72:71, 00:50:56:82:FE:14","10.205.0.3,192.168.212.35","fe80::2d68:92e0:5fee:78ff,fe80::3c99:3958:38b:4ed6","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 02 3f 05 e0 87 0c 33-60 e8 a3 82 20 5d 77 6e","NoAssetTag","'+02:00","2026-04-22T17:22:22.000+02:00","CYBSECOPE","Cloud Agent","b4048677-779f-4d5f-8512-067be6107411","2026-01-13T11:07:36.000+02:00","2026-04-22T18:10:03.000+02:00","64-Bit","5","SCA,VM,PM,GAV","POS-INF,Haute,VPN,Compte & Acces,DSI,TAG-SRVEXPOSEINTERNET,TAG-SED,POS-DMZ,OS-WIN-SRV DYN,Cloud Agent,EQT-VIR,OS-WIN-SRV,ENV-PRD","130.0" +"200710325","244490967","vppeahbst1.sanef.groupe","","00:50:56:90:5f:20","192.168.31.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 24 00 49 92 a6 38-67 0d 23 53 6e bd 74 64","No Asset Tag","'+02:00","2026-04-02T06:52:57.000+02:00","cybreconcile","Cloud Agent","a87f553d-d953-4403-97c1-3f7efa4e73bb","2023-11-24T12:50:45.000+02:00","2026-04-22T20:34:32.000+02:00","x86_64","4","SCA,VM,PM,GAV","POS-DMZ,EQT-VIR,TAG-SED,TAG-SRVEXPOSEINTERNET,Cloud Agent,Linux Server,OS-LIN-SRV DYN,OS-LIN-SRV,Production,FreeFlow,Flux Libre,ENV-PRD,flux_libre,POS-FL","132.0" +"359802333","344907561","vrpeahbst1.sanef-rec.fr","","00:50:56:9c:8a:e8","192.168.31.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c e4 3c bb 93 a4 3d-cb 11 9e 0b ee 2c 91 f3","No Asset Tag","'+02:00","2026-04-08T11:05:10.000+02:00","root","Cloud Agent","bc9760af-f453-400d-a64a-5ca2536ef0a6","2025-09-15T15:57:45.000+02:00","2026-04-22T20:02:18.000+02:00","x86_64","4","SCA,VM,GAV","ENV-REC,flux_libre,TAG-SED,TAG-SRVEXPOSEINTERNET,Recette,FreeFlow,Flux Libre,OS-LIN-SRV,OS-LIN-SRV DYN,EQT-VIR,POS-FL,POS-DMZ,Linux Server,Cloud Agent","132.0" +"379881919","352998633","vpvpnaems1.sanef.groupe","","","10.43.192.125","","Linux / Unidentified","Canonical Ubuntu","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2025-11-27T20:00:09.000+02:00","2026-01-19T19:45:32.000+02:00","","2","VM,GAV","EQT-VIR,TAG-SED,POS-INF,ENV-PRD","47.0" diff --git a/inputs/DMZ/tag-sei.csv b/inputs/DMZ/tag-sei.csv new file mode 100644 index 0000000..3085508 --- /dev/null +++ b/inputs/DMZ/tag-sei.csv @@ -0,0 +1,23 @@ +Nom;IP;FQDN;OS;Status;Version;Check-in;Localisation;Tags;ID +vpaiiaazu1;192.168.230.40;vpaiiaazu1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:37:29Z;N/A;Windows Server, POS-INF, DSI, BDD-SQL DYN, EQT-VIR, Sans, DMZ, TAG-SEI, Production, Sécurité IT, AD, Cloud Agent, POS-DMZ, OS-WIN-SRV DYN, ENV-PRD, OS-WIN-SRV, TAG-SRVEXPOSEINTERNET, VRF_INCONNUE;128129742 +VPAIIADNS1;192.168.2.20;VPAIIADNS1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:49:26Z;N/A;"Réseaux et Télécom, Windows Server, OS-WIN-SRV DYN, High, TAG-SRVEXPOSEINTERNET, Cloud Agent, POS-INF, DNS, OS-WIN-SRV, ENV-PRD, Production, POS-DMZ, TAG-SEI, Haute, EQT-VIR, SED, DMZ, VRF_INCONNUE, Critical, Reseau & Telecom";127865511 +VPAIIADNS2;192.168.2.21;VPAIIADNS2;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:11:18Z;N/A;"DMZ, SED, POS-DMZ, ENV-PRD, OS-WIN-SRV, Windows Server, VRF_INCONNUE, POS-INF, Reseau & Telecom, TAG-SEI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINTERNET, Production, High, Cloud Agent, Haute, EQT-VIR, DNS, Réseaux et Télécom, Critical";127861636 +VPAIIADNS3;192.168.2.27;VPAIIADNS3;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:55:34Z;N/A;"Haute, DNS, ENV-PRD, EQT-VIR, Production, TAG-SRVEXPOSEINTERNET, Réseaux et Télécom, SED, POS-DMZ, DMZ, Cloud Agent, Windows Server, OS-WIN-SRV, OS-WIN-SRV DYN, TAG-SEI, VRF_INCONNUE, POS-INF, Critical, Reseau & Telecom, High";127861245 +VPAIIADNS4;192.168.2.28;VPAIIADNS4;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:10:03Z;N/A;"High, EQT-VIR, Réseaux et Télécom, Cloud Agent, Production, POS-INF, DMZ, Reseau & Telecom, VRF_INCONNUE, TAG-SRVEXPOSEINTERNET, Haute, ENV-PRD, DNS, SED, OS-WIN-SRV DYN, OS-WIN-SRV, POS-DMZ, Windows Server, Critical, TAG-SEI";127861380 +vpbipamod1;192.168.230.19;vpbipamod1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:17:52Z;N/A;OS-WIN-SRV DYN, ENV-PRD, VRF_INCONNUE, Production, Cloud Agent, Windows Server, OS-WIN-SRV, POS-PEA, TAG-SRVEXPOSEINTERNET, Basse, Modalisa, POS-DMZ, EQT-VIR, DMZ, Low, Péage, DSI, Gestion commerciale, TAG-SEI;128140111 +vpburaexc1.sanef.groupe;10.42.30.10;vpburaexc1.sanef.groupe;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:24:52Z;N/A;OS-WIN-SRV DYN, DSI, ENV-PRD, Cloud Agent, TAG-SRVEXPOSEINDIRECT, High, EQT-VIR, EXCHANGE, TAG-SEI, Windows Server, OS-WIN-SRV, POS-INF, POS-DMZ;222529401 +vpburaexc2.sanef.groupe;10.42.30.30;vpburaexc2.sanef.groupe;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:30:42Z;N/A;EXCHANGE, Windows Server, OS-WIN-SRV, ENV-PRD, High, Cloud Agent, POS-DMZ, DSI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINDIRECT, EQT-VIR, TAG-SEI, POS-INF;222570527 +vpdecasas4;10.30.11.152;vpdecasas4.sanef.groupe;Red Hat Enterprise Linux Server 7.9;STATUS_ACTIVE;7.3.0.40;2026-04-22T18:01:06Z;N/A;DSI, Obsolete, TAG-SEI, Finances Comptabilité / Consolidation, Production, EQT-VIR, Linux Server, VRF_INCONNUE, ENV-PRD, Cloud Agent, POS-DMZ, OS-LIN-SRV DYN, SAS, POS-BI, OS-LIN-SRV;411394993 +vpdsiaclo1.sanef.groupe;192.168.31.19;vpdsiaclo1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:32:20Z;N/A;ENV-PRD, Owncloud, TAG-SRVEXPOSEINTERNET, TAG-SEI, POS-DMZ, EQT-VIR, MID-NGINX DYN, POS-INF, TAG-SRVEXPOSEINDIRECT, VRF_INCONNUE, OS-LIN-SRV, Cloud Agent, OS-LIN-SRV DYN, Linux Server;156071801 +vpexpbdech1.sanef.groupe;10.41.40.155;vpexpbdech1.sanef.groupe;Red Hat Enterprise Linux Server 7.9;STATUS_ACTIVE;7.3.0.40;2026-04-22T12:27:06Z;N/A;TAG-SRVEXPOSEINDIRECT, Cloud Agent, Patrimoine, OS-LIN-SRV DYN, DECHETS, OS-LIN-SRV, ServersInCyberark, VRF_TRAFIC_DC, BDD-POS DYN, DEX, EQT-VIR, TAG-SEI, Production, POS-GES, Obsolete, POS-DMZ, ENV-PRD, POS-INF, Linux Server;137346917 +vpgeoagps2;192.168.40.67;vpgeoagps2;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:04:17Z;N/A;POS-INF, Cloud Agent, POS-DMZ, OS-WIN-SRV DYN, OS-WIN-SRV, EQT-VIR, TAG-SRVEXPOSEINTERNET, ENV-PRD, TAG-SEI;280014653 +vpintaweb2.sanef.groupe;192.168.20.36;vpintaweb2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:01:24Z;N/A;TAG-SRVEXPOSEINDIRECT, BDD-POS DYN, EQT-VIR, MID-NGINX DYN, TAG-SEI, Linux Server, POS-DMZ, ENV-PRD, Cloud Agent, VRF_INCONNUE, Gestion institutionnel, OS-LIN-SRV DYN, OS-LIN-SRV;159557652 +vpintaweb3.sanef.groupe;192.168.20.37;vpintaweb3.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T18:35:47Z;N/A;Gestion institutionnel, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, VRF_INCONNUE, TAG-SEI, Linux Server, POS-DMZ, Cloud Agent, OS-LIN-SRV, EQT-VIR, MID-NGINX DYN, BDD-POS DYN, ENV-PRD;159569521 +vppeaabst1.sanef.groupe;10.41.20.51;vppeaabst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T18:54:33Z;N/A;flux_libre, MID-NGINX DYN, ENV-PRD, Cloud Agent, OS-LIN-SRV DYN, Linux Server, POS-DMZ, POS-FL, Production, OS-LIN-SRV, TAG-SRVEXPOSEINDIRECT, FreeFlow, TAG-SEI, EQT-VIR, Flux Libre;192389444 +vppeaabst2.sanef.groupe;10.41.20.52;vppeaabst2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T16:28:47Z;N/A;Linux Server, ENV-PRD, Production, OS-LIN-SRV DYN, POS-DMZ, EQT-VIR, OS-LIN-SRV, flux_libre, POS-FL, FreeFlow, TAG-SRVEXPOSEINDIRECT, TAG-SEI, MID-NGINX DYN, Flux Libre, Cloud Agent;200012633 +vppeaabst3.sanef.groupe;10.41.20.37;vppeaabst3.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T14:54:30Z;N/A;flux_libre, EQT-VIR, FreeFlow, Linux Server, OS-LIN-SRV, ENV-PRD, MID-NGINX DYN, TAG-SEI, OS-LIN-SRV DYN, POS-FL, Cloud Agent, Flux Libre;216910714 +vpsimaxsr1;192.168.230.31;vpsimaxsr1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:30:00Z;N/A;XFB, OS-WIN-SRV DYN, POS-PEA, TAG-SRVEXPOSEINTERNET, POS-DMZ, POS-INF, EQT-VIR, DEX, TAG-SEI, ENV-PRD, OS-WIN-SRV, Cloud Agent;332979745 +vpssiandes1.sanef.groupe;192.168.162.80;vpssiandes1.sanef.groupe;Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8644;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:34:45Z;N/A;POS-INF, Gestion_PKI, ENV-PRD, EQT-VIR, Production, Windows Server, TAG-SEI, Critical, Cloud Agent, OS-WIN-SRV, POS-DMZ, TAG-SRVEXPOSEINTERNET, OS-WIN-SRV DYN, DSI;225456379 +VPSSIAPKI3;192.168.90.72;VPSSIAPKI3.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:10:46Z;N/A;TAG-SRVEXPOSEINTERNET, POS-INF, DMZ, OS-WIN-SRV DYN, EQT-VIR, Gestion_PKI, VRF_INCONNUE, Production, Sécurité IT, DSI, Cloud Agent, TAG-SEI, ENV-PRD, OS-WIN-SRV, Windows Server, Sans, POS-DMZ;128143034 +vrosapsrv1.sanef-rec.fr;10.45.9.67;vrosapsrv1.sanef-rec.fr;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:56:17Z;N/A;BDD-ELA DYN, Linux Server, TAG-SEI, MID-NGINX DYN, Cloud Agent, OS-LIN-SRV, DEX, Péage, POS-PEA, POS-DMZ, ENV-REC, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, EQT-VIR;181705921 +vrsamaext1.recette.adds;192.168.10.3;vrsamaext1.recette.adds;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:50:16Z;N/A;POS-INF, TAG-SEI, Cloud Agent, TAG-SRVEXPOSEINTERNET, ENV-REC, OS-WIN-SRV DYN, OS-WIN-SRV, EQT-VIR, POS-DMZ;363318959 diff --git a/inputs/bulk_dom_dmz.txt b/inputs/bulk_dom_dmz.txt new file mode 100644 index 0000000..bd3aadf --- /dev/null +++ b/inputs/bulk_dom_dmz.txt @@ -0,0 +1,30 @@ +vpdecasas4 +vipeahbst1 +vppeaabst1 +vppeaabst2 +vppeahbst1 +vrpeahbst1 +vpintaprx2 +vpintaweb2 +vpintaweb3 +vppintaprx1 +vpaiiaazu1 +vpaiiadns1 +vpaiiadns2 +vpaiiadns3 +vpaiiadns4 +vpburaaov1 +vpburaaov2 +vpburaexc1 +vpburaexc2 +vpburawap1 +vpburawap2 +vpdsiaclo1 +vpexpbdech1 +vpgeoagps2 +vpsimaxsr1 +vpssiandes1 +vpssiapki3 +vrsamaext1 +vpbipamod1 +vrosapsrv1 \ No newline at end of file diff --git a/inputs/bulk_env_dev_legacy.txt b/inputs/bulk_env_dev_legacy.txt new file mode 100644 index 0000000..5dcf8d3 --- /dev/null +++ b/inputs/bulk_env_dev_legacy.txt @@ -0,0 +1,2 @@ +vmamdpmv1 +vmamdpmv2.sanef.groupe \ No newline at end of file diff --git a/inputs/bulk_env_prd_legacy.txt b/inputs/bulk_env_prd_legacy.txt new file mode 100644 index 0000000..7d6fcf7 --- /dev/null +++ b/inputs/bulk_env_prd_legacy.txt @@ -0,0 +1,143 @@ +NALBNVR1 +RC7KMIL5 +RC7KMIL6 +RC7KRTX5 +RC7KRTX6 +bly-bly1-gc1 +bly-bly1-gc2 +bly-bly1-ves1 +bly-bly1-ves2 +ceupplu1 +lamapgis1 +lamapgis2 +lamaprac1 +lamaprac2 +lamaprac3 +lamaprac4 +lampadp1 +lampadp1-pra +lampadp2 +lampadp2-pra +lampadv1 +lampadv1-pra +lampasu1 +lampasu2 +lampcrm1 +lampcrm1-pra +lampdec1 +lampoct1 +lamppea1 +lamppea1-pra +lamppea2 +lamppea2-pra +lampsas1 +lampwaz1 +mpcecmi1 +nvr-spare-alb +nvr-spare-beu +nvr-spare-eco +nvr-spare-etv +nvr-spare-mon +nvr-spare-mtz +nvr-spare-sen +nvr-spare-tqx +rmila150 +rmilacs1 +rmilasu1 +rmilbwp1 +rmilmi2 +rmilrau1 +rmilu2k1 +rmilwdc1 +rrtxu2k1 +rsbcacs2 +rsmiasu1 +rsmiged1 +rsmimas1 +rsminas1 +rsmirau1 +rsmisvg4 +rsmiwdc1 +saroumane +vadvpapp1 +vadvpapp3 +vairtom1 +vampsycapp1 +vampsycapp2 +vampsychtp1 +vastapp1 +vburadmad1 +vburimp2 +vburwdc1 +vburwdc2 +vemvrsa3 +vemvrsa4 +vemvsym1 +vexploit2 +vmampdif1.sanef.groupe +vmampdif2.sanef.groupe +vmampgis1 +vmampgis2 +vmampgis3.sanef.groupe +vmampgis4 +vmampgis5 +vmampgtc1 +vmampgtc2 +vmamphtp1 +vmamphtp2 +vmampmet1 +vmampmet2 +vmamprdt1 +vmamprdt2 +vmampstg1 +vmampstg2 +vmampsxt1 +vmampsxt2 +vmampsxt3 +vmampsxt4 +vmampsxt5 +vmamptd1 +vmampweb1 +vmampweb2 +vmcliint1 +vmcmdb +vmipm1 +vmkemp1 +vmkemp2 +vmkemplb1 +vmkemplb2 +vmm_stl_01 +vmmgtca14c1.sanef-int.adds +vmmgtcroic1.sanef-int.adds +vmmgtctchc1.sanef-int.adds +vmmvscast1.sanef-int.adds +vmmvsccad1.sanef-int.adds +vmmvsccad2.sanef-int.adds +vmmvsccad3.sanef-int.adds +vmmvsccad4.sanef-int.adds +vmmvscdem1.sanef-int.adds +vmmvscdem2.sanef-int.adds +vmmvscdem3.sanef-int.adds +vmmvscdem4.sanef-int.adds +vmmvscdem5.sanef-int.adds +vmmvscdsi1.sanef-int.adds +vmnms1 +vmntp1.sanef.groupe +vmpgmao7.sanef.groupe +vmpki1 +vmpki2 +vmquorum1.sanef.groupe +vmradius3.sanef.groupe +vmradius4 +vmsapnrt1 +vmsccm1 +vmsym2 +vmtelotms +vmxfb1 +vmzeus.sanef.groupe +vraptcpsh1 +vsapbdd1 +vsccmr3 +vtmd +vtpataels1 +vtpatbsip1 \ No newline at end of file diff --git a/inputs/bulk_env_rec_legacy.txt b/inputs/bulk_env_rec_legacy.txt new file mode 100644 index 0000000..500ebc1 --- /dev/null +++ b/inputs/bulk_env_rec_legacy.txt @@ -0,0 +1,48 @@ +vmamrdif1.sanef.groupe +vmamrgtc1 +vmamrgtc2 +vmamrhtp1 +vmamrhtp2 +vmamrmet1 +vmamrmet2 +vmamrpmv1 +vmamrpmv2 +vmamrrdt1 +vmamrrdt2 +vmamrstg1 +vmamrstg2 +vmamrsxt1 +vmamrsxt2 +vmamrsxt3 +vmamrsxt4 +vmamrtd1.sanef.groupe +vmcmdb1 +vmcmdb2 +vmddops01.recette.adds +vmddops02.recette.adds +vmddops03.recette.adds +vmdgest01.recette.adds +vmdgest03.recette.adds +vmdgest04.recette.adds +vmdgest05.recette.adds +vmdispt01.recette.adds +vmdpeag01.recette.adds +vmdpeag02.recette.adds +vmdpeag03.recette.adds +vmdpeag04.recette.adds +vmdpeag05.recette.adds +vmdtrac01.recette.adds +vmdtrac02.recette.adds +vmdtrac04.recette.adds +vmdtrac05.recette.adds +vmdtrac06.recette.adds +vmdtrac07.recette.adds +vmdtrac08.recette.adds +vmdtrac09.recette.adds +vmdtrac10.recette.adds +vmdtrac11.recette.adds +vmdtrac12.recette.adds +vmdtrac13.recette.adds +vmdtrac14.recette.adds +vmdtrac15.recette.adds +vmrgmao7.sanef.groupe \ No newline at end of file diff --git a/inputs/bulk_tag_sed.txt b/inputs/bulk_tag_sed.txt new file mode 100644 index 0000000..92a6e65 --- /dev/null +++ b/inputs/bulk_tag_sed.txt @@ -0,0 +1,9 @@ +vipeahbst1 +vppeahbst1 +vrpeahbst1 +vpintaprx2 +vppintaprx1 +vpburaaov1 +vpburaaov2 +vpburawap1 +vpburawap2 \ No newline at end of file diff --git a/inputs/bulk_tag_sei.txt b/inputs/bulk_tag_sei.txt new file mode 100644 index 0000000..91580b7 --- /dev/null +++ b/inputs/bulk_tag_sei.txt @@ -0,0 +1,21 @@ +vpdecasas4 +vppeaabst1 +vppeaabst2 +vpintaweb2 +vpintaweb3 +vpaiiaazu1 +vpaiiadns1 +vpaiiadns2 +vpaiiadns3 +vpaiiadns4 +vpburaexc1 +vpburaexc2 +vpdsiaclo1 +vpexpbdech1 +vpgeoagps2 +vpsimaxsr1 +vpssiandes1 +vpssiapki3 +vrsamaext1 +vpbipamod1 +vrosapsrv1 \ No newline at end of file diff --git a/inputs/dom-fl.csv b/inputs/dom-fl.csv new file mode 100644 index 0000000..b8b29dd --- /dev/null +++ b/inputs/dom-fl.csv @@ -0,0 +1,221 @@ +Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application +sibocbsap2;sibocbsap2.sanef.groupe;linux;Red Hat Enterprise Linux 8.10;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +siboomcla1;siboomcla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +siboomcla2;siboomcla2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +spbocbsap1;spbocbsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +spboomcla1;spboomcla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +spboomcla2;spboomcla2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +svboomcla2;svboomcla2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vdaflbdwh1;vdaflbdwh1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow DWH BI - env DEV +vdaflbsta1;vdaflbsta1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow DWH BI - env DEV +vdbocbsap1;vdbocbsap1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +vdbocharg1;vdbocharg1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +vdbocjump1;vdbocjump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +vdbocmedi1;vdbocmedi1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +vdbocs4ci1;vdbocs4ci1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +vdbocsman1;vdbocsman1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +viaflarat1;viaflarat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow 1 +viaflbdwh1;viaflbdwh1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow DWH BI - env PREPROD +viaflbsta1;viaflbsta1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow DWH BI - env PREPROD +viaflperf1;viaflperf1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibocaprx1;vibocaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocharg1;vibocharg1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocmedi1;vibocmedi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocs4as1;vibocs4as1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocs4as2;vibocs4as2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocs4as3;vibocs4as3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocs4ci1;vibocs4ci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocsman1;vibocsman1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibooaboo1;vibooaboo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibooangx1;vibooangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibooaori1;vibooaori1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibooaori2;vibooaori2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +viboobquo1;viboobquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +viboobquo2;viboobquo2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +viboobsql1;viboobsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +viboobsql2;viboobsql2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +viboomocr1;viboomocr1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibooosea1;vibooosea1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibooosea2;vibooosea2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibotaapm1;vibotaapm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotakpi1;vibotakpi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Implémentation;secops;Flux libre A13-A14 - +vibotangx1;vibotangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotapps1;vibotapps1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotapps2;vibotapps2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotapps3;vibotapps3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotarmq1;vibotarmq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotarmq2;vibotarmq2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotarmq3;vibotarmq3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotasim1;vibotasim1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotatsp1;vibotatsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotatst1;vibotatst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotatst2;vibotatst2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotatvv1;vibotatvv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotbquo1;vibotbquo1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotbsql1;vibotbsql1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotbsql2;vibotbsql2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotbtsd1;vibotbtsd1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotcach1;vibotcach1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotreco1;vibotreco1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotreco2;vibotreco2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotreco3;vibotreco3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotreco4;vibotreco4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotrssm1;vibotrssm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotrssm2;vibotrssm2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vipeaabst1;vipeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vipeaabst2;vipeaabst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vipeaabst3;vipeaabst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;BOOST 1.0 1 1.0 +vipeaarcv1;vipeaarcv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow RCV - env PREPROD +vipeabbst2;vipeabbst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vipeabbst3;vipeabbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vipeabbst4;vipeabbst4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vipeahbst1;vipeahbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;DMZ;a_definir;Production;secops;Free Flow 1 (HA proxy A13-A14) +vipeahbst3;vipeahbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vpaflarat1;vpaflarat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow 1 +vpaflbdwh1;vpaflbdwh1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD +vpaflbsta1;vpaflbsta1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD +vpaflgsys1;vpaflgsys1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD +vpbocaprx1;vpbocaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocardp1;vpbocardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vpbocarep1;vpbocarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocasec1;vpbocasec1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocharg1;vpbocharg1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocjump1;vpbocjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocmedi1;vpbocmedi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocrsap1;vpbocrsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4as1;vpbocs4as1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4as2;vpbocs4as2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4as3;vpbocs4as3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4ci1;vpbocs4ci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocsman1;vpbocsman1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbooaboo1;vpbooaboo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooangx1;vpbooangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooaori1;vpbooaori1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooaori2;vpbooaori2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooardp1;vpbooardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooarep1;vpbooarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooarep2;vpbooarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobquo1;vpboobquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobquo2;vpboobquo2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobsql1;vpboobsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobsql2;vpboobsql2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboojump1;vpboojump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboomocr1;vpboomocr1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooosea1;vpbooosea1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooosea2;vpbooosea2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbotaapm1;vpbotaapm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotakpi1;vpbotakpi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vpbotangx1;vpbotangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotapps1;vpbotapps1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotapps2;vpbotapps2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotapps3;vpbotapps3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotardp1;vpbotardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarep1;vpbotarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarep2;vpbotarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarmq1;vpbotarmq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarmq2;vpbotarmq2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarmq3;vpbotarmq3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotasim1;vpbotasim1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotatsp1;vpbotatsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotatvv1;vpbotatvv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbquo1;vpbotbquo1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbsql1;vpbotbsql1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbsql2;vpbotbsql2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbtsd1;vpbotbtsd1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotcach1;vpbotcach1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotjump1;vpbotjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco1;vpbotreco1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco2;vpbotreco2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco3;vpbotreco3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco4;vpbotreco4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotrssm1;vpbotrssm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotrssm2;vpbotrssm2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpnitardp1;vpnitardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Implémentation;secops;Flux libre A13-A14 - +vppeaabst1;vppeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD +vppeaabst2;vppeaabst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD +vppeaabst3;vppeaabst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD +vppeaarcv1;vppeaarcv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Free Flow RCV - env PROD +vppeabbst2;vppeabbst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vppeabbst3;vppeabbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vppeabbst4;vppeabbst4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vppeahbst1;vppeahbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow 1 +vppeahbst3;vppeahbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD +vpsupacen1;vpsupacen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol1;vpsupapol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol2;vpsupapol2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol3;vpsupapol3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol4;vpsupapol4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1 +vpsupapol5;vpsupapol5.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1 +vpsupbcen1;vpsupbcen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupbmap1;vpsupbmap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupbmbi1;vpsupbmbi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vrpeahbst1;vrpeahbst1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;DMZ;a_definir;Production;secops;Free Flow 1 +vrsupacen1;vrsupacen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;Centreon 1 +vrsupbcen1;vrsupbcen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;Centreon 1 +vrsupbmap1;vrsupbmap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Centreon 1 +vrsupbmbi1;vrsupbmbi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Centreon 1 +vvaflbdwh1;vvaflbdwh1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST +vvaflblog1;vvaflblog1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow 1 +vvaflbsta1;vvaflbsta1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST +vvaflgsys1;vvaflgsys1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST +vvafljump1;vvafljump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow 1 +vvafljump2;vvafljump2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow 1 +vvaflsmtp1;vvaflsmtp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow 1 +vvbocaprx1;vvbocaprx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocarep1;vvbocarep1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocasec1;vvbocasec1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocbsap1;vvbocbsap1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.8 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocharg1;vvbocharg1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocharg2;vvbocharg2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocmedi1;vvbocmedi1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocmedi2;vvbocmedi2;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocrsap1;vvbocrsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocs4as1;vvbocs4as1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocs4as2;vvbocs4as2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocs4ci1;vvbocs4ci1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocs4ci2;vvbocs4ci2;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbooaboo1;vvbooaboo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooaboo2;vvbooaboo2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooaori1;vvbooaori1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooaori2;vvbooaori2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooarep2;vvbooarep2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvboobsql1;vvboobsql1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvboobsql2;vvboobsql2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvboojump1;vvboojump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvboomocr1;vvboomocr1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvboomocr2;vvboomocr2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooosea1;vvbooosea1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooosea2;vvbooosea2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbotaapm1;vvbotaapm1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotaapm2;vvbotaapm2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotapps1;vvbotapps1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotapps3;vvbotapps3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotarep1;vvbotarep1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotarmq1;vvbotarmq1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotarmq2;vvbotarmq2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatsp1;vvbotatsp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatsp2;vvbotatsp2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatst3;vvbotatst3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatst4;vvbotatst4.sanef-rec.fr;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatvv1;vvbotatvv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatvv2;vvbotatvv2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotbsql1;vvbotbsql1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotbsql2;vvbotbsql2.sanef-rec.fr;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotbtsd1;vvbotbtsd1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotbtsd2;vvbotbtsd2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotcach1;vvbotcach1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotcach2;vvbotcach2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotjump1;vvbotjump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotreco1;vvbotreco1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotreco2;vvbotreco2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrssc1;vvbotrssc1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrssc2;vvbotrssc2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrssm1;vvbotrssm1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrssm2;vvbotrssm2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrtms1;;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrtms2;vvbotrtms2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvpeaabst1;vvpeaabst1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow SIT - env TEST +vvpeaabst2;vvpeaabst2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow SIT - env TEST +vvpeaabst3;vvpeaabst3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0 +vvpeaarcv1;vvpeaarcv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow RCV - env TEST +vvpeaarcv2;vvpeaarcv2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow RCV - env TEST diff --git a/inputs/dom/dom-bi.csv b/inputs/dom/dom-bi.csv new file mode 100644 index 0000000..a9b3968 --- /dev/null +++ b/inputs/dom/dom-bi.csv @@ -0,0 +1,28 @@ +Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application +vdrepapbi1;vdrepapbi1.recette.adds;windows;Microsoft Windows Server 2022 Standard;BI;Recette;;a_definir;Production;secops; +vpaptbjup1;vpaptbjup1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops; +vpbipbdec1;vpbipbdec1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;BI;Production;;a_definir;Production;secops; +vpdecasas4;vpdecasas4.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;DMZ;a_definir;Production;secops;SAS 1 +vpdecasas5;vpdecasas5.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1 +vpdecasas6;vpdecasas6.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1 +vpdecasas7;vpdecasas7.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1 +vpdecasas8;vpdecasas8.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1 +vppbiadgw1;vppbiadgw1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;BI;Production;;a_definir;Production;secops; +vpsasacpt1;vpsasacpt1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasactr1;vpsasactr1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasamic1;vpsasamic1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasapil1;vpsasapil1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk1;vpsasawrk1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk2;vpsasawrk2.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk3;vpsasawrk3.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk4;vpsasawrk4.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk5;vpsasawrk5.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk6;vpsasawrk6.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vraptbjup1;vraptbjup1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);BI;Recette;;a_definir;Production;secops;Gestion Postgres 1 +vrbipbdec1;vrbipbdec1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;BI;Recette;;a_definir;Production;secops; +vrdecasas1;vrdecasas1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);BI;Recette;;a_definir;Production;secops;SAS 1 +vrdecasas2;vrdecasas2.sanef.groupe;linux;ERROR: Timeout opening channel.;BI;Recette;;a_definir;Production;secops;SAS 1 +vrdecasas3;vrdecasas3.sanef.groupe;linux;ERROR: Timeout opening channel.;BI;Recette;;a_definir;Production;secops;SAS 1 +vrdecasas4;vrdecasas4.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Recette;;a_definir;Production;secops;SAS 1 +vrdecasas5;vrdecasas5.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Recette;;a_definir;Production;secops;SAS 1 +vrpbiadgw1;vrpbiadgw1.recette.adds;windows;Microsoft Windows Server 2022 Standard;BI;Recette;;a_definir;Production;secops; diff --git a/inputs/dom/dom-fl.csv b/inputs/dom/dom-fl.csv new file mode 100644 index 0000000..b8b29dd --- /dev/null +++ b/inputs/dom/dom-fl.csv @@ -0,0 +1,221 @@ +Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application +sibocbsap2;sibocbsap2.sanef.groupe;linux;Red Hat Enterprise Linux 8.10;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +siboomcla1;siboomcla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +siboomcla2;siboomcla2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +spbocbsap1;spbocbsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +spboomcla1;spboomcla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +spboomcla2;spboomcla2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +svboomcla2;svboomcla2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vdaflbdwh1;vdaflbdwh1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow DWH BI - env DEV +vdaflbsta1;vdaflbsta1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow DWH BI - env DEV +vdbocbsap1;vdbocbsap1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +vdbocharg1;vdbocharg1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +vdbocjump1;vdbocjump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +vdbocmedi1;vdbocmedi1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +vdbocs4ci1;vdbocs4ci1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +vdbocsman1;vdbocsman1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV +viaflarat1;viaflarat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow 1 +viaflbdwh1;viaflbdwh1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow DWH BI - env PREPROD +viaflbsta1;viaflbsta1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow DWH BI - env PREPROD +viaflperf1;viaflperf1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibocaprx1;vibocaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocharg1;vibocharg1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocmedi1;vibocmedi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocs4as1;vibocs4as1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocs4as2;vibocs4as2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocs4as3;vibocs4as3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocs4ci1;vibocs4ci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibocsman1;vibocsman1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD +vibooaboo1;vibooaboo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibooangx1;vibooangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibooaori1;vibooaori1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibooaori2;vibooaori2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +viboobquo1;viboobquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +viboobquo2;viboobquo2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +viboobsql1;viboobsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +viboobsql2;viboobsql2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +viboomocr1;viboomocr1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibooosea1;vibooosea1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibooosea2;vibooosea2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD +vibotaapm1;vibotaapm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotakpi1;vibotakpi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Implémentation;secops;Flux libre A13-A14 - +vibotangx1;vibotangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotapps1;vibotapps1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotapps2;vibotapps2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotapps3;vibotapps3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotarmq1;vibotarmq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotarmq2;vibotarmq2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotarmq3;vibotarmq3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotasim1;vibotasim1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotatsp1;vibotatsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotatst1;vibotatst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotatst2;vibotatst2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotatvv1;vibotatvv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotbquo1;vibotbquo1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotbsql1;vibotbsql1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotbsql2;vibotbsql2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotbtsd1;vibotbtsd1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotcach1;vibotcach1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotreco1;vibotreco1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotreco2;vibotreco2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotreco3;vibotreco3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotreco4;vibotreco4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotrssm1;vibotrssm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vibotrssm2;vibotrssm2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD +vipeaabst1;vipeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vipeaabst2;vipeaabst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vipeaabst3;vipeaabst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;BOOST 1.0 1 1.0 +vipeaarcv1;vipeaarcv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow RCV - env PREPROD +vipeabbst2;vipeabbst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vipeabbst3;vipeabbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vipeabbst4;vipeabbst4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vipeahbst1;vipeahbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;DMZ;a_definir;Production;secops;Free Flow 1 (HA proxy A13-A14) +vipeahbst3;vipeahbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD +vpaflarat1;vpaflarat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow 1 +vpaflbdwh1;vpaflbdwh1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD +vpaflbsta1;vpaflbsta1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD +vpaflgsys1;vpaflgsys1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD +vpbocaprx1;vpbocaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocardp1;vpbocardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vpbocarep1;vpbocarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocasec1;vpbocasec1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocharg1;vpbocharg1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocjump1;vpbocjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocmedi1;vpbocmedi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocrsap1;vpbocrsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4as1;vpbocs4as1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4as2;vpbocs4as2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4as3;vpbocs4as3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4ci1;vpbocs4ci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocsman1;vpbocsman1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbooaboo1;vpbooaboo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooangx1;vpbooangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooaori1;vpbooaori1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooaori2;vpbooaori2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooardp1;vpbooardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooarep1;vpbooarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooarep2;vpbooarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobquo1;vpboobquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobquo2;vpboobquo2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobsql1;vpboobsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobsql2;vpboobsql2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboojump1;vpboojump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboomocr1;vpboomocr1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooosea1;vpbooosea1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooosea2;vpbooosea2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbotaapm1;vpbotaapm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotakpi1;vpbotakpi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vpbotangx1;vpbotangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotapps1;vpbotapps1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotapps2;vpbotapps2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotapps3;vpbotapps3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotardp1;vpbotardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarep1;vpbotarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarep2;vpbotarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarmq1;vpbotarmq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarmq2;vpbotarmq2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarmq3;vpbotarmq3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotasim1;vpbotasim1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotatsp1;vpbotatsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotatvv1;vpbotatvv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbquo1;vpbotbquo1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbsql1;vpbotbsql1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbsql2;vpbotbsql2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbtsd1;vpbotbtsd1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotcach1;vpbotcach1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotjump1;vpbotjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco1;vpbotreco1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco2;vpbotreco2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco3;vpbotreco3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco4;vpbotreco4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotrssm1;vpbotrssm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotrssm2;vpbotrssm2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpnitardp1;vpnitardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Implémentation;secops;Flux libre A13-A14 - +vppeaabst1;vppeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD +vppeaabst2;vppeaabst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD +vppeaabst3;vppeaabst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD +vppeaarcv1;vppeaarcv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Free Flow RCV - env PROD +vppeabbst2;vppeabbst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vppeabbst3;vppeabbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vppeabbst4;vppeabbst4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vppeahbst1;vppeahbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow 1 +vppeahbst3;vppeahbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD +vpsupacen1;vpsupacen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol1;vpsupapol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol2;vpsupapol2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol3;vpsupapol3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol4;vpsupapol4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1 +vpsupapol5;vpsupapol5.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1 +vpsupbcen1;vpsupbcen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupbmap1;vpsupbmap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupbmbi1;vpsupbmbi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vrpeahbst1;vrpeahbst1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;DMZ;a_definir;Production;secops;Free Flow 1 +vrsupacen1;vrsupacen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;Centreon 1 +vrsupbcen1;vrsupbcen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;Centreon 1 +vrsupbmap1;vrsupbmap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Centreon 1 +vrsupbmbi1;vrsupbmbi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Centreon 1 +vvaflbdwh1;vvaflbdwh1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST +vvaflblog1;vvaflblog1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow 1 +vvaflbsta1;vvaflbsta1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST +vvaflgsys1;vvaflgsys1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST +vvafljump1;vvafljump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow 1 +vvafljump2;vvafljump2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow 1 +vvaflsmtp1;vvaflsmtp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow 1 +vvbocaprx1;vvbocaprx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocarep1;vvbocarep1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocasec1;vvbocasec1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocbsap1;vvbocbsap1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.8 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocharg1;vvbocharg1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocharg2;vvbocharg2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocmedi1;vvbocmedi1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocmedi2;vvbocmedi2;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocrsap1;vvbocrsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocs4as1;vvbocs4as1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocs4as2;vvbocs4as2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocs4ci1;vvbocs4ci1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbocs4ci2;vvbocs4ci2;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST +vvbooaboo1;vvbooaboo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooaboo2;vvbooaboo2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooaori1;vvbooaori1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooaori2;vvbooaori2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooarep2;vvbooarep2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvboobsql1;vvboobsql1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvboobsql2;vvboobsql2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvboojump1;vvboojump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvboomocr1;vvboomocr1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvboomocr2;vvboomocr2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooosea1;vvbooosea1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbooosea2;vvbooosea2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST +vvbotaapm1;vvbotaapm1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotaapm2;vvbotaapm2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotapps1;vvbotapps1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotapps3;vvbotapps3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotarep1;vvbotarep1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotarmq1;vvbotarmq1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotarmq2;vvbotarmq2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatsp1;vvbotatsp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatsp2;vvbotatsp2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatst3;vvbotatst3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatst4;vvbotatst4.sanef-rec.fr;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatvv1;vvbotatvv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotatvv2;vvbotatvv2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotbsql1;vvbotbsql1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotbsql2;vvbotbsql2.sanef-rec.fr;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotbtsd1;vvbotbtsd1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotbtsd2;vvbotbtsd2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotcach1;vvbotcach1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotcach2;vvbotcach2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotjump1;vvbotjump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotreco1;vvbotreco1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotreco2;vvbotreco2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrssc1;vvbotrssc1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrssc2;vvbotrssc2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrssm1;vvbotrssm1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrssm2;vvbotrssm2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrtms1;;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvbotrtms2;vvbotrtms2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST +vvpeaabst1;vvpeaabst1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow SIT - env TEST +vvpeaabst2;vvpeaabst2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow SIT - env TEST +vvpeaabst3;vvpeaabst3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0 +vvpeaarcv1;vvpeaarcv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow RCV - env TEST +vvpeaarcv2;vvpeaarcv2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow RCV - env TEST diff --git a/inputs/dom/dom-gestion.csv b/inputs/dom/dom-gestion.csv new file mode 100644 index 0000000..6451118 --- /dev/null +++ b/inputs/dom/dom-gestion.csv @@ -0,0 +1,38 @@ +Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application +lpagtbpla1;lpagtbpla1;linux;Red Hat Enterprise Linux 8.10;Gestion;Production;;a_definir;Implémentation;secops;AgileTime 2.7.9 +lragtbpla1;lragtbpla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Implémentation;secops;AgileTime 2.7.9 +vdechatal3;vdechatal3.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 - Gestion ETL et des échanges +vpagtaftp1;vpagtaftp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime 2.7.9 +vpagtatse1;vpagtatse1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime - Sapn 1 +vpagtaweb1;vpagtaweb1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime - Sapn 1 +vpaiiatse2;vpaiiatse2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Gestion;Production;;a_definir;Production;secops; +vpechatre1;vpechatre1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 +vpechatre2;vpechatre2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 +vpechatre3;vpechatre3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 +vpechatre4;vpechatre4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 +vpgesbref1;vpgesbref1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops; +vpintaels1;vpintaels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1 +vpintanfs1;vpintanfs1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1 +vpintaprx2;vpintaprx2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1 +vpintaweb2;vpintaweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1 +vpintaweb3;vpintaweb3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1 +vpintbweb2;vpintbweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1 +vppintaels1;vppintaels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;;a_definir;Production;secops;Gestion site institutionnel 1 +vppintanfs1;vppintanfs1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;;a_definir;Production;secops;Gestion site institutionnel 1 +vppintaprx1;vppintaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;DMZ;a_definir;Production;secops;Gestion site institutionnel 1 +vppintaweb1;vppintaweb1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;;a_definir;Production;secops;Gestion site institutionnel 1 +vppintaweb2;vppintaweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;;a_definir;Production;secops;Gestion site institutionnel 1 +vppintbweb1;vppintbweb1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;;a_definir;Production;secops;Gestion site institutionnel 1 +vragtatse1;vragtatse1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops;AgileTime - Sapn 1 +vragtatse2;vragtatse2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops;AgileTime - HR Performance 1 +vragtaweb1;vragtaweb1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops;AgileTime - Self service sanef 1 +vraptapsh1;vraptapsh1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops;Portail Sharepoint 1 +vrdsiatse1;vrdsiatse1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops; +vrechatre1;vrechatre1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 +vrechatre2;vrechatre2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 +vrechatre3;vrechatre3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 +vrgesbref1;vrgesbref1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops; +vrintaels1;vrintaels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.6 (Ootpa);Gestion;Recette;;a_definir;Production;secops;Gestion site institutionnel 1 +vrintaprx2;vrintaprx2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops;Gestion site institutionnel 1 +vrintaweb2;vrintaweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.9 (Ootpa);Gestion;Recette;;a_definir;Production;secops;Gestion site institutionnel 1 +vrintbweb2;vrintbweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops;Gestion site institutionnel 1 diff --git a/inputs/dom/dom-infra.csv b/inputs/dom/dom-infra.csv new file mode 100644 index 0000000..bde42f8 --- /dev/null +++ b/inputs/dom/dom-infra.csv @@ -0,0 +1,369 @@ +Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application +lpgesanas1;lpgesanas1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops; +lpgesanas2;lpgesanas2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops; +lrdsibrac1;lrdsibrac1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Serveur de test et recette Oracle RAC +lrdsibrac2;lrdsibrac2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Serveur de test et recette Oracle RAC +nvr-spare-beu;nvr-spare-beu;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-eco;nvr-spare-eco;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-etv;nvr-spare-etv;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-mon;nvr-spare-mon;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-mtz;nvr-spare-mtz;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-sen;nvr-spare-sen;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-tqx;nvr-spare-tqx;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +rmilwdc1;rmilwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +rsmiwdc1;rsmiwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +spburadpe1;spburadpe1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1 +spburadpi1;spburadpi1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1 +spcybabkp1;spcybabkp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +spcybavlt1;;;;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +spcybavlt2;;;;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +specmadpr1;specmadpr1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM +specmadpr2;specmadpr2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM +specmadpr3;specmadpr3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM +spemvalog1;spemvalog1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);Infrastructure;Production;;a_definir;Production;secops;splunk 1 +sppeaanvr1;sppeaanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr10;sppeaanvr10;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr11;sppeaanvr11;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr12;sppeaanvr12;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr13;sppeaanvr13;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr14;sppeaanvr14;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr15;sppeaanvr15;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr16;sppeaanvr16;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr17;sppeaanvr17;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr18;sppeaanvr18;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr19;sppeaanvr19;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr2;sppeaanvr2;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr20;sppeaanvr20;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr21;sppeaanvr21;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr22;sppeaanvr22;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr23;sppeaanvr23;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr24;sppeaanvr24;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr25;sppeaanvr25;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr26;sppeaanvr26;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr27;sppeaanvr27;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr28;sppeaanvr28;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr29;sppeaanvr29;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr3;sppeaanvr3;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr30;sppeaanvr30;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr31;sppeaanvr31;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr32;sppeaanvr32;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr33;sppeaanvr33;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr4;sppeaanvr4;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr5;sppeaanvr5;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr6;sppeaanvr6;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr7;sppeaanvr7;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr8;sppeaanvr8;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr9;sppeaanvr9;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sptrabenr1;sptrabenr1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +sptrabenr2;sptrabenr2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +srcybabkp1;SRCYBABKP1.sanef-rec.fr;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette +srcybavlt1;srcybavlt1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette +srcybavlt2;;windows;Microsoft Windows Server 2022 Datacenter;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette +srdsiabkp1;srdsiabkp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Implémentation;secops;Gestion sauvegarde 1 +srlogbels1;srlogbels1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops; +srlogbels2;srlogbels2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops; +vburwdc1;vburwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vburwdc2;vburwdc2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vdlabaadm1;;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1 +vdlabawdc1;vdlabawdc1.tiering.dev;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1 +vdlabawdc2;vdlabawdc2;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1 +vmpki1;vmpki1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vmpki2;vmpki2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vmsym2;vmsym2;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;Symantec (Antivirus Serveur) 1 +vodsiaito1;vodsiaito1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Pré-Prod;;a_definir;Production;secops;ITOP 2.6 +vpabnanvr1;vpabnanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpabvanvr1;vpabvanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpaiia8770;vpaiia8770.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops; +vpaiiaada1;vpaiiaada1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Audit plus 1 +vpaiiaadm1;vpaiiaadm1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Manager plus 1 +vpaiiaast1;vpaiiaast1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Collecte Serveur 1 +vpaiiaazu1;vpaiiaazu1;windows;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;Infrastructure;Production;DMZ;a_definir;Production;secops; +vpaiiadba1;vpaiiadba1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion oracle 1 +vpaiiadns1;vpaiiadns1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1 +vpaiiadns2;vpaiiadns2;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1 +vpaiiadns3;vpaiiadns3;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1 +vpaiiadns4;VPAIIADNS4;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1 +vpaiiagml1;vpaiiagml1;windows;Windows 2016 Version 1607;Infrastructure;Production;;a_definir;Production;secops; +vpaiiairs1;vpaiiairs1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;IRS (Insight Repport Support) 1 +vpamlanvr1;vpamlanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpamsanvr1;vpamsanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpbckaadm1;vpbckaadm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckacse1;vpbckacse1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckacse2;vpbckacse2.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckangw1;vpbckangw1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckangw2;vpbckangw2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckangw3;vpbckangw3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckangw4;vpbckangw4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbmtanvr1;vpbmtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpbovanvr1;vpbovanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpburaadfs1;vpburaadfs1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion ADFS 1 +vpburaadfs2;vpburaadfs2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion ADFS 1 +vpburaadm1;vpburaadm1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Serveur Administration +vpburaaov1;vpburaaov1.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops; +vpburaaov2;vpburaaov2.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops; +vpburadhcp1;vpburadhcp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion DHCP 1 +vpburadhcp2;vpburadhcp2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion DHCP 1 +vpburadps1;vpburadps1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1 +vpburaexc1;vpburaexc1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Production;secops;EXCHANGE SERVER Enterprise Edition 2013 +vpburaexc2;vpburaexc2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Production;secops;EXCHANGE SERVER Enterprise Edition 2013 +vpburafax1;vpburafax1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;XMedius FAX 1 +vpburafax2;vpburafax2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;XMedius FAX 1 +vpburaimp1;vpburaimp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;PaperCut 19.1.3 (Build 52103) +vpburawap1;vpburawap1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion ADFS 1 +vpburawap2;vpburawap2;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion ADFS 1 +vpburawdc1;vpburawdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1 +vpburawdc2;vpburawdc2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1 +vpburawdc3;vpburawdc3.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1 +vpburawdc4;vpburawdc4.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1 +vpburbimp1;vpburbimp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;PaperCut 19.1.3 (Build 52103) +vpccyanvr1;vpccyanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpchtanvr1;vpchtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpcotanvr1;vpcotanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpctvanvr1;vpctvanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpcybacpm1;vpcybacpm1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;CyberArk Production +vpcybapsm1;vpcybapsm1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpcybapsm2;vpcybapsm2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpcybapsm3;vpcybapsm3.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpcybapsm4;vpcybapsm4.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpcybapsp1;vpcybapsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpcybapsp2;vpcybapsp2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpcybapta1;vpcybapta1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;CyberArk Production +vpcybapvwa1;vpcybapvwa1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpcybapvwa2;vpcybapvwa2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpdaoalic1;vpdaoalic1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;ELEC CALC 2017 +vpdsiaadm1;vpdsiaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpdsiaads1;vpdsiaads1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD SelfService plus 1 +vpdsiaans1;vpdsiaans1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsiaclo1;vpdsiaclo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;DMZ;a_definir;Production;secops;Owncloud 1 +vpdsiacol1;vpdsiacol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Collecte Serveur 1 +vpdsiadep1;vpdsiadep1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Nextcloud 31.0.7 +vpdsiagit1;vpdsiagit1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;CVS 1 +vpdsiagrd1;vpdsiagrd1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Gestion DNS 1 +vpdsiahap1;vpdsiahap1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1 +vpdsiahap2;vpdsiahap2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1 +vpdsiahap3;vpdsiahap3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1 +vpdsiahap4;vpdsiahap4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1 +vpdsiaito1;vpdsiaito1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;ITOP 2.7 +vpdsiakib1;vpdsiakib1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsiakms1;vpdsiakms1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpdsiangx1;vpdsiangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1 +vpdsiangx2;vpdsiangx2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1 +vpdsiangx3;vpdsiangx3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1 +vpdsiangx4;vpdsiangx4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1 +vpdsiarad1;vpdsiarad1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1 +vpdsiarad2;vpdsiarad2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1 +vpdsiasaf1;vpdsiasaf1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1 +vpdsiasaf2;vpdsiasaf2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1 +vpdsiasat1;vpdsiasat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsiasat2;vpdsiasat2.sanef.groupe;linux;Oracle Linux Server release 8.9;Infrastructure;Production;;a_definir;Production;secops; +vpdsiatse1;vpdsiatse1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Serveur licence TSE +vpdsiatse2;vpdsiatse2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Rebond nouvel AD +vpdsiaumds1;vpdsiaumds1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;VCENTER Server Standard 1 +vpdsiawik1;vpdsiawik1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vpdsiawsus1;vpdsiawsus1;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1 +vpdsiawsus2;vpdsiawsus2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1 +vpdsibarc1;vpdsibarc1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.6 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops; +vpdsibels1;vpdsibels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsibels2;vpdsibels2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsibetc1;vpdsibetc1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops; +vpdsibetc2;vpdsibetc2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops; +vpdsibetc3;vpdsibetc3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops; +vpdsibpmm1;vpdsibpmm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsibquo1;vpdsibquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsigrid1;vpdsigrid1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Grid control 12 +vpdsismtp1;vpdsismtp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsismtp2;vpdsismtp2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpechaetl1;vpechaetl1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpechaetl2;vpechaetl2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpechaetl3;vpechaetl3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpechaetl4;vpechaetl4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpechbetl1;vpechbetl1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;EtlTool - ordonnanceur 1 +vpecmapss1;vpecmapss1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM +vpecmapss3;vpecmapss3.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM +vpecmardp1;vpecmardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM +vpecmbsql1;vpecmbsql1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM +vpecmbsql3;vpecmbsql3.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM +vpemvasat1;vpemvasat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Red Hat Satellite Satellite +vpexpaxfb1;vpexpaxfb1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;XFB Gateway 1 +vpexpbdech1;vpexpbdech1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion de déchets +vpflmanvr1;vpflmanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpgawagtw1;vpgawagtw1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpgawagtw2;vpgawagtw2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpgawamft1;vpgawamft1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpgawamft2;vpgawamft2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpgawbpgs1;vpgawbpgs1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpgeoagps2;vpgeoagps2;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Implémentation;secops; +vpgesaquo1;vpgesaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;3PAR StoreServ (SSMC) 1 +vpgesaquo2;vpgesaquo2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops; +vpgtcawsus1;vpgtcawsus1;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1 +vphdnanvr1;vphdnanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vphrqanvr1;vphrqanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpiadaada1;vpiadaada1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Audit plus 1 +vpiadaadm1;vpiadaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Manager plus 1 +vpiadapki1;vpiadapki1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vpiadapki2;vpiadapki2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vpiadapki3;vpiadapki3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vpiadapki4;vpiadapki4.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vpiadapol1;vpiadapol1.sanef.groupe;linux;Red Hat Enterprise Linux 8 (64-bit);Infrastructure;Production;;a_definir;Production;secops;Centreon 1 +vpiadawdc1;vpiadawdc1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpiadawdc2;vpiadawdc2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpiadawdc3;vpiadawdc3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpiadawdc4;vpiadawdc4.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpiadawsus1;vpiadawsus1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1 +vpisibtel1;vpisibtel1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;ISI-COM 16.12 +vplpeanvr1;vplpeanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpmalanvr1;vpmalanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpmetaads1;vpmetaads1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;AD SelfService plus 1 +vpmetaquo1;vpmetaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;3PAR StoreServ (SSMC) 1 +vpnapamed1;vpnapamed1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpngwasia1;vpngwasia1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpngwasia2;vpngwasia2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpngwasic1;vpngwasic1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpngwasic2;vpngwasic2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpodabquo1;vpodabquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Oracle 19 (12.2.0.3) +vpormanvr1;vpormanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vppciaquo1;vppciaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;3PAR StoreServ (SSMC) 1 +vppcmardp1;vppcmardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM +vppixatsf1;vppixatsf1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS +vppixatsf2;vppixatsf2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS +vppixbams1;vppixbams1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS +vppixbams2;vppixbams2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS +vppmrames1;vppmrames1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion Radio 3RP 1 +vpppeaanvr1;vpppeaanvr1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Pré-Prod;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vppwdahap1;vppwdahap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops; +vppwdahap2;vppwdahap2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops; +vppwdapod1;vppwdapod1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vppwdapod2;vppwdapod2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vppwdbsql1;vppwdbsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpresardp1;vpresardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion switch 1 +vpresardp2;vpresardp2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion switch 1 +vpsaaanvr1;vpsaaanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpsamaext1;vpsamaext1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SAM - Gestion des Actifs Logiciels 1 +vpsdtanvr1;vpsdtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpsecausb1;vpsecausb1.sanef.groupe;linux;Ubuntu;Infrastructure;Production;;a_definir;Production;secops; +vpsecawin1;vpsecawin1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sécurité windows 1 +vpsicapol1;vpsicapol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Centreon 1 +vpsimaexp1;vpsimaexp1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;DOLLAR UNIVERSE 1 +vpsimaxsr1;vpsimaxsr1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;XFB Gateway 1 +vpsroanvr1;vpsroanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpssiandes1;vpssiandes1.sanef.groupe;windows;Windows 2019 Version 1809;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion Pki 1 +vpssiapki2;vpssiapki2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vpssiapki3;vpssiapki3.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion Pki 1 +vpstqanvr1;vpstqanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpthlanvr1;vpthlanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vptraatai1;vptraatai1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +vptraatai2;vptraatai2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +vptraazen1;vptraazen1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +vptraazen2;vptraazen2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +vptsyanvr1;vptsyanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpvidavsc1;vpvidavsc1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Logiciel gestion vidéo 1 +vpvidavsc2;vpvidavsc2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Logiciel gestion vidéo 1 +vpvpnaems1;vpvpnaems1.sanef.groupe;linux;;Infrastructure;Production;;a_definir;Implémentation;secops;FortiAnalyzer 1 +vpvpnarad1;vpvpnarad1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.3 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;VM de production pour l'authentification forte pour les accès distants SSL. +vpvpnarad2;vpvpnarad2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.3 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;VM de production pour l'authentification forte pour les accès distants SSL. +vpvsaaafl1;vpvsaaafl1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaafl2;vpvsaaafl2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaafz1;vpvsaaafz1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaafz2;vpvsaaafz2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaahp2;vpvsaaahp2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaahz2;vpvsaaahz2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaages1;vpvsaages1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaages2;vpvsaages2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaagez1;vpvsaagez1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaagez2;vpvsaagez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaiad1;vpvsaaiad1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaiad2;vpvsaaiad2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaamet1;vpvsaamet1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaamet2;vpvsaamet2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaamez1;vpvsaamez1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaamez2;vpvsaamez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaarec2;vpvsaarec2.sanef.groupe;linux;Oracle Linux Server release 8.10;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaarez2;vpvsaarez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaasia1;vpvsaasia1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaasia2;vpvsaasia2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaasic1;vpvsaasic1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaasic2;vpvsaasic2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsampci1;vpvsampci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsampci2;vpvsampci2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vraiibpgs4;vraiibpgs4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vraiibpgs5;vraiibpgs5.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vraiibsql3;vraiibsql3;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Recette;;a_definir;Production;secops; +vrcybacpm1;vrcybacpm1.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette +vrcybapsm1;vrcybapsm1.recette.adds;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette +vrcybapsm2;vrcybapsm2.recette.adds;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette +vrcybapsp1;vrcybapsp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;CyberArk 1 +vrcybapsp2;vrcybapsp2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;CyberArk 1 +vrcybapta1;vrcybapta1.sanef-rec.fr;linux;;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette +vrcybapvwa1;vrcybapvwa1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette +vrcybapvwa2;vrcybapvwa2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette +vrdsiaada1;vrdsiaada1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;AD Audit plus 1 +vrdsiaadg1;vrdsiaadg1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;AD Manager plus 1 +vrdsiaadm1;vrdsiaadm1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1 +vrdsiaans1;vrdsiaans1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vrdsiaazu1;vrdsiaazu1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops; +vrdsiaazu2;vrdsiaazu2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops; +vrdsiadep1;vrdsiadep1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.6 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Nextcloud 31.0.7 +vrdsiadev1;vrdsiadev1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Développement;;a_definir;Production;secops;Collecte Serveur 1 +vrdsiagit1;vrdsiagit1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;GitLab 17.5 +vrdsiahax1;vrdsiahax1;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Implémentation;secops; +vrdsiahax2;vrdsiahax2;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Implémentation;secops; +vrdsiaito1;vrdsiaito1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;ITOP 2.6 +vrdsiakms1;vrdsiakms1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1 +vrdsialab1;vrdsialab1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops; +vrdsialab2;vrdsialab2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops; +vrdsiarad1;vrdsiarad1.sanef-rec.fr;linux;;Infrastructure;Recette;;a_definir;Production;secops;Radius 1 +vrdsiarad2;vrdsiarad2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Radius 1 +vrdsiasaf1;vrdsiasaf1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Radius 1 +vrdsiasaf2;vrdsiasaf2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Radius 1 +vrdsiasat1;vrdsiasat1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Red Hat Satellite Satellite +vrdsiascr1;vrdsiascr1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Nextcloud 31.0.7 +vrdsiawsus1;vrdsiawsus1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1 +vrdsibans1;vrdsibans1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vrdsibarc1;vrdsibarc1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.6 (Plow);Infrastructure;Recette;;a_definir;Production;secops; +vrdsibetc1;vrdsibetc1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Gestion Postgres 1 +vrdsibetc2;vrdsibetc2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Gestion Postgres 1 +vrdsibetc3;vrdsibetc3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Gestion Postgres 1 +vrdsibsql1;vrdsibsql1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Gestion Postgres 1 +vrdsismtp1;vrdsismtp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vrdsismtp2;vrdsismtp2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vrechaetl1;vrechaetl1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops; +vrechaetl2;vrechaetl2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops; +vrechbetl1;vrechbetl1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;EtlTool - ordonnanceur 1 +vrecmadpr1;vrecmadpr1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;SCCM 1 +vrecmapss1;vrecmapss1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Implémentation;secops;SCCM MECM +vrecmbsql1;vrecmbsql1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Implémentation;secops;SCCM MECM +vrgawagtw1;vrgawagtw1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vrgawamft1;vrgawamft1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vrgawbpgs1;vrgawbpgs1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vriadapki1;vriadapki1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Gestion Pki 1 +vriadapki2;vriadapki2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Gestion Pki 1 +vriadapki3;vriadapki3.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Gestion Pki 1 +vriadawdc1;vriadawdc1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1 +vriadawdc2;vriadawdc2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1 +vriadawdc3;vriadawdc3.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1 +vrlogaagt1;vrlogaagt1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Gestion des logs 1 +vrlogakib1;vrlogakib1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops; +vrlogbels1;vrlogbels1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops; +vrlogbels2;vrlogbels2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops; +vrlogbquo1;vrlogbquo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops; +vrnmsatse1;vrnmsatse1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Recette;;a_definir;Production;secops;U2000 1 +vrpwdahap1;vrpwdahap1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Implémentation;secops; +vrpwdapod1;vrpwdapod1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Implémentation;secops; +vrresardp1;vrresardp1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops; +vrsamaext1;vrsamaext1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;DMZ;a_definir;Production;secops;SAM - Gestion des Actifs Logiciels 1 +vrvidanvr1;vrvidanvr1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1 +vrvidanvr2;vrvidanvr2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1 +vrvidavsc1;vrvidavsc1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1 +vrvidavsc2;vrvidavsc2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1 +vrvpnaaov1;vrvpnaaov1.recette.adds;windows;Windows 2016 Version 1607;Infrastructure;Recette;;a_definir;Implémentation;secops; +vrvpnaaov2;vrvpnaaov2.recette.adds;windows;Windows 2016 Version 1607;Infrastructure;Recette;;a_definir;Implémentation;secops; +vtdsiaels1;vtdsiaels1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Test;;a_definir;Production;secops;Serveur de Test +vtdsiaels2;vtdsiaels2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Test;;a_definir;Production;secops;Serveur de Test +vtdsiakib1;vtdsiakib1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Test;;a_definir;Production;secops;Serveur de Test +vtdsiaquo1;vtdsiaquo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Test;;a_definir;Production;secops;Serveur de Test +vtdsiatmp1;vtdsiatmp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Collecte Serveur 1 +vtdsibpgs1;vtdsibpgs1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Serveur de test pour les DBA +vtdsibpgs2;vtdsibpgs2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vtdsibpgs3;vtdsibpgs3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Serveur de test pour les DBA +vtdsibpmm1;vtdsibpmm1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; +vtdsibquo1;vtdsibquo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops; diff --git a/inputs/dom/dom-pea.csv b/inputs/dom/dom-pea.csv new file mode 100644 index 0000000..a5d54c5 --- /dev/null +++ b/inputs/dom/dom-pea.csv @@ -0,0 +1,192 @@ +Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application +lrpeabsip1;lrpeabsip1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops; +ls-abbeville-est;ls-abbeville-est;windows;Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-abbeville-nord;LS-ABBEVILLE-NORD;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-amblainville;ls-amblainville;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-amiens-nord;ls-amiens-nord;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-amiens-ouest;ls-amiens-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-amiens-sud;ls-amiens-sud;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-arras;ls-arras;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-arsy;ls-arsy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-athies;ls-athies;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-aumale-est;ls-aumale-est;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-aumale-ouest;ls-aumale-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-bapaume;ls-bapaume;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-beaumont;ls-beaumont;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-beautot;ls-beautot;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-beauvais-centre;ls-beauvais-centre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-beauvais-nord;ls-beauvais-nord;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-berck;ls-berck;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-bethune;ls-bethune;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-bolbec;ls-bolbec;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-bonsecours;ls-bonsecours;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-boulay-psb;ls-boulay-psb;windows;Microsoft Windows Server 2016 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-boulogne;ls-boulogne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-bouville;ls-bouville;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +ls-bretonneux;ls-bretonneux;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-cambrai;ls-cambrai;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-chamant;ls-chamant;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-chamant2;ls-chamant2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-charmont;ls-charmont;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-chateau-thierry;ls-chateau-thierry;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-chevrieres;ls-chevrieres;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-clermont-en-arg;ls-clermont-en-arg;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-cote-picarde;ls-cote-picarde;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-cottevrard;ls-cottevrard;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-courbes;ls-courbes;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-courcy;ls-courcy;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-coutevroult;ls-coutevroult;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-dormans;ls-dormans;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-essertaux;ls-essertaux;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-farebersviller;ls-farebersviller;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-fecamp;ls-fecamp;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-fresnes;ls-fresnes;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-fresnes-en-woevre;ls-fresnes-en-woevre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-gauchy;ls-gauchy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-hardivilliers;ls-hardivilliers;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-haudricourt;ls-haudricourt;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-herquelingue;ls-herquelingue;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-hochfelden;ls-hochfelden;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-hochfelden-ouest;ls-hochfelden-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-hordain;ls-hordain;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-jarny;ls-jarny;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-jules-verne;ls-jules-verne;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-la-neuvillette;ls-la-neuvillette;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-la-vallee;ls-la-vallee;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-la-veuve-mourmelon;ls-la-veuve-mourmelon;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-la-veuve-reims;ls-la-veuve-reims;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-laon;ls-laon;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-le-touquet;ls-le-touquet;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-lievin;ls-lievin;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-lillers;ls-lillers;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-loupershouse;ls-loupershouse;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-marquion;ls-marquion;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-masnieres;ls-masnieres;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-maurepas;ls-maurepas;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-meru;ls-meru;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-mont-choisy;ls-mont-choisy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-montreuil-bpv;ls-montreuil-bpv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-montreuil-bretelle;ls-montreuil-bretelle;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-montreuil-reims;ls-montreuil-reims;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-neufchatel;ls-neufchatel;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-noeux-les-mines;ls-noeux-les-mines;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-nordausques;ls-nordausques;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-ormes;ls-ormes;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-phalsbourg;ls-phalsbourg;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-plateau;ls-plateau;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-poix-de-picardie;ls-poix-de-picardie;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-portes-vignoble;ls-portes-vignoble;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-puttelange;ls-puttelange;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-ressons;ls-ressons;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-rn29;ls-rn29;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-roye;ls-roye;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-santerre;ls-santerre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-sarre-union;ls-sarre-union;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-sarreguemines;ls-sarreguemines;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-saverne;ls-saverne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-schwindratzheim;ls-schwindratzheim-clone;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-setques;ls-setques;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-sommesous;ls-sommesous;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-alb;ls-spare-alb;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +ls-spare-beu;ls-spare-beu;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-eco;ls-spare-eco;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-etv;ls-spare-etv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-mon;ls-spare-mon;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-mtz;ls-spare-mtz;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-sen;ls-spare-sen;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-tqx;ls-spare-tqx;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-srom-bpv;ls-srom-bpv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-srom-ferme;ls-srom-ferme;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-srom-ouvert;ls-srom-ouvert;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-avold-a;ls-st-avold-a;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-avold-b;ls-st-avold-b;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-etienne;ls-st-etienne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-gibrien;ls-st-gibrien;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-jean;ls-st-jean;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-omer;ls-st-omer;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-omer2;ls-st-omer2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-witz;ls-st-witz;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-ste-marie;ls-ste-marie;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-ste-menehould;ls-ste-menehould;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-taissy;ls-taissy;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-thelus;ls-thelus;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-therouanne;ls-therouanne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-thillois;ls-thillois;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vallee-de-l-aisne;ls-vallee-de-l-aisne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vallee-de-l-aube;ls-vallee-de-l-aube;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vallee-nievre;ls-vallee-nievre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vallee-somme;ls-vallee-somme;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vatry;ls-vatry;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vemars-ouest;ls-vemars-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-verdun;ls-verdun;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-voie-sacree;ls-voie-sacree;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-yerville;ls-yerville;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-yvetot;ls-yvetot;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +nvr-spare-alb;nvr-spare-alb;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vdosapsrv1;vdosapsrv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP +viosapapp1;viosapapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Pré-Prod;;a_definir;Production;secops;OSAP +viosapast1;viosapast1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Pré-Prod;;a_definir;Production;secops;OSAP +viosapels1;viosapels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Pré-Prod;;a_definir;Production;secops;OSAP +viosapels2;viosapels2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Pré-Prod;;a_definir;Production;secops;OSAP +viosapquo1;viosapquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Pré-Prod;;a_definir;Production;secops;OSAP +vpadvaapp1;vpadvaapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Implémentation;secops;ADV-U facturation sanef 1.29g +vpadvangx1;vpadvangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;Interface API REST pour ERP5 1 +vpalbanvr1;vpalbanvr1;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpbipamod1;vpbipamod1;windows;Windows 2016 Version 1607;Péage;Production;DMZ;a_definir;Production;secops;Modalisa 1 +vpboeacst1;vpboeacst1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops; +vposapapp1;vposapapp1.sanef.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP +vposapast1;vposapast1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP +vposapels1;vposapels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP +vposapels2;vposapels2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP +vposapexp1;vposapexp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Implémentation;secops;OSAP +vposapkib1;vposapkib1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP 1.0 +vposapmet1;vposapmet1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Implémentation;secops;OSAP +vposapquo1;vposapquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP +vppboeacst1;vppboeacst1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops; +vppeaaadm1;vppeaaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vppeaaexp1;vppeaaexp1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vppeaaref1;vppeaaref1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vppeaaref2;vppeaaref2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vppeaaref4;vppeaaref4;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vpppeaaref1;vpppeaaref1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vpppeaasvp1;vpppeaasvp1.sanef-int.adds;windows;Microsoft Windows Server 2019 Datacenter;Péage;Pré-Prod;;a_definir;Production;secops;SVP sanef 1 +vprpaangx1;vprpaangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1 +vprpnangx1;vprpnangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1 +vprpsangx1;vprpsangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1 +vpsimasvp1;vpsimasvp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Péage;Production;;a_definir;Production;secops;Free Flow 1 +vradvaapp1;vradvaapp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;ADV-U facturation sanef 1.29g +vradvangx1;vradvangx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;Interface API REST pour ERP5 1 +vraiiavid1;vraiiavid1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Péage;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1 +vraiiavid2;vraiiavid2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Péage;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1 +vrboeacst1;vrboeacst1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Recette;;a_definir;Production;secops; +vrffbagsim1;vrffbagsim1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Recette;;a_definir;Production;secops;Free Flow Boulay +vrgrsangx1;vrgrsangx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Recette;;a_definir;Production;secops; +vrosapapp1;vrosapapp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.0 +vrosapast1;vrosapast1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.1 +vrosapels1;vrosapels1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.0 +vrosapels2;vrosapels2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.0 +vrosapkib1;vrosapkib1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.0 +vrosapquo1;vrosapquo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.0 +vrosapsrv1;vrosapsrv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;DMZ;a_definir;Production;secops;OSAP +vrpeaabst1;vrpeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0 +vrpeaabst2;vrpeaabst2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0 +vrpeaakib1;vrpeaakib1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0 +vrpeaaref1;vrpeaaref1.recette.adds;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrpeabbst1;vrpeabbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0 +vrpeabbst2;vrpeabbst2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0 +vrrpaangx1;vrrpaangx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Recette;;a_definir;Production;secops;Référentiel Péage A150 Albéa 1 +vrrpnangx1;vrrpnangx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Recette;;a_definir;Production;secops;Référentiel Péage Sanef 1 +vrrpsangx1;vrrpsangx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Recette;;a_definir;Production;secops;Référentiel Péage sapn 1 +vrsvpaalb1;vrsvpaalb1.sanef-rec.fr;windows;Microsoft Windows Server 2019 Datacenter;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrsvpacli1;vrsvpacli1;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrsvpadev1;vrsvpadev1;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrsvpaffb1;vrsvpaffb1.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrsvpaosap1;vrsvpaosap1.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;OSAP +vrsvpapar1;vrsvpapar1;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrsvpapar2;vrsvpapar2.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrsvpasan1;vrsvpasan1.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrsvpasan2;vrsvpasan2.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrsvpasan3;vrsvpasan3.sanef-rec.fr;windows;Microsoft Windows Server 2019 Datacenter;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrsvpasap1;vrsvpasap1;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrsvpasap2;vrsvpasap2.sanef-rec.fr;windows;Microsoft Windows Server 2019 Datacenter;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 +vrsvpatst1;vrsvpatst1;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1 diff --git a/inputs/dom_inf_rule.txt b/inputs/dom_inf_rule.txt new file mode 100644 index 0000000..80a241a --- /dev/null +++ b/inputs/dom_inf_rule.txt @@ -0,0 +1 @@ +asset.name:lpges* or asset.name:lrdsi* or asset.name:nvr-s* or asset.name:rmilw* or asset.name:rsmiw* or asset.name:spbur* or asset.name:spcyb* or asset.name:specm* or asset.name:spemv* or asset.name:sppea* or asset.name:sptra* or asset.name:srcyb* or asset.name:srdsi* or asset.name:srlog* or asset.name:vburw* or asset.name:vdlab* or asset.name:vmpki* or asset.name:vmsym* or asset.name:vodsi* or asset.name:vpabn* or asset.name:vpabv* or asset.name:vpaii* or asset.name:vpaml* or asset.name:vpams* or asset.name:vpbck* or asset.name:vpbmt* or asset.name:vpbov* or asset.name:vpbur* or asset.name:vpccy* or asset.name:vpcht* or asset.name:vpcot* or asset.name:vpctv* or asset.name:vpcyb* or asset.name:vpdao* or asset.name:vpdsi* or asset.name:vpech* or asset.name:vpecm* or asset.name:vpemv* or asset.name:vpexp* or asset.name:vpflm* or asset.name:vpgaw* or asset.name:vpgeo* or asset.name:vpges* or asset.name:vpgtc* or asset.name:vphdn* or asset.name:vphrq* or asset.name:vpiad* or asset.name:vpisi* or asset.name:vplpe* or asset.name:vpmal* or asset.name:vpmet* or asset.name:vpnap* or asset.name:vpngw* or asset.name:vpoda* or asset.name:vporm* or asset.name:vppci* or asset.name:vppcm* or asset.name:vppix* or asset.name:vppmr* or asset.name:vpppe* or asset.name:vppwd* or asset.name:vpres* or asset.name:vpsaa* or asset.name:vpsam* or asset.name:vpsdt* or asset.name:vpsec* or asset.name:vpsic* or asset.name:vpsim* or asset.name:vpsro* or asset.name:vpssi* or asset.name:vpstq* or asset.name:vpthl* or asset.name:vptra* or asset.name:vptsy* or asset.name:vpvid* or asset.name:vpvpn* or asset.name:vpvsa* or asset.name:vraii* or asset.name:vrcyb* or asset.name:vrdsi* or asset.name:vrech* or asset.name:vrecm* or asset.name:vrgaw* or asset.name:vriad* or asset.name:vrlog* or asset.name:vrnms* or asset.name:vrpwd* or asset.name:vrres* or asset.name:vrsam* or asset.name:vrvid* or asset.name:vrvpn* or asset.name:vtdsi* \ No newline at end of file diff --git a/inputs/dom_inf_rule_v2.txt b/inputs/dom_inf_rule_v2.txt new file mode 100644 index 0000000..6a160d7 --- /dev/null +++ b/inputs/dom_inf_rule_v2.txt @@ -0,0 +1 @@ +(asset.name:lpges* or asset.name:lrdsi* or asset.name:nvr-s* or asset.name:rmilw* or asset.name:rsmiw* or asset.name:spbur* or asset.name:spcyb* or asset.name:specm* or asset.name:spemv* or asset.name:sppea* or asset.name:sptra* or asset.name:srcyb* or asset.name:srdsi* or asset.name:srlog* or asset.name:vburw* or asset.name:vdlab* or asset.name:vmpki* or asset.name:vmsym* or asset.name:vodsi* or asset.name:vpabn* or asset.name:vpabv* or asset.name:vpaii* or asset.name:vpaml* or asset.name:vpams* or asset.name:vpbck* or asset.name:vpbmt* or asset.name:vpbov* or asset.name:vpbur* or asset.name:vpccy* or asset.name:vpcht* or asset.name:vpcot* or asset.name:vpctv* or asset.name:vpcyb* or asset.name:vpdao* or asset.name:vpdsi* or asset.name:vpech* or asset.name:vpecm* or asset.name:vpemv* or asset.name:vpexp* or asset.name:vpflm* or asset.name:vpgaw* or asset.name:vpgeo* or asset.name:vpges* or asset.name:vpgtc* or asset.name:vphdn* or asset.name:vphrq* or asset.name:vpiad* or asset.name:vpisi* or asset.name:vplpe* or asset.name:vpmal* or asset.name:vpmet* or asset.name:vpnap* or asset.name:vpngw* or asset.name:vpoda* or asset.name:vporm* or asset.name:vppci* or asset.name:vppcm* or asset.name:vppix* or asset.name:vppmr* or asset.name:vpppe* or asset.name:vppwd* or asset.name:vpres* or asset.name:vpsaa* or asset.name:vpsam* or asset.name:vpsdt* or asset.name:vpsec* or asset.name:vpsic* or asset.name:vpsim* or asset.name:vpsro* or asset.name:vpssi* or asset.name:vpstq* or asset.name:vpthl* or asset.name:vptra* or asset.name:vptsy* or asset.name:vpvid* or asset.name:vpvpn* or asset.name:vpvsa* or asset.name:vraii* or asset.name:vrcyb* or asset.name:vrdsi* or asset.name:vrech* or asset.name:vrecm* or asset.name:vrgaw* or asset.name:vriad* or asset.name:vrlog* or asset.name:vrnms* or asset.name:vrpwd* or asset.name:vrres* or asset.name:vrsam* or asset.name:vrvid* or asset.name:vrvpn* or asset.name:vtdsi*) and not (asset.name:vpaiiat* or asset.name:vrdsiat* or asset.name:vpgesb* or asset.name:vpechat* or asset.name:vrechat* or asset.name:vdechat* or asset.name:vpsimas* or asset.name:vpppear* or asset.name:vpppeas* or asset.name:vpbipa* or asset.name:vraiia* or asset.name:vraptb*) \ No newline at end of file diff --git a/inputs/emv-servers.csv b/inputs/emv-servers.csv new file mode 100644 index 0000000..ee98684 --- /dev/null +++ b/inputs/emv-servers.csv @@ -0,0 +1,35 @@ +Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application +lpemvaste1;lpemvaste1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvaste2;lpemvaste2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvaste3;lpemvaste3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvaste4;lpemvaste4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvaste5;lpemvaste5.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvaste6;lpemvaste6.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvbaemv1;lpemvbaemv1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops; +lpemvbpemv1;lpemvbpemv1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops; +lpemvbpemv2;lpemvbpemv2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops; +lpemvbpemv3;lpemvbpemv3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops; +lpemvbpemv4;lpemvbpemv4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops; +lremvaste1;lremvaste1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Recette;;a_definir;Production;secops;EMV V17 17 +lremvaste2;lremvaste2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Recette;;a_definir;Production;secops;EMV V17 17 +lremvaste3;lremvaste3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Recette;;a_definir;Production;secops;EMV V17 17 +lremvbremv1;lremvbremv1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Recette;;a_definir;Production;secops; +lremvbremv2;lremvbremv2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Recette;;a_definir;Production;secops; +spemvalog1;spemvalog1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);Infrastructure;Production;;a_definir;Production;secops;splunk 1 +vemvrsa3;vemvrsa3.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops; +vemvrsa4;vemvrsa4.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops; +vemvsym1;vemvsym1;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpemvaadm1;vpemvaadm1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpemvaftp1;vpemvaftp1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpemvagtw1;vpemvagtw1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpemvaldap1;vpemvaldap1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpemvaldap2;vpemvaldap2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpemvantp1;vpemvantp1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpemvantp2;vpemvantp2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpemvapol1;vpemvapol1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpemvasat1;vpemvasat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Red Hat Satellite Satellite +vpemvatse1;vpemvatse1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV Rebond +vpemvatse2;vpemvatse2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV Rebond +vpemvawsus1;vpemvawsus1;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpemvaxsr1;vpemvaxsr1;windows;Microsoft Windows Server 2012 R2 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpemvgrid1;vpemvgrid1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 diff --git a/inputs/legacy_prd_hostnames.txt b/inputs/legacy_prd_hostnames.txt new file mode 100644 index 0000000..3d8a46a --- /dev/null +++ b/inputs/legacy_prd_hostnames.txt @@ -0,0 +1,129 @@ +NALBNVR1 +RC7KMIL5 +RC7KMIL6 +RC7KRTX5 +RC7KRTX6 +bly-bly1-gc1 +bly-bly1-gc2 +bly-bly1-ves1 +bly-bly1-ves2 +ceupplu1 +lamapgis1 +lamapgis2 +lamaprac1 +lamaprac2 +lamaprac3 +lamaprac4 +lampadp1 +lampadp1-pra +lampadp2 +lampadp2-pra +lampadv1 +lampadv1-pra +lampasu1 +lampasu2 +lampcrm1 +lampcrm1-pra +lampdec1 +lampoct1 +lamppea1 +lamppea1-pra +lamppea2 +lamppea2-pra +lampsas1 +lampwaz1 +mpcecmi1 +nvr-spare-alb +nvr-spare-beu +nvr-spare-eco +nvr-spare-etv +nvr-spare-mon +nvr-spare-mtz +nvr-spare-sen +nvr-spare-tqx +rmila150 +rmilacs1 +rmilasu1 +rmilbwp1 +rmilmi2 +rmilrau1 +rmilu2k1 +rmilwdc1 +rrtxu2k1 +rsbcacs2 +rsmiasu1 +rsmiged1 +rsmimas1 +rsminas1 +rsmirau1 +rsmisvg4 +rsmiwdc1 +saroumane +vadvpapp1 +vadvpapp3 +vairtom1 +vampsycapp1 +vampsycapp2 +vampsychtp1 +vastapp1 +vburadmad1 +vburimp2 +vburwdc1 +vburwdc2 +vemvrsa3 +vemvrsa4 +vemvsym1 +vexploit2 +vmampdif1 +vmampdif2 +vmampgis1 +vmampgis2 +vmampgis3 +vmampgis4 +vmampgis5 +vmampgtc1 +vmampgtc2 +vmamphtp1 +vmamphtp2 +vmampmet1 +vmampmet2 +vmamprdt1 +vmamprdt2 +vmampstg1 +vmampstg2 +vmampsxt1 +vmampsxt2 +vmampsxt3 +vmampsxt4 +vmampsxt5 +vmamptd1 +vmampweb1 +vmampweb2 +vmcliint1 +vmcmdb +vmipm1 +vmkemp1 +vmkemp2 +vmkemplb1 +vmkemplb2 +vmm_stl_01 +vmnms1 +vmntp1 +vmpgmao7 +vmpki1 +vmpki2 +vmquorum1 +vmradius3 +vmradius4 +vmsapnrt1 +vmsccm1 +vmsym2 +vmtelotms +vmxfb1 +vmzeus +vraptcpsh1 +vsapbdd1 +vsccmr3 +vtmd +vtpataels1 +vtpatbsip1 \ No newline at end of file diff --git a/inputs/nomenclature sanef/SANEF_Nomenclature_Serveurs_V3 (1).docx b/inputs/nomenclature sanef/SANEF_Nomenclature_Serveurs_V3 (1).docx new file mode 100644 index 0000000..1d289be Binary files /dev/null and b/inputs/nomenclature sanef/SANEF_Nomenclature_Serveurs_V3 (1).docx differ diff --git a/inputs/nomenclature sanef/SANEF_Processus_Tags_Qualys_V3 (1).docx b/inputs/nomenclature sanef/SANEF_Processus_Tags_Qualys_V3 (1).docx new file mode 100644 index 0000000..9876f33 Binary files /dev/null and b/inputs/nomenclature sanef/SANEF_Processus_Tags_Qualys_V3 (1).docx differ diff --git a/inputs/nomenclature sanef/SANEF_Qualys_Tags_V3_RuleTypes (1).xlsx b/inputs/nomenclature sanef/SANEF_Qualys_Tags_V3_RuleTypes (1).xlsx new file mode 100644 index 0000000..a060dcc Binary files /dev/null and b/inputs/nomenclature sanef/SANEF_Qualys_Tags_V3_RuleTypes (1).xlsx differ diff --git a/inputs/oscatvmetoile/servernamewithvmetoile.csv b/inputs/oscatvmetoile/servernamewithvmetoile.csv new file mode 100644 index 0000000..aca0b8e --- /dev/null +++ b/inputs/oscatvmetoile/servernamewithvmetoile.csv @@ -0,0 +1,58 @@ +"Asset Datalist Report","22 Apr 2026 03:01PM GMT+0200","54" +"SANEF","30 boulevard Gallieni","Issy-les-Moulineaux","None","92130","France" +"Khalid MOUTAOUAKIL","sanef-km1","All roles granted" +"Asset Id","Asset Name","Host Id","Netbios Name","Mac Address","IPV4 Addresses","IPV6 Addresses","Operating System Category","OS","Operating System Version","Operating System Lifecycle Stage","Hardware Category","Hardware Name","Hardware Lifecycle Stage","CPU Count","CPU Speed (mhz)","CPU Description","Total Memory (mb)","Bios Description","Bios Serial Number","Bios Asset Tag","Time Zone","Last System Boot","Last Logged-In User","Inventory Source","Agent Id","Inventory Last Updated On","Architecture","Modules","Sources","Criticality Score","TruRisk Score","Hardware Uuid","Activity","Tags" +"153092401","vmsym2","207356921","VMSYM2","00:50:56:82:17:CD","10.30.11.239","","Windows / Server","Microsoft Windows Server 2019 Datacenter 1809 Build 17763.7678 64-Bit","1809","EOL","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 fe be 02 90 e4 d7-43 d1 a7 56 0b a3 48 6e","NoAssetTag","'+02:00","Sep 08, 2025 06:48 PM","Administrateur","QAGENT","8962f957-28e4-45a5-8329-418c9d85a703","Apr 22, 2026 12:48 PM","64 bits","VM,SCA,PM","Cloud Agent","3","515","befe0242-9002-d7e4-43d1-a7560ba3486e","Apr 22, 2026 02:59 PM","Cloud Agent,Windows Server,VRF_INCONNUE,Symantec,DSI,OS-WIN-SRV DYN,BDD-SQL DYN,OS-WIN-SRV,TYP-VIR" +"130588882","vmamrsxt1","192836205","'-","00:50:56:82:2E:73,00:50:56:82:69:1E,00:50:56:82:73:93,00:50:56:82:2E:73,00:50:56:82:69:1E,00:50:56:82:73:93","10.30.16.60,10.32.16.60,10.33.16.60","fe80:0:0:0:250:56ff:fe82:2e73,fe80:0:0:0:250:56ff:fe82:691e,fe80:0:0:0:250:56ff:fe82:7393","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a6 8e eb 83 91 b8-d0 69 ec a5 7a d6 f9 b7","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybreconcile","QAGENT","12d97d2c-e53a-486e-8273-da5ef8c65d95","Apr 22, 2026 02:05 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","4202a68e-eb83-91b8-d069-eca57ad6f9b7","Apr 22, 2026 02:57 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"130582878","vmamrtd1.sanef.groupe","192832075","'-","00:50:56:82:60:73,00:50:56:82:60:73","10.45.2.195","fe80:0:0:0:250:56ff:fe82:6073","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3832","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 c6 2a f5 49 bc a2-59 3c 10 9a 46 7a f9 b4","No Asset Tag","'+02:00","Oct 08, 2025 01:44 PM","cybastsys","QAGENT","379c9019-ff00-476f-a3d0-4968941b6a16","Apr 22, 2026 01:40 PM","x86_64","VM,SCA,PM","Cloud Agent","3","518","4202c62a-f549-bca2-593c-109a467af9b4","Apr 22, 2026 02:55 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Traffic,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"130586812","vmamrhtp1","192835992","'-","00:50:56:82:1F:DC,00:50:56:82:1F:DC,00:50:56:82:1F:DC,00:50:56:82:00:63,00:50:56:82:46:63,00:50:56:82:00:63,00:50:56:82:1F:DC,00:50:56:82:46:63","10.30.16.50,10.30.16.57,10.30.16.59,10.32.16.50,10.33.16.50","fe80:0:0:0:250:56ff:fe82:63,fe80:0:0:0:250:56ff:fe82:1fdc,fe80:0:0:0:250:56ff:fe82:4663","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d3 dc 26 d6 b0 47-13 65 44 3c 3c 1d b0 59","No Asset Tag","'+02:00","Oct 09, 2025 11:37 AM","cybreconcile","QAGENT","946a2d3a-0f88-464a-986b-a92a377b8afd","Apr 22, 2026 01:52 PM","x86_64","VM,SCA,PM","Cloud Agent","2","349","4202d3dc-26d6-b047-1365-443c3c1db059","Apr 22, 2026 02:55 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"139158036","vmampsxt3","198270705","'-","00:50:56:82:60:FD,00:50:56:82:48:7B,00:50:56:82:2F:B3,00:50:56:82:2F:B3,00:50:56:82:48:7B,00:50:56:82:60:FD","10.41.40.32,10.43.4.32,10.43.40.32","fe80:0:0:0:250:56ff:fe82:2fb3,fe80:0:0:0:250:56ff:fe82:487b,fe80:0:0:0:250:56ff:fe82:60fd","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32109","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 8f 04 7b 29 62 51-77 87 c2 cf 93 91 e2 58","No Asset Tag","'+02:00","Dec 11, 2025 03:56 PM","cybastapp","QAGENT","3f1d4ed6-923d-4649-a944-e6c72d8fc086","Apr 22, 2026 12:29 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","42028f04-7b29-6251-7787-c2cf9391e258","Apr 22, 2026 02:50 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"130588736","vmamrsxt2","192836894","'-","00:50:56:82:10:63,00:50:56:82:10:63,00:50:56:82:38:ac,00:50:56:82:38:ac,00:50:56:82:35:7e,00:50:56:82:35:7e","10.32.16.61,10.30.16.61,10.33.16.61","fe80:0:0:0:250:56ff:fe82:1063,fe80:0:0:0:250:56ff:fe82:38ac,fe80:0:0:0:250:56ff:fe82:357e","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8d bf ac 8d f7 1f-af c6 c5 0a 46 ec 9b a7","No Asset Tag","'+02:00","Oct 09, 2025 11:45 AM","cybreconcile","QAGENT","fedd9208-8c4b-45e2-bec4-4424ba542a92","Apr 22, 2026 12:02 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","42028dbf-ac8d-f71f-afc6-c50a46ec9ba7","Apr 22, 2026 02:45 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"183949377","vmamdpmv1","235204371","'-","00:50:56:82:18:5B,00:50:56:82:18:5B","10.45.2.128","fe80:0:0:0:250:56ff:fe82:185b","Linux / Server","Red Hat Enterprise Linux Server 6 6.10","6.10","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7c a1 fd 72 70 8d-57 f4 c1 96 c8 2a d1 cc","No Asset Tag","'+02:00","Oct 08, 2025 01:44 PM","cybexpapp","QAGENT","50ab478b-ce5c-4f6e-a556-5021d0b0d58d","Apr 22, 2026 12:10 PM","x86_64","VM,SCA,PM","Cloud Agent","5","867","42027ca1-fd72-708d-57f4-c196c82ad1cc","Apr 22, 2026 02:43 PM","Cloud Agent,Linux Server,Obsolete,MIVISU,DEX,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"130590138","vmamrsxt4","192836895","'-","00:50:56:82:58:5D,00:50:56:82:4A:4D,00:50:56:82:26:F5,00:50:56:82:26:F5,00:50:56:82:4A:4D,00:50:56:82:58:5D","10.30.16.63,10.32.16.63,10.33.16.63","fe80:0:0:0:250:56ff:fe82:26f5,fe80:0:0:0:250:56ff:fe82:4a4d,fe80:0:0:0:250:56ff:fe82:585d","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3f bf 83 fb 25 5a-88 23 9d d6 d4 88 25 c3","No Asset Tag","'+02:00","Oct 09, 2025 11:41 AM","cybreconcile","QAGENT","9b15cc9b-6b59-4550-92ee-de5298641343","Apr 22, 2026 12:22 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","42023fbf-83fb-255a-8823-9dd6d48825c3","Apr 22, 2026 02:42 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"139157943","vmampmet2","198270298","'-","00:50:56:82:2B:88,00:50:56:82:2B:88,00:50:56:82:66:C4,00:50:56:82:21:85,00:50:56:82:21:85,00:50:56:82:21:85,00:50:56:82:2B:88,00:50:56:82:66:C4","10.41.40.78,10.41.40.79,10.43.4.78,10.43.40.78,10.43.40.79","fe80:0:0:0:250:56ff:fe82:2185,fe80:0:0:0:250:56ff:fe82:2b88,fe80:0:0:0:250:56ff:fe82:66c4","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 70 9d 87 5f df 23-cb 06 4c 49 6e b6 8d 73","No Asset Tag","'+02:00","Feb 14, 2024 02:17 PM","cybreconcile","QAGENT","72fb8c0b-b87a-4c72-b45e-7de93f23ecf1","Apr 22, 2026 12:03 PM","x86_64","VM,SCA,PM","Cloud Agent","5","878","4202709d-875f-df23-cb06-4c496eb68d73","Apr 22, 2026 02:38 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"131265958","vmxfb1.sanef.groupe","193315361","'-","00:50:56:82:33:61,00:50:56:82:33:61","10.30.11.99","fe80:0:0:0:250:56ff:fe82:3361","Linux / Server","Red Hat Enterprise Linux Server 6 6.7","6.7","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d9 b0 eb 79 07 7b-f1 fb 9c f1 9c 20 e0 59","No Asset Tag","'+02:00","Jan 30, 2025 11:10 AM","cybreconcile","QAGENT","7d281613-4f4d-4ab7-9a09-1e79c4661a21","Apr 22, 2026 12:55 PM","x86_64","VM,SCA,PM","Cloud Agent","2","351","4202d9b0-eb79-077b-f1fb-9cf19c20e059","Apr 22, 2026 02:32 PM","Cloud Agent,Linux Server,Production,Exploitation IT,VRF_INCONNUE,Obsolete,ServersInCyberark,XFB,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"139156976","vmamprdt1","198270451","'-","00:50:56:82:25:f8,00:50:56:82:4b:ad,00:50:56:82:4b:ad,00:50:56:82:4b:ad,00:50:56:82:09:77,00:50:56:82:09:77,00:50:56:82:09:77,00:50:56:82:09:77,00:50:56:82:25:f8,00:50:56:82:4b:ad","10.43.4.70,10.41.40.70,10.41.40.72,10.41.40.73,10.43.40.70,10.43.40.72,10.43.40.73","fe80:0:0:0:250:56ff:fe82:977,fe80:0:0:0:250:56ff:fe82:25f8,fe80:0:0:0:250:56ff:fe82:4bad","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 ea be bd f8 2c 6f-19 ab 4a da 29 5a d0 7d","No Asset Tag","'+02:00","Feb 13, 2024 02:08 PM","cybreconcile","QAGENT","76dece7b-0c6b-4cc5-9b36-abc9e5c62828","Apr 22, 2026 01:15 PM","x86_64","VM,SCA,PM","Cloud Agent","5","873","4202eabe-bdf8-2c6f-19ab-4ada295ad07d","Apr 22, 2026 02:30 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"139158024","vmampsxt2","198270620","'-","00:50:56:82:77:D6,00:50:56:82:30:7E,00:50:56:82:34:57,00:50:56:82:30:7E,00:50:56:82:34:57,00:50:56:82:77:D6","10.41.40.31,10.43.4.31,10.43.40.31","fe80:0:0:0:250:56ff:fe82:307e,fe80:0:0:0:250:56ff:fe82:3457,fe80:0:0:0:250:56ff:fe82:77d6","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 91 fb 5b cb 7f 86-3e 56 f5 cd 77 f3 57 ec","No Asset Tag","'+02:00","May 31, 2023 07:04 AM","cybreconcile","QAGENT","0d8914c4-4d68-4530-8886-bbdb7c9420e2","Apr 22, 2026 01:30 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","420291fb-5bcb-7f86-3e56-f5cd77f357ec","Apr 22, 2026 02:27 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"130583160","vmcmdb1","192832674","'-","00:50:56:82:2a:23,00:50:56:82:2a:23","10.30.11.107","fe80:0:0:0:250:56ff:fe82:2a23","Linux / Server","The CentOS Project CentOS 7 7.9 2009","7.9","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d bb 7b 8a eb f9 ef-52 af 84 7c 73 cb d1 b5","No Asset Tag","'+02:00","Oct 09, 2025 11:34 AM","cybastsys","QAGENT","adf31e08-00b0-40ec-b4b7-0c02de37e963","Apr 22, 2026 12:41 PM","x86_64","VM,SCA,PM","Cloud Agent","4","682","564dbb7b-8aeb-f9ef-52af-847c73cbd1b5","Apr 22, 2026 02:20 PM","Cloud Agent,Linux Server,Production,Recette,Péage,Bases de Données,VRF_INCONNUE,Obsolete,ITOP,DSI,TAG-SRVEXPOSEINDIRECT,BDD-POS DYN,OS-LIN-SRV,TYP-VIR" +"131405746","vmntp1.sanef.groupe","193424771","'-","00:50:56:90:BC:8A,00:50:56:90:BC:8A","10.100.1.200","fe80:0:0:0:250:56ff:fe90:bc8a","Linux / Server","The CentOS Project CentOS 6 6.4","6.4","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","1878","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 6c 9a 6e 8a 5b 6d-a4 a0 de 2f 17 2b cf d1","No Asset Tag","'+02:00","Sep 02, 2025 05:07 PM","cybreconcile","QAGENT","fd737359-f1d2-4382-bb84-211d4f5a1fe5","Apr 22, 2026 12:39 PM","x86_64","VM,SCA,PM","Cloud Agent","3","519","42106C9A-6E8A-5B6D-A4A0-DE2F172BCFD1","Apr 22, 2026 02:18 PM","Cloud Agent,Linux Server,Production,VRF_INCONNUE,Obsolete,NTP,DSI,OS-LIN-SRV,TYP-VIR" +"129477136","vmsapnrt1","192044838","VMSAPNRT1","00:50:56:AC:00:EF","10.30.10.35","","Windows / Server","Microsoft Windows Server 2008 R2 6.1 SP1 Build 7601.24356","6.1","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","4096","Phoenix Technologies LTD 6.00","VMware-42 2c ae 27 87 bc de ef-c9 c6 ee ab 11 d7 b9 a1","NoAssetTag","'+02:00","Apr 02, 2024 07:39 PM","Administrateur","QAGENT","39dbe7b9-56c8-42f2-a71a-0112cf8266a0","Apr 22, 2026 12:41 PM","64 bits","VM,SCA,PM","Cloud Agent","2","352","27ae2c42-bc87-efde-c9c6-eeab11d7b9a1","Apr 22, 2026 02:17 PM","Cloud Agent,Windows Server,Windows Server 2008,Recette,Finances Comptabilité / Consolidation,VRF_INCONNUE,Obsolete,SAP,DFIN,OS-WIN-SRV DYN,BDD-SQL DYN,OS-WIN-SRV,TYP-VIR" +"131405762","vmquorum1.sanef.groupe","193424770","'-","00:50:56:82:5D:D3,00:50:56:82:5D:D3","10.102.2.11","fe80:0:0:0:250:56ff:fe82:5dd3","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 0c c5 ed f0 97 2d-b4 cb f2 2e 27 19 ea 19","No Asset Tag","'+02:00","Jan 22, 2025 12:14 PM","cybreconcile","QAGENT","f4622346-fe46-4098-8fd1-0d9bd920de6f","Apr 22, 2026 12:30 PM","x86_64","VM,SCA,PM","Cloud Agent","4","700","42020cc5-edf0-972d-b4cb-f22e2719ea19","Apr 22, 2026 02:07 PM","Cloud Agent,Linux Server,Production,VRF_INCONNUE,Obsolete,Sextan,DEX,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"139158077","vmampstg1","198270619","'-","00:50:56:82:1D:1F,00:50:56:82:1D:1F,00:50:56:82:20:3D,00:50:56:82:31:55,00:50:56:82:31:55,00:50:56:82:1D:1F,00:50:56:82:20:3D,00:50:56:82:31:55","10.41.40.45,10.41.40.49,10.43.4.45,10.43.40.45,10.43.40.49","fe80:0:0:0:250:56ff:fe82:1d1f,fe80:0:0:0:250:56ff:fe82:203d,fe80:0:0:0:250:56ff:fe82:3155","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 68 9f 2a 20 3f 69-09 5c 0a fb 5d 99 6c 23","No Asset Tag","'+02:00","Feb 13, 2024 02:07 PM","cybreconcile","QAGENT","9f42509a-bdc6-4442-92af-24d7c02bff27","Apr 22, 2026 12:30 PM","x86_64","VM,SCA,PM","Cloud Agent","4","698","4202689f-2a20-3f69-095c-0afb5d996c23","Apr 22, 2026 02:07 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"130588872","vmamrstg2","192836204","'-","00:50:56:82:7a:6c,00:50:56:82:2b:de,00:50:56:82:53:09,00:50:56:82:2b:de,00:50:56:82:53:09,00:50:56:82:7a:6c","10.30.16.11,10.32.16.11,10.33.16.11","fe80:0:0:0:250:56ff:fe82:2bde,fe80:0:0:0:250:56ff:fe82:5309,fe80:0:0:0:250:56ff:fe82:7a6c","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f7 1e 5b 10 bc d9-1c a0 a7 e3 c8 b3 d1 ca","No Asset Tag","'+02:00","Oct 09, 2025 11:59 AM","cybreconcile","QAGENT","91d95ee7-0c3c-4d21-b9d3-ac7535dfc197","Apr 22, 2026 11:35 AM","x86_64","VM,SCA,PM","Cloud Agent","4","699","4202f71e-5b10-bcd9-1ca0-a7e3c8b3d1ca","Apr 22, 2026 02:06 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"130582564","vmamrgtc1","192832076","'-","00:50:56:82:29:FB,00:50:56:82:29:FB,00:50:56:82:30:83,00:50:56:82:30:83,00:50:56:82:68:FF,00:50:56:82:29:FB,00:50:56:82:30:83,00:50:56:82:68:FF","10.45.2.160,10.45.2.162,10.45.3.160,10.45.3.162,10.45.4.160","fe80:0:0:0:250:56ff:fe82:29fb,fe80:0:0:0:250:56ff:fe82:3083,fe80:0:0:0:250:56ff:fe82:68ff","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 fe 04 d3 c1 9c b5-c4 75 10 69 d5 71 e8 ca","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybreconcile","QAGENT","e754412e-d12f-4949-b585-58087a9402e7","Apr 22, 2026 12:30 PM","x86_64","VM,SCA,PM","Cloud Agent","5","876","4202fe04-d3c1-9cb5-c475-1069d571e8ca","Apr 22, 2026 02:06 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"139158084","vmampstg2","198270618","'-","00:50:56:82:6D:2C,00:50:56:82:6D:2C,00:50:56:82:46:99,00:50:56:82:5F:2A,00:50:56:82:5F:2A,00:50:56:82:46:99,00:50:56:82:5F:2A,00:50:56:82:6D:2C","10.41.40.46,10.41.40.47,10.43.4.46,10.43.40.46,10.43.40.47","fe80:0:0:0:250:56ff:fe82:4699,fe80:0:0:0:250:56ff:fe82:5f2a,fe80:0:0:0:250:56ff:fe82:6d2c","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 6a 8e b4 34 55 f7-0d 01 14 05 58 f5 27 f0","No Asset Tag","'+02:00","Feb 14, 2024 02:45 PM","cybreconcile","QAGENT","b0547fe7-2fee-4906-ac22-bf8a3dea7380","Apr 22, 2026 12:55 PM","x86_64","VM,SCA,PM","Cloud Agent","4","698","42026a8e-b434-55f7-0d01-140558f527f0","Apr 22, 2026 02:03 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"130584303","vmamdpmv2.sanef.groupe","192833659","'-","00:50:56:82:ef:a5,00:50:56:82:ef:a5","10.45.2.129","fe80:0:0:0:8c25:8c4e:dce7:4fc3","Linux / Server","Red Hat Enterprise Linux Server 7 7.9","7.9","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","12014","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 11 9d 4d e8 01 09-dc 3a 84 d6 ff 43 24 bd","No Asset Tag","'+02:00","Jan 21, 2025 11:19 AM","cybexpapp","QAGENT","fe51c1b9-c5ea-493c-8764-987808a4713d","Apr 22, 2026 12:16 PM","x86_64","VM,SCA,PM","Cloud Agent","5","627","9d110242-e84d-0901-dc3a-84d6ff4324bd","Apr 22, 2026 01:58 PM","Cloud Agent,Linux Server,Recette,Trafic,VRF_INCONNUE,Obsolete,MIVISU,DEX,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"129308228","vmpgmao7.sanef.groupe","191928332","VMPGMAO7","00:50:56:82:30:8E","10.41.40.176","","Windows / Server","Microsoft Windows Server 2012 R2 Standard 6.3 Build 9600.18993 64-Bit","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 c6 fa 39 e3 a9 e4-ca 48 2a 77 ad a8 70 45","NoAssetTag","'+02:00","Mar 04, 2025 12:32 PM","VMPGMAO7\CYBADMSYS","QAGENT","8312b01c-98c1-47f3-b85c-1df6bed5c992","Apr 22, 2026 12:49 PM","64 bits","VM,SCA,PM","Cloud Agent","3","523","fac60242-e339-e4a9-ca48-2a77ada87045","Apr 22, 2026 01:53 PM","Cloud Agent,Windows Server,Production,Exploitation,VRF_TRAFIC_DC,Obsolete,COSWIN,DSI,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR" +"130588628","vmamrsxt3","192836893","'-","00:50:56:82:23:4D,00:50:56:82:12:4D,00:50:56:82:60:09,00:50:56:82:12:4D,00:50:56:82:23:4D,00:50:56:82:60:09","10.30.16.62,10.32.16.62,10.33.16.62","fe80:0:0:0:250:56ff:fe82:124d,fe80:0:0:0:250:56ff:fe82:234d,fe80:0:0:0:250:56ff:fe82:6009","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7d e6 2b 46 18 6d-cc 34 58 02 61 87 44 84","No Asset Tag","'+02:00","Oct 09, 2025 11:40 AM","cybreconcile","QAGENT","0d432158-cbf2-44af-a96b-158976ac6f3d","Apr 22, 2026 12:09 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","42027de6-2b46-186d-cc34-580261874484","Apr 22, 2026 01:50 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"139158019","vmampsxt1","198270644","'-","00:50:56:82:6C:1A,00:50:56:82:6C:1A,00:50:56:82:78:82,00:50:56:82:3A:E9,00:50:56:82:3A:E9,00:50:56:82:6C:1A,00:50:56:82:78:82","10.41.40.30,10.41.40.34,10.43.4.30,10.43.40.30","fe80:0:0:0:250:56ff:fe82:3ae9,fe80:0:0:0:250:56ff:fe82:6c1a,fe80:0:0:0:250:56ff:fe82:7882","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24030","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 05 0b 89 c3 eb de-0d e3 a8 e1 0e 4a 54 b4","No Asset Tag","'+02:00","Jan 12, 2023 01:49 AM","cybreconcile","QAGENT","10b2836a-1caa-4515-b53e-7d5cb5467814","Apr 22, 2026 12:50 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","4202050b-89c3-ebde-0de3-a8e10e4a54b4","Apr 22, 2026 01:50 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"139157827","vmampmet1","198270294","'-","00:50:56:82:62:FE,00:50:56:82:23:B7,00:50:56:82:1C:70,00:50:56:82:1C:70,00:50:56:82:23:B7,00:50:56:82:62:FE","10.41.40.77,10.43.4.77,10.43.40.77","fe80:0:0:0:250:56ff:fe82:1c70,fe80:0:0:0:250:56ff:fe82:23b7,fe80:0:0:0:250:56ff:fe82:62fe","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 cd 32 c6 92 58 66-ac b8 8f fe 7e 41 74 68","No Asset Tag","'+02:00","Feb 13, 2024 02:11 PM","cybreconcile","QAGENT","5f4e0bb0-e430-423d-b645-a68c08edf4b4","Apr 22, 2026 09:30 AM","x86_64","VM,SCA,PM","Cloud Agent","5","876","4202cd32-c692-5866-acb8-8ffe7e417468","Apr 22, 2026 01:47 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"183965866","vmamrmet2","235215633","'-","00:50:56:82:42:10,00:50:56:82:07:E1,00:50:56:82:67:F0,00:50:56:82:07:E1,00:50:56:82:42:10,00:50:56:82:67:F0","10.45.2.151,10.45.3.151,10.45.4.151","fe80:0:0:0:250:56ff:fe82:7e1,fe80:0:0:0:250:56ff:fe82:4210,fe80:0:0:0:250:56ff:fe82:67f0","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 84 26 ae 6d 9b-c0 d7 e4 a0 b7 13 78 52","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","root","QAGENT","84233946-88dd-45d5-888e-6d9ad37c4526","Apr 22, 2026 12:52 PM","x86_64","VM,SCA,PM","Cloud Agent","5","878","42029484-26ae-6d9b-c0d7-e4a0b7137852","Apr 22, 2026 01:46 PM","Cloud Agent,Linux Server,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"130586805","vmamrdif1.sanef.groupe","192835988","'-","00:50:56:82:0C:04,00:50:56:82:0C:04","10.45.2.25","fe80:0:0:0:250:56ff:fe82:c04","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 b7 da fe 38 e7 af-c5 f8 4a 09 65 33 bf 74","No Asset Tag","'+02:00","Oct 09, 2025 11:52 AM","root","QAGENT","4b4cc9e0-1393-4bd2-a872-473ff5d2607f","Apr 22, 2026 11:45 AM","x86_64","VM,SCA,PM","Cloud Agent","4","696","4202b7da-fe38-e7af-c5f8-4a096533bf74","Apr 22, 2026 01:46 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,BDD-POS DYN,OS-LIN-SRV,TYP-VIR" +"139158116","vmampsxt4","198270707","'-","00:50:56:82:38:61,00:50:56:82:61:C3,00:50:56:82:17:A2,00:50:56:82:17:A2,00:50:56:82:38:61,00:50:56:82:61:C3","10.41.40.33,10.43.4.33,10.43.40.33","fe80:0:0:0:250:56ff:fe82:17a2,fe80:0:0:0:250:56ff:fe82:3861,fe80:0:0:0:250:56ff:fe82:61c3","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 5f 5a 21 87 08-cc 4f 12 18 2b 59 23 ba","No Asset Tag","'+02:00","Nov 06, 2024 09:15 PM","cybreconcile","QAGENT","41ed86ae-1ab0-4c15-b2a0-1a63aaadb290","Apr 22, 2026 11:57 AM","x86_64","VM,SCA,PM","Cloud Agent","4","699","42021b5f-5a21-8708-cc4f-12182b5923ba","Apr 22, 2026 01:40 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"130587954","vmamrmet1","192835990","'-","00:50:56:82:2C:C1,00:50:56:82:2C:C1,00:50:56:82:59:C6,00:50:56:82:59:C6,00:50:56:82:65:99,00:50:56:82:2C:C1,00:50:56:82:59:C6,00:50:56:82:65:99","10.45.2.150,10.45.2.152,10.45.3.150,10.45.3.152,10.45.4.150","fe80:0:0:0:250:56ff:fe82:2cc1,fe80:0:0:0:250:56ff:fe82:59c6,fe80:0:0:0:250:56ff:fe82:6599","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 5b 39 52 6e fc 3f-66 9d f0 ed db db 06 a9","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybadmsys","QAGENT","0c5baa2e-99a4-4a1d-9d82-87138a30c4f5","Apr 22, 2026 12:01 PM","x86_64","VM,SCA,PM","Cloud Agent","5","878","42025b39-526e-fc3f-669d-f0eddbdb06a9","Apr 22, 2026 01:38 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"139157311","vmamprdt2","198270449","'-","00:50:56:82:4D:83,00:50:56:82:4D:83,00:50:56:82:4D:83,00:50:56:82:1E:CC,00:50:56:82:73:0E,00:50:56:82:73:0E,00:50:56:82:73:0E,00:50:56:82:1E:CC,00:50:56:82:4D:83,00:50:56:82:73:0E","10.41.40.71,10.41.40.74,10.41.40.75,10.43.4.71,10.43.40.71,10.43.40.74,10.43.40.75","fe80:0:0:0:250:56ff:fe82:1ecc,fe80:0:0:0:250:56ff:fe82:4d83,fe80:0:0:0:250:56ff:fe82:730e","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3a 36 7c ea da 33-d1 92 df 39 0a 2d 2f 32","No Asset Tag","'+02:00","Feb 14, 2024 02:45 PM","cybreconcile","QAGENT","2390c953-cec7-401c-9d98-461499419684","Apr 22, 2026 12:36 PM","x86_64","VM,SCA,PM","Cloud Agent","5","873","42023a36-7cea-da33-d192-df390a2d2f32","Apr 22, 2026 01:37 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"130582850","vmamrgtc2","192832077","'-","00:50:56:82:6A:AF,00:50:56:82:6A:AF,00:50:56:82:7D:66,00:50:56:82:7D:66,00:50:56:82:07:63,00:50:56:82:07:63,00:50:56:82:6A:AF,00:50:56:82:7D:66","10.45.2.161,10.45.2.163,10.45.3.161,10.45.3.163,10.45.4.161","fe80:0:0:0:250:56ff:fe82:763,fe80:0:0:0:250:56ff:fe82:6aaf,fe80:0:0:0:250:56ff:fe82:7d66","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 03 1b b4 15 d0 7a-05 7e 5f fb bf 72 e0 31","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybadmsys","QAGENT","fe8956e8-cc60-44ed-93e2-95a307f07f07","Apr 22, 2026 12:37 PM","x86_64","VM,SCA,PM","Cloud Agent","5","876","4202031b-b415-d07a-057e-5ffbbf72e031","Apr 22, 2026 01:32 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"139157910","vmamphtp1.sanef.groupe","198270158","'-","00:50:56:82:6d:a2,00:50:56:82:6d:a2,00:50:56:82:6d:a2,00:50:56:82:76:04,00:50:56:82:4a:d4,00:50:56:82:4a:d4,00:50:56:82:6d:a2,00:50:56:82:76:04","10.41.40.35,10.41.40.37,10.41.40.38,10.43.4.35,10.43.40.35","fe80:0:0:0:250:56ff:fe82:4ad4,fe80:0:0:0:250:56ff:fe82:6da2,fe80:0:0:0:250:56ff:fe82:7604","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 78 5e 41 48 cd 66-58 8b 3e 5e c8 9e c5 ec","No Asset Tag","'+02:00","Feb 13, 2024 02:00 PM","cybreconcile","QAGENT","40de57c4-09f4-4a7d-9365-ecf0d6008fbd","Apr 22, 2026 12:34 PM","x86_64","VM,SCA,PM","Cloud Agent","2","349","4202785e-4148-cd66-588b-3e5ec89ec5ec","Apr 22, 2026 01:29 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"112196090","vmamrrdt2","180151399","'-","00:50:56:82:53:79,00:50:56:82:53:79,00:50:56:82:53:79,00:50:56:82:53:79,00:50:56:82:4F:D5,00:50:56:82:4F:D5,00:50:56:82:4F:D5,00:50:56:82:4F:D5,00:50:56:82:4F:D5,00:50:56:82:53:79","10.45.2.186,10.45.2.188,10.45.2.192,10.45.2.194,10.45.3.186,10.45.3.188,10.45.3.192,10.45.3.194","fe80:0:0:0:250:56ff:fe82:4fd5,fe80:0:0:0:250:56ff:fe82:5379","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 93 64 9e 76 9d-d4 d7 dc 53 6a 19 06 90","No Asset Tag","'+02:00","Nov 18, 2025 01:38 PM","cybexpapp","QAGENT","6baf190a-8dc9-4345-bd7d-5872ffaa9231","Apr 22, 2026 12:28 PM","x86_64","VM,SCA,PM","Cloud Agent","5","873","42029493-649e-769d-d4d7-dc536a190690","Apr 22, 2026 01:28 PM","Cloud Agent,Linux Server,Production,Recette,Trafic,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,ServersInCyberark,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"163897942","vmcmdb2","219067810","'-","00:50:56:82:67:ef,00:50:56:82:67:ef","10.30.11.108","fe80:0:0:0:250:56ff:fe82:67ef","Linux / Server","The CentOS Project CentOS 7 7.9 2009","7.9","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 24 82 65 20 26 53-d8 50 a7 83 3c 91 e6 08","No Asset Tag","'+02:00","Oct 09, 2025 11:34 AM","cybsupapp","QAGENT","13d7fa43-03d2-4257-90de-970af488eff8","Apr 22, 2026 11:41 AM","x86_64","VM,SCA,PM","Cloud Agent","4","695","564d2482-6520-2653-d850-a7833c91e608","Apr 22, 2026 01:17 PM","Cloud Agent,Linux Server,Obsolete,ITOP,DSI,TAG-SRVEXPOSEINDIRECT,BDD-POS DYN,OS-LIN-SRV,TYP-VIR" +"186210649","vmampsxt5","236667824","'-","00:50:56:82:b2:9b,00:50:56:82:d1:65,00:50:56:82:57:b5,00:50:56:82:57:b5,00:50:56:82:b2:9b,00:50:56:82:d1:65","10.41.40.29,10.43.4.29,10.43.40.29","fe80:0:0:0:250:56ff:fe82:57b5,fe80:0:0:0:250:56ff:fe82:b29b,fe80:0:0:0:250:56ff:fe82:d165","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ca 2d 25 44 81 97-f3 90 5f 38 8f 3c 46 ca","No Asset Tag","'+02:00","Nov 24, 2025 04:47 PM","cybreconcile","QAGENT","140e696a-12df-41e9-bebd-8eca61f63123","Apr 22, 2026 11:52 AM","x86_64","VM,SCA,PM","Cloud Agent","4","698","4202ca2d-2544-8197-f390-5f388f3c46ca","Apr 22, 2026 01:14 PM","Cloud Agent,Linux Server,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"130588848","vmamrrdt1","192836203","'-","00:50:56:82:0C:6D,00:50:56:82:0C:6D,00:50:56:82:0C:6D,00:50:56:82:0C:6D,00:50:56:82:0C:6D,00:50:56:82:09:BB,00:50:56:82:09:BB,00:50:56:82:09:BB,00:50:56:82:09:BB,00:50:56:82:09:BB,00:50:56:82:09:BB,00:50:56:82:0C:6D","10.45.2.185,10.45.2.189,10.45.2.190,10.45.2.191,10.45.2.193,10.45.3.185,10.45.3.189,10.45.3.190,10.45.3.191,10.45.3.193","fe80:0:0:0:250:56ff:fe82:9bb,fe80:0:0:0:250:56ff:fe82:c6d","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 40 aa b1 b8 96 ee-ca 32 05 82 2c 6a be 61","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybexpapp","QAGENT","8fb0d821-c304-4c9d-9bc4-1bea5285db80","Apr 22, 2026 12:31 PM","x86_64","VM,SCA,PM","Cloud Agent","5","873","420240aa-b1b8-96ee-ca32-05822c6abe61","Apr 22, 2026 01:14 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"130588548","vmamrstg1","192836202","'-","00:50:56:82:0C:DF,00:50:56:82:0C:DF,00:50:56:82:0C:DF,00:50:56:82:69:20,00:50:56:82:69:20,00:50:56:82:69:20,00:50:56:82:4B:5E,00:50:56:82:0C:DF,00:50:56:82:4B:5E,00:50:56:82:69:20","10.30.16.10,10.30.16.17,10.30.16.18,10.32.16.10,10.32.16.17,10.32.16.18,10.33.16.10","fe80:0:0:0:250:56ff:fe82:cdf,fe80:0:0:0:250:56ff:fe82:4b5e,fe80:0:0:0:250:56ff:fe82:6920","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a5 3e 1a cc c0 8a-9b 8a f5 2d 87 49 4e 3d","No Asset Tag","'+02:00","Oct 09, 2025 11:38 AM","cybexpapp","QAGENT","7bb33190-4842-4833-89d2-ef36edd44bd7","Apr 22, 2026 12:11 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","4202a53e-1acc-c08a-9b8a-f52d87494e3d","Apr 22, 2026 01:07 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"131142756","vmcmdb","193232215","'-","00:50:56:82:89:58,00:50:56:82:89:58","10.30.11.126","fe80:0:0:0:250:56ff:fe82:8958","Linux / Server","The CentOS Project CentOS 7 7.9 2009","7.9","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-5c 9a 02 42 e2 29 78 a4-73 39 00 04 68 fe dd 76","No Asset Tag","'+02:00","Dec 18, 2024 03:24 PM","cybreconcile","QAGENT","215653c1-a242-4eee-bac0-657357541f10","Apr 22, 2026 12:08 PM","x86_64","VM,SCA,PM","Cloud Agent","4","675","5c9a0242-e229-78a4-7339-000468fedd76","Apr 22, 2026 01:05 PM","Cloud Agent,Linux Server,Recette,Trafic,VRF_INCONNUE,Obsolete,ITOP,DSI,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV,TYP-VIR" +"131404287","vmampdif1.sanef.groupe","193423786","'-","00:50:56:82:4A:DA,00:50:56:82:4A:DA","10.41.40.120","fe80:0:0:0:250:56ff:fe82:4ada","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 99 5a c1 b5 93 1a-27 3f 1b ac 65 09 01 f0","No Asset Tag","'+02:00","Jan 11, 2023 09:02 PM","cybreconcile","QAGENT","77c8d8e6-c0ea-4de7-93fc-1f6016d85d9f","Apr 22, 2026 11:36 AM","x86_64","VM,SCA,PM","Cloud Agent","4","696","4202995a-c1b5-931a-273f-1bac650901f0","Apr 22, 2026 01:02 PM","Cloud Agent,Linux Server,Production,Trafic,Sans,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"131405556","vmampdif2.sanef.groupe","193423788","'-","00:50:56:82:22:6E,00:50:56:82:22:6E","10.41.40.121","fe80:0:0:0:250:56ff:fe82:226e","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 09/17/2015","VMware-42 02 6b e5 f5 8f 41 09-6e 8e 8b 0d ad 3e ff 6b","No Asset Tag","'+02:00","Sep 25, 2018 12:04 PM","cybreconcile","QAGENT","677ad417-17ef-4c5d-baa3-df481b654afd","Apr 22, 2026 11:59 AM","x86_64","VM,SCA,PM","Cloud Agent","4","693","42026be5-f58f-4109-6e8e-8b0dad3eff6b","Apr 22, 2026 12:59 PM","Cloud Agent,Linux Server,Production,Trafic,Sans,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"139157881","vmampgtc1","198270080","'-","00:50:56:82:1E:CE,00:50:56:82:3C:2F,00:50:56:82:72:1A,00:50:56:82:1E:CE,00:50:56:82:3C:2F,00:50:56:82:72:1A","10.41.40.85,10.43.4.85,10.43.40.85","fe80:0:0:0:250:56ff:fe82:1ece,fe80:0:0:0:250:56ff:fe82:3c2f,fe80:0:0:0:250:56ff:fe82:721a","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3e 4f fc fa cd ee-fa d2 f5 6e ae 60 92 36","No Asset Tag","'+02:00","Feb 13, 2024 01:58 PM","cybreconcile","QAGENT","0a831760-7e62-488d-a5fd-a0b37457aa00","Apr 22, 2026 11:27 AM","x86_64","VM,SCA,PM","Cloud Agent","5","876","42023e4f-fcfa-cdee-fad2-f56eae609236","Apr 22, 2026 12:52 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"130588308","vmamrhtp2","192835991","'-","00:50:56:82:47:9D,00:50:56:82:47:9D,00:50:56:82:47:9D,00:50:56:82:47:9D,00:50:56:82:4A:25,00:50:56:82:4A:25,00:50:56:82:4A:25,00:50:56:82:4A:25,00:50:56:82:6A:A5,00:50:56:82:47:9D,00:50:56:82:4A:25,00:50:56:82:6A:A5","10.30.16.51,10.30.16.54,10.30.16.55,10.30.16.56,10.32.16.51,10.32.16.54,10.32.16.55,10.32.16.56,10.33.16.51","fe80:0:0:0:250:56ff:fe82:479d,fe80:0:0:0:250:56ff:fe82:4a25,fe80:0:0:0:250:56ff:fe82:6aa5","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 4b 5e e6 a2 bd cc-12 db 6d 7c 85 60 a4 9d","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybexpapp","QAGENT","577d5ed6-0449-42c4-b1d6-54d920fc49a4","Apr 22, 2026 11:31 AM","x86_64","VM,SCA,PM","Cloud Agent","2","349","42024b5e-e6a2-bdcc-12db-6d7c8560a49d","Apr 22, 2026 12:52 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR" +"139156941","vmamphtp2.sanef.groupe","198270159","'-","00:50:56:82:75:3B,00:50:56:82:75:3B,00:50:56:82:75:3B,00:50:56:82:75:3B,00:50:56:82:4E:8C,00:50:56:82:06:1D,00:50:56:82:06:1D,00:50:56:82:06:1D,00:50:56:82:4E:8C,00:50:56:82:75:3B","10.41.40.36,10.41.40.39,10.41.40.40,10.41.40.41,10.43.4.36,10.43.40.36,10.43.40.39","fe80:0:0:0:250:56ff:fe82:61d,fe80:0:0:0:250:56ff:fe82:4e8c,fe80:0:0:0:250:56ff:fe82:753b","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 87 d0 59 1b 5f 6f-07 1c c6 e7 14 00 7e 0e","No Asset Tag","'+02:00","Oct 08, 2025 04:16 PM","cybreconcile","QAGENT","950d952c-913d-4f60-89ad-24963c92f040","Apr 22, 2026 11:19 AM","x86_64","VM,SCA,PM","Cloud Agent","2","349","420287d0-591b-5f6f-071c-c6e714007e0e","Apr 22, 2026 12:38 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"139156912","vmampgtc2","198270160","'-","00:50:56:82:54:84,00:50:56:82:2C:BA,00:50:56:82:2C:BA,00:50:56:82:2C:BA,00:50:56:82:1A:8B,00:50:56:82:1A:8B,00:50:56:82:54:84,00:50:56:82:54:84","10.43.40.87,10.41.40.86,10.41.40.87,10.43.4.86,10.43.40.86","fe80:0:0:0:250:56ff:fe82:2cba,fe80:0:0:0:250:56ff:fe82:1a8b,fe80:0:0:0:250:56ff:fe82:5484","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 71 54 08 b5 2e bc-ae be e6 6f 45 96 49 92","No Asset Tag","'+02:00","Oct 08, 2025 11:37 AM","cybreconcile","QAGENT","d152cb18-e02a-415b-8806-c7afdf242069","Apr 22, 2026 11:40 AM","x86_64","VM,SCA,PM","Cloud Agent","5","876","42027154-08b5-2ebc-aebe-e66f45964992","Apr 22, 2026 12:37 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"131405384","vmzeus.sanef.groupe","193423787","'-","00:50:56:AC:00:D4,00:50:56:AC:00:D4","192.168.230.23","fe80:0:0:0:250:56ff:feac:d4","Linux / Server","The CentOS Project CentOS 6 6.3","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 2c bf eb 40 21 87 89-83 89 7e f9 55 05 97 8d","No Asset Tag","'+02:00","Jan 12, 2023 08:58 AM","cybreconcile","QAGENT","cf37f0d2-c026-4734-905d-405ee885e85c","Apr 22, 2026 11:25 AM","x86_64","VM,SCA,PM","Cloud Agent","4","704","422cbfeb-4021-8789-8389-7ef95505978d","Apr 22, 2026 12:35 PM","Cloud Agent,Linux Server,Production,Trafic,DMZ,Sans,VRF_INCONNUE,Obsolete,ServersInCyberark,Sextan,DEX,log4j,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV,TYP-VIR" +"128150824","vmradius4.sanef.groupe","191086357","VMRADIUS4","00:50:56:82:5E:F8","10.30.10.125","","Windows / Server","Microsoft Windows Server 2008 R2 6.1 SP1 Build 7601.24544","6.1","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 02 9b 8b 5e bc 56 ec-92 8f 42 ef 56 eb ae 83","NoAssetTag","'+01:00","Dec 16, 2025 12:52 PM","SANEF\alaad","QAGENT","a2c6f12b-e674-4b94-9d6f-7b430ce1268b","Apr 22, 2026 11:15 AM","64 bits","VM,SCA,PM","Cloud Agent","5","865","8b9b0242-bc5e-ec56-928f-42ef56ebae83","Apr 22, 2026 12:31 PM","Cloud Agent,Windows Server,Windows Server 2008,Critical,Production,Sécurité IT,Sans,VRF_INCONNUE,Obsolete,Radius,DSI,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR" +"130586828","vmamrpmv1","192835989","'-","00:50:56:82:5F:9D,00:50:56:82:5F:9D,00:50:56:82:5F:9D,00:50:56:82:5F:9D,00:50:56:82:5F:9D,00:50:56:82:5F:9D,00:50:56:82:1B:6C,00:50:56:82:1B:6C,00:50:56:82:1B:6C,00:50:56:82:1B:6C,00:50:56:82:1B:6C,00:50:56:82:1B:6C,00:50:56:82:2A:C2,00:50:56:82:1B:6C,00:50:56:82:2A:C2,00:50:56:82:5F:9D","10.30.16.72,10.30.16.80,10.30.16.83,10.30.16.85,10.30.16.87,10.30.16.89,10.32.16.72,10.32.16.80,10.32.16.83,10.32.16.85,10.32.16.87,10.32.16.89,10.33.16.80","fe80:0:0:0:250:56ff:fe82:1b6c,fe80:0:0:0:250:56ff:fe82:2ac2,fe80:0:0:0:250:56ff:fe82:5f9d","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 24 45 67 6c 6f a4-0d 0b 07 05 70 c2 d5 c8","No Asset Tag","'+02:00","Oct 09, 2025 02:46 PM","delcour","QAGENT","9e6775b2-b6f9-4250-93a0-ab50a67c0e91","Apr 22, 2026 11:16 AM","x86_64","VM,SCA,PM","Cloud Agent","5","873","42022445-676c-6fa4-0d0b-070570c2d5c8","Apr 22, 2026 12:26 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"128150818","vmradius3.sanef.groupe","191086355","VMRADIUS3","00:50:56:82:1F:DB,02:00:4C:4F:4F:50,02:00:4C:4F:4F:50,00:50:56:82:1F:DB","10.30.10.124,169.254.99.117","fe80:0:0:0:dcea:203e:bd9d:6375,fe80:0:0:0:fdc5:80ee:27a8:29d5","Windows / Server","Microsoft Windows Server 2008 R2 6.1 SP1 Build 7601.24546","6.1","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 b7 fa 10 5a d9 5d-d9 a7 c3 33 13 98 24 eb","NoAssetTag","'+02:00","May 21, 2024 02:41 PM","SANEF\alaad","QAGENT","69739527-6f65-4752-95fd-8f20072ec70d","Apr 22, 2026 10:58 AM","64 bits","VM,SCA,PM","Cloud Agent","5","861","FAB70242-5A10-5DD9-D9A7-C333139824EB","Apr 22, 2026 12:08 PM","Cloud Agent,Windows Server,Windows Server 2008,Critical,Production,Sécurité IT,Sans,VRF_INCONNUE,Obsolete,Radius,DSI,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR" +"139157052","vmamptd1.sanef.groupe","198270704","'-","00:50:56:82:5B:C6,00:50:56:82:5B:C6","10.41.40.165","fe80:0:0:0:250:56ff:fe82:5bc6","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 81 c7 66 1d 69-91 26 2c 88 c7 a1 34 9d","No Asset Tag","'+02:00","Sep 29, 2025 03:02 PM","cybreconcile","QAGENT","dbadc8c6-f389-483b-b396-cf73f4190b36","Apr 22, 2026 10:44 AM","x86_64","VM,SCA,PM","Cloud Agent","4","692","42021b81-c766-1d69-9126-2c88c7a1349d","Apr 22, 2026 11:45 AM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Traffic,DEX,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"129931386","vmampgis3.sanef.groupe","192382346","VMAMPGIS3","00:50:56:82:58:7C,00:50:56:82:58:7C","10.41.40.107","fe80:0:0:0:f9e4:a388:57bc:431b","Windows / Server","Microsoft Windows Server 2012 R2 Standard 6.3 Build 9600.21563 64-Bit","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 f2 9c df 71 99 3b-91 8f 63 b7 f7 f7 d4 d5","NoAssetTag","'+02:00","Nov 07, 2024 12:45 PM","SANEF.GROUPE\delcour","QAGENT","4a99a93f-59db-4dd6-a4bd-0cd46ce82599","Apr 22, 2026 10:05 AM","64 bits","VM,SCA,PM","Cloud Agent","3","521","9cf20242-71df-3b99-918f-63b7f7f7d4d5","Apr 22, 2026 11:00 AM","Cloud Agent,Windows Server,Production,Patrimoine,VRF_TRAFIC_DC,Obsolete,GIS,DEX,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR" +"112571236","vmrgmao7.sanef.groupe","180424755","VMRGMAO7","00:50:56:82:61:86","10.43.255.15","","Windows / Server","Microsoft Windows Server 2012 R2 Standard 6.3 Build 9600.21013 64-Bit","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 65 fe 25 53 63 29-7b 3b 61 3e 88 a3 b4 89","NoAssetTag","'+02:00","Mar 03, 2026 03:14 PM","SANEF\VANWYNSBERGHE","QAGENT","26714801-570a-4058-937a-1e743c199724","Apr 22, 2026 09:41 AM","64 bits","VM,SCA,PM","Cloud Agent","3","517","fe650242-5325-2963-7b3b-613e88a3b489","Apr 22, 2026 10:19 AM","Cloud Agent,Windows Server,VRF_INCONNUE,Obsolete,COSWIN,DSI,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR" +"130588224","vmamrpmv2","192836201","'-","00:50:56:82:25:CC,00:50:56:82:25:CC,00:50:56:82:25:CC,00:50:56:82:25:CC,00:50:56:82:25:CC,00:50:56:82:25:CC,00:50:56:82:6C:80,00:50:56:82:25:CC,00:50:56:82:6C:80,00:50:56:82:39:36,00:50:56:82:39:36,00:50:56:82:39:36,00:50:56:82:39:36,00:50:56:82:39:36,00:50:56:82:39:36,00:50:56:82:39:36","10.30.16.73,10.30.16.81,10.30.16.82,10.30.16.84,10.30.16.86,10.30.16.88,10.33.16.81,10.32.16.88,10.32.16.73,10.32.16.82,10.32.16.84,10.32.16.81,10.32.16.86","fe80:0:0:0:250:56ff:fe82:25cc,fe80:0:0:0:250:56ff:fe82:6c80,fe80:0:0:0:250:56ff:fe82:3936","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 95 cf d8 6c 28 75-6d 67 f9 88 4b f2 99 cd","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybexpapp","QAGENT","5f97bdcf-1f2b-4de0-96e9-1686ef15f760","Apr 22, 2026 07:25 AM","x86_64","VM,SCA,PM","Cloud Agent","5","873","420295cf-d86c-2875-6d67-f9884bf299cd","Apr 22, 2026 07:26 AM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR" +"129931412","vmampgis5.sanef.groupe","192382510","VMAMPGIS5","00:50:56:82:33:54,00:50:56:82:33:54","10.41.40.109","fe80:0:0:0:f56c:5a1a:5877:598c","Windows / Server","Microsoft Windows Server 2012 R2 Standard 6.3 Build 9600.21620 64-Bit","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","98303","Phoenix Technologies LTD 6.00","VMware-42 02 9f 53 80 5d 8e 64-cd a1 e3 76 9b 0b bc 91","NoAssetTag","'+02:00","Oct 09, 2025 09:55 AM","VMAMPGIS5\CYBASTAPP","QAGENT","e6022e2a-829f-4758-ae5c-dfb45af1c669","Apr 21, 2026 08:43 PM","64 bits","VM,SCA,PM","Cloud Agent","3","517","539f0242-5d80-648e-cda1-e3769b0bbc91","Apr 21, 2026 10:23 PM","Cloud Agent,Windows Server,Production,Patrimoine,VRF_INCONNUE,Obsolete,SIG,DEX,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR" +"129931160","vmampgis1.sanef.groupe","192382347","VMAMPGIS1","00:50:56:82:2A:8E,00:50:56:82:2A:8E","10.41.40.105","fe80:0:0:0:4f:a480:d4b:ecd6","Windows / Server","Microsoft Windows Server 2012 R2 Standard 6.3 Build 9600.21620 64-Bit","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 b8 a9 91 9a b2 d0-7d 12 a6 32 f8 82 ab 72","NoAssetTag","'+02:00","Jul 08, 2025 12:53 PM","VMAMPGIS1\CYBEXPAPP","QAGENT","cb62c0e3-f448-4bff-8b86-5419d7eab4c1","Apr 21, 2026 05:37 PM","64 bits","VM,SCA,PM","Cloud Agent","3","518","a9b80242-9a91-d0b2-7d12-a632f882ab72","Apr 21, 2026 07:04 PM","Cloud Agent,Windows Server,Production,Patrimoine,VRF_TRAFIC_DC,Obsolete,GIS,DEX,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR" diff --git a/inputs/oscatvmetoile/serveurnamevmalletoscatclient.csv b/inputs/oscatvmetoile/serveurnamevmalletoscatclient.csv new file mode 100644 index 0000000..f5d4edc --- /dev/null +++ b/inputs/oscatvmetoile/serveurnamevmalletoscatclient.csv @@ -0,0 +1,49 @@ +"Asset Datalist Report","22 Apr 2026 03:03PM GMT+0200","45" +"SANEF","30 boulevard Gallieni","Issy-les-Moulineaux","None","92130","France" +"Khalid MOUTAOUAKIL","sanef-km1","All roles granted" +"Asset Id","Asset Name","Host Id","Netbios Name","Mac Address","IPV4 Addresses","IPV6 Addresses","Operating System Category","OS","Operating System Version","Operating System Lifecycle Stage","Hardware Category","Hardware Name","Hardware Lifecycle Stage","CPU Count","CPU Speed (mhz)","CPU Description","Total Memory (mb)","Bios Description","Bios Serial Number","Bios Asset Tag","Time Zone","Last System Boot","Last Logged-In User","Inventory Source","Agent Id","Inventory Last Updated On","Architecture","Modules","Sources","Criticality Score","TruRisk Score","Hardware Uuid","Activity","Tags" +"387006557","vmdispt01.recette.adds","356431219","VMDISPT01","00:50:56:9C:0E:C4,00:50:56:9C:0E:C4","10.45.17.62","fe80:0:0:0:df23:e686:6263:7b6a","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c fe 01 30 47 e8 cb-ee 3a 02 b5 b3 2d 95 49","NoAssetTag","'+02:00","Apr 17, 2026 05:19 PM","supwindev","QAGENT","fd1e6693-11ec-4570-96d3-eea298f6fb8c","Apr 22, 2026 12:13 PM","64 bits","VM,SCA,PM","Cloud Agent","2","240","01FE1C42-4730-CBE8-EE3A-02B5B32D9549","Apr 22, 2026 02:50 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387139802","vmdtrac11.recette.adds","356493097","VMDTRAC11","00:50:56:9C:89:A0,00:50:56:9C:89:A0","10.45.17.13","fe80:0:0:0:d794:a632:1a29:e2d1","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c f3 82 31 59 6a b5-a3 4a 95 77 45 81 79 ad","NoAssetTag","'+02:00","Apr 16, 2026 03:35 AM","supwindev","QAGENT","6ee8bab2-e739-495f-b337-637d56abc85d","Apr 22, 2026 01:51 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","82F31C42-5931-B56A-A34A-9577458179AD","Apr 22, 2026 02:45 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"374101557","vmdtrac15.recette.adds","350455501","VMDTRAC15","00:50:56:9C:D8:A9,00:50:56:9C:D8:A9","10.45.17.17","fe80:0:0:0:e63b:bd73:6c2d:9ad5","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c ee 6c 44 3a 88 7f-72 3a 02 eb f1 00 cd b3","NoAssetTag","'+02:00","Apr 16, 2026 02:05 AM","supwindev","QAGENT","81c53f28-88d8-402f-bbd3-fa691893832c","Apr 22, 2026 12:48 PM","64 bits","VM,SCA,PM","Cloud Agent","2","336","6CEE1C42-3A44-7F88-723A-02EBF100CDB3","Apr 22, 2026 02:37 PM","Cloud Agent,Workstation,BDD-SQL DYN,OS-WIN-WKS " +"405482222","vmmgtcroic1.sanef-int.adds","363237270","VMMGTCROIC1","00:50:56:90:1F:15","10.41.19.16","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 6d 01 98 b5 fd 1a-cf 7d ee fd 80 1f c9 12","NoAssetTag","'+02:00","Apr 02, 2026 01:41 PM","admin_gtc","QAGENT","2d684e9f-3863-435b-9c4a-bd7c0eae23b2","Apr 22, 2026 12:44 PM","64 bits","VM,SCA,PM","Cloud Agent","2","343","016D1042-B598-1AFD-CF7D-EEFD801FC912","Apr 22, 2026 02:35 PM","Cloud Agent,Workstation,BDD-SQL DYN,OS-WIN-WKS " +"391596617","vmmvsccad1.sanef-int.adds","357934379","VMMVSCCAD1","00:50:56:90:87:B2","10.41.7.231","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 b7 af 74 6d 89 6e-f6 e0 45 a7 c2 b9 b6 71","NoAssetTag","'+02:00","Feb 02, 2026 06:21 PM","uservideo","QAGENT","f8e700cc-4857-4fb9-b2b5-0014797f70aa","Apr 22, 2026 10:55 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","afb71042-6d74-6e89-f6e0-45a7c2b9b671","Apr 22, 2026 02:34 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"377410288","vmddops03.recette.adds","352034394","VMDDOPS03","00:50:56:9C:17:50,00:50:56:9C:17:50","10.45.17.69","fe80:0:0:0:62fa:e691:416e:f804","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 77 39 ae 90 d4-83 ce 11 e0 b6 ff 48 6a","NoAssetTag","'+02:00","Apr 16, 2026 05:35 PM","supwindev","QAGENT","03dffb7c-44b3-41fd-b06b-f6d644f7d68e","Apr 22, 2026 01:28 PM","64 bits","VM,SCA,PM","Cloud Agent","2","333","77B11C42-AE39-D490-83CE-11E0B6FF486A","Apr 22, 2026 02:27 PM","Cloud Agent,Workstation,BDD-SQL DYN,OS-WIN-WKS " +"391149540","vmddops01.recette.adds","357847899","VMDDOPS01","00:50:56:9C:67:BD,00:50:56:9C:67:BD","10.45.17.67","fe80:0:0:0:70f8:8b63:91d3:43ad","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 43 33 84 6b 92 fd-19 0f f0 7d 63 ee a6 77","NoAssetTag","'+02:00","Apr 16, 2026 05:36 PM","supwindev","QAGENT","e80435b9-e9a5-4d8b-a097-c87dae33ee7a","Apr 22, 2026 12:31 PM","64 bits","VM,SCA,PM","Cloud Agent","2","334","33431C42-6B84-FD92-190F-F07D63EEA677","Apr 22, 2026 02:26 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"397495753","vmmvscdem4.sanef-int.adds","360376399","VMMVSCDEM4","00:50:56:90:90:97","10.41.7.238","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 9c fa 06 87 56 c5-0a ea b7 df c7 1d 9b e0","NoAssetTag","'+02:00","Feb 05, 2026 12:59 PM","Operateur","QAGENT","ca96ab59-e33d-4372-93a9-a8bc4053ba6f","Apr 22, 2026 12:07 PM","64 bits","VM,SCA,PM","Cloud Agent","2","343","fa9c1042-8706-c556-0aea-b7dfc71d9be0","Apr 22, 2026 02:22 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"397490169","vmmvscdem5.sanef-int.adds","360376397","VMMVSCDEM5","00:50:56:90:EB:7A","10.41.7.239","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 07 51 05 bb f3 44-3a bd 9d cf 3c 2d 39 62","NoAssetTag","'+02:00","Feb 05, 2026 12:59 PM","Operateur","QAGENT","9f2d31c5-772a-41ca-b8db-bd3a42852b90","Apr 22, 2026 11:43 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","51071042-bb05-44f3-3abd-9dcf3c2d3962","Apr 22, 2026 02:13 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"391641920","vmmvscdem2.sanef-int.adds","357934380","VMMVSCDEM2","00:50:56:90:E9:EE","10.41.7.236","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 2a eb a9 bb 3e b7-89 3b 12 0c 4d 51 1c 6f","NoAssetTag","'+02:00","Feb 02, 2026 06:17 PM","uservideo","QAGENT","56a4c2e4-5a00-4f51-b493-7a0814189fb8","Apr 22, 2026 11:27 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","eb2a1042-bba9-b73e-893b-120c4d511c6f","Apr 22, 2026 02:13 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387187542","vmdgest05.recette.adds","356515207","VMDGEST05","00:50:56:9C:61:97,00:50:56:9C:61:97","10.45.17.135","fe80:0:0:0:82eb:9019:7ac7:4de3","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c e3 2c 7e c8 b4 25-da 41 fc aa 93 da 4f 23","NoAssetTag","'+02:00","Apr 16, 2026 01:34 AM","supwindev","QAGENT","aa9ff005-bdf3-4b9b-b1ed-11f910feb697","Apr 22, 2026 12:26 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","2CE31C42-C87E-25B4-DA41-FCAA93DA4F23","Apr 22, 2026 02:12 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387141599","vmdtrac10.recette.adds","356493099","VMDTRAC10","00:50:56:9C:C9:C1,00:50:56:9C:C9:C1","10.45.17.12","fe80:0:0:0:a2a0:c1c0:1627:9e2","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c bf b3 a5 97 c4 3d-22 35 75 0d 3e f7 80 68","NoAssetTag","'+02:00","Apr 16, 2026 01:06 AM","supwindev","QAGENT","c533cc81-fe77-4524-9726-bafdab001d4f","Apr 22, 2026 12:31 PM","64 bits","VM,SCA,PM","Cloud Agent","2","245","B3BF1C42-97A5-3DC4-2235-750D3EF78068","Apr 22, 2026 02:12 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387000430","vmdtrac05.recette.adds","356436526","VMDTRAC05","00:50:56:9C:FA:60,00:50:56:9C:FA:60","10.45.17.7","fe80:0:0:0:3b35:2680:d52f:3e93","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 28 fe f5 6f 7f 08-56 c3 70 ac ac 9d cd b6","NoAssetTag","'+02:00","Apr 16, 2026 05:37 PM","supwindev","QAGENT","a5ba2923-f8a5-4866-92e2-9a99403632c3","Apr 22, 2026 01:02 PM","64 bits","VM,SCA,PM","Cloud Agent","2","334","FE281C42-6FF5-087F-56C3-70ACAC9DCDB6","Apr 22, 2026 02:10 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387174043","vmdgest04.recette.adds","356515674","VMDGEST04","00:50:56:9C:4C:F8,00:50:56:9C:4C:F8","10.45.17.134","fe80:0:0:0:ec80:edf1:5d79:1177","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 4d 12 7f 32 d6 2d-6d 96 d5 b3 f2 2e 69 2c","NoAssetTag","'+02:00","Apr 16, 2026 05:37 PM","supwindev","QAGENT","aaefff9a-28b6-4352-ba6a-3897f30ff8d4","Apr 22, 2026 01:10 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","124D1C42-327F-2DD6-6D96-D5B3F22E692C","Apr 22, 2026 02:09 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387189143","vmdgest01.recette.adds","356515675","VMDGEST01","00:50:56:9C:77:89,00:50:56:9C:77:89","10.45.17.131","fe80:0:0:0:f839:6638:c52c:3ce6","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 6b b2 38 3e bf-58 2e 25 b9 2d 80 a7 fb","NoAssetTag","'+02:00","Apr 16, 2026 01:35 AM","supwindev","QAGENT","1b2d19d1-9fde-4ed4-88bb-e1b40669927e","Apr 22, 2026 01:13 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","6BB11C42-38B2-BF3E-582E-25B92D80A7FB","Apr 22, 2026 02:08 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387190533","vmdpeag01.recette.adds","356516695","VMDPEAG01","00:50:56:9C:8A:BD,00:50:56:9C:8A:BD","10.45.17.195","fe80:0:0:0:78fa:4563:a9ee:4aa5","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 4a c0 c8 6b 0f-08 c0 df 90 9b a0 49 b4","NoAssetTag","'+02:00","Apr 16, 2026 03:06 AM","supwindev","QAGENT","4674f6c3-74d1-4d20-a3c2-706192329ee7","Apr 22, 2026 12:25 PM","64 bits","VM,SCA,PM","Cloud Agent","2","244","4AB11C42-C8C0-0F6B-08C0-DF909BA049B4","Apr 22, 2026 02:01 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387157481","vmdgest03.recette.adds","356516280","VMDGEST03","00:50:56:9C:F6:01,00:50:56:9C:F6:01","10.45.17.133","fe80:0:0:0:2eb0:d6ab:1b18:6f3f","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b7 b2 e8 5e aa b6-a7 0b c3 74 7e 36 ed c0","NoAssetTag","'+02:00","Apr 16, 2026 05:36 PM","supwindev","QAGENT","fffc4177-865e-4af7-8b11-f266277575f0","Apr 22, 2026 01:01 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","B2B71C42-5EE8-B6AA-A70B-C3747E36EDC0","Apr 22, 2026 02:01 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"377394622","vmdpeag02.recette.adds","352034393","VMDPEAG02","00:50:56:9C:B1:B1,0A:00:27:00:00:0A,00:50:56:9C:B1:B1,0A:00:27:00:00:0A","10.45.17.196,192.168.56.1","fe80:0:0:0:3fb6:15f5:323a:c5e1,fe80:0:0:0:fdf0:8840:b5b0:3fa9","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 76 c9 a0 e0 1b a4-cd f1 da b5 1f c6 ca 24","NoAssetTag","'+02:00","Apr 16, 2026 05:34 PM","RECETTE\c03987","QAGENT","c7f792a3-b4f9-4c49-9660-8c53b0fd7567","Apr 22, 2026 12:25 PM","64 bits","VM,SCA,PM","Cloud Agent","2","339","C9761C42-E0A0-A41B-CDF1-DAB51FC6CA24","Apr 22, 2026 02:00 PM","Cloud Agent,Workstation,BDD-POS DYN,BDD-ELA DYN,OS-WIN-WKS " +"387115105","vmdtrac09.recette.adds","356492877","VMDTRAC09","00:50:56:9C:37:63,00:50:56:9C:37:63","10.45.17.11","fe80:0:0:0:fd80:245e:2758:9f76","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 1e c5 6c 18 d7 a6-8b 40 88 de 2b c5 2f 84","NoAssetTag","'+02:00","Apr 16, 2026 02:50 AM","supwindev","QAGENT","089ed4c8-d023-47c3-861b-72d9f3bd1598","Apr 22, 2026 12:09 PM","64 bits","VM,SCA,PM","Cloud Agent","2","334","C51E1C42-186C-A6D7-8B40-88DE2BC52F84","Apr 22, 2026 01:57 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"382710695","vmmvscast1.sanef-int.adds","354097291","VMMVSCAST1","00:50:56:90:25:58","10.41.7.230","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 f7 36 8f 70 ae 4d-e3 d0 25 df 74 bb 4d 76","NoAssetTag","'+02:00","Feb 05, 2026 11:26 AM","SANEF-INT\c01957","QAGENT","ef187154-d96f-4d92-9d99-660a14f43117","Apr 22, 2026 01:00 PM","64 bits","VM,SCA,PM","Cloud Agent","2","343","36f71042-708f-4dae-e3d0-25df74bb4d76","Apr 22, 2026 01:55 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"397495752","vmmvsccad4.sanef-int.adds","360376398","VMMVSCCAD4","00:50:56:90:8A:D9","10.41.7.234","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 35 ca 74 e2 93 97-42 00 8e 83 e7 f0 e8 7c","NoAssetTag","'+02:00","Feb 05, 2026 12:58 PM","Operateur","QAGENT","5c13da18-5b32-4c03-94c8-f594c07b7cf1","Apr 22, 2026 11:20 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","ca351042-e274-9793-4200-8e83e7f0e87c","Apr 22, 2026 01:41 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387117872","vmdtrac08.recette.adds","356492878","VMDTRAC08","00:50:56:9C:0F:8C,00:50:56:9C:0F:8C","10.45.17.10","fe80:0:0:0:4801:3c04:37ed:b08","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 6f a1 44 4f 03 17-7c 58 46 63 77 12 f9 86","NoAssetTag","'+02:00","Apr 16, 2026 02:20 AM","supwindev","QAGENT","6a30913b-5a84-4262-ac43-942feffb04f2","Apr 22, 2026 12:06 PM","64 bits","VM,SCA,PM","Cloud Agent","2","244","A16F1C42-4F44-1703-7C58-46637712F986","Apr 22, 2026 01:31 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"397475889","vmmvscdem3.sanef-int.adds","360376396","VMMVSCDEM3","00:50:56:90:55:8C","10.41.7.237","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 9c 12 f2 32 d8 c5-77 a2 45 8d 02 aa dc 48","NoAssetTag","'+02:00","Apr 02, 2026 04:07 PM","Operateur","QAGENT","903617c9-4561-42fa-afed-d77d58f61ac1","Apr 22, 2026 12:24 PM","64 bits","VM,SCA,PM","Cloud Agent","2","343","129c1042-32f2-c5d8-77a2-458d02aadc48","Apr 22, 2026 01:22 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"386997086","vmdtrac04.recette.adds","356436525","VMDTRAC04","00:50:56:9C:69:F8,00:50:56:9C:69:F8","10.45.17.6","fe80:0:0:0:ff7b:5a6c:795:f666","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c c4 b2 1c f8 02 80-03 50 c0 49 74 84 ba 13","NoAssetTag","'+02:00","Apr 16, 2026 05:35 PM","supwindev","QAGENT","dc7a9140-3861-45f9-bc5f-4f86e8addf24","Apr 22, 2026 12:19 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","B2C41C42-F81C-8002-0350-C0497484BA13","Apr 22, 2026 01:11 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"391641926","vmmvsccad2.sanef-int.adds","357934381","VMMVSCCAD2","00:50:56:90:8C:DC","10.41.7.232","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 e9 8d 2c 41 71 61-a7 7c 48 15 dc 68 a2 4a","NoAssetTag","'+02:00","Feb 02, 2026 06:11 PM","uservideo","QAGENT","ecd65762-a4d3-4909-b0bb-6203680b81d5","Apr 22, 2026 11:30 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","8de91042-412c-6171-a77c-4815dc68a24a","Apr 22, 2026 01:00 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387139379","vmdtrac07.recette.adds","356492636","VMDTRAC07","00:50:56:9C:05:DE,00:50:56:9C:05:DE","10.45.17.9","fe80:0:0:0:ab5f:a8c7:43dc:f929","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 1e 19 c9 67 10 38-e7 83 e5 86 04 45 a6 08","NoAssetTag","'+02:00","Apr 15, 2026 09:35 PM","supwindev","QAGENT","ef80d23e-f043-4492-8a06-a2a6e2631322","Apr 22, 2026 11:00 AM","64 bits","VM,SCA,PM","Cloud Agent","2","245","191E1C42-67C9-3810-E783-E5860445A608","Apr 22, 2026 12:59 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387155302","vmdtrac13.recette.adds","356516515","VMDTRAC13","00:50:56:9C:D4:00,00:50:56:9C:D4:00","10.45.17.15","fe80:0:0:0:b111:bf7e:14b6:6bfa","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 69 3d 81 69 88 4e-f3 4e 49 6c a6 69 8f f7","NoAssetTag","'+02:00","Apr 16, 2026 05:37 PM","supwindev","QAGENT","61ebeb29-2896-429c-a953-e90bdc01c05e","Apr 22, 2026 11:34 AM","64 bits","VM,SCA,PM","Cloud Agent","2","334","3D691C42-6981-4E88-F34E-496CA6698FF7","Apr 22, 2026 12:48 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"396161645","vmdtrac14.recette.adds","359784957","VMDTRAC14","00:50:56:9C:8A:5B,00:50:56:9C:8A:5B","10.45.17.16","fe80:0:0:0:e691:fe78:141b:944b","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 27 e4 59 ee 77 1f-ca 4e 41 63 b3 62 20 99","NoAssetTag","'+02:00","Apr 16, 2026 05:37 PM","supwindev","QAGENT","5609fda0-844d-4131-b11f-aa3a87779c64","Apr 22, 2026 11:46 AM","64 bits","VM,SCA,PM","Cloud Agent","2","332","E4271C42-EE59-1F77-CA4E-4163B3622099","Apr 22, 2026 12:44 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"397458696","vmmvsccad3.sanef-int.adds","360376395","VMMVSCCAD3","00:50:56:90:A3:11","10.41.7.233","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 56 12 7b 32 31 9c-7e 39 6b f8 9d c3 f9 bd","NoAssetTag","'+02:00","Feb 05, 2026 12:41 PM","Operateur","QAGENT","45909249-e5d7-4d66-b4c0-73df364dbd0c","Apr 22, 2026 11:06 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","12561042-327b-9c31-7e39-6bf89dc3f9bd","Apr 22, 2026 12:28 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"370439767","vmdtrac02.recette.adds","348900040","VMDTRAC02","00:50:56:9C:99:24,00:50:56:9C:99:24","10.45.17.5","fe80:0:0:0:e012:8fec:9fa:6925","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 06 d2 00 39 6c c3-08 be 27 d0 95 f2 17 5e","NoAssetTag","'+02:00","Apr 16, 2026 05:35 PM","supwindev","QAGENT","5623f886-29f5-48d3-a1b9-40cafe9c5e35","Apr 22, 2026 10:34 AM","64 bits","VM,SCA,PM","Cloud Agent","2","248","D2061C42-3900-C36C-08BE-27D095F2175E","Apr 22, 2026 11:45 AM","Cloud Agent,Workstation,OS-WIN-WKS " +"391648857","vmmvscdem1.sanef-int.adds","357934418","VMMVSCDEM1","00:50:56:90:A5:3D","10.41.7.235","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 5d 7f c6 a4 77 92-e2 15 5d 28 97 18 e1 50","NoAssetTag","'+02:00","Feb 02, 2026 05:47 PM","uservideo","QAGENT","423c9358-4751-479e-bea5-f26411f22f38","Apr 22, 2026 10:19 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","7f5d1042-a4c6-9277-e215-5d289718e150","Apr 22, 2026 11:21 AM","Cloud Agent,Workstation,OS-WIN-WKS " +"387139793","vmdtrac12.recette.adds","356492715","VMDTRAC12","00:50:56:9C:BB:27,00:50:56:9C:BB:27","10.45.17.14","fe80:0:0:0:780d:e6c9:7935:6665","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 4f f9 a9 28 18 c4-8d 69 47 45 f3 8d 3d aa","NoAssetTag","'+02:00","Apr 16, 2026 05:36 PM","supwindev","QAGENT","84585cba-cbe9-441e-bb4c-48da2ffa7e26","Apr 22, 2026 09:43 AM","64 bits","VM,SCA,PM","Cloud Agent","2","332","F94F1C42-28A9-C418-8D69-4745F38D3DAA","Apr 22, 2026 10:17 AM","Cloud Agent,Workstation,OS-WIN-WKS " +"405479460","vmmgtctchc1.sanef-int.adds","363237095","VMMGTCTCHC1","00:50:56:90:F0:6C","10.41.19.51","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 a4 cb 58 a9 25 ea-7c 70 6f 23 b5 03 2c 94","NoAssetTag","'+02:00","Apr 02, 2026 01:38 PM","admin_gtc","QAGENT","79994ea4-03f0-4cdf-a870-2ca3288bb72c","Apr 22, 2026 09:33 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","CBA41042-A958-EA25-7C70-6F23B5032C94","Apr 22, 2026 10:01 AM","Cloud Agent,Workstation,BDD-SQL DYN,OS-WIN-WKS " +"369633115","vmdtrac01.recette.adds","348514276","VMDTRAC01","00:50:56:9C:4E:D3,00:50:56:9C:4E:D3","10.45.17.4","fe80:0:0:0:1bd8:9174:9592:22ed","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c fe 51 4e 90 67 49-a5 71 7a e9 20 7f 03 6b","NoAssetTag","'+02:00","Apr 16, 2026 12:22 AM","supwindev","QAGENT","bbc8aa7c-0df2-4531-a569-566d272bdfcb","Apr 22, 2026 08:50 AM","64 bits","VM,SCA,PM","Cloud Agent","2","252","51FE1C42-904E-4967-A571-7AE9207F036B","Apr 22, 2026 09:14 AM","Cloud Agent,Workstation,OS-WIN-WKS " +"387175213","vmddops02.recette.adds","356513162","VMDDOPS02","00:50:56:9C:50:A8,00:50:56:9C:50:A8","10.45.17.68","fe80:0:0:0:a7c7:43e:b813:5a99","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 0a 70 63 43 4f e1-34 11 e1 44 5c 9d c7 90","NoAssetTag","'+02:00","Apr 15, 2026 11:05 PM","supwindev","QAGENT","f01d3609-5c73-4ff7-be16-361d616c252c","Apr 22, 2026 08:28 AM","64 bits","VM,SCA,PM","Cloud Agent","2","334","700A1C42-4363-E14F-3411-E1445C9DC790","Apr 22, 2026 08:40 AM","Cloud Agent,Workstation,OS-WIN-WKS " +"387183197","vmdpeag05.recette.adds","356517262","VMDPEAG05","00:50:56:9C:A2:64,00:50:56:9C:A2:64","10.45.17.199","fe80:0:0:0:350a:4dab:ae6c:f928","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 98 b5 be c8 2a ab-72 ff e0 7d 99 93 0e 1f","NoAssetTag","'+02:00","Apr 16, 2026 02:05 AM","supwindev","QAGENT","eea026a7-21b3-4f6d-9cd3-270759b44632","Apr 22, 2026 08:26 AM","64 bits","VM,SCA,PM","Cloud Agent","2","242","B5981C42-C8BE-AB2A-72FF-E07D99930E1F","Apr 22, 2026 08:33 AM","Cloud Agent,Workstation,OS-WIN-WKS " +"387033350","vmdtrac06.recette.adds","356440082","VMDTRAC06","00:50:56:9C:E8:9D,00:50:56:9C:E8:9D","10.45.17.8","fe80:0:0:0:959c:b5cb:e305:e793","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 02 75 61 50 07 10-05 6d 9f ef 83 da c6 46","NoAssetTag","'+02:00","Apr 16, 2026 01:51 AM","supwindev","QAGENT","95b7be16-ac20-4d19-a4ba-24e55e4c8abc","Apr 22, 2026 07:59 AM","64 bits","VM,SCA,PM","Cloud Agent","2","243","75021C42-5061-1007-056D-9FEF83DAC646","Apr 22, 2026 08:01 AM","Cloud Agent,Workstation,OS-WIN-WKS " +"396161228","vmdpeag03.recette.adds","359784956","VMDPEAG03","00:50:56:9C:ED:CE,00:50:56:9C:ED:CE","10.45.17.197","fe80:0:0:0:862f:d285:9555:17ca","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 6a 5f 78 67 5d b6-04 b3 cd 45 7e 71 7a 75","NoAssetTag","'+02:00","Apr 16, 2026 02:35 AM","supwindev","QAGENT","90d7f632-b092-4dd8-84cf-73ac805ce751","Apr 22, 2026 07:44 AM","64 bits","VM,SCA,PM","Cloud Agent","2","242","5F6A1C42-6778-B65D-04B3-CD457E717A75","Apr 22, 2026 07:44 AM","Cloud Agent,Workstation,OS-WIN-WKS " +"405477092","vmmgtca14c1.sanef-int.adds","363237094","VMMGTCA14C1","00:50:56:90:0D:F2","10.41.19.76","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 40 74 05 cd 61 46-4a 40 64 77 e1 04 20 58","NoAssetTag","'+02:00","Apr 02, 2026 01:40 PM","admin_gtc","QAGENT","1f886dfb-4c76-4d28-8e05-59b037cd040d","Apr 22, 2026 07:36 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","74401042-cd05-4661-4a40-6477e1042058","Apr 22, 2026 07:36 AM","Cloud Agent,Workstation,BDD-SQL DYN,OS-WIN-WKS " +"387170879","vmdpeag04.recette.adds","356517261","VMDPEAG04","00:50:56:9C:38:61,00:50:56:9C:38:61","10.45.17.198","fe80:0:0:0:ec86:b8ef:2bd2:bf72","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c f3 c9 10 8f 1d f4-09 61 c0 9c f4 e5 11 0d","NoAssetTag","'+02:00","Apr 16, 2026 01:20 AM","supwindev","QAGENT","3fdd8d99-5437-4a34-a556-58727d89ec1f","Apr 22, 2026 07:34 AM","64 bits","VM,SCA,PM","Cloud Agent","2","242","C9F31C42-8F10-F41D-0961-C09CF4E5110D","Apr 22, 2026 07:34 AM","Cloud Agent,Workstation,OS-WIN-WKS " +"391686889","vmmvscdsi1.sanef-int.adds","357954120","VMMVSCDSI1","00:50:56:90:AE:DB","10.41.7.240","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 6e 49 18 66 d8 3a-dd a6 22 a5 bc af cc de","NoAssetTag","'+02:00","Feb 02, 2026 06:22 PM","Operateur","QAGENT","712c55a0-16dd-407c-885c-40a010a07fb6","Apr 03, 2026 11:58 AM","64 bits","VM,SCA,PM","Cloud Agent","2","342","496e1042-6618-3ad8-dda6-22a5bcafccde","Apr 03, 2026 11:58 AM","Cloud Agent,Workstation,OS-WIN-WKS " +"387193123","vmdtrac14.recette.adds","356516697","VMDTRAC14","00-50-56-9C-8A-5B,,","0.0.0.0,10.45.17.16","fe80:0:0:0:e691:fe78:141b:944b","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.7462","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","'-","'-","16383","'-","VMware-42 1c 27 e4 59 ee 77 1f-ca 4e 41 63 b3 62 20 99","NoAssetTag","'+01:00","Dec 31, 2025 04:33 PM","Unknown","QAGENT","2c004946-d102-4129-b259-184eeda55364","Dec 31, 2025 05:27 PM","x64","VM,SCA,PM","Cloud Agent","2","248","E4271C42-EE59-1F77-CA4E-4163B3622099","Feb 24, 2026 09:17 AM","Cloud Agent,Workstation,OS-WIN-WKS " +"387195521","vmdpeag03.recette.adds","356517263","VMDPEAG03","00-50-56-9C-ED-CE,,","0.0.0.0,10.45.17.197","fe80:0:0:0:862f:d285:9555:17ca","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.7462","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","'-","'-","16383","'-","VMware-42 1c 6a 5f 78 67 5d b6-04 b3 cd 45 7e 71 7a 75","NoAssetTag","'+01:00","Dec 31, 2025 04:42 PM","Unknown","QAGENT","5fa1cd6a-1b7c-42f6-867f-34dc67b51695","Dec 31, 2025 05:36 PM","x64","VM,SCA,PM","Cloud Agent","2","248","5F6A1C42-6778-B65D-04B3-CD457E717A75","Dec 31, 2025 06:24 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"387177773","vmddops01.recette.adds","356512156","VMDDOPS01","00-50-56-9C-67-BD,,","0.0.0.0,10.45.17.67","fe80:0:0:0:70f8:8b63:91d3:43ad","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.7462","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","'-","'-","16383","'-","VMware-42 1c 43 33 84 6b 92 fd-19 0f f0 7d 63 ee a6 77","NoAssetTag","'+01:00","Dec 31, 2025 03:30 PM","Unknown","QAGENT","7590a274-9433-4dd4-9c02-9497c9078587","Dec 31, 2025 03:50 PM","x64","VM,SCA,PM","Cloud Agent","2","248","33431C42-6B84-FD92-190F-F07D63EEA677","Dec 31, 2025 03:50 PM","Cloud Agent,Workstation,OS-WIN-WKS " +"378015144","vmdispt01.recette.adds","352290264","VMDISPT01","00:50:56:9C:02:27,00:50:56:9C:02:27","10.45.17.62","fe80:0:0:0:c36e:da85:18de:79b8","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.7462 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 1b 63 65 b9 2e 23-00 21 5c c7 ec a2 d1 80","NoAssetTag","'+01:00","Dec 29, 2025 01:41 PM","supwindev","QAGENT","9101e19d-3159-4c4e-95c3-9049b9443390","Dec 29, 2025 02:56 PM","64 bits","VM,SCA,PM","Cloud Agent","2","244","631B1C42-B965-232E-0021-5CC7ECA2D180","Dec 29, 2025 02:56 PM","Cloud Agent,Workstation,OS-WIN-WKS " diff --git a/inputs/production_env.csv b/inputs/production_env.csv new file mode 100644 index 0000000..386a9e0 --- /dev/null +++ b/inputs/production_env.csv @@ -0,0 +1,888 @@ +Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application +bly-bly1-gc1;;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +bly-bly1-gc2;BLY-BLY2-GC2;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +bly-bly1-ves1;;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +bly-bly1-ves2;BLY-BLY2-VES2;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +ceupplu1;;linux;CentOS Linux release 7.1.1503 (Core);;Production;;a_definir;Production;secops; +lamapgis1;lamapgis1.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Entreprise;;Production;;a_definir;Production;secops; +lamapgis2;lamapgis2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +lamaprac1;lamaprac1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.10 (Santiago);;Production;;a_definir;Production;secops; +lamaprac2;lamaprac2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +lamaprac3;lamaprac3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +lamaprac4;lamaprac4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +lampadp1;lampadp1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lampadp1-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lampadp2;lampadp2.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lampadp2-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lampadv1;lampadv1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lampadv1-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lampasu1;lampasu1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +lampasu2;lampasu2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +lampcrm1;lampcrm1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lampcrm1-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lampdec1;lampdec1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lampoct1;lampoct1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lamppea1;lamppea1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lamppea1-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lamppea2;lamppea2.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lamppea2-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +lampsas1;lampsas1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +lampwaz1;lampwaz1.sanef.groupe;linux;CentOS Linux release 7.7.1908 (Core);;Production;;a_definir;Production;secops; +lpagtbpla1;lpagtbpla1;linux;Red Hat Enterprise Linux 8.10;Gestion;Production;;a_definir;Implémentation;secops;AgileTime 2.7.9 +lpaiigrid1;lpaiigrid1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +lpamebrac1;lpamebrac1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0 +lpamebrac2;lpamebrac2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0 +lpamebrac3;lpamebrac3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0 +lpamebrac4;lpamebrac4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0 +lpdecabi42;lpdecabi42.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +lpemvaste1;lpemvaste1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvaste2;lpemvaste2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvaste3;lpemvaste3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvaste4;lpemvaste4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvaste5;lpemvaste5.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvaste6;lpemvaste6.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +lpemvbaemv1;lpemvbaemv1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops; +lpemvbpemv1;lpemvbpemv1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops; +lpemvbpemv2;lpemvbpemv2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops; +lpemvbpemv3;lpemvbpemv3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops; +lpemvbpemv4;lpemvbpemv4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops; +lpgesanas1;lpgesanas1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops; +lpgesanas2;lpgesanas2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops; +lpinfbcos1;lpinfbcos1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;COSWIN Entreprise Edition 8i +lpsimabkp1;lpsimabkp1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +lpsimbpfe1;lpsimbpfe1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);;Production;;a_definir;Production;secops; +lptrabgas1;lptrabgas1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Gaspar 1 +ls-abbeville-est;ls-abbeville-est;windows;Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-abbeville-nord;LS-ABBEVILLE-NORD;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-amblainville;ls-amblainville;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-amiens-nord;ls-amiens-nord;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-amiens-ouest;ls-amiens-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-amiens-sud;ls-amiens-sud;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-arras;ls-arras;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-arsy;ls-arsy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-athies;ls-athies;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-aumale-est;ls-aumale-est;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-aumale-ouest;ls-aumale-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-bapaume;ls-bapaume;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-beaumont;ls-beaumont;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-beautot;ls-beautot;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-beauvais-centre;ls-beauvais-centre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-beauvais-nord;ls-beauvais-nord;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-berck;ls-berck;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-bethune;ls-bethune;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-bolbec;ls-bolbec;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-bonsecours;ls-bonsecours;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-boulay-psb;ls-boulay-psb;windows;Microsoft Windows Server 2016 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-boulay-spare;LS-BOULAY-PSB-SPARE.sanef.fr;windows;Microsoft Windows Server 2016 Standard;;Production;;a_definir;Production;secops; +ls-boulogne;ls-boulogne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-bouville;ls-bouville;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +ls-bretonneux;ls-bretonneux;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-cambrai;ls-cambrai;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-chamant;ls-chamant;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-chamant2;ls-chamant2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-charmont;ls-charmont;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-chateau-thierry;ls-chateau-thierry;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-chevrieres;ls-chevrieres;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-clermont-en-arg;ls-clermont-en-arg;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-cote-picarde;ls-cote-picarde;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-cottevrard;ls-cottevrard;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-courbes;ls-courbes;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-courcy;ls-courcy;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-coutevroult;ls-coutevroult;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-dormans;ls-dormans;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-essertaux;ls-essertaux;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-farebersviller;ls-farebersviller;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-fecamp;ls-fecamp;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-fresnes;ls-fresnes;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-fresnes-en-woevre;ls-fresnes-en-woevre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-gauchy;ls-gauchy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-hardivilliers;ls-hardivilliers;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-haudricourt;ls-haudricourt;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-herquelingue;ls-herquelingue;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-hochfelden;ls-hochfelden;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-hochfelden-ouest;ls-hochfelden-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-hordain;ls-hordain;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-jarny;ls-jarny;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-jules-verne;ls-jules-verne;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-la-neuvillette;ls-la-neuvillette;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-la-vallee;ls-la-vallee;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-la-veuve-mourmelon;ls-la-veuve-mourmelon;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-la-veuve-reims;ls-la-veuve-reims;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-laon;ls-laon;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-le-touquet;ls-le-touquet;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-lievin;ls-lievin;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-lillers;ls-lillers;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-loupershouse;ls-loupershouse;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-marquion;ls-marquion;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-masnieres;ls-masnieres;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-maurepas;ls-maurepas;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-meru;ls-meru;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-mont-choisy;ls-mont-choisy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-montreuil-bpv;ls-montreuil-bpv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-montreuil-bretelle;ls-montreuil-bretelle;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-montreuil-reims;ls-montreuil-reims;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-neufchatel;ls-neufchatel;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-noeux-les-mines;ls-noeux-les-mines;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-nordausques;ls-nordausques;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-ormes;ls-ormes;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-phalsbourg;ls-phalsbourg;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-plateau;ls-plateau;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-poix-de-picardie;ls-poix-de-picardie;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-portes-vignoble;ls-portes-vignoble;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-puttelange;ls-puttelange;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-ressons;ls-ressons;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-rn29;ls-rn29;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-roye;ls-roye;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-santerre;ls-santerre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-sarre-union;ls-sarre-union;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-sarreguemines;ls-sarreguemines;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-saverne;ls-saverne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-schwindratzheim;ls-schwindratzheim-clone;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-setques;ls-setques;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-sommesous;ls-sommesous;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-alb;ls-spare-alb;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +ls-spare-beu;ls-spare-beu;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-eco;ls-spare-eco;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-etv;ls-spare-etv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-mon;ls-spare-mon;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-mtz;ls-spare-mtz;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-sen;ls-spare-sen;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-spare-tqx;ls-spare-tqx;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-srom-bpv;ls-srom-bpv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-srom-ferme;ls-srom-ferme;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-srom-ouvert;ls-srom-ouvert;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-avold-a;ls-st-avold-a;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-avold-b;ls-st-avold-b;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-etienne;ls-st-etienne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-gibrien;ls-st-gibrien;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-jean;ls-st-jean;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-omer;ls-st-omer;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-omer2;ls-st-omer2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-st-witz;ls-st-witz;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-ste-marie;ls-ste-marie;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-ste-menehould;ls-ste-menehould;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-taissy;ls-taissy;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-thelus;ls-thelus;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-therouanne;ls-therouanne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-thillois;ls-thillois;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vallee-de-l-aisne;ls-vallee-de-l-aisne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vallee-de-l-aube;ls-vallee-de-l-aube;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vallee-nievre;ls-vallee-nievre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vallee-somme;ls-vallee-somme;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vatry;ls-vatry;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-vemars-ouest;ls-vemars-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-verdun;ls-verdun;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-voie-sacree;ls-voie-sacree;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-yerville;ls-yerville;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +ls-yvetot;ls-yvetot;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +mpcecmi1;mpcecmi1.sanef.groupe;windows;Microsoft Windows 10 Entreprise 2016 LTSB;;Production;;a_definir;Production;secops; +NALBNVR1;;windows;Microsoft Windows Server 2012 Foundation;;Production;;a_definir;Production;secops; +nvr-spare-alb;nvr-spare-alb;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-beu;nvr-spare-beu;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-eco;nvr-spare-eco;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-etv;nvr-spare-etv;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-mon;nvr-spare-mon;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-mtz;nvr-spare-mtz;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-sen;nvr-spare-sen;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +nvr-spare-tqx;nvr-spare-tqx;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +RC7KMIL5;;;OA;;Production;;a_definir;Production;secops; +RC7KMIL6;;;OA;;Production;;a_definir;Production;secops; +RC7KRTX5;;;OA;;Production;;a_definir;Production;secops; +RC7KRTX6;;;OA;;Production;;a_definir;Production;secops; +rmila150;rmila150.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.10 (Santiago);;Production;;a_definir;Production;secops; +rmilacs1;rmilacs1.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops; +rmilasu1;rmilasu1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +rmilbwp1;rmilbwp1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.3 (Tikanga);;Production;;a_definir;Production;secops; +rmilmi2;;windows;Windows 2003;;Production;;a_definir;Production;secops; +rmilrau1;rmilrau1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.3 (Santiago);;Production;;a_definir;Production;secops; +rmilu2k1;rmilu2k1.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops; +rmilwdc1;rmilwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +rrtxu2k1;rrtxu2k1.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops; +rsbcacs2;rsbcacs2.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops; +rsmiasu1;rsmiasu1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +rsmiged1;;windows;Microsoft Windows Server 2003 Standard Edition;;Production;;a_definir;Production;secops; +rsmimas1;;windows;Microsoft Windows Server 2003 Enterprise Edition;;Production;;a_definir;Production;secops; +rsminas1;rsminas1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.10 (Santiago);;Production;;a_definir;Production;secops; +rsmirau1;rsmirau1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.3 (Santiago);;Production;;a_definir;Production;secops; +rsmisvg4;rsmisvg4.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops; +rsmiwdc1;rsmiwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +saroumane;saroumane.unix.sanef.fr;linux;Red Hat Linux release 7.3 (Valhalla);;Production;;a_definir;Production;secops; +spaiissws1;;;FOS;;Production;;a_definir;Production;secops; +spaiissws2;;;FOS;;Production;;a_definir;Production;secops; +spaiissws3;;;FOS;;Production;;a_definir;Production;secops; +spaiissws4;;;FOS;;Production;;a_definir;Production;secops; +spasuagsm1;spasuagsm1.sanef.groupe;linux;CentOS Linux release 7.2.1511 (Core);;Production;;a_definir;Production;secops; +spasuagsm2;spasuagsm2.sanef.groupe;linux;CentOS Linux release 7.2.1511 (Core);;Production;;a_definir;Production;secops; +spasuagsm3;spasuagsm3.sanef.groupe;linux;CentOS Linux release 7.2.1511 (Core);;Production;;a_definir;Production;secops; +spasuagsm4;spasuagsm4.sanef.groupe;linux;CentOS Linux release 7.2.1511 (Core);;Production;;a_definir;Production;secops; +spbckamag1;spbckamag1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops; +spbckamag2;spbckamag2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops; +spbckamag3;spbckamag3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops; +spbckamag4;spbckamag4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops; +spbckamag5;spbckamag5.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops; +spbckamag6;spbckamag6.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops; +spbckamag7;spbckamag7.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops; +spbckamag8;spbckamag8.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops; +spbckmmag1;spbckmmag1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);EMV;Production;;a_definir;Production;secops;EMV V17 17 +spbckmmag2;spbckmmag2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);EMV;Production;;a_definir;Production;secops;EMV V17 17 +spbocbsap1;spbocbsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +spboomcla1;spboomcla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +spboomcla2;spboomcla2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +spburadpe1;spburadpe1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1 +spburadpi1;spburadpi1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1 +spcybabkp1;spcybabkp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +spcybavlt1;;;;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +spcybavlt2;;;;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +spcybavlt3;;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +specmadpr1;specmadpr1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM +specmadpr2;specmadpr2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM +specmadpr3;specmadpr3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM +spemvalog1;spemvalog1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);Infrastructure;Production;;a_definir;Production;secops;splunk 1 +speurasvp1;speurasvp1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;;Production;;a_definir;Production;secops; +splogbels1;splogbels1;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +splogbels2;splogbels2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +splogbels3;splogbels3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +splogbels4;splogbels4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +sppeaanvr1;sppeaanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr10;sppeaanvr10;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr11;sppeaanvr11;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr12;sppeaanvr12;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr13;sppeaanvr13;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr14;sppeaanvr14;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr15;sppeaanvr15;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr16;sppeaanvr16;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr17;sppeaanvr17;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr18;sppeaanvr18;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr19;sppeaanvr19;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr2;sppeaanvr2;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr20;sppeaanvr20;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr21;sppeaanvr21;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr22;sppeaanvr22;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr23;sppeaanvr23;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr24;sppeaanvr24;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr25;sppeaanvr25;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr26;sppeaanvr26;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr27;sppeaanvr27;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr28;sppeaanvr28;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr29;sppeaanvr29;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr3;sppeaanvr3;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr30;sppeaanvr30;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr31;sppeaanvr31;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr32;sppeaanvr32;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr33;sppeaanvr33;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr4;sppeaanvr4;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr5;sppeaanvr5;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr6;sppeaanvr6;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr7;sppeaanvr7;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr8;sppeaanvr8;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sppeaanvr9;sppeaanvr9;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +sproibgtc1;sproibgtc1;windows;Microsoft Windows Server 2019 Standard;;Production;;a_definir;Production;secops; +spsecalog1;spsecalog1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);;Production;;a_definir;Production;secops; +spsicaquo1;spsicaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;MIVISU PMV 1 +sptrabenr1;sptrabenr1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +sptrabenr2;sptrabenr2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +vadvpapp1;vadvpapp1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.6 (Tikanga);;Production;;a_definir;Production;secops; +vadvpapp3;vadvpapp3.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.6 (Tikanga);;Production;;a_definir;Production;secops; +vairtom1;vairtom1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 5.8 (Tikanga);;Production;;a_definir;Production;secops; +vampsycapp1;vampsycapp1.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Standard;;Production;;a_definir;Production;secops; +vampsycapp2;vampsycapp2.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Standard;;Production;;a_definir;Production;secops; +vampsychtp1;vampsychtp1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.5 (Santiago);;Production;;a_definir;Production;secops; +vastapp1;vastapp1.sanef.groupe;linux;CentOS release 6.5 (Final);;Production;;a_definir;Production;secops; +vburadmad1;vburadmad1.sanef.groupe;windows;Microsoft Windows Server 2012 Standard;;Production;;a_definir;Production;secops; +vburimp2;vburimp2.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Standard;;Production;;a_definir;Production;secops; +vburwdc1;vburwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vburwdc2;vburwdc2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vemvrsa3;vemvrsa3.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops; +vemvrsa4;vemvrsa4.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops; +vemvsym1;vemvsym1;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17 +vexploit2;vexploit2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vmampdif1;vmampdif1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmampdif2;vmampdif2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmampgis1;vmampgis1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vmampgis2;vmampgis2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vmampgis3;vmampgis3.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vmampgis4;vmampgis4.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vmampgis5;vmampgis5.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vmampgtc1;vmampgtc1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +vmampgtc2;vmampgtc2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +vmamphtp1;vmamphtp1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmamphtp2;vmamphtp2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmampmet1;vmampmet1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +vmampmet2;vmampmet2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +vmamprdt1;vmamprdt1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmamprdt2;vmamprdt2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmampstg1;vmampstg1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmampstg2;vmampstg2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmampsxt1;vmampsxt1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmampsxt2;vmampsxt2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmampsxt3;vmampsxt3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmampsxt4;vmampsxt4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmampsxt5;vmampsxt5.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Implémentation;secops; +vmamptd1;vmamptd1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops; +vmampweb1;vmampweb1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vmampweb2;vmampweb2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vmcliint1;vmcliint1.sanef.groupe;windows;Microsoft Windows Server 2012 Standard;;Production;;a_definir;Production;secops; +vmcmdb;vmcmdb.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vmipm1;vmipm1.sanef.groupe;linux;FreeBSD;;Production;;a_definir;Production;secops; +vmkemp1;vmkemp1.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops; +vmkemp2;vmkemp2.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops; +vmkemplb1;vmkemplb1.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops; +vmkemplb2;vmkemplb2.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops; +vmm_stl_01;vmm_stl_01.sanef-int.adds;windows;Microsoft Windows 11 Entreprise;;Production;;a_definir;Implémentation;secops; +vmnms1;;windows;Microsoft Windows Server 2003 Standard Edition;;Production;;a_definir;Production;secops; +vmntp1;vmntp1.sanef.groupe;linux;CentOS release 6.4 (Final);;Production;;a_definir;Production;secops; +vmpgmao7;vmpgmao7.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vmpki1;vmpki1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vmpki2;vmpki2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vmquorum1;vmquorum1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops; +vmradius3;vmradius3.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Entreprise;;Production;;a_definir;Production;secops; +vmradius4;vmradius4.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Entreprise;;Production;;a_definir;Production;secops; +vmsapnrt1;vmsapnrt1;windows;Microsoft Windows Server 2008 R2 Entreprise;;Production;;a_definir;Production;secops; +vmsccm1;vmsccm1.sanef.groupe;windows;Microsoft Windows 7 Entreprise;;Production;;a_definir;Production;secops; +vmsym2;vmsym2;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;Symantec (Antivirus Serveur) 1 +vmtelotms;;;;;Production;;a_definir;Production;secops; +vmxfb1;vmxfb1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.7 (Santiago);;Production;;a_definir;Production;secops; +vmzeus;vmzeus.sanef.groupe;linux;CentOS release 6.3 (Final);;Production;;a_definir;Production;secops; +vpa14agtc1;vpa14agtc1;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Production;secops; +vpa14agtc2;vpa14agtc2;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Production;secops; +vpa14bgtc1;vpa14bgtc1;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Production;secops; +vpa14cgtc1;vpa14cgtc1.sanef.groupe;windows;Microsoft Windows 11 Entreprise;;Production;;a_definir;Production;secops; +vpabnanvr1;vpabnanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpabvanvr1;vpabvanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpadvaapp1;vpadvaapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Implémentation;secops;ADV-U facturation sanef 1.29g +vpadvaapp4;vpadvaapp4.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpadvangx1;vpadvangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;Interface API REST pour ERP5 1 +vpaflarat1;vpaflarat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow 1 +vpaflbdwh1;vpaflbdwh1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD +vpaflbsta1;vpaflbsta1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD +vpaflgsys1;vpaflgsys1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD +vpagtaftp1;vpagtaftp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime 2.7.9 +vpagtatse1;vpagtatse1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime - Sapn 1 +vpagtaweb1;vpagtaweb1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime - Sapn 1 +vpaiia8770;vpaiia8770.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops; +vpaiiaada1;vpaiiaada1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Audit plus 1 +vpaiiaadm1;vpaiiaadm1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Manager plus 1 +vpaiiaast1;vpaiiaast1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Collecte Serveur 1 +vpaiiaazu1;vpaiiaazu1;windows;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;Infrastructure;Production;DMZ;a_definir;Production;secops; +vpaiiacam2;vpaiiacam2;windows;Windows 2016 Version 1607;Trafic;Production;DMZ;a_definir;Production;secops;Autoroute Trafic 1 +vpaiiacbi1;vpaiiacbi1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiacen1;vpaiiacen1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiacol1;vpaiiacol1.sanef.groupe;linux;CentOS Linux release 8.2.2004 (Core);;Production;;a_definir;Production;secops; +vpaiiadba1;vpaiiadba1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion oracle 1 +vpaiiadns1;vpaiiadns1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1 +vpaiiadns2;vpaiiadns2;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1 +vpaiiadns3;vpaiiadns3;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1 +vpaiiadns4;VPAIIADNS4;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1 +vpaiiafsso1;vpaiiafsso1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vpaiiafsso2;vpaiiafsso2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vpaiiagml1;vpaiiagml1;windows;Windows 2016 Version 1607;Infrastructure;Production;;a_definir;Production;secops; +vpaiiairs1;vpaiiairs1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;IRS (Insight Repport Support) 1 +vpaiiamap1;vpaiiamap1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiammw1;vpaiiammw1.sanef.groupe;linux;ArubaOS;;Production;;a_definir;Production;secops; +vpaiiammw2;vpaiiammw2.sanef.groupe;linux;ArubaOS;;Production;;a_definir;Production;secops; +vpaiiaoms1;vpaiiaoms1.sanef.groupe;linux;SUSE Linux Enterprise Server 12 (x86_64);;Production;;a_definir;Production;secops; +vpaiiaoms2;vpaiiaoms2.sanef.groupe;linux;SUSE Linux Enterprise Server 12 (x86_64);;Production;;a_definir;Production;secops; +vpaiiapcw1;vpaiiapcw1.sanef.groupe;linux;Appliance;;Production;;a_definir;Production;secops; +vpaiiapkg1;vpaiiapkg1;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops; +vpaiiapol1;vpaiiapol1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiapol10;vpaiiapol10.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiapol2;vpaiiapol2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiapol3;vpaiiapol3.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiapol4;vpaiiapol4.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiapol5;vpaiiapol5.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiapol6;vpaiiapol6.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiapol7;vpaiiapol7.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiapol9;vpaiiapol9.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiapvc1;vpaiiapvc1.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops; +vpaiiapvc2;vpaiiapvc2.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops; +vpaiiapvc3;vpaiiapvc3.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops; +vpaiiapvc4;vpaiiapvc4.sanef.groupe;windows;Microsoft Windows 10 Enterprise;;Production;;a_definir;Production;secops; +vpaiiapvd1;vpaiiapvd1.sanef.groupe;windows;Microsoft Windows 10 Enterprise;;Production;;a_definir;Production;secops; +vpaiiapvd2;vpaiiapvd2.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops; +vpaiiapvd3;vpaiiapvd3.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops; +vpaiiapvd4;vpaiiapvd4.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops; +vpaiiapvd5;vpaiiapvd5.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops; +vpaiiarda1;vpaiiarda1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiiasbc1;vpaiiasbc1.sanef.groupe;linux;Red Hat Enterprise Linux 6 (64-bit);;Production;;a_definir;Production;secops; +vpaiiasbc2;vpaiiasbc2.sanef.groupe;linux;;;Production;;a_definir;Production;secops; +vpaiiatse2;vpaiiatse2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Gestion;Production;;a_definir;Production;secops; +vpaiiavcl1;vpaiiavcl1.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops; +vpaiiavcl2;vpaiiavcl2.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops; +vpaiiawif1;;linux;centos-release-7-2;;Production;;a_definir;Production;secops; +vpaiibcen1;vpaiibcen1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpaiibsws1;vpaiibsws1.sanef.groupe;linux;BackBox version 7.00.05;;Production;;a_definir;Production;secops; +vpairahtp1;vpairahtp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops; +vpairatom1;vpairatom1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops; +vpalbanvr1;vpalbanvr1;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpallaovg1;vpallaovg1.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops; +vpallaovp1;vpallaovp1.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops; +vpameahtp1;vpameahtp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie +vpameahtp2;vpameahtp2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie +vpameakfk1;vpameakfk1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie +vpameakfk2;vpameakfk2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie +vpameakfq1;vpameakfq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie +vpameaoct1;vpameaoct1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Octan 1.0 +vpameaoct2;vpameaoct2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Octan 1.0 +vpameaoct3;vpameaoct3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Octan 1.0 +vpameapmv1;vpameapmv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;MIVISU PMV 1 +vpameapmv2;vpameapmv2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;MIVISU PMV 1 +vpameaquo1;vpameaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie +vpameased1;vpameased1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops;SED 1 +vpameasxt1;vpameasxt1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0 +vpameasxt2;vpameasxt2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0 +vpameasxt3;vpameasxt3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0 +vpameasxt4;vpameasxt4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0 +vpameatra1;vpameatra1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops;AMELIE - Exploitation autoroutière +vpamlanvr1;vpamlanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpamsanvr1;vpamsanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpaptapsh1;vpaptapsh1.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Implémentation;secops; +vpaptbjup1;vpaptbjup1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops; +vpbckaadm1;vpbckaadm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckacse1;vpbckacse1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckacse2;vpbckacse2.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckangw1;vpbckangw1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckangw2;vpbckangw2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckangw3;vpbckangw3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckangw4;vpbckangw4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckatbx1;vpbckatbx1.sanef.groupe;linux;Debian GNU/Linux 10 (buster);;Production;;a_definir;Production;secops; +vpbckmadm1;vpbckmadm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckmcse1;vpbckmcse1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;EMV;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbckmcse2;vpbckmcse2.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;EMV;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpbipamod1;vpbipamod1;windows;Windows 2016 Version 1607;Péage;Production;DMZ;a_definir;Production;secops;Modalisa 1 +vpbipbdec1;vpbipbdec1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;BI;Production;;a_definir;Production;secops; +vpbmtanvr1;vpbmtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpbocaprx1;vpbocaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocardp1;vpbocardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vpbocarep1;vpbocarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocasec1;vpbocasec1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocharg1;vpbocharg1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocjump1;vpbocjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocmedi1;vpbocmedi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocrsap1;vpbocrsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4as1;vpbocs4as1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4as2;vpbocs4as2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4as3;vpbocs4as3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocs4ci1;vpbocs4ci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpbocsman1;vpbocsman1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD +vpboeacst1;vpboeacst1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops; +vpbooaboo1;vpbooaboo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooangx1;vpbooangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooaori1;vpbooaori1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooaori2;vpbooaori2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooardp1;vpbooardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooarep1;vpbooarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooarep2;vpbooarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobquo1;vpboobquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobquo2;vpboobquo2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobsql1;vpboobsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboobsql2;vpboobsql2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboojump1;vpboojump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpboomocr1;vpboomocr1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooosea1;vpbooosea1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbooosea2;vpbooosea2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD +vpbotaapm1;vpbotaapm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotakpi1;vpbotakpi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vpbotangx1;vpbotangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotapps1;vpbotapps1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotapps2;vpbotapps2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotapps3;vpbotapps3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotardp1;vpbotardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarep1;vpbotarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarep2;vpbotarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarmq1;vpbotarmq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarmq2;vpbotarmq2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotarmq3;vpbotarmq3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotasim1;vpbotasim1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotatsp1;vpbotatsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotatvv1;vpbotatvv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbquo1;vpbotbquo1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbsql1;vpbotbsql1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbsql2;vpbotbsql2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotbtsd1;vpbotbtsd1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotcach1;vpbotcach1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotjump1;vpbotjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco1;vpbotreco1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco2;vpbotreco2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco3;vpbotreco3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotreco4;vpbotreco4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotrssm1;vpbotrssm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbotrssm2;vpbotrssm2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD +vpbovanvr1;vpbovanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpburaadfs1;vpburaadfs1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion ADFS 1 +vpburaadfs2;vpburaadfs2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion ADFS 1 +vpburaadm1;vpburaadm1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Serveur Administration +vpburaaov1;vpburaaov1.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops; +vpburaaov2;vpburaaov2.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops; +vpburadhcp1;vpburadhcp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion DHCP 1 +vpburadhcp2;vpburadhcp2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion DHCP 1 +vpburadps1;vpburadps1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1 +vpburaexc1;vpburaexc1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Production;secops;EXCHANGE SERVER Enterprise Edition 2013 +vpburaexc2;vpburaexc2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Production;secops;EXCHANGE SERVER Enterprise Edition 2013 +vpburafax1;vpburafax1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;XMedius FAX 1 +vpburafax2;vpburafax2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;XMedius FAX 1 +vpburaimp1;vpburaimp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;PaperCut 19.1.3 (Build 52103) +vpburaquo1;vpburaquo1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vpburawap1;vpburawap1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion ADFS 1 +vpburawap2;vpburawap2;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion ADFS 1 +vpburawdc1;vpburawdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1 +vpburawdc2;vpburawdc2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1 +vpburawdc3;vpburawdc3.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1 +vpburawdc4;vpburawdc4.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1 +vpburbimp1;vpburbimp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;PaperCut 19.1.3 (Build 52103) +vpccyanvr1;vpccyanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpchtanvr1;vpchtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpcosaapp1;vpcosaapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;COSWIN Entreprise Edition 8i +vpcotanvr1;vpcotanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpcrmacle1;vpcrmacle1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);;Production;;a_definir;Production;secops;Cleo - CRM V2 8.01.100 SP3 +vpctvanvr1;vpctvanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpcybacpm1;vpcybacpm1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;CyberArk Production +vpcybapsm1;vpcybapsm1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpcybapsm2;vpcybapsm2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpcybapsm3;vpcybapsm3.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpcybapsm4;vpcybapsm4.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpcybapsp1;vpcybapsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpcybapsp2;vpcybapsp2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpcybapta1;vpcybapta1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;CyberArk Production +vpcybapvwa1;vpcybapvwa1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpcybapvwa2;vpcybapvwa2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production +vpdaibana1;vpdaibana1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1 +vpdaibana2;vpdaibana2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1 +vpdaibana3;vpdaibana3.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1 +vpdaibana4;vpdaibana4.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1 +vpdaibana5;vpdaibana5.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1 +vpdaibana6;vpdaibana6.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1 +vpdaibana7;vpdaibana7.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1 +vpdaibctc1;vpdaibctc1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1 +vpdaibctc2;vpdaibctc2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1 +vpdaoalic1;vpdaoalic1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;ELEC CALC 2017 +vpdataapp1;vpdataapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Trafic;Production;;a_definir;Implémentation;secops;Gestion des DATI 1 +vpdatafrt1;vpdatafrt1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Trafic;Production;;a_definir;Production;secops;Gestion des DATI 1 +vpdecasas4;vpdecasas4.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;DMZ;a_definir;Production;secops;SAS 1 +vpdecasas5;vpdecasas5.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1 +vpdecasas6;vpdecasas6.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1 +vpdecasas7;vpdecasas7.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1 +vpdecasas8;vpdecasas8.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1 +vpdepaapp1;vpdepaapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Gdepa 1 +vpdepaast1;vpdepaast1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Gdepa 1 +vpdepbels1;vpdepbels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Gdepa 1 +vpdsiaadm1;vpdsiaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpdsiaads1;vpdsiaads1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD SelfService plus 1 +vpdsiaans1;vpdsiaans1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsiaclo1;vpdsiaclo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;DMZ;a_definir;Production;secops;Owncloud 1 +vpdsiacol1;vpdsiacol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Collecte Serveur 1 +vpdsiadep1;vpdsiadep1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Nextcloud 31.0.7 +vpdsiafaz1;vpdsiafaz1.sanef.groupe;linux;Appliance;;Production;;a_definir;Production;secops; +vpdsiagit1;vpdsiagit1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;CVS 1 +vpdsiagrd1;vpdsiagrd1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Gestion DNS 1 +vpdsiahap1;vpdsiahap1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1 +vpdsiahap2;vpdsiahap2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1 +vpdsiahap3;vpdsiahap3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1 +vpdsiahap4;vpdsiahap4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1 +vpdsiaito1;vpdsiaito1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;ITOP 2.7 +vpdsiakib1;vpdsiakib1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsiakms1;vpdsiakms1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpdsiangx1;vpdsiangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1 +vpdsiangx2;vpdsiangx2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1 +vpdsiangx3;vpdsiangx3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1 +vpdsiangx4;vpdsiangx4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1 +vpdsiarad1;vpdsiarad1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1 +vpdsiarad2;vpdsiarad2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1 +vpdsiasaf1;vpdsiasaf1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1 +vpdsiasaf2;vpdsiasaf2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1 +vpdsiasat1;vpdsiasat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsiasat2;vpdsiasat2.sanef.groupe;linux;Oracle Linux Server release 8.9;Infrastructure;Production;;a_definir;Production;secops; +vpdsiasta1;vpdsiasta1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +vpdsiasta2;vpdsiasta2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +vpdsiatse1;vpdsiatse1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Serveur licence TSE +vpdsiatse2;vpdsiatse2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Rebond nouvel AD +vpdsiaumds1;vpdsiaumds1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;VCENTER Server Standard 1 +vpdsiavrs1;vpdsiavrs1.sanef.groupe;linux;VMware Photon OS;;Production;;a_definir;Implémentation;secops; +vpdsiawdm1;vpdsiawdm1.sanef.groupe;linux;SUSE Linux Enterprise Server 12 (x86_64);;Production;;a_definir;Implémentation;secops; +vpdsiawsus1;vpdsiawsus1;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1 +vpdsiawsus2;vpdsiawsus2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1 +vpdsibarc1;vpdsibarc1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.6 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops; +vpdsibels1;vpdsibels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsibels2;vpdsibels2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsibetc1;vpdsibetc1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops; +vpdsibetc2;vpdsibetc2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops; +vpdsibetc3;vpdsibetc3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops; +vpdsibpmm1;vpdsibpmm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsibquo1;vpdsibquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsigrid1;vpdsigrid1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Grid control 12 +vpdsismtp1;vpdsismtp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpdsismtp2;vpdsismtp2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpeapnot1;vpeapnot1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpechaetl1;vpechaetl1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpechaetl2;vpechaetl2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpechaetl3;vpechaetl3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpechaetl4;vpechaetl4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops; +vpechatal1;vpechatal1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpechatre1;vpechatre1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 +vpechatre2;vpechatre2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 +vpechatre3;vpechatre3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 +vpechatre4;vpechatre4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 +vpechbetl1;vpechbetl1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;EtlTool - ordonnanceur 1 +vpecmapss1;vpecmapss1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM +vpecmapss3;vpecmapss3.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM +vpecmardp1;vpecmardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM +vpecmbsql1;vpecmbsql1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM +vpecmbsql3;vpecmbsql3.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM +vpemvaadm1;vpemvaadm1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpemvaftp1;vpemvaftp1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpemvagtw1;vpemvagtw1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpemvaldap1;vpemvaldap1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpemvaldap2;vpemvaldap2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpemvantp1;vpemvantp1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpemvantp2;vpemvantp2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpemvapol1;vpemvapol1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpemvasat1;vpemvasat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Red Hat Satellite Satellite +vpemvatse1;vpemvatse1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV Rebond +vpemvatse2;vpemvatse2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV Rebond +vpemvawsus1;vpemvawsus1;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpemvaxsr1;vpemvaxsr1;windows;Microsoft Windows Server 2012 R2 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpemvgrid1;vpemvgrid1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17 +vpexparep1;vpexparep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;eReport 1 +vpexpatex1;vpexpatex1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops; +vpexpaxfb1;vpexpaxfb1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;XFB Gateway 1 +vpexpbdech1;vpexpbdech1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion de déchets +vpexpbtex1;vpexpbtex1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops; +vpflmanvr1;vpflmanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpgawagtw1;vpgawagtw1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpgawagtw2;vpgawagtw2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpgawamft1;vpgawamft1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpgawamft2;vpgawamft2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpgawbpgs1;vpgawbpgs1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpgeoagps2;vpgeoagps2;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Implémentation;secops; +vpgeobody1;vpgeobody1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vpgeobody2;vpgeobody2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vpgesapent1;vpgesapent1.sanef.groupe;linux;CentOS Linux release 7.2.1511 (Core);;Production;;a_definir;Production;secops; +vpgesaquo1;vpgesaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;3PAR StoreServ (SSMC) 1 +vpgesaquo2;vpgesaquo2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops; +vpgesasmc1;vpgesasmc1.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops; +vpgesasmc2;vpgesasmc2.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops; +vpgesbref1;vpgesbref1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops; +vpgmoaprx1;vpgmoaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops;COSWIN Entreprise Edition 8i +vpgraangx1;vpgraangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +vpgrnangx1;vpgrnangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +vpgrsangx1;vpgrsangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +vpgtcawsus1;vpgtcawsus1;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1 +vphdnanvr1;vphdnanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vphrqanvr1;vphrqanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpiadaada1;vpiadaada1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Audit plus 1 +vpiadaadm1;vpiadaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Manager plus 1 +vpiadapki1;vpiadapki1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vpiadapki2;vpiadapki2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vpiadapki3;vpiadapki3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vpiadapki4;vpiadapki4.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vpiadapol1;vpiadapol1.sanef.groupe;linux;Red Hat Enterprise Linux 8 (64-bit);Infrastructure;Production;;a_definir;Production;secops;Centreon 1 +vpiadawdc1;vpiadawdc1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpiadawdc2;vpiadawdc2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpiadawdc3;vpiadawdc3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpiadawdc4;vpiadawdc4.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1 +vpiadawsus1;vpiadawsus1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1 +vpintaels1;vpintaels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1 +vpintanfs1;vpintanfs1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1 +vpintaprx2;vpintaprx2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1 +vpintaweb2;vpintaweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1 +vpintaweb3;vpintaweb3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1 +vpintbweb2;vpintbweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1 +vpisibtel1;vpisibtel1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;ISI-COM 16.12 +vplogakib1;vplogakib1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +vplogalst1;vplogalst1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +vplogbels1;vplogbels1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops; +vplogbels2;vplogbels2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +vplogbquo1;vplogbquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +vplpeanvr1;vplpeanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpmalanvr1;vpmalanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpmetaads1;vpmetaads1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;AD SelfService plus 1 +vpmetaquo1;vpmetaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;3PAR StoreServ (SSMC) 1 +vpmetasmc1;vpmetasmc1.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops; +vpmetasmc2;vpmetasmc2.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops; +vpmonaftp1;vpmonaftp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);EMV;Production;;a_definir;Implémentation;secops;EMV V17 17 +vpnacaadm1;vpnacaadm1.sanef.groupe;linux;redhat-release-server-7;;Production;;a_definir;Production;secops; +vpnacaadm2;vpnacaadm2.sanef.groupe;linux;redhat-release-server-7;;Production;;a_definir;Production;secops; +vpnapamed1;vpnapamed1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpngwasia1;vpngwasia1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpngwasia2;vpngwasia2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpngwasic1;vpngwasic1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpngwasic2;vpngwasic2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpnitardp1;vpnitardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Implémentation;secops;Flux libre A13-A14 - +vpnitbbot1;vpnitbbot1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +vpodaboem1;vpodaboem1.sanef.groupe;linux;;;Production;;a_definir;Production;secops; +vpodaboem2;vpodaboem2.sanef.groupe;linux;;;Production;;a_definir;Production;secops; +vpodaboem3;vpodaboem3.sanef.groupe;linux;;;Production;;a_definir;Production;secops; +vpodaboem4;vpodaboem4.sanef.groupe;linux;;;Production;;a_definir;Production;secops; +vpodabquo1;vpodabquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Oracle 19 (12.2.0.3) +vpormanvr1;vpormanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vposapapp1;vposapapp1.sanef.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP +vposapast1;vposapast1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP +vposapels1;vposapels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP +vposapels2;vposapels2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP +vposapexp1;vposapexp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Implémentation;secops;OSAP +vposapkib1;vposapkib1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP 1.0 +vposapmet1;vposapmet1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Implémentation;secops;OSAP +vposapquo1;vposapquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP +vppataels1;vppataels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops; +vppatakib1;vppatakib1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;SI PATRIMOINE 1.0 +vppatalag1;vppatalag1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Trafic;Production;;a_definir;Production;secops;Lago 17 +vppatbcae1;vppatbcae1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Implémentation;secops;Babylon 4.0 build 2.3.0.7 +vppatbcao1;vppatbcao1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops; +vppatbl2r1;vppatbl2r1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Trafic;Production;;a_definir;Production;secops;L2R 1 +vppatbsip1;vppatbsip1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops; +vppbiadgw1;vppbiadgw1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;BI;Production;;a_definir;Production;secops; +vppboeacst1;vppboeacst1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops; +vppciagtw1;vppciagtw1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);EMV;Production;;a_definir;Implémentation;secops; +vppciamft1;vppciamft1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);EMV;Production;;a_definir;Implémentation;secops; +vppciaquo1;vppciaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;3PAR StoreServ (SSMC) 1 +vppciasmc1;vppciasmc1.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops; +vppciasmc2;vppciasmc2.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops; +vppcmardp1;vppcmardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM +vppeaaadm1;vppeaaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vppeaabst1;vppeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD +vppeaabst2;vppeaabst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD +vppeaabst3;vppeaabst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD +vppeaaexp1;vppeaaexp1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vppeaaiph1;vppeaaiph1.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops; +vppeaarcv1;vppeaarcv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Free Flow RCV - env PROD +vppeaaref1;vppeaaref1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vppeaaref2;vppeaaref2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vppeaaref4;vppeaaref4;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vppeaasip1;vppeaasip1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vppeaastl1;vppeaastl1.sanef.groupe;linux;Debian GNU/Linux 10 (buster);;Production;;a_definir;Implémentation;secops; +vppeabbst1;vppeabbst1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vppeabbst2;vppeabbst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vppeabbst3;vppeabbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vppeabbst4;vppeabbst4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 - +vppeabrac1;vppeabrac1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);;Production;;a_definir;Implémentation;secops; +vppeabrac2;vppeabrac2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);;Production;;a_definir;Implémentation;secops; +vppeabrac3;vppeabrac3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);;Production;;a_definir;Implémentation;secops; +vppeabrac4;vppeabrac4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);;Production;;a_definir;Implémentation;secops; +vppeahbst1;vppeahbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow 1 +vppeahbst3;vppeahbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD +vppixatsf1;vppixatsf1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS +vppixatsf2;vppixatsf2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS +vppixbams1;vppixbams1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS +vppixbams2;vppixbams2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS +vppmrames1;vppmrames1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion Radio 3RP 1 +vpppeaaref1;vpppeaaref1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1 +vppwdahap1;vppwdahap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops; +vppwdahap2;vppwdahap2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops; +vppwdapod1;vppwdapod1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vppwdapod2;vppwdapod2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vppwdbsql1;vppwdbsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops; +vpracaquo1;vpracaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops; +vpradbtef1;vpradbtef1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Trafic;Production;;a_definir;Production;secops;Gestion Radio 3RP 1 +vprauahtp2;vprauahtp2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops;ASUR (RAU) 1 +vprauareb1;vprauareb1;windows;Windows 7;;Production;;a_definir;Production;secops; +vpresardp1;vpresardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion switch 1 +vpresardp2;vpresardp2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion switch 1 +vproiagtc1;VPROIAGTC1;windows;Windows 2019 Version 2004;;Production;;a_definir;Production;secops; +vproibgtc1;vproibgtc1;windows;Microsoft Windows Server 2019 Standard;;Production;;a_definir;Production;secops; +vprpaangx1;vprpaangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1 +vprpnangx1;vprpnangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1 +vprpsangx1;vprpsangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1 +vpsaaanvr1;vpsaaanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpsamaext1;vpsamaext1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SAM - Gestion des Actifs Logiciels 1 +vpsasacpt1;vpsasacpt1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasactr1;vpsasactr1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasamic1;vpsasamic1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasapil1;vpsasapil1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk1;vpsasawrk1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk2;vpsasawrk2.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk3;vpsasawrk3.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk4;vpsasawrk4.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk5;vpsasawrk5.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsasawrk6;vpsasawrk6.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya +vpsdtanvr1;vpsdtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpsecapki1;vpsecapki1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops; +vpsecausb1;vpsecausb1.sanef.groupe;linux;Ubuntu;Infrastructure;Production;;a_definir;Production;secops; +vpsecawin1;vpsecawin1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sécurité windows 1 +vpsecbcadg2;vpsecbcadg2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;Nedap 1 +vpsicamic1;vpsicamic1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Implémentation;secops; +vpsicapol1;vpsicapol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Centreon 1 +vpsicardp1;vpsicardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Implémentation;secops;MIVISU PMV 1 +vpsimaapi1;vpsimaapi1.sanef.groupe;linux;CentOS Linux release 7.4.1708 (Core);;Production;;a_definir;Production;secops; +vpsimaapi2;vpsimaapi2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vpsimaexp1;vpsimaexp1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;DOLLAR UNIVERSE 1 +vpsimaexp2;vpsimaexp2.sanef.groupe;linux;CentOS Linux release 8.1.1911 (Core);;Production;;a_definir;Production;secops; +vpsimasvp1;vpsimasvp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Péage;Production;;a_definir;Production;secops;Free Flow 1 +vpsimaxsr1;vpsimaxsr1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;XFB Gateway 1 +vpsroanvr1;vpsroanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpssiandes1;vpssiandes1.sanef.groupe;windows;Windows 2019 Version 1809;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion Pki 1 +vpssiapki1;vpssiapki1.sanef.groupe;linux;CentOS Stream release 8;;Production;;a_definir;Production;secops; +vpssiapki2;vpssiapki2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1 +vpssiapki3;vpssiapki3.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion Pki 1 +vpstlbhis1;vpstlbhis1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +vpstlbpea1;vpstlbpea1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +vpstlbpea2;vpstlbpea2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +vpstlbtel1;vpstlbtel1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +vpstlbtel2;vpstlbtel2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +vpstqanvr1;vpstqanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpsupacen1;vpsupacen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol1;vpsupapol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol2;vpsupapol2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol3;vpsupapol3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupapol4;vpsupapol4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1 +vpsupapol5;vpsupapol5.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1 +vpsupbcen1;vpsupbcen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupbmap1;vpsupbmap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vpsupbmbi1;vpsupbmbi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1 +vptchagtc1;vptchagtc1;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +vptchagtc2;vptchagtc2;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +vptchbgtc1;vptchbgtc1;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops; +vptchcgtc1;vptchcgtc1.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Implémentation;secops; +vptelagws1;vptelagws1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.6 (Maipo);;Production;;a_definir;Production;secops; +vpthlanvr1;vpthlanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vptraagas1;vptraagas1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);;Production;;a_definir;Production;secops; +vptraatai1;vptraatai1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +vptraatai2;vptraatai2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +vptraatpf1;vptraatpf1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vptraatpf2;vptraatpf2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops; +vptraazen1;vptraazen1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +vptraazen2;vptraazen2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops; +vptrabalx1;vptrabalx1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Trafic;Production;;a_definir;Production;secops; +vptrabkme1;vptrabkme1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops; +vptrabmut1;vptrabmut1.sanef.groupe;linux;;;Production;;a_definir;Implémentation;secops; +vptrabmut2;vptrabmut2.sanef.groupe;linux;;;Production;;a_definir;Production;secops; +vptrabmut3;vptrabmut3.sanef.groupe;linux;;;Production;;a_definir;Production;secops; +vptrabmut4;vptrabmut4.sanef.groupe;linux;;;Production;;a_definir;Implémentation;secops; +vptrabpxp1;vptrabpxp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Trafic;Production;DMZ;a_definir;Production;secops; +vptrabtpc1;vptrabtpc1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Trafic;Production;;a_definir;Production;secops;Temps de parcours v2 1 +vptrabtpv1;vptrabtpv1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Trafic;Production;;a_definir;Production;secops;Temps de parcours v2 1 +vptrabwaz1;vptrabwaz1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops; +vptsyanvr1;vptsyanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1 +vpvidavsc1;vpvidavsc1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Logiciel gestion vidéo 1 +vpvidavsc2;vpvidavsc2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Logiciel gestion vidéo 1 +vpvpnaems1;vpvpnaems1.sanef.groupe;linux;;Infrastructure;Production;;a_definir;Implémentation;secops;FortiAnalyzer 1 +vpvpnarad1;vpvpnarad1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.3 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;VM de production pour l'authentification forte pour les accès distants SSL. +vpvpnarad2;vpvpnarad2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.3 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;VM de production pour l'authentification forte pour les accès distants SSL. +vpvsaaafl1;vpvsaaafl1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaafl2;vpvsaaafl2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaafz1;vpvsaaafz1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaafz2;vpvsaaafz2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaahp2;vpvsaaahp2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaahz2;vpvsaaahz2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaages1;vpvsaages1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaages2;vpvsaages2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaagez1;vpvsaagez1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaagez2;vpvsaagez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaiad1;vpvsaaiad1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaaiad2;vpvsaaiad2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaamet1;vpvsaamet1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaamet2;vpvsaamet2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaamez1;vpvsaamez1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaamez2;vpvsaamez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaarec2;vpvsaarec2.sanef.groupe;linux;Oracle Linux Server release 8.10;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaarez2;vpvsaarez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaasia1;vpvsaasia1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaasia2;vpvsaasia2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaasic1;vpvsaasic1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsaasic2;vpvsaasic2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsampci1;vpvsampci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vpvsampci2;vpvsampci2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1 +vraptcpsh1;vraptcpsh1.sanef.groupe;windows;Microsoft Windows 11 Entreprise;;Production;;a_definir;Production;secops; +vsapbdd1;vsapbdd1.sanef.groupe;linux;CentOS release 6.5 (Final);;Production;;a_definir;Production;secops; +vsccmr3;vsccmr3.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops; +vtmd;vtmd.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Standard;;Production;;a_definir;Production;secops; +vtpataels1;vtpataels1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops; +vtpatbsip1;vtpatbsip1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;SI PATRIMOINE 1.0 diff --git a/inputs/qualys_qql_ref.txt b/inputs/qualys_qql_ref.txt new file mode 100644 index 0000000..4783d42 --- /dev/null +++ b/inputs/qualys_qql_ref.txt @@ -0,0 +1,128 @@ + +---- + +====== Référence QQL — Asset Inventory Tag Rule Engine ====== + + +**Source officielle :** https://docs.qualys.com/en/gav/latest/search_tips/tag_rules.htm\\ +**Contexte :** ce qu'il faut pour écrire des règles Tag Rules (tags dynamiques) dans la console Qualys AssetView / GAV — tous les champs, syntaxe, pièges. + + +===== 1. Filtrer "asset avec Cloud Agent" ===== + +Champ natif propre : + +asset.trackingMethod: QAGENT + +Valeurs possibles pour ''trackingMethod'' : + * **QAGENT** : Cloud Agent + * IP, DNSNAME, NETBIOS + * INSTANCE_ID, OCA, VIRTUAL_MACHINE_ID, SEM, GCP_INSTANCE_ID + +Alternative aussi valide : + +inventory:(source:`Cloud Agent`) + +===== 2. Chaîner des tags (tags.name) ===== + +''tags.name'' **est supporté** dans les règles Asset Inventory (même si pas dans l'autocomplete UI). Exemple officiel Qualys : + +tags.name: `Cloud Agent` AND software:(name: `Cisco AnyConnect Secure Mobility Client`) + +===== 3. Requête OS-LIN-SRV — 3 options valides ===== + +^ # ^ Requête ^ Reco ^ +| 1 | ''operatingSystem.category1:Linux and operatingSystem.category2:Server and asset.trackingMethod:QAGENT'' | **À privilégier** — bas niveau, stable, indépendant de tout tag | +| 2 | ''operatingSystem.category1:Linux and operatingSystem.category2:Server and inventory:(source:`Cloud Agent`)'' | OK | +| 3 | ''operatingSystem.category1:Linux and operatingSystem.category2:Server and tags.name:`Cloud Agent`'' | OK mais chaîne sur un autre tag | + +===== 4. Syntaxe et opérateurs ===== + +^ Élément ^ Règle ^ +| Backticks '' ` ` '' | Match exact | +| Guillemets '' " " '' | Match partiel (substring) | +| Sans quote | Match exact sur un mot simple | +| AND / OR / NOT | Booleans (MAJUSCULES obligatoires) | +| Wildcards | ''*dev*'' (contient), ''dev*'' (commence), ''*dev'' (finit) | +| Range | ''[val1 ... val2]'' entre crochets, exact only | +| Null | ''fieldname is null'' | +| Date | yyyy-mm-dd, UTC | + + +Comparaisons ''<'', ''>'', ''>='', ''<='' : **uniquement** sur ''asset.riskScore''. Pour les versions de softs → ranges ''[16.0 ... 20.0]''. + + +===== 5. Hiérarchie Operating System ===== + +^ Champ ^ Valeurs / Usage ^ +| ''operatingSystem'' | Nom complet (ex: ''Red Hat Enterprise Linux 9.7'') | +| ''operatingSystem.category'' | Windows, Unix, Linux, Mac, Embedded (racine) | +| ''operatingSystem.category1'' | Primary (Windows, Linux…) | +| ''operatingSystem.category2'' | Server, Client, Embedded… | +| ''operatingSystem.publisher'' | Microsoft, Red Hat, Canonical… | +| ''operatingSystem.name'' | Windows 10, RHEL… | +| ''operatingSystem.architecture'' | 32-Bit, 64-Bit | +| ''operatingSystem.edition'' | Enterprise, Professional… | +| ''operatingSystem.update'' | SP2… | +| ''operatingSystem.version'' / ''marketVersion'' | Version numérique | + + +La forme ''operatingSystem.category:"Linux / Server"'' marche par tolérance Qualys, mais la doc préconise ''category1'' + ''category2'' **séparés** pour une syntaxe propre. + + +===== 6. Tokens utiles pour la taxonomie V3 ===== + + * **Software installé** : ''software:(name:"Cloud Agent")'', ''software:(category:...)'' + * **Service tournant** : ''compute.service:(name:...) and compute.service:(status:RUNNING)'' + * **Domain role AD** : ''compute.domainRole'' — valeurs possibles : + * Standalone Workstation + * Member Workstation + * Standalone Server + * Member Server + * Backup Domain Controller + * Primary Domain Controller + * **Ports ouverts** : ''asset.openPorts:(port:22)'' — utile pour tagguer "a SSH" ou "a RDP" + * **RiskScore** : ''asset.riskScore:>800'' — pour un tag High Risk + * **Hardware** : ''hardware.category1:Computer'', ''hardware.manufacturer:Dell'' + * **Interface** : ''asset.interface:(hostname:...)'', ''asset.interface:(address:...)'' + * **BIOS** : ''asset.biosDescription:"..."'' + +===== 7. Points clés à retenir ===== + + - ''tags.name'' **fonctionne** dans les règles Asset Inventory, même si pas dans l'autocomplete UI + - ''asset.trackingMethod:QAGENT'' est LE champ natif pour "a un agent" — à privilégier + - Les Rule Engines autres qu'Asset Inventory (Asset Search legacy, Groovy, Regex OS, IP Range) existent mais ne sont **pas** couverts par cette doc QQL — ils ont leur propre syntaxe + - OS category propre = ''category1'' + ''category2'' séparés, pas la concat ''"Linux / Server"'' + - Les comparaisons numériques (''<'', ''>'') ne marchent que sur ''asset.riskScore'' + +===== 8. Plan OS taxonomie (propositions QQL propres) ===== + +^ Tag ^ Règle QQL ^ +| **OS-LIN-SRV** | ''operatingSystem.category1:Linux and operatingSystem.category2:Server and asset.trackingMethod:QAGENT'' | +| **OS-WIN-SRV** | ''operatingSystem.category1:Windows and operatingSystem.category2:Server and asset.trackingMethod:QAGENT'' | +| **OS-WIN-WKS** | ''operatingSystem.category1:Windows and operatingSystem.category2:Client and asset.trackingMethod:QAGENT'' | +| **OS-WIN-DC** | ''operatingSystem.category1:Windows and (compute.domainRole:"Primary Domain Controller" OR compute.domainRole:"Backup Domain Controller")'' | +| **OS-MAC** | ''operatingSystem.category1:Mac and asset.trackingMethod:QAGENT'' | + +===== 9. Rule Engines disponibles (rappel) ===== + +Dans la console Tag Creation (vu UI SANEF) : + * **Asset Inventory** ← QQL moderne, tout ce qui est décrit ci-dessus + * Asset Name Contains + * IP Address In Range(s) / IP Address In Range(s) + Network(s) + * Network Addresses + * Open Ports + * Cloud Asset Search + * Vuln(QID) Exist + * Groovy Scriptlet + * **Asset Search** ← legacy XML, **à éviter**, renvoie l'erreur ''Unexpected character 'o' in prolog'' + * Vulnerability Detection Searches + * Container Security + + +Pour toute règle basée OS / agent / software / service, **toujours prendre Asset Inventory**. Les autres moteurs sont pour des cas spécifiques (scan IP, vulns, containers). + + +---- + +//— Source : Qualys GAV docs ''/gav/latest/search_tips/tag_rules.htm'' — synthèse consolidée 2026-04-22 // diff --git a/inputs/tagrule1.jpg b/inputs/tagrule1.jpg new file mode 100644 index 0000000..f800e0e Binary files /dev/null and b/inputs/tagrule1.jpg differ diff --git a/inputs/tagrule2.jpg b/inputs/tagrule2.jpg new file mode 100644 index 0000000..70e224e Binary files /dev/null and b/inputs/tagrule2.jpg differ diff --git a/inputs/tagrule3.jpg b/inputs/tagrule3.jpg new file mode 100644 index 0000000..265fa01 Binary files /dev/null and b/inputs/tagrule3.jpg differ diff --git a/inputs/typeswi.csv b/inputs/typeswi.csv new file mode 100644 index 0000000..87707b1 --- /dev/null +++ b/inputs/typeswi.csv @@ -0,0 +1,16 @@ +"Asset ID","Host ID","Asset Name","NetBIOS Name","MAC Address","IPV4 Address","IPV6 Address","Operating System Category","Operating System","Operating System Version","Hardware Category","Hardware","CPU Count","CPU Speed (MHz)","CPU Description","Total Memory (MB)","BIOS Description","BIOS Serial Number","BIOS Asset Tag","Timezone","Last System Boot","Last Logged On User","Inventory Source","Agent ID","Inventory Created On","Inventory Last Updated On","Architecture","CriticalityScore","Modules","Tags","TruRisk Score" +"130584077","192833340","node2","","00:50:56:82:d1:ae, 66:2d:bf:44:a6:8b","10.45.2.57,10.233.75.0","fe80::250:56ff:fe82:d1ae,fe80::642d:bfff:fe44:a68b","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 b4 9a 31 df 57 07-ae c3 e8 88 b2 b1 e0 ad","No Asset Tag","'+02:00","2025-02-26T17:07:09.000+02:00","zhou","Cloud Agent","929b11d7-0ff3-45ef-880d-69c40d5ab4e5","2022-07-07T11:36:33.000+02:00","2026-04-22T12:37:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV,TYP-SWI,BDD-POS DYN,Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE","342.0" +"197806642","243075126","nvr-spare-sen","NVR-SPARE-SEN","00:50:56:82:1A:CB","10.100.7.252","fe80::7528:d7bc:a9a5:421a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 45 02 72 5f 3f 0e-c8 a3 5c 8b d7 30 bb 82","NoAssetTag","'+02:00","2026-01-28T15:18:35.000+02:00","Administrateur","Cloud Agent","5b15fe79-3ccc-4ba6-9687-d3908f115a35","2023-11-07T11:15:53.000+02:00","2026-04-22T14:14:29.000+02:00","64-Bit","3","SCA,VM,PM,GAV","TYP-SWI,Cloud Agent,Windows Server,OS-WIN-SRV DYN,OS-WIN-SRV,DEX,NVR","523.0" +"197825360","243087339","nvr-spare-mtz","NVR-SPARE-MTZ","00:50:56:90:03:D9","10.12.7.252","fe80::29ae:1e3:beea:c9ab","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 d4 b3 ee b1 58 4b-cd 69 31 aa c7 85 fb eb","NoAssetTag","'+02:00","2026-01-28T12:54:31.000+02:00","Administrateur","Cloud Agent","8471a142-dfda-4b75-8759-ba79f32272e2","2023-11-07T13:29:47.000+02:00","2026-04-22T13:24:30.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,OS-WIN-SRV,Cloud Agent,Windows Server,DEX,TYP-SWI,NVR","523.0" +"130583362","192832990","node4","","06:ac:38:d5:6c:36, 66:9d:a3:05:39:af, ee:ee:ee:ee:ee:ee, 00:50:56:82:4b:e9","169.254.25.10,10.233.74.64,10.45.2.59","fe80::649d:a3ff:fe05:39af,fe80::ecee:eeff:feee:eeee,fe80::88bd:f1a0:d07e:13cb","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 26 dc 16 dd 43 ed-90 35 76 d2 bb fc 48 d2","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","cybexpapp","Cloud Agent","43737328-a06b-4ffc-9b9e-0489c15501bf","2022-07-07T11:29:28.000+02:00","2026-04-22T13:51:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV,MID-NGINX DYN,BDD-POS DYN,TYP-SWI,VRF_INCONNUE,Obsolete","341.0" +"198425521","243397942","nvr-spare-eco","NVR-SPARE-ECO","00:50:56:82:1B:0D","10.1.27.252","fe80::59df:b009:bdc0:9fbe","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 85 ba 43 4b 19 23-78 a2 34 50 58 0f d3 7b","NoAssetTag","'+02:00","2026-01-28T11:24:10.000+02:00","Administrateur","Cloud Agent","fc0b4019-8cfe-408c-8bec-c64625fe6b93","2023-11-10T15:50:36.000+02:00","2026-04-22T12:58:38.000+02:00","64-Bit","3","SCA,VM,GAV","TYP-SWI,OS-WIN-SRV,OS-WIN-SRV DYN,Cloud Agent,DEX,NVR","508.0" +"236555919","265282309","nvr-spare-tqx","NVR-SPARE-TQX","00:50:56:82:18:C6","10.1.27.251","fe80::ccab:f6c9:7cd5:aad0","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 b0 8c 6c fe 45 4b-27 00 96 ac 2b e3 36 cb","NoAssetTag","'+02:00","2026-01-28T15:24:05.000+02:00","Administrateur","Cloud Agent","6a744aea-c93e-46a4-a30e-78344d97cfd7","2024-05-14T14:37:12.000+02:00","2026-04-22T10:20:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","TYP-SWI,Cloud Agent,Windows Server,OS-WIN-SRV DYN,OS-WIN-SRV","348.0" +"317343007","327571264","nvr-spare-alb","NVR-SPARE-ALB","00:50:56:90:F2:FD","10.252.17.254","fe80::7095:3fc5:75e6:3265","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 10 ff 10 68 f6 38 46-78 2e 56 4d 6c 51 9e a7","NoAssetTag","'+02:00","2026-02-25T12:04:14.000+02:00","Administrateur","Cloud Agent","6147de41-9ae1-4334-b021-5a991c331d04","2025-04-17T08:45:10.000+02:00","2026-04-22T10:15:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,TYP-SWI,Péage,OS-WIN-SRV","245.0" +"197807916","243076074","nvr-spare-etv","NVR-SPARE-ETV","00:50:56:82:C1:E6","10.152.7.252","fe80::6c6c:919c:e531:6ba0","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 f1 84 9c e9 64 3c-50 4a 26 e9 a4 30 40 58","NoAssetTag","'+02:00","2026-01-28T12:50:40.000+02:00","Administrateur","Cloud Agent","fd3dfa9d-76ec-43cb-a898-50f8cd06b8ec","2023-11-07T11:28:24.000+02:00","2026-04-22T14:15:12.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,TYP-SWI,OS-WIN-SRV DYN,DEX,OS-WIN-SRV,NVR","508.0" +"130584251","192833335","node3","","00:50:56:82:3f:a3, 66:a4:6f:e0:c4:da, ee:ee:ee:ee:ee:ee, 22:09:18:03:9a:76","10.45.2.58,10.233.71.0,169.254.25.10","fe80::c251:be9c:d8ba:9277,fe80::64a4:6fff:fee0:c4da,fe80::ecee:eeff:feee:eeee","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 37 fd 56 01 65 85-f2 6f 3d 1f d8 40 d0 c6","No Asset Tag","'+02:00","2025-10-08T13:43:03.000+02:00","cybexpapp","Cloud Agent","3d718006-e555-46cc-b3f8-d1a8be458214","2022-07-07T11:37:04.000+02:00","2026-04-22T13:36:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","TYP-SWI,BDD-POS DYN,VRF_INCONNUE,MID-NGINX DYN,OS-LIN-SRV,Obsolete,Cloud Agent,Linux Server","245.0" +"187710898","242960762","nvr-spare-beu","NVR-SPARE-BEU","00:50:56:82:F9:00","10.217.33.252","fe80::48e8:6230:d795:7e8","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 88 78 e1 0e 1d 1a-a2 1d de 15 e7 e6 ad ba","NoAssetTag","'+02:00","2026-02-03T11:51:43.000+02:00","Administrateur","Cloud Agent","e0362cd2-9080-46f7-8d39-374914806cb9","2023-09-13T18:51:25.000+02:00","2026-04-22T12:43:46.000+02:00","64-Bit","3","SCA,VM,GAV","DEX,NVR,OS-WIN-SRV DYN,Cloud Agent,OS-WIN-SRV,TYP-SWI","509.0" +"187719047","242979015","nvr-spare-mon","NVR-SPARE-MON","00:50:56:82:F4:AD","10.210.27.252","fe80::e93c:8368:73c2:e341","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 c1 69 93 94 35 ef-9e 76 dc ad 91 fc fb a8","NoAssetTag","'+02:00","2026-01-28T13:06:14.000+02:00","Administrateur","Cloud Agent","46c7b828-103e-472e-ad79-c05498fd6117","2023-09-13T19:53:46.000+02:00","2026-04-16T14:47:46.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,Cloud Agent,DEX,OS-WIN-SRV DYN,TYP-SWI,OS-WIN-SRV","508.0" +"154878292","208504014","nac.sanef.fr","","","10.44.2.100","","/ Unidentified","UNKNOWN","","Unidentified / Unidentified","Unidentified","","","","","","","","'+01:00","","","Cloud Agent","9bca7598-3d2b-458d-9b2f-f5daf301e1f7","2023-01-10T16:49:15.000+02:00","2025-03-13T06:20:03.000+02:00","x64","2","SCA,VM,GAV","Cloud Agent,Linux Server,TYP-SWI","0.0" +"158130579","210892023","nmonucv2","NMONUCV2","00:90:FB:2A:3B:C9","10.229.17.33","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","TYP-SWI,Forescout","0.0" +"158077389","210846968","ndoz2ecv3","NDOZ2ECV3","00:90:FB:34:C0:D3","10.217.40.35","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout,TYP-SWI","0.0" +"157994329","210806295","nchnucv2","NCHNUCV2","00:90:FB:34:C0:F5","10.217.25.31","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout,TYP-SWI","0.0" diff --git a/send_docx.py b/send_docx.py new file mode 100644 index 0000000..5893dce --- /dev/null +++ b/send_docx.py @@ -0,0 +1,64 @@ +"""Send the SANEF Qualys V3 docx to khalid.moutaouakil-ext@sanef.com via Gmail SMTP.""" +import os +import smtplib +import ssl +from email.message import EmailMessage +from pathlib import Path + +SENDER = "kalid.moutaouakil@gmail.com" +RECIPIENT = "khalid.moutaouakil-ext@sanef.com" +ATTACHMENTS = [ + (Path(r"C:\Claude\sanef\QL\docs\SANEF_Qualys_V3_Resume_Vigilance.docx"), + "vnd.openxmlformats-officedocument.wordprocessingml.document"), + (Path(r"C:\Claude\sanef\QL\docs\SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx"), + "vnd.openxmlformats-officedocument.spreadsheetml.sheet"), +] + +password = os.environ.get("GMAIL_APP_PASSWORD") +if not password: + raise SystemExit("GMAIL_APP_PASSWORD non defini dans l'environnement") +password = password.replace(" ", "") + +msg = EmailMessage() +msg["From"] = SENDER +msg["To"] = RECIPIENT +msg["Subject"] = "SANEF Qualys V3 - Resume d'execution + points de vigilance (mise a jour)" +msg.set_content( + "Bonjour Khalid,\n\n" + "En piece jointe le resume d'execution mis a jour de la taxonomie Qualys V3.\n\n" + "Modifications par rapport a la version precedente :\n" + " - Renommage TYP -> EQT (Equipement) : EQT-SRV, EQT-VIR, EQT-SWI\n" + " - Correction ENV-TST : exclusion des postes Superviseur Peage (svp*),\n" + " le tag passe de ~180 a 83 assets coherents\n" + " - Meme correction appliquee a EQT-SRV (and not asset.name:svp*)\n" + " - Ajout d'une decouverte technique en section 1.2 sur le conflit svp*\n" + " - Section 4 Annexes retiree (la reference complete est dans le xlsx joint)\n\n" + "Egalement en piece jointe : SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx\n" + "(reference complete : 23 tags dynamiques + 7 statiques + prefixes manuels)\n\n" + "Le document conserve les sections 2 (points de vigilance) et 3 (TODO).\n\n" + "Cordialement,\n" + "SECOPS\n" +) + +for path, subtype in ATTACHMENTS: + if not path.exists(): + raise SystemExit(f"Fichier introuvable : {path}") + with path.open("rb") as f: + msg.add_attachment( + f.read(), + maintype="application", + subtype=subtype, + filename=path.name, + ) + +ctx = ssl.create_default_context() +with smtplib.SMTP("smtp.gmail.com", 587, timeout=30) as s: + s.ehlo() + s.starttls(context=ctx) + s.ehlo() + s.login(SENDER, password) + s.send_message(msg) + +for p, _ in ATTACHMENTS: + print(f" - {p.name} ({p.stat().st_size} bytes)") +print(f"Mail envoye a {RECIPIENT}") diff --git a/send_xlsx.py b/send_xlsx.py new file mode 100644 index 0000000..85dfdfb --- /dev/null +++ b/send_xlsx.py @@ -0,0 +1,59 @@ +"""Send the SANEF Qualys V3 xlsx to khalid.moutaouakil-ext@sanef.com via Gmail SMTP. + +App Password lu depuis variable d'env GMAIL_APP_PASSWORD (jamais en dur dans le script). +""" +import os +import smtplib +import ssl +from email.message import EmailMessage +from pathlib import Path + +SENDER = "kalid.moutaouakil@gmail.com" +RECIPIENT = "khalid.moutaouakil-ext@sanef.com" +ATTACHMENT = Path(r"C:\Claude\sanef\QL\docs\SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx") + +password = os.environ.get("GMAIL_APP_PASSWORD") +if not password: + raise SystemExit("GMAIL_APP_PASSWORD non defini dans l'environnement") + +password = password.replace(" ", "") # Gmail App Password sans espaces + +msg = EmailMessage() +msg["From"] = SENDER +msg["To"] = RECIPIENT +msg["Subject"] = "SANEF Qualys - Tags V3 (taxonomie complete + descriptions)" +msg.set_content( + "Bonjour Khalid,\n\n" + "En piece jointe le tableau de reference de la taxonomie Qualys V3 :\n" + " - Feuille 1 : 23 tags dynamiques (OS, EQT, ENV, POS, NOM-LEGACY, TAG-EMV, TAG-OBS) avec couleurs, descriptions et requetes QQL\n" + " - Feuille 2 : 7 tags statiques (TAG-SED, TAG-SEI, TAG-ELS, TAG-DEC, TAG-INT, TAG-SIC, TAG-SIA)\n" + " - Feuille 3 : prefixes a creer manuellement (APP, BDD, VRF, MID, VULN)\n\n" + "Mises a jour de cette version :\n" + " - Renommage TYP -> EQT (Equipement)\n" + " - Descriptions OS-* et EQT-* harmonisees\n" + " - ENV-TST corrige : exclusion des postes Superviseur Peage (svp*)\n" + " - EQT-SRV idem (and not asset.name:svp*)\n\n" + "Cordialement,\n" + "SECOPS\n" +) + +if not ATTACHMENT.exists(): + raise SystemExit(f"Fichier introuvable : {ATTACHMENT}") + +with ATTACHMENT.open("rb") as f: + msg.add_attachment( + f.read(), + maintype="application", + subtype="vnd.openxmlformats-officedocument.spreadsheetml.sheet", + filename=ATTACHMENT.name, + ) + +ctx = ssl.create_default_context() +with smtplib.SMTP("smtp.gmail.com", 587, timeout=30) as s: + s.ehlo() + s.starttls(context=ctx) + s.ehlo() + s.login(SENDER, password) + s.send_message(msg) + +print(f"Mail envoye a {RECIPIENT} avec piece jointe {ATTACHMENT.name} ({ATTACHMENT.stat().st_size} bytes)")