-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages35.html
19942 lines (12462 loc) Β· 778 KB
/
messages35.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="messages34.html">
Previous messages
</a>
<div class="message service" id="message-984">
<div class="body details">
15 December 2021
</div>
</div>
<div class="message default clearfix" id="message34098">
<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="15.12.2021 18:46:57">
18:46
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2021-1003 βΌ</strong><br><br><code>In adjustStreamVolume of AudioService.java, there is a possible way for unprivileged app to change audio stream volume due to a confused deputy. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-12Android ID: A-189857506</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1003">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34099">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:46:58">
18:46
</div>
<div class="text">
<strong>βΌ CVE-2021-0956 βΌ</strong><br><br><code>In NfcTag::discoverTechnologies (activation) of NfcTag.cpp, there is a possible out of bounds write due to an incorrect bounds check. This could lead to remote escalation of privilege with no additionalSystem execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-11 Android-12Android ID: A-189942532</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0956">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34100">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:46:59">
18:46
</div>
<div class="text">
<strong>βΌ CVE-2021-0918 βΌ</strong><br><br><code>In gatt_process_notification of gatt_cl.cc, there is a possible out of bounds write due to a missing bounds check. This could lead to remote code execution over Bluetooth with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-12Android ID: A-197536150</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0918">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34101">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:47:01">
18:47
</div>
<div class="text">
<strong>βΌ CVE-2021-0955 βΌ</strong><br><br><code>In pf_write_buf of FuseDaemon.cpp, there is possible memory corruption due to a race condition. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-11Android ID: A-192085766</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0955">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34102">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:47:02">
18:47
</div>
<div class="text">
<strong>βΌ CVE-2021-1043 βΌ</strong><br><br><code>In TBD of TBD, there is a possible downgrade attack due to under utilized anti-rollback protections. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-194697257References: N/A</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1043">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34103">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:47:04">
18:47
</div>
<div class="text">
<strong>βΌ CVE-2021-0927 βΌ</strong><br><br><code>In requestChannelBrowsable of TvInputManagerService.java, there is a possible permission bypass due to a logic error in the code. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10 Android-11 Android-12 Android-8.1 Android-9Android ID: A-189824175</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0927">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34104">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:47:05">
18:47
</div>
<div class="text">
<strong>βΌ CVE-2021-0986 βΌ</strong><br><br><code>In hasGrantedPolicy of DevicePolicyManagerService.java, there is a possible information disclosure about the device owner, profile owner, or device admin due to a logic error in the code. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-12Android ID: A-192247339</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0986">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34105">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:47:07">
18:47
</div>
<div class="text">
<strong>βΌ CVE-2021-39657 βΌ</strong><br><br><code>In ufshcd_eh_device_reset_handler of ufshcd.c, there is a possible out of bounds read due to a missing bounds check. This could lead to local information disclosure with System execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-194696049References: Upstream kernel</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-39657">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34106">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:47:08">
18:47
</div>
<div class="text">
<strong>βΌ CVE-2021-1027 βΌ</strong><br><br><code>In setTransactionState of SurfaceFlinger, there is possible arbitrary code execution in a privileged process due to improper casting. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-12Android ID: A-193033243</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1027">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34107">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:47:09">
18:47
</div>
<div class="text">
<strong>βΌ CVE-2021-45078 βΌ</strong><br><br><code>stab_xcoff_builtin_type in stabs.c in GNU Binutils through 2.37 allows attackers to cause a denial of service (heap-based buffer overflow) or possibly have unspecified other impact, as demonstrated by an out-of-bounds write. NOTE: this issue exists because of an incorrect fix for CVE-2018-12699.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45078">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34108">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:47:10">
18:47
</div>
<div class="text">
<strong>βΌ CVE-2021-0926 βΌ</strong><br><br><code>In onCreate of NfcImportVCardActivity.java, there is a possible way to add a contact without user's consent due to a missing permission check. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10 Android-11 Android-12 Android-9Android ID: A-191053931</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0926">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34109">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:47:12">
18:47
</div>
<div class="text">
<strong>βΌ CVE-2021-39655 βΌ</strong><br><br><code>Product: AndroidVersions: Android kernelAndroid ID: A-192641593References: N/A</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-39655">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34110">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:48:55">
18:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1012 βΌ</strong><br><br><code>In onResume of NotificationAccessDetails.java, there is a possible way to determine whether an app is installed, without query permissions, due to side channel information disclosure. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-12Android ID: A-195412179</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1012">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34111">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:48:57">
18:48
</div>
<div class="text">
<strong>βΌ CVE-2021-39648 βΌ</strong><br><br><code>In gadget_dev_desc_UDC_show of configfs.c, there is a possible disclosure of kernel heap memory due to a race condition. This could lead to local information disclosure with System execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-160822094References: Upstream kernel</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-39648">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34112">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:48:59">
18:48
</div>
<div class="text">
<strong>βΌ CVE-2021-0976 βΌ</strong><br><br><code>In toBARK of floor0.c, there is a possible out of bounds read due to a missing bounds check. This could lead to remote information disclosure with no additional execution privileges needed. User interaction is needed for exploitation.Product: AndroidVersions: Android-12Android ID: A-199680600</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0976">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34113">
<div class="body">
<div class="pull_right date details" title="15.12.2021 18:49:02">
18:49
</div>
<div class="text">
<strong>βΌ CVE-2021-1015 βΌ</strong><br><br><code>In getMeidForSlot of PhoneInterfaceManager.java, there is a possible way to determine whether an app is installed, without query permissions, due to side channel information disclosure. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-12Android ID: A-186530496</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1015">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34114">
<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="15.12.2021 20:37:56">
20:37
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Relentless Log4j Attacks Include State Actors, Possible Worm β</strong><br><br><code>More than 1.8 million attacks, against half of all corporate networks, have already launched to exploit Log4Shell.</code><br><br><a href="https://threatpost.com/log4j-attacks-state-actors-worm/177088/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34115">
<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="15.12.2021 21:04:47">
21:04
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Original Fix for Log4j Flaw Fails to Fully Protect Against DoS Attacks, Data Theft π΄</strong><br><br><code>Organizations should upgrade ASAP to new version of logging framework released Tuesday by the Apache Foundation, security experts say.</code><br><br><a href="https://www.darkreading.com/application-security/original-fix-for-log4j-flaw-fails-to-fully-protect-against-dos-attacks-data-theft">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34116">
<div class="body">
<div class="pull_right date details" title="15.12.2021 21:04:48">
21:04
</div>
<div class="text">
<strong>π΄ Companies Must Assess Threats to AI & ML Systems in 2022: Microsoft π΄</strong><br><br><code>Most companies lack the proper tools to assess their vulnerability to threats facing their AI systems and ML pipelines, prompting Microsoft to release a risk assessment framework.</code><br><br><a href="https://www.darkreading.com/risk/companies-must-assess-threats-to-ai-ml-systems-in-2022-microsoft">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message service" id="message-985">
<div class="body details">
16 December 2021
</div>
</div>
<div class="message default clearfix" id="message34117">
<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="16.12.2021 03:36:59">
03:36
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2021-45085 βΌ</strong><br><br><code>XSS can occur in GNOME Web (aka Epiphany) before 40.4 and 41.x before 41.1 via an about: page, as demonstrated by ephy-about:overview when a user visits an XSS payload page often enough to place that page on the Most Visited list.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45085">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34118">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:00">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45096 βΌ</strong><br><br><code>KNIME Analytics Platform before 4.5.0 is vulnerable to XXE (external XML entity injection) via a crafted workflow file (.knwf), aka AP-17730.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45096">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34119">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:02">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45095 βΌ</strong><br><br><code>pep_sock_accept in net/phonet/pep.c in the Linux kernel through 5.15.8 has a refcount leak.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45095">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34120">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:04">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45100 βΌ</strong><br><br><code>The ksmbd server through 3.4.2, as used in the Linux kernel through 5.15.8, sometimes communicates in cleartext even though encryption has been enabled. This occurs because it sets the SMB2_GLOBAL_CAP_ENCRYPTION flag when using the SMB 3.1.1 protocol, which is a violation of the SMB protocol specification. When Windows 10 detects this protocol violation, it disables encryption.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45100">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34121">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:05">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45087 βΌ</strong><br><br><code>XSS can occur in GNOME Web (aka Epiphany) before 40.4 and 41.x before 41.1 when View Source mode or Reader mode is used, as demonstrated by a a page title.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45087">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34122">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:06">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-44023 βΌ</strong><br><br><code>A link following denial-of-service (DoS) vulnerability in the Trend Micro Security (Consumer) 2021 familiy of products could allow an attacker to abuse the PC Health Checkup feature of the product to create symlinks that would allow modification of files which could lead to a denial-of-service.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-44023">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34123">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:08">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45086 βΌ</strong><br><br><code>XSS can occur in GNOME Web (aka Epiphany) before 40.4 and 41.x before 41.1 because a server's suggested_filename is used as the pdf_name value in PDF.js.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45086">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34124">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:09">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45102 βΌ</strong><br><br><code>An issue was discovered in HTCondor 9.0.x before 9.0.4 and 9.1.x before 9.1.2. When authenticating to an HTCondor daemon using a SciToken, a user may be granted authorizations beyond what the token should allow.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45102">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34125">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:10">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45101 βΌ</strong><br><br><code>An issue was discovered in HTCondor before 8.8.15, 9.0.x before 9.0.4, and 9.1.x before 9.1.2. Using standard command-line tools, a user with only READ access to an HTCondor SchedD or Collector daemon can discover secrets that could allow them to control other users' jobs and/or read their data.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45101">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34126">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:11">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45099 βΌ</strong><br><br><code>** DISPUTED ** The addon.stdin service in addon-ssh (aka Home Assistant Community Add-on: SSH & Web Terminal) before 10.0.0 has an attack surface that requires social engineering. NOTE: the vendor does not agree that this is a vulnerability; however, addon.stdin was removed as a defense-in-depth measure against complex social engineering situations.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45099">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34127">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:12">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45088 βΌ</strong><br><br><code>XSS can occur in GNOME Web (aka Epiphany) before 40.4 and 41.x before 41.1 via an error page.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45088">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34128">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:14">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45098 βΌ</strong><br><br><code>An issue was discovered in Suricata before 6.0.4. It is possible to bypass/evade any HTTP-based signature by faking an RST TCP packet with random TCP options of the md5header from the client side. After the three-way handshake, it's possible to inject an RST ACK with a random TCP md5header option. Then, the client can send an HTTP GET request with a forbidden URL. The server will ignore the RST ACK and send the response HTTP packet for the client's request. These packets will not trigger a Suricata reject action.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45098">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34129">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:14">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45092 βΌ</strong><br><br><code>Thinfinity VirtualUI before 3.0 has functionality in /lab.html reachable by default that could allow IFRAME injection via the vpath parameter.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45092">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34130">
<div class="body">
<div class="pull_right date details" title="16.12.2021 03:37:15">
03:37
</div>
<div class="text">
<strong>βΌ CVE-2021-45097 βΌ</strong><br><br><code>KNIME Server before 4.12.6 and 4.13.x before 4.13.4 (when installed in unattended mode) keeps the administrator's password in a file without appropriate file access controls, allowing all local users to read its content.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45097">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34131">
<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="16.12.2021 05:05:11">
05:05
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Rise in API-Based Attacks Underscore Investments in New Tools π΄</strong><br><br><code>Noname Security's Series C fundraising tips the startup to over $1 billion in valuation, a sign that organizations are beginning to look for API security tools and investor are looking for innovation in the space.</code><br><br><a href="https://www.darkreading.com/emerging-tech/rise-in-api-based-attacks-underscore-investments-in-new-tools">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34132">
<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="16.12.2021 08:37:07">
08:37
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2021-4121 βΌ</strong><br><br><code>yetiforcecrm is vulnerable to Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-4121">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34133">
<div class="body">
<div class="pull_right date details" title="16.12.2021 08:37:09">
08:37
</div>
<div class="text">
<strong>βΌ CVE-2021-4123 βΌ</strong><br><br><code>livehelperchat is vulnerable to Cross-Site Request Forgery (CSRF)</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-4123">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34134">
<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="16.12.2021 10:03:59">
10:03
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ποΈ How expired web domains help criminal hackers unlock enterprise defenses ποΈ</strong><br><br><code>Allow domains to βdropβ and youβre increasing the effectiveness of a variety of attacks</code><br><br><a href="https://portswigger.net/daily-swig/how-expired-web-domains-help-criminal-hackers-unlock-enterprise-defenses">π Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34135">
<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="16.12.2021 10:35:51">
10:35
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2021-40835 βΌ</strong><br><br><code>An URL Address bar spoofing vulnerability was discovered in Safe Browser for iOS. When user clicks on a specially crafted a malicious URL, if user does not carefully pay attention to url, user may be tricked to think content may be coming from a valid domain, while it comes from another. This is performed by using a very long username part of the url so that user cannot see the domain name. A remote attacker can leverage this to perform url address bar spoofing attack. The fix is, browser no longer shows the user name part in address bar.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-40835">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34136">
<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="16.12.2021 11:07:00">
11:07
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β βDarkWatchmanβ RAT Shows Evolution in Fileless Malware β</strong><br><br><code>The new tool manipulates Windows Registry in unique ways to evade security detections and is likely being used by ransomware groups for initial network access.</code><br><br><a href="https://threatpost.com/darkwatchman-rat-evolution-fileless-malware/177091/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34137">
<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="16.12.2021 11:35:31">
11:35
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ποΈ UK government reveals plans to become βglobal cyber powerβ in 2022 ποΈ</strong><br><br><code>National Cyber Security Centre leads scheme to increase capabilities</code><br><br><a href="https://portswigger.net/daily-swig/uk-government-reveals-plans-to-become-global-cyber-power-in-2022">π Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34138">
<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="16.12.2021 12:05:30">
12:05
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Dear Congress: It's Complicated. Please Consider This When Crafting New Cybersecurity Legislation π΄</strong><br><br><code>As mandatory reporting bills work their way through the halls of Congress, what should businesses do to prepare for this pending legislation?</code><br><br><a href="https://www.darkreading.com/risk/dear-congress-it-s-complicated-please-consider-this-when-crafting-new-cybersecurity-legislation">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34139">
<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="16.12.2021 12:35:58">
12:35
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2021-4124 βΌ</strong><br><br><code>janus-gateway is vulnerable to Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-4124">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34140">
<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="16.12.2021 13:02:31">
13:02
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π¦Ώ How to install the ConfigServer and Security Firewall combo on Ubuntu Server π¦Ώ</strong><br><br><code>If you'd like a powerful firewall for your Ubuntu Server, but one that offers a fairly straightforward configuration, Jack Wallen thinks CSF might be the right tool for the job.</code><br><br><a href="https://www.techrepublic.com/article/how-to-install-the-configserver-and-security-firewall-combo-on-ubuntu-server/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message34141">
<div class="body">
<div class="pull_right date details" title="16.12.2021 13:05:35">
13:05
</div>
<div class="text">
<strong>ποΈ SAP squashes SQL injection, XSS bugs in December patch round ποΈ</strong><br><br><code>CVSS severity scores range from 2.4 to 9.9</code><br><br><a href="https://portswigger.net/daily-swig/sap-squashes-sql-injection-xss-bugs-in-december-patch-round">π Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34142">
<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="16.12.2021 14:36:07">
14:36
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2021-3959 βΌ</strong><br><br><code>A Server-Side Request Forgery (SSRF) vulnerability in the EPPUpdateService component of Bitdefender Endpoint Security Tools allows an attacker to proxy requests to the relay server. This issue affects: Bitdefender Bitdefender GravityZone versions prior to 3.3.8.272</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-3959">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>