Domain cpgrl.com
France
Groupe LWS SARL
Software information

fastestcache

tcp/443 tcp/80

  • Open service 91.234.194.177:443 · cpgrl.com

    2026-01-09 17:42

    HTTP/1.1 200 OK
    Date: Fri, 09 Jan 2026 17:42:30 GMT
    Content-Type: text/html; charset=UTF-8
    Content-Length: 72394
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 273dcbd561cb657a689b2aa2039a99d8
    Link: <https://cpgrl.com/wp-json/>; rel="https://api.w.org/", <https://cpgrl.com/wp-json/wp/v2/pages/485>; rel="alternate"; type="application/json", <https://cpgrl.com/>; rel=shortlink
    X-TEC-API-VERSION: v1
    X-TEC-API-ROOT: https://cpgrl.com/wp-json/tribe/events/v1/
    X-TEC-API-ORIGIN: https://cpgrl.com
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 2
    Accept-Ranges: bytes
    Alt-Svc: h3=":443";ma=86400
    X-Request-Id: 273dcbd561cb657a689b2aa2039a99d8
    Edge-Cache-Engine-Hit: HIT
    
    Page title: CPGRL – La Coordination des Promoteurs de Groupes de la Région des Lagunes
    
    <!DOCTYPE html>
    <html lang="fr-FR">
    
    <head>
    	<!-- Meta UTF8 charset -->
    	<meta charset="UTF-8">
    	<meta name="viewport" content="width=device-width, initial-scale=1">
    	<title>CPGRL &#8211; La Coordination des Promoteurs de Groupes de la Région des Lagunes</title>
    <meta name='robots' content='max-image-preview:large' />
    <link rel='dns-prefetch' href='//fonts.googleapis.com' />
    <link rel="alternate" type="application/rss+xml" title="CPGRL &raquo; Flux" href="https://cpgrl.com/feed/" />
    <link rel="alternate" type="application/rss+xml" title="CPGRL &raquo; Flux des commentaires" href="https://cpgrl.com/comments/feed/" />
    <link rel="alternate" type="text/calendar" title="CPGRL &raquo; Flux iCal" href="https://cpgrl.com/events/?ical=1" />
    <script type="text/javascript">
    /* <![CDATA[ */
    window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/cpgrl.com\/wp-includes\/js\/wp-emoji.js?ver=6.5.7","twemoji":"https:\/\/cpgrl.com\/wp-includes\/js\/twemoji.js?ver=6.5.7"}};
    /**
     * @output wp-includes/js/wp-emoji-loader.js
     */
    
    /**
     * Emoji Settings as exported in PHP via _print_emoji_detection_script().
     * @typedef WPEmojiSettings
     * @type {object}
     * @property {?object} source
     * @property {?string} source.concatemoji
     * @property {?string} source.twemoji
     * @property {?string} source.wpemoji
     * @property {?boolean} DOMReady
     * @property {?Function} readyCallback
     */
    
    /**
     * Support tests.
     * @typedef SupportTests
     * @type {object}
     * @property {?boolean} flag
     * @property {?boolean} emoji
     */
    
    /**
     * IIFE to detect emoji support and load Twemoji if needed.
     *
     * @param {Window} window
     * @param {Document} document
     * @param {WPEmojiSettings} settings
     */
    ( function wpEmojiLoader( window, document, settings ) {
    	if ( typeof Promise === 'undefined' ) {
    		return;
    	}
    
    	var sessionStorageKey = 'wpEmojiSettingsSupports';
    	var tests = [ 'flag', 'emoji' ];
    
    	/**
    	 * Checks whether the browser supports offloading to a Worker.
    	 *
    	 * @since 6.3.0
    	 *
    	 * @private
    	 *
    	 * @returns {boolean}
    	 */
    	function supportsWorkerOffloading() {
    		return (
    			typeof Worker !== 'undefined' &&
    			typeof OffscreenCanvas !== 'undefined' &&
    			typeof URL !== 'undefined' &&
    			URL.createObjectURL &&
    			typeof Blob !== 'undefined'
    		);
    	}
    
    	/**
    	 * @typedef SessionSupportTests
    	 * @type {object}
    	 * @property {number} timestamp
    	 * @property {SupportTests} supportTests
    	 */
    
    	/**
    	 * Get support tests from session.
    	 *
    	 * @since 6.3.0
    	 *
    	 * @private
    	 *
    	 * @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
    	 */
    	function getSessionSupportTests() {
    		try {
    			/** @type {SessionSupportTests} */
    			var item = JSON.parse(
    				sessionStorage.getItem( sessionStorageKey )
    			);
    			if (
    				typeof item === 'object' &&
    				typeof item.timestamp === 'number' &&
    				new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
    				typeof item.supportTests === 'object'
    			) {
    				return item.supportTests;
    			}
    		} catch ( e ) {}
    		return null;
    	}
    
    	/**
    	 * Persist the supports in session storage.
    	 *
    	 * @since 6.3.0
    	 *
    	 * @private
    	 *
    	 * @param {SupportTests} supportTests Support tests.
    	 */
    	function setSessionSupportTests( supportTests ) {
    		try {
    			/** @type {SessionSupportTests} */
    			var item = {
    				supportTests: supportTests,
    				timestamp: new Date().valueOf()
    			};
    
    			sessionStorage.setItem(
    				sessionStorageKey,
    				JSON.stringify( item )
    			);
    		} catch ( e ) {}
    	}
    
    	/**
    	 * Checks if two sets of Emoji characters render the same visually.
    	 *
    	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
    	 * scope. Everything must be passed by parameters.
    	 *
    	 * @since 4.9.0
    	 *
    	 * @private
    	 *
    	 * @param {CanvasRenderingContext2D} context 2D Context.
    	 * @param {string} set1 Set of Emoji to test.
    	 * @param {string} set2 Set of Emoji to test.
    	 *
    	 * @return {boolean} True if 
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 91.234.194.177:443 · cpgrl.com

    2026-01-02 22:55

    HTTP/1.1 200 OK
    Date: Fri, 02 Jan 2026 22:55:17 GMT
    Content-Type: text/html; charset=UTF-8
    Content-Length: 72394
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 6e0b2f04a7592ae33ece5a6b844a1794
    Link: <https://cpgrl.com/wp-json/>; rel="https://api.w.org/", <https://cpgrl.com/wp-json/wp/v2/pages/485>; rel="alternate"; type="application/json", <https://cpgrl.com/>; rel=shortlink
    X-TEC-API-VERSION: v1
    X-TEC-API-ROOT: https://cpgrl.com/wp-json/tribe/events/v1/
    X-TEC-API-ORIGIN: https://cpgrl.com
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    Alt-Svc: h3=":443";ma=86400
    X-Request-Id: 6e0b2f04a7592ae33ece5a6b844a1794
    Edge-Cache-Engine-Hit: HIT
    
    Page title: CPGRL – La Coordination des Promoteurs de Groupes de la Région des Lagunes
    
    <!DOCTYPE html>
    <html lang="fr-FR">
    
    <head>
    	<!-- Meta UTF8 charset -->
    	<meta charset="UTF-8">
    	<meta name="viewport" content="width=device-width, initial-scale=1">
    	<title>CPGRL &#8211; La Coordination des Promoteurs de Groupes de la Région des Lagunes</title>
    <meta name='robots' content='max-image-preview:large' />
    <link rel='dns-prefetch' href='//fonts.googleapis.com' />
    <link rel="alternate" type="application/rss+xml" title="CPGRL &raquo; Flux" href="https://cpgrl.com/feed/" />
    <link rel="alternate" type="application/rss+xml" title="CPGRL &raquo; Flux des commentaires" href="https://cpgrl.com/comments/feed/" />
    <link rel="alternate" type="text/calendar" title="CPGRL &raquo; Flux iCal" href="https://cpgrl.com/events/?ical=1" />
    <script type="text/javascript">
    /* <![CDATA[ */
    window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/cpgrl.com\/wp-includes\/js\/wp-emoji.js?ver=6.5.7","twemoji":"https:\/\/cpgrl.com\/wp-includes\/js\/twemoji.js?ver=6.5.7"}};
    /**
     * @output wp-includes/js/wp-emoji-loader.js
     */
    
    /**
     * Emoji Settings as exported in PHP via _print_emoji_detection_script().
     * @typedef WPEmojiSettings
     * @type {object}
     * @property {?object} source
     * @property {?string} source.concatemoji
     * @property {?string} source.twemoji
     * @property {?string} source.wpemoji
     * @property {?boolean} DOMReady
     * @property {?Function} readyCallback
     */
    
    /**
     * Support tests.
     * @typedef SupportTests
     * @type {object}
     * @property {?boolean} flag
     * @property {?boolean} emoji
     */
    
    /**
     * IIFE to detect emoji support and load Twemoji if needed.
     *
     * @param {Window} window
     * @param {Document} document
     * @param {WPEmojiSettings} settings
     */
    ( function wpEmojiLoader( window, document, settings ) {
    	if ( typeof Promise === 'undefined' ) {
    		return;
    	}
    
    	var sessionStorageKey = 'wpEmojiSettingsSupports';
    	var tests = [ 'flag', 'emoji' ];
    
    	/**
    	 * Checks whether the browser supports offloading to a Worker.
    	 *
    	 * @since 6.3.0
    	 *
    	 * @private
    	 *
    	 * @returns {boolean}
    	 */
    	function supportsWorkerOffloading() {
    		return (
    			typeof Worker !== 'undefined' &&
    			typeof OffscreenCanvas !== 'undefined' &&
    			typeof URL !== 'undefined' &&
    			URL.createObjectURL &&
    			typeof Blob !== 'undefined'
    		);
    	}
    
    	/**
    	 * @typedef SessionSupportTests
    	 * @type {object}
    	 * @property {number} timestamp
    	 * @property {SupportTests} supportTests
    	 */
    
    	/**
    	 * Get support tests from session.
    	 *
    	 * @since 6.3.0
    	 *
    	 * @private
    	 *
    	 * @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
    	 */
    	function getSessionSupportTests() {
    		try {
    			/** @type {SessionSupportTests} */
    			var item = JSON.parse(
    				sessionStorage.getItem( sessionStorageKey )
    			);
    			if (
    				typeof item === 'object' &&
    				typeof item.timestamp === 'number' &&
    				new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
    				typeof item.supportTests === 'object'
    			) {
    				return item.supportTests;
    			}
    		} catch ( e ) {}
    		return null;
    	}
    
    	/**
    	 * Persist the supports in session storage.
    	 *
    	 * @since 6.3.0
    	 *
    	 * @private
    	 *
    	 * @param {SupportTests} supportTests Support tests.
    	 */
    	function setSessionSupportTests( supportTests ) {
    		try {
    			/** @type {SessionSupportTests} */
    			var item = {
    				supportTests: supportTests,
    				timestamp: new Date().valueOf()
    			};
    
    			sessionStorage.setItem(
    				sessionStorageKey,
    				JSON.stringify( item )
    			);
    		} catch ( e ) {}
    	}
    
    	/**
    	 * Checks if two sets of Emoji characters render the same visually.
    	 *
    	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
    	 * scope. Everything must be passed by parameters.
    	 *
    	 * @since 4.9.0
    	 *
    	 * @private
    	 *
    	 * @param {CanvasRenderingContext2D} context 2D Context.
    	 * @param {string} set1 Set of Emoji to test.
    	 * @param {string} set2 Set of Emoji to test.
    	 *
    	 * @return {boolean} True if 
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 91.234.194.177:443 · cpgrl.com

    2025-12-22 18:49

    HTTP/1.1 200 OK
    Date: Mon, 22 Dec 2025 18:50:00 GMT
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: ffafa2a8f846ed599fe8c58769a447ec
    Link: <https://cpgrl.com/wp-json/>; rel="https://api.w.org/", <https://cpgrl.com/wp-json/wp/v2/pages/485>; rel="alternate"; type="application/json", <https://cpgrl.com/>; rel=shortlink
    X-TEC-API-VERSION: v1
    X-TEC-API-ROOT: https://cpgrl.com/wp-json/tribe/events/v1/
    X-TEC-API-ORIGIN: https://cpgrl.com
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    Alt-Svc: h3=":443";ma=86400
    X-Request-Id: ffafa2a8f846ed599fe8c58769a447ec
    Edge-Cache-Engine-Hit: HIT
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 91.234.194.177:80 · cpgrl.com

    2025-12-20 04:35

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 20 Dec 2025 04:35:47 GMT
    Content-Type: text/html; charset=UTF-8
    Content-Length: 0
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: d875393226e14c86dd69df6fc3f10997
    X-Redirect-By: WordPress
    Location: https://cpgrl.com/
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: d875393226e14c86dd69df6fc3f10997
    Edge-Cache-Engine-Hit: HIT
    
    Found 2025-12-20 by HttpPlugin
    Create report
*.cpgrl.comad-prtds.creativlions.comcpgrl.comcpgrl.creativlions.comwww.ad-prtds.creativlions.comwww.cpgrl.creativlions.com
CN:
www.cpgrl.creativlions.com
Key:
RSA-2048
Issuer:
R13
Not before:
2025-11-29 19:54
Not after:
2026-02-27 19:54
Domain summary
IP summary