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(

Azure AD and AWS Cognito side-by-side

In the last few weeks, I was involved in multiple opportunities on Microsoft Azure and Amazon, where we had to analyse AWS Cognito, Azure AD and other solutions that are available on the market. I decided to consolidate in one post all features and differences that I identified for both of them that we should need to take into account. Take into account that Azure AD is an identity and access management services well integrated with Microsoft stack. In comparison, AWS Cognito is just a user sign-up, sign-in and access control and nothing more. The focus is not on the main features, is more on small things that can make a difference when you want to decide where we want to store and manage our users.  This information might be useful in the future when we need to decide where we want to keep and manage our users.  Feature Azure AD (B2C, B2C) AWS Cognito Access token lifetime Default 1h – the value is configurable 1h – cannot be modified

ADO.NET provider with invariant name 'System.Data.SqlClient' could not be loaded

Today blog post will be started with the following error when running DB tests on the CI machine: threw exception: System.InvalidOperationException: The Entity Framework provider type 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer' registered in the application config file for the ADO.NET provider with invariant name 'System.Data.SqlClient' could not be loaded. Make sure that the assembly-qualified name is used and that the assembly is available to the running application. See http://go.microsoft.com/fwlink/?LinkId=260882 for more information. at System.Data.Entity.Infrastructure.DependencyResolution.ProviderServicesFactory.GetInstance(String providerTypeName, String providerInvariantName) This error happened only on the Continuous Integration machine. On the devs machines, everything has fine. The classic problem – on my machine it’s working. The CI has the following configuration: TeamCity .NET 4.51 EF 6.0.2 VS2013 It see