github.com/google/osv-scalibr@v0.4.1/detector/weakcredentials/etcshadow/passwords.go (about) 1 // Copyright 2025 Google LLC 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package etcshadow 16 17 // This list of passwords is identical to the one used by the Tsunami plug-in 18 // for weak credentials detection. It comes originally from: 19 // https://github.com/danielmiessler/SecLists/blob/master/Passwords/Common-Credentials/10-million-password-list-top-100.txt 20 var topPasswords = []string{ 21 "", 22 "root", 23 "test", 24 "123456", 25 "password", 26 "Password", 27 "12345678", 28 "qwerty", 29 "123456789", 30 "12345", 31 "1234", 32 "111111", 33 "1234567", 34 "dragon", 35 "123123", 36 "baseball", 37 "abc123", 38 "football", 39 "monkey", 40 "letmein", 41 "696969", 42 "shadow", 43 "master", 44 "666666", 45 "qwertyuiop", 46 "123321", 47 "mustang", 48 "1234567890", 49 "michael", 50 "654321", 51 "pussy", 52 "superman", 53 "1qaz2wsx", 54 "7777777", 55 "fuckyou", 56 "121212", 57 "000000", 58 "qazwsx", 59 "123qwe", 60 "killer", 61 "trustno1", 62 "jordan", 63 "jennifer", 64 "zxcvbnm", 65 "asdfgh", 66 "hunter", 67 "buster", 68 "soccer", 69 "harley", 70 "batman", 71 "andrew", 72 "tigger", 73 "sunshine", 74 "iloveyou", 75 "fuckme", 76 "2000", 77 "charlie", 78 "robert", 79 "thomas", 80 "hockey", 81 "ranger", 82 "daniel", 83 "starwars", 84 "klaster", 85 "112233", 86 "george", 87 "asshole", 88 "computer", 89 "michelle", 90 "jessica", 91 "pepper", 92 "1111", 93 "zxcvbn", 94 "555555", 95 "11111111", 96 "131313", 97 "freedom", 98 "777777", 99 "pass", 100 "fuck", 101 "maggie", 102 "159753", 103 "aaaaaa", 104 "ginger", 105 "princess", 106 "joshua", 107 "cheese", 108 "amanda", 109 "summer", 110 "love", 111 "ashley", 112 "6969", 113 "nicole", 114 "chelsea", 115 "biteme", 116 "matthew", 117 "access", 118 "yankees", 119 "987654321", 120 "dallas", 121 "austin", 122 "thunder", 123 "taylor", 124 "matrix", 125 "Password123", // used by unit tests. 126 }