viberslib
Back to all lists
List · 13 terms

Security Vibes.

Security basics every fast-shipping vibe coder must know.

001

2FA

Security

Two-Factor Authentication. The two-factor case of MFA; usually password + TOTP/SMS.

002

Access Token

Security

Short-lived (usually 1h) bearer token for API access. Can be a JWT or opaque.

003

CSRF

Security

Cross-Site Request Forgery. Using a logged-in user's session from another site to perform malicious actions. SameSite cookies + tokens defend.

004

CORS

Security

Cross-Origin Resource Sharing. Browser mechanism controlling JS requests across origins.

005

CSP

Security

Content Security Policy header. Tells the browser which script/style/image sources are allowed. The strongest XSS curtain.

006

Clickjacking

Security

Hiding your page in a transparent iframe under another site so users mis-click. X-Frame-Options + CSP frame-ancestors prevent it.

007

CVE

Security

Common Vulnerabilities and Exposures. Unique ID assigned to each known vulnerability (e.g., `CVE-2025-29927`).

008

CVSS

Security

Common Vulnerability Scoring System. Scoring a CVE's severity 0-10. >9 = critical; your inbox changes tone.

009

Audit Log

Security

Records of who did what, when. Required for SOC2 compliance + incident investigation.

010

ABAC

Security

Attribute-Based Access Control. "User in this dept and file at this sensitivity" style policy. More flexible than RBAC, higher complexity.

011

ACL

Security

Access Control List. Per-resource list of user/role permissions. Linux file perms; AWS S3 bucket policies.

012

Bug Bounty

Security

Company program paying people who find security vulnerabilities. HackerOne, Bugcrowd, Immunefi.

013

Adversarial Attack

Security

Adding small but purposeful perturbations to input to fool a model. Classic for image classifiers; adapted to LLMs.

More lists