Skip to main content

data-encryption

Implements strong encryption strategies using AES, RSA, and TLS for securing sensitive data at rest and in transit.

Install this skill

or
85/100

Security score

The data-encryption skill was audited on Feb 12, 2026 and we found 15 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

low line 213

Access to .env file

SourceSKILL.md
213passphrase: process.env.KEY_PASSPHRASE || 'top-secret'
low line 337

Base64 decode operation

SourceSKILL.md
337'ciphertext': base64.b64encode(ciphertext).decode(),
low line 338

Base64 decode operation

SourceSKILL.md
338'iv': base64.b64encode(iv).decode(),
low line 339

Base64 decode operation

SourceSKILL.md
339'tag': base64.b64encode(encryptor.tag).decode()
low line 347

Base64 decode operation

SourceSKILL.md
347base64.b64decode(iv),
low line 348

Base64 decode operation

SourceSKILL.md
348base64.b64decode(tag)
low line 354

Base64 decode operation

SourceSKILL.md
354plaintext = decryptor.update(base64.b64decode(ciphertext)) + decryptor.finalize()
low line 367

Base64 decode operation

SourceSKILL.md
367f.write(base64.b64decode(result['iv']))
low line 368

Base64 decode operation

SourceSKILL.md
368f.write(base64.b64decode(result['ciphertext']))
low line 369

Base64 decode operation

SourceSKILL.md
369f.write(base64.b64decode(result['tag']))
low line 470

Base64 decode operation

SourceSKILL.md
470print(f"Derived key: {base64.b64encode(key).decode()}")
low line 619

External URL reference

SourceSKILL.md
619- [NIST Cryptographic Standards](https://csrc.nist.gov/publications/fips)
low line 620

External URL reference

SourceSKILL.md
620- [OWASP Cryptographic Storage Cheat Sheet](https://cheatsheetseries.owasp.org/cheatsheets/Cryptographic_Storage_Cheat_Sheet.html)
low line 621

External URL reference

SourceSKILL.md
621- [Node.js Crypto Documentation](https://nodejs.org/api/crypto.html)
low line 622

External URL reference

SourceSKILL.md
622- [Python Cryptography Library](https://cryptography.io/)
Scanned on Feb 12, 2026
View Security Dashboard
Installation guide →
GitHub Stars 55
Rate this skill
Categorydevelopment
UpdatedMay 21, 2026
NeverSight/skills_feed