-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1029 lines (934 loc) · 42.5 KB
/
Copy pathindex.html
File metadata and controls
1029 lines (934 loc) · 42.5 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlindGuard · Private Security Agent</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&family=Outfit:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-deep: #0a0a0f;
--bg-surface: #12121a;
--bg-card: #1a1a26;
--green-primary: #00ff88;
--green-dim: #00cc6a;
--green-glow: rgba(0, 255, 136, 0.15);
--red-alert: #ff4444;
--orange-warn: #ff8844;
--yellow-med: #ffcc00;
--text-primary: #e8e8f0;
--text-secondary: #8888a0;
--text-dim: #555566;
--border: #2a2a3a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'Outfit', sans-serif;
background: var(--bg-deep);
color: var(--text-primary);
overflow-x: hidden;
line-height: 1.6;
}
body::after {
content: '';
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 9999;
}
nav {
position: fixed;
top: 0; left: 0; right: 0;
padding: 1.2rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(10, 10, 15, 0.85);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
z-index: 100;
}
.nav-logo {
font-family: 'JetBrains Mono', monospace;
font-weight: 700;
font-size: 1.2rem;
color: var(--green-primary);
text-decoration: none;
letter-spacing: -0.5px;
}
.nav-logo span { color: var(--text-primary); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 0.9rem;
font-weight: 400;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
background: var(--green-primary) !important;
color: var(--bg-deep) !important;
padding: 0.5rem 1.2rem;
border-radius: 6px;
font-weight: 600 !important;
font-size: 0.85rem !important;
transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 8rem 2rem 4rem;
position: relative;
}
.hero::before {
content: '';
position: absolute;
top: -200px;
left: 50%;
transform: translateX(-50%);
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(0, 255, 136, 0.06) 0%, transparent 70%);
pointer-events: none;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.4rem 1rem;
border: 1px solid var(--border);
border-radius: 50px;
font-size: 0.8rem;
color: var(--text-secondary);
margin-bottom: 2rem;
animation: fadeInUp 0.8s ease;
}
.hero-badge .dot {
width: 6px; height: 6px;
background: var(--green-primary);
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
font-size: clamp(2.8rem, 7vw, 5.5rem);
font-weight: 700;
line-height: 1.05;
letter-spacing: -2px;
margin-bottom: 1.5rem;
animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 .highlight { color: var(--green-primary); }
.hero-sub {
font-size: clamp(1.05rem, 2vw, 1.25rem);
color: var(--text-secondary);
max-width: 600px;
line-height: 1.7;
font-weight: 300;
margin-bottom: 2.5rem;
animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-actions {
display: flex;
gap: 1rem;
animation: fadeInUp 0.8s ease 0.3s both;
}
.btn-primary {
background: var(--green-primary);
color: var(--bg-deep);
padding: 0.85rem 2rem;
border-radius: 8px;
font-weight: 600;
font-size: 0.95rem;
text-decoration: none;
transition: all 0.2s;
border: none;
cursor: pointer;
font-family: 'Outfit', sans-serif;
}
.btn-primary:hover { box-shadow: 0 0 30px rgba(0, 255, 136, 0.3); transform: translateY(-1px); }
.btn-secondary {
background: transparent;
color: var(--text-primary);
padding: 0.85rem 2rem;
border-radius: 8px;
font-weight: 500;
font-size: 0.95rem;
text-decoration: none;
border: 1px solid var(--border);
transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--text-secondary); background: rgba(255,255,255,0.03); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.built-for {
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-top: 1.5rem;
padding: 0.5rem 1rem;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 0.8rem;
color: var(--text-dim);
}
.built-for a { color: var(--text-secondary); text-decoration: none; }
.built-for a:hover { color: var(--green-primary); }
/* Audit Section */
.audit-section {
padding: 4rem 2rem 6rem;
max-width: 1000px;
margin: 0 auto;
}
.section-label {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: var(--green-primary);
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 1rem;
}
.section-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 700;
letter-spacing: -1px;
margin-bottom: 1rem;
}
.section-desc {
color: var(--text-secondary);
font-size: 1.1rem;
font-weight: 300;
max-width: 650px;
margin-bottom: 2rem;
}
.tee-badge {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.4rem 0.8rem;
background: rgba(0, 255, 136, 0.1);
border: 1px solid rgba(0, 255, 136, 0.2);
border-radius: 50px;
font-size: 0.7rem;
color: var(--green-primary);
margin-bottom: 1rem;
}
.tee-badge .live-dot {
width: 6px; height: 6px;
background: var(--green-primary);
border-radius: 50%;
animation: pulse 1.5s infinite;
}
.audit-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-top: 2rem;
}
@media (max-width: 800px) { .audit-container { grid-template-columns: 1fr; } }
.audit-input-panel, .audit-output-panel {
background: #0d0d14;
border: 1px solid var(--border);
border-radius: 12px;
overflow: hidden;
display: flex;
flex-direction: column;
}
.panel-header {
background: var(--bg-card);
padding: 0.8rem 1rem;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid var(--border);
}
.panel-header-left { display: flex; align-items: center; gap: 0.5rem; }
.panel-dot { width: 10px; height: 10px; border-radius: 50%; }
.panel-dot.red { background: #ff5f57; }
.panel-dot.yellow { background: #febc2e; }
.panel-dot.green { background: #28c840; }
.panel-title {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: var(--text-dim);
margin-left: 0.5rem;
}
.code-input {
width: 100%;
min-height: 300px;
background: transparent;
border: none;
color: var(--text-primary);
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
line-height: 1.7;
padding: 1.2rem;
resize: vertical;
outline: none;
}
.code-input::placeholder { color: var(--text-dim); }
.audit-btn-container { padding: 1rem; border-top: 1px solid var(--border); }
.audit-btn {
width: 100%;
background: var(--green-primary);
color: var(--bg-deep);
border: none;
padding: 0.8rem;
border-radius: 8px;
font-family: 'Outfit', sans-serif;
font-weight: 600;
font-size: 0.95rem;
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.audit-btn:hover { box-shadow: 0 0 25px rgba(0, 255, 136, 0.3); }
.audit-btn:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }
.audit-btn .spinner {
width: 16px; height: 16px;
border: 2px solid var(--bg-deep);
border-top-color: transparent;
border-radius: 50%;
animation: spin 0.6s linear infinite;
display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.output-body {
padding: 1.2rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.8rem;
line-height: 1.8;
color: var(--text-secondary);
min-height: 300px;
overflow-y: auto;
max-height: 500px;
}
.output-placeholder {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 300px;
color: var(--text-dim);
text-align: center;
gap: 0.5rem;
}
.output-placeholder .shield { font-size: 2.5rem; opacity: 0.4; }
.sample-codes { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.sample-btn {
background: var(--bg-card);
border: 1px solid var(--border);
color: var(--text-secondary);
padding: 0.35rem 0.7rem;
border-radius: 5px;
font-size: 0.7rem;
font-family: 'JetBrains Mono', monospace;
cursor: pointer;
transition: all 0.2s;
}
.sample-btn:hover { border-color: var(--green-primary); color: var(--green-primary); }
.audit-tabs {
display: flex;
gap: 0;
margin-top: 2rem;
margin-bottom: -1px;
position: relative;
z-index: 2;
}
.audit-tab {
padding: 0.7rem 1.5rem;
background: transparent;
border: 1px solid var(--border);
border-bottom: none;
color: var(--text-dim);
font-family: 'JetBrains Mono', monospace;
font-size: 0.8rem;
cursor: pointer;
border-radius: 8px 8px 0 0;
transition: all 0.2s;
}
.audit-tab.active {
background: #0d0d14;
color: var(--green-primary);
border-color: var(--border);
}
.audit-tab:hover:not(.active) { color: var(--text-secondary); }
.finding {
padding: 0.8rem;
border-radius: 8px;
margin-bottom: 0.8rem;
border-left: 3px solid;
}
.finding.critical { background: rgba(255, 68, 68, 0.08); border-left-color: var(--red-alert); }
.finding.high { background: rgba(255, 136, 68, 0.08); border-left-color: var(--orange-warn); }
.finding.medium { background: rgba(255, 204, 0, 0.08); border-left-color: var(--yellow-med); }
.finding-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.3rem; }
.severity-badge {
font-size: 0.65rem;
font-weight: 700;
padding: 0.15rem 0.4rem;
border-radius: 3px;
text-transform: uppercase;
}
.severity-badge.critical { background: var(--red-alert); color: #fff; }
.severity-badge.high { background: var(--orange-warn); color: #fff; }
.severity-badge.medium { background: var(--yellow-med); color: #000; }
.finding-title { font-size: 0.85rem; color: var(--text-primary); font-weight: 600; }
.finding-detail { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.2rem; }
.finding-rec { font-size: 0.75rem; color: var(--green-dim); margin-top: 0.3rem; }
.attestation-box {
margin-top: 1rem;
padding: 1rem;
background: rgba(0, 255, 136, 0.05);
border: 1px solid rgba(0, 255, 136, 0.15);
border-radius: 8px;
}
.attestation-box h4 { color: var(--green-primary); font-size: 0.8rem; margin-bottom: 0.6rem; font-weight: 600; }
.attestation-row { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--text-dim); margin-bottom: 0.3rem; }
.attestation-row .label { color: var(--text-secondary); }
.attestation-row .value {
font-family: 'JetBrains Mono', monospace;
max-width: 60%;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.summary-bar { display: flex; gap: 0.8rem; margin-bottom: 1rem; flex-wrap: wrap; }
.summary-stat { padding: 0.5rem 0.8rem; background: var(--bg-card); border-radius: 6px; font-size: 0.75rem; }
.summary-stat .num { font-weight: 700; font-size: 1.1rem; color: var(--text-primary); }
/* Sections */
.section { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.flow {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
margin: 3rem 0;
}
.flow-step {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.5rem;
text-align: center;
min-width: 200px;
flex: 1;
max-width: 250px;
transition: border-color 0.3s;
}
.flow-step:hover { border-color: var(--green-primary); }
.flow-step .icon { font-size: 2rem; margin-bottom: 0.8rem; }
.flow-step h3 { font-size: 1rem; margin-bottom: 0.4rem; font-weight: 600; }
.flow-step p { font-size: 0.85rem; color: var(--text-secondary); font-weight: 300; }
.flow-arrow { color: var(--green-dim); font-size: 1.5rem; font-weight: 300; }
.pillars {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}
.pillar {
background: var(--bg-surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 2rem 1.5rem;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.pillar::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: var(--green-primary);
opacity: 0;
transition: opacity 0.3s;
}
.pillar:hover::before { opacity: 1; }
.pillar:hover { border-color: rgba(0, 255, 136, 0.3); }
.pillar-icon {
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
color: var(--green-primary);
background: var(--green-glow);
padding: 0.3rem 0.6rem;
border-radius: 4px;
display: inline-block;
margin-bottom: 1rem;
}
.pillar h3 { font-size: 1.15rem; margin-bottom: 0.6rem; font-weight: 600; }
.pillar p { color: var(--text-secondary); font-size: 0.9rem; font-weight: 300; line-height: 1.6; }
.threats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
@media (max-width: 700px) { .threats { grid-template-columns: 1fr; } }
.threat-card {
background: var(--bg-surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 2rem;
}
.threat-card h3 { font-size: 1.1rem; margin-bottom: 1.2rem; font-weight: 600; }
.threat-card.prevent h3 { color: var(--green-primary); }
.threat-card.limit h3 { color: var(--text-secondary); }
.threat-item {
display: flex;
align-items: flex-start;
gap: 0.8rem;
margin-bottom: 1rem;
font-size: 0.9rem;
color: var(--text-secondary);
font-weight: 300;
}
.threat-item .icon-check { color: var(--green-primary); font-size: 1rem; flex-shrink: 0; }
.threat-item .icon-x { color: var(--text-dim); font-size: 1rem; flex-shrink: 0; }
.cta-section {
padding: 6rem 2rem;
text-align: center;
position: relative;
}
.cta-section::before {
content: '';
position: absolute;
bottom: 0; left: 50%;
transform: translateX(-50%);
width: 600px; height: 400px;
background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
pointer-events: none;
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -1px; margin-bottom: 1rem; }
.cta-section p { color: var(--text-secondary); font-size: 1.1rem; font-weight: 300; margin-bottom: 2rem; }
footer {
border-top: 1px solid var(--border);
padding: 2rem;
text-align: center;
color: var(--text-dim);
font-size: 0.8rem;
}
footer a { color: var(--text-secondary); text-decoration: none; }
footer a:hover { color: var(--green-primary); }
@media (max-width: 768px) {
nav { padding: 1rem; }
.nav-links { gap: 1rem; }
.nav-links a:not(.nav-cta) { display: none; }
.hero { padding: 7rem 1.5rem 3rem; }
.hero-actions { flex-direction: column; width: 100%; max-width: 300px; }
.flow-arrow { display: none; }
.section { padding: 4rem 1.5rem; }
}
</style>
</head>
<body>
<nav>
<a href="#" class="nav-logo"><span>Blind</span>Guard</a>
<div class="nav-links">
<a href="#audit">Try It</a>
<a href="#how">How It Works</a>
<a href="#github">GitHub App</a>
<a href="#identity">Identity</a>
<a href="https://verify-sepolia.eigencloud.xyz/app/0x9d70dBAb76b6D97Cba8221Bd897d079DFC3f390E" target="_blank">TEE Dashboard</a>
<a href="https://github.com/proof0S/BlindGuard" class="nav-cta" target="_blank">GitHub</a>
</div>
</nav>
<section class="hero">
<div class="hero-badge"><span class="dot"></span> Live on EigenCompute TEE</div>
<h1>Audit code without<br><span class="highlight">ever seeing it.</span></h1>
<p class="hero-sub">BlindGuard is a security agent that runs inside an EigenCompute TEE. Your source code goes in, a signed vulnerability report comes out. The code never leaves the enclave.<br><br>Install it on your repo. Every commit, every release gets audited automatically. You get the guarantee that the code being operated is safe, without anyone ever reading it.</p>
<div class="hero-actions">
<a href="#audit" class="btn-primary">Try Live Audit</a>
<a href="https://github.com/apps/blindguard-security" class="btn-secondary" target="_blank">Install GitHub App</a>
</div>
<div class="built-for">Built for the <a href="https://ideas.eigencloud.xyz/" target="_blank">EigenCloud Open Innovation Challenge</a></div>
</section>
<section class="audit-section" id="audit">
<span class="section-label">Live Demo</span>
<h2 class="section-title">Try it yourself. Right now.</h2>
<p class="section-desc">Paste code or enter a public GitHub repo URL. BlindGuard analyzes everything inside the TEE. The code never leaves the enclave.</p>
<div class="tee-badge"><span class="live-dot"></span> Connected to TEE at blindguard.xyz</div>
<div class="audit-tabs">
<button class="audit-tab active" onclick="switchTab('code', this)">Paste Code</button>
<button class="audit-tab" onclick="switchTab('repo', this)">Audit a Repo</button>
</div>
<div class="audit-container">
<div class="audit-input-panel">
<div class="panel-header">
<div class="panel-header-left">
<span class="panel-dot red"></span><span class="panel-dot yellow"></span><span class="panel-dot green"></span>
<span class="panel-title" id="inputPanelTitle">your-code.py</span>
</div>
<div class="sample-codes" id="sampleBtns">
<button class="sample-btn" onclick="loadSample('secrets')">secrets</button>
<button class="sample-btn" onclick="loadSample('sqli')">sql injection</button>
<button class="sample-btn" onclick="loadSample('cmdi')">cmd injection</button>
<button class="sample-btn" onclick="loadSample('full')">full sample</button>
</div>
</div>
<div id="codeTab">
<textarea class="code-input" id="codeInput" placeholder="# Paste your code here (Solidity, Rust, Python, Go...) # Or click a sample above to try it out."></textarea>
</div>
<div id="repoTab" style="display:none;">
<div style="padding: 1.2rem; display: flex; flex-direction: column; gap: 1rem; min-height: 300px; justify-content: center;">
<div style="font-size: 0.85rem; color: var(--text-secondary);">Enter a public GitHub repository URL</div>
<input type="text" id="repoInput" placeholder="https://github.com/owner/repo" style="width:100%; padding:0.8rem 1rem; background:var(--bg-card); border:1px solid var(--border); border-radius:8px; color:var(--text-primary); font-family:'JetBrains Mono',monospace; font-size:0.85rem; outline:none;" />
<div style="display:flex; gap:0.5rem; flex-wrap:wrap;">
<button class="sample-btn" onclick="loadRepoSample('proof0S/BlindGuard')">proof0S/BlindGuard</button>
<button class="sample-btn" onclick="loadRepoSample('pallets/flask')">pallets/flask</button>
<button class="sample-btn" onclick="loadRepoSample('psf/requests')">psf/requests</button>
</div>
<div style="font-size: 0.7rem; color: var(--text-dim);">Only public repos. We fetch source files (Solidity, Vyper, Rust, Cairo, Move, Python, JS/TS, Go), analyze them inside the TEE, and return the report. The code never leaves the enclave.</div>
</div>
</div>
<div class="audit-btn-container">
<button class="audit-btn" id="auditBtn" onclick="runAudit()">
<span class="spinner" id="spinner"></span>
<span id="btnText">Run Audit in TEE</span>
</button>
</div>
</div>
<div class="audit-output-panel">
<div class="panel-header">
<div class="panel-header-left">
<span class="panel-dot red"></span><span class="panel-dot yellow"></span><span class="panel-dot green"></span>
<span class="panel-title">audit-report.json</span>
</div>
</div>
<div class="output-body" id="outputBody">
<div class="output-placeholder">
<div class="shield">🛡️</div>
<div>Paste code or enter a repo URL</div>
<div style="font-size: 0.7rem; margin-top: 0.3rem;">Analysis happens inside the TEE enclave</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="how">
<span class="section-label">How It Works</span>
<h2 class="section-title">Code in. Report out. Nothing else.</h2>
<p class="section-desc">The entire analysis happens inside a hardware isolated enclave. No one, not even BlindGuard's operators, can access your source code.</p>
<div class="flow">
<div class="flow-step"><div class="icon">📤</div><h3>Upload</h3><p>Code enters the TEE enclave via encrypted channel</p></div>
<span class="flow-arrow">→</span>
<div class="flow-step"><div class="icon">🔍</div><h3>Analyze</h3><p>Static analysis + EigenAI LLM inference inside the enclave</p></div>
<span class="flow-arrow">→</span>
<div class="flow-step"><div class="icon">📋</div><h3>Report</h3><p>Signed vulnerability report + cryptographic attestation exits</p></div>
<span class="flow-arrow">→</span>
<div class="flow-step"><div class="icon">✅</div><h3>Verify</h3><p>Anyone can verify the audit without seeing the code</p></div>
</div>
</section>
<section class="section" id="github">
<span class="section-label">GitHub Integration</span>
<h2 class="section-title">Install once. Every commit is safe.</h2>
<p class="section-desc">BlindGuard ships as a GitHub App. Install it on any repo, public or private. Every push and every release triggers a full security audit inside the TEE. Results show up directly on your commits.</p>
<div class="flow">
<div class="flow-step"><div class="icon">⚙️</div><h3>Install</h3><p>Add BlindGuard to your repo with one click</p></div>
<span class="flow-arrow">→</span>
<div class="flow-step"><div class="icon">📦</div><h3>Push</h3><p>Every commit and release triggers an audit automatically</p></div>
<span class="flow-arrow">→</span>
<div class="flow-step"><div class="icon">🔒</div><h3>Audit</h3><p>Code is analyzed inside the TEE, no one sees it</p></div>
<span class="flow-arrow">→</span>
<div class="flow-step"><div class="icon">✅</div><h3>Report</h3><p>Signed attestation posted as a commit comment</p></div>
</div>
<div style="text-align: center; margin-top: 2rem;">
<a href="https://github.com/apps/blindguard-security" class="btn-primary" target="_blank">Install on Your Repo</a>
</div>
</section>
<section class="section" id="identity">
<span class="section-label">Agent Identity</span>
<h2 class="section-title">Four pillars of trust.</h2>
<p class="section-desc">Every BlindGuard audit is fully auditable. The agent's identity is defined by its code, data commitments, upgrade policy, and persistent state.</p>
<div class="pillars">
<div class="pillar"><span class="pillar-icon">SHA-256</span><h3>Code Hash</h3><p>The Docker image digest is included in every TEE attestation. Anyone can verify the exact code that ran.</p></div>
<div class="pillar"><span class="pillar-icon">COMMIT</span><h3>Data Commitment</h3><p>A hash of the input code is computed before analysis. Proves what was analyzed without revealing it.</p></div>
<div class="pillar"><span class="pillar-icon">SEMVER</span><h3>Upgrade Policy</h3><p>Manifest enforces semantic versioning. No silent changes. Every upgrade requires a version bump.</p></div>
<div class="pillar"><span class="pillar-icon">STATE</span><h3>Persisted State</h3><p>Full audit history in TEE encrypted storage. Every analysis leaves a verifiable trail.</p></div>
</div>
</section>
<section class="section" id="threats">
<span class="section-label">Threat Model</span>
<h2 class="section-title">Honest about what we do and don't prevent.</h2>
<div class="threats">
<div class="threat-card prevent">
<h3>What We Prevent</h3>
<div class="threat-item"><span class="icon-check">✓</span> Code theft or leakage by the auditor</div>
<div class="threat-item"><span class="icon-check">✓</span> Tampered analysis results</div>
<div class="threat-item"><span class="icon-check">✓</span> Silent agent upgrades</div>
<div class="threat-item"><span class="icon-check">✓</span> Forged or falsified reports</div>
<div class="threat-item"><span class="icon-check">✓</span> Non deterministic results</div>
</div>
<div class="threat-card limit">
<h3>Known Limitations</h3>
<div class="threat-item"><span class="icon-x">—</span> TEE hardware side channel attacks</div>
<div class="threat-item"><span class="icon-x">—</span> AI hallucinations or missed vulnerabilities</div>
<div class="threat-item"><span class="icon-x">—</span> Denial of service on EigenCompute</div>
<div class="threat-item"><span class="icon-x">—</span> Code quality beyond security scope</div>
</div>
</div>
</section>
<section class="cta-section">
<h2>Verified on EigenCompute.</h2>
<p>Check our verifiable build and deployment on the EigenCloud dashboard.</p>
<a href="https://verify-sepolia.eigencloud.xyz/app/0x9d70dBAb76b6D97Cba8221Bd897d079DFC3f390E" class="btn-primary" target="_blank">View TEE Dashboard</a>
<div style="margin-top: 1.5rem;"><a href="https://github.com/proof0S/BlindGuard" class="btn-secondary" target="_blank">View on GitHub</a></div>
</section>
<footer><p>BlindGuard · Built for the <a href="https://ideas.eigencloud.xyz/">EigenCloud Open Innovation Challenge</a></p><p style="margin-top:0.5rem;font-size:0.7rem;opacity:0.5;">by <a href="https://x.com/milesmorgan_" target="_blank" style="color:var(--green-primary);text-decoration:none;">miles morgan</a></p></footer>
<script>
const API_URL = window.location.origin;
const samples = {
secrets: `# Hardcoded credentials, never do this\nAPI_KEY = "sk-live-abc123secret456"\nDB_PASSWORD = "admin123"\nAWS_SECRET = "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"\n\ndef connect():\n return db.connect(password=DB_PASSWORD)`,
sqli: `# SQL Injection vulnerability\nimport sqlite3\n\ndef get_user(username):\n conn = sqlite3.connect('users.db')\n query = "SELECT * FROM users WHERE name = '%s'" % username\n return conn.execute(query).fetchone()\n\ndef search(term):\n query = f"SELECT * FROM products WHERE name LIKE '%{term}%'"\n return db.execute(query)`,
cmdi: `# Command Injection vulnerability\nimport os\nimport subprocess\n\ndef ping_host(host):\n os.system("ping -c 1 " + host)\n\ndef list_files(directory):\n result = subprocess.call("ls -la " + directory, shell=True)\n return result\n\ndef process(user_input):\n eval(user_input)`,
full: `# === VULNERABLE SAMPLE APPLICATION ===\n# This file intentionally contains security issues\n\n# CRITICAL: Hardcoded secrets\nAPI_KEY = "sk-live-abc123secret456"\nDB_PASSWORD = "admin123"\nAWS_SECRET = "wJalrXUtnFEMI/K7MDENG"\nDEBUG = True\n\n# HIGH: SQL Injection\nimport sqlite3\ndef get_user(username):\n query = "SELECT * FROM users WHERE name = '%s'" % username\n return db.execute(query)\n\n# HIGH: Command Injection\nimport os\ndef ping(host):\n os.system("ping -c 1 " + host)\n\n# HIGH: Insecure Deserialization\nimport pickle\ndef load_data(data):\n return pickle.loads(data)\n\n# MEDIUM: Weak Crypto\nimport hashlib\ndef hash_password(pw):\n return hashlib.md5(pw.encode()).hexdigest()\n\n# HIGH: eval usage\ndef calculate(expr):\n return eval(expr)\n\nif __name__ == "__main__":\n app.run(debug=True)`
};
function loadSample(name) { document.getElementById('codeInput').value = samples[name]; }
function loadRepoSample(repo) { document.getElementById('repoInput').value = 'https://github.com/' + repo; }
let currentTab = 'code';
function switchTab(tab, clickedTab) {
currentTab = tab;
document.querySelectorAll('.audit-tab').forEach(t => t.classList.remove('active'));
if (clickedTab) clickedTab.classList.add('active');
if (tab === 'code') {
document.getElementById('codeTab').style.display = 'block';
document.getElementById('repoTab').style.display = 'none';
document.getElementById('inputPanelTitle').textContent = 'your-code.py';
document.getElementById('sampleBtns').style.display = 'flex';
document.getElementById('btnText').textContent = 'Run Audit in TEE';
} else {
document.getElementById('codeTab').style.display = 'none';
document.getElementById('repoTab').style.display = 'block';
document.getElementById('inputPanelTitle').textContent = 'github-repo';
document.getElementById('sampleBtns').style.display = 'none';
document.getElementById('btnText').textContent = 'Audit Repo in TEE';
}
}
async function runAudit() {
if (currentTab === 'repo') {
return runRepoAudit();
}
const code = document.getElementById('codeInput').value.trim();
if (!code) { alert('Please paste some code first.'); return; }
const btn = document.getElementById('auditBtn');
const spinner = document.getElementById('spinner');
const btnText = document.getElementById('btnText');
const output = document.getElementById('outputBody');
btn.disabled = true;
spinner.style.display = 'block';
btnText.textContent = 'Analyzing in TEE...';
output.innerHTML = '<div class="output-placeholder"><div class="shield" style="animation: pulse 1s infinite;">🔍</div><div>Sending code to TEE enclave...</div></div>';
try {
const controller = new AbortController();
const timeout = setTimeout(() => controller.abort(), 20000);
const response = await fetch(API_URL + '/audit', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ files: { [detectFileExt(code)]: code } }),
signal: controller.signal
});
clearTimeout(timeout);
const data = await response.json();
if (!response.ok || data.error) {
throw new Error(data.error || ('TEE audit failed with status ' + response.status));
}
renderReport(data, true);
} catch (err) {
if (err && err.name === 'AbortError') {
// Timeout fallback: keep the demo usable without breaking the UI.
const data = runLocalAnalysis(code);
renderReport(data, false);
} else {
output.innerHTML = '<div class="output-placeholder"><div class="shield">⚠️</div><div style="color: var(--red-alert);">TEE error: ' + (err.message || 'Unknown error') + '</div><div style="font-size: 0.7rem; margin-top: 0.3rem;">Check server logs and /health endpoint.</div></div>';
}
} finally {
btn.disabled = false;
spinner.style.display = 'none';
btnText.textContent = 'Run Audit in TEE';
}
}
async function runRepoAudit() {
const repoUrl = document.getElementById('repoInput').value.trim();
if (!repoUrl) { alert('Please enter a GitHub repo URL.'); return; }
const btn = document.getElementById('auditBtn');
const spinner = document.getElementById('spinner');
const btnText = document.getElementById('btnText');
const output = document.getElementById('outputBody');
btn.disabled = true;
spinner.style.display = 'block';
btnText.textContent = 'Fetching repo...';
output.innerHTML = '<div class="output-placeholder"><div class="shield" style="animation: pulse 1s infinite;">🔍</div><div>Fetching files and analyzing inside TEE...</div><div style="font-size:0.7rem;margin-top:0.3rem;">This may take a few seconds</div></div>';
try {
const response = await fetch(API_URL + '/audit-repo', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ repo_url: repoUrl })
});
const data = await response.json();
if (data.error) {
output.innerHTML = '<div class="output-placeholder"><div class="shield">⚠️</div><div style="color: var(--red-alert);">' + data.error + '</div></div>';
} else {
renderReport(data, true);
}
} catch (err) {
output.innerHTML = '<div class="output-placeholder"><div class="shield">⚠️</div><div style="color: var(--red-alert);">Could not connect to TEE: ' + err.message + '</div></div>';
} finally {
btn.disabled = false;
spinner.style.display = 'none';
btnText.textContent = 'Audit Repo in TEE';
}
}
function renderReport(data, isLive) {
const output = document.getElementById('outputBody');
const report = data.report;
const attestation = data.attestation;
const commitment = data.data_commitment;
let html = '';
if (!isLive) {
html += '<div style="margin-bottom:1rem;padding:0.6rem 0.8rem;background:rgba(255,204,0,0.08);border:1px solid rgba(255,204,0,0.2);border-radius:6px;font-size:0.75rem;color:var(--yellow-med)">⚡ Analysis powered by BlindGuard static engine. For full TEE audit with attestation: <span style="font-family:JetBrains Mono,monospace;font-size:0.7rem">curl -X POST https://blindguard.xyz/audit</span></div>';
} else {
html += '<div style="margin-bottom:1rem;padding:0.6rem 0.8rem;background:rgba(0,255,136,0.08);border:1px solid rgba(0,255,136,0.2);border-radius:6px;font-size:0.75rem;color:var(--green-primary)">🔒 Live TEE response — this analysis ran inside the EigenCompute enclave</div>';
}
if (data.repo) {
html += '<div style="margin-bottom:1rem;padding:0.6rem 0.8rem;background:var(--bg-card);border-radius:6px;font-size:0.8rem;color:var(--text-primary)">📂 <strong>' + data.repo + '</strong> — ' + (data.files_fetched || report.stats.files_analyzed) + ' file(s) analyzed</div>';
}
const stats = report.stats;
const bySev = stats.by_severity || {};
html += '<div class="summary-bar">';
html += '<div class="summary-stat"><div class="num">' + stats.total_findings + '</div>issues</div>';
if (bySev.CRITICAL) html += '<div class="summary-stat"><div class="num" style="color:var(--red-alert)">' + bySev.CRITICAL + '</div>critical</div>';
if (bySev.HIGH) html += '<div class="summary-stat"><div class="num" style="color:var(--orange-warn)">' + bySev.HIGH + '</div>high</div>';
if (bySev.MEDIUM) html += '<div class="summary-stat"><div class="num" style="color:var(--yellow-med)">' + bySev.MEDIUM + '</div>medium</div>';
html += '<div class="summary-stat"><div class="num">' + report.analysis_duration_ms + 'ms</div>speed</div>'; if (stats.languages) { const langs = Object.keys(stats.languages).filter(l => l !== "unknown"); if (langs.length) html += '<div class="summary-stat"><div class="num" style="font-size:0.75rem">' + langs.join(", ") + '</div>languages</div>'; }
html += '</div>';
if (report.findings.length === 0) { html += '<div style="padding:1.5rem;text-align:center;background:rgba(0,255,136,0.05);border:1px solid rgba(0,255,136,0.15);border-radius:8px;margin-bottom:1rem"><div style="font-size:2rem;margin-bottom:0.5rem">✅</div><div style="color:var(--green-primary);font-size:0.9rem;font-weight:600">No security issues detected</div><div style="color:var(--text-dim);font-size:0.75rem;margin-top:0.3rem">Static analysis found no vulnerabilities in the submitted code</div></div>'; } for (const f of report.findings) {
const sev = f.severity.toLowerCase();
html += '<div class="finding ' + sev + '"><div class="finding-header"><span class="severity-badge ' + sev + '">' + f.severity + '</span><span class="finding-title">' + f.title + '</span></div>';
html += '<div class="finding-detail">' + f.id + ' · ' + f.file_path + ' · ' + f.line_hint + ' · ' + f.cwe_id + '</div>';
html += '<div style="font-size:0.78rem;color:var(--text-secondary);margin:0.4rem 0;line-height:1.4">' + (f.description || '') + '</div>'; html += '<div class="finding-rec">💡 ' + f.recommendation + '</div></div>';
}
if (attestation) {
html += '<div class="attestation-box"><h4>🔐 TEE Attestation</h4>';
html += '<div class="attestation-row"><span class="label">Run ID</span><span class="value">' + attestation.run_id + '</span></div>';
html += '<div class="attestation-row"><span class="label">Code Hash</span><span class="value">' + attestation.agent_code_hash + '</span></div>';
html += '<div class="attestation-row"><span class="label">Input Commitment</span><span class="value">' + attestation.input_commitment + '</span></div>';
html += '<div class="attestation-row"><span class="label">TEE Signature</span><span class="value">' + attestation.tee_signature + '</span></div>';
html += '<div class="attestation-row"><span class="label">Model</span><span class="value">' + attestation.eigenai_model + '</span></div>';
html += '</div>';
}
if (commitment) {
html += '<div class="attestation-box" style="margin-top:0.8rem;border-color:rgba(136,136,160,0.2);background:rgba(136,136,160,0.05);">';
html += '<h4 style="color:var(--text-secondary)">📄 Data Commitment</h4>';
html += '<div class="attestation-row"><span class="label">Input Hash</span><span class="value">' + commitment.input_hash + '</span></div>';
html += '<div class="attestation-row"><span class="label">Algorithm</span><span class="value">' + commitment.algorithm + '</span></div>';
html += '</div>';
}
if (data.verification_note) {
html += '<div style="margin-top:1rem;padding:0.8rem;background:rgba(0,255,136,0.05);border-radius:6px;font-size:0.75rem;color:var(--green-dim)">✅ ' + data.verification_note + '</div>';
}
output.innerHTML = html;
}
function detectFileExt(code) {
if (/pragma\s+solidity/.test(code) || /contract\s+\w+/.test(code)) return "submitted.sol";
if (/fn\s+main|impl\s+|pub\s+fn/.test(code)) return "submitted.rs";
if (/@external|@view|@nonreentrant/.test(code)) return "submitted.vy";
if (/module\s+\w+|public\s+entry\s+fun/.test(code)) return "submitted.move";
if (/#\[starknet|felt252/.test(code)) return "submitted.cairo";
if (/func\s+\w+|package\s+\w+/.test(code)) return "submitted.go";
if (/import\s+React|useState|export\s+default/.test(code)) return "submitted.tsx";
if (/const\s+\w+\s*=|require\(|module\.exports/.test(code)) return "submitted.js";
if (/def\s+\w+|import\s+\w+|class\s+\w+/.test(code)) return "submitted.py";
return "submitted.py";
}
function runLocalAnalysis(code) {
const findings = [];
const lines = code.split('\n');
let id = 1;
const patterns = [
{ regex: /(api_key|secret|password|token|private_key|mnemonic|seed_phrase)\s*[=:]\s*["'"][^"'"]{8,}["'"]/gi, title: 'Hardcoded Secret/Credential', severity: 'CRITICAL', cwe: 'CWE-798', rec: 'Use environment variables or a secrets manager.' },
{ regex: /["'"]SELECT\s.*(%s|%d|\{|' \+|' \.).*["'"]/gi, title: 'Potential SQL Injection', severity: 'HIGH', cwe: 'CWE-89', rec: 'Use parameterized queries instead of string formatting.' },
{ regex: /os\.system\s*\(|subprocess\.call\s*\(.*shell\s*=\s*True|child_process\.(exec|spawn)\s*\(.*\+/gi, title: 'Potential Command Injection', severity: 'CRITICAL', cwe: 'CWE-78', rec: 'Use subprocess with shell=False. In JS, avoid child_process.exec with user input.' },
{ regex: /pickle\.loads?\s*\(|unserialize\s*\(/gi, title: 'Insecure Deserialization', severity: 'HIGH', cwe: 'CWE-502', rec: 'Avoid pickle on untrusted data. Use safe alternatives.' },
{ regex: /\beval\s*\(|\bexec\s*\(|new\s+Function\s*\(/gi, title: 'Use of eval/exec', severity: 'HIGH', cwe: 'CWE-95', rec: 'Avoid eval/exec on user-controllable input.' },
{ regex: /hashlib\.(md5|sha1)\s*\(|createHash\s*\(\s*['"]md5['"]\)|createHash\s*\(\s*['"]sha1['"]\)/gi, title: 'Weak Cryptographic Hash', severity: 'MEDIUM', cwe: 'CWE-328', rec: 'Use SHA-256 or stronger hashing algorithms.' },
{ regex: /debug\s*=\s*True|console\.log\s*\(.*(?:password|secret|token)/gi, title: 'Debug Mode / Sensitive Logging', severity: 'MEDIUM', cwe: 'CWE-489', rec: 'Disable debug mode in production. Remove sensitive data from logs.' },
{ regex: /innerHTML\s*=|document\.write\s*\(|dangerouslySetInnerHTML|v-html\s*=/gi, title: 'Potential Cross-Site Scripting (XSS)', severity: 'HIGH', cwe: 'CWE-79', rec: 'Sanitize user input. Use textContent instead of innerHTML.' },
{ regex: /tx\.origin/gi, title: 'Use of tx.origin for Authorization', severity: 'HIGH', cwe: 'CWE-284', rec: 'Use msg.sender instead of tx.origin.' },
{ regex: /\.call\{value:|\.call\.value\(/gi, title: 'Potential Reentrancy', severity: 'CRITICAL', cwe: 'CWE-841', rec: 'Use checks-effects-interactions pattern. Use ReentrancyGuard.' }
];
let currentFile = 'submitted-code.py';
let fileLineOffset = 0;
lines.forEach((line, i) => {
// Track current file from # FILE: markers
const fileMatch = line.match(/^# FILE: (.+)$/);
if (fileMatch) {
currentFile = fileMatch[1];
fileLineOffset = i + 1;
return;
}
patterns.forEach(p => {
const matches = line.match(p.regex);
if (matches) {
matches.forEach(() => {
findings.push({
id: 'SG-' + String(id++).padStart(4, '0'),
title: p.title,
severity: p.severity,
description: 'Pattern match detected.',
file_path: currentFile,
line_hint: 'Line ' + (i + 1 - fileLineOffset),
recommendation: p.rec,
cwe_id: p.cwe
});
});
}
});
});
const bySev = {};
findings.forEach(f => { bySev[f.severity] = (bySev[f.severity] || 0) + 1; });
const hash = s => {
let h = 0;
for (let i = 0; i < s.length; i++) { h = ((h << 5) - h) + s.charCodeAt(i); h |= 0; }
return Math.abs(h).toString(16).padStart(16, '0') + Math.abs(h * 31).toString(16).padStart(16, '0') + Math.abs(h * 97).toString(16).padStart(16, '0') + Math.abs(h * 127).toString(16).padStart(16, '0');
};
const codeHash = hash(code);
const agentHash = '5a3e36e39fb72e4a41dc8edfbc343134036060f9fe8011721cefa2da1b544f89';
return {
report: {