-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages33.html
20038 lines (12522 loc) ยท 801 KB
/
messages33.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="messages32.html">
Previous messages
</a>
<div class="message service" id="message-947">
<div class="body details">
9 November 2021
</div>
</div>
<div class="message default clearfix" id="message32098">
<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.11.2021 15:04:40">
15:04
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ข CISA gives civilian agencies two weeks to patch recent security exploits ๐ข</strong><br><br><code>A total of 291 vulnerabilities have been detailed in an attempt to improve federal agency cyber security</code><br><br><a href="https://www.itpro.co.uk/security/vulnerability/361441/cisa-federal-agencies-cyber-security-patch-deadlines">๐ Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32099">
<div class="body">
<div class="pull_right date details" title="09.11.2021 15:04:42">
15:04
</div>
<div class="text">
<strong>๐ข 161% surge in mobile phishing pushes energy industry to its limits ๐ข</strong><br><br><code>Following Colonial Pipeline, crooks get a taste for energy companies</code><br><br><a href="https://www.itpro.co.uk/security/hacking/361443/161-surge-in-mobile-phishing-pushes-energy-industry-to-its-limits">๐ Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32100">
<div class="body">
<div class="pull_right date details" title="09.11.2021 15:04:44">
15:04
</div>
<div class="text">
<strong>๐ข Labour Party unable to access data after suspected cyber attack on managed service provider ๐ข</strong><br><br><code>The incident is being investigated by both the National Crime Agency and the Information Commissioner's Office</code><br><br><a href="https://www.itpro.co.uk/security/ransomware/361439/labour-party-locked-out-of-data-after-cyber-attack-on-third-party">๐ Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32101">
<div class="body">
<div class="pull_right date details" title="09.11.2021 15:04:46">
15:04
</div>
<div class="text">
<strong>๐ข Robinhood hack exposes data from millions of customers ๐ข</strong><br><br><code>An attacker socially engineered an employee at the stock-trading platform to gain access to customer support systems</code><br><br><a href="https://www.itpro.co.uk/security/hacking/361479/robinhood-hack-social-engineering-exposes-millions-customers">๐ Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32102">
<div class="body">
<div class="pull_right date details" title="09.11.2021 15:04:48">
15:04
</div>
<div class="text">
<strong>๐ข A third of UK workers are surveilled by employers ๐ข</strong><br><br><code>The sharp rise in surveillance comes as it's revealed webcam monitoring has more than doubled</code><br><br><a href="https://www.itpro.co.uk/security/privacy/361472/one-in-three-uk-workers-now-surveilled-by-employers-at-home">๐ Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32103">
<div class="body">
<div class="pull_right date details" title="09.11.2021 15:04:50">
15:04
</div>
<div class="text">
<strong>๐ข IT Pro News In Review: Microsoft pitches 'metaverse', Graff's celebrity data leak, Meta facial recognition ๐ข</strong><br><br><code>Catch up on the biggest headlines of the week in just two minutes</code><br><br><a href="https://www.itpro.co.uk/security/biometrics/361454/it-pro-news-in-review-microsoft-pitches-metaverse-graffs-celebrity-data">๐ Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32104">
<div class="body">
<div class="pull_right date details" title="09.11.2021 15:11:22">
15:11
</div>
<div class="text">
<strong>โ 12 New Flaws Used in Ransomware Attacks in Q3 โ</strong><br><br><code>The Q3 2021 report revealed a 4.5% increase in CVEs associated with ransomware and a 3.4% increase in ransomware families compared with Q2 2021.</code><br><br><a href="https://threatpost.com/12-new-flaws-used-in-ransomware-attacks-in-q3/176137/">๐ Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message32105">
<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.11.2021 15:31:21">
15:31
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ด How to Minimize Ransomware's Trail of Destruction and Its Associated Costs ๐ด</strong><br><br><code>One of the biggest mistakes an organization can make is blindly throwing technology at the problem instead of properly investing in building a security team.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/how-to-minimize-ransomware-s-trail-of-destruction-and-its-associated-costs">๐ Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32106">
<div class="body">
<div class="pull_right date details" title="09.11.2021 15:31:22">
15:31
</div>
<div class="text">
<strong>๐ด Zoho ManageEngine Flaw Highlights Risks of Race to Patch ๐ด</strong><br><br><code>Attackers used a pre-auth vulnerability in a component of the enterprise management software suite to compromise businesses, highlighting the dangers of Internet-facing software.</code><br><br><a href="https://www.darkreading.com/risk/zoho-manageengine-flaw-highlights-risks-of-race-to-patch">๐ Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message32107">
<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.11.2021 15:50:30">
15:50
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ฆฟ Ransomware attacks are increasingly exploiting security vulnerabilities ๐ฆฟ</strong><br><br><code>The number of security flaws associated with ransomware rose from 266 to 278 last quarter, according to security firm Ivanti.</code><br><br><a href="https://www.techrepublic.com/article/ransomware-attacks-are-increasingly-exploiting-security-vulnerabilities/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32108">
<div class="body">
<div class="pull_right date details" title="09.11.2021 15:50:32">
15:50
</div>
<div class="text">
<strong>๐ฆฟ Digital driver's licenses: Are they secure enough for us to trust? ๐ฆฟ</strong><br><br><code>States should use a privacy by design approach instead of creating a new system to track purchases and other activities, according to security experts.</code><br><br><a href="https://www.techrepublic.com/article/digital-drivers-licenses-are-they-secure-enough-for-us-to-trust/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message32109">
<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.11.2021 16:35:12">
16:35
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โผ CVE-2021-43172 โผ</strong><br><br><code>NLnet Labs Routinator prior to 0.10.2 happily processes a chain of RRDP repositories of infinite length causing it to never finish a validation run. In RPKI, a CA can choose the RRDP repository it wishes to publish its data in. By continuously generating a new child CA that only consists of another CA using a different RRDP repository, a malicious CA can create a chain of CAs of de-facto infinite length. Routinator prior to version 0.10.2 did not contain a limit on the length of such a chain and will therefore continue to process this chain forever. As a result, the validation run will never finish, leading to Routinator continuing to serve the old data set or, if in the initial validation run directly after starting, never serve any data at all.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43172">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32110">
<div class="body">
<div class="pull_right date details" title="09.11.2021 16:35:14">
16:35
</div>
<div class="text">
<strong>โผ CVE-2021-43173 โผ</strong><br><br><code>In NLnet Labs Routinator prior to 0.10.2, a validation run can be delayed significantly by an RRDP repository by not answering but slowly drip-feeding bytes to keep the connection alive. This can be used to effectively stall validation. While Routinator has a configurable time-out value for RRDP connections, this time-out was only applied to individual read or write operations rather than the complete request. Thus, if an RRDP repository sends a little bit of data before that time-out expired, it can continuously extend the time it takes for the request to finish. Since validation will only continue once the update of an RRDP repository has concluded, this delay will cause validation to stall, leading to Routinator continuing to serve the old data set or, if in the initial validation run directly after starting, never serve any data at all.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43173">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32111">
<div class="body">
<div class="pull_right date details" title="09.11.2021 16:35:16">
16:35
</div>
<div class="text">
<strong>โผ CVE-2021-43174 โผ</strong><br><br><code>NLnet Labs Routinator versions 0.9.0 up to and including 0.10.1, support the gzip transfer encoding when querying RRDP repositories. This encoding can be used by an RRDP repository to cause an out-of-memory crash in these versions of Routinator. RRDP uses XML which allows arbitrary amounts of white space in the encoded data. The gzip scheme compresses such white space extremely well, leading to very small compressed files that become huge when being decompressed for further processing, big enough that Routinator runs out of memory when parsing input data waiting for the next XML element.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43174">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message32112">
<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.11.2021 16:51:03">
16:51
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ฆฟ Kaspersky finds 31% increase in "smart" DDoS attacks ๐ฆฟ</strong><br><br><code>The security company expects these attacks to keep rising through the end of the year.</code><br><br><a href="https://www.techrepublic.com/article/kaspersky-finds-31-increase-in-smart-ddos-attacks/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message32113">
<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.11.2021 17:30:58">
17:30
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ด Why Self-Learning AI Is Changing the Paradigm of ICS Security ๐ด</strong><br><br><code>By focusing on the organization rather than the threat, AI can identify subtle changes in your digital environment that point to a cyber threat.</code><br><br><a href="https://www.darkreading.com/dr-tech/why-self-learning-ai-is-changing-the-paradigm-of-ics-security">๐ Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32114">
<div class="body">
<div class="pull_right date details" title="09.11.2021 17:43:00">
17:43
</div>
<div class="text">
<strong>โ Not Punny: Angling Direct Breach Cripples Retailer for Days ย โ</strong><br><br><code>A U.K. fishing retailerโs site has been hijacked and redirected to Pornhub.</code><br><br><a href="https://threatpost.com/angling-direct-breach-cripples-retailer/176144/">๐ Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message32115">
<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.11.2021 18:18:24">
18:18
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โ๏ธ Microsoft Patch Tuesday, November 2021 Edition โ๏ธ</strong><br><br><code>Microsoft Corp. today released updates to quash at least 55 security bugs in its Windows operating systems and other software. Two of the patches address vulnerabilities that are already being used in active attacks online, and four of the flaws were disclosed publicly before today -- potentially giving adversaries a head start in figuring out how to exploit them.</code><br><br><a href="https://krebsonsecurity.com/2021/11/microsoft-patch-tuesday-november-2021-edition/">๐ Read</a><br><br>via "<em>Krebs on Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32116">
<div class="body">
<div class="pull_right date details" title="09.11.2021 18:21:28">
18:21
</div>
<div class="text">
<strong>๐ฆฟ Security pros say federal government should do more to protect and secure private sector ๐ฆฟ</strong><br><br><code>A full 95% of professionals surveyed by Tripwire believe the government should play a bigger role in securing non-governmental companies.</code><br><br><a href="https://www.techrepublic.com/article/security-pros-say-federal-government-should-do-more-to-protect-and-secure-private-sector/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32117">
<div class="body">
<div class="pull_right date details" title="09.11.2021 18:35:18">
18:35
</div>
<div class="text">
<strong>โผ CVE-2020-28419 โผ</strong><br><br><code>During installation with certain driver software or application packages an arbitrary code execution could occur.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-28419">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32118">
<div class="body">
<div class="pull_right date details" title="09.11.2021 18:35:20">
18:35
</div>
<div class="text">
<strong>โผ CVE-2021-20119 โผ</strong><br><br><code>The password change utility for the Arris SurfBoard SB8200 can have safety measures bypassed that allow any logged-in user to change the administrator password.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-20119">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message32119">
<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.11.2021 19:11:28">
19:11
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โ Microsoft Nov. Patch Tuesday Fixes Six Zero-Days, 55 Bugs โ</strong><br><br><code>Experts urged users to prioritize patches for Microsoft Exchange and Excel, those favorite platforms so frequently targeted by cybercriminals and nation-state actors.</code><br><br><a href="https://threatpost.com/microsoft-nov-patch-tuesday-fixes-six-zero-days-55-bugs/176143/">๐ Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32120">
<div class="body">
<div class="pull_right date details" title="09.11.2021 19:20:11">
19:20
</div>
<div class="text">
<strong>๐ฆฟ It's time to dump Chrome as your default browser on Android ๐ฆฟ</strong><br><br><code>Jack Wallen makes his case for Android users to switch from Chrome as their default browsers. He also shows you how.</code><br><br><a href="https://www.techrepublic.com/article/its-time-you-dump-chrome-as-your-default-browser-on-android/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message32121">
<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.11.2021 20:35:22">
20:35
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โผ CVE-2021-43569 โผ</strong><br><br><code>The verify function in the Stark Bank .NET ECDSA library (ecdsa-dotnet) 1.3.1 fails to check that the signature is non-zero, which allows attackers to forge signatures on arbitrary messages.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43569">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32122">
<div class="body">
<div class="pull_right date details" title="09.11.2021 20:35:23">
20:35
</div>
<div class="text">
<strong>โผ CVE-2021-43570 โผ</strong><br><br><code>The verify function in the Stark Bank Java ECDSA library (ecdsa-java) 1.0.0 fails to check that the signature is non-zero, which allows attackers to forge signatures on arbitrary messages.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43570">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32123">
<div class="body">
<div class="pull_right date details" title="09.11.2021 20:35:24">
20:35
</div>
<div class="text">
<strong>โผ CVE-2021-43572 โผ</strong><br><br><code>The verify function in the Stark Bank Python ECDSA library (ecdsa-python) 2.0.0 fails to check that the signature is non-zero, which allows attackers to forge signatures on arbitrary messages.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43572">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32124">
<div class="body">
<div class="pull_right date details" title="09.11.2021 20:35:25">
20:35
</div>
<div class="text">
<strong>โผ CVE-2021-43568 โผ</strong><br><br><code>The verify function in the Stark Bank Elixir ECDSA library (ecdsa-elixir) 1.0.0 fails to check that the signature is non-zero, which allows attackers to forge signatures on arbitrary messages.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43568">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32125">
<div class="body">
<div class="pull_right date details" title="09.11.2021 20:35:26">
20:35
</div>
<div class="text">
<strong>โผ CVE-2021-43571 โผ</strong><br><br><code>The verify function in the Stark Bank Node.js ECDSA library (ecdsa-node) 1.1.2 fails to check that the signature is non-zero, which allows attackers to forge signatures on arbitrary messages.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43571">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32126">
<div class="body">
<div class="pull_right date details" title="09.11.2021 20:38:23">
20:38
</div>
<div class="text">
<strong>๐ด Are You Planning for the Quantum, Transhumanist Threat? ๐ด</strong><br><br><code>Breaking encryption in a day and hacking without visible devices are two threats that could become a reality in the next decade and beyond, experts say.</code><br><br><a href="https://www.darkreading.com/risk/are-you-planning-for-the-quantum-transhumanist-threat-">๐ Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32127">
<div class="body">
<div class="pull_right date details" title="09.11.2021 20:38:24">
20:38
</div>
<div class="text">
<strong>๐ด Microsoft Fixes Exchange Server Zero-Day ๐ด</strong><br><br><code>November security update contains patches for 55 bugs โ including six zero-days across various products.</code><br><br><a href="https://www.darkreading.com/vulnerabilities-threats/microsoft-s-nov-security-update-contains-fix-for-exchange-server-0-day">๐ Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message32128">
<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.11.2021 22:35:27">
22:35
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โผ CVE-2021-43575 โผ</strong><br><br><code>** DISPUTED ** KNX ETS6 through 6.0.0 uses the hard-coded password ETS5Password, with a salt value of Ivan Medvedev, allowing local users to read project information, a similar issue to CVE-2021-36799. NOTE: The vendor disputes this because it is not the responsibility of the ETS to securely store cryptographic key material when it is not being exported.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43575">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32129">
<div class="body">
<div class="pull_right date details" title="09.11.2021 22:35:28">
22:35
</div>
<div class="text">
<strong>โผ CVE-2021-35488 โผ</strong><br><br><code>Thruk 2.40-2 allows /thruk/#cgi-bin/status.cgi?style=combined&title={TITLE] Reflected XSS via the host or title parameter. An attacker could inject arbitrary JavaScript into status.cgi. The payload would be triggered every time an authenticated user browses the page containing it.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-35488">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32130">
<div class="body">
<div class="pull_right date details" title="09.11.2021 22:35:30">
22:35
</div>
<div class="text">
<strong>โผ CVE-2021-35489 โผ</strong><br><br><code>Thruk 2.40-2 allows /thruk/#cgi-bin/extinfo.cgi?type=2&host={HOSTNAME]&service={SERVICENAME]&backend={BACKEND] Reflected XSS via the host or service parameter. An attacker could inject arbitrary JavaScript into extinfo.cgi. The malicious payload would be triggered every time an authenticated user browses the page containing it.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-35489">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32131">
<div class="body">
<div class="pull_right date details" title="09.11.2021 22:35:31">
22:35
</div>
<div class="text">
<strong>โผ CVE-2021-37157 โผ</strong><br><br><code>An issue was discovered in OpenGamePanel OGP-Agent-Linux through 2021-08-14. $HOME/OGP/Cfg/Config.pm has the root password in cleartext.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-37157">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32132">
<div class="body">
<div class="pull_right date details" title="09.11.2021 22:35:32">
22:35
</div>
<div class="text">
<strong>โผ CVE-2021-37158 โผ</strong><br><br><code>An issue was discovered in OpenGamePanel OGP-Agent-Linux through 2021-08-14. An authenticated attacker could inject OS commands by starting a Counter-Strike server and using the map field to enter a Bash command.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-37158">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message service" id="message-948">
<div class="body details">
10 November 2021
</div>
</div>
<div class="message default clearfix" id="message32133">
<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="10.11.2021 03:41:45">
03:41
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โผ CVE-2021-42292 โผ</strong><br><br><code>Microsoft Excel Security Feature Bypass Vulnerability</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42292">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32134">
<div class="body">
<div class="pull_right date details" title="10.11.2021 03:41:47">
03:41
</div>
<div class="text">
<strong>โผ CVE-2021-41366 โผ</strong><br><br><code>Credential Security Support Provider Protocol (CredSSP) Elevation of Privilege Vulnerability</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41366">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32135">
<div class="body">
<div class="pull_right date details" title="10.11.2021 03:41:48">
03:41
</div>
<div class="text">
<strong>โผ CVE-2021-42304 โผ</strong><br><br><code>Azure RTOS Elevation of Privilege Vulnerability This CVE ID is unique from CVE-2021-42302, CVE-2021-42303.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42304">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32136">
<div class="body">
<div class="pull_right date details" title="10.11.2021 03:41:49">
03:41
</div>
<div class="text">
<strong>โผ CVE-2021-42288 โผ</strong><br><br><code>Windows Hello Security Feature Bypass Vulnerability</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42288">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32137">
<div class="body">
<div class="pull_right date details" title="10.11.2021 03:41:50">
03:41
</div>
<div class="text">
<strong>โผ CVE-2021-42279 โผ</strong><br><br><code>Chakra Scripting Engine Memory Corruption Vulnerability</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42279">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32138">
<div class="body">
<div class="pull_right date details" title="10.11.2021 03:41:51">
03:41
</div>
<div class="text">
<strong>โผ CVE-2021-41367 โผ</strong><br><br><code>NTFS Elevation of Privilege Vulnerability This CVE ID is unique from CVE-2021-41370, CVE-2021-42283.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41367">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32139">
<div class="body">
<div class="pull_right date details" title="10.11.2021 03:41:53">
03:41
</div>
<div class="text">
<strong>โผ CVE-2021-41373 โผ</strong><br><br><code>FSLogix Information Disclosure Vulnerability</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41373">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32140">
<div class="body">
<div class="pull_right date details" title="10.11.2021 03:41:54">
03:41
</div>
<div class="text">
<strong>โผ CVE-2021-41356 โผ</strong><br><br><code>Windows Denial of Service Vulnerability</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41356">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message32141">
<div class="body">
<div class="pull_right date details" title="10.11.2021 03:41:55">
03:41
</div>
<div class="text">
<strong>โผ CVE-2021-42323 โผ</strong><br><br><code>Azure RTOS Information Disclosure Vulnerability This CVE ID is unique from CVE-2021-26444, CVE-2021-42301.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42323">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message32142">
<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="10.11.2021 08:36:06">
08:36
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โผ CVE-2021-31853 โผ</strong><br><br><code>DLL Search Order Hijacking Vulnerability in McAfee Drive Encryption (MDE) prior to 7.3.0 HF2 (7.3.0.183) allows local users to execute arbitrary code and escalate privileges via execution from a compromised folder.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-31853">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message32143">
<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="10.11.2021 09:09:43">
09:09
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐๏ธ Apache Storm maintainers patch two pre-auth RCE vulnerabilities ๐๏ธ</strong><br><br><code>High-risk issues were discovered by GitHubโs in-house security team</code><br><br><a href="https://portswigger.net/daily-swig/apache-storm-maintainers-patch-two-pre-auth-rce-vulnerabilities">๐ Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>