Welcome, guardians of digital anonymity! π΅οΈββοΈ If you're here, it's because you want to prevent Wappalyzer (that nosy tool π) from snooping around your website and discovering what technologies you use.
π― What does this script do?
This stealthy code:
π₯ Removes any script injected by Wappalyzer.
π Blocks its attempts to analyze the DOM and global variables.
π€« Works silently, without displaying anything in the console.
π Blocking Code
Just copy and paste this into your HTML (before ) and let the magic happen:
<script>
setInterval(() => {
const scripts = document.querySelectorAll("script");
scripts.forEach(script => {
if (script.innerHTML.includes("wappalyzer") || script.src.includes("wappalyzer")) {
script.remove();
}
});
// Block message events related to Wappalyzer
window.addEventListener("message", (event) => {
if (event.data && event.data.wappalyzer) {
event.stopImmediatePropagation();
}
}, true);
}, 1000);
</script>
π Why use it?
Wappalyzer scans your site to detect frameworks, CMSs, servers, and more... but with this script: β It will go blind π€ β Your technology will stay in the shadows π β No one will know if you use WordPress, Laravel, or dark magic π§ββοΈ
π Important: Clear the Plugin Cache
For this to work, you must clear Wappalyzer's cache. The plugin stores detected technologies and loads them from cache instead of scanning again. To clear the cache:
π Open this URL in your browser:
chrome-extension://gppongmhjkpfnbhagpmjfkannfbllamg/html/options.html
After clearing the cache, Wappalyzer will reload and get blocked immediately. Keep in mind that users who already had technologies loaded will have them cached, but over time, this cache will clear, and they will no longer see the detected technologies.
This script won't make you invincible (always keep your systems updated), but at least it will make Wappalyzer stumble upon a locked door πͺβ.
May anonymity be with you! π¦β¨