Skip to main content

Keep your cloud secrets away from the source control repo

I am sure that you are doing many things to secure your cloud applications and your public endpoint. 

Are you doing the same things for the code that you push to a repo? 

In this article, we discover what are the tools and what are the actions that can be done to ensure that no password, no access token or string configuration reach the repository. 

Scenario
Imagine that you are a developer working for a customer application hosted inside Azure. The new feature that you are working on includes premium media content available only for users who pay the subscription. 
You design the application so that premium users get access to the content using a Shared Access Signature. Meanwhile, you keep the storage account key for production environments in a separate configuration pipeline script. The account key is used to generate a Shared Access Signature Token. Once the configuration pipeline script is working, you push to the public repository.

Boom! in a few seconds, the storage account key is cached by a Gittyleaks bot, and your premium media content is copied and shared over torrents. 

Context
The same thing can happen with any other secrets. Even if you are using the Azure Key Vault or App Configuration, you need to be careful where you store secrets and if and how you push them to a repository. 
Even if it is a private repository, I would treat it as a public repo and ensure that no secrets are stored inside it. The security breach can be caused by another team member, which computer is compromised, and the attacker starts to search all the repos where the developer has access.

What can we do?
Many tools on the market can scan your repo or your commits before a push to ensure that no secrets are stored or pushed to it. 
Some actions can be done to ensure that no secrets are stored inside a source control repository:
  1. Configure a tool to actively scan your repositories all the time for files that contain secrets
  2. Configure on each machine that push content to the repository a tool that scans the commit and deny the ones that contain secrets
  3. Integrate the tool in the pipelines
There so many other things related to WAF (Well Architecture Framework) and Cloud Governance that can be done (e.g. service principles and RBAC)

Tools
One of the tools that I like to use is git-secret that enables us to scan for secrets for AWS, Azure, and GCP. The open-source projects scan for passwords and any other sensitive information inside a repo. During the push process, the scan runs, preventing us from pushing sensitive information to repositories like GitHub, Bitbucket, or even TFS if you really want it.

Dev Machine
A development machine shall be configured in such a way to scan commits before a push for secrets. 
(1) Place git-secrets somewhere in the PATH to be easily accessible by git
(2) ./install.ps1 | Command to install git-secrets on a Windows machine
(3) cd /path/RaduVRepo/IoTHome | Navigate to the repo that you want to protect. You need to do this action for each repository that you want to secure
(4) git secrets install | Install the tool
(5) git secrets -register-azure | Register the Azure plugin
(6) git secrets -register-aws | Register the AWS plugin
(7) git secrets - register-gcp | Register the GCP plugin
DONE!

The plugging is scanning the commits and notify us if we have secrets inside the code. 

Active Scan
We can use 'git secrets --scan repoPath' to scan a specific repository for secrets. The command can be easily integrated inside a pipeline. Another approach is to scan every night all the repos to ensure that there are no secrets push to the repos. 

Pipeline Integration
In pipelines, one of the step is to run git-secrets and ensure that things are clean. If not, remove the secrets and even remove the commit :-)


Final thoughts
Managing secrets, especially cloud secrets it's not an easy job. It is mandatory to use tools like git-secrets to scan the commits for secrets and integrated them inside your pipeline. 

Comments

Popular posts from this blog

Windows Docker Containers can make WIN32 API calls, use COM and ASP.NET WebForms

After the last post , I received two interesting questions related to Docker and Windows. People were interested if we do Win32 API calls from a Docker container and if there is support for COM. WIN32 Support To test calls to WIN32 API, let’s try to populate SYSTEM_INFO class. [StructLayout(LayoutKind.Sequential)] public struct SYSTEM_INFO { public uint dwOemId; public uint dwPageSize; public uint lpMinimumApplicationAddress; public uint lpMaximumApplicationAddress; public uint dwActiveProcessorMask; public uint dwNumberOfProcessors; public uint dwProcessorType; public uint dwAllocationGranularity; public uint dwProcessorLevel; public uint dwProcessorRevision; } ... [DllImport("kernel32")] static extern void GetSystemInfo(ref SYSTEM_INFO pSI); ... SYSTEM_INFO pSI = new SYSTEM_INFO(...

How to audit an Azure Cosmos DB

In this post, we will talk about how we can audit an Azure Cosmos DB database. Before jumping into the problem let us define the business requirement: As an Administrator I want to be able to audit all changes that were done to specific collection inside my Azure Cosmos DB. The requirement is simple, but can be a little tricky to implement fully. First of all when you are using Azure Cosmos DB or any other storage solution there are 99% odds that you’ll have more than one system that writes data to it. This means that you have or not have control on the systems that are doing any create/update/delete operations. Solution 1: Diagnostic Logs Cosmos DB allows us activate diagnostics logs and stream the output a storage account for achieving to other systems like Event Hub or Log Analytics. This would allow us to have information related to who, when, what, response code and how the access operation to our Cosmos DB was done. Beside this there is a field that specifies what was th...

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills)

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills) The idea that moving to the cloud reduces the costs is a common misconception. The cloud infrastructure provides flexibility, scalability, and better CAPEX, but it does not guarantee lower costs without proper optimisation and management of the cloud services and infrastructure. Idle and unused resources, overprovisioning, oversize databases, and unnecessary data transfer can increase running costs. The regional pricing mode, multi-cloud complexity, and cost variety add extra complexity to the cost function. Cloud adoption without a cost governance strategy can result in unexpected expenses. Improper usage, combined with a pay-as-you-go model, can result in a nightmare for business stakeholders who cannot track and manage the monthly costs. Cloud-native services such as AI services, managed databases, and analytics platforms are powerful, provide out-of-the-shelve capabilities, and increase business agility and innovation. H...