afrexai-git-engineering

clawhub:afrexai-git-engineering

View source
B
77/100

First Seen

Feb 20, 2026

Last Scanned

Feb 22, 2026

Findings

3

Score

77/100

HIGH 1
MEDIUM 1
LOW 1

Findings (3)

HIGH
Private data read with public output
L633

Skill can read private data (credentials, SSH keys, env vars) AND write to public channels (Slack, Discord, email). This combination enables data exfiltration.

[reads_private_data] access logs for the exposed credential + [writes_public_output] Post to Slack
FIX

Break the toxic data flow by adding validation and sanitization between the input source and the sensitive operation. Do not pass untrusted data directly to file system, network, or execution APIs.

FP?

Likely FP if the data flow involves only trusted, hardcoded values and the taint analysis over-approximated the untrusted input sources.

MEDIUM
Git history or diff access with transmission
L128

Detects accessing git history, diffs, or repo data combined with external transmission

git log + Post to Slack
FIX

Prevent the tool from accessing and transmitting database contents. If database access is needed, restrict queries to specific tables and block bulk data export.

FP?

Likely FP if the skill is a database management tool where querying and displaying data to the user is the documented core feature.

LOW
Screenshot or screen capture with transmission
L193

Detects screenshot/screen capture tools combined with upload or transmission

Screenshot + Post to Slack
FIX

Block the ability to read and transmit contents of configuration files (.env, config.json, settings.yaml). Implement file path validation to prevent access to sensitive config files.

FP?

Likely FP if the skill reads config files to configure itself locally without transmitting the contents externally.