close
close
Your Network of Tomorrow
Your Network of Tomorrow
Plan your path toward a faster, more secure, and more resilient network designed for the applications and users that you support.
          Experience Netskope
          Get Hands-on With the Netskope Platform
          Here's your chance to experience the Netskope One single-cloud platform first-hand. Sign up for self-paced, hands-on labs, join us for monthly live product demos, take a free test drive of Netskope Private Access, or join us for a live, instructor-led workshops.
            A Leader in SSE. Now a Leader in Single-Vendor SASE.
            A Leader in SSE. Now a Leader in Single-Vendor SASE.
            Netskope debuts as a Leader in the Gartner® Magic Quadrant™ for Single-Vendor SASE
              Securing Generative AI for Dummies
              Securing Generative AI for Dummies
              Learn how your organization can balance the innovative potential of generative AI with robust data security practices.
                Modern data loss prevention (DLP) for Dummies eBook
                Modern Data Loss Prevention (DLP) for Dummies
                Get tips and tricks for transitioning to a cloud-delivered DLP.
                  Modern SD-WAN for SASE Dummies Book
                  Modern SD-WAN for SASE Dummies
                  Stop playing catch up with your networking architecture
                    Understanding where the risk lies
                    Advanced Analytics transforms the way security operations teams apply data-driven insights to implement better policies. With Advanced Analytics, you can identify trends, zero in on areas of concern and use the data to take action.
                        The 6 Most Compelling Use Cases for Complete Legacy VPN Replacement
                        The 6 Most Compelling Use Cases for Complete Legacy VPN Replacement
                        Netskope One Private Access is the only solution that allows you to retire your VPN for good.
                          Colgate-Palmolive Safeguards its "Intellectual Property” with Smart and Adaptable Data Protection
                          Colgate-Palmolive Safeguards its "Intellectual Property” with Smart and Adaptable Data Protection
                            Netskope GovCloud
                            Netskope achieves FedRAMP High Authorization
                            Choose Netskope GovCloud to accelerate your agency’s transformation.
                              Let's Do Great Things Together
                              Netskope’s partner-centric go-to-market strategy enables our partners to maximize their growth and profitability while transforming enterprise security.
                                Netskope solutions
                                Netskope Cloud Exchange
                                Netskope Cloud Exchange (CE) provides customers with powerful integration tools to leverage investments across their security posture.
                                  Netskope Technical Support
                                  Netskope Technical Support
                                  Our qualified support engineers are located worldwide and have diverse backgrounds in cloud security, networking, virtualization, content delivery, and software development, ensuring timely and quality technical assistance
                                    Netskope video
                                    Netskope Training
                                    Netskope training will help you become a cloud security expert. We are here to help you secure your digital transformation journey and make the most of your cloud, web, and private applications.

                                      A Real-World Look at AWS Best Practices: Password Policies

                                      Jun 03 2021

                                      Introduction

                                      Best practices for securing an AWS environment have been well-documented and generally accepted, such as AWS’s guidance. However, organizations may still find it challenging on how to begin applying this guidance to their specific environments.

                                      • Which controls should be applied out-of-the-box vs. customized?
                                      • What pitfalls exist in implementing the various controls or checks?
                                      • How do you prioritize remediation of the “sea of red” violations?

                                      In this blog series, we’ll analyze anonymized data from Netskope customers that include security settings of 650,000 entities from 1,143 AWS accounts across several hundred organizations. We’ll look at the configuration from the perspective of the best practices, see what’s commonly occurring in the real world and:

                                      • Discuss specific risk areas that should be prioritized
                                      • Identify underlying root causes and potential pitfalls
                                      • Focus on practical guidance for applying the Benchmark to your specific environment

                                      This blog post focuses on IAM security controls related to account password policies. Based on the Netskope dataset analyzed, we will highlight two opportunities to improve security by making simple IAM changes:

                                      1. 73% of accounts have an account password policy with a password length less than 14, which is easier to brute-force and compromise. Half of these accounts are using the default AWS Password Policy.
                                      1. 80% of IAM User accounts have a password reuse/history setting that is less than 24, leading to password reuse and higher chances of compromise.

                                      Password Policy: legacies and defaults

                                      “Don’t live life by default.”

                                      ― Steven Redhead

                                      These two technical best practices involve the IAM User Password Policy strength. In a high majority (70-80%) of the 1,143 accounts, the account Password Policy is weak:

                                      #Best Practice# of Violations%
                                      1Ensure IAM password policy requires a minimum length of 14 or greater83272.8%
                                      2Ensure IAM password policy prevents password reuse91076.9%

                                      1. Password Length

                                      Background: Minimum suggested password lengths should be at least 14 in order to prevent easy brute-force compromise of passwords.

                                      Data: 832 (72.8%) of accounts have an account password policy with a password length less than 14.

                                      Analysis: If we analyze the breakdown of the 832 accounts by the length in the password policy, we find:

                                      Password LengthViolations% (out of 1,143)
                                      <600%
                                      6-7544.7%
                                      853947%
                                      9-1323921%

                                      In 2020, AWS changed the default Password Policy, increasing the minimum length from 6 to 8 characters. As we can see, 539 accounts (47%) have a password length of 8. Interestingly, more than 80% of the 539 accounts or 440 are set to 8 because they use the default password policy i.e. a custom password policy is not created. 

                                      Controls: 

                                      • Detection/Audit
                                        • Auditing the password length in a custom account password policy can be done via CLI:
                                          aws iam get-account-password-policy
                                        • The AWS Config Rule: iam-password-policy will also detect password policies that are too weak.
                                      • Prevention/Mitigation
                                        • Best practices call for modifying default settings to harden accounts. It is generally easier for users to increase password entropy by increasing length versus character variation.
                                        • Create a custom password policy that has a password length of at least 14. Using a password manager with random, long passwords is the best way to achieve this.

                                      2. Password Reuse

                                      Background: A similar story is told with the password reuse (history) setting. Best practices recommend preventing password reuse with a large setting of 24.

                                      Data: 910 (80%) of IAM User accounts have a password reuse/history setting that is less than 24

                                      Analysis: To provide more context, we breakdown the 910 accounts by their actual reuse setting:

                                      Password ReuseViolations% (out of 1,143)
                                      0 (default)44038%
                                      1-4928%
                                      513512%
                                      6-1113612%
                                      12-23272%

                                      In 440 accounts (38%), password reuse is set to 0, inherited from the default Password Policy. When customizing a policy, the Console will supply a suggested value of 5 for the reuse setting. For those that set a custom policy, about 12% choose 5. In summary, default values (0 or 5) have been used for password reuse in 50% of the accounts in this dataset which introduces more risk than recommended.

                                      Controls:

                                      • Detection/Audit
                                        • Auditing the password reuse in a custom account password policy can be done via CLI:
                                          aws iam get-account-password-policy
                                        • The AWS Config Rule: iam-password-policy will also detect password policies that are too weak.
                                      • Prevention/Mitigation
                                        • Setting password reuse is recommended to prevent and mitigate compromised credentials.

                                      Additional Controls

                                      • Enabling MFA for regular IAM users will also help mitigate compromised credentials.
                                      • If you are using or can use cross-account access or federated/SSO authentication, it avoids the IAM User password policy issues since cross-account access will utilize temporary credentials. Authentication and password policies including length, reuse, and MFA can be handled centrally by the federated identity system instead of in each account.

                                      Conclusion

                                      Many best practices have been codified but many AWS environments lag behind in implementing these best practices. Remediating the issues is straightforward for many of the security settings, and there exists specific prescriptive guidance on auditing and remediating your configurations in these areas, which can result in a large reduction in risk.

                                      Here are some basic measures that can be done to address some of the common risk areas due to IAM configuration in your AWS environment:

                                      1. Customize your AWS Password Policy, do not use the default.
                                      1. Increase the password length to at least 14, and set the password reuse to 24.
                                      1. Especially for larger environments, using a federated identity system or by isolating all IAM Users in one account and granting cross-role access, will allow centralized management of user accounts and password policies.

                                      In upcoming blogs, we’ll explore other best practices and how individual organizations can apply these best practices specific to their environment.

                                      Additionally, Netskope’s Public Cloud Security platform also can automate configuration checking of your AWS environment, implementing both compliance standards, as well as custom configuration checks.

                                      Dataset and Methodology

                                      Time Period: Data was sampled/analyzed from January 24, 2021. 

                                      Source: The analysis presented in this blog post is based on anonymized usage data collected by the Netskope Security Cloud platform relating to a subset of Netskope customers with prior authorization.

                                      Data Scope: The data included 1143 AWS accounts and several hundred organizations. 

                                      The data was composed of configuration settings across tens of thousands of AWS entities including IAM users, IAM policies, password policy, buckets, databases, CloudTrail logs, compute instances, and security groups.

                                      Logic: The analysis followed the logic of core root account security checks found in best practices regarding AWS configuration settings with a few adjustments for the dataset and methodology. Some best practices might define “recent usage” for the root account as a last logged in time occurring within the past 24 hours to determine whether the root account has been used recently. Because this dataset comes from a point-in-time snapshot, this was changed to within the past 7 days prior to the audit date.

                                      author image
                                      Jenko Hwong
                                      Jenko has 15+ years of experience in research, product mgmt., and engineering in cloud security, routers/appliances, threat intel, vulnerability scanning and compliance.
                                      Jenko has 15+ years of experience in research, product mgmt., and engineering in cloud security, routers/appliances, threat intel, vulnerability scanning and compliance.

                                      Stay informed!

                                      Subscribe for the latest from the Netskope Blog