Initial commit
Dieser Commit ist enthalten in:
372
CLAUDE_PROJECT_README.md
Normale Datei
372
CLAUDE_PROJECT_README.md
Normale Datei
@ -0,0 +1,372 @@
|
||||
# AccountForger
|
||||
|
||||
*This README was automatically generated by Claude Project Manager*
|
||||
|
||||
## Project Overview
|
||||
|
||||
- **Path**: `A:\GiTea\AccountForger`
|
||||
- **Files**: 891 files
|
||||
- **Size**: 354.0 MB
|
||||
- **Last Modified**: 2025-08-01 20:51
|
||||
|
||||
## Technology Stack
|
||||
|
||||
### Languages
|
||||
- Python
|
||||
|
||||
### Frameworks & Libraries
|
||||
- React
|
||||
|
||||
## Project Structure
|
||||
|
||||
```
|
||||
check_rotation_system.py
|
||||
CLAUDE_PROJECT_README.md
|
||||
debug_video_issue.py
|
||||
install_requirements.py
|
||||
main.py
|
||||
package.json
|
||||
README.md
|
||||
requirements.txt
|
||||
run_migration.py
|
||||
application/
|
||||
│ ├── __init__.py
|
||||
│ ├── services/
|
||||
│ │ ├── error_handler.py
|
||||
│ │ └── __init__.py
|
||||
│ └── use_cases/
|
||||
│ ├── adaptive_rate_limit_use_case.py
|
||||
│ ├── analyze_failure_rate_use_case.py
|
||||
│ ├── detect_rate_limit_use_case.py
|
||||
│ ├── export_accounts_use_case.py
|
||||
│ ├── generate_account_fingerprint_use_case.py
|
||||
│ ├── generate_reports_use_case.py
|
||||
│ ├── log_account_creation_use_case.py
|
||||
│ ├── method_rotation_use_case.py
|
||||
│ ├── one_click_login_use_case.py
|
||||
│ └── __init__.py
|
||||
browser/
|
||||
│ ├── cookie_consent_handler.py
|
||||
│ ├── fingerprint_protection.py
|
||||
│ ├── instagram_video_bypass.py
|
||||
│ ├── playwright_extensions.py
|
||||
│ ├── playwright_manager.py
|
||||
│ ├── stealth_config.py
|
||||
│ ├── video_stealth_enhancement.py
|
||||
│ └── __init__.py
|
||||
config/
|
||||
│ ├── app_version.json
|
||||
│ ├── browser_config.json
|
||||
│ ├── email_config.json
|
||||
│ ├── facebook_config.json
|
||||
│ ├── implementation_switch.py
|
||||
│ ├── instagram_config.json
|
||||
│ └── license.json
|
||||
controllers/
|
||||
│ ├── account_controller.py
|
||||
│ ├── main_controller.py
|
||||
│ ├── session_controller.py
|
||||
│ ├── settings_controller.py
|
||||
│ └── platform_controllers/
|
||||
│ ├── base_controller.py
|
||||
│ ├── base_worker_thread.py
|
||||
│ ├── gmail_controller.py
|
||||
│ ├── instagram_controller.py
|
||||
│ ├── method_rotation_mixin.py
|
||||
│ ├── method_rotation_worker_mixin.py
|
||||
│ ├── ok_ru_controller.py
|
||||
│ ├── rotation_error_handler.py
|
||||
│ ├── safe_imports.py
|
||||
│ └── tiktok_controller.py
|
||||
database/
|
||||
│ ├── accounts.db
|
||||
│ ├── account_repository.py
|
||||
│ ├── db_manager.py
|
||||
│ ├── schema_v2.sql
|
||||
│ ├── __init__.py
|
||||
│ └── migrations/
|
||||
│ ├── add_browser_storage_columns.sql
|
||||
│ ├── add_fingerprint_persistence.sql
|
||||
│ ├── add_fingerprint_support.sql
|
||||
│ ├── add_method_rotation_system.sql
|
||||
│ └── remove_unused_fingerprint_columns.sql
|
||||
docs/
|
||||
│ └── CLEAN_ARCHITECTURE.md
|
||||
domain/
|
||||
│ ├── exceptions.py
|
||||
│ ├── __init__.py
|
||||
│ ├── entities/
|
||||
│ │ ├── account_creation_event.py
|
||||
│ │ ├── browser_fingerprint.py
|
||||
│ │ ├── error_event.py
|
||||
│ │ ├── method_rotation.py
|
||||
│ │ ├── rate_limit_policy.py
|
||||
│ │ └── __init__.py
|
||||
│ ├── repositories/
|
||||
│ │ ├── analytics_repository.py
|
||||
│ │ ├── fingerprint_repository.py
|
||||
│ │ ├── method_rotation_repository.py
|
||||
│ │ ├── rate_limit_repository.py
|
||||
│ │ └── __init__.py
|
||||
│ ├── services/
|
||||
│ │ ├── analytics_service.py
|
||||
│ │ ├── fingerprint_service.py
|
||||
│ │ ├── rate_limit_service.py
|
||||
│ │ └── __init__.py
|
||||
│ └── value_objects/
|
||||
│ ├── account_creation_params.py
|
||||
│ ├── action_timing.py
|
||||
│ ├── browser_protection_style.py
|
||||
│ ├── error_summary.py
|
||||
│ ├── login_credentials.py
|
||||
│ ├── operation_result.py
|
||||
│ ├── report.py
|
||||
│ └── __init__.py
|
||||
infrastructure/
|
||||
│ ├── __init__.py
|
||||
│ ├── repositories/
|
||||
│ │ ├── account_repository.py
|
||||
│ │ ├── analytics_repository.py
|
||||
│ │ ├── base_repository.py
|
||||
│ │ ├── fingerprint_repository.py
|
||||
│ │ ├── method_strategy_repository.py
|
||||
│ │ ├── platform_method_state_repository.py
|
||||
│ │ ├── rate_limit_repository.py
|
||||
│ │ ├── rotation_session_repository.py
|
||||
│ │ └── __init__.py
|
||||
│ └── services/
|
||||
│ ├── advanced_fingerprint_service.py
|
||||
│ ├── browser_protection_service.py
|
||||
│ ├── fingerprint_cache_service.py
|
||||
│ ├── instagram_rate_limit_service.py
|
||||
│ ├── structured_analytics_service.py
|
||||
│ ├── __init__.py
|
||||
│ └── fingerprint/
|
||||
│ ├── account_fingerprint_service.py
|
||||
│ ├── browser_injection_service.py
|
||||
│ ├── fingerprint_generator_service.py
|
||||
│ ├── fingerprint_persistence_service.py
|
||||
│ ├── fingerprint_profile_service.py
|
||||
│ ├── fingerprint_rotation_service.py
|
||||
│ ├── fingerprint_validation_service.py
|
||||
│ ├── timezone_location_service.py
|
||||
│ └── __init__.py
|
||||
licensing/
|
||||
│ ├── api_client.py
|
||||
│ ├── hardware_fingerprint.py
|
||||
│ ├── license_manager.py
|
||||
│ ├── license_validator.py
|
||||
│ ├── session_manager.py
|
||||
│ └── __init__.py
|
||||
localization/
|
||||
│ ├── language_manager.py
|
||||
│ ├── __init__.py
|
||||
│ └── languages/
|
||||
│ ├── de.json
|
||||
│ ├── en.json
|
||||
│ ├── es.json
|
||||
│ ├── fr.json
|
||||
│ └── ja.json
|
||||
logs/
|
||||
│ ├── instagram_automation.log
|
||||
│ ├── instagram_controller.log
|
||||
│ ├── instagram_login.log
|
||||
│ ├── instagram_registration.log
|
||||
│ ├── instagram_ui_helper.log
|
||||
│ ├── instagram_utils.log
|
||||
│ ├── instagram_verification.log
|
||||
│ ├── instagram_workflow.log
|
||||
│ ├── main.log
|
||||
│ └── screenshots/
|
||||
│ ├── after_account_create_click_1753044575.png
|
||||
│ ├── after_account_create_click_1753044886.png
|
||||
│ ├── after_account_create_click_1753045178.png
|
||||
│ ├── after_account_create_click_1753045715.png
|
||||
│ ├── after_account_create_click_1753045915.png
|
||||
│ ├── after_account_create_click_1753046167.png
|
||||
│ ├── after_account_create_click_1753046976.png
|
||||
│ ├── after_account_create_click_1753047240.png
|
||||
│ ├── after_account_create_click_1753047386.png
|
||||
│ └── after_account_create_click_1753048280.png
|
||||
resources/
|
||||
│ ├── icons/
|
||||
│ │ ├── check-white.svg
|
||||
│ │ ├── check.svg
|
||||
│ │ ├── de.svg
|
||||
│ │ ├── en.svg
|
||||
│ │ ├── es.svg
|
||||
│ │ ├── facebook.svg
|
||||
│ │ ├── fr.svg
|
||||
│ │ ├── gmail.svg
|
||||
│ │ ├── instagram.svg
|
||||
│ │ └── intelsight-logo.svg
|
||||
│ └── themes/
|
||||
│ ├── dark.qss
|
||||
│ └── light.qss
|
||||
screenshots
|
||||
social_networks/
|
||||
│ ├── base_automation.py
|
||||
│ ├── __init__.py
|
||||
│ ├── facebook/
|
||||
│ │ ├── facebook_automation.py
|
||||
│ │ ├── facebook_login.py
|
||||
│ │ ├── facebook_registration.py
|
||||
│ │ ├── facebook_selectors.py
|
||||
│ │ ├── facebook_ui_helper.py
|
||||
│ │ ├── facebook_utils.py
|
||||
│ │ ├── facebook_verification.py
|
||||
│ │ ├── facebook_workflow.py
|
||||
│ │ └── __init__.py
|
||||
│ ├── gmail/
|
||||
│ │ ├── gmail_automation.py
|
||||
│ │ ├── gmail_login.py
|
||||
│ │ ├── gmail_registration.py
|
||||
│ │ ├── gmail_selectors.py
|
||||
│ │ ├── gmail_ui_helper.py
|
||||
│ │ ├── gmail_utils.py
|
||||
│ │ ├── gmail_verification.py
|
||||
│ │ ├── gmail_workflow.py
|
||||
│ │ └── __init__.py
|
||||
│ ├── instagram/
|
||||
│ │ ├── instagram_automation.py
|
||||
│ │ ├── instagram_login.py
|
||||
│ │ ├── instagram_registration.py
|
||||
│ │ ├── instagram_selectors.py
|
||||
│ │ ├── instagram_ui_helper.py
|
||||
│ │ ├── instagram_utils.py
|
||||
│ │ ├── instagram_verification.py
|
||||
│ │ ├── instagram_workflow.py
|
||||
│ │ └── __init__.py
|
||||
│ ├── ok_ru/
|
||||
│ │ ├── ok_ru_automation.py
|
||||
│ │ ├── ok_ru_login.py
|
||||
│ │ ├── ok_ru_registration.py
|
||||
│ │ ├── ok_ru_selectors.py
|
||||
│ │ ├── ok_ru_ui_helper.py
|
||||
│ │ ├── ok_ru_utils.py
|
||||
│ │ ├── ok_ru_verification.py
|
||||
│ │ └── __init__.py
|
||||
│ ├── tiktok/
|
||||
│ │ ├── tiktok_automation.py
|
||||
│ │ ├── tiktok_login.py
|
||||
│ │ ├── tiktok_registration.py
|
||||
│ │ ├── tiktok_registration_backup.py
|
||||
│ │ ├── tiktok_registration_final.py
|
||||
│ │ ├── tiktok_registration_new.py
|
||||
│ │ ├── tiktok_selectors.py
|
||||
│ │ ├── tiktok_ui_helper.py
|
||||
│ │ ├── tiktok_utils.py
|
||||
│ │ └── tiktok_verification.py
|
||||
│ ├── twitter/
|
||||
│ │ ├── twitter_automation.py
|
||||
│ │ ├── twitter_login.py
|
||||
│ │ ├── twitter_registration.py
|
||||
│ │ ├── twitter_selectors.py
|
||||
│ │ ├── twitter_ui_helper.py
|
||||
│ │ ├── twitter_utils.py
|
||||
│ │ ├── twitter_verification.py
|
||||
│ │ ├── twitter_workflow.py
|
||||
│ │ └── __init__.py
|
||||
│ ├── vk/
|
||||
│ │ ├── vk_automation.py
|
||||
│ │ ├── vk_login.py
|
||||
│ │ ├── vk_registration.py
|
||||
│ │ ├── vk_selectors.py
|
||||
│ │ ├── vk_ui_helper.py
|
||||
│ │ ├── vk_utils.py
|
||||
│ │ ├── vk_verification.py
|
||||
│ │ ├── vk_workflow.py
|
||||
│ │ └── __init__.py
|
||||
│ └── x/
|
||||
│ ├── x_automation.py
|
||||
│ ├── x_login.py
|
||||
│ ├── x_registration.py
|
||||
│ ├── x_selectors.py
|
||||
│ ├── x_ui_helper.py
|
||||
│ ├── x_utils.py
|
||||
│ ├── x_verification.py
|
||||
│ ├── x_workflow.py
|
||||
│ └── __init__.py
|
||||
styles/
|
||||
│ ├── modal_styles.py
|
||||
│ └── __init__.py
|
||||
tests/
|
||||
│ └── test_method_rotation.py
|
||||
updates/
|
||||
│ ├── downloader.py
|
||||
│ ├── update_checker.py
|
||||
│ ├── update_v1.1.0.zip
|
||||
│ ├── version.py
|
||||
│ └── __init__.py
|
||||
utils/
|
||||
│ ├── birthday_generator.py
|
||||
│ ├── email_handler.py
|
||||
│ ├── human_behavior.py
|
||||
│ ├── logger.py
|
||||
│ ├── modal_manager.py
|
||||
│ ├── modal_test.py
|
||||
│ ├── password_generator.py
|
||||
│ ├── performance_monitor.py
|
||||
│ ├── proxy_rotator.py
|
||||
│ └── result_decorators.py
|
||||
views/
|
||||
├── about_dialog.py
|
||||
├── main_window.py
|
||||
├── platform_selector.py
|
||||
├── components/
|
||||
│ ├── accounts_overview_view.py
|
||||
│ ├── platform_grid_view.py
|
||||
│ ├── tab_navigation.py
|
||||
│ └── __init__.py
|
||||
├── dialogs/
|
||||
│ ├── account_creation_result_dialog.py
|
||||
│ ├── license_activation_dialog.py
|
||||
│ └── __init__.py
|
||||
├── tabs/
|
||||
│ ├── accounts_tab.py
|
||||
│ ├── generator_tab.py
|
||||
│ ├── generator_tab_modern.py
|
||||
│ └── settings_tab.py
|
||||
└── widgets/
|
||||
├── account_card.py
|
||||
├── account_creation_modal.py
|
||||
├── account_creation_modal_v2.py
|
||||
├── forge_animation_widget.py
|
||||
├── forge_animation_widget_v2.py
|
||||
├── icon_factory.py
|
||||
├── language_dropdown.py
|
||||
├── login_process_modal.py
|
||||
├── modern_message_box.py
|
||||
└── platform_button.py
|
||||
```
|
||||
|
||||
## Key Files
|
||||
|
||||
- `package.json`
|
||||
- `README.md`
|
||||
- `requirements.txt`
|
||||
|
||||
## Claude Integration
|
||||
|
||||
This project is managed with Claude Project Manager. To work with this project:
|
||||
|
||||
1. Open Claude Project Manager
|
||||
2. Click on this project's tile
|
||||
3. Claude will open in the project directory
|
||||
|
||||
## Notes
|
||||
|
||||
*Add your project-specific notes here*
|
||||
|
||||
---
|
||||
|
||||
## Development Log
|
||||
|
||||
- README generated on 2025-07-27 11:07:01
|
||||
- README updated on 2025-07-28 18:14:33
|
||||
- README updated on 2025-07-29 19:24:34
|
||||
- README updated on 2025-07-31 00:00:41
|
||||
- README updated on 2025-08-01 19:02:35
|
||||
- README updated on 2025-08-01 20:50:22
|
||||
- README updated on 2025-08-01 20:51:41
|
||||
- README updated on 2025-08-01 21:06:44
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren