GGovardhanaingovi.hashnode.dev·Aug 20 · 17 min readSemgrep for Python Developers — A Deep Dive into Writing Security RulesSemgrep is a static analysis tool that finds security vulnerabilities by matching code patterns. Unlike tools that scan line by line, Semgrep understands code structure. It parses your Python code int00
GGovardhanaingovi.hashnode.dev·Jun 12, 2025 · 5 min readComplete Guide to Trivy: Security Scanning for Modern ApplicationsIn today's rapidly evolving software landscape, security vulnerabilities pose significant threats to both applications and infrastructure. Trivy, developed by Aqua Security, is one of the most comprehensive and user-friendly open-source vulnerability...00
GGovardhanaingovi.hashnode.dev·Jun 11, 2025 · 12 min readSidecars & Init Containers - The Complete Kubernetes GuideIn the world of Kubernetes, Pods are the smallest deployable units, encapsulating one or more containers. While a single container is often sufficient, many complex applications benefit from the intelligent use of additional containers within the sam...00
GGovardhanaingovi.hashnode.dev·Jun 11, 2025 · 10 min readDocker Security Vulnerabilities: 5 Critical Misconfigurations That Lead to Container EscapeDocker has revolutionized application deployment and containerization, but with great power comes great responsibility. Misconfigurations in Docker deployments can lead to serious security vulnerabilities, including complete host system compromise. I...00
GGovardhanaingovi.hashnode.dev·Dec 4, 2024 · 2 min readUltimate Guide: Python Environment Management with Conda and VSCodeWhy Conda and VSCode? Python development requires flexible, isolated environments. Conda solves this by: Managing multiple Python versions Isolating project dependencies Preventing package conflicts Enabling easy reproducibility Step-by-Step In...00