Skip to content

100 Most common Greek passwords

Recently I had to perform an assessment for a Greek company and while there were some lists online I could not accept that the most common greek password is 123456. So I made my own research.

Preparation

I used a breach compilation which consists of around 1.4 billion records with the following format: password,email and used it to find passwords coming from Greek email addresses. The first thing I did was reverse the text so it will be easier to sort. So, a record that normally would look like ThisPassword,[email protected], now it is stored like this: moc.liamg@tset,drowssaPsihT. This makes querying the top level domain (.gr) way easier, since I don’t have to worry about passwords containing .gr in them since it will always be in the beginning.

Out of the 1.4 billion records only 1 million of them were coming from a Greek domain. After stripping the email addresses out, only a list of passwords was left. I wrote a basic python script to count the occurrence of each password and sort it in decrement order and TADAA..

Results

The most common Greek password is 123456. Below is the list with the 100 most common passwords:

#PasswordOccurrence
112345612664
21234567894405
3123451932
41111111816
512345678901693
6123456781597
712345671415
80000001143
91234952
10123456a930
11a123456639
12121212549
13654321547
14212121533
15666666524
167777777481
17qwerty458
18123123455
19131313429
20777777406
21original21394
22aekara21393
23panathinaikos390
2412345a365
25987654321365
26panatha13365
27222222358
28katerina357
29555555322
30paokara306
31123299
3211111299
33696969298
34999999286
35malakas278
36123321278
37dimitris275
3811111111273
39olympiakos273
40a12345270
41123456789a269
421q2w3e4r265
43abc123258
44panatha258
45paokara4249
461111247
47kostas246
48aekara243
49101010241
50888888233
51444444228
520987654321226
53333333226
54123qwe222
551111111111222
5688888888217
57112233213
5812341234208
59password207
600000000000200
6100000187
62123123123179
631q2w3e179
64pao1908177
650123456789176
661111111174
67zxcvbnm174
68987654166
6900000000164
70george164
71qwerty1163
7212345678910161
73a123456789156
74232323156
75malakas1154
761qaz2wsx150
77gate13150
78159753147
7912121212146
80qwertyuiop146
81nikolas140
8255555139
83superman139
840000138
85aek1924137
861q2w3e4r5t137
8719821982135
8819811981133
8919781978133
90original132
91papaki130
92123abc129
93$HEX129
9419791979129
95123654128
9619851985128
97anastasia126
9819751975122
99dimitra118
10019801980116

You can download the full wordlist for your assessment from my Github Repo: https://github.com/marduc812/GreekPasswords

Was this post helpful?

Tags: