agentsclimarketplace

Vant skill audit security

Skill dhaupin/vant/models/public/skills/vant-skill-audit-security

Vant: Durable AI memory + cold storage + runtime for agents, with generational evolution, stored passively via GitHub. Built for long-running autonomous sessions, using file based persistence.

Install
npx -y skills add dhaupin/vant --skill vant-skill-audit-security

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Is this safe?

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.1 KB, as published. Nobody here has run it

Security Audit

Is this safe?


When To Run

  • Before deploy
  • After adding auth/credentials
  • New endpoints
  • External inputs

What To Check

1. Credentials

# Hardcoded secrets?
grep -rn "sk-\|api_key\|password\|secret" . --include="*.js"
grep -rn "Bearer\|Token" . --include="*.js"
CheckIssueFix
Hardcoded API keyHIGHUse env var
Password in codeHIGHUse env
Token in logsMEDIUMRedact

2. Inputs

// Never trust user input
req.params.id
req.body.data
query.string
CheckIssueFix
SQL from inputHIGHParameterize
Eval inputHIGHRemove eval
Shell from inputHIGHNo shell
File from inputHIGHValidate path

3. Auth

// Check auth exists
function protected() {
  if (!req.user) return error
  // Good
}
CheckIssueFix
No auth checkHIGHAdd auth
Auth bypassedHIGHFix
Weak authMEDIUMStrengthen

4. Network

CheckIssue
HTTP not HTTPSUse HTTPS
Credentials in URLHeaders only
No CORSSet CORS

5. Filesystem

// Check file access
fs.readFile(userPath)
CheckIssueFix
Path traversalHIGHSanitize
Read any fileHIGHValidate
Write anywhereHIGHRestrict

Output

## Security Audit - [file]

### Credentials
- [PASS/FAIL] Hardcoded keys: [details]

### Inputs  
- [PASS/FAIL] SQL injection: [details]

### Auth
- [PASS/FAIL] Protected: [details]

### Summary
| Severity | Count |
|----------|-------|
| HIGH     | 0     |
| MEDIUM   | 0     |
| LOW     | 0     |

Severity

SeverityMeaning
HIGHExploit - fix now
MEDIUMRisk - fix soon
LOWNote - fix Optional

Role: Security Auditor
Input: Code to review
Output: Issues found

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.