418 Zeilen
15 KiB
Markdown
418 Zeilen
15 KiB
Markdown
# AccountForger
|
|
|
|
*This README was automatically generated by Claude Project Manager*
|
|
|
|
## Project Overview
|
|
|
|
- **Path**: `A:\GiTea\AccountForger`
|
|
- **Files**: 886 files
|
|
- **Size**: 125.8 MB
|
|
- **Last Modified**: 2025-09-10 21:18
|
|
|
|
## Technology Stack
|
|
|
|
### Languages
|
|
- Python
|
|
|
|
### Frameworks & Libraries
|
|
- React
|
|
|
|
## Project Structure
|
|
|
|
```
|
|
check_rotation_system.py
|
|
CLAUDE_PROJECT_README.md
|
|
debug_video_issue.py
|
|
init
|
|
install_requirements.py
|
|
main.py
|
|
package.json
|
|
README.md
|
|
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
|
|
│ ├── facebook_controller.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
|
|
│ └── mixins
|
|
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
|
|
│ └── GMAIL_PHONE_BYPASS_IMPROVEMENTS_2025.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
|
|
│ ├── enums
|
|
│ ├── 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/
|
|
│ ├── facebook_automation.log
|
|
│ ├── facebook_controller.log
|
|
│ ├── facebook_login.log
|
|
│ ├── facebook_registration.log
|
|
│ ├── facebook_ui_helper.log
|
|
│ ├── facebook_utils.log
|
|
│ ├── facebook_verification.log
|
|
│ ├── facebook_workflow.log
|
|
│ ├── gmail_controller.log
|
|
│ ├── net/
|
|
│ │ ├── gmail_landing_de.html
|
|
│ │ └── google_signup_mail_de.html
|
|
│ ├── proxyfather_tests/
|
|
│ │ ├── free_test_20250814_134106.log
|
|
│ │ ├── free_test_20250814_134123.log
|
|
│ │ └── free_test_20250814_135000.log
|
|
│ └── screenshots/
|
|
│ ├── after_account_create_click_1755281004.png
|
|
│ ├── after_account_create_click_1757531758.png
|
|
│ ├── after_code_retrieval_1757531778.png
|
|
│ ├── after_login_button_click_1755168832.png
|
|
│ ├── after_login_button_click_1755280227.png
|
|
│ ├── after_login_button_click_1755280551.png
|
|
│ ├── after_login_button_click_1755280826.png
|
|
│ ├── after_login_button_click_1755282576.png
|
|
│ ├── after_login_button_click_1755282842.png
|
|
│ └── after_login_button_click_1755341790.png
|
|
resources/
|
|
│ ├── icons/
|
|
│ │ ├── check-white.svg
|
|
│ │ ├── check.svg
|
|
│ │ ├── de.svg
|
|
│ │ ├── en.svg
|
|
│ │ ├── es.svg
|
|
│ │ ├── facebook.svg
|
|
│ │ ├── fr.svg
|
|
│ │ ├── gmail.svg
|
|
│ │ ├── instagram.svg
|
|
│ │ └── intelsight-dark.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_selectors.py
|
|
│ │ ├── tiktok_ui_helper.py
|
|
│ │ ├── tiktok_utils.py
|
|
│ │ ├── tiktok_verification.py
|
|
│ │ ├── tiktok_workflow.py
|
|
│ │ └── __init__.py
|
|
│ ├── twitter
|
|
│ ├── 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
|
|
│ ├── bright_data/
|
|
│ │ └── logs/
|
|
│ │ ├── proxy_test_20250813_172156.log
|
|
│ │ ├── proxy_test_20250813_173258.log
|
|
│ │ ├── proxy_test_20250813_173828.log
|
|
│ │ ├── proxy_test_20250813_174940.log
|
|
│ │ ├── proxy_test_20250813_175937.log
|
|
│ │ ├── proxy_test_20250813_180630.log
|
|
│ │ ├── proxy_test_20250813_181050.log
|
|
│ │ ├── proxy_test_20250813_182854.log
|
|
│ │ ├── proxy_test_20250813_185011.log
|
|
│ │ └── proxy_test_20250813_185850.log
|
|
│ ├── ProxyFather/
|
|
│ │ └── logs/
|
|
│ │ ├── connection_test_20250814_015554.log
|
|
│ │ ├── connection_test_20250814_023651.log
|
|
│ │ ├── instagram_test_20250814_015725.log
|
|
│ │ ├── instagram_test_20250814_015846.log
|
|
│ │ ├── instagram_test_20250814_020102.log
|
|
│ │ ├── instagram_test_20250814_020429.log
|
|
│ │ ├── instagram_test_20250814_021100.log
|
|
│ │ ├── instagram_test_20250814_022223.log
|
|
│ │ ├── instagram_test_20250814_023255.log
|
|
│ │ └── instagram_test_20250814_024719.log
|
|
│ └── proxy_evaluation/
|
|
│ ├── test_results/
|
|
│ │ ├── baseline_summary.json
|
|
│ │ ├── baseline_test_20250813_143756.json
|
|
│ │ ├── baseline_test_20250813_144600.json
|
|
│ │ ├── browser_proxy_test_20250813_143241.json
|
|
│ │ ├── browser_proxy_test_20250813_144227.json
|
|
│ │ ├── browser_test_summary.json
|
|
│ │ ├── facebook_isp_dedicated.png
|
|
│ │ ├── facebook_isp_shared.png
|
|
│ │ ├── facebook_test_20250813_150605.json
|
|
│ │ └── ip_rotation_test_20250813_142319.json
|
|
│ └── test_screenshots/
|
|
│ ├── baseline_google.png
|
|
│ ├── baseline_instagram.png
|
|
│ ├── baseline_tiktok.png
|
|
│ ├── basic_connection.png
|
|
│ ├── gmail_loaded.png
|
|
│ ├── instagram_loaded.png
|
|
│ ├── tiktok_loaded.png
|
|
│ └── twitter_x_loaded.png
|
|
themes/
|
|
│ ├── qss_generator.py
|
|
│ ├── theme_config.py
|
|
│ └── __init__.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
|
|
├── base/
|
|
│ ├── theme_aware_widget.py
|
|
│ └── __init__.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
|
|
│ ├── facebook_generator_tab.py
|
|
│ ├── generator_tab.py
|
|
│ └── settings_tab.py
|
|
└── widgets/
|
|
├── account_card.py
|
|
├── account_creation_modal.py
|
|
├── dark_mode_toggle.py
|
|
├── forge_animation_widget.py
|
|
├── icon_factory.py
|
|
├── language_dropdown.py
|
|
├── login_process_modal.py
|
|
├── modern_message_box.py
|
|
├── platform_button.py
|
|
└── progress_modal.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-09-06 21:49:36
|
|
- README updated on 2025-09-13 20:45:18
|