Skip to content

Commit d8e2714

Browse files
committed
refactor: Update machineId generation to support 74-character format
BREAKING CHANGE: machineId format has been updated to generate 74-character hex strings Technical Analysis: Decoded sample ID reveals structured format: 61757468307c757365725f3031... => "auth0|user_01..." Contains identifiable prefix and separator pattern Includes encoded user identification information Changes: Modified generateMachineId() to produce 74-character hex strings (37 bytes) Updated related documentation and comments Ensured compatibility with Cursor v0.44.0 requirements Removed legacy format handling code Format Example: 1757468307c757365725f30314a4552464a514639364237464b44583934484a4831374452 ─ Hex encoded string containing auth0 prefix and user information Note: New format provides enhanced uniqueness and metadata capabilities Reference: Thanks to 🙏[Huaguang]佬友 for the analysis: https://linux.do/t/topic/287438/148 Cursor version: 0.44+
1 parent ab08227 commit d8e2714

File tree

1 file changed

+32
-13
lines changed

1 file changed

+32
-13
lines changed

main.go

+32-13
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ package main
44
import (
55
"bufio"
66
"context"
7-
"crypto/rand"
7+
cryptorand "crypto/rand"
88
"crypto/sha256"
99
"encoding/hex"
1010
"encoding/json"
1111
"errors"
1212
"flag"
1313
"fmt"
1414
"log"
15+
"math/rand"
1516
"os"
1617
"os/exec"
1718
"os/user"
@@ -170,7 +171,7 @@ func (e *AppError) Error() string {
170171
// Configuration Functions / 配置函数
171172
func NewStorageConfig(oldConfig *StorageConfig) *StorageConfig {
172173
// Use different ID generation functions for different fields
173-
// 为不同字段使用不同的ID生成函数
174+
// 为不同字段用不同的ID生成函数
174175
// Reason: machineId needs new format while others keep old format
175176
// 原因:machineId需要使用新格式,而其他ID保持旧格式
176177
newConfig := &StorageConfig{
@@ -194,20 +195,38 @@ func NewStorageConfig(oldConfig *StorageConfig) *StorageConfig {
194195
return newConfig
195196
}
196197

197-
// ID Generation Functions / ID生成函数
198198
func generateMachineId() string {
199+
// 基础结构:auth0|user_XX[unique_id]
199200
prefix := "auth0|user_"
200-
remainingLength := 74 - len(prefix)
201-
bytes := make([]byte, remainingLength/2)
202-
if _, err := rand.Read(bytes); err != nil {
203-
panic(fmt.Errorf("failed to generate random data: %v", err))
201+
202+
// 生成两位数字序列 (00-99)
203+
sequence := fmt.Sprintf("%02d", rand.Intn(100))
204+
205+
// 生成唯一标识部分 (23字符)
206+
uniqueId := generateUniqueId(23)
207+
208+
// 组合完整ID
209+
fullId := prefix + sequence + uniqueId
210+
211+
// 转换为十六进制
212+
return hex.EncodeToString([]byte(fullId))
213+
}
214+
215+
func generateUniqueId(length int) string {
216+
// 字符集:使用类似 Crockford's Base32 的字符集
217+
const charset = "0123456789ABCDEFGHJKLMNPQRSTVWXYZ"
218+
219+
// 生成随机字符串
220+
b := make([]byte, length)
221+
for i := range b {
222+
b[i] = charset[rand.Intn(len(charset))]
204223
}
205-
return prefix + hex.EncodeToString(bytes)
224+
return string(b)
206225
}
207226

208227
func generateMacMachineId() string {
209228
data := make([]byte, 32)
210-
if _, err := rand.Read(data); err != nil {
229+
if _, err := cryptorand.Read(data); err != nil {
211230
panic(fmt.Errorf("failed to generate random data: %v", err))
212231
}
213232
hash := sha256.Sum256(data)
@@ -216,7 +235,7 @@ func generateMacMachineId() string {
216235

217236
func generateDevDeviceId() string {
218237
uuid := make([]byte, 16)
219-
if _, err := rand.Read(uuid); err != nil {
238+
if _, err := cryptorand.Read(uuid); err != nil {
220239
panic(fmt.Errorf("failed to generate UUID: %v", err))
221240
}
222241
uuid[6] = (uuid[6] & 0x0f) | 0x40 // Version 4
@@ -541,7 +560,7 @@ func showSuccess() {
541560
successColor.Printf("%s\n", text.SuccessMessage)
542561
fmt.Println()
543562
warningColor.Printf("%s\n", text.RestartMessage)
544-
successColor.Println("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━��━━")
563+
successColor.Println("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━")
545564
} else {
546565
// Chinese messages with extra spacing
547566
successColor.Println("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━")
@@ -728,7 +747,7 @@ func waitExit() {
728747
if currentLanguage == EN {
729748
fmt.Println("\nPress Enter to exit...")
730749
} else {
731-
fmt.Println("\n按回车键退出程序...")
750+
fmt.Println("\n按��车键退出程序...")
732751
}
733752
os.Stdout.Sync()
734753
bufio.NewReader(os.Stdin).ReadString('\n')
@@ -830,7 +849,7 @@ func main() {
830849
if currentLanguage == EN {
831850
fmt.Println("\nError: Please close Cursor manually before running this program.")
832851
} else {
833-
fmt.Println("\n错误:请在运行此程序之前手动关闭 Cursor。")
852+
fmt.Println("\n错误:请在运���此程序之前手动关闭 Cursor。")
834853
}
835854
waitExit()
836855
return

0 commit comments

Comments
 (0)