{"id":1757,"date":"2017-11-07T18:16:57","date_gmt":"2017-11-07T17:16:57","guid":{"rendered":"https:\/\/www.aerian.fr\/?p=1757"},"modified":"2018-02-17T18:19:23","modified_gmt":"2018-02-17T17:19:23","slug":"exemple-de-configuration-de-sudoers","status":"publish","type":"post","link":"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/","title":{"rendered":"(Fran\u00e7ais) Exemple de configuration de sudoers"},"content":{"rendered":"<div id=\"pl-1757\"  class=\"panel-layout\" ><div id=\"pg-1757-0\"  class=\"panel-grid panel-has-style\" ><div style=\"padding: 100px 0; \" data-overlay=\"true\" class=\"panel-row-style panel-row-style-for-1757-0\" ><div id=\"pgc-1757-0-0\"  class=\"panel-grid-cell\" ><div id=\"panel-1757-0-0-0\" class=\"so-panel widget widget_sow-editor panel-first-child panel-last-child\" data-index=\"0\" ><div style=\"text-align: left;\" data-title-color=\"#443f3f\" data-headings-color=\"#443f3f\" class=\"panel-widget-style panel-widget-style-for-1757-0-0-0\" ><div\n\t\t\t\n\t\t\tclass=\"so-widget-sow-editor so-widget-sow-editor-base\"\n\t\t\t\n\t\t>\n<div class=\"siteorigin-widget-tinymce textwidget\">\n\t<p>Parcourant les notes techniques de s\u00e9curisation d'un serveur Linux propos\u00e9es par l'ANSII <a href=\"https:\/\/www.ssi.gouv.fr\/uploads\/2015\/10\/NP_Linux_Configuration.pdf\" class=\"broken_link\">(Voir ce PDF)<\/a>,<br \/> je me suis pench\u00e9 sur les probl\u00e9matiques de configurations\u00a0 de sudoers.<\/p>\n<p>Pour que des normes de s\u00e9curit\u00e9 correctes soient misent en place,<br \/> il est n\u00e9cessaire que les utilisateurs ne puissent pas usurper l'identit\u00e9 d'autre utilisateurs.<\/p>\n<p>Pour les administrateurs, cette restriction peut \u00eatre mise en place au niveau des sudoers en bloquant l'acc\u00e8s \u00e0 \"su\",<br \/> visudo et aux shells, les utilisateurs n'ayant besoins d'acc\u00e9der qu'\u00e0 une liste de commandes sp\u00e9cifiques.<\/p>\n<p>On peut ensuite n'autoriser qu'un groupe d'administrateur bien sp\u00e9cifique \u00e0 modifier les sudoers et placer des r\u00e8gles via SELinux pour r\u00e9guler l'\u00e9dition.<\/p>\n<p>L'exemple de cas ci-dessous pr\u00e9sente un panel complet des diff\u00e9rentes fonctionnalit\u00e9s propos\u00e9es par le fichier sudoers et permet de g\u00e9n\u00e9rer sa propre configuration.<\/p>\n<pre class=\"brush:shell\"># Sample \/etc\/sudoers file.\n#\n# This file MUST be edited with the 'visudo' command as root.\n#\n# See the sudoers man page for the details on how to write a sudoers file.\n#\n\n##\n# User alias specification\n##\nUser_Alias\tFULLTIMERS = millert, mikef, dowdy\nUser_Alias\tPARTTIMERS = bostley, jwfox, crawl\nUser_Alias\tWEBMASTERS = will, wendy, wim\n\n##\n# Runas alias specification\n##\nRunas_Alias\tOP = root, operator\nRunas_Alias\tDB = oracle, sybase\n\n##\n# Host alias specification\n##\nHost_Alias\tSPARC = bigtime, eclipse, moet, anchor:\\\n\t\tSGI = grolsch, dandelion, black:\\\n\t\tALPHA = widget, thalamus, foobar:\\\n\t\tHPPA = boa, nag, python\nHost_Alias\tCUNETS = 128.138.0.0\/255.255.0.0\nHost_Alias\tCSNETS = 128.138.243.0, 128.138.204.0\/24, 128.138.242.0\nHost_Alias\tSERVERS = master, mail, www, ns\nHost_Alias\tCDROM = orion, perseus, hercules\n\n##\n# Cmnd alias specification\n##\nCmnd_Alias\tDUMPS = \/usr\/sbin\/dump, \/usr\/sbin\/rdump, \/usr\/sbin\/restore, \\\n\t\t\t\/usr\/sbin\/rrestore, \/usr\/bin\/mt\nCmnd_Alias\tKILL = \/usr\/bin\/kill\nCmnd_Alias\tPRINTING = \/usr\/sbin\/lpc, \/usr\/bin\/lprm\nCmnd_Alias\tSHUTDOWN = \/usr\/sbin\/shutdown\nCmnd_Alias\tHALT = \/usr\/sbin\/halt\nCmnd_Alias\tREBOOT = \/usr\/sbin\/reboot\nCmnd_Alias\tSHELLS = \/sbin\/sh, \/usr\/bin\/sh, \/usr\/bin\/csh, \/usr\/bin\/ksh, \\\n\t\t\t \/usr\/local\/bin\/tcsh, \/usr\/bin\/rsh, \\\n\t\t\t \/usr\/local\/bin\/zsh\nCmnd_Alias      RESTRICTED      = \/bin\/vi \/etc\/sudoers, \/bin\/nano \/etc\/sudoers, \/bin\/su - root, \\\n\t\t\t \/bin\/su - , \/usr\/sbin\/visudo\nCmnd_Alias\tVIPW = \/usr\/sbin\/vipw, \/usr\/bin\/passwd, \/usr\/bin\/chsh, \\\n\t\t       \/usr\/bin\/chfn\n\n##\n# Override built-in defaults\n##\nDefaults               syslog=auth\nDefaults&gt;root          !set_logname\nDefaults:FULLTIMERS    !lecture\nDefaults:millert       !authenticate\nDefaults@SERVERS       log_year, logfile=\/var\/log\/sudo.log\n\n##\n# User specification\n##\n\n# root can run anything on any machine as any user\nroot\t\tALL = (ALL) ALL\n# admin group can run anything except RESTRICTED and SHELLS commands\n%admin\t\tALL = (ALL) ALL, !RESTRICTED, !SHELLS\n# sudoers group can only edit sudoers file \n%sudoers        ALL = (ALL)\u00a0\/usr\/sbin\/visudo\n# full time sysadmins can run anything on any machine without a password\nFULLTIMERS\tALL = NOPASSWD: ALL\n\n# part time sysadmins may run anything but need a password\nPARTTIMERS\tALL = ALL\n\n# jack may run anything on machines in CSNETS\njack\t\tCSNETS = ALL\n\n# lisa may run any command on any host in CUNETS (a class B network)\nlisa\t\tCUNETS = ALL\n\n# operator may run maintenance commands and anything in \/usr\/oper\/bin\/\noperator\tALL = DUMPS, KILL, SHUTDOWN, HALT, REBOOT, PRINTING,\\\n\t\tsudoedit \/etc\/printcap, \/usr\/oper\/bin\/\n\n# joe may su only to operator\njoe\t\tALL = \/usr\/bin\/su operator\n\n# pete may change passwords for anyone but root on the hp snakes\npete\t\tHPPA = \/usr\/bin\/passwd [A-z]*, !\/usr\/bin\/passwd root\n\n# bob may run anything on the sparc and sgi machines as any user\n# listed in the Runas_Alias \"OP\" (ie: root and operator)\nbob\t\tSPARC = (OP) ALL : SGI = (OP) ALL\n\n# jim may run anything on machines in the biglab netgroup\njim\t\t+biglab = ALL\n\n# users in the secretaries netgroup need to help manage the printers\n# as well as add and remove users\n+secretaries\tALL = PRINTING, \/usr\/bin\/adduser, \/usr\/bin\/rmuser\n\n# fred can run commands as oracle or sybase without a password\nfred\t\tALL = (DB) NOPASSWD: ALL\n\n# on the alphas, john may su to anyone but root and flags are not allowed\njohn\t\tALPHA = \/usr\/bin\/su [!-]*, !\/usr\/bin\/su *root*\n\n# jen can run anything on all machines except the ones\n# in the \"SERVERS\" Host_Alias\njen\t\tALL, !SERVERS = ALL\n\n# jill can run any commands in the directory \/usr\/bin\/, except for\n# those in the RESTRICTED and SHELLS aliases.\njill\t\tSERVERS = \/usr\/bin\/, !RESTRICTED, !SHELLS\n\n# steve can run any command in the directory \/usr\/local\/op_commands\/\n# as user operator.\nsteve\t\tCSNETS = (operator) \/usr\/local\/op_commands\/\n\n# matt needs to be able to kill things on his workstation when\n# they get hung.\nmatt\t\tvalkyrie = KILL\n\n# users in the WEBMASTERS User_Alias (will, wendy, and wim)\n# may run any command as user www (which owns the web pages)\n# or simply su to www.\nWEBMASTERS\twww = (www) ALL, (root) \/usr\/bin\/su www\n\n# anyone can mount\/unmount a cd-rom on the machines in the CDROM alias\nALL\t\tCDROM = NOPASSWD: \/sbin\/umount \/CDROM,\\\n\t\t\/sbin\/mount -o nosuid\\,nodev \/dev\/cd0a \/CDROM\n<\/pre>\n<p><a href=\"http:\/\/www.softpanorama.org\/Access_control\/Sudo\/sudoer_file_examples.shtml\">Sources<\/a><\/p>\n<\/div>\n<\/div><\/div><\/div><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>Parcourant les notes techniques de s\u00e9curisation d&#8217;un serveur Linux propos\u00e9es par l&#8217;ANSII (Voir ce PDF), je me suis pench\u00e9 sur les probl\u00e9matiques [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1788,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"footnotes":""},"categories":[174,220,221],"tags":[230,231,199,229],"class_list":["post-1757","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-notes","category-security","category-system","tag-centos","tag-debian","tag-linux","tag-sudoers"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>(Fran\u00e7ais) Exemple de configuration de sudoers - Aerian.fr<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"(Fran\u00e7ais) Exemple de configuration de sudoers - Aerian.fr\" \/>\n<meta property=\"og:description\" content=\"Parcourant les notes techniques de s\u00e9curisation d&#039;un serveur Linux propos\u00e9es par l&#039;ANSII (Voir ce PDF), je me suis pench\u00e9 sur les probl\u00e9matiques [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/\" \/>\n<meta property=\"og:site_name\" content=\"Aerian.fr\" \/>\n<meta property=\"article:published_time\" content=\"2017-11-07T17:16:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-02-17T17:19:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.aerian.fr\/wp-content\/uploads\/2017\/11\/sandwich-e1510265010299.png\" \/>\n\t<meta property=\"og:image:width\" content=\"352\" \/>\n\t<meta property=\"og:image:height\" content=\"292\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"42\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinceAerian\" \/>\n<meta name=\"twitter:site\" content=\"@LinceAerian\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"42\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.aerian.fr\/exemple-de-configuration-de-sudoers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.aerian.fr\/exemple-de-configuration-de-sudoers\/\"},\"author\":{\"name\":\"42\",\"@id\":\"https:\/\/www.aerian.fr\/#\/schema\/person\/622c3cefbea11a0be741137608b4bf8b\"},\"headline\":\"(Fran\u00e7ais) Exemple de configuration de sudoers\",\"datePublished\":\"2017-11-07T17:16:57+00:00\",\"dateModified\":\"2018-02-17T17:19:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.aerian.fr\/exemple-de-configuration-de-sudoers\/\"},\"wordCount\":163,\"publisher\":{\"@id\":\"https:\/\/www.aerian.fr\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.aerian.fr\/exemple-de-configuration-de-sudoers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.aerian.fr\/wp-content\/uploads\/2017\/11\/sandwich-e1510265010299.png\",\"keywords\":[\"centos\",\"debian\",\"linux\",\"sudoers\"],\"articleSection\":[\"Notes\",\"Security\",\"System\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/\",\"url\":\"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/\",\"name\":\"(Fran\u00e7ais) Exemple de configuration de sudoers - Aerian.fr\",\"isPartOf\":{\"@id\":\"https:\/\/www.aerian.fr\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.aerian.fr\/exemple-de-configuration-de-sudoers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.aerian.fr\/wp-content\/uploads\/2017\/11\/sandwich-e1510265010299.png\",\"datePublished\":\"2017-11-07T17:16:57+00:00\",\"dateModified\":\"2018-02-17T17:19:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[[\"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/\"]]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/#primaryimage\",\"url\":\"https:\/\/www.aerian.fr\/wp-content\/uploads\/2017\/11\/sandwich-e1510265010299.png\",\"contentUrl\":\"https:\/\/www.aerian.fr\/wp-content\/uploads\/2017\/11\/sandwich-e1510265010299.png\",\"width\":352,\"height\":292,\"caption\":\"https:\/\/imgs.xkcd.com\/comics\/sandwich.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.aerian.fr\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Exemple de configuration de sudoers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.aerian.fr\/en\/#website\",\"url\":\"https:\/\/www.aerian.fr\/en\/\",\"name\":\"Aerian.fr\",\"description\":\"Welcome to Aerian.fr\",\"publisher\":{\"@id\":\"https:\/\/www.aerian.fr\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.aerian.fr\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.aerian.fr\/en\/#organization\",\"name\":\"Aerian.fr\",\"url\":\"https:\/\/www.aerian.fr\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.aerian.fr\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.aerian.fr\/wp-content\/uploads\/2012\/01\/logo.png\",\"contentUrl\":\"https:\/\/www.aerian.fr\/wp-content\/uploads\/2012\/01\/logo.png\",\"width\":667,\"height\":522,\"caption\":\"Aerian.fr\"},\"image\":{\"@id\":\"https:\/\/www.aerian.fr\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/LinceAerian\",\"https:\/\/www.linkedin.com\/in\/marleixmathieu\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.aerian.fr\/#\/schema\/person\/622c3cefbea11a0be741137608b4bf8b\",\"name\":\"42\",\"sameAs\":[\"http:\/\/www.aerian.fr\"],\"url\":\"https:\/\/www.aerian.fr\/en\/author\/lince\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"(Fran\u00e7ais) Exemple de configuration de sudoers - Aerian.fr","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/","og_locale":"en_US","og_type":"article","og_title":"(Fran\u00e7ais) Exemple de configuration de sudoers - Aerian.fr","og_description":"Parcourant les notes techniques de s\u00e9curisation d'un serveur Linux propos\u00e9es par l'ANSII (Voir ce PDF), je me suis pench\u00e9 sur les probl\u00e9matiques [&hellip;]","og_url":"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/","og_site_name":"Aerian.fr","article_published_time":"2017-11-07T17:16:57+00:00","article_modified_time":"2018-02-17T17:19:23+00:00","og_image":[{"width":352,"height":292,"url":"https:\/\/www.aerian.fr\/wp-content\/uploads\/2017\/11\/sandwich-e1510265010299.png","type":"image\/png"}],"author":"42","twitter_card":"summary_large_image","twitter_creator":"@LinceAerian","twitter_site":"@LinceAerian","twitter_misc":{"Written by":"42","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.aerian.fr\/exemple-de-configuration-de-sudoers\/#article","isPartOf":{"@id":"https:\/\/www.aerian.fr\/exemple-de-configuration-de-sudoers\/"},"author":{"name":"42","@id":"https:\/\/www.aerian.fr\/#\/schema\/person\/622c3cefbea11a0be741137608b4bf8b"},"headline":"(Fran\u00e7ais) Exemple de configuration de sudoers","datePublished":"2017-11-07T17:16:57+00:00","dateModified":"2018-02-17T17:19:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.aerian.fr\/exemple-de-configuration-de-sudoers\/"},"wordCount":163,"publisher":{"@id":"https:\/\/www.aerian.fr\/#organization"},"image":{"@id":"https:\/\/www.aerian.fr\/exemple-de-configuration-de-sudoers\/#primaryimage"},"thumbnailUrl":"https:\/\/www.aerian.fr\/wp-content\/uploads\/2017\/11\/sandwich-e1510265010299.png","keywords":["centos","debian","linux","sudoers"],"articleSection":["Notes","Security","System"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/","url":"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/","name":"(Fran\u00e7ais) Exemple de configuration de sudoers - Aerian.fr","isPartOf":{"@id":"https:\/\/www.aerian.fr\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/#primaryimage"},"image":{"@id":"https:\/\/www.aerian.fr\/exemple-de-configuration-de-sudoers\/#primaryimage"},"thumbnailUrl":"https:\/\/www.aerian.fr\/wp-content\/uploads\/2017\/11\/sandwich-e1510265010299.png","datePublished":"2017-11-07T17:16:57+00:00","dateModified":"2018-02-17T17:19:23+00:00","breadcrumb":{"@id":"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":[["https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/"]]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/#primaryimage","url":"https:\/\/www.aerian.fr\/wp-content\/uploads\/2017\/11\/sandwich-e1510265010299.png","contentUrl":"https:\/\/www.aerian.fr\/wp-content\/uploads\/2017\/11\/sandwich-e1510265010299.png","width":352,"height":292,"caption":"https:\/\/imgs.xkcd.com\/comics\/sandwich.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.aerian.fr\/en\/exemple-de-configuration-de-sudoers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.aerian.fr\/en\/"},{"@type":"ListItem","position":2,"name":"Exemple de configuration de sudoers"}]},{"@type":"WebSite","@id":"https:\/\/www.aerian.fr\/en\/#website","url":"https:\/\/www.aerian.fr\/en\/","name":"Aerian.fr","description":"Welcome to Aerian.fr","publisher":{"@id":"https:\/\/www.aerian.fr\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.aerian.fr\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.aerian.fr\/en\/#organization","name":"Aerian.fr","url":"https:\/\/www.aerian.fr\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.aerian.fr\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.aerian.fr\/wp-content\/uploads\/2012\/01\/logo.png","contentUrl":"https:\/\/www.aerian.fr\/wp-content\/uploads\/2012\/01\/logo.png","width":667,"height":522,"caption":"Aerian.fr"},"image":{"@id":"https:\/\/www.aerian.fr\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/LinceAerian","https:\/\/www.linkedin.com\/in\/marleixmathieu"]},{"@type":"Person","@id":"https:\/\/www.aerian.fr\/#\/schema\/person\/622c3cefbea11a0be741137608b4bf8b","name":"42","sameAs":["http:\/\/www.aerian.fr"],"url":"https:\/\/www.aerian.fr\/en\/author\/lince\/"}]}},"_links":{"self":[{"href":"https:\/\/www.aerian.fr\/en\/wp-json\/wp\/v2\/posts\/1757","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.aerian.fr\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.aerian.fr\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.aerian.fr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.aerian.fr\/en\/wp-json\/wp\/v2\/comments?post=1757"}],"version-history":[{"count":12,"href":"https:\/\/www.aerian.fr\/en\/wp-json\/wp\/v2\/posts\/1757\/revisions"}],"predecessor-version":[{"id":1770,"href":"https:\/\/www.aerian.fr\/en\/wp-json\/wp\/v2\/posts\/1757\/revisions\/1770"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.aerian.fr\/en\/wp-json\/wp\/v2\/media\/1788"}],"wp:attachment":[{"href":"https:\/\/www.aerian.fr\/en\/wp-json\/wp\/v2\/media?parent=1757"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.aerian.fr\/en\/wp-json\/wp\/v2\/categories?post=1757"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.aerian.fr\/en\/wp-json\/wp\/v2\/tags?post=1757"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}