Spaces:
No application file
No application file
| { | |
| "name": "92c63f11", | |
| "displayName": "Security Audit Code Snippets VS Code Extension", | |
| "description": "VS Code extension providing 250+ security-focused code snippets for DevSecOps engineers and security researchers. Covers SQL injection prevention patterns, XSS sanitization, CSRF token generation, JWT validation, bcrypt and Argon2 hashing, rate limiting middleware, input validation schemas, secrets management with environment variables, TLS configuration, CORS security headers, authentication flows, authorization middleware, encryption utilities, and security audit logging. Supports Python, Node.js, Go, Java, and Rust. Each snippet follows OWASP guidelines with security annotations. Includes snippet search by vulnerability type, CWE tagging, and CVSS severity indicators.", | |
| "version": "1.0.0", | |
| "engines": { | |
| "vscode": "^1.74.0" | |
| }, | |
| "categories": [ | |
| "Other" | |
| ], | |
| "publisher": "digitalforge", | |
| "activationEvents": [ | |
| "onStartupFinished" | |
| ], | |
| "main": "./out/extension", | |
| "contributes": { | |
| "commands": [ | |
| { | |
| "command": "92c63f11.activate", | |
| "title": "Security Audit Code Snippets VS Code Extension: Activate" | |
| }, | |
| { | |
| "command": "92c63f11.settings", | |
| "title": "Security Audit Code Snippets VS Code Extension: Open Settings" | |
| }, | |
| { | |
| "command": "92c63f11.run", | |
| "title": "Security Audit Code Snippets VS Code Extension: Run" | |
| } | |
| ], | |
| "configuration": { | |
| "title": "Security Audit Code Snippets VS Code Extension", | |
| "properties": { | |
| "92c63f11.enabled": { | |
| "type": "boolean", | |
| "default": true, | |
| "description": "Enable/disable Security Audit Code Snippets VS Code Extension" | |
| }, | |
| "92c63f11.autoRun": { | |
| "type": "boolean", | |
| "default": false, | |
| "description": "Automatically run on file open" | |
| }, | |
| "92c63f11.logLevel": { | |
| "type": "string", | |
| "enum": [ | |
| "error", | |
| "warn", | |
| "info", | |
| "debug" | |
| ], | |
| "default": "info", | |
| "description": "Log verbosity level" | |
| } | |
| } | |
| }, | |
| "keybindings": [ | |
| { | |
| "command": "92c63f11.activate", | |
| "key": "ctrl+shift+alt+a", | |
| "mac": "cmd+shift+alt+a", | |
| "when": "editorTextFocus" | |
| } | |
| ] | |
| }, | |
| "scripts": { | |
| "vscode:prepublish": "npm run compile", | |
| "compile": "tsc -p ./", | |
| "watch": "tsc -watch -p ./", | |
| "pretest": "npm run compile", | |
| "lint": "eslint src --ext ts" | |
| }, | |
| "devDependencies": { | |
| "@types/vscode": "^1.74.0", | |
| "@types/node": "^18.x", | |
| "typescript": "^5.0.0" | |
| }, | |
| "keywords": [ | |
| "security_audit", | |
| "productivity", | |
| "automation" | |
| ], | |
| "license": "MIT", | |
| "icon": "icon.png", | |
| "galleryBanner": { | |
| "color": "#1e1e2e", | |
| "theme": "dark" | |
| }, | |
| "repository": { | |
| "type": "git", | |
| "url": "https://github.com/digitalforge/92c63f11" | |
| }, | |
| "bugs": { | |
| "url": "https://github.com/digitalforge/92c63f11/issues" | |
| } | |
| } |