CapMonster CAPTCHA Solver
Analysis
This skill openly solves and injects CAPTCHA tokens through a paid third-party service, so it can bypass website human-verification gates and should be reviewed before use.
Findings (5)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
gTextarea.value = TOKEN; ... cb(TOKEN); ... cfInput.value = TOKEN;
The script injects a solved CAPTCHA token into page fields and calls CAPTCHA callbacks, which is the mechanism for bypassing CAPTCHA challenges in browser automation.
client = CapMonsterClient("${CAPMONSTER_API_KEY}")The API key placeholder appears directly inside executable Python example code; if a templating layer substitutes raw values into this source, unusual key contents could affect generated code.
Python Client: `tools/capmonster-cloud/capmonster_api.py` ... sys.path.insert(0, '/Users/eason/clawd/tools/capmonster-cloud')
The skill references a helper Python client and absolute local path that are not included in the provided manifest, creating a provenance gap if users follow that example.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
API_KEY="${CAPMONSTER_API_KEY}" ... "clientKey": "$API_KEY"The script uses a CapMonster API key to create paid CAPTCHA-solving tasks, even though the registry metadata declares no required credential.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
curl -s -X POST https://api.capmonster.cloud/createTask ... "websiteURL": "$WEBSITE_URL", "websiteKey": "$SITEKEY"
The target website URL and CAPTCHA site key are sent to the external CapMonster Cloud API, which is expected for the service but still crosses a data boundary.
