Skip to main content
  1. Posts/

On Securing Containers and Open Source tools for scanning vulnerabilities in Docker images

··46 words·1 min·
DevOps Containers Docker Security

I recently published couple of articles elsewhere:

  • How to Increase Container Security and Ward Off Threats - Adobe Tech Blog
  • 5 OpenSource tools for container security - OpenSource.com
  • Scanning Docker Images for Vulnerabilities with Aqua Microscanner - previously, on my blog

Do give them a read.

Sathyajith Bhat
Author
Sathyajith Bhat
Author, AWS Container Hero and DevOps Specialist.

Related

Scanning Docker Image for Vulnerabilities with Aqua MicroScanner
··436 words·3 mins
DevOps Containers Docker Security
Containers are slowly becoming the standardized units of deployment. As containers become more popular, they also become the focus targets for attacking the system via vulnerabilities present in the packages within the image. There are quite a few container vulnerability scanning solutions (example: Clair, Twistlock, now Prisma Cloud, Aqua – however most of them are either commercial or require an elaborate setup, which makes it difficult for individual developers to involve them as part of the container build process.
Accessing Chef Databag Items from within attributes
··135 words·1 min
DevOps Chef
In Chef parlance, databags are global variables saved in JSON format and are stored and accessible on the Chef server. Given that these are indexed and can be searched up along with the fact that they can be encrypted make them ideal candidates to store secrets such as credentials/ssh keys. Chef provides an easy way to search and fetch databag and databag items from within a recipe: For ex to fetch a databag called admins, it’s as easy as:
Of nginx’s mid cut off responses and proxy buffers
··470 words·3 mins
DevOps Nginx
Among the services I look after, the biggest and high-profile - is the user facing website. The website is your bog-standard typical frontend(powered by Express/Angular) which fetches data via an API which is powered by the backend(built on Rails). Typical flow is that Express receives the request from the browser, makes a request to the backend which is then served using Rails API via nginx which acts as the reverse proxy.