备份: 完整开发状态(含反混淆脚本和临时文件)

This commit is contained in:
ccdojox-crypto
2025-12-17 17:18:02 +08:00
parent 9e2333c90c
commit 7e9ea173a7
2872 changed files with 326818 additions and 249 deletions

29
copy_files.js Normal file
View File

@@ -0,0 +1,29 @@
const fs = require('fs');
const path = require('path');
function copyRecursive(src, dst) {
if (!fs.existsSync(dst)) {
fs.mkdirSync(dst, { recursive: true });
}
fs.readdirSync(src).forEach(f => {
const srcPath = path.join(src, f);
const dstPath = path.join(dst, f);
if (fs.statSync(srcPath).isDirectory()) {
copyRecursive(srcPath, dstPath);
} else {
fs.copyFileSync(srcPath, dstPath);
}
});
}
// Copy original extension files
copyRecursive(
'D:/temp/破解/cursorpro-0.4.5/原版本/extension/out',
'D:/temp/破解/cursorpro-0.4.5/extension/out'
);
console.log('Files copied from original extension');
// Now we need to write our clean client.js
// The clean version is already saved earlier
console.log('Note: client.js should be replaced with clean version');