Poor Management of Secrets Could Cost You Millions

Written by Xtril | Published 2021/09/29
Tech Story Tags: password-security | secret | security | doppler | managing-secrets | mistakes-made-by-devs | software-development | secret-management

TLDR Cyberattackers are getting rich because of errors made by developers when handling secrets. Last year over 2 million API secrets were exposed on public Github repositories. Many developers hardcode API secrets and keys because it's easy and it doesn't cost anything to hardcode secrets. Instead of hardcoding secrets, use a secret manager for storing and managing your secrets. Don’t share unencrypted secrets in messaging platforms like slack and email. Use Gitguardian to detect leaked secrets on GitHub repositories.via the TL;DR App

There’s now more money and information stored digitally than physically. Secrets unlock the infrastructure holding millions of dollars and intellectual property stored digitally. And that is the reason why cybercriminals are perilously looking for exposed secrets and security mistakes that can be exploited to get privileged access to databases in GitHub and DevOps tools. Cyberattackers are consistently getting rich because of errors made by developers when handling secrets.
The center for strategic and international studies has indicated that close to $600billion is lost to cybercrime annually. 
Poorly managing secrets by hardcoding and storing secrets in an env file may be uncomplicated and time-saving. But these practices lead to costly mistakes that open the gates for hackers to make millions yearly by demanding ransom and seizing sensitive information.
Henceforth, it is imperative to avoid these mistakes at all costs by implementing security measures such as using a secret manager, robust encryption algorithms, and protecting data in transit.
In this article, you will learn about some of the mistakes developers make when handling secrets and how to intercept them.

What We Will Cover in This Article

  1. Hardcoding secrets and exposing them on GitHub
  2. Poor password management
  3. Using a weak encryption algorithm to encrypt secrets
  4. Inadequately protecting secrets in transit
  5. Not using a secret manager
  6. Conclusion

Hardcoding Secrets and Exposing Them on GitHub

Using an API eliminates the need to write a program that integrates two applications and also reduces development costs. But enjoying the perks of using  APIs comes with the responsibility of managing API keys and secrets effectively.  
Last year over 2 million API secrets were exposed on public Github repositories. Many developers hardcode API secrets and keys because it's easy and it doesn't cost anything to hardcode secrets. While they unintentionally forget that the code is being shipped to a public repository.
Interestingly, 15% of leaks on GitHub occur within public repositories owned by organizations, and 85% of the leaks occur on developers’ personal repositories, this data clearly illustrates the complexity of secrets sprawl ~Gitguardian
Hardcoded and embedded secrets allow cybercriminals to perform password guessing which hands the secrets to the cybercriminals if the password guessing process is successful.
String apiKey = "ghgh780i0hut890werxx";
String apiSecret="hiy90jdry8hbuiuh906756";
Once an attacker spots the hardcoded secrets shown above. They can use them to impersonate you or gain highly privileged access to sensitive data and steal any valuable information. Once a security breach occurs, your company loses:
  1. Loyal customers
  2. Reputation
  3. Revenue
  4. Intellectual property
In some of the worst scenarios, hackers demand millions in ransom.
Here are some tips you can use to prevent hardcoding and leaking secrets:
  1. Do not store unencrypted secrets in .git repositories
  2. Use Gitguardian to detect leaked secrets on GitHub repositories.
  3. Don’t share unencrypted secrets in messaging platforms like slack and email.
  4. Instead of hardcoding secrets, use a secret manager for storing and managing your secrets.
  5. Regularly scan and search for hardcoded credentials and vulnerabilities in a project using static code analysis.

Poor Password Management

Photo credit: Statista
Password length, uniqueness, and complexity determine how much time it takes for a hacker to crack or guess the password. A short and simple (weak) password can be easily revealed using password spraying. Password spraying is a technique that involves using a well-known list of passwords like 123456789 to guess your password.
It is a pity to know that there are still system administrators and users who create these passwords, 1234 and abc123, just because they are in a rush and they can easily remember them. And the worst of it all, some people write passwords on a piece of paper and forget to erase them or store the paper safely. 
It is important to use long and complex passwords to protect your systems from being penetrated using brute-force attacks. You can make the word “password” complex by writing it as $a55w0rd. But don't use it since it is already known in the password dictionary.
Complex and long passwords are hard to remember, but they are the only way to secure development environments and applications.

Here are Seven Password Management Best Practices You Should Follow:

  1. Always change default passwords.
  2. Use a unique, complex, and long (8 characters and above) password for each account you own.
  3. Implement two-factor authentication for your accounts.
  4. Use a secret manager or a password vault for storing passwords.
  5. Do not use the same password multiple times.
  6. Use different passwords for all your accounts.
  7. Avoid using dictionary words as passwords. Attackers can use a dictionary attack tool to crack your password.

Using a Weak Encryption Algorithm to Encrypt Secrets

The strength and weakness of the encryption key are determined by the size of the encryption key. The bigger the encryption key size, the stronger it becomes. An encryption key that uses 256 bits is considered to be strong today. An encryption algorithm that uses fewer or insufficient numbers is weak.
Scenario: If you were to use an RC4 encryption algorithm to encrypt SSH and API keys. Hackers would use a cryptanalysis tool installed on a specialized high-end laptop to crack the encryption using brute-force attacks since it has a weak encryption key. For the past two decades, many severe vulnerabilities have been discovered in the RC4 encryption algorithm such as invariance weakness.
Using a Secret Manager to Encrypt Secrets
A secret manager implements secret encryption best practices when encrypting secrets. No need to worry about which encryption algorithm is weak and shouldn’t be used.

Inadequately Protecting Secrets in Transit

Sensitive data that is moving from one network can be intercepted or lost if network security measures are not implemented. Unencrypted secrets that are consistently being shared with teammates through insecure networks are at risk of being seized by cybercriminals.  
Tips on How to Protect Sensitive Data and Secrets That are in Transit:
  1. Use the Advanced Encryption Standard (AES)-256 to encrypt secrets when transitioning them.
  2. Implement security measures such as network access control which keeps unauthorized users out of private networks.
  3. Adding a website firewall is a necessity that should never be forgotten. Henceforth, It is imperative to regularly update and audit firewall software. A firewall will go far in protecting data in transit from cyber-attacks such as brute force attacks, DDoS attacks, cross-site scripting.
  4. Always use encrypted connections such as  HTTPS, SSL, and  TLS  to protect secrets in transit.

Not Using a Secret Manager 

A secret manager is a secure storage system that allows you to store, manage and, effortlessly access your secrets. Ignoring the need for a secret manager is a mistake that begets inconvenience. 
Working in a development environment that does not have a secret manager increases the chances of you hardcoding secrets and using .env files to store secrets. Time limitations, few resources, rapid technology advancements. These are often challenging circumstances that developers encounter when developing applications. With these limiting factors being presented. The risk of poorly managing secrets increase because:
  1. Time limitation causes the developer to hardcode secrets in order to save time.
  2. Rapid technology advancements force developers to learn new technologies from time to time. Not every developer has access to adequate training, and this leads to developers mishandling secrets because different frameworks and software infrastructure use different techniques of storing and accessing secrets.
In addition, copying and pasting secrets across different frameworks is inconvenient. 
A secret manager gives you convenience by managing your secrets while you focus on the critical aspects and components of the software project you are working on.
The table below gives a contrast between a development environment that has a secret manager.

Conclusion: Eliminate Human Errors with a Secret Manager

We, as developers, determine if the millions of dollars will be stolen or stored safely by how we manage secrets.
There may be many mistakes made when handling secrets not included in this article, such as poor security measures, inadequately validating SSL certificates.
But handing over the task of manually managing secrets by installing a secret manager is the leading solution to eliminating many human errors made when handling secrets.
Perfection is not attainable, but if we chase perfection, we can catch excellence.~Vince Lombardi
Lead Photo Credit: Vxchange

Written by Xtril | I like tech and singing.
Published by HackerNoon on 2021/09/29