跳转到内容
搜索文档

将可疑机器人发送到蜜罐

使用 the bot score field to send bots to a honeypot.

最后更新 查看 MarkdownAgent 设置

使用 the [bot score

export default {
	async fetch(request) {
		const response = await fetch(request);

		// Clone the response so that it is no longer immutable
		const newResponse = new Response(response.body, response);

		if (request.cf.botManagement.score < 30) {
			const honeypot = "https://example.com/";
			return await fetch(honeypot, request);
		} else {
			return newResponse;
		}
	},
};

这篇文档对您有帮助吗?