diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogIteratorTest.java b/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogIteratorTest.java new file mode 100644 index 0000000..2107266 --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogIteratorTest.java @@ -0,0 +1,97 @@ +/* + * Copyright (C) 2021-2024 Christian Pierre MOMON + * + * This file is part of StatoolInfos, simple key value database. + * + * StatoolInfos is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * StatoolInfos is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with StatoolInfos. If not, see . + */ +package fr.devinsy.statoolinfos.metrics.httpaccess; + +import java.io.File; + +import org.apache.logging.log4j.Level; +import org.apache.logging.log4j.core.config.Configurator; +import org.apache.logging.log4j.core.config.DefaultConfiguration; +import org.junit.AfterClass; +import org.junit.Assert; +import org.junit.BeforeClass; +import org.junit.Test; + +import fr.devinsy.statoolinfos.core.StatoolInfosException; +import fr.devinsy.statoolinfos.util.Files; +import fr.devinsy.statoolinfos.util.FilesUtils; + +/** + * The Class HttpAccessLogIteratorTest. + */ +public class HttpAccessLogIteratorTest +{ + private static org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(HttpAccessLogIteratorTest.class); + + /** + * Test 01. + * + * @throws Exception + * the exception + */ + @Test + public void test01() throws Exception + { + System.out.println(System.getProperty("user.dir")); + + String source = "./test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www*"; + Files files = FilesUtils.searchByWildcard(source); + for (File file : files) + { + System.out.println(file); + } + HttpAccessLogs logs = new HttpAccessLogs(files); + HttpAccessLogIterator iterator = (HttpAccessLogIterator) logs.iterator(); + while (iterator.hasNext()) + { + HttpAccessLog log = iterator.next(); + // System.out.println(log.toStringLog()); + } + + System.out.println(iterator.getLogCount()); + System.out.println(iterator.getFailedLogCount()); + + Assert.assertEquals(7146, iterator.getLogCount()); + Assert.assertEquals(0, iterator.getFailedLogCount()); + } + + /** + * After class. + * + * @throws StatoolInfosException + * the Juga exception + */ + @AfterClass + public static void afterClass() throws StatoolInfosException + { + } + + /** + * Before class. + * + * @throws StatoolInfosException + * the Juga exception + */ + @BeforeClass + public static void beforeClass() throws StatoolInfosException + { + Configurator.initialize(new DefaultConfiguration()); + Configurator.setRootLevel(Level.DEBUG); + } +} diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogsAnalyzerTest.java b/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogsAnalyzerTest.java new file mode 100644 index 0000000..c0c7b7d --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogsAnalyzerTest.java @@ -0,0 +1,131 @@ +/* + * Copyright (C) 2021-2024 Christian Pierre MOMON + * + * This file is part of StatoolInfos, simple key value database. + * + * StatoolInfos is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * StatoolInfos is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with StatoolInfos. If not, see . + */ +package fr.devinsy.statoolinfos.metrics.httpaccess; + +import org.apache.logging.log4j.Level; +import org.apache.logging.log4j.core.config.Configurator; +import org.apache.logging.log4j.core.config.DefaultConfiguration; +import org.junit.AfterClass; +import org.junit.Assert; +import org.junit.BeforeClass; +import org.junit.Test; + +import fr.devinsy.statoolinfos.core.Configuration; +import fr.devinsy.statoolinfos.core.StatoolInfosException; +import fr.devinsy.statoolinfos.metrics.PathCounters; +import fr.devinsy.statoolinfos.metrics.Prober; +import fr.devinsy.statoolinfos.util.Files; +import fr.devinsy.statoolinfos.util.FilesUtils; + +/** + * The Class HttpAccessLogsAnalyzerTest. + */ +public class HttpAccessLogsAnalyzerTest +{ + private static org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(HttpAccessLogsAnalyzerTest.class); + + /** + * @throws Exception + */ + @Test + public void test01() throws Exception + { + // System.out.println(System.getProperty("user.dir")); + + Files files = FilesUtils.searchByWildcard("./test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www*"); + // for (File file : files) + // { + // System.out.println(file); + // } + HttpAccessLogs logs = new HttpAccessLogs(files); + + PathCounters counters = HttpAccessLogAnalyzer.probe(logs); + + // for (String prefix : counters.getPrefixes()) + // { + // System.out.println(prefix); + // } + + System.out.println("Prefix count: " + counters.getPrefixes().size()); + + Assert.assertEquals(41, counters.getPrefixes().size()); + Assert.assertEquals(1035, counters.getCount("metrics.http.hits", "2022-11")); + Assert.assertEquals(1031, counters.getCount("metrics.http.hits", "2022-W44")); + Assert.assertEquals(964, counters.getCount("metrics.http.hits", "2022-11-01")); + Assert.assertEquals(1016, counters.getCount("metrics.http.hits", "2023-01")); + } + + /** + * @throws Exception + */ + @Test + public void test02() throws Exception + { + // System.out.println(System.getProperty("user.dir")); + + Configuration configuration = new Configuration(); + configuration.add("conf.probe.types", "HttpAccessLog"); + configuration.add("conf.probe.httpaccesslog.file", "./test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www*"); + // configuration.add("conf.probe.httperrorlog.pattern", ""); + // configuration.add("conf.probe.httperrorlog.dateTimePattern", ""); + + PathCounters counters = Prober.probeHttpAccessLog(configuration); + + // for (String counter : counters.keySet()) + // { + // System.out.println(counter + " " + + // counters.get(counter).getCounter()); + // } + + Assert.assertEquals(983, counters.size()); + + // + Assert.assertEquals(2056, counters.getCount("metrics.http.hits", "2022")); + Assert.assertEquals(1035, counters.getCount("metrics.http.hits", "2022-11")); + Assert.assertEquals(1031, counters.getCount("metrics.http.hits", "2022-W44")); + Assert.assertEquals(964, counters.getCount("metrics.http.hits", "2022-11-01")); + + Assert.assertEquals(",,,,,,,,,,1035,1021", counters.getMonthsValuesLine("metrics.http.hits", "2022")); + Assert.assertEquals(",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1031,,4,,1021,,,,1014", counters.getWeeksValuesLine("metrics.http.hits", "2022")); + } + + /** + * After class. + * + * @throws StatoolInfosException + * the Juga exception + */ + @AfterClass + public static void afterClass() throws StatoolInfosException + { + } + + /** + * Before class. + * + * @throws StatoolInfosException + * the Juga exception + */ + @BeforeClass + public static void beforeClass() throws StatoolInfosException + { + Configurator.initialize(new DefaultConfiguration()); + Configurator.setRootLevel(Level.DEBUG); + } +} diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/empty b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/empty new file mode 100644 index 0000000..e69de29 diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/README b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/README new file mode 100644 index 0000000..8b8a084 --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/README @@ -0,0 +1,3 @@ +From Apache server. + +Anonymize with Logar. diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log new file mode 100644 index 0000000..625b646 --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log @@ -0,0 +1,1023 @@ +131.226.91.104 - - [01/May/2023:00:01:09 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/May/2023:00:01:09 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:00:01:09 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:00:01:10 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:00:01:10 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:00:01:10 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:00:02:04 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:05 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:11 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:17 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 46158 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:20 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:20 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:22 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:27 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:33 +0200] "GET / HTTP/1.1" 302 911 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:33 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:35 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:45 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:46 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:47 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +231.172.109.6 - - [01/May/2023:00:03:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11023 "-" "Mozilla (X Linux x rv) Gecko Firefox " +231.172.109.6 - - [01/May/2023:00:03:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11078 "-" "Mozilla (X Linux x rv) Gecko Firefox " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138051 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138051 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67893 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24417 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11001 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48593 "-" "StatoolInfos Uptime Bot" +200.157.70.140 - - [01/May/2023:00:12:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10946 "https://145.239.49.5:443/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +191.14.82.85 - - [01/May/2023:00:45:42 +0200] "GET / HTTP/1.1" 302 5171 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +24.236.162.74 - - [01/May/2023:00:45:44 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10977 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +234.196.97.0 - - [01/May/2023:00:45:45 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15112 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +229.189.8.12 - - [01/May/2023:00:45:47 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10976 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +229.189.8.12 - - [01/May/2023:00:45:48 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +191.14.82.85 - - [01/May/2023:00:45:48 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +24.236.162.74 - - [01/May/2023:00:45:48 +0200] "GET / HTTP/1.1" 302 307 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +240.92.147.221 - - [01/May/2023:00:45:48 +0200] "GET /favicon.ico HTTP/1.1" 404 5821 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +24.236.162.74 - - [01/May/2023:00:45:48 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10248 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +191.14.82.85 - - [01/May/2023:00:45:49 +0200] "GET / HTTP/1.1" 302 307 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +191.14.82.85 - - [01/May/2023:00:45:50 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10248 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +191.14.82.85 - - [01/May/2023:00:45:50 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +24.236.162.74 - - [01/May/2023:00:45:51 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +240.92.147.221 - - [01/May/2023:00:45:51 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +229.189.8.12 - - [01/May/2023:00:45:51 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +200.157.70.140 - - [01/May/2023:00:45:54 +0200] "GET /services/audio.xhtml?s=/Index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP21 HTTP/1.1" 200 10947 "https://145.239.49.5:443/index.php?s=/Index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP21" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:01:00:55 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:01:00:55 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:01:00:55 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:01:00:55 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:01:00:56 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:01:00:56 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:50 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:50 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:50 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:50 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138087 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138087 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67892 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24448 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48066 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET / HTTP/1.1" 302 5195 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +41.120.86.14 - - [01/May/2023:01:20:58 +0200] "GET /robots.txt HTTP/1.1" 200 5545 "-" "Mozilla (compatible; AhrefsBot +) " +164.214.116.7 - - [01/May/2023:01:40:03 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10927 "-" "Mozilla (compatible; CensysInspect +) " +164.214.116.7 - - [01/May/2023:01:40:03 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22295 "-" "Mozilla (compatible; CensysInspect +) " +164.214.116.7 - - [01/May/2023:01:40:03 +0200] "GET /favicon.ico HTTP/1.1" 404 5791 "-" "Mozilla (compatible; CensysInspect +) " +139.191.179.197 - - [01/May/2023:01:52:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10928 "https://145.239.49.5/favicon.ico" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +139.191.179.197 - - [01/May/2023:01:52:18 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10928 "https://145.239.49.5/robots.txt" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +139.191.179.197 - - [01/May/2023:01:52:20 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10929 "https://145.239.49.5/sitemap.xml" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138117 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138117 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78477 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101187 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24448 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +193.7.34.185 - - [01/May/2023:02:11:57 +0200] "GET /robots.txt HTTP/1.1" 200 5546 "-" "Mozilla (compatible; AhrefsBot +) " +236.244.235.84 - - [01/May/2023:02:28:26 +0200] "GET / HTTP/1.1" 302 5275 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:26 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:27 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15215 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:28 +0200] "GET /accueil.xhtml/contact HTTP/1.1" 404 5924 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:29 +0200] "GET / HTTP/1.1" 302 549 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:29 +0200] "GET / HTTP/1.1" 302 5275 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:29 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:29 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15214 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:30 +0200] "GET /accueil.xhtml/contact HTTP/1.1" 404 5924 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +112.235.224.5 - - [01/May/2023:02:43:46 +0200] "GET /robots.txt HTTP/1.1" 200 5546 "-" "Mozilla (compatible; AhrefsBot +) " +160.162.96.9 - - [01/May/2023:02:59:23 +0200] "GET /.git/config HTTP/1.1" 302 4752 "-" "curl (x-redhat-linux-gnu) libcurl NSS zlib libidn libssh " +160.162.96.9 - - [01/May/2023:02:59:23 +0200] "GET /.git/config HTTP/1.1" 404 5136 "-" "curl (x-redhat-linux-gnu) libcurl NSS zlib libidn libssh " +131.226.91.104 - - [01/May/2023:03:03:52 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:03:03:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:03:03:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:03:03:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:03:03:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:03:03:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +217.132.143.85 - - [01/May/2023:03:04:41 +0200] "GET / HTTP/1.1" 302 5354 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +14.96.175.21 - - [01/May/2023:03:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138144 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138144 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24448 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +192.58.45.160 - - [01/May/2023:03:21:56 +0200] "GET /robots.txt HTTP/1.1" 200 5682 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +192.58.45.160 - - [01/May/2023:03:21:57 +0200] "GET /robots.txt HTTP/1.1" 200 1351 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +131.85.113.84 - - [01/May/2023:03:47:53 +0200] "GET / HTTP/1.1" 302 553 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +248.67.15.58 - - [01/May/2023:03:49:55 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10324 "https://145.239.49.5/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:04:01:01 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:04:01:01 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:04:01:01 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:04:01:01 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:04:01:02 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:04:01:02 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:37 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:37 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138153 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138153 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:39 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:39 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50473 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:45 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:45 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67893 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11393 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48066 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11032 "-" "StatoolInfos Uptime Bot" +114.178.163.2 - - [01/May/2023:04:49:29 +0200] "GET / HTTP/1.1" 302 549 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +114.178.163.2 - - [01/May/2023:04:49:29 +0200] "GET / HTTP/1.1" 302 5226 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +114.178.163.2 - - [01/May/2023:04:49:29 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15166 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:05:00:52 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:05:00:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:05:00:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:05:00:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:05:00:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:05:00:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138153 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138153 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101186 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78477 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11000 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48593 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15168 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +200.157.70.140 - - [01/May/2023:05:15:33 +0200] "GET /services/audio.xhtml?XDEBUG_SESSION_START=phpstorm HTTP/1.1" 200 10946 "https://145.239.49.5:443/?XDEBUG_SESSION_START=phpstorm" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +150.193.234.240 - - [01/May/2023:05:53:56 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10928 "-" "Mozilla (compatible; CensysInspect +) " +150.193.234.240 - - [01/May/2023:05:53:57 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +150.193.234.240 - - [01/May/2023:05:53:57 +0200] "GET /favicon.ico HTTP/1.1" 404 5791 "-" "Mozilla (compatible; CensysInspect +) " +15.229.94.190 - - [01/May/2023:05:58:08 +0200] "GET /.env HTTP/1.1" 404 5923 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +15.229.94.190 - - [01/May/2023:05:58:29 +0200] "GET /.env HTTP/1.1" 404 5924 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +231.116.148.8 - - [01/May/2023:05:59:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10994 "-" "-" +131.226.91.104 - - [01/May/2023:06:00:55 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7354 "-" "Java " +131.226.91.104 - - [01/May/2023:06:00:55 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:06:00:56 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:06:00:56 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:06:00:56 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:06:00:56 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:06:01:40 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:42 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:54 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:57 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:01 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:01 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:02 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:09 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:11 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:11 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138156 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138156 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24448 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67893 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15135 "-" "StatoolInfos Uptime Bot" +176.252.42.10 - - [01/May/2023:06:27:37 +0200] "GET /public/plugins/elfinder/connectors/php/connector.php HTTP/1.1" 404 5876 "-" "ALittle Client" +176.252.42.10 - - [01/May/2023:06:27:38 +0200] "GET /public/plugins/elfinder/connectors/php/connector.php HTTP/1.1" 404 5877 "-" "ALittle Client" +100.201.199.108 - - [01/May/2023:06:30:05 +0200] "GET /wp-login.php HTTP/1.1" 404 5155 "http://www.libre-service.club/wp-login.php" "Mozilla (Windows NT Win x rv) Gecko Firefox " +74.190.131.239 - - [01/May/2023:06:41:32 +0200] "GET /wp-login.php HTTP/1.1" 302 540 "-" "Mozilla (Windows NT Win x rv) Gecko Firefox " +74.190.131.239 - - [01/May/2023:06:41:33 +0200] "GET /wp-login.php HTTP/1.1" 404 5155 "http://www.libre-service.eu/wp-login.php" "Mozilla (Windows NT Win x rv) Gecko Firefox " +200.157.70.140 - - [01/May/2023:06:54:58 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10946 "https://145.239.49.5:443/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:07:03:03 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/May/2023:07:03:03 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:07:03:03 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:07:03:03 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:07:03:03 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:07:03:04 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:07:04:07 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:09 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:12 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:15 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:18 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:18 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:18 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:21 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:24 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:24 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:25 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:31 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:33 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:33 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138159 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138159 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67893 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +200.157.70.140 - - [01/May/2023:07:45:37 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10948 "https://145.239.49.5:443/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:08:00:50 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:08:00:50 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:08:00:50 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:08:00:50 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:08:00:50 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:08:00:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:08:01:29 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:30 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:33 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:35 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:37 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:37 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:38 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:40 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:42 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:42 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:43 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:48 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:49 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:50 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138162 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138162 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24448 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET / HTTP/1.1" 302 5196 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +34.173.134.155 - - [01/May/2023:08:10:51 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10344 "-" "Mozilla (Windows NT WOW) AppleWebKit (KHTML, like Gecko) Chrome Safari QIHU " +200.157.70.140 - - [01/May/2023:08:19:39 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10946 "https://145.239.49.5:443/actuator/gateway/routes" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +103.166.240.43 - - [01/May/2023:08:26:41 +0200] "GET /wp-login.php HTTP/1.1" 404 5156 "http://www.libreservice.club/wp-login.php" "Mozilla (Windows NT Win x rv) Gecko Firefox " +80.102.227.2 - - [01/May/2023:08:45:14 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10324 "https://audio.libre-service.eu/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +21.149.250.113 - - [01/May/2023:08:55:57 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10574 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +131.226.91.104 - - [01/May/2023:09:00:53 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/May/2023:09:00:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:09:00:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:09:00:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:09:00:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:09:00:54 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:09:01:35 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:36 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:39 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:42 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:43 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:43 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:44 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:48 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:48 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:49 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:55 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:57 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:57 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138162 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138162 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +83.161.189.228 - - [01/May/2023:09:06:38 +0200] "GET /robots.txt HTTP/1.1" 302 5455 "-" "Mozilla (compatible;PetalBot;+) " +83.161.189.228 - - [01/May/2023:09:06:51 +0200] "GET /robots.txt HTTP/1.1" 200 5517 "-" "Mozilla (compatible;PetalBot;+) " +247.29.200.49 - - [01/May/2023:09:15:04 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15159 "-" "Mozilla (compatible; AhrefsBot +) " +108.30.217.51 - - [01/May/2023:09:15:05 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 9372 "-" "Mozilla (compatible; AhrefsBot +) " +154.241.61.8 - - [01/May/2023:09:15:05 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 18410 "-" "Mozilla (compatible; AhrefsBot +) " +100.12.155.135 - - [01/May/2023:09:51:13 +0200] "GET / HTTP/1.1" 302 5171 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +104.156.91.7 - - [01/May/2023:09:56:57 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11528 "-" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 4517 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css HTTP/1.1" 200 9586 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 13553 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /charter/fonts/Raleway/Raleway-SemiBold.woff2 HTTP/1.1" 200 23509 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /charter/fonts/Raleway/Raleway-Bold.woff2 HTTP/1.1" 200 23153 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +86.244.161.61 - - [01/May/2023:09:56:58 +0200] "GET /charter/fonts/Raleway/Raleway-Regular.woff2 HTTP/1.1" 200 21472 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /services/minetest-soleil-800x.jpg HTTP/1.1" 200 68654 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +171.120.157.119 - - [01/May/2023:09:56:58 +0200] "GET /commons/Fork-Awesome-1.2.0/fonts/forkawesome-webfont.woff2?v=1.2.0 HTTP/1.1" 200 111275 "https://www.libre-service.eu/commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /services/minetest-lapin-800x.jpg HTTP/1.1" 200 135160 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +171.120.157.119 - - [01/May/2023:09:56:58 +0200] "GET /services/minetest-vache-800x.jpg HTTP/1.1" 200 134383 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:59 +0200] "GET /services/minetest-pyramide-800x.jpg HTTP/1.1" 200 103141 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +30.199.182.124 - - [01/May/2023:09:57:33 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +30.199.182.124 - - [01/May/2023:09:57:33 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 4517 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +30.199.182.124 - - [01/May/2023:09:57:33 +0200] "GET /commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css HTTP/1.1" 200 9586 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +30.199.182.124 - - [01/May/2023:09:57:33 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 13553 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +254.128.168.7 - - [01/May/2023:09:57:33 +0200] "GET /charter/fonts/Raleway/Raleway-SemiBold.woff2 HTTP/1.1" 200 24057 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +193.128.4.0 - - [01/May/2023:09:57:33 +0200] "GET /charter/fonts/Raleway/Raleway-Regular.woff2 HTTP/1.1" 200 25788 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +30.199.182.124 - - [01/May/2023:09:57:33 +0200] "GET /charter/fonts/Raleway/Raleway-Bold.woff2 HTTP/1.1" 200 23153 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +125.83.149.160 - - [01/May/2023:09:57:33 +0200] "GET /commons/Fork-Awesome-1.2.0/fonts/forkawesome-webfont.woff2?v=1.2.0 HTTP/1.1" 200 111275 "https://www.libre-service.eu/commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +254.128.168.7 - - [01/May/2023:09:57:34 +0200] "GET /services/minetest-soleil-800x.jpg HTTP/1.1" 200 68654 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +254.128.168.7 - - [01/May/2023:09:57:34 +0200] "GET /services/minetest-lapin-800x.jpg HTTP/1.1" 200 135160 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +125.83.149.160 - - [01/May/2023:09:57:34 +0200] "GET /services/minetest-vache-800x.jpg HTTP/1.1" 200 134383 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +254.128.168.7 - - [01/May/2023:09:57:34 +0200] "GET /services/minetest-pyramide-800x.jpg HTTP/1.1" 200 103141 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +131.226.91.104 - - [01/May/2023:10:00:44 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/May/2023:10:00:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:10:00:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:10:00:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:10:00:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:10:00:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:10:01:19 +0200] "GET /contact.xhtml HTTP/1.1" 200 9872 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:21 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:24 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:28 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:30 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:30 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:31 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:33 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:36 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:36 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:37 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:42 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:43 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:43 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:43 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78443 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48097 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48624 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15168 "-" "StatoolInfos Uptime Bot" +11.129.28.115 - - [01/May/2023:10:43:59 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11521 "-" "Mozilla (compatible; AhrefsBot +) " +236.28.37.35 - - [01/May/2023:10:47:03 +0200] "GET / HTTP/1.1" 302 5123 "-" "Mozilla (X Linux x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +97.31.237.214 - - [01/May/2023:10:48:12 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (X Linux x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:11:00:50 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7354 "-" "Java " +131.226.91.104 - - [01/May/2023:11:00:50 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:11:00:50 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:11:00:50 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:11:00:51 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:11:00:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +148.117.130.145 - - [01/May/2023:11:01:09 +0200] "GET /robots.txt HTTP/1.1" 302 536 "-" "Mozilla (compatible; DataForSeoBot +) " +148.117.130.145 - - [01/May/2023:11:01:09 +0200] "GET /robots.txt HTTP/1.1" 200 5565 "-" "Mozilla (compatible; DataForSeoBot +) " +131.226.91.104 - - [01/May/2023:11:01:29 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:30 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:33 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:36 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:38 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:38 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:39 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:40 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:42 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:43 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:43 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:49 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:50 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:51 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18356 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9872 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48097 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11000 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48593 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15136 "-" "StatoolInfos Uptime Bot" +170.42.136.136 - - [01/May/2023:11:07:33 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10363 "https://145.239.49.5/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +102.196.199.7 - - [01/May/2023:11:11:13 +0200] "GET / HTTP/1.1" 302 5219 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari Edg " +102.196.199.7 - - [01/May/2023:11:11:13 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10248 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari Edg " +235.88.59.109 - - [01/May/2023:11:26:56 +0200] "GET / HTTP/1.1" 302 5142 "http://www.libreservice.club" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) Version Mobile Safari " +235.88.59.109 - - [01/May/2023:11:26:57 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15083 "https://www.libre-service.eu/" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) Version Mobile Safari " +148.179.152.34 - - [01/May/2023:11:34:41 +0200] "GET / HTTP/1.1" 302 5274 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +148.179.152.34 - - [01/May/2023:11:34:41 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +148.179.152.34 - - [01/May/2023:11:34:43 +0200] "GET / HTTP/1.1" 302 5274 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +148.179.152.34 - - [01/May/2023:11:34:43 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +11.11.146.29 - - [01/May/2023:11:42:26 +0200] "GET /robots.txt HTTP/1.1" 200 5507 "-" "Mozilla (compatible; Googlebot +) " +11.11.146.29 - - [01/May/2023:11:42:27 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Googlebot-Image " +131.226.91.104 - - [01/May/2023:12:00:40 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:12:00:40 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:12:00:41 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:12:00:41 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:12:00:41 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:12:00:41 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:12:01:25 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:26 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:29 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:31 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:32 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:33 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:33 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:35 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:38 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:38 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:38 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:44 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:45 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24417 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78443 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48097 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48625 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11498 "-" "StatoolInfos Uptime Bot" +161.205.5.185 - - [01/May/2023:12:27:26 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48051 "-" "Googlebot-Image " +17.200.160.22 - - [01/May/2023:12:27:27 +0200] "GET /services/minetest-vache-800x.jpg HTTP/1.1" 200 139201 "-" "Googlebot-Image " +194.184.170.187 - - [01/May/2023:12:58:19 +0200] "GET / HTTP/1.1" 302 5227 "-" "Mozilla (compatible; MSIE Windows NT Trident " +194.184.170.187 - - [01/May/2023:12:58:19 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (compatible; MSIE Windows NT Trident " +19.187.238.147 - - [01/May/2023:12:58:40 +0200] "GET / HTTP/1.1" 302 5226 "-" "Mozilla (compatible; MSIE Windows NT Trident " +19.187.238.147 - - [01/May/2023:12:58:41 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (compatible; MSIE Windows NT Trident " +131.226.91.104 - - [01/May/2023:13:00:37 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7354 "-" "Java " +131.226.91.104 - - [01/May/2023:13:00:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:13:00:37 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:13:00:37 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:13:00:38 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:13:00:38 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:13:01:19 +0200] "GET /contact.xhtml HTTP/1.1" 200 9872 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:20 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:23 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:25 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:27 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:27 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:28 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:30 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:32 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:32 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:33 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:39 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:40 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:41 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18356 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15168 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +207.138.81.60 - - [01/May/2023:13:18:18 +0200] "GET / HTTP/1.1" 302 5439 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET / HTTP/1.1" 302 5226 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 4517 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET /commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css HTTP/1.1" 200 9586 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 13553 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /charter/fonts/Raleway/Raleway-SemiBold.woff2 HTTP/1.1" 200 23509 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /charter/fonts/Raleway/Raleway-Bold.woff2 HTTP/1.1" 200 23153 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET /charter/line.png HTTP/1.1" 404 5955 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /charter/fonts/Raleway/Raleway-Regular.woff2 HTTP/1.1" 200 21472 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /commons/Fork-Awesome-1.2.0/fonts/forkawesome-webfont.woff2?v=1.2.0 HTTP/1.1" 200 111275 "https://www.libre-service.eu/commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /commons/logo_chatons2-128x.png HTTP/1.1" 200 21771 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 17514 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +133.249.100.251 - - [01/May/2023:13:18:54 +0200] "GET /.git/config HTTP/1.1" 302 5409 "-" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +217.132.143.85 - - [01/May/2023:13:50:02 +0200] "GET / HTTP/1.1" 302 5355 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +131.226.91.104 - - [01/May/2023:14:00:58 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7354 "-" "Java " +131.226.91.104 - - [01/May/2023:14:00:58 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:14:00:58 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:14:00:58 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:14:00:59 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:14:00:59 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:14:01:33 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:34 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:40 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:41 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:41 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:42 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:47 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:47 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:47 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:54 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:37 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:37 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78444 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24417 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48065 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +254.67.93.25 - - [01/May/2023:14:20:52 +0200] "GET / HTTP/1.1" 302 5275 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +254.67.93.25 - - [01/May/2023:14:20:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +254.67.93.25 - - [01/May/2023:14:20:54 +0200] "GET / HTTP/1.1" 302 5274 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +254.67.93.25 - - [01/May/2023:14:20:55 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.85.113.84 - - [01/May/2023:14:33:20 +0200] "GET / HTTP/1.1" 302 553 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +131.226.91.104 - - [01/May/2023:15:00:59 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:15:00:59 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:15:00:59 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:15:00:59 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:15:00:59 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:15:01:00 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:15:01:42 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:43 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:48 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:50 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:50 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:51 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:55 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:55 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:56 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:02:01 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:02:02 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:02:02 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18356 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:51 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:51 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24418 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78444 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48097 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET / HTTP/1.1" 302 5226 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48594 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +187.227.193.166 - - [01/May/2023:15:39:24 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11079 "-" "python-requests " +38.80.18.162 - - [01/May/2023:15:51:08 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11023 "-" "Mozilla (compatible; AhrefsBot +) " +5.230.161.254 - - [01/May/2023:15:54:25 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10927 "-" "Mozilla (compatible; CensysInspect +) " +5.230.161.254 - - [01/May/2023:15:54:26 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +5.230.161.254 - - [01/May/2023:15:54:26 +0200] "GET /favicon.ico HTTP/1.1" 404 5793 "-" "Mozilla (compatible; CensysInspect +) " +131.226.91.104 - - [01/May/2023:16:00:41 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/May/2023:16:00:41 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:16:00:41 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:16:00:41 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:16:00:41 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:16:00:42 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:16:01:23 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:24 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:26 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:29 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:31 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:31 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:32 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:34 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:36 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:36 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:37 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:41 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:42 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:42 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18356 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24416 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET / HTTP/1.1" 302 5227 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48625 "-" "StatoolInfos Uptime Bot" +220.246.46.232 - - [01/May/2023:16:54:57 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10929 "-" "Mozilla (compatible; CensysInspect +) " +220.246.46.232 - - [01/May/2023:16:54:58 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +220.246.46.232 - - [01/May/2023:16:54:58 +0200] "GET /favicon.ico HTTP/1.1" 404 5792 "-" "Mozilla (compatible; CensysInspect +) " +131.226.91.104 - - [01/May/2023:17:01:01 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:01 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:01 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:01 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:02 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:02 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:40 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:41 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:49 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:49 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:50 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:54 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:59 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:02:00 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:02:00 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +106.94.54.2 - - [01/May/2023:17:03:20 +0200] "GET / HTTP/1.1" 302 5381 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +106.94.54.2 - - [01/May/2023:17:03:20 +0200] "GET / HTTP/1.1" 302 5189 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +106.94.54.2 - - [01/May/2023:17:03:20 +0200] "GET /accueil.xhtml HTTP/1.1" 421 5525 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +106.94.54.2 - - [01/May/2023:17:03:20 +0200] "GET / HTTP/1.1" 302 5434 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +106.94.54.2 - - [01/May/2023:17:03:21 +0200] "GET / HTTP/1.1" 421 5525 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +106.94.54.2 - - [01/May/2023:17:04:11 +0200] "GET / HTTP/1.1" 302 5190 "-" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) Version Mobile Safari " +106.94.54.2 - - [01/May/2023:17:04:26 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11493 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +106.94.54.2 - - [01/May/2023:17:04:30 +0200] "GET / HTTP/1.1" 302 5190 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +14.96.175.21 - - [01/May/2023:17:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138213 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138213 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9872 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101187 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78477 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11394 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +216.114.229.8 - - [01/May/2023:17:20:12 +0200] "GET / HTTP/1.1" 302 5123 "-" "Mozilla (compatible; CensysInspect +) " +216.114.229.8 - - [01/May/2023:17:20:13 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15064 "-" "Mozilla (compatible; CensysInspect +) " +216.114.229.8 - - [01/May/2023:17:20:13 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22295 "-" "Mozilla (compatible; CensysInspect +) " +216.114.229.8 - - [01/May/2023:17:20:14 +0200] "GET /favicon.ico HTTP/1.1" 404 5792 "-" "Mozilla (compatible; CensysInspect +) " +243.135.202.39 - - [01/May/2023:17:51:48 +0200] "GET /robots.txt HTTP/1.1" 200 5683 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +177.28.5.222 - - [01/May/2023:17:59:05 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11159 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +177.28.5.222 - - [01/May/2023:17:59:05 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6828 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +131.226.91.104 - - [01/May/2023:18:00:51 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7354 "-" "Java " +131.226.91.104 - - [01/May/2023:18:00:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:18:00:51 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:18:00:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:18:00:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:18:00:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:18:01:32 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:33 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:39 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:40 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:40 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:41 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:43 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:45 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:45 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:45 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:50 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:51 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:51 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.1 b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.1 new file mode 100644 index 0000000..3e1e809 --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.1 @@ -0,0 +1,1013 @@ +131.226.91.104 - - [01/Apr/2023:00:01:22 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:23 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:26 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:28 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:30 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:30 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:31 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:33 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:36 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:36 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:37 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:43 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:44 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132165 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132165 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101155 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15170 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +115.100.28.150 - - [01/Apr/2023:00:25:16 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5878 "https://www.agendadulibre.org/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +47.199.137.3 - - [01/Apr/2023:00:48:36 +0200] "GET /apropos.xhtml HTTP/1.1" 200 10915 "-" "Mozilla (compatible; AhrefsBot +) " +138.147.204.9 - - [01/Apr/2023:00:48:39 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 9375 "-" "Mozilla (compatible; AhrefsBot +) " +86.194.99.179 - - [01/Apr/2023:00:48:39 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 18410 "-" "Mozilla (compatible; AhrefsBot +) " +4.140.224.178 - - [01/Apr/2023:00:55:14 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11658 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +140.73.178.62 - - [01/Apr/2023:00:55:33 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11659 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:01:00:49 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:01:00:49 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:01:00:49 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:01:00:50 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:01:00:50 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:01:00:50 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:57 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:57 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:57 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:57 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132197 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132197 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:59 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:59 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:07 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:07 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15137 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:07 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +144.221.135.153 - - [01/Apr/2023:01:41:34 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11388 "https://infos.libre-service.eu/servicesaupublic-metrics-web-weeks-full.xhtml" "Mozilla (Linux; Android ) AppleWebKit (KHTML, like Gecko) Mobile Safari (compatible; PetalBot;+) " +131.226.91.104 - - [01/Apr/2023:02:00:58 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:02:00:58 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:02:00:58 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:02:00:58 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:02:00:58 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:02:00:59 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132223 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132223 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:47 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:47 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:47 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11532 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET / HTTP/1.1" 302 5196 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48627 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11498 "-" "StatoolInfos Uptime Bot" +74.183.118.5 - - [01/Apr/2023:02:11:08 +0200] "GET /robots.txt HTTP/1.1" 200 5508 "-" "Mozilla (compatible; Googlebot +) " +170.151.101.162 - - [01/Apr/2023:02:47:08 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11390 "https://infos.libre-service.eu/infra-www-metrics-web-years-full.xhtml" "Mozilla (Linux; Android ) AppleWebKit (KHTML, like Gecko) Mobile Safari (compatible; PetalBot;+) " +131.206.150.51 - - [01/Apr/2023:02:47:49 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (X Linux x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +58.122.223.106 - - [01/Apr/2023:02:48:34 +0200] "GET / HTTP/1.1" 302 5123 "-" "Mozilla (X Linux x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:03:00:42 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/Apr/2023:03:00:42 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:03:00:43 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:03:00:43 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:03:00:43 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:03:00:43 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132239 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132239 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:48 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:48 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:48 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:48 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24451 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101187 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48099 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:55 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15169 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:55 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +118.199.39.9 - - [01/Apr/2023:03:07:03 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5878 "https://www.agendadulibre.org/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +161.104.81.1 - - [01/Apr/2023:03:15:39 +0200] "GET /robots.txt HTTP/1.1" 200 5546 "-" "Mozilla (compatible; AhrefsBot +) " +49.28.198.197 - - [01/Apr/2023:03:21:48 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5821 "-" "Mozilla scpitspi-rs " +75.255.85.4 - - [01/Apr/2023:03:33:46 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11522 "-" "Mozilla (compatible; AhrefsBot +) " +239.220.0.1 - - [01/Apr/2023:03:35:15 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10326 "https://145.239.49.5/" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Version Safari " +66.114.254.67 - - [01/Apr/2023:03:36:08 +0200] "GET /services/audio.xhtml?s=/Index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP21 HTTP/1.1" 200 10947 "https://145.239.49.5:443/index.php?s=/Index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP21" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +210.114.193.0 - - [01/Apr/2023:03:47:16 +0200] "GET /wp-content/plugins/woocommerce-payments/dist/blocks-checkout.css HTTP/1.1" 404 5137 "-" "Mozilla (Linux; Android PRA-TL) AppleWebKit (KHTML, like Gecko) Chrome Mobile Safari " +210.114.193.0 - - [01/Apr/2023:03:47:16 +0200] "GET /wp-content/plugins/woocommerce-payments/dist/blocks-checkout.css HTTP/1.1" 404 5137 "-" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) Version Mobile Safari " +131.226.91.104 - - [01/Apr/2023:04:00:55 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:04:00:55 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:04:00:55 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:04:00:55 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:04:00:56 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:04:00:56 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132263 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132263 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48067 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11500 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48593 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +26.159.158.164 - - [01/Apr/2023:04:05:12 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10503 "-" "Mozilla (X Linux x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +26.159.158.164 - - [01/Apr/2023:04:05:18 +0200] "GET /robots.txt HTTP/1.1" 200 4947 "-" "-" +26.159.158.164 - - [01/Apr/2023:04:05:18 +0200] "GET /sitemap.xml HTTP/1.1" 404 5348 "-" "-" +26.159.158.164 - - [01/Apr/2023:04:05:18 +0200] "GET /.well-known/security.txt HTTP/1.1" 404 5348 "-" "-" +26.159.158.164 - - [01/Apr/2023:04:05:19 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22428 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +61.121.32.205 - - [01/Apr/2023:04:23:26 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 18410 "-" "facebookexternalhit (+) " +123.34.126.215 - - [01/Apr/2023:04:53:49 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10363 "https://145.239.49.5/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:05:00:48 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/Apr/2023:05:00:48 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:05:00:48 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:05:00:49 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:05:00:49 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:05:00:49 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132277 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132277 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78446 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67895 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +56.133.220.132 - - [01/Apr/2023:05:25:42 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (compatible; CensysInspect +) " +56.133.220.132 - - [01/Apr/2023:05:25:42 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15064 "-" "Mozilla (compatible; CensysInspect +) " +56.133.220.132 - - [01/Apr/2023:05:25:43 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +56.133.220.132 - - [01/Apr/2023:05:25:43 +0200] "GET /favicon.ico HTTP/1.1" 404 5794 "-" "Mozilla (compatible; CensysInspect +) " +66.114.254.67 - - [01/Apr/2023:05:45:21 +0200] "GET /services/audio.xhtml?XDEBUG_SESSION_START=phpstorm HTTP/1.1" 200 10948 "https://145.239.49.5:443/?XDEBUG_SESSION_START=phpstorm" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:06:01:02 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:02 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:02 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:02 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:03 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:03 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:39 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:40 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:43 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:48 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:48 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:49 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:54 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:55 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:02:00 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:02:02 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:02:02 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132281 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132281 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101155 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24418 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11002 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15137 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +51.53.179.22 - - [01/Apr/2023:06:36:26 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5877 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +51.53.179.22 - - [01/Apr/2023:06:36:28 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 1012 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +51.53.179.22 - - [01/Apr/2023:06:36:36 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5877 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +51.53.179.22 - - [01/Apr/2023:06:37:09 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5876 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +51.53.179.22 - - [01/Apr/2023:06:37:11 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 1012 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +51.53.179.22 - - [01/Apr/2023:06:37:28 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5877 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +66.114.254.67 - - [01/Apr/2023:06:42:33 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10949 "https://145.239.49.5:443/mifs/.;/services/LogService" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +82.121.119.232 - - [01/Apr/2023:06:58:14 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10930 "-" "Mozilla (compatible; CensysInspect +) " +82.121.119.232 - - [01/Apr/2023:06:58:15 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22296 "-" "Mozilla (compatible; CensysInspect +) " +82.121.119.232 - - [01/Apr/2023:06:58:15 +0200] "GET /favicon.ico HTTP/1.1" 404 5792 "-" "Mozilla (compatible; CensysInspect +) " +131.226.91.104 - - [01/Apr/2023:07:01:03 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:03 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:03 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:03 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:04 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:04 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:43 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:44 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:50 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:51 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:51 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:53 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:57 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:57 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:58 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:02:03 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:02:05 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:02:05 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132283 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132283 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78446 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48099 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11532 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11000 "-" "StatoolInfos Uptime Bot" +126.202.249.227 - - [01/Apr/2023:07:07:58 +0200] "GET / HTTP/1.1" 302 5419 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +126.202.249.227 - - [01/Apr/2023:07:07:58 +0200] "GET / HTTP/1.1" 302 5172 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +138.202.44.5 - - [01/Apr/2023:07:22:43 +0200] "GET / HTTP/1.0" 302 516 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +138.202.44.5 - - [01/Apr/2023:07:22:49 +0200] "GET / HTTP/1.0" 302 4734 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +138.202.44.5 - - [01/Apr/2023:07:22:56 +0200] "GET /accueil.xhtml HTTP/1.0" 200 14620 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +122.82.8.9 - - [01/Apr/2023:07:24:12 +0200] "GET / HTTP/1.1" 302 549 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +122.82.8.9 - - [01/Apr/2023:07:24:12 +0200] "GET / HTTP/1.1" 302 5276 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +122.82.8.9 - - [01/Apr/2023:07:24:12 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "https://www.libre-service.eu/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +66.114.254.67 - - [01/Apr/2023:07:27:03 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10948 "https://145.239.49.5:443/console/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +126.158.4.45 - - [01/Apr/2023:07:33:00 +0200] "GET /services/audio.xhtml HTTP/1.0" 200 10539 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +235.169.114.19 - - [01/Apr/2023:07:40:46 +0200] "GET / HTTP/1.1" 302 493 "-" "-" +235.169.114.19 - - [01/Apr/2023:07:40:47 +0200] "GET / HTTP/1.1" 302 4519 "http://145.239.49.5:80/" "-" +235.169.114.19 - - [01/Apr/2023:07:40:48 +0200] "GET /accueil.xhtml HTTP/1.1" 200 14481 "-" "-" +111.20.0.4 - - [01/Apr/2023:07:58:09 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11081 "-" "python-requests " +131.226.91.104 - - [01/Apr/2023:08:00:35 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:00:35 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:00:36 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:00:36 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:00:36 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:00:36 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:01:14 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:15 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:18 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:20 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:22 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:22 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:23 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:25 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:27 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:27 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:28 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:33 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:34 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:35 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132291 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132291 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78477 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11499 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15168 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +51.228.135.100 - - [01/Apr/2023:08:41:58 +0200] "GET / HTTP/1.1" 302 4772 "http://libreservice.club" "Mozilla (X Fedora; Linux x rv) Gecko Firefox " +51.228.135.100 - - [01/Apr/2023:08:41:58 +0200] "GET /accueil.xhtml HTTP/1.1" 200 14733 "https://www.libre-service.eu/" "Mozilla (X Fedora; Linux x rv) Gecko Firefox " +51.228.135.100 - - [01/Apr/2023:08:42:20 +0200] "GET /accueil.xhtml HTTP/1.1" 200 14733 "-" "Mozilla (Linux x rv) Gecko Firefox " +51.228.135.100 - - [01/Apr/2023:08:42:20 +0200] "GET /contact.xhtml HTTP/1.1" 200 9417 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Linux x rv) Gecko Firefox " +252.42.234.231 - - [01/Apr/2023:08:46:30 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11079 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +167.83.170.83 - - [01/Apr/2023:08:59:25 +0200] "GET /services/minetest.xhtml HTTP/1.0" 200 11038 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +29.66.107.160 - - [01/Apr/2023:08:59:36 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10324 "https://audio.libre-service.eu/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:09:00:42 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:00:42 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:00:42 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:00:42 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:00:43 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:00:43 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:01:15 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:19 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:22 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:23 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:23 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:24 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:26 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:29 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:29 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:30 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:35 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:36 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:37 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67895 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48099 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48627 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET / HTTP/1.1" 302 5228 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11499 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11001 "-" "StatoolInfos Uptime Bot" +5.230.161.254 - - [01/Apr/2023:09:16:32 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (compatible; CensysInspect +) " +5.230.161.254 - - [01/Apr/2023:09:16:32 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15065 "-" "Mozilla (compatible; CensysInspect +) " +5.230.161.254 - - [01/Apr/2023:09:16:33 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22295 "-" "Mozilla (compatible; CensysInspect +) " +5.230.161.254 - - [01/Apr/2023:09:16:33 +0200] "GET /favicon.ico HTTP/1.1" 404 5793 "-" "Mozilla (compatible; CensysInspect +) " +196.110.218.8 - - [01/Apr/2023:09:18:10 +0200] "GET / HTTP/1.1" 302 553 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +66.114.254.67 - - [01/Apr/2023:09:19:27 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10948 "https://145.239.49.5:443/Autodiscover/Autodiscover.xml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +38.80.18.162 - - [01/Apr/2023:09:44:46 +0200] "GET /robots.txt HTTP/1.1" 200 5546 "-" "Mozilla (compatible; AhrefsBot +) " +54.123.174.146 - - [01/Apr/2023:09:46:04 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10884 "https://145.239.49.5" "Mozilla (compatible; InternetMeasurement +) " +248.234.147.28 - - [01/Apr/2023:09:46:06 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22343 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:10:00:54 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:00:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:00:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:00:55 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:00:55 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:00:55 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:01:29 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:30 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:33 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:36 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:37 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:37 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:39 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:40 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:43 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:43 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:44 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:49 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:50 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:51 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78444 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +102.165.138.217 - - [01/Apr/2023:10:18:25 +0200] "GET /services/paste.xhtml HTTP/1.1" 200 10375 "https://www.libre-service.eu/services.xhtml" "Mozilla (Linux; Android ) AppleWebKit (KHTML, like Gecko) Mobile Safari (compatible; PetalBot;+) " +214.111.148.21 - - [01/Apr/2023:10:28:28 +0200] "GET / HTTP/1.1" 302 4519 "-" "-" +180.16.120.5 - - [01/Apr/2023:10:44:10 +0200] "GET /services/audio.xhtml HTTP/1.0" 200 10540 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +15.210.155.36 - - [01/Apr/2023:10:46:24 +0200] "GET / HTTP/1.1" 302 5227 "-" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:24 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 4517 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css HTTP/1.1" 200 10134 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /commons/logo_chatons2-128x.png HTTP/1.1" 200 22319 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 14101 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/fonts/Raleway/Raleway-SemiBold.woff2 HTTP/1.1" 200 24057 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/fonts/Raleway/Raleway-Regular.woff2 HTTP/1.1" 200 21472 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/fonts/Raleway/Raleway-Bold.woff2 HTTP/1.1" 200 28017 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /commons/Fork-Awesome-1.2.0/fonts/forkawesome-webfont.woff2?v=1.2.0 HTTP/1.1" 200 111275 "https://www.libre-service.eu/commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 18062 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +19.40.124.225 - - [01/Apr/2023:10:52:30 +0200] "GET / HTTP/1.1" 302 549 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:31 +0200] "GET /wordpress/ HTTP/1.1" 302 568 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:31 +0200] "GET /wp/ HTTP/1.1" 302 554 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:31 +0200] "GET /blog/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:32 +0200] "GET /new/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:32 +0200] "GET /old/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:32 +0200] "GET /test/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:33 +0200] "GET /main/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:33 +0200] "GET /site/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:33 +0200] "GET /backup/ HTTP/1.1" 302 562 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:34 +0200] "GET /demo/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:34 +0200] "GET /home/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:35 +0200] "GET /tmp/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:35 +0200] "GET /cms/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:35 +0200] "GET /dev/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:36 +0200] "GET /portal/ HTTP/1.1" 302 562 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:36 +0200] "GET /web/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +240.106.150.1 - - [01/Apr/2023:10:58:25 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5877 "https://www.agendadulibre.org/" "Mozilla (Linux; Android ONEPLUS A) AppleWebKit (KHTML, like Gecko) Chrome Mobile Safari " +131.226.91.104 - - [01/Apr/2023:11:00:47 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:00:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:00:47 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:00:47 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:00:47 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:00:48 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:01:20 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:21 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:24 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:26 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:28 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:28 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:29 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:31 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:33 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:33 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:34 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:40 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:41 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:41 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:47 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101157 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11532 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET / HTTP/1.1" 302 5229 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48068 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48625 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +101.166.219.60 - - [01/Apr/2023:11:17:04 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10324 "https://145.239.49.5/ab2g" "Mozilla zgrab " +101.166.219.60 - - [01/Apr/2023:11:17:04 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10324 "https://145.239.49.5/ab2h" "Mozilla zgrab " +15.210.155.36 - - [01/Apr/2023:11:18:24 +0200] "GET / HTTP/1.1" 302 5226 "-" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:24 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 4517 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css HTTP/1.1" 200 10134 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 13553 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /commons/logo_chatons2-128x.png HTTP/1.1" 200 22319 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 18062 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/fonts/Raleway/Raleway-SemiBold.woff2 HTTP/1.1" 200 24057 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/fonts/Raleway/Raleway-Bold.woff2 HTTP/1.1" 200 28018 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/fonts/Raleway/Raleway-Regular.woff2 HTTP/1.1" 200 25788 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /commons/Fork-Awesome-1.2.0/fonts/forkawesome-webfont.woff2?v=1.2.0 HTTP/1.1" 200 111275 "https://www.libre-service.eu/commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css" "Mozilla (X Linux x rv) Gecko Firefox " +193.121.136.149 - - [01/Apr/2023:11:45:22 +0200] "GET / HTTP/1.1" 302 5172 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:12:00:43 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:00:43 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:00:43 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:00:43 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:00:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:00:44 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:01:20 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:21 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:23 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:26 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:27 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:27 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:28 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:30 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:33 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:33 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:34 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +151.222.210.7 - - [01/Apr/2023:12:01:37 +0200] "GET / HTTP/1.0" 302 4733 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +131.226.91.104 - - [01/Apr/2023:12:01:39 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +151.222.210.7 - - [01/Apr/2023:12:01:40 +0200] "GET /accueil.xhtml HTTP/1.0" 200 14618 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +131.226.91.104 - - [01/Apr/2023:12:01:41 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:41 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:51 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11498 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48594 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15137 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11032 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +66.114.254.67 - - [01/Apr/2023:12:09:21 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10948 "https://145.239.49.5:443/_ignition/execute-solution" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:13:00:38 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:00:38 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:00:38 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:00:38 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:00:39 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:00:39 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:01:11 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:12 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:15 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:17 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:19 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:19 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:20 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:22 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:24 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:24 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:25 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:30 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:31 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:32 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18359 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11500 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET / HTTP/1.1" 302 5228 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48594 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11500 "-" "StatoolInfos Uptime Bot" +99.107.160.0 - - [01/Apr/2023:13:19:37 +0200] "GET /robots.txt HTTP/1.1" 200 5507 "-" "Mozilla (compatible; Googlebot +) " +49.151.155.5 - - [01/Apr/2023:13:19:37 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5831 "-" "Googlebot-Image " +115.167.159.114 - - [01/Apr/2023:13:31:35 +0200] "GET /robots.txt HTTP/1.1" 302 5457 "-" "Mozilla (compatible;PetalBot;+) " +131.226.91.104 - - [01/Apr/2023:14:00:48 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:00:48 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:00:48 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:00:48 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:00:49 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:00:49 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:01:25 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:26 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:29 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:31 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:33 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:33 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:34 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:36 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:38 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:38 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:39 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:44 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:46 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78444 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101155 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11532 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24418 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11001 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48099 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +228.94.0.141 - - [01/Apr/2023:14:14:42 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11024 "-" "Mozilla (Windows; U; Windows NT rv) Gecko Firefox " +26.174.19.135 - - [01/Apr/2023:14:28:28 +0200] "GET / HTTP/1.1" 302 5125 "-" "Mozilla (compatible; CensysInspect +) " +26.174.19.135 - - [01/Apr/2023:14:28:29 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15065 "-" "Mozilla (compatible; CensysInspect +) " +26.174.19.135 - - [01/Apr/2023:14:28:29 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22295 "-" "Mozilla (compatible; CensysInspect +) " +26.174.19.135 - - [01/Apr/2023:14:28:29 +0200] "GET /favicon.ico HTTP/1.1" 404 5793 "-" "Mozilla (compatible; CensysInspect +) " +131.226.91.104 - - [01/Apr/2023:15:00:58 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:00:58 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:00:58 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:00:58 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:00:58 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:00:59 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:01:32 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:33 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:39 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:41 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:41 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:42 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:47 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:47 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:48 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:54 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:51 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78477 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11500 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11498 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +75.66.233.121 - - [01/Apr/2023:15:32:30 +0200] "GET /robots.txt HTTP/1.1" 200 5546 "-" "Mozilla (compatible; AhrefsBot +) " +213.158.166.229 - - [01/Apr/2023:15:33:15 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (compatible; CensysInspect +) " +213.158.166.229 - - [01/Apr/2023:15:33:15 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15066 "-" "Mozilla (compatible; CensysInspect +) " +213.158.166.229 - - [01/Apr/2023:15:33:16 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +213.158.166.229 - - [01/Apr/2023:15:33:16 +0200] "GET /favicon.ico HTTP/1.1" 404 5793 "-" "Mozilla (compatible; CensysInspect +) " +131.226.91.104 - - [01/Apr/2023:16:00:43 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:00:43 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:00:43 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:00:43 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:00:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:00:44 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:01:15 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:19 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:21 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:23 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:23 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:24 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:25 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:28 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:28 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:29 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:34 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:35 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:36 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:47 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:47 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24451 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48627 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET / HTTP/1.1" 302 5196 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11001 "-" "StatoolInfos Uptime Bot" +218.85.180.254 - - [01/Apr/2023:16:41:37 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10362 "https://145.239.49.5/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +49.151.155.5 - - [01/Apr/2023:16:45:18 +0200] "GET /robots.txt HTTP/1.1" 200 5507 "-" "Mozilla (compatible; Googlebot +) " +131.226.91.104 - - [01/Apr/2023:17:00:53 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:00:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:00:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:00:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:00:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:00:54 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:01:27 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:28 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:31 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:33 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:35 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:35 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:36 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:38 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:41 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:41 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:41 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:47 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:48 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:48 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +121.167.173.172 - - [01/Apr/2023:17:04:40 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10326 "https://audio.libre-service.eu/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +14.96.175.21 - - [01/Apr/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48099 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11394 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48627 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +107.200.222.5 - - [01/Apr/2023:17:22:35 +0200] "GET / HTTP/1.1" 302 5123 "-" "Mozilla (compatible; CensysInspect +) " +107.200.222.5 - - [01/Apr/2023:17:22:36 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15064 "-" "Mozilla (compatible; CensysInspect +) " +107.200.222.5 - - [01/Apr/2023:17:22:36 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22295 "-" "Mozilla (compatible; CensysInspect +) " +107.200.222.5 - - [01/Apr/2023:17:22:37 +0200] "GET /favicon.ico HTTP/1.1" 404 5794 "-" "Mozilla (compatible; CensysInspect +) " +219.177.137.218 - - [01/Apr/2023:17:24:32 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (compatible; CensysInspect +) " +219.177.137.218 - - [01/Apr/2023:17:24:33 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15065 "-" "Mozilla (compatible; CensysInspect +) " +219.177.137.218 - - [01/Apr/2023:17:24:33 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +219.177.137.218 - - [01/Apr/2023:17:24:34 +0200] "GET /favicon.ico HTTP/1.1" 404 5794 "-" "Mozilla (compatible; CensysInspect +) " +101.130.81.168 - - [01/Apr/2023:17:53:41 +0200] "GET /robots.txt HTTP/1.1" 200 5519 "-" "Mozilla (compatible;PetalBot;+) " +25.200.111.74 - - [01/Apr/2023:17:58:33 +0200] "GET /plugins/jQuery-File-Upload/server/php/index.php?file=tf2rghf.jpg HTTP/1.1" 302 677 "-" "ALittle Client" +25.200.111.74 - - [01/Apr/2023:17:59:11 +0200] "GET /plugins/jQuery-File-Upload/server/php/index.php?file=tf2rghf.jpg HTTP/1.1" 404 5877 "-" "ALittle Client" +131.226.91.104 - - [01/Apr/2023:18:00:45 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:00:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:00:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:00:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:00:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:00:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:01:20 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:21 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:23 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:26 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:28 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:28 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:29 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:31 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:34 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:34 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:35 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:41 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:42 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:42 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +209.141.57.46 - - [28/Apr/2023:13:46:34 +0200] "GET /?\"\" HTTP/1.1" 302 5143 "https://www.google.com/\"\"" "Mozilliqa\"\"" +209.141.57.46 - - [28/Apr/2023:13:46:36 +0200] "GET /?\"{${print(9347655345-4954366)}}\" HTTP/1.1" 302 5143 "https://www.google.com/\"{${print(9347655345-4954366)}}\"" "Mozilliqa\"{${print(9347655345-4954366)}}\"" +45.61.187.81 - - [28/Apr/2023:22:13:08 +0200] "GET /?\"\" HTTP/1.1" 302 5470 "https://www.google.com/\"\"" "Mozilliqa\"\"" +45.61.187.81 - - [28/Apr/2023:22:13:17 +0200] "GET /?\"{${print(9347655345-4954366)}}\" HTTP/1.1" 302 5465 "https://www.google.com/\"{${print(9347655345-4954366)}}\"" "Mozilliqa\"{${print(9347655345-4954366)}}\"" diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.2.gz b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.2.gz new file mode 100644 index 0000000..36a1d31 Binary files /dev/null and b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.2.gz differ diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.3.gz b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.3.gz new file mode 100644 index 0000000..427152d Binary files /dev/null and b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.3.gz differ diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.4.gz b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.4.gz new file mode 100644 index 0000000..f5db8d5 Binary files /dev/null and b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.4.gz differ diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.5.gz b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.5.gz new file mode 100644 index 0000000..9d21793 Binary files /dev/null and b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.5.gz differ diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.6.gz b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.6.gz new file mode 100644 index 0000000..14f2343 Binary files /dev/null and b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.6.gz differ diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/notempty b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/notempty new file mode 100644 index 0000000..e77d7e6 --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/notempty @@ -0,0 +1 @@ +10.222.42.55 - - [01/Dec/2021:01:01:03 +0100] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java/11.0.13"