网站技术栈检测
通过HTTP响应头、页面特征、Cookie等识别网站使用的技术栈
🔍 常见技术栈识别方法
Web服务器
HTTP响应头 Server 字段
Server: nginx/1.24 → NginxServer: Apache/2.4 → ApacheServer: cloudflare → CloudflareServer: gws → Google Web Server
编程语言/框架
响应头 + Cookie + 页面特征
X-Powered-By: PHP/8.2 → PHPX-Powered-By: Express → Node.jsSet-Cookie: JSESSIONID → JavaSet-Cookie: laravel_session → Laravel
前端框架
DOM特征 + 全局变量 + Meta标签
__NEXT_DATA__ → Next.js__NUXT__ → Nuxt.jswindow.Vue → Vue.jswindow.React → React
CMS系统
Meta标签 + 路径特征 + Cookie
<meta name="generator" content="WordPress">/wp-content/ → WordPress/sites/default/files/ → DrupalSet-Cookie: cms → CMS特征
CDN/WAF
响应头特征
CF-Ray → Cloudflare CDNX-CDN: akamai → AkamaiX-Fastly-Request-ID → FastlyX-Sucuri-ID → Sucuri WAF
分析/追踪工具
页面脚本特征
ga() / gtag() → Google Analytics_fbq → Facebook Pixelhotjar → Hotjar__utm → Urchin/GA
📋 常用识别响应头
| 响应头 | 说明 | 示例 |
|---|---|---|
| Server | Web服务器标识 | nginx/1.24.0 |
| X-Powered-By | 后端语言/框架 | PHP/8.2.4 |
| X-AspNet-Version | ASP.NET版本 | 4.0.30319 |
| X-Generator | 站点生成器 | Hugo 0.110 |
| X-DRupal-Cache | Drupal缓存 | HIT |
| CF-Ray | Cloudflare请求ID | 8a1b2c3d4e5f |
| X-Varnish | Varnish缓存 | 123456 |
🌐 在线技术栈检测工具