Machine Readiness
Stored receipt and evidence
27
90
0
0
0
Samples
No stored offer samples.
Samples
No stored action samples.
Samples
No stored product samples.
Document
# The use of robots or other automated means to access this site # without the express permission is strictly prohibited. # Contact us User-agent: * Disallow: /*&p=* Disallow: /*?p=* Disallow: /p/delete Disallow: /p/manage Disallow: /p/rurl Disallow: /api/* Disallow: /serviceworker.js* Disallow: /*/wp-* Disallow: /wp-* ### Robots not useful User-agent: 360Spider Disallow: / User-agent: Amazonbot Disallow: / User-agent: AhrefsBot Disallow: / User-agent: anthropic-ai Allow: /$ Allow: /help Disallow: / User-agent: Applebot Disallow: / User-agent: AwarioBot Disallow: / User-agent: AwarioRssBot Disallow: / User-agent: AwarioSmartBot Disallow: / User-agent: Baiduspider Disallow: / # https://babbar.tech/crawler User-agent: barkrowler Disallow: / # Bytedance User-agent: Bytespider Disallow: / User-agent: CCBot Disallow: / User-agent: Claude-Web Allow: /$ Allow: /help Disallow: / User-agent: ClaudeBot Allow: /$ Allow: /help Disallow: / User-agent: coccocbot-image Disallow: / User-agent: coccocbot-web Disallow: / User-agent: dotbot Disallow: / User-agent: GPTBot Allow: /$ Allow: /help Disallow: / User-agent: IbouBot Disallow: / User-agent: IonCrawl Disallow: / User-Agent: ImagesiftBot Disallow: / # Facebook https://developers.facebook.com/docs/sharing/webmasters/web-crawlers User-agent: meta-externalagent Allow: /$ Allow: /help Disallow: / User-agent: meta-webindexer Allow: /$ Allow: /help Disallow: / User-agent: MJ12bot Disallow: / User-agent: OAI-SearchBot Disallow: / User-agent: Omgili Disallow: / User-agent: Omgilibot Disallow: / User-Agent: panscient.com Disallow: / User-agent: PetalBot Disallow: / User-agent: SeekportBot Disallow: / User-agent: semrushbot Disallow: / User-agent: Sogou Disallow: / User-agent: Sogou inst spider Disallow: / User-agent: Sogou web spider Disallow: / User-agent: VelenPublicWebCrawler Disallow: / User-Agent: WellKnownBot Disallow: / User-agent: Yandex Disallow: / User-agent: Yisouspider Disallow: / User-agent: Zoominfobot Disallow: /
Document
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Vérification de sécurité - Page CAPTCHA par CrowdSec">
<title>Vérification de Sécurité</title>
<script src="https://js.hcaptcha.com/1/api.js" async defer></script>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
header {
background-color: #2c3e50;
padding: 10px 20px;
text-align: center;
}
#header-title {
color: white;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
}
h1 {
color: #2c3e50;
}
.captcha {
min-height: 100px;
text-align: center;
margin-top: 40px;
margin-bottom: 40px;
}
#captcha-form {
display: inline-block;
}
.lang-switch {
margin-top: 20px;
}
select {
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #f5f5f5;
cursor: pointer;
}
</style>
</head>
<body>
<header>
<h1 id="header-title">Vérification de Sécurité</h1>
</header>
<div class="container">
<h1 id="main-title">Veuillez confirmer que vous êtes humain</h1>
<p id="instructions">Pour continuer à naviguer sur ce site, veuillez résoudre le CAPTCHA ci-dessous.</p>
<div class="captcha">
<form action="" method="POST" id="captcha-form">
<div id="captcha" class="h-captcha" data-sitekey="5e72e584-1a0e-4bb8-9b84-9a6ebe443c5a" data-callback="captchaCallback"></div>
</form>
</div>
<div class="lang-switch">
<label id="language-label" for="language-select">Choisir la langue :</label>
<select id="language-select" onchange="switchLanguage(this.value)">
<option value="fr">Français</option>
<option value="en">English</option>
<option value="es">Español</option>
</select>
</div>
</div>
<script>
const translations = {
fr: {
headerTitle: "Vérification de Sécurité",
mainTitle: "Veuillez confirmer que vous êtes humain",
instructions: "Pour continuer à naviguer sur ce site, veuillez résoudre le CAPTCHA ci-dessous.",
languagelabel: "Choisir la langue :"
},
en: {
headerTitle: "Security Check",
mainTitle: "Please confirm you are human",
instructions: "To continue browsing this site, please solve the CAPTCHA below.",
languagelabel: "Select language :"
},
es: {
headerTitle: "Verificación de Seguridad",
mainTitle: "Por favor, confirme que es humano",
instructions: "Para continuar navegando en este sitio, resuelva el CAPTCHA a continuación.",
languagelabel: "Seleccionar idioma :"
}
};
function switchLanguage(lang) {
document.getElementById("header-title").textContent = translations[lang].headerTitle;
document.getElementById("main-title").textContent = translations[lang].mainTitle;
document.getElementById("instructions").textContent = translations[lang].instructions;
document.getElementById("language-label").textContent = translations[lang].languagelabel;
document.getElementById("language-select").value = lang;
}
// Détecter la langue du navigateur et initialiser
document.addEventListener("DOMContentLoaded", () => {
const browserLang = navigator.language.substring(0, 2); // Obtenir la langue en 2 lettres
const supportedLangs = ['fr', 'en', 'es']; // Langues prises en charge
const defaultLang = 'fr'; // Langue par défaut
const initialLang = supportedLangs.includes(browserLang) ? browserLang : defaultLang;
switchLanguage(initialLang);
});
function captchaCallback() {
setTimeout(() => {
document.querySelector('#captcha-form').submit();
}, 500);
}
</script>
</body>
</html>
Document
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Vérification de sécurité - Page CAPTCHA par CrowdSec">
<title>Vérification de Sécurité</title>
<script src="https://js.hcaptcha.com/1/api.js" async defer></script>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
header {
background-color: #2c3e50;
padding: 10px 20px;
text-align: center;
}
#header-title {
color: white;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
}
h1 {
color: #2c3e50;
}
.captcha {
min-height: 100px;
text-align: center;
margin-top: 40px;
margin-bottom: 40px;
}
#captcha-form {
display: inline-block;
}
.lang-switch {
margin-top: 20px;
}
select {
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #f5f5f5;
cursor: pointer;
}
</style>
</head>
<body>
<header>
<h1 id="header-title">Vérification de Sécurité</h1>
</header>
<div class="container">
<h1 id="main-title">Veuillez confirmer que vous êtes humain</h1>
<p id="instructions">Pour continuer à naviguer sur ce site, veuillez résoudre le CAPTCHA ci-dessous.</p>
<div class="captcha">
<form action="" method="POST" id="captcha-form">
<div id="captcha" class="h-captcha" data-sitekey="5e72e584-1a0e-4bb8-9b84-9a6ebe443c5a" data-callback="captchaCallback"></div>
</form>
</div>
<div class="lang-switch">
<label id="language-label" for="language-select">Choisir la langue :</label>
<select id="language-select" onchange="switchLanguage(this.value)">
<option value="fr">Français</option>
<option value="en">English</option>
<option value="es">Español</option>
</select>
</div>
</div>
<script>
const translations = {
fr: {
headerTitle: "Vérification de Sécurité",
mainTitle: "Veuillez confirmer que vous êtes humain",
instructions: "Pour continuer à naviguer sur ce site, veuillez résoudre le CAPTCHA ci-dessous.",
languagelabel: "Choisir la langue :"
},
en: {
headerTitle: "Security Check",
mainTitle: "Please confirm you are human",
instructions: "To continue browsing this site, please solve the CAPTCHA below.",
languagelabel: "Select language :"
},
es: {
headerTitle: "Verificación de Seguridad",
mainTitle: "Por favor, confirme que es humano",
instructions: "Para continuar navegando en este sitio, resuelva el CAPTCHA a continuación.",
languagelabel: "Seleccionar idioma :"
}
};
function switchLanguage(lang) {
document.getElementById("header-title").textContent = translations[lang].headerTitle;
document.getElementById("main-title").textContent = translations[lang].mainTitle;
document.getElementById("instructions").textContent = translations[lang].instructions;
document.getElementById("language-label").textContent = translations[lang].languagelabel;
document.getElementById("language-select").value = lang;
}
// Détecter la langue du navigateur et initialiser
document.addEventListener("DOMContentLoaded", () => {
const browserLang = navigator.language.substring(0, 2); // Obtenir la langue en 2 lettres
const supportedLangs = ['fr', 'en', 'es']; // Langues prises en charge
const defaultLang = 'fr'; // Langue par défaut
const initialLang = supportedLangs.includes(browserLang) ? browserLang : defaultLang;
switchLanguage(initialLang);
});
function captchaCallback() {
setTimeout(() => {
document.querySelector('#captcha-form').submit();
}, 500);
}
</script>
</body>
</html>