{"id":23524,"date":"2025-08-11T12:54:18","date_gmt":"2025-08-11T10:54:18","guid":{"rendered":"https:\/\/defenderbox.de\/?page_id=23524"},"modified":"2026-04-07T12:56:31","modified_gmt":"2026-04-07T10:56:31","slug":"request","status":"publish","type":"page","link":"https:\/\/defenderbox.de\/en\/anfrage\/","title":{"rendered":"Request"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"23524\" class=\"elementor elementor-23524\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c3b3c8a e-flex e-con-boxed e-con e-parent\" data-id=\"c3b3c8a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-5c973b7 e-con-full e-flex e-con e-child\" data-id=\"5c973b7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6f01c13 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"6f01c13\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Mit einem Klick n\u00e4her an sorgenfreier IT-Sicherheit.<\/h1>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f6d29ac e-con-full e-flex e-con e-child\" data-id=\"f6d29ac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7d82a77 elementor-widget elementor-widget-html\" data-id=\"7d82a77\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div id=\"auswahlBox\" style=\"display:none;background:#1c293a;border:1px solid #2f3f55;border-radius:12px;padding:16px;color:#fff;margin-bottom:20px;\">\n  <strong style=\"font-size:18px;display:block;margin-bottom:8px;\">Deine Auswahl<\/strong>\n  <div style=\"display:flex;gap:12px;flex-wrap:wrap;\">\n    <div>Ger\u00e4te: <strong id=\"sDevices\">\u2013<\/strong><\/div>\n    <div>Abrechnung: <strong id=\"sBilling\">\u2013<\/strong><\/div>\n    <div>Preis: <strong id=\"sPriceMain\">\u2013<\/strong><\/div>\n    <div>Einzelpreis: <strong id=\"sPriceOnce\">\u2013<\/strong><\/div>\n  <\/div>\n  <div id=\"sHint\" style=\"color:#9ab;font-size:14px;margin-top:6px;\"><\/div>\n<\/div>\n\n<script>\n(() => {\n  const priceTiers = [\n    { max: 50,  monthly: 248,  yearly: 2475,  once: 825  },\n    { max: 100, monthly: 495,  yearly: 4950,  once: 1650 },\n    { max: 200, monthly: 990,  yearly: 9900,  once: 3300 },\n    { max: 300, monthly: 1411, yearly: 14108, once: 4703 },\n    { max: 400, monthly: 1881, yearly: 18810, once: 6270 },\n    { max: 500, monthly: 2228, yearly: 22275, once: 7425 },\n  ];\n  const fmt = n => n.toLocaleString('de-DE') + ' EUR';\n  const tierOf = v => priceTiers.find(t => v <= t.max);\n\n  function loadSelection(){\n    \/\/ 1) sessionStorage\n    try {\n      const raw = sessionStorage.getItem('auswahl');\n      if (raw) return JSON.parse(raw);\n    } catch(e){}\n    \/\/ 2) URL-Fallback\n    const p = new URLSearchParams(location.search);\n    const d = parseInt((p.get('d')||'').replace(\/\\D+\/g,''),10);\n    const bm = (p.get('bm') === 'yearly') ? 'yearly' : 'monthly';\n    if (Number.isFinite(d) && d>0) {\n      const t = tierOf(d);\n      if (t) return { devices:d, billingMode:bm, priceMonthly:t.monthly, priceYearly:t.yearly, priceOnce:t.once };\n    }\n    return null;\n  }\n\n  function setHiddenWhenReady(id, val){\n    const trySet = () => {\n      const byId   = document.getElementById('form-field-' + id);\n      const byName = document.querySelector('[name=\"form_fields[' + id + ']\"]');\n      const el = byId || byName;\n      if (el) { el.value = val; return true; }\n      return false;\n    };\n    if (trySet()) return;\n    \/\/ Falls Elementor das Formular sp\u00e4ter nachl\u00e4dt:\n    const mo = new MutationObserver(() => { if (trySet()) mo.disconnect(); });\n    mo.observe(document.documentElement, { childList:true, subtree:true });\n  }\n\n  function showSummary(data){\n    if (!data) return;\n    document.getElementById('sDevices').textContent = data.devices;\n    document.getElementById('sBilling').textContent = (data.billingMode==='yearly'?'J\u00e4hrlich':'Monatlich');\n    document.getElementById('sPriceMain').textContent =\n      data.billingMode==='yearly' ? fmt(data.priceYearly) : fmt(data.priceMonthly);\n    document.getElementById('sPriceOnce').textContent = fmt(data.priceOnce);\n\n    const fullYear = data.priceMonthly*12;\n    const save = Math.max(0, fullYear - data.priceYearly);\n    const pct  = fullYear ? Math.round((save\/fullYear)*1000)\/10 : 0;\n    document.getElementById('sHint').innerHTML =\n      `Bei j\u00e4hrlicher Zahlung sparst du <strong>${fmt(save)}<\/strong> (${pct.toString().replace('.',',')}%).`;\n\n    document.getElementById('auswahlBox').style.display = 'block';\n\n    setHiddenWhenReady('devices',       data.devices);\n    setHiddenWhenReady('billing_mode',  data.billingMode);\n    setHiddenWhenReady('price_monthly', data.priceMonthly);\n    setHiddenWhenReady('price_yearly',  data.priceYearly);\n    setHiddenWhenReady('price_once',    data.priceOnce);\n  }\n\n  document.addEventListener('DOMContentLoaded', () => showSummary(loadSelection()));\n})();\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-959d608 elementor-button-align-start elementor-widget elementor-widget-form\" data-id=\"959d608\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;N\\u00e4chster&quot;,&quot;step_previous_label&quot;:&quot;Voriger&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" name=\"Neues Formular\" aria-label=\"Neues Formular\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"23524\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"959d608\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"Anfrage - DEFENDERBOX\" \/>\n\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"queried_id\" value=\"23524\"\/>\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-above\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-100 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-name\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tUnternehmen\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[name]\" id=\"form-field-name\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Unternehmen\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_e79381c elementor-col-50 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_e79381c\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tVorname\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_e79381c]\" id=\"form-field-field_e79381c\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Vorname\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_5a35908 elementor-col-50 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_5a35908\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tNachname\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_5a35908]\" id=\"form-field-field_5a35908\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Nachname\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-100 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-email\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tE-Mail\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"email\" name=\"form_fields[email]\" id=\"form-field-email\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"E-Mail\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-message\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tNachricht\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t<textarea class=\"elementor-field-textual elementor-field  elementor-size-sm\" name=\"form_fields[message]\" id=\"form-field-message\" rows=\"4\" placeholder=\"Nachricht\"><\/textarea>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_95737eb elementor-col-70 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_95737eb\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tStra\u00dfe\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_95737eb]\" id=\"form-field-field_95737eb\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Stra\u00dfe\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_a170f46 elementor-col-30 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_a170f46\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tHausnummer\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_a170f46]\" id=\"form-field-field_a170f46\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Hausnummer\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_62cb4e1 elementor-col-50 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_62cb4e1\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tOrt\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_62cb4e1]\" id=\"form-field-field_62cb4e1\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Ort\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_fe166d8 elementor-col-50 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_fe166d8\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tPLZ\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_fe166d8]\" id=\"form-field-field_fe166d8\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"PLZ\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-hidden elementor-field-group elementor-column elementor-field-group-devices elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"hidden\" name=\"form_fields[devices]\" id=\"form-field-devices\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-hidden elementor-field-group elementor-column elementor-field-group-billing_mode elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"hidden\" name=\"form_fields[billing_mode]\" id=\"form-field-billing_mode\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-hidden elementor-field-group elementor-column elementor-field-group-price_monthly elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"hidden\" name=\"form_fields[price_monthly]\" id=\"form-field-price_monthly\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-hidden elementor-field-group elementor-column elementor-field-group-price_yearly elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"hidden\" name=\"form_fields[price_yearly]\" id=\"form-field-price_yearly\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-hidden elementor-field-group elementor-column elementor-field-group-price_once elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"hidden\" name=\"form_fields[price_once]\" id=\"form-field-price_once\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-acceptance elementor-field-group elementor-column elementor-field-group-field_1a26b9b elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_1a26b9b\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\t<b> Informationen zu Veranstaltungen und Cybersecurity <\/b>\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-subgroup\">\n\t\t\t<span class=\"elementor-field-option\">\n\t\t\t\t<input type=\"checkbox\" name=\"form_fields[field_1a26b9b]\" id=\"form-field-field_1a26b9b\" class=\"elementor-field elementor-size-sm  elementor-acceptance-field\">\n\t\t\t\t<label for=\"form-field-field_1a26b9b\">Ich m\u00f6chte hilfreiche Tipps, Informationen und exklusive Angebote per E-Mail erhalten.<\/label>\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-html elementor-field-group elementor-column elementor-field-group-field_16a51df elementor-col-100\">\n\t\t\t\t\t<p style=\"color:#fff; margin:0;\">\n  Die DEFENDERBOX wird Ihnen in den n\u00e4chsten Tagen per Post zugeschickt. \n  Die weitere Vorgehensweise kl\u00e4ren wir pers\u00f6nlich. Eine genaue Beschreibung, wie die Box angeschlossen wird, \n  finden Sie im Paket.\n<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-sm\" type=\"submit\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Jetzt bestellen<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-936e6dd e-con-full remove e-flex e-con e-parent\" data-id=\"936e6dd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7d43f45 e-con-full elementor-hidden-mobile e-flex e-con e-child\" data-id=\"7d43f45\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-53f0092 e-con-full e-flex e-con e-child\" data-id=\"53f0092\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c3467e7 elementor-widget elementor-widget-counter\" data-id=\"c3467e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\">+<\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"100000\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"> Sicherheitsscans<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2f3f337 elementor-widget elementor-widget-text-editor\" data-id=\"2f3f337\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>machen die DEFENDERBOX vertrauensw\u00fcrdig.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8ccc842 elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"8ccc842\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/defenderbox.de\/testinstallation\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-calendar-check\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">JETZT TESTEN<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Mit einem Klick n\u00e4her an sorgenfreier IT-Sicherheit. Deine Auswahl Ger\u00e4te: \u2013 Abrechnung: \u2013 Preis: \u2013 Einzelpreis: \u2013 + 0 Sicherheitsscans machen die DEFENDERBOX vertrauensw\u00fcrdig. JETZT TESTEN<\/p>","protected":false},"author":11,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_canvas","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-23524","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Anfrage - DEFENDERBOX<\/title>\n<meta name=\"description\" content=\"Kontaktieren Sie das DEFENDERBOX-Team: Finden Sie das passende Angebot f\u00fcr Ihren Schutz gegen Cyberangriffe.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/defenderbox.de\/en\/request\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Anfrage - DEFENDERBOX\" \/>\n<meta property=\"og:description\" content=\"Kontaktieren Sie das DEFENDERBOX-Team: Finden Sie das passende Angebot f\u00fcr Ihren Schutz gegen Cyberangriffe.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/defenderbox.de\/en\/request\/\" \/>\n<meta property=\"og:site_name\" content=\"DEFENDERBOX\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/de.linkedin.com\/company\/defenderbox\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-07T10:56:31+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/defenderbox.de\\\/anfrage\\\/\",\"url\":\"https:\\\/\\\/defenderbox.de\\\/anfrage\\\/\",\"name\":\"Anfrage - DEFENDERBOX\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/defenderbox.de\\\/#website\"},\"datePublished\":\"2025-08-11T10:54:18+00:00\",\"dateModified\":\"2026-04-07T10:56:31+00:00\",\"description\":\"Kontaktieren Sie das DEFENDERBOX-Team: Finden Sie das passende Angebot f\u00fcr Ihren Schutz gegen Cyberangriffe.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/defenderbox.de\\\/anfrage\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/defenderbox.de\\\/anfrage\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/defenderbox.de\\\/anfrage\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/defenderbox.de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Anfrage\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/defenderbox.de\\\/#website\",\"url\":\"https:\\\/\\\/defenderbox.de\\\/\",\"name\":\"DEFENDERBOX\",\"description\":\"Cybersecurity at its best.\",\"publisher\":{\"@id\":\"https:\\\/\\\/defenderbox.de\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/defenderbox.de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/defenderbox.de\\\/#organization\",\"name\":\"DEFENDERBOX\",\"url\":\"https:\\\/\\\/defenderbox.de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/defenderbox.de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/defenderbox.de\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/cropped-Logo_Claim-400_116.png\",\"contentUrl\":\"https:\\\/\\\/defenderbox.de\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/cropped-Logo_Claim-400_116.png\",\"width\":400,\"height\":110,\"caption\":\"DEFENDERBOX\"},\"image\":{\"@id\":\"https:\\\/\\\/defenderbox.de\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/de.linkedin.com\\\/company\\\/defenderbox\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Inquiry - DEFENDERBOX","description":"Contact the DEFENDERBOX team: Find the right offer for your cyber attack protection.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/defenderbox.de\/en\/request\/","og_locale":"en_US","og_type":"article","og_title":"Anfrage - DEFENDERBOX","og_description":"Kontaktieren Sie das DEFENDERBOX-Team: Finden Sie das passende Angebot f\u00fcr Ihren Schutz gegen Cyberangriffe.","og_url":"https:\/\/defenderbox.de\/en\/request\/","og_site_name":"DEFENDERBOX","article_publisher":"https:\/\/de.linkedin.com\/company\/defenderbox","article_modified_time":"2026-04-07T10:56:31+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/defenderbox.de\/anfrage\/","url":"https:\/\/defenderbox.de\/anfrage\/","name":"Inquiry - DEFENDERBOX","isPartOf":{"@id":"https:\/\/defenderbox.de\/#website"},"datePublished":"2025-08-11T10:54:18+00:00","dateModified":"2026-04-07T10:56:31+00:00","description":"Contact the DEFENDERBOX team: Find the right offer for your cyber attack protection.","breadcrumb":{"@id":"https:\/\/defenderbox.de\/anfrage\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/defenderbox.de\/anfrage\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/defenderbox.de\/anfrage\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/defenderbox.de\/"},{"@type":"ListItem","position":2,"name":"Anfrage"}]},{"@type":"WebSite","@id":"https:\/\/defenderbox.de\/#website","url":"https:\/\/defenderbox.de\/","name":"DEFENDERBOX","description":"Cybersecurity at its best.","publisher":{"@id":"https:\/\/defenderbox.de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/defenderbox.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/defenderbox.de\/#organization","name":"DEFENDERBOX","url":"https:\/\/defenderbox.de\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/defenderbox.de\/#\/schema\/logo\/image\/","url":"https:\/\/defenderbox.de\/wp-content\/uploads\/2024\/08\/cropped-Logo_Claim-400_116.png","contentUrl":"https:\/\/defenderbox.de\/wp-content\/uploads\/2024\/08\/cropped-Logo_Claim-400_116.png","width":400,"height":110,"caption":"DEFENDERBOX"},"image":{"@id":"https:\/\/defenderbox.de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/de.linkedin.com\/company\/defenderbox"]}]}},"_links":{"self":[{"href":"https:\/\/defenderbox.de\/en\/wp-json\/wp\/v2\/pages\/23524","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/defenderbox.de\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/defenderbox.de\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/defenderbox.de\/en\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/defenderbox.de\/en\/wp-json\/wp\/v2\/comments?post=23524"}],"version-history":[{"count":0,"href":"https:\/\/defenderbox.de\/en\/wp-json\/wp\/v2\/pages\/23524\/revisions"}],"wp:attachment":[{"href":"https:\/\/defenderbox.de\/en\/wp-json\/wp\/v2\/media?parent=23524"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}