Robots Class

Here is what the action of Robots Class does (or allows you to do) which logs visits in a database :

The results below are in real time. (February 25, 2022, 16:03:04 pm GMT is the start of recordings)

Number of visits per site (from February 25, 2022, 16:03:04 pm GMT)

mysql> SELECT ws,COUNT(dat) AS nbvisit FROM Robots GROUP BY ws;
+-----------------------+---------+
| ws                    | nbvisit |
+-----------------------+---------+
| www.156rdfp.fr        |     126 |
| www.edulinux.fr       |     745 |
| www.hdjpneumotenon.fr |     763 |
| www.qcmclass.fr       |    1577 |
+-----------------------+---------+

Number of visits per day (only the 5 last ones : May 27, 2023, 22:55:29 pm BST May 31, 2023, 22:55:29 pm BST)

mysql> SELECT date(dat) AS date,COUNT(dat) AS nbvisit FROM Robots GROUP BY date(dat) ORDER BY dat DESC LIMIT 0,5;
+------------+---------+
| date       | nbvisit |
+------------+---------+
| 2023-05-31 |      48 |
| 2023-05-30 |      37 |
| 2023-05-29 |      51 |
| 2023-05-28 |      34 |
| 2023-05-27 |      35 |
+------------+---------+

Count disctinct robots (from February 25, 2022, 16:03:04 pm GMT)

NB: almost, because not all of them have the [sub]string "bot" (or "Bot") in the User-agent

mysql> SELECT COUNT(ua) AS nb,ip,ua FROM Robots WHERE ua LIKE '%bot%' GROUP BY ua ORDER BY nb DESC;
+-----+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| nb  | ip              | ua                                                                                                                                                                                    |
+-----+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| 734 | 54.36.148.72    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                                    |
| 650 | 114.119.158.149 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                                    |
| 459 | 52.167.144.133  | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                                     |
| 440 | 66.249.66.6     | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                              |
| 173 | 185.191.171.39  | Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)                                                                                                           |
| 141 | 65.108.128.54   | Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)                                                                                                                         |
|  95 | 5.255.231.187   | Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)                                                                                                                      |
|  76 | 157.90.181.146  | Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)                                                                                                                   |
|  64 | 17.241.75.51    | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)             |
|  59 | 216.244.66.239  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                              |
|  24 | 100.26.127.17   | Mozilla/5.0 (compatible; Neevabot/1.0; +https://neeva.com/neevabot)                                                                                                                   |
|  20 | 114.119.146.45  | Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                 |
|  11 | 34.242.40.232   | webprosbot/2.0 (+mailto:abuse-6337@webpros.com)                                                                                                                                       |
|  10 | 44.200.168.16   | CCBot/2.0 (https://commoncrawl.org/faq/)                                                                                                                                              |
|  10 | 94.130.237.166  | Mozilla/5.0 (compatible; AwarioBot/1.0; +https://awario.com/bots.html)                                                                                                                |
|   5 | 52.70.240.171   | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) |
|   4 | 3.230.148.143   | Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)                                                                                            |
|   4 | 18.203.236.62   | Pandalytics/1.0 (https://domainsbot.com/pandalytics/)                                                                                                                                 |
|   4 | 161.156.29.33   | Mozilla/5.0 (compatible; oBot/2.3.1; http://www.xforce-security.com/crawler/)                                                                                                         |
|   3 | 136.243.228.194 | Mozilla/5.0 (compatible; DataForSeoBot/1.0; +https://dataforseo.com/dataforseo-bot)                                                                                                   |
|   3 | 144.76.67.169   | serpstatbot/2.1 (advanced backlink tracking bot; https://serpstatbot.com/; abuse@serpstatbot.com)                                                                                     |
|   2 | 185.184.157.102 | Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)                                                                                                               |
|   1 | 34.232.23.139   | Mozilla/5.0 (compatible; SurdotlyBot/1.0; +http://sur.ly/bot.html)                                                                                                                    |
|   1 | 83.149.81.165   | companyspotter/1.0.0.0 (robot@companyspotter.com)                                                                                                                                     |
+-----+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
Nb total of records : 3211 (SELECT COUNT(ip) AS nb FROM Robots;)
Nb of records with the string 'bot' in the User-agent : 2993 (SELECT COUNT(ip) AS nb FROM Robots WHERE ua LIKE '%bot%';)
Nb of visits without the string 'bot' in the User-agent : 218 (3211 - 2993)

Robots without "bot" (or "Bot") in the User-agent

mysql> SELECT COUNT(ua) AS nb,ip,ua FROM Robots WHERE ua NOT LIKE '%bot%' GROUP BY ua ORDER BY nb DESC; +----+-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | nb | ip | ua | +----+-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | 39 | 54.221.122.122 | Mozilla/5.0/Firefox/42.0 - nbertaupete95(at)gmail.com | | 33 | 34.253.4.33 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 | | 33 | 173.252.83.23 | facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) | | 23 | 212.227.216.31 | IonCrawl (https://www.ionos.de/terms-gtc/faq-crawler-en/) | | 9 | 217.198.191.210 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36 | | 8 | 217.113.194.192 | Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler) | | 8 | 74.80.208.35 | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36 | | 6 | 130.255.166.122 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0 | | 4 | 35.210.90.252 | Go-http-client/1.1 | | 3 | 185.27.99.130 | Mozilla/5.0 (Linux; Android 9; BDL8051C Build/BDL3552T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.158 Safari/537.36 | | 3 | 130.255.166.82 | Mozilla/5.0 (Linux; Android 8.1.0; jhs561 Build/GIADA.eng.zc.20200922.153858; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/81.0.4044.138 Safari/537.36 | | 3 | 93.158.90.161 | Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5355d Safari/8536.25 | | 3 | 176.74.192.85 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36 | | 3 | 192.71.142.35 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Teams/1.5.00.17656 Chrome/85.0.4183.121 Electron/10.4.7 Safari/537.36 | | 3 | 34.241.191.252 | IDG/EU (http://spaziodati.eu/) | | 2 | 176.74.192.85 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 | | 2 | 35.209.79.175 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.1; bit.ly/3eZNDnO; 60f1fda176) Chrome/84.0.4147.105 Safari/537.36 | | 2 | 35.208.7.7 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.1; bit.ly/3eZNDnO; 993ff58139) Chrome/84.0.4147.105 Safari/537.36 | | 2 | 3.138.37.23 | python-requests/2.27.1 | | 2 | 101.198.0.150 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11 | | 2 | 130.255.166.121 | Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Mobile/15E148 Safari/604.1 | | 2 | 35.212.26.22 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.1; bit.ly/3eZNDnO; 091451a462) Chrome/84.0.4147.105 Safari/537.36 | | 2 | 93.158.91.209 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36 | | 2 | 35.206.215.15 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.1; bit.ly/3eZNDnO; d016133359) Chrome/84.0.4147.105 Safari/537.36 | | 2 | 54.224.65.6 | Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/) | | 2 | 54.234.184.196 | anthropic-ai | | 1 | 176.74.192.85 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0 | | 1 | 34.235.134.94 | python-requests/2.28.2 | | 1 | 4.246.124.237 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.57 | | 1 | 18.216.101.179 | CheckMarkNetwork/1.0 (+http://www.checkmarknetwork.com/spider.html) | | 1 | 93.158.90.151 | Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1 | | 1 | 66.249.93.19 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4590.2 Safari/537.36 Chrome-Lighthouse | | 1 | 85.25.210.81 | Apache-HttpClient/4.5.13 (Java/11.0.11) | | 1 | 52.36.125.174 | LightspeedSystemsCrawler Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US) | | 1 | 66.249.93.15 | Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4590.2 Mobile Safari/537.36 Chrome-Lighthouse | | 1 | 52.23.195.216 | python-requests/2.29.0 | | 1 | 38.242.214.236 | Scrapy/1.7.3 (+https://scrapy.org) | | 1 | 185.27.99.132 | Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36 | | 1 | 52.36.140.180 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36 | | 1 | 78.202.96.80 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36 | | 1 | 93.158.91.214 | Mozilla/5.0 (Linux; Android 7.1.2; 17MB150WB Build/NZH54D; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.121 Safari/537.36 | +----+-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

Visit details (only the 100 last ones on May 31, 2023, 22:55:29 pm BST – i.e. now –)

mysql> SELECT * FROM Robots ORDER BY dat DESC LIMIT 0,100;
+-----------------------+---------------------+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ws                    | dat                 | ip              | ua                                                                                                                                                                        |
+-----------------------+---------------------+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| www.qcmclass.fr       | 2023-05-31 21:24:51 | 54.36.149.82    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-31 20:17:05 | 66.249.66.14    | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.qcmclass.fr       | 2023-05-31 19:49:49 | 66.249.66.74    | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.qcmclass.fr       | 2023-05-31 19:25:47 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.edulinux.fr       | 2023-05-31 19:21:39 | 114.119.133.223 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.hdjpneumotenon.fr | 2023-05-31 19:07:45 | 114.119.157.103 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.qcmclass.fr       | 2023-05-31 19:05:33 | 18.202.20.125   | IDG/EU (http://spaziodati.eu/)                                                                                                                                            |
| www.qcmclass.fr       | 2023-05-31 19:00:49 | 54.36.148.187   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.edulinux.fr       | 2023-05-31 18:47:51 | 51.222.253.13   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-31 18:04:52 | 54.36.148.115   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-31 17:37:37 | 114.119.133.232 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.edulinux.fr       | 2023-05-31 17:02:03 | 66.249.66.6     | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.qcmclass.fr       | 2023-05-31 15:46:18 | 54.36.148.36    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.edulinux.fr       | 2023-05-31 15:30:43 | 54.36.148.224   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-31 15:28:29 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.qcmclass.fr       | 2023-05-31 15:17:38 | 64.124.8.197    | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36                                                                  |
| www.hdjpneumotenon.fr | 2023-05-31 14:52:16 | 114.119.141.35  | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.qcmclass.fr       | 2023-05-31 13:15:52 | 17.241.227.154  | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot) |
| www.qcmclass.fr       | 2023-05-31 13:05:15 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.qcmclass.fr       | 2023-05-31 13:01:34 | 114.119.129.198 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.qcmclass.fr       | 2023-05-31 12:17:29 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.edulinux.fr       | 2023-05-31 11:58:33 | 40.77.167.181   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.qcmclass.fr       | 2023-05-31 11:27:37 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.qcmclass.fr       | 2023-05-31 11:27:36 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.qcmclass.fr       | 2023-05-31 10:44:10 | 207.46.13.229   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.qcmclass.fr       | 2023-05-31 10:40:10 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.hdjpneumotenon.fr | 2023-05-31 10:09:37 | 52.167.144.55   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.qcmclass.fr       | 2023-05-31 09:58:08 | 207.46.13.229   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.qcmclass.fr       | 2023-05-31 09:56:28 | 66.249.77.157   | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.qcmclass.fr       | 2023-05-31 09:07:40 | 52.167.144.55   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.qcmclass.fr       | 2023-05-31 08:18:50 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.hdjpneumotenon.fr | 2023-05-31 07:55:05 | 54.36.148.221   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-31 07:31:54 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.hdjpneumotenon.fr | 2023-05-31 07:22:03 | 157.55.39.223   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.qcmclass.fr       | 2023-05-31 06:11:22 | 195.191.219.130 | Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)                                                                                                             |
| www.qcmclass.fr       | 2023-05-31 05:25:37 | 51.222.253.4    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.edulinux.fr       | 2023-05-31 05:10:23 | 114.119.158.253 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.hdjpneumotenon.fr | 2023-05-31 05:08:53 | 51.222.253.15   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-31 05:08:03 | 51.222.253.5    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-31 04:59:22 | 64.124.8.197    | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36                                                                  |
| www.qcmclass.fr       | 2023-05-31 04:26:57 | 51.222.253.13   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.hdjpneumotenon.fr | 2023-05-31 03:24:52 | 51.222.253.9    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-31 03:05:47 | 64.124.8.147    | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36                                                                  |
| www.edulinux.fr       | 2023-05-31 01:33:20 | 114.119.142.253 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.hdjpneumotenon.fr | 2023-05-31 01:32:57 | 54.36.148.27    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.hdjpneumotenon.fr | 2023-05-31 01:14:08 | 114.119.152.160 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.edulinux.fr       | 2023-05-31 00:58:20 | 149.202.86.190  | Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)                                                                                                             |
| www.qcmclass.fr       | 2023-05-31 00:39:00 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.156rdfp.fr        | 2023-05-30 23:33:24 | 52.167.144.55   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.edulinux.fr       | 2023-05-30 23:15:47 | 5.255.231.46    | Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)                                                                                                          |
| www.edulinux.fr       | 2023-05-30 22:28:04 | 95.108.213.142  | Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)                                                                                                          |
| www.qcmclass.fr       | 2023-05-30 22:18:15 | 114.119.139.107 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.edulinux.fr       | 2023-05-30 21:14:55 | 5.255.231.97    | Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)                                                                                                          |
| www.qcmclass.fr       | 2023-05-30 18:44:57 | 51.222.253.5    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-30 18:16:53 | 66.249.77.129   | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.qcmclass.fr       | 2023-05-30 17:27:34 | 66.249.75.250   | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.hdjpneumotenon.fr | 2023-05-30 17:14:09 | 114.119.134.106 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.qcmclass.fr       | 2023-05-30 17:13:45 | 54.36.149.51    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-30 16:05:21 | 54.221.62.139   | Mozilla/5.0/Firefox/42.0 - nbertaupete95(at)gmail.com                                                                                                                     |
| www.edulinux.fr       | 2023-05-30 15:42:20 | 54.36.149.82    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.edulinux.fr       | 2023-05-30 15:36:45 | 213.180.203.9   | Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)                                                                                                          |
| www.qcmclass.fr       | 2023-05-30 13:24:43 | 114.119.136.132 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.qcmclass.fr       | 2023-05-30 12:57:52 | 66.249.75.242   | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.qcmclass.fr       | 2023-05-30 08:34:16 | 54.36.149.82    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.hdjpneumotenon.fr | 2023-05-30 08:17:25 | 66.249.65.94    | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.qcmclass.fr       | 2023-05-30 08:12:57 | 66.249.65.59    | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.qcmclass.fr       | 2023-05-30 07:23:04 | 54.36.148.248   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-30 06:51:25 | 54.237.206.29   | anthropic-ai                                                                                                                                                              |
| www.edulinux.fr       | 2023-05-30 06:45:36 | 52.167.144.56   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.qcmclass.fr       | 2023-05-30 05:58:58 | 38.242.214.236  | Scrapy/1.7.3 (+https://scrapy.org)                                                                                                                                        |
| www.edulinux.fr       | 2023-05-30 05:53:39 | 66.249.65.195   | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.edulinux.fr       | 2023-05-30 04:53:39 | 66.249.65.222   | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.qcmclass.fr       | 2023-05-30 04:39:37 | 51.222.253.14   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.hdjpneumotenon.fr | 2023-05-30 04:13:34 | 52.167.144.55   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.qcmclass.fr       | 2023-05-30 03:50:22 | 101.198.0.189   | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11                                                    |
| www.qcmclass.fr       | 2023-05-30 03:22:53 | 17.241.227.140  | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot) |
| www.qcmclass.fr       | 2023-05-30 03:01:46 | 101.198.0.150   | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11                                                    |
| www.qcmclass.fr       | 2023-05-30 02:47:22 | 195.191.219.133 | Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)                                                                                                             |
| www.edulinux.fr       | 2023-05-30 01:56:44 | 51.222.253.13   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.edulinux.fr       | 2023-05-30 01:55:38 | 66.249.74.22    | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.qcmclass.fr       | 2023-05-30 01:01:49 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.edulinux.fr       | 2023-05-30 00:55:24 | 82.165.224.81   | IonCrawl (https://www.ionos.de/terms-gtc/faq-crawler-en/)                                                                                                                 |
| www.edulinux.fr       | 2023-05-30 00:30:45 | 114.119.153.158 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.qcmclass.fr       | 2023-05-30 00:16:28 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.qcmclass.fr       | 2023-05-30 00:06:42 | 17.241.227.244  | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot) |
| www.qcmclass.fr       | 2023-05-29 23:29:38 | 216.244.66.246  | Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)                                                                                  |
| www.156rdfp.fr        | 2023-05-29 22:44:37 | 212.227.216.18  | IonCrawl (https://www.ionos.de/terms-gtc/faq-crawler-en/)                                                                                                                 |
| www.qcmclass.fr       | 2023-05-29 22:39:45 | 52.167.144.55   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.qcmclass.fr       | 2023-05-29 21:56:26 | 157.55.39.225   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.edulinux.fr       | 2023-05-29 20:53:28 | 40.77.167.181   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.edulinux.fr       | 2023-05-29 20:48:08 | 114.119.146.244 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.hdjpneumotenon.fr | 2023-05-29 20:37:12 | 114.119.150.114 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.156rdfp.fr        | 2023-05-29 20:31:25 | 157.55.39.225   | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36                         |
| www.156rdfp.fr        | 2023-05-29 20:11:59 | 66.249.65.27    | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)                                                                                                  |
| www.qcmclass.fr       | 2023-05-29 19:06:32 | 114.119.158.28  | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.hdjpneumotenon.fr | 2023-05-29 16:53:10 | 114.119.157.217 | Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)                                                                                        |
| www.hdjpneumotenon.fr | 2023-05-29 16:20:18 | 54.36.148.55    | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-29 15:23:09 | 54.36.148.152   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.qcmclass.fr       | 2023-05-29 15:02:42 | 54.36.148.250   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
| www.edulinux.fr       | 2023-05-29 14:55:27 | 51.222.253.17   | Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)                                                                                                        |
+-----------------------+---------------------+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

Back to the site or PHP Classes

May 31, 2023, 22:55:29 pm BST