Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Email Send

Send a quick email via SMTP using `msmtp` without opening a full mail client.

MIT-0 · Free to use, modify, and redistribute. No attribution required.
1 · 2.8k · 19 current installs · 22 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The name and description (send email via msmtp) match the requirements: msmtp is the only required binary and the provided usage examples show msmtp invocations. Installing msmtp via dnf is proportionate to the stated purpose.
Instruction Scope
The SKILL.md contains only msmtp usage examples and stays within the email-sending scope. It does mention options like --attach without detailed handling for attachments (which is an implementation detail), but it does not instruct the agent to read unrelated files or contact unexpected endpoints.
Install Mechanism
Install uses the dnf package manager to install msmtp — a standard distribution package. This is reasonable, but platform-limited (dnf is for RPM-based Linux). No downloads from arbitrary URLs or archive extraction are present.
!
Credentials
SKILL.md explicitly says the skill requires SMTP_HOST, SMTP_PORT, SMTP_USER, SMTP_PASS environment variables (sensitive credentials), but the registry metadata lists no required env vars or primary credential. That mismatch is concerning: the agent or skill runtime may access sensitive SMTP credentials even though the metadata did not declare them. Requesting SMTP credentials itself is proportionate for sending mail, but the omission from metadata reduces transparency and could lead to unexpected credential use.
Persistence & Privilege
The skill does not request always: true, does not declare config-path access, and does not attempt to modify other skills' configs. It is user-invocable and allows autonomous invocation (platform default), which is expected for skills of this type.
What to consider before installing
This is an instruction-only skill that uses msmtp to send email — that purpose matches the msmtp requirement and dnf install. However, SKILL.md requires SMTP_HOST, SMTP_PORT, SMTP_USER, and SMTP_PASS (sensitive credentials) while the registry metadata lists no required env vars. Before installing, confirm: (1) where and how the agent will obtain or read those environment variables (are they passed automatically or will the agent read your environment?), (2) that you only provide a dedicated SMTP account with minimum privileges, (3) that you trust the skill source (no code to audit here), and (4) the runtime platform uses dnf (otherwise installation will fail). If you proceed, prefer creating a throwaway SMTP account or credentials with limited scope, and test in an isolated environment first.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk97e7s5a5gbthqqb74r6mrn7qh80fz26

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

📧 Clawdis
Binsmsmtp

SKILL.md

Email Send Skill

Send a quick email via SMTP without opening the full himalaya client. Requires SMTP_HOST, SMTP_PORT, SMTP_USER, SMTP_PASS env vars.

Sending Email

Send a basic email:

echo "Meeting at 3pm tomorrow." | msmtp recipient@example.com

Send with subject and headers:

printf "To: recipient@example.com\nSubject: Quick update\n\nHey, the deploy is done." | msmtp recipient@example.com

Options

  • --cc -- carbon copy recipients
  • --bcc -- blind carbon copy recipients
  • --attach <file> -- attach a file

Install

sudo dnf install msmtp

Files

2 total
Select a file
Select a file to preview.

Comments

Loading comments…