George Banking Automation

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

ConcernMedium Confidence
ASI02: Tool Misuse and Exploitation
What this means

An agent could be given capability to perform payment-file or other banking submission/signing workflows, which may affect real bank accounts if invoked incorrectly.

Why it was flagged

These commands appear to upload and sign bank data-carrier files, a high-impact financial action, while the skill description primarily advertises login, accounts, and transaction fetching.

Skill content
python3 {baseDir}/scripts/george.py datacarrier-upload <file> [--type pain.001] ...
python3 {baseDir}/scripts/george.py datacarrier-sign <datacarrier_id> ...
Recommendation

Only install if you specifically need data-carrier upload/signing, and require explicit human review and bank-side confirmation before any signing command is run.

What this means

Anyone or anything with access to the workspace state may be able to reuse banking session material until it expires or is cleared.

Why it was flagged

The skill persists bank authentication/session material locally, which is expected for this integration but is sensitive account access.

Skill content
Session tokens are cached in `{workspace}/george/token.json` to avoid repeated 2FA prompts.
Recommendation

Use this only in a trusted workspace, protect the workspace directory, and run the documented logout command after use.

What this means

The installed browser automation stack becomes part of the trusted execution path for online banking automation.

Why it was flagged

The setup relies on installing Playwright and a browser runtime; this is normal for the stated Playwright automation purpose but introduces dependency provenance considerations.

Skill content
pip install playwright
playwright install chromium
Recommendation

Install dependencies from official sources in an isolated environment and keep them updated.