-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
breach_data.py
11076 lines (11076 loc) · 580 KB
/
breach_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
breach_data = [
{
"name": "almotrjem.com",
"description": "N/A",
"date": "",
"leakcount": 2,
"leaktypes": "N/A"
},
{
"name": "Neopets",
"description": "In May 2016, a set of breached data originating from the virtual pet website 'Neopets' was found being traded online. Allegedly hacked 'several years earlier', the data contains sensitive personal information including birthdates, genders and names as well as almost 27 million unique email addresses. Passwords were stored in plain text and IP addresses were also present in the breach.",
"date": "2013-05-05",
"leakcount": 26892897,
"leaktypes": "Dates of birth, Email addresses, Genders, Geographic locations, IP addresses, Names, Passwords, Usernames"
},
{
"name": "NeoPets",
"description": "In May 2016, a set of breached data originating from the virtual pet website 'Neopets' was found being traded online. Allegedly hacked 'several years earlier', the data contains sensitive personal information including birthdates, genders and names as well as almost 27 million unique email addresses. Passwords were stored in plain text and IP addresses were also present in the breach.",
"date": "2013-05-05",
"leakcount": 26892897,
"leaktypes": "Dates of birth, Email addresses, Genders, Geographic locations, IP addresses, Names, Passwords, Usernames"
},
{
"name": "Coachella",
"description": "N/A",
"date": "2017-02-22",
"leakcount": 956119,
"leaktypes": "Email Addresses, IP Addresses, Passwords, Usernames"
},
{
"name": "vetion.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Clubhouse",
"description": "N/A",
"date": "",
"leakcount": 1300517,
"leaktypes": "N/A"
},
{
"name": "altersdiskriminierung.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "teuber-motorsport.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "forums.buckeyefirearms.org",
"description": "N/A",
"date": "",
"leakcount": 11260,
"leaktypes": "N/A"
},
{
"name": "f150nation.com",
"description": "N/A",
"date": "",
"leakcount": 406,
"leaktypes": "N/A"
},
{
"name": "AhaShare.com",
"description": "In May 2013, the torrent site AhaShare.com suffered a breach which resulted in more than 180k user accounts being published publicly. The breach included a raft of personal information on registered users plus despite assertions of not distributing personally identifiable information, the site also leaked the IP addresses used by the registered identities.",
"date": "2013-05-30",
"leakcount": 180468,
"leaktypes": "Email addresses, Genders, Geographic locations, IP addresses, Passwords, Usernames, Website activity, Years of birth"
},
{
"name": "digibo.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Adult Friend Finder",
"description": "In May 2015, the adult hookup site Adult Friend Finder was hacked and nearly 4 million records dumped publicly. The data dump included extremely sensitive personal information about individuals and their relationship statuses and sexual preferences combined with personally identifiable information.",
"date": "2015-05-21",
"leakcount": 3867997,
"leaktypes": "Dates of birth, Email addresses, Genders, Geographic locations, IP addresses, Races, Relationship statuses, Sexual orientations, Spoken languages, Usernames"
},
{
"name": "Modern Business Solutions",
"description": "In October 2016, a large mongo db file containing tens of millions of accounts was shared publicly on Twitter (the file has since been removed). The database contained over 58M unique email addresses along with IP addresses, names, home addresses, genders, job titles, dates of birth and phone numbers. The data was subsequently attributed to 'Modern Business Solutions', a company that provides data storage and database hosting solutions. Theyve yet to acknowledge the incident or explain how they came to be in possession of the data.",
"date": "2016-10-08",
"leakcount": 58843488,
"leaktypes": "Dates of birth, Email addresses, Genders, IP addresses, Job titles, Names, Phone numbers, Physical addresses"
},
{
"name": "magneticcash.net",
"description": "N/A",
"date": "",
"leakcount": 3659,
"leaktypes": "N/A"
},
{
"name": "Insanelyi",
"description": "In July 2014, the ios forum Insanelyi was hacked by an attacker known as Kim Jong-Cracks. A popular source of information for users of jailbroken iOS devices running Cydia, the Insanelyi breach disclosed over 104k users emails addresses, user names and weakly hashed passwords (salted MD5).",
"date": "2014-07-22",
"leakcount": 104097,
"leaktypes": "Email addresses, Passwords, Usernames, Website activity"
},
{
"name": "Adapt.io",
"description": "In November 2018 an unsecured database was discovered by security researcher and director of cyber risk research for Hacken, Bob Diachenko, who found a publicly-accessible MongoDB database with no access controls. The database contained 123GB of data on the names, job titles, employers, phone numbers, email addresses, physical addresses and social media profiles of 9.3 million people. Adapt.io is a company which offers sales and marketing professionals access to a database of (according to the company's website) 37 million business contacts, including 2.7 million C-level and 3.8 million vice-president and director-level contacts.",
"date": "2018-11-01",
"leakcount": 16215224,
"leaktypes": "Names, job titles, employers, phone numbers, email addresses, physical addresses and social media profiles"
},
{
"name": "bergedorf.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "pajunk-gmbh.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "supercars.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "WIIU ISO",
"description": "In September 2015, the nintendo wii u forum known as WIIU ISO was hacked and 458k accounts were exposed. Along with email and IP addresses, the vBulletin forum also exposed salted MD5 password hashes.",
"date": "2015-09-25",
"leakcount": 458155,
"leaktypes": "Email addresses, IP addresses, Passwords, Usernames"
},
{
"name": "maz-sound.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "presslive.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "filmhot.us",
"description": "N/A",
"date": "",
"leakcount": 73044,
"leaktypes": "N/A"
},
{
"name": "adriamedia.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "discoverxs.com",
"description": "N/A",
"date": "",
"leakcount": 2525,
"leaktypes": "N/A"
},
{
"name": "zzrbikes.com",
"description": "N/A",
"date": "",
"leakcount": 6231,
"leaktypes": "N/A"
},
{
"name": "waba-dwl.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Suxx.to",
"description": "N/A",
"date": "2020-05-15",
"leakcount": 290,
"leaktypes": "Usernames, Email Addresses, Passwords, IP Addresses, Dates of Birth, Website Activity"
},
{
"name": "gothic-bilder.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "blog-webkatalog.de",
"description": "More than 23,000 hacked databases have been made available in November 2020 for download on several hacking forums and Telegram channels in what threat intel analysts are calling the biggest leak of its kind. The database collection is said to have originated from Cit0Day.in, a private service advertised on hacking forums to other cybercriminals. Cit0day operated by collecting hacked databases and then providing access to usernames, emails, addresses, and even cleartext passwords to other hackers for a daily or monthly fee.",
"date": "2020-11-04",
"leakcount": 468385696,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Lyrics Mania",
"description": "In December 2017, the song lyrics website known as Lyrics Mania suffered a data breach. The data in the breach included 109k usernames, email addresses and plain text passwords.",
"date": "2017-12-21",
"leakcount": 109202,
"leaktypes": "Email addresses, Passwords, Usernames"
},
{
"name": "Yahoo",
"description": "In July 2012, Yahoo! had their online publishing service 'Voices' compromised via a SQL injection attack. The breach resulted in the disclosure of nearly half a million usernames and passwords stored in plain text. The breach showed that of the compromised accounts, a staggering 59% of people who also had accounts in the Sony breach reused their passwords across both services.",
"date": "2012-07-11",
"leakcount": 78453427,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "finianz.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "sup2u.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Dueling Network",
"description": "N/A",
"date": "2017-03-29",
"leakcount": 6477281,
"leaktypes": "Email Addresses, IP Addresses, Passwords, Usernames"
},
{
"name": "duelingnetwork",
"description": "N/A",
"date": "2017-03-29",
"leakcount": 6477281,
"leaktypes": "Email Addresses, IP Addresses, Passwords, Usernames"
},
{
"name": "g-shockzone.com",
"description": "N/A",
"date": "",
"leakcount": 7,
"leaktypes": "N/A"
},
{
"name": "stuckradbarre.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "woodevent.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "delboyswholesale.co.uk",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "algeria.com",
"description": "N/A",
"date": "",
"leakcount": 3682,
"leaktypes": "N/A"
},
{
"name": "MyFitnessPal",
"description": "In February 2018, the diet and exercise service MyFitnessPal suffered a data breach. The incident exposed 144 million unique email addresses alongside usernames, IP addresses and passwords stored as SHA-1 and bcrypt hashes (the former for earlier accounts, the latter for newer accounts). In 2019, the data appeared listed for sale on a dark web marketplace (along with several other large breaches) and subsequently began circulating more broadly.",
"date": "2018-02-01",
"leakcount": 150633048,
"leaktypes": "user ID, username, email address, SHA1-hashed password, and IP address."
},
{
"name": "primus-versand.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "deviz.ro",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "d2football.com",
"description": "N/A",
"date": "",
"leakcount": 5518,
"leaktypes": "N/A"
},
{
"name": "EyeEm",
"description": "In February 2018, photography website EyeEm suffered a data breach. The breach was identified among a collection of other large incidents and exposed almost 20M unique email addresses, names, usernames, bios and password hashes.",
"date": "2018-02-28",
"leakcount": 22273530,
"leaktypes": "Bios, Email addresses, Names, Passwords, Usernames"
},
{
"name": "amtsvordrucke.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "psforever.net",
"description": "N/A",
"date": "",
"leakcount": 794,
"leaktypes": "N/A"
},
{
"name": "artisan-n-artist.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "unsere-werbung.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "sportkartei.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": 17,
"description": "In April 2016, customer data obtained from the streaming app known as '17' appeared listed for sale on a Tor hidden service marketplace. The data contained over 4 million unique email addresses along with IP addresses, usernames and passwords stored as unsalted MD5 hashes.",
"date": "2016-04-19",
"leakcount": 4009640,
"leaktypes": "Device information, Email addresses, IP addresses, Passwords, Usernames"
},
{
"name": "WeHeartIt",
"description": "N/A",
"date": "2013-11-03",
"leakcount": 8604982,
"leaktypes": "Email Addresses, Passwords, Usernames"
},
{
"name": "weheartit",
"description": "N/A",
"date": "2013-11-03",
"leakcount": 8604982,
"leaktypes": "Email Addresses, Passwords, Usernames"
},
{
"name": "PSX-Scene",
"description": "In approximately February 2015, the sony playstation forum known as PSX-Scene was hacked and more than 340k accounts were exposed. The vBulletin forum included IP addresses and passwords stored as salted hashes using a weak implementation enabling many to be rapidly cracked.",
"date": "2015-02-01",
"leakcount": 341118,
"leaktypes": "Email addresses, IP addresses, Passwords, Usernames"
},
{
"name": "Colordatingapp.com",
"description": "N/A",
"date": "2018-08-01",
"leakcount": 221364,
"leaktypes": "Email addresses, Geo Info, Passwords"
},
{
"name": "arbeitgeber-bewertungen.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "druckdeal.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "totalprotectioninteractive.com",
"description": "N/A",
"date": "",
"leakcount": 2407,
"leaktypes": "N/A"
},
{
"name": "hookers.nl",
"description": "N/A",
"date": "",
"leakcount": 292828,
"leaktypes": "N/A"
},
{
"name": "xoninet.com",
"description": "N/A",
"date": "",
"leakcount": 12472,
"leaktypes": "N/A"
},
{
"name": "franksbaumwolle.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "animeindir.com",
"description": "N/A",
"date": "2019-01-01",
"leakcount": 6618,
"leaktypes": "Email addresses, IP addresses, Usernames, Passwords"
},
{
"name": "Torrent Invites",
"description": "In December 2013, the torrent site Torrent Invites was hacked and over 352k accounts were exposed. The vBulletin forum contained usernames, email and IP addresses, birth dates and salted MD5 hashes of passwords.",
"date": "2013-12-12",
"leakcount": 35212,
"leaktypes": "Dates of birth, Email addresses, IP addresses, Passwords, Usernames, Website activity"
},
{
"name": "DucksOrg_2",
"description": "N/A",
"date": "",
"leakcount": 468373,
"leaktypes": "N/A"
},
{
"name": "Fling",
"description": "In 2011, the self-proclaimed 'worlds best adult social network' website known as fling was hacked and more than 40 million accounts obtained by the attacker. The breached data included highly sensitive personal attributes such as sexual orientation and sexual interests as well as email addresses and passwords stored in plain text.",
"date": "2011-03-10",
"leakcount": 40767652,
"leaktypes": "Dates of birth, Email addresses, Genders, Geographic locations, IP addresses, Passwords, Phone numbers, Sexual fetishes, Sexual orientations, Usernames, Website activity"
},
{
"name": "avilia.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Habbo.st",
"description": "N/A",
"date": "",
"leakcount": 888522,
"leaktypes": "Email addresses, IP addresses, Passwords, Usernames"
},
{
"name": "elektroseiten.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Sweclockers",
"description": "N/A",
"date": "2015-04-01",
"leakcount": 254915,
"leaktypes": "Email Addresses, Passwords, Usernames"
},
{
"name": "Legendas.tv",
"description": "In approximately October 2017, the spanish subtitle website Legendas.TV suffered a data breach. Around 3.8 million users were affected mostly from Spain, Brazil and Portugal.",
"date": "2019-01-01",
"leakcount": 3866599,
"leaktypes": "Email addresses, IP addresses, Names, Usernames, Passwords"
},
{
"name": "ExtremeGameZone.com",
"description": "N/A",
"date": "2019-01-01",
"leakcount": 8799,
"leaktypes": "Email addresses, IP addresses, Usernames, Passwords"
},
{
"name": "global-tec.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Muslim Directory",
"description": "In February 2014, the uk guide to services and business known as the muslim directory was attacked by the hacker known as @th3inf1d3l. The data was consequently dumped publicly and included the web accounts of tens of thousands of users which contained data including their names, home address, age group, email, website activity and password in plain text.",
"date": "2014-02-17",
"leakcount": 37784,
"leaktypes": "Age groups, Email addresses, Employers, Names, Passwords, Phone numbers, Physical addresses, Website activity"
},
{
"name": "musketier.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Cit0day",
"description": "More than 23,000 hacked databases have been made available in November 2020 for download on several hacking forums and Telegram channels in what threat intel analysts are calling the biggest leak of its kind. The database collection is said to have originated from Cit0Day.in, a private service advertised on hacking forums to other cybercriminals. Cit0day operated by collecting hacked databases and then providing access to usernames, emails, addresses, and even cleartext passwords to other hackers for a daily or monthly fee.",
"date": "2020-11-04",
"leakcount": 468385696,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "goaliestore.com",
"description": "N/A",
"date": "",
"leakcount": 27974,
"leaktypes": "N/A"
},
{
"name": "vw-bus-t4.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "TheBestCaseScenario.com",
"description": "N/A",
"date": "2019-01-01",
"leakcount": 18406,
"leaktypes": "Email addresses, IP addresses, Usernames, Passwords"
},
{
"name": "manns.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "SumoTorrent.sx",
"description": "In June 2014, the torrent site Sumo Torrent was hacked and 285k member records were exposed. The data included IP addresses, email addresses and passwords stored as weak MD5 hashes.",
"date": "2014-06-21",
"leakcount": 30229,
"leaktypes": "Email addresses, IP addresses, Passwords, Usernames, Website activity"
},
{
"name": "forum.clean-ingredients.de",
"description": "N/A",
"date": "",
"leakcount": 110,
"leaktypes": "N/A"
},
{
"name": "thetrenchesforum.com",
"description": "N/A",
"date": "",
"leakcount": 253,
"leaktypes": "N/A"
},
{
"name": "modellflynytt.no",
"description": "N/A",
"date": "",
"leakcount": 13276,
"leaktypes": "N/A"
},
{
"name": "hemmelig.com",
"description": "In December 2011, norways largest online sex shop hemmelig.com was hacked by a collective calling themselves 'Team Appunity'. The attack exposed over 28,000 usernames and email addresses along with nicknames, gender, year of birth and unsalted MD5 password hashes.",
"date": "2011-12-21",
"leakcount": 28641,
"leaktypes": "Email addresses, Genders, Nicknames, Passwords, Usernames, Years of birth"
},
{
"name": "psyforum.org",
"description": "N/A",
"date": "",
"leakcount": 14473,
"leaktypes": "N/A"
},
{
"name": "malabrigo-garn.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "forum.gonemoab.com",
"description": "N/A",
"date": "",
"leakcount": 455,
"leaktypes": "N/A"
},
{
"name": "diecastmodelaircraft.com",
"description": "N/A",
"date": "",
"leakcount": 5470,
"leaktypes": "N/A"
},
{
"name": "desishades.com",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "FFShrine",
"description": "N/A",
"date": "2015-07-18",
"leakcount": 575975,
"leaktypes": "Email Addresses, Passwords, Usernames, Website activity"
},
{
"name": "mw-funktechnik.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "R2Games",
"description": "In late 2015, the gaming website R2Games was hacked and more than 2.1M personal records disclosed. The vBulletin forum included IP addresses and passwords stored as salted hashes using a weak implementation enabling many to be rapidly cracked. A further 11M accounts were added to 'DeHashed' in March 2016 and another 9M in July 2016 bringing the total to over 22M.",
"date": "2015-12-01",
"leakcount": 22281337,
"leaktypes": "Email addresses, IP addresses, Passwords, Usernames"
},
{
"name": "JobAndTalent.com",
"description": "In February 2018, the worlds leading digital temp staffing agency Jobandtalent suffered a data breach that exposed 11M user accounts. The compromised data included email addresses, names, ip addresses, and passwords stored as salted SHA-1 hashes.",
"date": "2018-07-01",
"leakcount": 11071953,
"leaktypes": "Email addresses, IP addresses, Names, Passwords"
},
{
"name": "tunngle.net",
"description": "N/A",
"date": "",
"leakcount": 8195146,
"leaktypes": "N/A"
},
{
"name": "snipersparadise.com",
"description": "N/A",
"date": "",
"leakcount": 22296,
"leaktypes": "N/A"
},
{
"name": "rallyforum.com",
"description": "N/A",
"date": "",
"leakcount": 48551,
"leaktypes": "N/A"
},
{
"name": "Unforgivenwow.com",
"description": "N/A",
"date": "2018-01-01",
"leakcount": 27781,
"leaktypes": "Email addresses, IP addresses, Passwords, Usernames"
},
{
"name": "Gfan.com",
"description": "In October 2016, data surfaced that was allegedly obtained from the Chinese website known as GFAN and contained 22.5M accounts.",
"date": "2016-10-10",
"leakcount": 22716615,
"leaktypes": "Email addresses, IP addresses, Passwords, Usernames"
},
{
"name": "handwerkerverbund-deutschland.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "socaluncensored.com",
"description": "N/A",
"date": "",
"leakcount": 2898,
"leaktypes": "N/A"
},
{
"name": "ak-lsa.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "1cool.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "stadtportal.web2galaxy.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "EmuParadise.me",
"description": "In April 2018, the self-proclaimed 'biggest retro gaming website on earth', Emuparadise, suffered a data breach. The compromised vBulletin forum exposed 1.1 million email addresses, IP address, usernames and passwords stored as salted MD5 hashes.",
"date": "2018-04-01",
"leakcount": 1128981,
"leaktypes": "Email addresses, IP addresses, Passwords, Usernames"
},
{
"name": "universarium",
"description": "In approximately November 2019, the Russian 'Remote preparatory faculty for IT specialties' Universarium suffered a data breach. The incident exposed 565k email addresses and passwords in plain text. Universarium did not respond to multiple attempts to make contact over a period of many weeks. The data was provided to HIBP by dehashed.com.",
"date": "2019-11-01",
"leakcount": 568775,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "imgur",
"description": "In September 2013, the online image sharing community imgur suffered a data breach. A selection of the data containing 1.7 million email addresses and passwords surfaced more than 4 years later in November 2017. Although imgur stored passwords as SHA-256 hashes, the data in the breach contained plain text passwords suggesting that many of the original hashes had been cracked. imgur advises that they rolled over to bcrypt hashes in 2016.",
"date": "2013-09-01",
"leakcount": 1749806,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "DubSmash",
"description": "In December 2018, the video messaging service Dubsmash suffered a data breach. The incident exposed 162 million unique email addresses alongside usernames and PBKDF2 password hashes. In 2019, the data appeared listed for sale on a dark web marketplace (along with several other large breaches) and subsequently began circulating more broadly.",
"date": "2018-12-01",
"leakcount": 161549213,
"leaktypes": "Email addresses, Geographic locations, Names, Passwords, Phone numbers, Spoken languages, Usernames"
},
{
"name": "Dubsmash",
"description": "In December 2018, the video messaging service Dubsmash suffered a data breach. The incident exposed 162 million unique email addresses alongside usernames and PBKDF2 password hashes. In 2019, the data appeared listed for sale on a dark web marketplace (along with several other large breaches) and subsequently began circulating more broadly.",
"date": "2018-12-01",
"leakcount": 161549213,
"leaktypes": "Email addresses, Geographic locations, Names, Passwords, Phone numbers, Spoken languages, Usernames"
},
{
"name": "ww.w.f-tor.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "lfvmv.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "albshara.net",
"description": "N/A",
"date": "",
"leakcount": 428,
"leaktypes": "N/A"
},
{
"name": "bwguide.f-thies.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "forum.ruisystem.net",
"description": "N/A",
"date": "",
"leakcount": 203,
"leaktypes": "N/A"
},
{
"name": "forum-it.advanced-mind-institute.org",
"description": "N/A",
"date": "",
"leakcount": 947,
"leaktypes": "N/A"
},
{
"name": "dev.avsig.com",
"description": "N/A",
"date": "",
"leakcount": 175,
"leaktypes": "N/A"
},
{
"name": "eberbach-channel.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "auction.flinky.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "solidworkscommunity.com_cleaned",
"description": "In May 2017 the HackNotice security research team discovered a data leak file associated with this domain. According to the hacker, this domain was allegedly hacked. If there are no other sources attached to this hack notice, then we don't have an official disclosure of a data incident, so this hack is only implied.",
"date": "2017-05-01",
"leakcount": "",
"leaktypes": "N/A"
},
{
"name": "designerbooks.ru",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "5,611 Separate Data Breaches",
"description": "In February 2018, a massive collection of 5,611 alleged data breaches was found online. 5,611 files consisting of more than 250 million unique email addresses had not previously been seen. Each file contained both an email address, hashed passwords and plain text password and were consequently loaded as indivisual 'unverified' data breaches, however, for the sake of keeping this page clean, a drop down with all the urls has been added.",
"date": "2018-02-19",
"leakcount": 297215532,
"leaktypes": "Email addresses, hashed passwords, passwords"
},
{
"name": "Boxee",
"description": "In March 2014, the home theatre PC software maker Boxee had their forums compromised in an attack. The attackers obtained the entire vBulletin MySQL database and promptly posted it for download on the Boxee forum itself. The data included 160k users, password histories, private messages and a variety of other data exposed across nearly 200 publicly exposed tables.",
"date": "2014-03-29",
"leakcount": 158093,
"leaktypes": "Dates of birth, Email addresses, Geographic locations, Historical passwords, Instant messenger identities, IP addresses, Passwords, Private messages, User website URLs, Usernames"
},
{
"name": "ameros.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "hamboerse.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "deenside.co.uk",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "syndrome.ir",
"description": "N/A",
"date": "",
"leakcount": 2788,
"leaktypes": "N/A"
},
{
"name": "zinorm.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Swappernet.com",
"description": "N/A",
"date": "",
"leakcount": 765608,
"leaktypes": "Usernames, Passwords, IP Addresses"
},
{
"name": "pharma-kodex.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "labelocean.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Wowscape.net",
"description": "N/A",
"date": "2018-01-01",
"leakcount": 348,
"leaktypes": "Email addresses, Usernames, Passwords"
},
{
"name": "dealmachines.com",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "The Fly on the Wall",
"description": "In December 2017, the stock market news website The Fly on the Wall suffered a data breach. The data in the breach included 84k unique email addresses as well as purchase histories and credit card data.",
"date": "2017-12-31",
"leakcount": 84011,
"leaktypes": "Age groups, Credit cards, Email addresses, Genders, Names, Passwords, Phone numbers, Physical addresses, Purchases, Usernames"
},
{
"name": "i-Dressup",
"description": "In June 2016, the teen social site known as i-Dressup was hacked and over 2 million user accounts were exposed. At the time the hack was reported, the i-Dressup operators were not contactable and the underlying SQL injection flaw remained open, allegedly exposing a total of 5.5 million accounts. The breach included email addresses and passwords stored in plain text.",
"date": "2016-07-15",
"leakcount": 2191565,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "scootersoftware.com",
"description": "N/A",
"date": "",
"leakcount": 19941,
"leaktypes": "N/A"
},
{
"name": "Short-Edition.com",
"description": "N/A",
"date": "",
"leakcount": 513260,
"leaktypes": "N/A"
},
{
"name": "COMELEC (Philippines Voters)",
"description": "In March 2016, the Philippines Commission of Elections website (COMELEC) was attacked and defaced, allegedly by Anonymous Philippines. Shortly after, data on 55 million Filipino voters was leaked publicly and included sensitive information such as genders, marital statuses, height and weight and biometric fingerprint data. The breach only included 228k email addresses.",
"date": "2016-03-27",
"leakcount": 228605,
"leaktypes": "Biometric data, Dates of birth, Email addresses, Family members' names, Genders, Job titles, Marital statuses, Names, Passport numbers, Phone numbers, Physical addresses, Physical attributes"
},
{
"name": "ziegelwerk-englert.de",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "Nulled.ch",
"description": "N/A",
"date": "2020-05-20",
"leakcount": 43619,
"leaktypes": "Email addresses, IP addresses, Passwords, Private messages, Usernames"
},
{
"name": "deutschlandnetz.net",
"description": "In January 2019, a large collection named 'Collection #1' of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 billion records including 773 million unique email addresses alongside passwords those addresses had used on other breached services.",
"date": "2019-01-07",
"leakcount": 2754004193,
"leaktypes": "Email addresses, Passwords"
},
{
"name": "FILMAI.IN",
"description": "N/A",
"date": "",
"leakcount": 645975,
"leaktypes": "N/A"
},
{
"name": "Lookbook",
"description": "In August 2012, the fashion site Lookbook suffered a data breach. The data later appeared listed for sale in June 2016 and included 1.1 million usernames, email and IP addresses, birth dates and plain text passwords.",
"date": "2012-08-24",
"leakcount": 1074948,