Flashloan

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This looks like a simple local note-taking script mislabeled as a flashloan analysis/security skill; it stores data locally and shows no credential or network exfiltration.

Use this only if you want a simple local entry log, not actual flashloan or protocol-security analysis. Avoid entering secrets, and review or delete the ~/.flashloan data directory if you do not want the stored entries to persist.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

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.

What this means

A user may believe the skill provides blockchain or protocol-security analysis when it only manages local text entries.

Why it was flagged

The skill advertises flashloan/security analysis, but its documented commands are generic local entry management. This mismatch could cause a user to trust it for protocol analysis it does not actually perform.

Skill content
description: "Analyze flashloan operations... evaluate protocol security..."

- **add**: Add new entry
- **list**: List all entries
- **search**: Search entries
- **remove**: Remove entry by number
- **export**: Export data to file
Recommendation

Treat this as a local note/log utility unless the publisher adds real flashloan analysis functionality and updates the documentation to accurately describe behavior.

What this means

Running the skill can execute local shell commands that create, modify, remove, and export the skill's own data files.

Why it was flagged

The skill instructs use of a bundled shell script. The script is visible and local, and no hidden downloads or automatic execution are shown, but users should notice that installing the skill enables local command execution when invoked.

Skill content
```bash
scripts/script.sh status
```
...
```bash
scripts/script.sh add
```
Recommendation

Review the included script before running it and only invoke commands you intend to use.

What this means

Anything entered into the skill remains on disk until removed and may be surfaced or exported later.

Why it was flagged

User-provided entries are persisted in a local JSONL file under ~/.flashloan by default and can later be listed, searched, or exported.

Skill content
DATA_DIR="${FLASHLOAN_DIR:-$HOME/.flashloan}"
...
printf '{"ts":"%s","cmd":"%s","val":"%s"}\n' "$ts" "$cmd" "$val" >> "$DATA_DIR/data.jsonl"
Recommendation

Do not store secrets or sensitive private analysis in this skill unless you are comfortable with local plaintext storage; use the remove command or delete ~/.flashloan if needed.