🌍 GEOLOCATION MAP
🔍
⚙️
←
Back to Home
Cosmic Themes
×
Select Your Theme
Nebula
Aurora
Supernova
Galaxy
Creme
Void
Plasma
Solar
Lunar
Cosmic
Font Style
Drip October
Chainsaw Carnage
Halloween
Crotah Italic
Dangernight
Heavy Jack
Marlita
Mock Bear
Mulinarstamp
Under Threat
Black Dahlia
Visitor Geolocation Tracker
Real-time visualization of global visitor locations
⚠️
🔒 Database Access Issue Detected
Your Supabase table needs Row Level Security (RLS) policies enabled for public read access.
📋 Show SQL Fix (Click to expand)
-- Run this in Supabase SQL Editor:
-- Step 1: Enable RLS on the table
ALTER TABLE visitor_geolocation ENABLE ROW LEVEL SECURITY;
-- Step 2: Create policy to allow public reads
CREATE POLICY "Allow public read access" ON visitor_geolocation
FOR SELECT USING (true);
-- Step 3: Verify the policy was created
SELECT * FROM pg_policies WHERE tablename = 'visitor_geolocation';
Dismiss
0
Total Visitors
0
Countries
0
Cities
0
Last 24 Hours
🗺️ Interactive Visitor Map
🔄 Refresh Data
📍 Toggle Clustering
🔥 Heatmap View
📊 Visitors by Country
Loading country data...
🔐 Debug Console Access
This advanced debugging console is password-protected. Enter the correct password to unlock full console access and developer tools.
Cancel
Unlock
🔥
Debug Console
_
Clear
×
[00:00:00]
🎉 Debug Console Initialized
- All console methods intercepted
>
💡 Quick Commands (Click to use):
console.clear = function() {};
Disable console clearing (prevents external scripts from clearing)
Object.defineProperty(console, 'log', { writable: false });
Make console.log immutable (cannot be overridden)
document.addEventListener('contextmenu', e => e.stopImmediatePropagation(), true);
Force enable right-click (bypasses blockers)
debugger;
Trigger breakpoint (pauses execution if DevTools open)
localStorage
View all localStorage data
sessionStorage
View all sessionStorage data
document.cookie
View all cookies
window.location.reload(true);
Hard reload page (clears cache)
performance.now()
Get high-precision timestamp (milliseconds since page load)
navigator.userAgent
View browser user agent string