-
Notifications
You must be signed in to change notification settings - Fork 352
/
Copy pathXSSPayloadFireReports.vue
805 lines (724 loc) · 28.1 KB
/
XSSPayloadFireReports.vue
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
<template>
<div>
<div class="row">
<div class="col-12">
<card class="xss-card-container">
<div class="row pl-4 pr-4 p-2" style="display: block;">
<div>
<h1><i class="fas fa-fire"></i> XSS Payload Fire Reports ({{format_with_commas(report_count)}} Total)</h1>
<hr />
<div v-for="report in payload_fire_reports">
<card class="mb-0">
<div class="screenshot-image-container mb-2">
<a v-bind:href="base_api_path + '/screenshots/' + report.screenshot_id + '.png'" target="_blank">
<img slot="image" class="card-img-top report-image" v-bind:src="base_api_path + '/screenshots/' + report.screenshot_id + '.png'" alt="XSS Screenshot" />
</a>
</div>
<h4 v-if="report.origin.startsWith('http')" class="card-title">
<code>{{report.url}}</code>
</h4>
<h4 v-else class="card-title">
<code>{{report.url}}</code>
</h4>
<p class="card-text text-right">
<i>Fired {{report.createdAt | moment("from", "now") }}</i>
</p>
<div class="mt-3 button-full">
<base-button class="m-0 btn-fill" simple type="primary" v-on:click="expand_report(report.id)" v-if="!is_report_id_expanded(report.id)">
<i class="fas fa-angle-double-down"></i> Expand Report
</base-button>
<base-button class="m-0 btn-fill" simple type="primary" v-on:click="collapse_report(report.id)" v-if="is_report_id_expanded(report.id)">
<i class="fas fa-angle-double-up"></i> Collapse Report
</base-button>
<base-button class="m-0 w-25 delete-button" simple type="danger" v-on:click="delete_payload_fire(report.id)">
<i class="fas fa-trash-alt"></i>
</base-button>
</div>
</card>
<!-- Expanded report -->
<card v-if="is_report_id_expanded(report.id)">
<div>
<div>
<p class="report-section-label mr-2">URL</p>
<small slot="helperText" class="form-text text-muted report-section-description">
The URL of the page the payload fired on.
</small>
</div>
<div class="m-2 mt-4">
<code v-if="report.url">{{report.url}}</code>
<pre v-else><i>None</i></pre>
</div>
<hr />
</div>
<div>
<div>
<p class="report-section-label mr-2">IP Address</p>
<small slot="helperText" class="form-text text-muted report-section-description">
Remote IP address of the victim.
</small>
</div>
<div class="m-2 mt-4">
<code v-if="report.ip_address">{{report.ip_address}}</code>
<pre v-else><i>None</i></pre>
</div>
<hr />
</div>
<div>
<div>
<p class="report-section-label mr-2">Referer</p>
<small slot="helperText" class="form-text text-muted report-section-description">
Referring page for the vulnerable page.
</small>
</div>
<div class="m-2 mt-4">
<code v-if="report.referer">{{report.referer}}</code>
<pre v-else><i>None</i></pre>
</div>
<hr />
</div>
<div>
<div>
<p class="report-section-label mr-2">User-Agent</p>
<small slot="helperText" class="form-text text-muted report-section-description">
Web browser of the victim.
</small>
</div>
<div class="m-2 mt-4">
<code v-if="report.user_agent">{{report.user_agent}}</code>
<pre v-else><i>None</i></pre>
</div>
<hr />
</div>
<div>
<div>
<p class="report-section-label mr-2">Cookies</p>
<small slot="helperText" class="form-text text-muted report-section-description">
Non-HTTPOnly cookies of the victim.
</small>
</div>
<div class="m-2 mt-4">
<code v-if="report.cookies">{{report.cookies}}</code>
<pre v-else><i>None</i></pre>
</div>
<hr />
</div>
<div>
<div>
<p class="report-section-label mr-2">Title</p>
<small slot="helperText" class="form-text text-muted report-section-description">
Vulnerable page's title.
</small>
</div>
<div class="m-2 mt-4">
<code v-if="report.title">{{report.title}}</code>
<pre v-else><i>None</i></pre>
</div>
<hr />
</div>
<div>
<div>
<p class="report-section-label mr-2">DOM/HTML</p>
<small slot="helperText" class="form-text text-muted report-section-description">
Rendered DOM of the vulnerable page.
</small>
</div>
<div class="m-2 mt-4">
<codemirror style="height: auto;" ref="cmEditor" v-model="report.dom" :options="{tabSize: 2, theme: 'monokai', lineNumbers: true, line: true, lint: true, lineWrapping: true, fixedGutter: true, readOnly: true}" v-if="report.dom.length < 10000" />
<h4 v-else><i class="fas fa-exclamation-triangle"></i> Page HTML too large to display inline, please use one of the options below.</h4>
<base-button simple type="primary" class="mt-3 ml-1 mr-1" v-on:click="view_html_in_new_tab(report.dom)">
<i class="fas fa-external-link-alt"></i> View Raw HTML in New Tab
</base-button>
<base-button simple type="primary" class="mt-3 ml-1 mr-1" v-on:click="download_html(report.dom)">
<i class="fas fa-download"></i> Download Raw HTML
</base-button>
</div>
<hr />
</div>
<div>
<div>
<p class="report-section-label mr-2">Text</p>
<small slot="helperText" class="form-text text-muted report-section-description">
Text of the vulnerable page.
</small>
</div>
<div class="m-2 mt-4">
<codemirror style="height: auto;" ref="cmEditortext" v-model="report.text" :options="{tabSize: 2, theme: 'monokai', lineNumbers: true, line: true, lint: false, lineWrapping: true, fixedGutter: true, readOnly: true}" v-if="report.text" />
<pre v-else><i>None</i></pre>
</div>
<hr />
</div>
<div>
<div>
<p class="report-section-label mr-2">Origin</p>
<small slot="helperText" class="form-text text-muted report-section-description">
HTTP origin of the vulnerable page.
</small>
</div>
<div class="m-2 mt-4">
<code v-if="report.origin">{{report.origin}}</code>
<pre v-else><i>None</i></pre>
</div>
<hr />
</div>
<div>
<div>
<p class="report-section-label mr-2">Browser Time</p>
<small slot="helperText" class="form-text text-muted report-section-description">
Reported time according to the victim's browser.
</small>
</div>
<div class="m-2 mt-4">
<code v-if="report.browser_timestamp">{{ new Date(parseInt(report.browser_timestamp)) | moment("dddd, MMMM Do YYYY, h:mm:ss a")}} (<i>{{report.browser_timestamp}}</i>)</code>
<pre v-else><i>None</i></pre>
</div>
<hr />
</div>
<div>
<div>
<p class="report-section-label mr-2">Other</p>
<small slot="helperText" class="form-text text-muted report-section-description">
Other miscellaneous information.
</small>
</div>
<div class="m-2 mt-4">
<p>
Fired in iFrame?: <code>{{report.was_iframe}}</code>
</p>
<p>
Vulnerability enumerated <code>{{ report.createdAt | moment("dddd, MMMM Do YYYY, h:mm:ss a") }}</code>
</p>
<p>
Report ID: <code>{{report.id}}</code>
</p>
</div>
<hr />
</div>
<base-button simple block type="primary" class="mt-4" v-on:click="collapse_report(report.id)" v-if="is_report_id_expanded(report.id)">
<i class="fas fa-angle-double-up"></i> Collapse Report
</base-button>
</card>
<hr />
</div>
<!-- Pagination -->
<div class="text-center pagination-div">
<base-pagination v-bind:page-count="total_pages" v-model="page"></base-pagination>
</div>
</div>
</div>
</card>
</div>
</div>
<div class="loading-bar" v-if="loading">
<div class="progress">
<div role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="100" class="progress-bar bg-purp progress-bar-striped progress-bar-animated" style="width: 100%;"></div>
</div>
</div>
</div>
</template>
<script>
import BasePagination from '@/components/BasePagination';
import config from '@/config';
import Vue from "vue";
import api_request from '@/libs/api.js';
import router from "@/router/index";
import utils from '@/libs/utils';
const copy = utils.copy;
export default {
data() {
return {
loading: false,
base_api_path: '',
page: 1,
// Number of reports to return at once from
// the backend.
limit: 5,
// ID(s) of payload fire reports to be shown
// as expanded in the UI
expanded_report_ids: [],
// Array of the payload fire report data
// returned from the backend
payload_fire_reports: [],
// Total report count from backend
report_count: 0,
}
},
watch: {
page: function(old_val, new_val) {
this.pull_payload_fire_reports();
if (old_val !== new_val) {
window.scroll({
top: 0,
left: 0,
behavior: 'smooth'
});
}
},
},
methods: {
async delete_payload_fire(payload_id) {
const result = await api_request.delete_payload_fires([payload_id]);
this.pull_payload_fire_reports();
},
async pull_payload_fire_reports() {
const reports = await api_request.get_payload_fires(
this.page,
this.limit
);
this.payload_fire_reports = reports.result.payload_fires;
this.report_count = reports.result.total;
},
expand_report(report_id) {
this.expanded_report_ids.push(report_id);
},
collapse_report(report_id) {
this.expanded_report_ids = this.expanded_report_ids.filter(expanded_report_id => {
return expanded_report_id != report_id;
});
},
is_report_id_expanded(report_id) {
return this.expanded_report_ids.includes(report_id);
},
view_html_in_new_tab(input_html) {
const new_window = window.open('about:blank', '_blank');
new_window.document.body.innerText = input_html;
},
download_html(input_html) {
const link = document.createElement('a');
link.href = `data:text/html,${input_html}`;
link.download = 'xss-page-contents.html';
link.click();
},
format_with_commas(input_number) {
return input_number.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
},
computed: {
total_pages() {
return Math.ceil(this.report_count / this.limit);
},
},
components: {
BasePagination
},
async mounted() {
// For debugging
window.app = this;
// For rendering
this.base_api_path = api_request.BASE_API_PATH;
// Pull XSS payload fires
await this.pull_payload_fire_reports();
},
beforeDestroy() {}
};
</script>
<style>
.button-full {
display: flex;
}
.button-full.all > button {
width: 100%;
margin: 0 2px;
}
.btn-fill {
width: 100%;
margin: 0 5px;
}
.delete-button {
max-width: 100px !important;
width: 20%;
}
.expand-button {
width: 80%;
}
.pagination-div {
width: 100%;
display: flex;
justify-content: center;
}
.pagination .page-item .page-link {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 0;
border-radius: 30px !important;
-webkit-transition: all .3s;
transition: all .3s;
margin: 0 3px;
min-width: 30px;
text-align: center;
height: 30px;
line-height: 30px;
cursor: pointer;
text-transform: uppercase;
outline: none
}
.pagination .page-item .page-link:focus,
.pagination .page-item .page-link:hover {
background-color: hsla(0, 0%, 100%, .1);
color: #fff;
border: none;
-webkit-box-shadow: none;
box-shadow: none
}
.pagination .arrow-margin-left,
.pagination .arrow-margin-right {
position: absolute
}
.pagination .arrow-margin-right {
right: 0
}
.pagination .arrow-margin-left {
left: 0
}
.pagination .page-item.active>.page-link {
color: #fff;
-webkit-box-shadow: 0 1px 20px 0 rgba(0, 0, 0, .1);
box-shadow: 0 1px 20px 0 rgba(0, 0, 0, .1)
}
.pagination .page-item.active>.page-link,
.pagination .page-item.active>.page-link:focus,
.pagination .page-item.active>.page-link:hover {
background: #e14eca;
background-image: -webkit-gradient(linear, right top, left bottom, from(#e14eca), color-stop(#ba54f5), to(#e14eca));
background-image: linear-gradient(to bottom left, #e14eca, #ba54f5, #e14eca);
background-size: 210% 210%;
background-position: 100% 0;
color: #fff
}
.pagination .page-item.disabled>.page-link {
opacity: .5
}
.pagination.pagination-info .page-item.active>.page-link,
.pagination.pagination-info .page-item.active>.page-link:focus,
.pagination.pagination-info .page-item.active>.page-link:hover {
background: #1d8cf8;
background-image: -webkit-gradient(linear, right top, left bottom, from(#1d8cf8), color-stop(#3358f4), to(#1d8cf8));
background-image: linear-gradient(to bottom left, #1d8cf8, #3358f4, #1d8cf8);
background-size: 210% 210%;
background-position: 100% 0
}
.pagination.pagination-success .page-item.active>.page-link,
.pagination.pagination-success .page-item.active>.page-link:focus,
.pagination.pagination-success .page-item.active>.page-link:hover {
background: #00f2c3;
background-image: -webkit-gradient(linear, right top, left bottom, from(#00f2c3), color-stop(#0098f0), to(#00f2c3));
background-image: linear-gradient(to bottom left, #00f2c3, #0098f0, #00f2c3);
background-size: 210% 210%;
background-position: 100% 0
}
.pagination.pagination-primary .page-item.active>.page-link,
.pagination.pagination-primary .page-item.active>.page-link:focus,
.pagination.pagination-primary .page-item.active>.page-link:hover {
background: #e14eca;
background-image: -webkit-gradient(linear, right top, left bottom, from(#e14eca), color-stop(#ba54f5), to(#e14eca));
background-image: linear-gradient(to bottom left, #e14eca, #ba54f5, #e14eca);
background-size: 210% 210%;
background-position: 100% 0
}
.pagination.pagination-warning .page-item.active>.page-link,
.pagination.pagination-warning .page-item.active>.page-link:focus,
.pagination.pagination-warning .page-item.active>.page-link:hover {
background: #ff8d72;
background-image: -webkit-gradient(linear, right top, left bottom, from(#ff8d72), color-stop(#ff6491), to(#ff8d72));
background-image: linear-gradient(to bottom left, #ff8d72, #ff6491, #ff8d72);
background-size: 210% 210%;
background-position: 100% 0
}
.pagination.pagination-danger .page-item.active>.page-link,
.pagination.pagination-danger .page-item.active>.page-link:focus,
.pagination.pagination-danger .page-item.active>.page-link:hover {
background: #fd5d93;
background-image: -webkit-gradient(linear, right top, left bottom, from(#fd5d93), color-stop(#ec250d), to(#fd5d93));
background-image: linear-gradient(to bottom left, #fd5d93, #ec250d, #fd5d93);
background-size: 210% 210%;
background-position: 100% 0
}
.pagination.pagination-neutral .page-item>.page-link {
color: #fff
}
.pagination.pagination-neutral .page-item>.page-link:focus,
.pagination.pagination-neutral .page-item>.page-link:hover {
background-color: hsla(0, 0%, 100%, .2);
color: #fff
}
.pagination.pagination-neutral .page-item.active>.page-link,
.pagination.pagination-neutral .page-item.active>.page-link:focus,
.pagination.pagination-neutral .page-item.active>.page-link:hover {
background-color: #fff;
border-color: #fff;
color: #e14eca
}
.report-section-label {
font-size: 18px;
display: inline;
}
.report-section-input {
width: 100%;
}
.report-section-input input {
width: 100% !important;
border-color: #bb54f4 !important;
}
.report-section-description {
color: #d3d3d7 !important;
font-style: italic;
display: inline;
float: right;
}
.xss-card-container {
max-width: 1000px;
width: 100%;
}
.screenshot-image-container {
background-color: #FFFFFF;
}
.report-image {
width: 100%;
height: 50vh;
}
.badge-pill {
padding-right: .6em;
padding-left: .6em;
border-radius: 10rem;
}
.badge {
display: inline-block;
padding: .25em .4em;
font-size: 75%;
font-weight: 700;
line-height: 1;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25rem;
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.badge-primary {
color: #fff;
background-color: #007bff
}
a.badge-primary:focus,
a.badge-primary:hover {
color: #fff;
background-color: #0062cc
}
a.badge-primary.focus,
a.badge-primary:focus {
outline: 0;
box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}
.badge-secondary {
color: #fff;
background-color: #6c757d
}
a.badge-secondary:focus,
a.badge-secondary:hover {
color: #fff;
background-color: #545b62
}
a.badge-secondary.focus,
a.badge-secondary:focus {
outline: 0;
box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}
.badge-success {
color: #fff;
background-color: #28a745
}
a.badge-success:focus,
a.badge-success:hover {
color: #fff;
background-color: #1e7e34
}
a.badge-success.focus,
a.badge-success:focus {
outline: 0;
box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}
.badge-info {
color: #fff;
background-color: #17a2b8
}
a.badge-info:focus,
a.badge-info:hover {
color: #fff;
background-color: #117a8b
}
a.badge-info.focus,
a.badge-info:focus {
outline: 0;
box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}
.badge-warning {
color: #212529;
background-color: #ffc107
}
a.badge-warning:focus,
a.badge-warning:hover {
color: #212529;
background-color: #d39e00
}
a.badge-warning.focus,
a.badge-warning:focus {
outline: 0;
box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
}
.badge-danger {
color: #fff;
background-color: #dc3545
}
a.badge-danger:focus,
a.badge-danger:hover {
color: #fff;
background-color: #bd2130
}
a.badge-danger.focus,
a.badge-danger:focus {
outline: 0;
box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}
.badge-light {
color: #212529;
background-color: #f8f9fa
}
a.badge-light:focus,
a.badge-light:hover {
color: #212529;
background-color: #dae0e5
}
a.badge-light.focus,
a.badge-light:focus {
outline: 0;
box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}
.badge-dark {
color: #fff;
background-color: #343a40
}
a.badge-dark:focus,
a.badge-dark:hover {
color: #fff;
background-color: #1d2124
}
a.badge-dark.focus,
a.badge-dark:focus {
outline: 0;
box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}
.gegga {
width: 0;
}
.snurra {
filter: url(#gegga);
}
.stopp1 {
stop-color: #e14eca;
}
.stopp2 {
stop-color: #8965e0;
}
.halvan {
animation: Snurra1 5s infinite linear;
stroke-dasharray: 180 800;
fill: none;
stroke: url(#gradient);
stroke-width: 23;
stroke-linecap: round;
}
.strecken {
animation: Snurra1 3s infinite linear;
stroke-dasharray: 26 54;
fill: none;
stroke: url(#gradient);
stroke-width: 23;
stroke-linecap: round;
}
.skugga {
filter: blur(5px);
opacity: 0.3;
position: absolute;
transform: translate(3px, 3px);
}
@keyframes Snurra1 {
0% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: -403px;
}
}
.loading-icon {
position: fixed;
bottom: 0;
width: 10vw;
right: 0;
}
.loading-text {
height: 200px;
line-height: 200px;
text-align: center;
}
.gradient-text {
background-color: #f3ec78;
background-image: linear-gradient(45deg, #e14eca, #e14eca);
background-size: 100%;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}
.emulate-link {
cursor: pointer;
}
.CodeMirror {
font-family: monospace;
font-size: 14px;
/*height: 150px;*/
height: auto;
}
.progress-bar-animated {
-webkit-animation: progress-bar-stripes 1s linear infinite;
animation: progress-bar-stripes 1s linear infinite;
}
.progress-bar-striped {
background-image: linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent);
background-size: 1rem 1rem;
}
.progress-bar {
flex-direction: column;
justify-content: center;
color: #fff;
text-align: center;
white-space: nowrap;
background-color: #007bff;
transition: width .6s ease;
}
.progress,
.progress-bar {
display: flex;
overflow: hidden;
}
.progress {
height: 1rem;
line-height: 0;
font-size: .75rem;
background-color: #1b0036;
border-radius: .25rem;
}
.loading-bar {
position: fixed;
bottom: 0;
width: 100%;
height: 16px;
right: 0;
z-index: 10;
}
.bg-purp {
background-color: #8965e0 !important;
}
hr {
background-color: #344675;
}
.corner-loader {}
</style>