Advanced website technology stack analysis with performance metrics, security audit, SEO analysis, and real-time monitoring
< Обсуждения: Tech Stack Detector
Was this vibe/AI coded or something? It makes several huge careless mistakes.One of them is how it "detects" the use of WebSockets:
// Check for WebSocket connections if (window.WebSocket || window.io) { this.results.apis.push({ name: 'WebSocket', version: 'Active', confidence: 'High' }); }
100% wrong! If "window.WebSocket" exists, all that means is that WebSockets are supported, not that they are actually being used on the page.
Войдите, чтобы ответить.
Was this vibe/AI coded or something? It makes several huge careless mistakes.
One of them is how it "detects" the use of WebSockets:
// Check for WebSocket connections if (window.WebSocket || window.io) { this.results.apis.push({ name: 'WebSocket', version: 'Active', confidence: 'High' }); }100% wrong! If "window.WebSocket" exists, all that means is that WebSockets are supported, not that they are actually being used on the page.