-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages20.html
16550 lines (10342 loc) · 725 KB
/
messages20.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="messages19.html">
Previous messages
</a>
<div class="message service" id="message-705">
<div class="body details">
10 December 2020
</div>
</div>
<div class="message default clearfix" id="message19098">
<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.12.2020 13:53:35">
13:53
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Google Shares Cloud Security Tips 🕴</strong><br><br><code>Anton Chuvakin, head of solution strategy at Google Cloud Security, discusses common cloud security hurdles and how to get over them.</code><br><br><a href="https://www.darkreading.com/cloud/google-shares-cloud-security-tips/d/d-id/1339670?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19099">
<div class="body">
<div class="pull_right date details" title="10.12.2020 13:53:35">
13:53
</div>
<div class="text">
<strong>❌ Cyber Monday is Every Monday: Securing the ‘New Normal’ ❌</strong><br><br><code>From eCommerce threats, to security concerns in connected speakers, Fortinet researchers discuss the top evolving threats of 2020, heading into the new year.</code><br><br><a href="https://threatpost.com/consumer-grade-router-attacks-the-new-normal/162080/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19100">
<div class="body">
<div class="pull_right date details" title="10.12.2020 13:53:36">
13:53
</div>
<div class="text">
<strong>⚠ S3 Ep10: Hacking iPhones, sunken Enigmas and double scams [Podcast] ⚠</strong><br><br><code>Latest episode - listen now, and please tell your friends about our podcast.</code><br><br><a href="https://nakedsecurity.sophos.com/2020/12/10/s3-ep10-hacking-iphones-sunken-enigmas-and-double-scams/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19101">
<div class="body">
<div class="pull_right date details" title="10.12.2020 13:53:37">
13:53
</div>
<div class="text">
<strong>🕴 The Line Between Physical Security & Cybersecurity Blurs as World Gets More Digital 🕴</strong><br><br><code>Security teams are being challenged by the connected nature of IP devices, and preventing them from being compromised by cybercriminals has become an essential part of keeping people and property safe.</code><br><br><a href="https://www.darkreading.com/physical-security/the-line-between-physical-security-and-cybersecurity-blurs-as-world-gets-more-digital/a/d-id/1339611?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19102">
<div class="body">
<div class="pull_right date details" title="10.12.2020 13:53:41">
13:53
</div>
<div class="text">
<strong>🛠 Wireshark Analyzer 3.4.1 🛠</strong><br><br><code>Wireshark is a GTK+-based network protocol analyzer that lets you capture and interactively browse the contents of network frames. The goal of the project is to create a commercial-quality analyzer for Unix and Win32 and to give Wireshark features that are missing from closed-source sniffers. This is the source code release.</code><br><br><a href="https://packetstormsecurity.com/files/160440/wireshark-3.4.1.tar.xz">📖 Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19103">
<div class="body">
<div class="pull_right date details" title="10.12.2020 13:53:42">
13:53
</div>
<div class="text">
<strong>🕴 85,000 MySQL Servers Hit in Active Ransomware Campaign 🕴</strong><br><br><code>Attackers pressure victims into paying ransom by publishing and offering for sale data stolen in a campaign that dates back to January.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/85000-mysql-servers-hit-in-active-ransomware-campaign/d/d-id/1339673?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19104">
<div class="body">
<div class="pull_right date details" title="10.12.2020 13:53:43">
13:53
</div>
<div class="text">
<strong>❌ Critical Cisco Jabber Bug Gets Updated Fix ❌</strong><br><br><code>A series of bugs, patched in September, still allow remote code execution by attackers.</code><br><br><a href="https://threatpost.com/critical-cisco-jabber-bug-get-updated-fix/162143/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19105">
<div class="body">
<div class="pull_right date details" title="10.12.2020 13:53:44">
13:53
</div>
<div class="text">
<strong>❌ PLEASE_READ_ME Ransomware Attacks 85K MySQL Servers ❌</strong><br><br><code>Ransomware actors behind the attack have breached at least 85,000 MySQL servers, and are currently selling at least compromised 250,000 databases.</code><br><br><a href="https://threatpost.com/please_read_me-ransomware-mysql-servers/162136/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19106">
<div class="body">
<div class="pull_right date details" title="10.12.2020 13:53:45">
13:53
</div>
<div class="text">
<strong>🕴 Poll: Endpoint Agita 🕴</strong><br><br><br><br><a href="https://www.darkreading.com/edge/theedge/poll-endpoint-agita/b/d-id/1339672?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19107">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:17">
14:04
</div>
<div class="text">
<strong>‼ CVE-2020-29667 ‼</strong><br><br><code>In Lan ATMService M3 ATM Monitoring System 6.1.0, a remote attacker able to use a default cookie value, such as PHPSESSID=LANIT-IMANAGER, can achieve control over the system because of Insufficient Session Expiration.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-29667">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19108">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:19">
14:04
</div>
<div class="text">
<strong>‼ CVE-2020-12595 ‼</strong><br><br><code>An information disclosure flaw allows a malicious, authenticated, privileged web UI user to obtain a password for a remote SCP backup server that they might not otherwise be authorized to access. This affects SMG prior to 10.7.4.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-12595">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19109">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:20">
14:04
</div>
<div class="text">
<strong>‼ CVE-2020-29668 ‼</strong><br><br><code>Sympa before 6.2.59b.2 allows remote attackers to obtain full SOAP API access by sending any arbitrary string (except one from an expired cookie) as the cookie value to authenticateAndRun.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-29668">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19110">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:22">
14:04
</div>
<div class="text">
<strong>‼ CVE-2020-26407 ‼</strong><br><br><code>A XSS vulnerability exists in Gitlab CE/EE from 12.4 before 13.4.7, 13.5 before 13.5.5, and 13.6 before 13.6.2 that allows an attacker to perform cross-site scripting to other users via importing a malicious project</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26407">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19111">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:23">
14:04
</div>
<div class="text">
<strong>‼ CVE-2020-12594 ‼</strong><br><br><code>A privilege escalation flaw allows a malicious, authenticated, privileged CLI user to escalate their privileges on the system and gain full control over the SMG appliance. This affects SMG prior to 10.7.4.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-12594">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19112">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:24">
14:04
</div>
<div class="text">
<strong>‼ CVE-2020-24445 ‼</strong><br><br><code>AEM's Cloud Service offering, as well as versions 6.5.6.0 (and below), 6.4.8.2 (and below) and 6.3.3.8 (and below) are affected by a stored Cross-Site Scripting (XSS) vulnerability that could be abused by an attacker to inject malicious scripts into vulnerable form fields. Malicious JavaScript may be executed in a victim’s browser when they browse to the page containing the vulnerable field.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-24445">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19113">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:25">
14:04
</div>
<div class="text">
<strong>❌ Misery of Ransomware Hits Hospitals the Hardest ❌</strong><br><br><code>Ransomware attacks targeting hospitals have exacted a human cost as well as financial.</code><br><br><a href="https://threatpost.com/ransomware-hits-hospitals-hardest/162096/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19114">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:27">
14:04
</div>
<div class="text">
<strong>‼ CVE-2020-8920 ‼</strong><br><br><code>An information leak vulnerability exists in Gerrit versions prior to 2.14.22, 2.15.21, 2.16.25, 3.0.15, 3.1.10, 3.2.5 where an overoptimization with the FilteredRepository wrapper skips the verification of access on All-Users repositories, allowing an attacker to get read access to all users' personal information associated with their accounts.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-8920">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19115">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:28">
14:04
</div>
<div class="text">
<strong>‼ CVE-2020-8919 ‼</strong><br><br><code>An information leak vulnerability exists in Gerrit versions prior to 2.15.21, 2.16.25, 3.0.15, 3.1.10, 3.2.5 where a missing access check on the branch REST API allows an attacker with only the default set of priviledges to read all other user's personal account data as well as sub-trees with restricted access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-8919">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19116">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:29">
14:04
</div>
<div class="text">
<strong>🕴 Black Hat Europe: Dark Reading Video News Desk Coverage 🕴</strong><br><br><code>Coming to you from virtual backgrounds and beautifully curated bookcases around the world, Dark Reading brings you video interviews with the leading researchers speaking at this week's Black Hat Europe.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/black-hat-europe-dark-reading-video-news-desk-coverage/d/d-id/1339650?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19117">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:30">
14:04
</div>
<div class="text">
<strong>🕴 Google Shares Cloud Security Tips 🕴</strong><br><br><code>Anton Chuvakin, head of solution strategy at Google Cloud Security, discusses common cloud security hurdles and how to get over them.</code><br><br><a href="https://www.darkreading.com/cloud/google-shares-cloud-security-tips/d/d-id/1339670?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19118">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:32">
14:04
</div>
<div class="text">
<strong>❌ Cyber Monday is Every Monday: Securing the ‘New Normal’ ❌</strong><br><br><code>From eCommerce threats, to security concerns in connected speakers, Fortinet researchers discuss the top evolving threats of 2020, heading into the new year.</code><br><br><a href="https://threatpost.com/consumer-grade-router-attacks-the-new-normal/162080/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19119">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:33">
14:04
</div>
<div class="text">
<strong>⚠ S3 Ep10: Hacking iPhones, sunken Enigmas and double scams [Podcast] ⚠</strong><br><br><code>Latest episode - listen now, and please tell your friends about our podcast.</code><br><br><a href="https://nakedsecurity.sophos.com/2020/12/10/s3-ep10-hacking-iphones-sunken-enigmas-and-double-scams/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19120">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:34">
14:04
</div>
<div class="text">
<strong>🕴 The Line Between Physical Security & Cybersecurity Blurs as World Gets More Digital 🕴</strong><br><br><code>Security teams are being challenged by the connected nature of IP devices, and preventing them from being compromised by cybercriminals has become an essential part of keeping people and property safe.</code><br><br><a href="https://www.darkreading.com/physical-security/the-line-between-physical-security-and-cybersecurity-blurs-as-world-gets-more-digital/a/d-id/1339611?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19121">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:36">
14:04
</div>
<div class="text">
<strong>🛠 Wireshark Analyzer 3.4.1 🛠</strong><br><br><code>Wireshark is a GTK+-based network protocol analyzer that lets you capture and interactively browse the contents of network frames. The goal of the project is to create a commercial-quality analyzer for Unix and Win32 and to give Wireshark features that are missing from closed-source sniffers. This is the source code release.</code><br><br><a href="https://packetstormsecurity.com/files/160440/wireshark-3.4.1.tar.xz">📖 Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19122">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:37">
14:04
</div>
<div class="text">
<strong>🕴 85,000 MySQL Servers Hit in Active Ransomware Campaign 🕴</strong><br><br><code>Attackers pressure victims into paying ransom by publishing and offering for sale data stolen in a campaign that dates back to January.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/85000-mysql-servers-hit-in-active-ransomware-campaign/d/d-id/1339673?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19123">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:38">
14:04
</div>
<div class="text">
<strong>❌ Critical Cisco Jabber Bug Gets Updated Fix ❌</strong><br><br><code>A series of bugs, patched in September, still allow remote code execution by attackers.</code><br><br><a href="https://threatpost.com/critical-cisco-jabber-bug-get-updated-fix/162143/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19124">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:40">
14:04
</div>
<div class="text">
<strong>❌ PLEASE_READ_ME Ransomware Attacks 85K MySQL Servers ❌</strong><br><br><code>Ransomware actors behind the attack have breached at least 85,000 MySQL servers, and are currently selling at least compromised 250,000 databases.</code><br><br><a href="https://threatpost.com/please_read_me-ransomware-mysql-servers/162136/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19125">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:41">
14:04
</div>
<div class="text">
<strong>🕴 Poll: Endpoint Agita 🕴</strong><br><br><br><br><a href="https://www.darkreading.com/edge/theedge/poll-endpoint-agita/b/d-id/1339672?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19126">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:04:42">
14:04
</div>
<div class="text">
<strong>🦿 Privacy risks persist with DIY COVID-19 contact tracing apps 🦿</strong><br><br><code>Do-it-yourself apps that don't use the official API from Apple and Google raised privacy concerns due to unsecure design, says Guardsquare.</code><br><br><a href="https://www.techrepublic.com/article/privacy-risks-persist-with-diy-covid-19-contact-tracing-apps/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message19127">
<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.12.2020 14:23:22">
14:23
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2020-12595 ‼</strong><br><br><code>An information disclosure flaw allows a malicious, authenticated, privileged web UI user to obtain a password for a remote SCP backup server that they might not otherwise be authorized to access. This affects SMG prior to 10.7.4.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-12595">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19128">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:23">
14:23
</div>
<div class="text">
<strong>‼ CVE-2020-29668 ‼</strong><br><br><code>Sympa before 6.2.59b.2 allows remote attackers to obtain full SOAP API access by sending any arbitrary string (except one from an expired cookie) as the cookie value to authenticateAndRun.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-29668">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19129">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:24">
14:23
</div>
<div class="text">
<strong>‼ CVE-2020-26407 ‼</strong><br><br><code>A XSS vulnerability exists in Gitlab CE/EE from 12.4 before 13.4.7, 13.5 before 13.5.5, and 13.6 before 13.6.2 that allows an attacker to perform cross-site scripting to other users via importing a malicious project</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26407">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19130">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:25">
14:23
</div>
<div class="text">
<strong>‼ CVE-2020-12594 ‼</strong><br><br><code>A privilege escalation flaw allows a malicious, authenticated, privileged CLI user to escalate their privileges on the system and gain full control over the SMG appliance. This affects SMG prior to 10.7.4.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-12594">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19131">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:26">
14:23
</div>
<div class="text">
<strong>‼ CVE-2020-24445 ‼</strong><br><br><code>AEM's Cloud Service offering, as well as versions 6.5.6.0 (and below), 6.4.8.2 (and below) and 6.3.3.8 (and below) are affected by a stored Cross-Site Scripting (XSS) vulnerability that could be abused by an attacker to inject malicious scripts into vulnerable form fields. Malicious JavaScript may be executed in a victim’s browser when they browse to the page containing the vulnerable field.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-24445">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19132">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:30">
14:23
</div>
<div class="text">
<strong>❌ Misery of Ransomware Hits Hospitals the Hardest ❌</strong><br><br><code>Ransomware attacks targeting hospitals have exacted a human cost as well as financial.</code><br><br><a href="https://threatpost.com/ransomware-hits-hospitals-hardest/162096/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19133">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:32">
14:23
</div>
<div class="text">
<strong>‼ CVE-2020-8920 ‼</strong><br><br><code>An information leak vulnerability exists in Gerrit versions prior to 2.14.22, 2.15.21, 2.16.25, 3.0.15, 3.1.10, 3.2.5 where an overoptimization with the FilteredRepository wrapper skips the verification of access on All-Users repositories, allowing an attacker to get read access to all users' personal information associated with their accounts.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-8920">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19134">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:33">
14:23
</div>
<div class="text">
<strong>‼ CVE-2020-8919 ‼</strong><br><br><code>An information leak vulnerability exists in Gerrit versions prior to 2.15.21, 2.16.25, 3.0.15, 3.1.10, 3.2.5 where a missing access check on the branch REST API allows an attacker with only the default set of priviledges to read all other user's personal account data as well as sub-trees with restricted access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-8919">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19135">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:35">
14:23
</div>
<div class="text">
<strong>🕴 Black Hat Europe: Dark Reading Video News Desk Coverage 🕴</strong><br><br><code>Coming to you from virtual backgrounds and beautifully curated bookcases around the world, Dark Reading brings you video interviews with the leading researchers speaking at this week's Black Hat Europe.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/black-hat-europe-dark-reading-video-news-desk-coverage/d/d-id/1339650?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19136">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:36">
14:23
</div>
<div class="text">
<strong>🕴 Google Shares Cloud Security Tips 🕴</strong><br><br><code>Anton Chuvakin, head of solution strategy at Google Cloud Security, discusses common cloud security hurdles and how to get over them.</code><br><br><a href="https://www.darkreading.com/cloud/google-shares-cloud-security-tips/d/d-id/1339670?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19137">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:37">
14:23
</div>
<div class="text">
<strong>❌ Cyber Monday is Every Monday: Securing the ‘New Normal’ ❌</strong><br><br><code>From eCommerce threats, to security concerns in connected speakers, Fortinet researchers discuss the top evolving threats of 2020, heading into the new year.</code><br><br><a href="https://threatpost.com/consumer-grade-router-attacks-the-new-normal/162080/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19138">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:38">
14:23
</div>
<div class="text">
<strong>⚠ S3 Ep10: Hacking iPhones, sunken Enigmas and double scams [Podcast] ⚠</strong><br><br><code>Latest episode - listen now, and please tell your friends about our podcast.</code><br><br><a href="https://nakedsecurity.sophos.com/2020/12/10/s3-ep10-hacking-iphones-sunken-enigmas-and-double-scams/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19139">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:39">
14:23
</div>
<div class="text">
<strong>🕴 The Line Between Physical Security & Cybersecurity Blurs as World Gets More Digital 🕴</strong><br><br><code>Security teams are being challenged by the connected nature of IP devices, and preventing them from being compromised by cybercriminals has become an essential part of keeping people and property safe.</code><br><br><a href="https://www.darkreading.com/physical-security/the-line-between-physical-security-and-cybersecurity-blurs-as-world-gets-more-digital/a/d-id/1339611?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19140">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:40">
14:23
</div>
<div class="text">
<strong>🛠 Wireshark Analyzer 3.4.1 🛠</strong><br><br><code>Wireshark is a GTK+-based network protocol analyzer that lets you capture and interactively browse the contents of network frames. The goal of the project is to create a commercial-quality analyzer for Unix and Win32 and to give Wireshark features that are missing from closed-source sniffers. This is the source code release.</code><br><br><a href="https://packetstormsecurity.com/files/160440/wireshark-3.4.1.tar.xz">📖 Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19141">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:41">
14:23
</div>
<div class="text">
<strong>🕴 85,000 MySQL Servers Hit in Active Ransomware Campaign 🕴</strong><br><br><code>Attackers pressure victims into paying ransom by publishing and offering for sale data stolen in a campaign that dates back to January.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/85000-mysql-servers-hit-in-active-ransomware-campaign/d/d-id/1339673?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19142">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:42">
14:23
</div>
<div class="text">
<strong>❌ Critical Cisco Jabber Bug Gets Updated Fix ❌</strong><br><br><code>A series of bugs, patched in September, still allow remote code execution by attackers.</code><br><br><a href="https://threatpost.com/critical-cisco-jabber-bug-get-updated-fix/162143/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19143">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:43">
14:23
</div>
<div class="text">
<strong>❌ PLEASE_READ_ME Ransomware Attacks 85K MySQL Servers ❌</strong><br><br><code>Ransomware actors behind the attack have breached at least 85,000 MySQL servers, and are currently selling at least compromised 250,000 databases.</code><br><br><a href="https://threatpost.com/please_read_me-ransomware-mysql-servers/162136/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19144">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:44">
14:23
</div>
<div class="text">
<strong>🕴 Poll: Endpoint Agita 🕴</strong><br><br><br><br><a href="https://www.darkreading.com/edge/theedge/poll-endpoint-agita/b/d-id/1339672?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19145">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:44">
14:23
</div>
<div class="text">
<strong>🦿 Privacy risks persist with DIY COVID-19 contact tracing apps 🦿</strong><br><br><code>Do-it-yourself apps that don't use the official API from Apple and Google raised privacy concerns due to unsecure design, says Guardsquare.</code><br><br><a href="https://www.techrepublic.com/article/privacy-risks-persist-with-diy-covid-19-contact-tracing-apps/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19146">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:23:49">
14:23
</div>
<div class="text">
<strong>🕴 51% of Edge Readers Plan to Pursue New Cybersecurity Certification in 2021 🕴</strong><br><br><code>Demands of the "new normal" won't stop the majority of poll-takers from mastering new skills.</code><br><br><a href="https://www.darkreading.com/edge/theedge/51--of-edge-readers-plan-to-pursue-new-cybersecurity-certification-in-2021/b/d-id/1339674?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19147">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:25:15">
14:25
</div>
<div class="text">
<strong>‼ CVE-2020-12595 ‼</strong><br><br><code>An information disclosure flaw allows a malicious, authenticated, privileged web UI user to obtain a password for a remote SCP backup server that they might not otherwise be authorized to access. This affects SMG prior to 10.7.4.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-12595">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19148">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:25:17">
14:25
</div>
<div class="text">
<strong>‼ CVE-2020-29668 ‼</strong><br><br><code>Sympa before 6.2.59b.2 allows remote attackers to obtain full SOAP API access by sending any arbitrary string (except one from an expired cookie) as the cookie value to authenticateAndRun.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-29668">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19149">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:25:18">
14:25
</div>
<div class="text">
<strong>‼ CVE-2020-26407 ‼</strong><br><br><code>A XSS vulnerability exists in Gitlab CE/EE from 12.4 before 13.4.7, 13.5 before 13.5.5, and 13.6 before 13.6.2 that allows an attacker to perform cross-site scripting to other users via importing a malicious project</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26407">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19150">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:25:19">
14:25
</div>
<div class="text">
<strong>‼ CVE-2020-12594 ‼</strong><br><br><code>A privilege escalation flaw allows a malicious, authenticated, privileged CLI user to escalate their privileges on the system and gain full control over the SMG appliance. This affects SMG prior to 10.7.4.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-12594">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19151">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:25:21">
14:25
</div>
<div class="text">
<strong>‼ CVE-2020-24445 ‼</strong><br><br><code>AEM's Cloud Service offering, as well as versions 6.5.6.0 (and below), 6.4.8.2 (and below) and 6.3.3.8 (and below) are affected by a stored Cross-Site Scripting (XSS) vulnerability that could be abused by an attacker to inject malicious scripts into vulnerable form fields. Malicious JavaScript may be executed in a victim’s browser when they browse to the page containing the vulnerable field.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-24445">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19152">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:25:22">
14:25
</div>
<div class="text">
<strong>❌ Misery of Ransomware Hits Hospitals the Hardest ❌</strong><br><br><code>Ransomware attacks targeting hospitals have exacted a human cost as well as financial.</code><br><br><a href="https://threatpost.com/ransomware-hits-hospitals-hardest/162096/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19153">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:25:23">
14:25
</div>
<div class="text">
<strong>‼ CVE-2020-8920 ‼</strong><br><br><code>An information leak vulnerability exists in Gerrit versions prior to 2.14.22, 2.15.21, 2.16.25, 3.0.15, 3.1.10, 3.2.5 where an overoptimization with the FilteredRepository wrapper skips the verification of access on All-Users repositories, allowing an attacker to get read access to all users' personal information associated with their accounts.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-8920">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19154">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:25:24">
14:25
</div>
<div class="text">
<strong>‼ CVE-2020-8919 ‼</strong><br><br><code>An information leak vulnerability exists in Gerrit versions prior to 2.15.21, 2.16.25, 3.0.15, 3.1.10, 3.2.5 where a missing access check on the branch REST API allows an attacker with only the default set of priviledges to read all other user's personal account data as well as sub-trees with restricted access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-8919">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message19155">
<div class="body">
<div class="pull_right date details" title="10.12.2020 14:25:25">
14:25
</div>