http://nilen.pl

Analyzed on March 1, 2026, 4:11 a.m. Click "Rescan Website" to get the latest data

Analysis Successful
Network Information
IP Address: 5.252.229.232
IP WHOIS Information:
  • ASN: 203417
  • ASN Description: LH, PL
  • Country: PL
  • CIDR: 5.252.229.0/24
Domain Information
  • Registrar: cyber_Folks S.A.
  • Created: February 02, 2024
  • Expires: February 02, 2027
  • Last Updated: January 12, 2026
  • Name Servers:
    • ns.lh.pl
    • ns2.lh.pl
    • ns2.lighthosting.net
DNS Records
Learn about DNS Records
A Records (IPv4 Addresses)
Domain IP Address
nilen.pl 5.252.229.232
MX Records (Mail Servers)
Priority Mail Server
10 ALT4.ASPMX.L.GOOGLE.COM.
5 ALT1.ASPMX.L.GOOGLE.COM.
5 ALT2.ASPMX.L.GOOGLE.COM.
10 ALT3.ASPMX.L.GOOGLE.COM.
1 ASPMX.L.GOOGLE.COM.
TXT Records
Domain Text Record
nilen.pl "google-site-verification=AZ3puTcdEnVz_5NyQSM57k6MYlHYhJKVd_0yjjqdF4M"
nilen.pl "google-site-verification=DSWI5UFjEaWcBMOqK-UkvFHvrCbHILsibQW4YpTDFDI"
nilen.pl "v=spf1 include:_spf.google.com ~all"
WWW Subdomain Records
Subdomain Type Value
www.nilen.pl A 5.252.229.232
Services Detected (2 found)
Google Workspace
Google Workspace

Email hosted on Google Workspace

Learn More
Google Search Console
Google Search Console

Google Search Console services detected

Learn More
Blocklisting Status
Learn about Blocklisting Status
Overall Status: CLEAN No blocklisting detected
Services Checked: 2
VirusTotal: CLEAN
Domain is clean according to 0 scanners
No threats detected by any security scanner
Google Safe Browsing: CLEAN
Domain is not blocklisted by Google Safe Browsing
No threats detected
Hosting Information
Provider: Unknown (Apache) (low confidence)
Detection Method: Server Header Pattern
Matched Headers:
  • server: apache
WordPress Security Analysis
FAILED
Learn about WordPress Security Analysis
XMLRPC.php Security Test UNKNOWN

XMLRPC.php returned unexpected status code: 405

HTTP Status: 405

Recommendation: Investigate the response and ensure XMLRPC.php is properly secured.
WP-Login.php Security Test PASSED

WP-Login page is not accessible (HTTP 404)

HTTP Status: 404

Recommendation: WP-Login page is properly protected.
User Enumeration Test FAILED

User enumeration is possible via WordPress REST API

Test Results:

Endpoint: http://nilen.pl/wp-json/wp/v2/users

Status: FAILED

Message: User enumeration possible - 5 users found

HTTP Status: 200

Endpoint: http://nilen.pl/?rest_route=/wp/v2/users

Status: FAILED

Message: User enumeration possible - 5 users found

HTTP Status: 200

Users Found:
ID Name Slug Link
13 Aleksandra Stefańska - Baranek aleksandra-baranek https://nilen.pl/author/aleksandra-baranek/
8 Bartek Famulski bartek https://nilen.pl/author/bartek/
2 Kamil Bielak kamil https://nilen.pl/author/kamil/
3 Katarzyna Bielak marketing https://nilen.pl/author/marketing/
11 Support Adwise support-adwise https://nilen.pl/author/support-adwise/
Recommendation: Require authentication for WordPress REST API or disable user enumeration. Consider using security plugins or server-level restrictions.
Failed Security Tests:
  • User Enumeration
Security Headers Analysis
Need help understanding security headers? View our comprehensive documentation to learn about each header and how to implement them.
Present Security Headers

No security headers detected

Missing Security Headers
Strict-Transport-Security
X-Content-Type-Options
X-Frame-Options
X-XSS-Protection
Referrer-Policy
Content-Security-Policy
Permissions-Policy
Cross-Origin-Embedder-Policy
Cross-Origin-Opener-Policy
Cross-Origin-Resource-Policy
External JavaScripts Detected
Only scripts from different domains are shown
Domain Script URL Type
connect.facebook.net https://connect.facebook.net/en_US/fbevents.js Inline Reference
www.googletagmanager.com https://www.googletagmanager.com/gtm.js Inline Reference
Malware Analysis Details
Suspicious Patterns Detected
Suspicious setTimeout with redirect

Delayed redirect that could be malicious

Severity: MEDIUM

Matches Found: 3 (1 ignored)

Sample Matches:
setTimeout(function() { adjustScroll(window.location.hash); }, 600); } // Override default behavior for all anchor links $('a[href*="#"]').on('click', function(e) { var hash = this.hash; if ($(hash).length) { e.preventDefault(); setTimeout(function() { adjustScroll(hash); }, 100); } }); // SCROLL NAVIGATION // // function navigationResizer() { var viewportWidth = document.documentElement.clientWidth; var dropDown = document.querySelector('nav.elementor-nav-menu--dropdown'); var dropDownNoNav = document.querySelector('.elementor-nav-menu--dropdown'); dropDown.style.maxWidth = viewportWidth - 50 + 'px'; var leftNoNav = dropDownNoNav.offsetLeft; var left = dropDown.offsetLeft; var headerParent = document.querySelector('#header-parent'); var headerChild = document.querySelector('#header-child'); var scrollPosition = window.scrollY; // Ustal minimalną szerokość childa na podstawie szerokości ekranu var minChildWidth; if (viewportWidth > 1440) { minChildWidth = 1440; // Na ekranach 1440px i większych ustaw 1440px //console.log('MinChildWidth' + minChildWidth); //console.log('Viewport: ' + viewportWidth); } else if (viewportWidth > 1025) { minChildWidth = viewportWidth - 100; // Na ekranach 768px-1440px ustaw 100% - 100px //console.log('Viewport - 100: ' + viewportWidth); } else { minChildWidth = viewportWidth - 50; // Na ekranach poniżej 768px ustaw 100% - 50px //console.log('Viewport - 50: ' + viewportWidth); dropDownNoNav.style.left = leftNoNav + 50 + 'px'; } // Faza 1: Zmniejszanie margin-top od 50px do 0px // if (viewportWidth > 900) { var newMarginTop = 50 - (scrollPosition / 5); } else { var newMarginTop = 25 - (scrollPosition / 5); } if (newMarginTop < 0) { newMarginTop = 0; } headerParent.style.marginTop = newMarginTop + 'px'; // Faza 2: Zmiana szerokości dopiero po zmniejszeniu margin-top do 0 if (newMarginTop === 0) { if (scrollPosition > 250) { var newChildWidth = minChildWidth + ((scrollPosition - 250) / 2); //console.log('Scrol:l ' + scrollPosition + ' newChildWidth: ' + newChildWidth); if (newChildWidth > viewportWidth) { newChildWidth = viewportWidth; // Ogranicz szerokość do szerokości ekranu } headerChild.style.maxWidth = newChildWidth + 'px'; } else { //console.log('Scroll < 250 : New Width:' + minChildWidth); headerChild.style.maxWidth = minChildWidth + 'px'; // dropDownNoNav.style.left = leftNoNav + 50 + 'px'; } } else { headerChild.style.maxWidth = minChildWidth + 'px'; dropDownNoNav.style.left = leftNoNav + 50 + 'px'; } } window.addEventListener('resize', function() { navigationResizer(); }); window.addEventListener('orientationchange', function() { navigationResizer(); }); window.addEventListener('scroll', function() { navigationResizer(); }); }); });</script> <a class="skip-link screen-reader-text" href="#content">Przejdź do treści</a> <header data-elementor-type="header" data-elementor-id="33" class="elementor elementor-33 elementor-location
setTimeout(function() { clearInterval(interval); }, 5000); // Zatrzymaj po 5 sekundach }); </script> </div> </div> </div> </div> </div> <footer data-elementor-type="footer" data-elementor-id="442" class="elementor elementor-442 elementor-location
setTimeout(function() { clearInterval(interval); }, 5000); // Zatrzymaj po 5 sekundach }); </script> </div> </div> </div> </div> <div class="elementor-element elementor-element-2ea34eeb e-flex e-con-boxed e-con e-parent" data-id="2ea34eeb" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-80c1b96 e-flex e-con-boxed e-con e-child" data-id="80c1b96" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-7e28485 e-flex e-con-boxed e-con e-child" data-id="7e28485" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-3c753b6 elementor-widget elementor-widget-image" data-id="3c753b6" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://nilen.pl/"> <img width="242" height="75" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20242%2075'%3E%3C/svg%3E" title="LOGO" alt="LOGO" data-lazy-src="https://nilen.pl/wp-content/uploads/2024/06/LOGO-1.svg" /><noscript><img width="242" height="75" src="https://nilen.pl/wp-content/uploads/2024/06/LOGO-1.svg" title="LOGO" alt="LOGO" loading="lazy" /></noscript> </a> </div> </div> </div> </div> <div class="elementor-element elementor-element-9208bb3 e-flex e-con-boxed e-con e-child" data-id="9208bb3" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-f509a99 e-con-full e-flex e-con e-child" data-id="f509a99" data-element_type="container"> <div class="elementor-element elementor-element-c48e3a1 elementor-widget-tablet__width-inherit elementor-widget elementor-widget-heading" data-id="c48e3a1" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h5 class="elementor-heading-title elementor-size-default">Na skróty</h5> </div> </div> <div class="elementor-element elementor-element-f0617ad elementor-widget__width-inherit elementor-widget elementor-widget-html" data-id="f0617ad" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <div class="list"> <ul> <li> <a href="https://nilen.pl/projekty-i-wykonczenia-pod-klucz/">projekt i wykończenie pod klucz</a> </li> <li> <a href="https://nilen.pl/wykonczenia-wnetrz/">wykończenia wnętrz</a> </li> <li> <a href="https://nilen.pl/projektowanie-wnetrz/">projektowanie wnętrz</a> </li> <li> <a href="https://nilen.pl/meble-na-wymiar/">meble na wymiar</a> </li> <li> <a href="https://nilen.pl/remont-mieszkania/">remont mieszkania</a> </li> </ul> <ul> <li> <a href="https://nilen.pl/realizacje/">realizacje</a> </li> <li> <a href="https://nilen.pl/inspiracje/">inspiracje</a> </li> <li> <a href="https://nilen.pl/o-nas/">o nas</a> </li> <li> <a href="https://nilen.pl/blog/">blog</a> </li> </ul> </div> </div> </div> </div> <div class="elementor-element elementor-element-a8ba439 e-con-full e-flex e-con e-child" data-id="a8ba439" data-element_type="container"> <div class="elementor-element elementor-element-25b5d60 e-flex e-con-boxed e-con e-child" data-id="25b5d60" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-3aca49f elementor-widget elementor-widget-heading" data-id="3aca49f" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <p class="elementor-heading-title elementor-size-default">ODWIEDŹ NAS</p> </div> </div> <div class="elementor-element elementor-element-96dc686 elementor-widget elementor-widget-heading" data-id="96dc686" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">ul. Jana Zamoyskiego 63<br> 30-519 Kraków</h3> </div> </div> <div class="elementor-element elementor-element-73d696a elementor-widget elementor-widget-heading" data-id="73d696a" data-element_type="widget" id="map" data-widget_type="heading.default"> <div class="elementor-widget-container"> <p class="elementor-heading-title elementor-size-default"><a href="https://maps.app.goo.gl/vxHno5GzJjPt9UnP8" target="_blank" rel="nofollow">pokaż na mapie</a></p> </div> </div> </div> </div> <div class="elementor-element elementor-element-960863a e-flex e-con-boxed e-con e-child" data-id="960863a" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-e746e3f elementor-widget elementor-widget-heading" data-id="e746e3f" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <p class="elementor-heading-title elementor-size-default">ZADZWOŃ</p> </div> </div> <div class="elementor-element elementor-element-3c60f6a elementor-widget elementor-widget-heading" data-id="3c60f6a" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <p class="elementor-heading-title elementor-size-default"><a rel="nofollow" href="tel:+48 510 360 305">+48 510 360 305</a></p> </div> </div> </div> </div> <div class="elementor-element elementor-element-49af22e e-flex e-con-boxed e-con e-child" data-id="49af22e" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-f2dba95 elementor-widget elementor-widget-heading" data-id="f2dba95" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <p class="elementor-heading-title elementor-size-default">LUB NAPISZ EMAIL</p> </div> </div> <div class="elementor-element elementor-element-1811274 elementor-widget elementor-widget-heading" data-id="1811274" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <p class="elementor-heading-title elementor-size-default"><a rel="nofollow" href="mailto:[email protected]">[email protected]</a></p> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-1ef7652 e-con-full e-flex e-con e-child" data-id="1ef7652" data-element_type="container"> <div class="elementor-element elementor-element-6a52a47 elementor-widget elementor-widget-image" data-id="6a52a47" data-element_type="widget" id="hover-green" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://www.facebook.com/nilenconcept"> <img width="30" height="30" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2030%2030'%3E%3C/svg%3E" title="FB" alt="FB" data-lazy-src="https://nilen.pl/wp-content/uploads/elementor/thumbs/FB-qrkzhw5negppow0a5di0gikx1fttg8q4b4tl2o5dpo.png" /><noscript><img width="30" height="30" src="https://nilen.pl/wp-content/uploads/elementor/thumbs/FB-qrkzhw5negppow0a5di0gikx1fttg8q4b4tl2o5dpo.png" title="FB" alt="FB" loading="lazy" /></noscript> </a> </div> </div> <div class="elementor-element elementor-element-b0de6e8 elementor-widget elementor-widget-image" data-id="b0de6e8" data-element_type="widget" id="hover-green" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://www.instagram.com/nilen_concept/"> <img width="30" height="30" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2030%2030'%3E%3C/svg%3E" title="ins" alt="ins" data-lazy-src="https://nilen.pl/wp-content/uploads/elementor/thumbs/ins-qrkzhw5necg98turla215ri172b9aeun5x2dvq0cdo.png" /><noscript><img width="30" height="30" src="https://nilen.pl/wp-content/uploads/elementor/thumbs/ins-qrkzhw5necg98turla215ri172b9aeun5x2dvq0cdo.png" title="ins" alt="ins" loading="lazy" /></noscript> </a> </div> </div> <div class="elementor-element elementor-element-d8f368b elementor-widget elementor-widget-image" data-id="d8f368b" data-element_type="widget" id="hover-green" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://m.youtube.com/channel/UCyslp6cP9_ULJSGCe9Gqu2w"> <img width="30" height="30" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2030%2030'%3E%3C/svg%3E" title="YT" alt="YT" data-lazy-src="https://nilen.pl/wp-content/uploads/elementor/thumbs/YT-qrkzhv7t7ieyx7w4qrnel9qklofw2pqwtseweg1qjw.png" /><noscript><img width="30" height="30" src="https://nilen.pl/wp-content/uploads/elementor/thumbs/YT-qrkzhv7t7ieyx7w4qrnel9qklofw2pqwtseweg1qjw.png" title="YT" alt="YT" loading="lazy" /></noscript> </a> </div> </div> <div class="elementor-element elementor-element-1218d95 elementor-widget elementor-widget-image" data-id="1218d95" data-element_type="widget" id="hover-green" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://pl.pinterest.com/nilen_concept/"> <img width="25" height="31" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2025%2031'%3E%3C/svg%3E" title="p" alt="p" data-lazy-src="https://nilen.pl/wp-content/uploads/2024/06/p.svg" /><noscript><img width="25" height="31" src="https://nilen.pl/wp-content/uploads/2024/06/p.svg" title="p" alt="p" loading="lazy" /></noscript> </a> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-d5bb8f8 e-flex e-con-boxed e-con e-child" data-id="d5bb8f8" data-element_type="container" id="footer-bottom"> <div class="e-con-inner"> <div class="elementor-element elementor-element-7bcc52f elementor-icon-list--layout-inline elementor-align-center elementor-widget__width-inherit elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="7bcc52f" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items elementor-inline-items"> <li class="elementor-icon-list-item elementor-inline-item"> <a href="https://nilen.pl/polityka-prywatnosci/" rel="nofollow"> <span class="elementor-icon-list-text">Polityka prywatności</span> </a> </li> <li class="elementor-icon-list-item elementor-inline-item"> <span class="elementor-icon-list-text">Copyright 2024 NILEN</span> </li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </footer> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/hello-theme-child-master/*","/wp-content/themes/hello-elementor/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script type="text/x-template" id="mobile-menu-item-template"><li :id="'jet-mobile-menu-item-'+itemDataObject.itemId" :class="itemClasses" > <div class="jet-mobile-menu__item-inner" tabindex="0" :aria-label="itemDataObject.name" aria-expanded="false" v-on:click="itemSubHandler" v-on:keyup.enter="itemSubHandler" > <a :class="itemLinkClasses" :href="itemDataObject.url" :rel="itemDataObject.xfn" :title="itemDataObject.attrTitle" :target="itemDataObject.target" > <div class="jet-menu-item-wrapper"> <div class="jet-menu-icon" v-if="isIconVisible" v-html="itemIconHtml" ></div> <div class="jet-menu-name"> <span class="jet-menu-label" v-if="isLabelVisible" v-html="itemDataObject.name" ></span> <small class="jet-menu-desc" v-if="isDescVisible" v-html="itemDataObject.description" ></small> </div> <div class="jet-menu-badge" v-if="isBadgeVisible" > <div class="jet-menu-badge__inner" v-html="itemDataObject.badgeContent"></div> </div> </div> </a> <span class="jet-dropdown-arrow" v-if="isSub && !templateLoadStatus" v-html="dropdownIconHtml" v-on:click="markerSubHandler" > </span> <div class="jet-mobile-menu__template-loader" v-if="templateLoadStatus" > <svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="24px" height="25px" viewBox="0 0 128 128" xml:space="preserve"> <g> <linearGradient :id="'linear-gradient-'+itemDataObject.itemId"> <stop offset="0%" :stop-color="loaderColor" stop-opacity="0"/> <stop offset="100%" :stop-color="loaderColor" stop-opacity="1"/> </linearGradient> <path d="M63.85 0A63.85 63.85 0 1 1 0 63.85 63.85 63.85 0 0 1 63.85 0zm.65 19.5a44 44 0 1 1-44 44 44 44 0 0 1 44-44z" :fill="'url(#linear-gradient-'+itemDataObject.itemId+')'" fill-rule="evenodd"/> <animateTransform attributeName="transform" type="rotate" from="0 64 64" to="360 64 64" dur="1080ms" repeatCount="indefinite"></animateTransform> </g> </svg> </div> </div> <transition name="menu-container-expand-animation"> <mobile-menu-list v-if="isDropdownLayout && subDropdownVisible" :depth="depth+1" :children-object="itemDataObject.children" ></mobile-menu-list> </transition> </li> </script> <script type="text/x-template" id="mobile-menu-list-template"><div class="jet-mobile-menu__list" role="navigation" > <ul class="jet-mobile-menu__items"> <mobile-menu-item v-for="(item, index) in childrenObject" :key="item.id" :item-data-object="item" :depth="depth" ></mobile-menu-item> </ul> </div> </script> <script type="text/x-template" id="mobile-menu-template"><div :class="instanceClass" v-on:keyup.esc="escapeKeyHandler" > <div class="jet-mobile-menu__toggle" role="button" ref="toggle" tabindex="0" aria-label="Open/Close Menu" aria-expanded="false" v-on:click="menuToggle" v-on:keyup.enter="menuToggle" > <div class="jet-mobile-menu__template-loader" v-if="toggleLoaderVisible" > <svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="24px" height="25px" viewBox="0 0 128 128" xml:space="preserve"> <g> <linearGradient :id="'linear-gradient-'+itemDataObject.itemId"> <stop offset="0%" :stop-color="loaderColor" stop-opacity="0"/> <stop offset="100%" :stop-color="loaderColor" stop-opacity="1"/> </linearGradient> <path d="M63.85 0A63.85 63.85 0 1 1 0 63.85 63.85 63.85 0 0 1 63.85 0zm.65 19.5a44 44 0 1 1-44 44 44 44 0 0 1 44-44z" :fill="'url(#linear-gradient-'+itemDataObject.itemId+')'" fill-rule="evenodd"/> <animateTransform attributeName="transform" type="rotate" from="0 64 64" to="360 64 64" dur="1080ms" repeatCount="indefinite"></animateTransform> </g> </svg> </div> <div class="jet-mobile-menu__toggle-icon" v-if="!menuOpen && !toggleLoaderVisible" v-html="toggleClosedIcon" ></div> <div class="jet-mobile-menu__toggle-icon" v-if="menuOpen && !toggleLoaderVisible" v-html="toggleOpenedIcon" ></div> <span class="jet-mobile-menu__toggle-text" v-if="toggleText" v-html="toggleText" ></span> </div> <transition name="cover-animation"> <div class="jet-mobile-menu-cover" v-if="menuContainerVisible && coverVisible" v-on:click="closeMenu" ></div> </transition> <transition :name="showAnimation"> <div class="jet-mobile-menu__container" v-if="menuContainerVisible" > <div class="jet-mobile-menu__container-inner" > <div class="jet-mobile-menu__header-template" v-if="headerTemplateVisible" > <div class="jet-mobile-menu__header-template-content" ref="header-template-content" v-html="headerContent" ></div> </div> <div class="jet-mobile-menu__controls" v-if="isBreadcrumbs || isBack || isClose" > <div class="jet-mobile-menu__breadcrumbs" v-if="isBreadcrumbs" > <div class="jet-mobile-menu__breadcrumb" v-for="(item, index) in breadcrumbsPathData" :key="index" > <div class="breadcrumb-label" v-on:click="breadcrumbHandle(index+1)" v-html="item" ></div> <div class="breadcrumb-divider" v-html="breadcrumbIcon" v-if="(breadcrumbIcon && index !== breadcrumbsPathData.length-1)" ></div> </div> </div> <div class="jet-mobile-menu__back" role="button" ref="back" tabindex="0" aria-label="Close Menu" aria-expanded="false" v-if="!isBack && isClose" v-html="closeIcon" v-on:click="menuToggle" v-on:keyup.enter="menuToggle" ></div> <div class="jet-mobile-menu__back" role="button" ref="back" tabindex="0" aria-label="Back to Prev Items" aria-expanded="false" v-if="isBack" v-html="backIcon" v-on:click="goBack" v-on:keyup.enter="goBack" ></div> </div> <div class="jet-mobile-menu__before-template" v-if="beforeTemplateVisible" > <div class="jet-mobile-menu__before-template-content" ref="before-template-content" v-html="beforeContent" ></div> </div> <div class="jet-mobile-menu__body" > <transition :name="animation"> <mobile-menu-list v-if="!templateVisible" :key="depth" :depth="depth" :children-object="itemsList" ></mobile-menu-list> <div class="jet-mobile-menu__template" ref="template-content" v-if="templateVisible" > <div class="jet-mobile-menu__template-content" v-html="itemTemplateContent" ></div> </div> </transition> </div> <div class="jet-mobile-menu__after-template" v-if="afterTemplateVisible" > <div class="jet-mobile-menu__after-template-content" ref="after-template-content" v-html="afterContent" ></div> </div> </div> </div> </transition> </div> </script> <script type="rocketlazyloadscript"> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <link rel='stylesheet' id='widget-posts-css' href='https://nilen.pl/wp-content/plugins/elementor-pro/assets/css/widget-posts.min.css?ver=3.33.2' media='all' /> <link rel='stylesheet' id='widget-loop-carousel-css' href='https://nilen.pl/wp-content/plugins/elementor-pro/assets/css/widget-loop-carousel.min.css?ver=3.33.2' media='all' /> <link rel='stylesheet' id='widget-video-css' href='https://nilen.pl/wp-content/plugins/elementor/assets/css/widget-video.min.css?ver=3.33.4' media='all' /> <link rel='stylesheet' id='widget-form-css' href='https://nilen.pl/wp-content/plugins/elementor-pro/assets/css/widget-form.min.css?ver=3.33.2' media='all' /> <script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://nilen.pl/wp-content/cache/min/1/wp-content/plugins/metronet-profile-picture/js/mpp-frontend.js?ver=1769600714" id="mpp_gutenberg_tabs-js" data-rocket-defer defer></script> <script id="ark-pagination-js-js-extra"> var arkPaginationData = {"ajaxurl":"https://nilen.pl/wp-admin/admin-ajax.php","iloscZdjecNaStrone":"18"}; //# sourceURL=ark-pagination-js-js-extra </script> <script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://nilen.pl/wp-content/cache/min/1/wp-content/plugins/wp-mat-gallery/js/ark-pagination.js?ver=1769600714" id="ark-pagination-js-js" data-rocket-defer defer></script> <script data-minify="1" src="https://nilen.pl/wp-content/cache/min/1/npm/@fancyapps/[email protected]/dist/fancybox.umd.js?ver=1769600714" id="fancybox-js-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" id="rocket-browser-checker-js-after"> "use strict";var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}return function(Constructor,protoProps,staticProps){return protoProps&&defineProperties(Constructor.prototype,protoProps),staticProps&&defineProperties(Constructor,staticProps),Constructor}}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}var RocketBrowserCompatibilityChecker=function(){function RocketBrowserCompatibilityChecker(options){_classCallCheck(this,RocketBrowserCompatibilityChecker),this.passiveSupported=!1,this._checkPassiveOption(this),this.options=!!this.passiveSupported&&options}return _createClass(RocketBrowserCompatibilityChecker,[{key:"_checkPassiveOption",value:function(self){try{var options={get passive(){return!(self.passiveSupported=!0)}};window.addEventListener("test",null,options),window.removeEventListener("test",null,options)}catch(err){self.passiveSupported=!1}}},{key:"initRequestIdleCallback",value:function(){!1 in window&&(window.requestIdleCallback=function(cb){var start=Date.now();return setTimeout(function(){cb({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-start))}})},1)}),!1 in window&&(window.cancelIdleCallback=function(id){return clearTimeout(id)})}},{key:"isDataSaverModeOn",value:function(){return"connection"in navigator&&!0===navigator.connection.saveData}},{key:"supportsLinkPrefetch",value:function(){var elem=document.createElement("link");return elem.relList&&elem.relList.supports&&elem.relList.supports("prefetch")&&window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype}},{key:"isSlowConnection",value:function(){return"connection"in navigator&&"effectiveType"in navigator.connection&&("2g"===navigator.connection.effectiveType||"slow-2g"===navigator.connection.effectiveType)}}]),RocketBrowserCompatibilityChecker}(); //# sourceURL=rocket-browser-checker-js-after </script> <script id="rocket-preload-links-js-extra"> var RocketPreloadLinksConfig = {"excludeUris":"/robots.txt/|/sitemap_index.xml/|/wp-sitemap.xml/|/(?:.+/)?feed(?:/(?:.+/?)?)?$|/(?:.+/)?embed/|/(index.php/)?(.*)wp-json(/.*|$)|/refer/|/go/|/recommend/|/recommends/","usesTrailingSlash":"1","imageExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php","fileExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php|html|htm","siteUrl":"https://nilen.pl","onHoverDelay":"100","rateThrottle":"3"}; //# sourceURL=rocket-preload-links-js-extra </script> <script type="rocketlazyloadscript" id="rocket-preload-links-js-after"> (function() { "use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run(); }()); //# sourceURL=rocket-preload-links-js-after </script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/themes/hello-elementor/assets/js/hello-frontend.min.js?ver=3.1.1" id="hello-theme-frontend-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f1" id="wp-hooks-js"></script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/plugins/jet-menu/assets/public/lib/vue/vue.min.js?ver=2.6.11" id="jet-vue-js" data-rocket-defer defer></script> <script id="jet-menu-public-scripts-js-extra"> var jetMenuPublicSettings = {"version":"2.4.18","ajaxUrl":"https://nilen.pl/wp-admin/admin-ajax.php","isMobile":"false","getElementorTemplateApiUrl":"https://nilen.pl/wp-json/jet-menu-api/v2/get-elementor-template-content","getBlocksTemplateApiUrl":"https://nilen.pl/wp-json/jet-menu-api/v2/get-blocks-template-content","menuItemsApiUrl":"https://nilen.pl/wp-json/jet-menu-api/v2/get-menu-items","restNonce":"c080645d45","devMode":"false","wpmlLanguageCode":"pl","menuSettings":{"jetMenuRollUp":"true","jetMenuMouseleaveDelay":500,"jetMenuMegaWidthType":"container","jetMenuMegaWidthSelector":"","jetMenuMegaOpenSubType":"hover","jetMenuMegaAjax":"false"}}; //# sourceURL=jet-menu-public-scripts-js-extra </script> <script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://nilen.pl/wp-content/cache/min/1/wp-content/plugins/jet-menu/assets/public/js/jet-menu-public-scripts.js?ver=1769600714" id="jet-menu-public-scripts-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" id="jet-menu-public-scripts-js-after"> function CxCSSCollector(){"use strict";var t,e=window.CxCollectedCSS;void 0!==e&&((t=document.createElement("style")).setAttribute("title",e.title),t.setAttribute("type",e.type),t.textContent=e.css,document.head.appendChild(t))}CxCSSCollector(); //# sourceURL=jet-menu-public-scripts-js-after </script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.33.4" id="elementor-webpack-runtime-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.33.4" id="elementor-frontend-modules-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" id="elementor-frontend-js-before"> var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Udost\u0119pnij na Facebooku","shareOnTwitter":"Udost\u0119pnij na X","pinIt":"Przypnij","download":"Pobierz","downloadImage":"Pobierz obrazek","fullscreen":"Tryb pe\u0142noekranowy","zoom":"Powi\u0119ksz","share":"Udost\u0119pnij","playVideo":"Odtw\u00f3rz film","previous":"Poprzednie","next":"Nast\u0119pne","close":"Zamknij","a11yCarouselPrevSlideMessage":"Poprzedni slajd","a11yCarouselNextSlideMessage":"Nast\u0119pny slajd","a11yCarouselFirstSlideMessage":"To jest pierwszy slajd","a11yCarouselLastSlideMessage":"To jest ostatni slajd","a11yCarouselPaginationBulletMessage":"Id\u017a do slajdu"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1026,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobilny pionowy","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobilny poziomy","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Pionowy tablet","value":1025,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Poziomy tablet","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Szeroki ekran","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":true},"version":"3.33.4","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"hello-theme-header-footer":true,"nested-elements":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"cloud-library":true,"e_opt_in_v4_page":true,"import-export-customization":true,"mega-menu":true,"e_pro_variables":true},"urls":{"assets":"https:\/\/nilen.pl\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/nilen.pl\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/nilen.pl\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"34df3fa616"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"viewport_tablet":1025,"active_breakpoints":["viewport_mobile","viewport_tablet"],"hello_header_logo_type":"logo","hello_header_menu_layout":"horizontal","hello_footer_logo_type":"logo"},"post":{"id":10,"title":"Projektowanie%20wn%C4%99trz%20i%20wyko%C5%84czenie%20mieszka%C5%84%20Krak%C3%B3w%20-%20Nilen","excerpt":"","featuredImage":"https:\/\/nilen.pl\/wp-content\/uploads\/2025\/04\/54_11zon-1024x683.webp"}}; //# sourceURL=elementor-frontend-js-before </script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.33.4" id="elementor-frontend-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js?ver=1.2.1" id="smartmenus-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js?ver=3.33.2" id="e-sticky-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js?ver=8.4.5" id="swiper-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://nilen.pl/wp-content/cache/min/1/wp-content/themes/hello-theme-child-master/js/custom.js?ver=1769600714" id="custom-js-code-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://nilen.pl/wp-content/cache/min/1/wp-content/plugins/dynamic-visibility-for-elementor/assets/js/visibility.js?ver=1769600714" id="dce-visibility-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.33.2" id="elementor-pro-webpack-runtime-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed366793375" id="wp-i18n-js"></script> <script type="rocketlazyloadscript" id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after </script> <script type="rocketlazyloadscript" id="elementor-pro-frontend-js-before"> var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/nilen.pl\/wp-admin\/admin-ajax.php","nonce":"5280f8c315","urls":{"assets":"https:\/\/nilen.pl\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/nilen.pl\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"pl_PL","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/nilen.pl\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; //# sourceURL=elementor-pro-frontend-js-before </script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.33.2" id="elementor-pro-frontend-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=3.33.2" id="pro-elements-handlers-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://nilen.pl/wp-content/cache/min/1/wp-content/plugins/jet-menu/includes/elementor/assets/public/js/widgets-scripts.js?ver=1769600714" id="jet-menu-elementor-widgets-scripts-js" data-rocket-defer defer></script> <script id="jet-tabs-frontend-js-extra"> var JetTabsSettings = {"ajaxurl":"https://nilen.pl/wp-admin/admin-ajax.php","isMobile":"false","templateApiUrl":"https://nilen.pl/wp-json/jet-tabs-api/v1/elementor-template","devMode":"false","isSelfRequest":""}; //# sourceURL=jet-tabs-frontend-js-extra </script> <script type="rocketlazyloadscript" data-rocket-src="https://nilen.pl/wp-content/plugins/jet-tabs/assets/js/jet-tabs-frontend.min.js?ver=2.2.13" id="jet-tabs-frontend-js" data-rocket-defer defer></script> <!-- Unlimited Elements 2.0.1 Scripts --> <script type="rocketlazyloadscript" data-rocket-type='text/javascript' id='unlimited-elements-scripts'>window.addEventListener('DOMContentLoaded', function() { /* Icon Bullets scripts: */ jQuery(document).ready(function(){ function uc_uc_material_bullets_elementor_579350a_start(){ var objBullets = jQuery('#uc_uc_material_bullets_elementor_579350a'); if(objBullets.hasClass("uc-remote-parent") == false) return(false); var objRemoteOptions = { class_items:"uc_material_bullets_row", class_active:"uc-bullet-active", selector_item_trigger:null, add_set_active_code:true }; objBullets.data("uc-remote-options", objRemoteOptions); objBullets.trigger("uc-object-ready"); jQuery(document).trigger("uc-remote-parent-init", [objBullets]); }if(jQuery("#uc_uc_material_bullets_elementor_579350a").length && !jQuery("#uc_uc_material_bullets_elementor_579350a").parents('[data-elementor-type="popup"]').length) uc_uc_material_bullets_elementor_579350a_start(); jQuery( document ).on( 'elementor/popup/show', (event, id, objPopup) => { if(objPopup.$element.has(jQuery("#uc_uc_material_bullets_elementor_579350a")).length) uc_uc_material_bullets_elementor_579350a_start()}); }); });</script> <style> .unlimited-elements-background-overlay{ position:absolute; top:0px; left:0px; width:100%; height:100%; z-index:0; } .unlimited-elements-background-overlay.uc-bg-front{ z-index:999; } </style> <script type="rocketlazyloadscript" data-rocket-type='text/javascript'>window.addEventListener('DOMContentLoaded', function() { jQuery(document).ready(function(){ function ucBackgroundOverlayPutStart(){ var objBG = jQuery(".unlimited-elements-background-overlay").not(".uc-bg-attached"); if(objBG.length == 0) return(false); objBG.each(function(index, bgElement){ var objBgElement = jQuery(bgElement); var targetID = objBgElement.data("forid"); var location
Recommendations
  • Review and clean suspicious HTML patterns
  • Consider using a Web Application Firewall (WAF)
HTTP Headers
Learn about HTTP Headers
HTTP Response Code
200 OK - Request successful
HTTP Protocol Version
Excellent! Your website is using HTTP/2

Your website is using a modern HTTP protocol version, which provides better performance and security features.

Information Disclosure: Server Version

Header: server
Value: Apache

Server Type: Apache

The Server header reveals server version information, which can be used by attackers to identify vulnerabilities.
Gzip Compression Enabled 👍

Great! This site is using Gzip compression to improve performance and reduce bandwidth usage.

Header Value
date Sun, 01 Mar 2026 04:11:23 GMT
vary User-Agent,Accept-Encoding
server Apache
alt-svc h3=":443"; ma=86400
expires Sun, 01 Mar 2026 04:11:23 GMT
content-type text/html; charset=UTF-8
http_version HTTP/2
cache-control max-age=0
last-modified Sat, 28 Feb 2026 22:31:30 GMT
content-encoding gzip
Service Disclaimer

Free Service: This website security analyzer is provided as a free service to help website owners and administrators identify potential security issues and improve their website's security posture.

Donations: We welcome and appreciate donations to help us maintain and improve this service. Your support helps us keep this tool free and continuously enhance its capabilities.

Affiliate Links: We may use affiliate links for various security services, hosting providers, and security tools mentioned throughout this analysis. If you choose to purchase any of these services through our links, we may receive a small commission at no additional cost to you. This helps support the development and maintenance of this free service.

Support Our Service

Help us keep this tool free and improve it further

Please wait, running the scan...
This may take a few moments