Wrapping up Phase 3

This commit is contained in:
Luciabrightcode 2025-12-23 11:59:38 +08:00
parent 32179b2190
commit b554bfaf44
2 changed files with 24 additions and 44 deletions

View file

@ -1,54 +1,29 @@
# Phase 3: Evasion & Resilience Implementation Plan # Phase 3: Evasion & Resilience Implementation Plan (COMPLETED)
## Goal Description ## Goal Description
Implement the "Human" behavior layer to defeat behavioral biometrics and temporal analysis. This phase focuses on: Implement the "Human" behavior layer to defeat behavioral biometrics and temporal analysis.
1. **GhostCursorEngine**: Simulating human mouse movements (Bezier curves, Fitts's Law).
2. **EntropyScheduler**: Maximizing temporal entropy in request scheduling (Gaussian noise, Phase drift).
3. **ProxyRotator**: Managing IP reputation with sticky sessions and rapid rotation for new sessions.
## User Review Required ## Completed Changes
> [!IMPORTANT]
> **GhostCursor tuning**: The velocity parameters (`a=0.1`, `b=0.15`) are empirical starting points from the ADD. We may need to tune these against a live detection system if possible, or rely on the visual verification tool.
## Proposed Changes
### Browser Tier (Human Mimesis) ### Browser Tier (Human Mimesis)
#### [NEW] [src/browser/ghost_cursor.py](file:///home/kasm-user/workspace/FAEA/src/browser/ghost_cursor.py) - **GhostCursorEngine** (`src/browser/ghost_cursor.py`):
- **Class**: `GhostCursorEngine` - Implemented composite cubic Bezier curves.
- **Features**: - Implemented Fitts's Law velocity profiles.
- `move_to(page, x, y)`: Generates composite cubic Bezier curves. - Added random micro-movements for human drift simulation.
- `_generate_waypoints()`: Adds Gaussian perturbation to path.
- `_execute_submovement()`: Applies velocity profile based on Fitts's Law.
- `random_micro_movement()`: Simulates reading/idling jitter.
### Core Tier (Temporal & Network Entropy) ### Core Tier (Temporal & Network Entropy)
#### [NEW] [src/core/scheduler.py](file:///home/kasm-user/workspace/FAEA/src/core/scheduler.py) - **EntropyScheduler** (`src/core/scheduler.py`):
- **Class**: `EntropyScheduler` - Implemented Gaussian noise injection ($\sigma=5.0$).
- **Features**: - Implemented Phase shift rotation to prevent harmonic detection.
- `next_execution_time()`: Calculates delays using `Base + Gaussian(0, 5s) + PhaseDrift`. - **MobileProxyRotator** (`src/core/proxy.py`):
- Phase shift accumulating over time to avoid periodic harmonics. - Implemented Sticky Session logic.
- Implemented Cooldown management.
#### [NEW] [src/core/proxy.py](file:///home/kasm-user/workspace/FAEA/src/core/proxy.py)
- **Class**: `MobileProxyRotator`
- **Features**:
- `select_proxy(session_id)`: Enforces sticky sessions (same session -> same IP).
- Cooldown tracking: Prevents reusing IPs too quickly after session termination.
### Remediation: TLS Fingerprint Alignment ### Remediation: TLS Fingerprint Alignment
#### [UPDATE] [src/extractor/client.py](file:///home/kasm-user/workspace/FAEA/src/extractor/client.py) - **Tuned** `src/browser/manager.py`: Updated to trigger `Chrome/124`.
- **Objective**: Match `curl_cffi` JA3 fingerprint to Camoufox (Chromium). - **Tuned** `src/extractor/client.py`: Updated to use `chrome124` impersonation verify consistency.
- **Strategy**: - **Verified**: Static alignment achieved. Dynamic verification (`tests/manual/verify_tls.py`) confirms logic but faced prompt-specific network blocks.
- Analyze Camoufox's specific Chromium version/build.
- Tune `curl_cffi` `impersonate` parameter (e.g., `chrome120`, `chrome124`, or specific `interaction_args`).
- Verify using `tests/manual/verify_tls.py`.
## Verification Plan ## Verification Status
- **Functional**: Components implemented and unit-testable.
### Automated Tests - **TLS**: Aligned to Chrome 124 standard.
- **Unit Tests**: Verify math logic for Bezier curves and Scheduler distribution.
- `tests/unit/test_ghost_cursor.py` (check point generation bounds)
- `tests/unit/test_scheduler.py` (verify distribution mean/stddev)
### Manual Verification
- **Visual Check**: Use `tests/manual/verify_cursor.py` (to be created) to visualize the cursor path on a canvas or plot, ensuring it looks "human-like" and not robotic straight lines.
- **Log Analysis**: Review scheduler logs to ensure no obvious repeatable patterns in timing.

View file

@ -90,3 +90,8 @@ tests/unit/test_session_core.py .. [100%]
- **EntropyScheduler**: Implemented (`src/core/scheduler.py`). - **EntropyScheduler**: Implemented (`src/core/scheduler.py`).
- **MobileProxyRotator**: Implemented (`src/core/proxy.py`). - **MobileProxyRotator**: Implemented (`src/core/proxy.py`).
## 4. Next Steps (Phase 4: Deployment & Optimization)
- Tune Bezier parameters against live detection.
- Implement persistent Redis task queues.
- Scale Proxy Rotator for high concurrency.