├── .env.example ├── .github └── workflows │ ├── build.yml │ ├── pull.yml │ ├── remove-old-artifacts.yml │ └── temp-build.yml ├── .gitignore ├── CursorKeepAlive.spec ├── README.EN.md ├── README.md ├── browser_utils.py ├── config.py ├── cursor_auth_manager.py ├── cursor_pro_keep_alive.py ├── exit_cursor.py ├── get_email_code.py ├── logger.py ├── logo.py ├── patch_cursor_get_machine_id.py ├── requirements.txt ├── reset_machine.py ├── screen ├── 28613e3f3f23a935b66a7ba31ff4e3f.jpg ├── afdian-[未认证]阿臻.jpg ├── c29ea438-ee74-4ba1-bbf6-25e622cdfad5.png └── 截屏2025-01-04 09.44.48.png ├── test └── get_veri_code_test.py └── turnstilePatch ├── manifest.json ├── readme.txt └── script.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/.github/workflows/pull.yml -------------------------------------------------------------------------------- /.github/workflows/remove-old-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/.github/workflows/remove-old-artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/temp-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/.github/workflows/temp-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/.gitignore -------------------------------------------------------------------------------- /CursorKeepAlive.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/CursorKeepAlive.spec -------------------------------------------------------------------------------- /README.EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/README.EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/README.md -------------------------------------------------------------------------------- /browser_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/browser_utils.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/config.py -------------------------------------------------------------------------------- /cursor_auth_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/cursor_auth_manager.py -------------------------------------------------------------------------------- /cursor_pro_keep_alive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/cursor_pro_keep_alive.py -------------------------------------------------------------------------------- /exit_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/exit_cursor.py -------------------------------------------------------------------------------- /get_email_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/get_email_code.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/logger.py -------------------------------------------------------------------------------- /logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/logo.py -------------------------------------------------------------------------------- /patch_cursor_get_machine_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/patch_cursor_get_machine_id.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | DrissionPage 2 | colorama 3 | python-dotenv 4 | psutil 5 | requests -------------------------------------------------------------------------------- /reset_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/reset_machine.py -------------------------------------------------------------------------------- /screen/28613e3f3f23a935b66a7ba31ff4e3f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/screen/28613e3f3f23a935b66a7ba31ff4e3f.jpg -------------------------------------------------------------------------------- /screen/afdian-[未认证]阿臻.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/screen/afdian-[未认证]阿臻.jpg -------------------------------------------------------------------------------- /screen/c29ea438-ee74-4ba1-bbf6-25e622cdfad5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/screen/c29ea438-ee74-4ba1-bbf6-25e622cdfad5.png -------------------------------------------------------------------------------- /screen/截屏2025-01-04 09.44.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/screen/截屏2025-01-04 09.44.48.png -------------------------------------------------------------------------------- /test/get_veri_code_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/test/get_veri_code_test.py -------------------------------------------------------------------------------- /turnstilePatch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/turnstilePatch/manifest.json -------------------------------------------------------------------------------- /turnstilePatch/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /turnstilePatch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqjuser/cursor-auto-free/HEAD/turnstilePatch/script.js --------------------------------------------------------------------------------