Files
AccountForger-neuerUpload/CLAUDE_PROJECT_README.md
2025-11-27 21:17:32 +01:00

16 KiB

AccountForger

This README was automatically generated by Claude Project Manager

Project Overview

  • Path: A:\GiTea\AccountForger
  • Files: 1394 files
  • Size: 257.7 MB
  • Last Modified: 2025-11-27 19:34

Technology Stack

Languages

  • Python

Frameworks & Libraries

  • React

Project Structure

check_rotation_system.py
CLAUDE.md
CLAUDE_PROJECT_README.md
debug_video_issue.py
init
install_requirements.py
main.py
package.json
application/
│   ├── __init__.py
│   ├── services/
│   │   ├── error_handler.py
│   │   ├── platform_service.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
│   ├── profile_export_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
│   │   ├── platform.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
│       ├── platform_name.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/
│   ├── chrome_session_host.log
│   ├── 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
│   ├── 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_account_create_click_1757807105.png
│       ├── after_account_create_click_1757807217.png
│       ├── after_account_create_click_1757810496.png
│       ├── after_account_create_click_1759527439.png
│       ├── after_account_create_click_1759870629.png
│       ├── after_account_create_click_1760212451.png
│       ├── after_account_create_click_1760212811.png
│       └── after_account_create_click_1760913660.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
scripts/
│   └── fix_x_accounts.py
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
│   │   ├── IMPROVEMENT_SUGGESTIONS.md
│   │   └── __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
│   ├── 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_generator_tab_factory.py
│   ├── 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
│   ├── process_guard.py
│   └── profile_export_service.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
    │   ├── export_success_dialog.py
    │   ├── license_activation_dialog.py
    │   ├── profile_export_dialog.py
    │   └── __init__.py
    ├── tabs/
    │   ├── accounts_tab.py
    │   ├── facebook_generator_tab.py
    │   ├── generator_tab.py
    │   ├── generator_tab_factory.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
  • README updated on 2025-09-14 11:33:43
  • README updated on 2025-09-14 18:54:48
  • README updated on 2025-09-17 19:46:22
  • README updated on 2025-09-21 10:31:22
  • README updated on 2025-09-24 19:25:49
  • README updated on 2025-10-03 20:29:19
  • README updated on 2025-10-08 22:32:21
  • README updated on 2025-10-08 22:34:43
  • README updated on 2025-10-18 22:23:22
  • README updated on 2025-11-09 21:00:06
  • README updated on 2025-11-16 22:31:39
  • README updated on 2025-11-16 22:32:35
  • README updated on 2025-11-27 19:33:36
  • README updated on 2025-11-27 19:34:18
  • README updated on 2025-11-27 19:41:04