-
Notifications
You must be signed in to change notification settings - Fork 0
/
messages38.html
19222 lines (12012 loc) · 791 KB
/
messages38.html
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>
<head>
<meta charset="utf-8"/>
<title>Exported Data</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<link href="css/style.css" rel="stylesheet"/>
<script src="js/script.js" type="text/javascript">
</script>
</head>
<body onload="CheckLocation();">
<div class="page_wrap">
<div class="page_header">
<div class="content">
<div class="text bold">
🛡 Cybersecurity & Privacy news 🛡
</div>
</div>
</div>
<div class="page_body chat_page">
<div class="history">
<a class="pagination block_link" href="messages37.html">
Previous messages
</a>
<div class="message service" id="message-1043">
<div class="body details">
9 February 2022
</div>
</div>
<div class="message default clearfix" id="message37098">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:13:24">
16:13
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2022-21986 ‼</strong><br><br><code>.NET Denial of Service Vulnerability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21986">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37099">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:13:25">
16:13
</div>
<div class="text">
<strong>‼ CVE-2022-21987 ‼</strong><br><br><code>Microsoft SharePoint Server Spoofing Vulnerability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21987">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37100">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:13:27">
16:13
</div>
<div class="text">
<strong>‼ CVE-2022-23272 ‼</strong><br><br><code>Microsoft Dynamics GP Elevation Of Privilege Vulnerability. This CVE ID is unique from CVE-2022-23271, CVE-2022-23273.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23272">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37101">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:13:28">
16:13
</div>
<div class="text">
<strong>‼ CVE-2022-21974 ‼</strong><br><br><code>Roaming Security Rights Management Services Remote Code Execution Vulnerability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21974">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37102">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:13:29">
16:13
</div>
<div class="text">
<strong>‼ CVE-2022-23256 ‼</strong><br><br><code>Azure Data Explorer Spoofing Vulnerability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23256">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37103">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:13:31">
16:13
</div>
<div class="text">
<strong>‼ CVE-2022-22005 ‼</strong><br><br><code>Microsoft SharePoint Server Remote Code Execution Vulnerability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-22005">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37104">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:19:01">
16:19
</div>
<div class="text">
<strong>‼ CVE-2022-22718 ‼</strong><br><br><code>Windows Print Spooler Elevation of Privilege Vulnerability. This CVE ID is unique from CVE-2022-21997, CVE-2022-21999, CVE-2022-22717.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-22718">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37105">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:19:02">
16:19
</div>
<div class="text">
<strong>‼ CVE-2022-21995 ‼</strong><br><br><code>Windows Hyper-V Remote Code Execution Vulnerability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21995">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37106">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:19:03">
16:19
</div>
<div class="text">
<strong>‼ CVE-2022-21993 ‼</strong><br><br><code>Windows Services for NFS ONCRPC XDR Driver Information Disclosure Vulnerability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21993">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37107">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:19:04">
16:19
</div>
<div class="text">
<strong>‼ CVE-2022-23254 ‼</strong><br><br><code>Microsoft Power BI Information Disclosure Vulnerability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23254">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37108">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:19:05">
16:19
</div>
<div class="text">
<strong>‼ CVE-2022-21844 ‼</strong><br><br><code>HEVC Video Extensions Remote Code Execution Vulnerability. This CVE ID is unique from CVE-2022-21926, CVE-2022-21927.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21844">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37109">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:19:07">
16:19
</div>
<div class="text">
<strong>‼ CVE-2022-21981 ‼</strong><br><br><code>Windows Common Log File System Driver Elevation of Privilege Vulnerability. This CVE ID is unique from CVE-2022-22000.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21981">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37110">
<div class="body">
<div class="pull_right date details" title="09.02.2022 16:19:09">
16:19
</div>
<div class="text">
<strong>‼ CVE-2022-22712 ‼</strong><br><br><code>Windows Hyper-V Denial of Service Vulnerability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-22712">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message37111">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="09.02.2022 17:58:27">
17:58
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🔏 Telecom Alleges Theft of Radio Technology Trade Secrets 🔏</strong><br><br><code>New charges unsealed this week allege a China-based company stole valuable trade secrets – source code and hardware designs - over the course of 13 years.</code><br><br><a href="https://digitalguardian.com/blog/telecom-alleges-theft-radio-technology-trade-secrets">📖 Read</a><br><br>via "".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37112">
<div class="body">
<div class="pull_right date details" title="09.02.2022 18:13:02">
18:13
</div>
<div class="text">
<strong>‼ CVE-2022-22566 ‼</strong><br><br><code>Select Dell Client Commercial and Consumer platforms contain a pre-boot direct memory access (DMA) vulnerability. An authenticated attacker with physical access to the system may potentially exploit this vulnerability in order to execute arbitrary code on the device.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-22566">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37113">
<div class="body">
<div class="pull_right date details" title="09.02.2022 18:13:03">
18:13
</div>
<div class="text">
<strong>‼ CVE-2021-41442 ‼</strong><br><br><code>An HTTP smuggling attack in the web application of D-Link DIR-X1860 before v1.10WWB09_Beta allows a remote unauthenticated attacker to DoS the web application via sending a specific HTTP packet.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41442">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37114">
<div class="body">
<div class="pull_right date details" title="09.02.2022 18:13:04">
18:13
</div>
<div class="text">
<strong>‼ CVE-2022-22567 ‼</strong><br><br><code>Select Dell Client Commercial and Consumer platforms are vulnerable to an insufficient verification of data authenticity vulnerability. An authenticated malicious user may exploit this vulnerability in order to install modified BIOS firmware.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-22567">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37115">
<div class="body">
<div class="pull_right date details" title="09.02.2022 18:13:05">
18:13
</div>
<div class="text">
<strong>‼ CVE-2021-36302 ‼</strong><br><br><code>All Dell EMC Integrated System for Microsoft Azure Stack Hub versions contain a privilege escalation vulnerability. A remote malicious user with standard level JEA credentials may potentially exploit this vulnerability to elevate privileges and take over the system.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-36302">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37116">
<div class="body">
<div class="pull_right date details" title="09.02.2022 18:13:06">
18:13
</div>
<div class="text">
<strong>‼ CVE-2022-21660 ‼</strong><br><br><code>Gin-vue-admin is a backstage management system based on vue and gin. In versions prior to 2.4.7 low privilege users are able to modify higher privilege users. Authentication is missing on the `setUserInfo` function. Users are advised to update as soon as possible. There are no known workarounds.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21660">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37117">
<div class="body">
<div class="pull_right date details" title="09.02.2022 18:13:07">
18:13
</div>
<div class="text">
<strong>‼ CVE-2021-45286 ‼</strong><br><br><code>Directory Traversal vulnerability exists in ZZCMS 2021 via the skin parameter in 1) index.php, 2) bottom.php, and 3) top_index.php.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45286">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37118">
<div class="body">
<div class="pull_right date details" title="09.02.2022 18:21:04">
18:21
</div>
<div class="text">
<strong>❌ 3 Tips for Facing the Harsh Truths of Cybersecurity in 2022, Part I ❌</strong><br><br><code>Sonya Duffin, ransomware and data-protection expert at Veritas Technologies, shares three steps organizations can take today to reduce cyberattack fallout.</code><br><br><a href="https://threatpost.com/harsh-truths-cybersecurity-tips/178311/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message37119">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="09.02.2022 19:21:07">
19:21
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ Cybercriminals Swarm Windows Utility Regsvr32 to Spread Malware ❌</strong><br><br><code>The living-off-the-land binary (LOLBin) is anchoring a rash of cyberattacks bent on evading security detection to drop Qbot and Lokibot.</code><br><br><a href="https://threatpost.com/cybercriminals-windows-utility-regsvr32-malware/178333/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message37120">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="09.02.2022 19:54:20">
19:54
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Linux Malware on the Rise 🕴</strong><br><br><code>Ransomware, cryptojacking, and a cracked version of the penetration-testing tool Cobalt Strike have increasingly targeted Linux in multicloud infrastructure, report states.</code><br><br><a href="https://www.darkreading.com/cloud/linux-malware-on-the-rise-including-illicit-use-of-cobalt-strike">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37121">
<div class="body">
<div class="pull_right date details" title="09.02.2022 19:54:21">
19:54
</div>
<div class="text">
<strong>🕴 Auth0 Credential Guard Detects Breached Passwords to Prevent Account Takeover 🕴</strong><br><br><code>New feature adds a dedicated security team and support for multiple languages to prevent fraudulent access with stolen credentials.</code><br><br><a href="https://www.darkreading.com/risk/auth0-credential-guard-detects-breached-passwords-to-prevent-account-takeover">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message37122">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:13:10">
20:13
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2022-23621 ‼</strong><br><br><code>XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. In affected versions any user with SCRIPT right can read any file located in the XWiki WAR (for example xwiki.cfg and xwiki.properties) through XWiki#invokeServletAndReturnAsString as `$xwiki.invokeServletAndReturnAsString("/WEB-INF/xwiki.cfg")`. This issue has been patched in XWiki versions 12.10.9, 13.4.3 and 13.7-rc-1. Users are advised to update. The only workaround is to limit SCRIPT right.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23621">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37123">
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:13:11">
20:13
</div>
<div class="text">
<strong>‼ CVE-2022-23628 ‼</strong><br><br><code>OPA is an open source, general-purpose policy engine. Under certain conditions, pretty-printing an abstract syntax tree (AST) that contains synthetic nodes could change the logic of some statements by reordering array literals. Example of policies impacted are those that parse and compare web paths. **All of these** three conditions have to be met to create an adverse effect: 1. An AST of Rego had to be **created programmatically** such that it ends up containing terms without a location (such as wildcard variables). 2. The AST had to be **pretty-printed** using the `github.com/open-policy-agent/opa/format` package. 3. The result of the pretty-printing had to be **parsed and evaluated again** via an OPA instance using the bundles, or the Golang packages. If any of these three conditions are not met, you are not affected. Notably, all three would be true if using **optimized bundles**, i.e. bundles created with `opa build -O=1` or higher. In that case, the optimizer would fulfil condition (1.), the result of that would be pretty-printed when writing the bundle to disk, fulfilling (2.). When the bundle was then used, we'd satisfy (3.). As a workaround users may disable optimization when creating bundles.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23628">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37124">
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:13:12">
20:13
</div>
<div class="text">
<strong>‼ CVE-2022-23617 ‼</strong><br><br><code>XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. In affected versions any user with edit right can copy the content of a page it does not have access to by using it as template of a new page. This issue has been patched in XWiki 13.2CR1 and 12.10.6. Users are advised to update. There are no known workarounds for this issue.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23617">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37125">
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:13:14">
20:13
</div>
<div class="text">
<strong>‼ CVE-2022-23616 ‼</strong><br><br><code>XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. In affected versions it's possible for an unprivileged user to perform a remote code execution by injecting a groovy script in her own profile and by calling the Reset password feature since the feature is performing a save of the user profile with programming rights in the impacted versions of XWiki. The issue has been patched in XWiki 13.1RC1. There are two different possible workarounds, each consisting of modifying the XWiki/ResetPassword page. 1. The Reset password feature can be entirely disabled by deleting the XWiki/ResetPassword page. 2. The script in XWiki/ResetPassword can also be modified or removed: an administrator can replace it with a simple email contact to ask an administrator to reset the password.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23616">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37126">
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:13:15">
20:13
</div>
<div class="text">
<strong>‼ CVE-2022-23631 ‼</strong><br><br><code>superjson is a program to allow JavaScript expressions to be serialized to a superset of JSON. In versions prior to 1.8.1 superjson allows input to run arbitrary code on any server using superjson input without prior authentication or knowledge. The only requirement is that the server implements at least one endpoint which uses superjson during request processing. This has been patched in superjson 1.8.1. Users are advised to update. There are no known workarounds for this issue.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23631">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37127">
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:13:17">
20:13
</div>
<div class="text">
<strong>‼ CVE-2022-23618 ‼</strong><br><br><code>XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. In affected versions there is no protection against URL redirection to untrusted sites, in particular some well known parameters (xredirect) can be used to perform url redirections. This problem has been patched in XWiki 12.10.7 and XWiki 13.3RC1. Users are advised to update. There are no known workarounds for this issue.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23618">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37128">
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:13:19">
20:13
</div>
<div class="text">
<strong>‼ CVE-2022-23615 ‼</strong><br><br><code>XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. In affected versions any user with SCRIPT right can save a document with the right of the current user which allow accessing API requiring programming right if the current user has programming right. This has been patched in XWiki 13.0. Users are advised to update to resolve this issue. The only known workaround is to limit SCRIPT access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23615">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37129">
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:13:20">
20:13
</div>
<div class="text">
<strong>‼ CVE-2022-23622 ‼</strong><br><br><code>XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. In affected versions there is a cross site scripting (XSS) vector in the `registerinline.vm` template related to the `xredirect` hidden field. This template is only used in the following conditions: 1. The wiki must be open to registration for anyone. 2. The wiki must be closed to view for Guest users or more specifically the XWiki.Registration page must be forbidden in View for guest user. A way to obtain the second condition is when administrators checked the "Prevent unregistered users from viewing pages, regardless of the page rights" box in the administration rights. This issue is patched in versions 12.10.11, 14.0-rc-1, 13.4.7, 13.10.3. There are two main ways for protecting against this vulnerability, the easiest and the best one is by applying a patch in the `registerinline.vm` template, the patch consists in checking the value of the xredirect field to ensure it matches: `<input type="hidden" name="xredirect" value="$escapetool.xml($!request.xredirect)" />`. If for some reason it's not possible to patch this file, another workaround is to ensure "Prevent unregistered users from viewing pages, regardless of the page rights" is not checked in the rights and apply a better right scheme using groups and rights on spaces.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23622">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37130">
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:13:21">
20:13
</div>
<div class="text">
<strong>‼ CVE-2022-23620 ‼</strong><br><br><code>XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. In affected versions AbstractSxExportURLFactoryActionHandler#processSx does not escape anything from SSX document references when serializing it on filesystem, it is possible to for the HTML export process to contain reference elements containing filesystem syntax like "../", "./". or "/" in general. The referenced elements are not properly escaped. This issue has been resolved in version 13.6-rc-1. This issue can be worked around by limiting or disabling document export.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23620">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37131">
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:13:23">
20:13
</div>
<div class="text">
<strong>‼ CVE-2022-23619 ‼</strong><br><br><code>XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. In affected versions it's possible to guess if a user has an account on the wiki by using the "Forgot your password" form, even if the wiki is closed to guest users. This problem has been patched on XWiki 12.10.9, 13.4.1 and 13.6RC1. Users are advised yo update. There are no known workarounds for this issue.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23619">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37132">
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:24:22">
20:24
</div>
<div class="text">
<strong>🕴 Experts: Several CVEs From Microsoft's February Security Update Require Prompt Attention 🕴</strong><br><br><code>Microsoft's release of relatively sparse vulnerability information makes it difficult for organizations to prioritize mitigation efforts, security experts say.</code><br><br><a href="https://www.darkreading.com/application-security/several-flaws-in-microsoft-s-february-security-update-need-prompt-attention">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message37133">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="09.02.2022 20:54:22">
20:54
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Putting AI to Practical Use in Cybersecurity 🕴</strong><br><br><code>Almost every cybersecurity product has an AI component. Here is where it's working in the real world.</code><br><br><a href="https://www.darkreading.com/emerging-tech/putting-ai-to-practical-use-in-cybersecurity">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message37134">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:02:55">
22:02
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>⚠ Self-styled “Crocodile of Wall Street” arrested with husband over Bitcoin megaheist ⚠</strong><br><br><code>The cops say they've recovered 80% of a $72 million cryptocoin heist... but the recovered funds alone are now worth over $4 billion!</code><br><br><a href="https://nakedsecurity.sophos.com/2022/02/09/self-styled-crocodile-of-wall-street-arrested-with-husband-over-bitcoin-megaheist/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37135">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:12">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-33115 ‼</strong><br><br><code>Improper input validation for some Intel(R) PROSet/Wireless WiFi in UEFI may allow an unauthenticated user to potentially enable escalation of privilege via adjacent access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-33115">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37136">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:13">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-0161 ‼</strong><br><br><code>Improper input validation in firmware for Intel(R) PROSet/Wireless Wi-Fi in multiple operating systems and Killer(TM) Wi-Fi in Windows 10 and 11 may allow a privileged user to potentially enable escalation of privilege via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0161">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37137">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:14">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-33137 ‼</strong><br><br><code>Out-of-bounds write in the Intel(R) Kernelflinger project may allow an authenticated user to potentially enable escalation of privilege via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-33137">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37138">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:15">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-33166 ‼</strong><br><br><code>Incorrect default permissions for the Intel(R) RXT for Chromebook application, all versions, may allow an authenticated user to potentially enable information disclosure via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-33166">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37139">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:16">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-33096 ‼</strong><br><br><code>Improper isolation of shared resources in network on chip for the Intel(R) 82599 Ethernet Controllers and Adapters may allow an authenticated user to potentially enable denial of service via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-33096">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37140">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:17">
22:13
</div>
<div class="text">
<strong>‼ CVE-2022-20027 ‼</strong><br><br><code>In Bluetooth, there is a possible out of bounds write due to a missing bounds check. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS06126826; Issue ID: ALPS06126826.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-20027">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37141">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:18">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-0173 ‼</strong><br><br><code>Improper Validation of Consistency within input in firmware for some Intel(R) PROSet/Wireless Wi-Fi in multiple operating systems and some Killer(TM) Wi-Fi in Windows 10 and 11 may allow a unauthenticated user to potentially enable denial of service via adjacent access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0173">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37142">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:19">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-0092 ‼</strong><br><br><code>Improper access control in the firmware for some Intel(R) Processors may allow a privileged user to potentially enable a denial of service via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0092">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37143">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:20">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-33147 ‼</strong><br><br><code>Improper conditions check in the Intel(R) IPP Crypto library before version 2021.2 may allow an authenticated user to potentially enable information disclosure via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-33147">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37144">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:21">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-33113 ‼</strong><br><br><code>Improper input validation for some Intel(R) PROSet/Wireless WiFi in multiple operating systems and Killer(TM) WiFi in Windows 10 and 11 may allow an unauthenticated user to potentially enable denial of service or information disclosure via adjacent access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-33113">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37145">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:25">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-0103 ‼</strong><br><br><code>Insufficient control flow management in the firmware for some Intel(R) Processors may allow a privileged user to potentially enable an escalation of privilege via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0103">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37146">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:27">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-22954 ‼</strong><br><br><code>A cross-site request forgery vulnerability exists in Concrete CMS <v9 that could allow an attacker to make requests on behalf of other users.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-22954">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37147">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:28">
22:13
</div>
<div class="text">
<strong>‼ CVE-2022-21133 ‼</strong><br><br><code>Out-of-bounds read in the Intel(R) Trace Analyzer and Collector before version 2021.5 may allow an authenticated user to potentially enable denial of service via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21133">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37148">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:29">
22:13
</div>
<div class="text">
<strong>‼ CVE-2021-33105 ‼</strong><br><br><code>Out-of-bounds read in some Intel(R) Core(TM) processors with Radeon(TM) RX Vega M GL integrated graphics before version 21.10 may allow an authenticated user to potentially enable information disclosure via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-33105">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37149">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:30">
22:13
</div>
<div class="text">
<strong>‼ CVE-2022-22544 ‼</strong><br><br><code>Solution Manager (Diagnostics Root Cause Analysis Tools) - version 720, allows an administrator to execute code on all connected Diagnostics Agents and browse files on their systems. An attacker could thereby control the managed systems. It is considered that this is a missing segregation of duty for the SAP Solution Manager administrator. Impacts of unauthorized execution of commands can lead to sensitive information disclosure, loss of system integrity and denial of service.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-22544">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message37150">
<div class="body">
<div class="pull_right date details" title="09.02.2022 22:13:31">
22:13
</div>