-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1397 lines (1356 loc) · 60.8 KB
/
index.html
File metadata and controls
1397 lines (1356 loc) · 60.8 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>
Free Data Breach Search: Check If Your Email Was Exposed | XposedOrNot
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, maximum-scale=5.0, initial-scale=1.0"
/>
<meta
name="description"
content="Search billions of breach records to check if your email was exposed. Free data breach lookup and leak checker. Instant results, no login required, fully private."
/>
<meta
name="keywords"
content="data breach search engine, free data breach search engine, data breach checker, data breach search, data breach lookup, data leak checker, email breach lookup, email breach check, breach search engine, data breach check, email breach, email data breach search, databreach search, breach checker, email data breach"
/>
<meta name="author" content="Devanand Premkumar" />
<link rel="canonical" href="https://xposedornot.com/" />
<link rel="icon" href="/favicon.ico" sizes="16x16 32x32 48x48 64x64 128x128 256x256" type="image/x-icon" />
<link rel="icon" href="/static/images/logos/logo.svg" type="image/svg+xml" />
<link rel="icon" href="/static/images/logos/logo-96x96.png" sizes="96x96" type="image/png" />
<link rel="icon" href="/static/images/logos/logo-32x32.png" sizes="32x32" type="image/png" />
<link rel="icon" href="/static/images/logos/logo-192x192.png" sizes="192x192" type="image/png" />
<link rel="icon" href="/static/images/logos/logo-512x512.png" sizes="512x512" type="image/png" />
<link rel="apple-touch-icon" href="/static/images/logos/logo-180x180.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin />
<link rel="dns-prefetch" href="https://static.hotjar.com" />
<link rel="me" href="https://infosec.exchange/@XposedOrNot" />
<meta
property="og:title"
content="Free Data Breach Search: Check If Your Email Was Exposed | XposedOrNot"
/>
<meta
property="og:description"
content="Search billions of breach records to check if your email was exposed. Free data breach lookup and leak checker. Instant results, no login required, fully private."
/>
<meta
property="og:image"
content="https://xposedornot.com/static/images/xon.png"
/>
<meta property="og:image:alt" content="XposedOrNot Logo" />
<meta property="og:url" content="https://xposedornot.com" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="XposedOrNot" />
<meta property="og:locale" content="en_US" />
<meta property="og:locale:alternate" content="bn_BD" />
<meta property="og:locale:alternate" content="de_DE" />
<meta property="og:locale:alternate" content="es_ES" />
<meta property="og:locale:alternate" content="fr_FR" />
<meta property="og:locale:alternate" content="hi_IN" />
<meta property="og:locale:alternate" content="it_IT" />
<meta property="og:locale:alternate" content="ja_JP" />
<meta property="og:locale:alternate" content="pt_BR" />
<meta property="og:locale:alternate" content="ru_RU" />
<meta property="og:locale:alternate" content="ta_IN" />
<meta property="og:locale:alternate" content="zh_CN" />
<!-- Hreflang tags for SEO -->
<link rel="alternate" hreflang="en" href="https://xposedornot.com/" />
<link rel="alternate" hreflang="bn" href="https://xposedornot.com/bn/" />
<link rel="alternate" hreflang="de" href="https://xposedornot.com/de/" />
<link rel="alternate" hreflang="es" href="https://xposedornot.com/es/" />
<link rel="alternate" hreflang="fr" href="https://xposedornot.com/fr/" />
<link rel="alternate" hreflang="hi" href="https://xposedornot.com/hi/" />
<link rel="alternate" hreflang="it" href="https://xposedornot.com/it/" />
<link rel="alternate" hreflang="ja" href="https://xposedornot.com/ja/" />
<link rel="alternate" hreflang="pt" href="https://xposedornot.com/pt/" />
<link rel="alternate" hreflang="ru" href="https://xposedornot.com/ru/" />
<link rel="alternate" hreflang="ta" href="https://xposedornot.com/ta/" />
<link rel="alternate" hreflang="zh" href="https://xposedornot.com/zh/" />
<link rel="alternate" hreflang="x-default" href="https://xposedornot.com/" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@XposedOrNot" />
<meta name="twitter:creator" content="@DevaOnBreaches" />
<meta
name="twitter:title"
content="Free Data Breach Search: Check If Your Email Was Exposed | XposedOrNot"
/>
<meta
name="twitter:description"
content="Search billions of breach records to check if your email was exposed. Free data breach lookup and leak checker. Instant results, no login required, fully private."
/>
<meta
name="twitter:image"
content="https://xposedornot.com/static/images/xon.png"
/>
<meta
name="twitter:image:alt"
content="XposedOrNot Security Tool Interface"
/>
<link href="/static/css/style-new.css" type="text/css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/4.6.2/css/bootstrap.min.css"
integrity="sha512-rt/SrQ4UNIaGfDyEXZtNcyWvQeOq0QLygHluFQcSjaGB04IxWhal71tKuzP6K8eYXYB6vJV4pHkXcmFGGQ1/0w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Async Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css"
integrity="sha256-BtbhCIbtfeVWGsqxk1vOHEYXS6qcvQvLMZqjtpWUEx8"
crossorigin="anonymous"
media="print"
onload="this.media='all'"
/>
<noscript>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css"
integrity="sha256-BtbhCIbtfeVWGsqxk1vOHEYXS6qcvQvLMZqjtpWUEx8"
crossorigin="anonymous"
/>
</noscript>
<!-- Preload and async load Google Fonts -->
<link
rel="preload"
as="style"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;900&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;900&display=swap"
media="print"
onload="this.media='all'"
/>
<noscript>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;900&display=swap"
/>
</noscript>
<link rel="author" href="humans.txt" />
<script src="/static/scripts/other-libraries.js" defer></script>
<link rel="preload" href="/static/css/style-new.css" as="style" />
<link rel="preload" href="/static/scripts/index.js" as="script" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "XposedOrNot",
"url": "https://xposedornot.com",
"logo": "https://xposedornot.com/static/images/xon.png",
"description": "Free, open-source data breach monitoring service that helps individuals and organizations check email exposure, verify password security, and receive real-time breach alerts.",
"foundingDate": "2017",
"founder": {
"@type": "Person",
"name": "Devanand Premkumar"
},
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Customer Support",
"url": "https://xposedornot.com/faq.html"
},
"sameAs": [
"https://twitter.com/XposedOrNot",
"https://facebook.com/xposedornot",
"https://infosec.exchange/@XposedOrNot",
"https://github.com/XposedOrNot"
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "XposedOrNot",
"url": "https://xposedornot.com",
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://xposedornot.com/search?email={email}"
},
"query-input": "required name=email"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "XposedOrNot",
"url": "https://xposedornot.com",
"description": "Free data breach search engine to check if your email was exposed. Search billions of leaked records with our email breach lookup and data leak checker. Get real-time breach alerts and protect your digital identity.",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Web browser (any platform)",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Data breach search engine",
"Email breach lookup",
"Data leak checker",
"Email breach checking",
"Password security verification",
"Real-time breach alerts",
"Domain monitoring",
"Privacy Shield",
"CXO Dashboard",
"Breach visualizations",
"Phishing scanner",
"Breach comparison"
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://xposedornot.com"
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How do I check if my email was in a data breach?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Type your email in the search box above and hit 'Check My Email.' We'll scan billions of exposed records and show you every breach your email appeared in, what data was leaked, and a risk score so you know where you stand. No signup needed."
}
},
{
"@type": "Question",
"name": "Can I check if my company's domain has been breached?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Our domain breach checker shows you exactly how exposed your company is, including the number of breaches, total records leaked, and a breakdown of what types of data were compromised. It's a quick way for security teams to assess their organization's breach footprint."
}
},
{
"@type": "Question",
"name": "Is this really free? What's the catch?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No catch. Every tool on XposedOrNot is free, including email breach checking, password leak checks, domain monitoring, breach alerts, and the CXO dashboard. The entire project is open source on GitHub. We believe breach awareness shouldn't cost anything."
}
},
{
"@type": "Question",
"name": "Is my search private? Do you store what I type?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We don't log your search queries and we don't store your results. Your email is checked against our database and that's it. Nothing is saved, nothing is shared. You can read the full details in our privacy policy."
}
},
{
"@type": "Question",
"name": "What should I do if my email was found in a breach?",
"acceptedAnswer": {
"@type": "Answer",
"text": "First, change the password for the breached account immediately. If you reused that password anywhere else, change those too. Turn on two-factor authentication wherever you can. Then set up free breach alerts so you'll know the moment your email shows up in a future breach."
}
},
{
"@type": "Question",
"name": "Can I check if my password has been leaked?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Our password leak checker searches over 835 million exposed passwords. It uses SHA-3 Keccak-512 hashing, which means your actual password is never sent or stored. We only compare a one-way hash. If your password shows up, change it everywhere you've used it."
}
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to Check If Your Email Was Exposed in a Data Breach",
"description": "Use XposedOrNot to find out if your email address has been compromised in known data breaches and take steps to protect your accounts.",
"step": [
{
"@type": "HowToStep",
"position": 1,
"name": "Check Your Exposure",
"text": "Enter your email address in the search box and click 'Check My Email' to get instant results from our database of known data breaches.",
"url": "https://xposedornot.com/#search"
},
{
"@type": "HowToStep",
"position": 2,
"name": "Get Real-Time Alerts",
"text": "Sign up for free breach alerts so you are notified immediately whenever your email appears in a new data breach.",
"url": "https://xposedornot.com/#alertMeModal"
},
{
"@type": "HowToStep",
"position": 3,
"name": "Take Action Fast",
"text": "Review the clear guidance provided on which passwords to change and which accounts to secure to protect your digital identity.",
"url": "https://xposedornot.com/"
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "XposedOrNot - Free Data Breach Search Engine",
"description": "Free data breach search engine to check if your email was exposed. Email breach lookup, data leak checker, real-time alerts, and password security verification.",
"url": "https://xposedornot.com/",
"speakable": {
"@type": "SpeakableSpecification",
"cssSelector": ["#heading", ".banner-center p", ".benefit-card h3", ".benefit-card p"]
},
"mainEntity": {
"@type": "SoftwareApplication",
"name": "XposedOrNot"
}
}
</script>
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<meta name="theme-color" content="#3f71f3" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="XposedOrNot" />
</head>
<body class="v2" data-spy="scroll" data-target=".menu" data-offset="50">
<a class="skip-link" href="#main-content">Skip to main content</a>
<div class="xon">
<main id="main-content">
<div class="searchMe">
<div class="banner" id="banner">
<canvas id="canvas" aria-hidden="true"></canvas>
<div class="grid">
<nav
class="navbar navbar-expand-md navbar-dark justify-content-center"
>
<a
class="navbar-brand abs"
href="/"
style="text-decoration: none"
>
<span
style="
font-size: 1.5em;
font-weight: bold;
display: block;
color: white;
"
>XposedOrNot</span
>
<span
style="
font-size: 0.8em;
display: block;
color: rgba(255, 255, 255, 0.95);
margin-top: -10px;
"
>Community Edition</span
>
</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#collapsingNavbar"
aria-controls="collapsingNavbar"
aria-expanded="false"
aria-label="Toggle navigation menu"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="collapsingNavbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item active px-4">
<a class="nav-link" href="password.html">Password</a>
</li>
<li class="nav-item active px-4">
<a class="nav-link" href="faq.html">FAQ</a>
</li>
<li class="nav-item active px-4">
<a
class="nav-link"
href="https://plus.xposedornot.com"
target="_blank"
>xonPlus<span class="sr-only"> (opens in new tab)</span></a
>
</li>
<li class="nav-item active px-4">
<a class="nav-link" href="api_doc.html">API</a>
</li>
<li class="nav-item active dropdown px-4">
<a
aria-expanded="false"
class="nav-link dropdown-toggle"
data-toggle="dropdown"
href="#"
id="navbarDropdownMenuLink"
role="button"
>
Language <i class="fas fa-caret-down" aria-hidden="true"></i
></a>
<style>
.dropdown-toggle::after {
display: none;
}
</style>
<div
aria-labelledby="navbarDropdownMenuLink"
class="dropdown-menu"
>
<a class="dropdown-item" href="/zh/" lang="zh">中文 (Chinese)</a>
<a class="dropdown-item" href="/es/" lang="es">Español (Spanish)</a>
<a class="dropdown-item" href="/hi/" lang="hi">हिन्दी (Hindi)</a>
<a class="dropdown-item" href="/bn/" lang="bn">বাংলা (Bengali)</a>
<a class="dropdown-item" href="/pt/" lang="pt">Português (Portuguese)</a>
<a class="dropdown-item" href="/ru/" lang="ru">Русский (Russian)</a>
<a class="dropdown-item" href="/ja/" lang="ja">日本語 (Japanese)</a>
<a class="dropdown-item" href="/de/" lang="de">Deutsch (German)</a>
<a class="dropdown-item" href="/fr/" lang="fr">Français (French)</a>
<a class="dropdown-item" href="/it/" lang="it">Italiano (Italian)</a>
<a class="dropdown-item" href="/ta/" lang="ta">தமிழ் (Tamil)</a>
</div>
</li>
</ul>
</div>
</nav>
<!-- V2 Hero: Single-column centered layout -->
<div class="banner-row">
<div class="banner-center">
<div class="banner-text">
<form id="search" method="post" action="/">
<h1 id="heading" align="center">
Check If Your Email Was Exposed in a Data Breach
</h1>
<p align="center">
Free data breach search engine. Search billions of
exposed records instantly. Get real-time alerts to
protect your accounts.
</p>
<div class="form mail-box">
<div class="modern-search-container">
<input
autofocus
class="modern-search-input"
type="email"
placeholder="your@email.com"
id="edhu"
aria-label="Email address to check for data breaches"
autocomplete="email"
required
aria-required="true"
/>
<button
class="modern-search-button"
type="submit"
id="searchMe"
aria-label="Check your email for data breaches"
>
Check My Email
</button>
</div>
</div>
</form>
<p
style="
font-size: 0.75em;
color: #ffffff;
margin: 12px 0 8px 0;
text-align: center;
"
>
By using this, you agree to our
<a
href="terms"
target="_blank"
rel="noopener"
style="
display: inline !important;
color: #ffffff;
text-decoration: underline;
margin: 0 !important;
"
>Terms<span class="sr-only"> (opens in new tab)</span></a
>
and
<a
href="privacy"
target="_blank"
rel="noopener"
style="
display: inline !important;
color: #ffffff;
text-decoration: underline;
margin: 0 !important;
"
>Privacy Policy<span class="sr-only"> (opens in new tab)</span></a
>.
</p>
<div class="hero-alert-cta">
<a
href="#alertMeModal"
role="button"
data-toggle="modal"
data-target="#alertMeModal"
class="hero-alert-link"
>
<i class="fa fa-bell" aria-hidden="true"></i>
Get free alerts for new breaches
</a>
</div>
<!-- Hero Quick Tools -->
<nav class="hero-tools" aria-label="Quick access to security tools">
<h2 class="gradient-text" style="-webkit-text-fill-color: #fff; color: #fff;">Free Data Breach Search & Security Tools</h2>
<div class="hero-tools-grid">
<a href="shield.html" class="hero-tool-card">
<i class="fas fa-shield-alt" aria-hidden="true"></i>
<span class="hero-tool-label">Privacy Shield</span>
<i class="fas fa-chevron-right hero-tool-arrow" aria-hidden="true"></i>
<span class="hero-tool-tip">Protect your email from public searches</span>
</a>
<a href="domains.html" class="hero-tool-card">
<i class="fas fa-building" aria-hidden="true"></i>
<span class="hero-tool-label">Domain Insights</span>
<i class="fas fa-chevron-right hero-tool-arrow" aria-hidden="true"></i>
<span class="hero-tool-tip">Overview of breach incidents for your domain</span>
</a>
<a href="dashboard.html" class="hero-tool-card">
<i class="fas fa-tachometer-alt" aria-hidden="true"></i>
<span class="hero-tool-label">CXO Dashboard</span>
<i class="fas fa-chevron-right hero-tool-arrow" aria-hidden="true"></i>
<span class="hero-tool-tip">Monitor breaches across validated domains</span>
</a>
<a href="breaches-visualisations.html" class="hero-tool-card">
<i class="fas fa-chart-pie" aria-hidden="true"></i>
<span class="hero-tool-label">Breach Visuals</span>
<i class="fas fa-chevron-right hero-tool-arrow" aria-hidden="true"></i>
<span class="hero-tool-tip">See the scale of breaches graphically</span>
</a>
<a href="xposed.html" class="hero-tool-card">
<i class="fas fa-database" aria-hidden="true"></i>
<span class="hero-tool-label">Data Breaches</span>
<i class="fas fa-chevron-right hero-tool-arrow" aria-hidden="true"></i>
<span class="hero-tool-tip">Details of all breaches including sources</span>
</a>
<a href="compare.html" class="hero-tool-card">
<i class="fas fa-balance-scale" aria-hidden="true"></i>
<span class="hero-tool-label">Breach Compare</span>
<i class="fas fa-chevron-right hero-tool-arrow" aria-hidden="true"></i>
<span class="hero-tool-tip">Compare breach exposure between two emails</span>
</a>
</div>
</nav>
<div
class="modal fade"
id="vidModal"
tabindex="-1"
role="dialog"
aria-labelledby="ModalLabel"
aria-hidden="true"
>
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<h3 class="sr-only" id="ModalLabel">Video player</h3>
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
<div class="embed-responsive embed-responsive-16by9">
<iframe
class="embed-responsive-item"
src=""
id="video"
title="XposedOrNot demonstration video"
allowscriptaccess="always"
allow="autoplay"
></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Social Proof Bar -->
<section class="social-proof-bar" aria-label="Trust and social proof">
<div class="social-proof-items">
<div class="social-proof-item">
<i class="fas fa-users" aria-hidden="true"></i>
<span class="proof-full">Trusted by thousands of security conscious users</span>
<span class="proof-short">Trusted by thousands</span>
</div>
<div class="social-proof-item">
<i class="fas fa-server" aria-hidden="true"></i>
<span class="proof-full">99.9% uptime, always available</span>
<span class="proof-short">99.9% uptime</span>
</div>
<div class="social-proof-item">
<i class="fab fa-github" aria-hidden="true"></i>
<span class="proof-full">Fully open source on GitHub</span>
<span class="proof-short">Open source</span>
</div>
</div>
</section>
<!-- How It Works: Benefit Cards -->
<section class="benefit-cards-section password" aria-label="How XposedOrNot works">
<div class="container">
<h2 class="gradient-text">
How XposedOrNot Keeps You Safe
</h2>
<p align="center"><i class="fas fa-arrow-down blueArrow" aria-hidden="true"></i></p>
<!-- Video centered on top -->
<div class="benefit-video">
<div class="video-container" style="padding-left: 0; display: inline-block;">
<p class="video-caption">
<i class="fas fa-play-circle" aria-hidden="true"></i> See how it works
</p>
<video
class="img-fluid pass"
controls
loop
style="max-width: 800px; width: 100%; height: auto"
id="xon-video"
aria-label="XposedOrNot demonstration video showing how to check email for data breaches"
>
<source src="/static/xon-video.mp4" type="video/mp4" />
<track kind="captions" src="/static/xon-video-captions.vtt" srclang="en" label="English captions" />
Your browser does not support the video tag.
</video>
</div>
</div>
<!-- 3 Benefit Cards -->
<div class="benefit-cards">
<div class="benefit-card">
<div class="benefit-card-icon">
<i class="fas fa-search" aria-hidden="true"></i>
</div>
<h3>Email Breach Lookup</h3>
<p>Enter your email in our data breach search engine and get instant results from <span id="benefit-breach-count">hundreds of</span> known data breaches and data leaks.</p>
</div>
<div class="benefit-card">
<div class="benefit-card-icon">
<i class="fas fa-bell" aria-hidden="true"></i>
</div>
<h3>Get Real-Time Alerts</h3>
<p>We monitor 24/7 and notify you immediately if your email appears in a new breach.</p>
</div>
<div class="benefit-card">
<div class="benefit-card-icon">
<i class="fas fa-shield-alt" aria-hidden="true"></i>
</div>
<h3>Take Action Fast</h3>
<p>Get clear guidance on which exposed passwords to change and which accounts to secure after a data breach check.</p>
</div>
</div>
<!-- CTA below cards -->
<div class="benefit-cta">
<a
href="#alertMeModal"
class="cta-button"
role="button"
data-toggle="modal"
data-target="#alertMeModal"
><i class="fa fa-bell" aria-hidden="true"></i> Get Free Alerts</a
>
<span class="cta-subtext">No spam. No cost. Just protection.</span>
</div>
</div>
</section>
<!-- Statistics -->
<section class="follow" aria-label="Data breach statistics">
<div class="container" align="center">
<h2 class="gradient-text">
The Scale of the Problem
</h2>
<p style="margin-top: 15px; margin-bottom: 25px">
Our data breach search engine indexes real exposed records from real data breaches. Are you in them?
</p>
<div class="follow-row">
<div class="follow-flex">
<div class="follow1 stat-breaches">
<div class="stat-icon">
<i class="fas fa-shield-alt" aria-hidden="true"></i>
</div>
<div class="stat-number" id="b1"></div>
<h3>Data Breaches</h3>
</div>
<div class="follow1 stat-records">
<div class="stat-icon">
<i class="fas fa-database" aria-hidden="true"></i>
</div>
<div class="stat-number" id="b2"></div>
<h3>Exposed Records</h3>
</div>
<div class="follow1 stat-emails">
<div class="stat-icon">
<i class="fas fa-envelope-open" aria-hidden="true"></i>
</div>
<div class="stat-number" id="p1"></div>
<h3>Exposed Emails</h3>
</div>
<div class="follow1 stat-passwords">
<div class="stat-icon">
<i class="fas fa-key" aria-hidden="true"></i>
</div>
<div class="stat-number" id="p2"></div>
<h3>Exposed Passwords</h3>
</div>
</div>
<p class="stats-context">
That's more exposed records than people on Earth. The question isn't <em>if</em> you've been breached - it's how many times.
</p>
<div class="stats-cta">
<a
href="#search"
class="cta-button scroll-to-top"
role="button"
>
<i class="fas fa-search" aria-hidden="true"></i> Check Your Email Now
</a>
</div>
</div>
</div>
<hr />
</section>
<!-- FAQ -->
<section class="faq-section" aria-label="Frequently asked questions">
<div class="container">
<h2 class="gradient-text">Frequently Asked Questions</h2>
<p class="faq-subtitle">Quick answers about data breach checking, your privacy, and how XposedOrNot works.</p>
<div class="faq-accordion" id="faqAccordion">
<!-- FAQ 1 -->
<div class="faq-card">
<div class="faq-card-header" id="faqHead1">
<button class="faq-toggle collapsed" type="button" data-toggle="collapse" data-target="#faqBody1" aria-expanded="false" aria-controls="faqBody1">
How do I check if my email was in a data breach?
<span class="faq-toggle-icon"><i class="fas fa-chevron-down"></i></span>
</button>
</div>
<div id="faqBody1" class="collapse" aria-labelledby="faqHead1" data-parent="#faqAccordion">
<hr class="faq-divider" />
<div class="faq-card-body">
Type your email in the search box above and hit "Check My Email." We'll scan billions of exposed records and show you every breach your email appeared in, what data was leaked, and a risk score so you know where you stand. No signup needed.
</div>
</div>
</div>
<!-- FAQ 2 -->
<div class="faq-card">
<div class="faq-card-header" id="faqHead2">
<button class="faq-toggle collapsed" type="button" data-toggle="collapse" data-target="#faqBody2" aria-expanded="false" aria-controls="faqBody2">
Can I check if my company's domain has been breached?
<span class="faq-toggle-icon"><i class="fas fa-chevron-down"></i></span>
</button>
</div>
<div id="faqBody2" class="collapse" aria-labelledby="faqHead2" data-parent="#faqAccordion">
<hr class="faq-divider" />
<div class="faq-card-body">
Yes. Our <a href="domains.html">domain breach checker</a> shows you exactly how exposed your company is, including the number of breaches, total records leaked, and a breakdown of what types of data were compromised. It's a quick way for security teams to assess their organization's breach footprint.
</div>
</div>
</div>
<!-- FAQ 3 -->
<div class="faq-card">
<div class="faq-card-header" id="faqHead3">
<button class="faq-toggle collapsed" type="button" data-toggle="collapse" data-target="#faqBody3" aria-expanded="false" aria-controls="faqBody3">
Is this really free? What's the catch?
<span class="faq-toggle-icon"><i class="fas fa-chevron-down"></i></span>
</button>
</div>
<div id="faqBody3" class="collapse" aria-labelledby="faqHead3" data-parent="#faqAccordion">
<hr class="faq-divider" />
<div class="faq-card-body">
No catch. Every tool on XposedOrNot is free, including email breach checking, password leak checks, domain monitoring, breach alerts, and the CXO dashboard. The entire project is <a href="https://github.com/XposedOrNot" target="_blank" rel="noopener">open source on GitHub</a>. We believe breach awareness shouldn't cost anything.
</div>
</div>
</div>
<!-- FAQ 4 -->
<div class="faq-card">
<div class="faq-card-header" id="faqHead4">
<button class="faq-toggle collapsed" type="button" data-toggle="collapse" data-target="#faqBody4" aria-expanded="false" aria-controls="faqBody4">
Is my search private? Do you store what I type?
<span class="faq-toggle-icon"><i class="fas fa-chevron-down"></i></span>
</button>
</div>
<div id="faqBody4" class="collapse" aria-labelledby="faqHead4" data-parent="#faqAccordion">
<hr class="faq-divider" />
<div class="faq-card-body">
We don't log your search queries and we don't store your results. Your email is checked against our database and that's it. Nothing is saved, nothing is shared. You can read the full details in our <a href="privacy.html">privacy policy</a>.
</div>
</div>
</div>
<!-- FAQ 5 -->
<div class="faq-card">
<div class="faq-card-header" id="faqHead5">
<button class="faq-toggle collapsed" type="button" data-toggle="collapse" data-target="#faqBody5" aria-expanded="false" aria-controls="faqBody5">
What should I do if my email was found in a breach?
<span class="faq-toggle-icon"><i class="fas fa-chevron-down"></i></span>
</button>
</div>
<div id="faqBody5" class="collapse" aria-labelledby="faqHead5" data-parent="#faqAccordion">
<hr class="faq-divider" />
<div class="faq-card-body">
First, change the password for the breached account immediately. If you reused that password anywhere else, change those too. Turn on two-factor authentication wherever you can. Then set up <a href="#alertMeModal" data-toggle="modal" data-target="#alertMeModal">free breach alerts</a> so you'll know the moment your email shows up in a future breach. We've put together a detailed guide on <a href="https://blog.xposedornot.com/what-should-you-do-after-data-breach/" target="_blank" rel="noopener">what to do after a data breach</a>.
</div>
</div>
</div>
<!-- FAQ 6 -->
<div class="faq-card">
<div class="faq-card-header" id="faqHead6">
<button class="faq-toggle collapsed" type="button" data-toggle="collapse" data-target="#faqBody6" aria-expanded="false" aria-controls="faqBody6">
Can I check if my password has been leaked?
<span class="faq-toggle-icon"><i class="fas fa-chevron-down"></i></span>
</button>
</div>
<div id="faqBody6" class="collapse" aria-labelledby="faqHead6" data-parent="#faqAccordion">
<hr class="faq-divider" />
<div class="faq-card-body">
Yes. Our <a href="password.html">password leak checker</a> searches over 835 million exposed passwords. It uses SHA-3 Keccak-512 hashing, which means your actual password is never sent or stored. We only compare a one-way hash. If your password shows up, change it everywhere you've used it.
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Free Tools -->
<section class="add" aria-label="Free security tools">
<div class="container">
<h2 class="gradient-text">Free Data Breach Checker & Security Tools</h2>
<div class="add-row1">
<div class="add-flex-5">
<a href="password.html" class="adds">
<div class="add1">
<i class="fas fa-key tool-icon" aria-hidden="true"></i>
<h3>Password Leak Check</h3>
<img
src="/static/images/arrow-left.png"
class="img-fluid arrow"
alt=""
/>
<span class="tooltip-text"
>Free password leak check. Verify if your passwords have
been exposed in data breaches.</span
>
</div>
</a>
<a href="shield.html" class="adds">
<div class="add1">
<i class="fas fa-shield-alt tool-icon" aria-hidden="true"></i>
<h3>Privacy Shield</h3>
<img
src="/static/images/arrow-left.png"
class="img-fluid arrow"
alt=""
/>
<span class="tooltip-text"
>Enable Privacy Shield to protect your email from public
searches.</span
>
</div>
</a>
<a href="domains.html" class="adds">
<div class="add1">
<i class="fas fa-building tool-icon" aria-hidden="true"></i>
<h3>Domain Insights</h3>
<img
src="/static/images/arrow-left.png"
class="img-fluid arrow"
alt=""
/>
<span class="tooltip-text"
>Get a high-level overview of data breach incidents for your
domain.</span
>
</div>
</a>
<a href="domain.html" class="adds">
<div class="add1">
<i class="fas fa-check-circle tool-icon" aria-hidden="true"></i>
<h3>Domain Verification</h3>
<img
src="/static/images/arrow-left.png"
class="img-fluid arrow"
alt=""
/>
<span class="tooltip-text"
>Verify your domain authority swiftly through DNS, email, or
HTML in just three steps.</span
>
</div>
</a>
<a href="breaches-visualisations.html" class="adds">
<div class="add1">
<i class="fas fa-chart-pie tool-icon" aria-hidden="true"></i>
<h3>Breach Visuals</h3>
<img
src="/static/images/arrow-left.png"
class="img-fluid arrow"
alt=""
/>
<span class="tooltip-text"
>Visualize the scale of all loaded data breaches with
detailed infographics.</span
>
</div>
</a>
</div>
<div class="add-flex-5">
<a href="xposed.html" class="adds">
<div class="add1">
<i class="fas fa-database tool-icon" aria-hidden="true"></i>
<h3>Breach Search</h3>
<img
src="/static/images/arrow-left.png"
class="img-fluid arrow"
alt=""
/>
<span class="tooltip-text"
>Dive into comprehensive details of all data breaches loaded
in Xposedornot, including sources and data points.</span
>
</div>
</a>
<a href="compare.html" class="adds">
<div class="add1">
<i class="fas fa-balance-scale tool-icon" aria-hidden="true"></i>
<h3>Breach Compare</h3>
<img
src="/static/images/arrow-left.png"
class="img-fluid arrow"
alt=""
/>
<span class="tooltip-text"
>Compare breach exposure between two emails to find overlapping
breaches and shared risks.</span
>
</div>
</a>
<a href="dashboard.html" class="adds">