迅雷

来自百合仙子's Wiki
跳转到导航 跳转到搜索

特征

  • 下载文件时,会发送文件所在目录作为 referrer
  • 请求文件的大小不尽相同,发现其中以 11520 字节者居多

已知UA

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; )
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)

限制其下载

nginx 下可限制其的 Range request:

## limit range request for MSIE (thunder)
if ($http_user_agent ~ "MSIE" ) {
	set $test IE;
}
if ($http_range ~ "bytes") {
	set $test "${test}RANGE";
}
if ($test = IERANGE) {
	return 403;
}

参见

外部链接

资源