Browse Source

```

fix(cursor): 修正Linux和Mac脚本中的正则表达式转义问题

- 修正了用于匹配createHash和异步函数签名的正则表达式转义模式
- 更新了digest方法和return语句的正则匹配逻辑
- 统一了Windows、Linux和Mac平台的正则表达式处理方式
- 解决了raw单引号字符串中反斜杠转义导致的语法错误
```
master
煎饼果子卷鲨鱼辣椒 2 weeks ago
parent
commit
888e7f35da
  1. 9
      scripts/run/cursor_linux_id_modifier.sh
  2. 9
      scripts/run/cursor_mac_id_modifier.sh

9
scripts/run/cursor_linux_id_modifier.sh

@ -1275,9 +1275,8 @@ if True:
i += 1 i += 1
return None return None
# 修复:避免 raw 单引号字符串中的 \\' 引发语法错误;并纠正正则转义以匹配实际 main.js 代码结构(与 Win 脚本逻辑对齐)
hash_re = re.compile(r"createHash\(\s*['\"]sha256['\"]\s*\)")
sig_re = re.compile(r'^async function (\w+)\((\w+)\)')
hash_re = re.compile(r'createHash\\([\"\\']sha256[\"\\']\\)')
sig_re = re.compile(r'^async function (\\w+)\\((\\w+)\\)')
hash_matches = list(hash_re.finditer(window)) hash_matches = list(hash_re.finditer(window))
diag(f"marker_index={marker_index} window_len={len(window)} sha256_createHash={len(hash_matches)}") diag(f"marker_index={marker_index} window_len={len(window)} sha256_createHash={len(hash_matches)}")
@ -1316,8 +1315,8 @@ if True:
name, param = sm.group(1), sm.group(2) name, param = sm.group(1), sm.group(2)
# 特征校验:sha256 + hex digest + return param ? raw : hash # 特征校验:sha256 + hex digest + return param ? raw : hash
has_digest = re.search(r"\.digest\(\s*['\"]hex['\"]\s*\)", func_text) is not None
has_return = re.search(r'return\s+' + re.escape(param) + r'\?\w+:\w+\}', func_text) is not None
has_digest = re.search(r'\\.digest\\([\"\\']hex[\"\\']\\)', func_text) is not None
has_return = re.search(r'return\\s+' + re.escape(param) + r'\\?\\w+:\\w+\\}', func_text) is not None
if idx <= 3: if idx <= 3:
diag(f"候选#{idx}: {name}({param}) len={len(func_text)} digest={has_digest} return={has_return}") diag(f"候选#{idx}: {name}({param}) len={len(func_text)} digest={has_digest} return={has_return}")
if not has_digest: if not has_digest:

9
scripts/run/cursor_mac_id_modifier.sh

@ -2002,9 +2002,8 @@ if True:
i += 1 i += 1
return None return None
# 修复:避免 raw 单引号字符串中的 \\' 引发语法错误;并纠正正则转义以匹配实际 main.js 代码结构(与 Win 脚本逻辑对齐)
hash_re = re.compile(r"createHash\(\s*['\"]sha256['\"]\s*\)")
sig_re = re.compile(r'^async function (\w+)\((\w+)\)')
hash_re = re.compile(r'createHash\\([\"\\']sha256[\"\\']\\)')
sig_re = re.compile(r'^async function (\\w+)\\((\\w+)\\)')
hash_matches = list(hash_re.finditer(window)) hash_matches = list(hash_re.finditer(window))
diag(f"marker_index={marker_index} window_len={len(window)} sha256_createHash={len(hash_matches)}") diag(f"marker_index={marker_index} window_len={len(window)} sha256_createHash={len(hash_matches)}")
@ -2043,8 +2042,8 @@ if True:
name, param = sm.group(1), sm.group(2) name, param = sm.group(1), sm.group(2)
# 特征校验:sha256 + hex digest + return param ? raw : hash # 特征校验:sha256 + hex digest + return param ? raw : hash
has_digest = re.search(r"\.digest\(\s*['\"]hex['\"]\s*\)", func_text) is not None
has_return = re.search(r'return\s+' + re.escape(param) + r'\?\w+:\w+\}', func_text) is not None
has_digest = re.search(r'\\.digest\\([\"\\']hex[\"\\']\\)', func_text) is not None
has_return = re.search(r'return\\s+' + re.escape(param) + r'\\?\\w+:\\w+\\}', func_text) is not None
if idx <= 3: if idx <= 3:
diag(f"候选#{idx}: {name}({param}) len={len(func_text)} digest={has_digest} return={has_return}") diag(f"候选#{idx}: {name}({param}) len={len(func_text)} digest={has_digest} return={has_return}")
if not has_digest: if not has_digest:

Loading…
Cancel
Save