-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages16.html
22862 lines (14287 loc) · 865 KB
/
messages16.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="messages15.html">
Previous messages
</a>
<div class="message service" id="message-643">
<div class="body details">
6 October 2020
</div>
</div>
<div class="message default clearfix" id="message15098">
<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="06.10.2020 21:27:37">
21:27
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2020-14183 ‼</strong><br><br><code>Affected versions of Jira Server & Data Center allow a remote attacker with limited (non-admin) privileges to view a Jira instance's Support Entitlement Number (SEN) via an Information Disclosure vulnerability in the HTTP Response headers. The affected versions are before version 7.13.18, from version 8.0.0 before 8.5.9, and from version 8.6.0 before 8.12.1.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-14183">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15099">
<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="06.10.2020 21:54:26">
21:54
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Verizon Payment Security Report is a Wake-up Call: Time to Refocus on PCI DSS Compliance 🕴</strong><br><br><code>Too many organizations fail to enact the baseline payment security controls, according to the Verizon 2020 Payment Security Report, and the recent Blackbaud ransomware incident is merely the latest evidence.</code><br><br><a href="https://www.darkreading.com/omdia/verizon-payment-security-report-is-a-wake-up-call-time-to-refocus-on-pci-dss-compliance/a/d-id/1339104?_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 service" id="message-644">
<div class="body details">
7 October 2020
</div>
</div>
<div class="message default clearfix" id="message15100">
<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="07.10.2020 07:44:18">
07:44
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2020-7742 ‼</strong><br><br><code>This affects the package simpl-schema before 1.10.2.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-7742">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15101">
<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="07.10.2020 10:21:38">
10:21
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ Comcast TV Remote Hack Opens Homes to Snooping ❌</strong><br><br><code>Researchers disclosed the 'WarezTheRemote' attack, affecting Comcast's XR11 voice remote control.</code><br><br><a href="https://threatpost.com/comcast-tv-remote-homes-snooping/159899/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15102">
<div class="body">
<div class="pull_right date details" title="07.10.2020 10:21:38">
10:21
</div>
<div class="text">
<strong>❌ IRS COVID-19 Relief Payment Deadlines Anchor Convincing Phish ❌</strong><br><br><code>The upcoming deadlines for applying for coronavirus relief are the lure for a phish that gets around email security gateways by using a legitimate SharePoint page for data-harvesting.</code><br><br><a href="https://threatpost.com/irs-covid-impact-payment-deadlines-phish/159913/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15103">
<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="07.10.2020 10:40:05">
10:40
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🦿 Okta opens the door to third-party developers with new Okta Devices SDK and API 🦿</strong><br><br><code>The new platform will allow developers to leverage Okta's SSO technology to build branded biometric authentication for iOS and Android apps.</code><br><br><a href="https://www.techrepublic.com/article/okta-opens-the-door-to-third-party-developers-with-new-okta-devices-sdk-and-api/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15104">
<div class="body">
<div class="pull_right date details" title="07.10.2020 10:40:06">
10:40
</div>
<div class="text">
<strong>🦿 Security firm: WarezTheRemote flaw could turn a Comcast remote into a listening device 🦿</strong><br><br><code>Could your cable TV device spy on you? Vulnerability found and patched in Comcast TV remote.</code><br><br><a href="https://www.techrepublic.com/article/security-firm-wareztheremote-flaw-could-turn-a-comcast-remote-into-a-listening-device/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15105">
<div class="body">
<div class="pull_right date details" title="07.10.2020 10:51:39">
10:51
</div>
<div class="text">
<strong>❌ PoetRAT Resurfaces in Attacks in Azerbaijan Amid Escalating Conflict ❌</strong><br><br><code>Spear-phishing attacks targeting VIPs and others show key malware changes and are likely linked to the current conflict with Armenia.</code><br><br><a href="https://threatpost.com/poetrat-resurfaces-azerbaijan-conflict/159917/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15106">
<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="07.10.2020 11:24:50">
11:24
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 What the Sci-Fi Hit Altered Carbon Teaches Us About Virtualization Security 🕴</strong><br><br><code>The Netflix show may be fantastical, but it has real-world lessons about virtualization.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/what-the-sci-fi-hit-altered-carbon-teaches-us-about-virtualization-security/a/d-id/1338977?_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="message15107">
<div class="body">
<div class="pull_right date details" title="07.10.2020 11:28:26">
11:28
</div>
<div class="text">
<strong>‼ CVE-2020-25985 ‼</strong><br><br><code>MonoCMS Blog 1.0 is affected by: Arbitrary File Deletion. Any authenticated user can delete files on and off the webserver (php files can be unlinked and not deleted).</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-25985">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15108">
<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="07.10.2020 12:10:07">
12:10
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🦿 Phishing attack spoofs IRS COVID-19 relief to steal personal data 🦿</strong><br><br><code>The phishing page tries to obtain email credentials, Social Security numbers, driver's license numbers, and tax numbers, says Armorblox.</code><br><br><a href="https://www.techrepublic.com/article/phishing-attack-spoofs-irs-covid-19-relief-to-steal-personal-data/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15109">
<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="07.10.2020 12:51:43">
12:51
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ Google’s Chrome 86: Critical Payments Bug, Password Checker Among Security Notables ❌</strong><br><br><code>Google is rolling out 35 security fixes, and a new password feature, in Chrome 86 versions for Windows, Mac, Android and iOS users.</code><br><br><a href="https://threatpost.com/google-chrome-86-critical-payments-bug-password-check/159938/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15110">
<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="07.10.2020 13:28:19">
13:28
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2020-13332 ‼</strong><br><br><code>Improper access expiration date validation in GitLab version >=8.11.0-rc6+ allows user to have access to projects with expiration.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-13332">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15111">
<div class="body">
<div class="pull_right date details" title="07.10.2020 13:28:21">
13:28
</div>
<div class="text">
<strong>‼ CVE-2020-13346 ‼</strong><br><br><code>Membership changes are not reflected in ToDo subscriptions in GitLab versions prior to 13.2.10, 13.3.7 and 13.4.2, allowing guest users to access confidential issues through API.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-13346">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15112">
<div class="body">
<div class="pull_right date details" title="07.10.2020 13:28:22">
13:28
</div>
<div class="text">
<strong>‼ CVE-2020-14355 ‼</strong><br><br><code>Multiple buffer overflow vulnerabilities were found in the QUIC image decoding process of the SPICE remote display system, before spice-0.14.2-1. Both the SPICE client (spice-gtk) and server are affected by these flaws. These flaws allow a malicious client or server to send specially crafted messages that, when processed by the QUIC image compression algorithm, result in a process crash or potential code execution.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-14355">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15113">
<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="07.10.2020 13:54:04">
13:54
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🛠 Packet Fence 10.2.0 🛠</strong><br><br><code>PacketFence is a network access control (NAC) system. It is actively maintained and has been deployed in numerous large-scale institutions. It can be used to effectively secure networks, from small to very large heterogeneous networks. PacketFence provides NAC-oriented features such as registration of new network devices, detection of abnormal network activities including from remote snort sensors, isolation of problematic devices, remediation through a captive portal, and registration-based and scheduled vulnerability scans.</code><br><br><a href="https://packetstormsecurity.com/files/159506/packetfence-10.2.0.tar.gz">📖 Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15114">
<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="07.10.2020 14:15:20">
14:15
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🔏 FINRA Warns Financial Services Firms of New Phishing Campaign 🔏</strong><br><br><code>FINRA, a self-regulatory organization that oversees brokers and broker-dealers, is warning about a new phishing attack that looks like its coming from the organization.</code><br><br><a href="https://digitalguardian.com/blog/finra-warns-financial-services-firms-new-phishing-campaign">📖 Read</a><br><br>via "<em>Digital Guardian</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15115">
<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="07.10.2020 14:51:46">
14:51
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ BAHAMUT Spies-for-Hire Linked to Extensive Nation-State Activity ❌</strong><br><br><code>Researchers uncovered a sophisticated, incredibly well-resourced APT that has its fingers in wide-ranging espionage and disinformation campaigns.</code><br><br><a href="https://threatpost.com/bahamut-spies-nation-state/159925/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15116">
<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="07.10.2020 15:25:03">
15:25
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 The New War Room: Cybersecurity in the Modern Era 🕴</strong><br><br><code>The introduction of the virtual war room is a new but necessary shift. To ensure its success, security teams must implement new systems and a new approach to cybersecurity.</code><br><br><a href="https://www.darkreading.com/operations/the-new-war-room-cybersecurity-in-the-modern-era/a/d-id/1338904?_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="message15117">
<div class="body">
<div class="pull_right date details" title="07.10.2020 15:29:19">
15:29
</div>
<div class="text">
<strong>‼ CVE-2019-16160 ‼</strong><br><br><code>An integer underflow in the SMB server of MikroTik RouterOS before 6.45.5 allows remote unauthenticated attackers to crash the service.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-16160">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15118">
<div class="body">
<div class="pull_right date details" title="07.10.2020 15:29:20">
15:29
</div>
<div class="text">
<strong>‼ CVE-2020-26870 ‼</strong><br><br><code>Cure53 DOMPurify before 2.0.17 allows mutation XSS. This occurs because a serialize-parse roundtrip does not necessarily return the original DOM tree, and a namespace can change from HTML to MathML, as demonstrated by nesting of FORM elements.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26870">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15119">
<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="07.10.2020 15:51:48">
15:51
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ Google Rolls Out Fixes for High-Severity Android System Flaws ❌</strong><br><br><code>The most serious bugs are elevation-of-privilege issues in the Android System component (CVE-2020-0215 and CVE-2020-0416).</code><br><br><a href="https://threatpost.com/google-android-system-flaws/159948/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15120">
<div class="body">
<div class="pull_right date details" title="07.10.2020 15:55:02">
15:55
</div>
<div class="text">
<strong>🕴 CISA Warns of Renewed Emotet Activity 🕴</strong><br><br><code>The Emotet malware dropper is seeing an upsurge in new activity in the second half of 2020.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/cisa-warns-of-renewed-emotet-activity/d/d-id/1339107?_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" id="message15121">
<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="07.10.2020 16:21:48">
16:21
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ Feds Sound Alarm Over Emotet Attacks on State, Local Govs ❌</strong><br><br><code>CISA warned already-strained public-sector entities about disturbing spikes in Emotet phishing attacks aimed at municipalities.</code><br><br><a href="https://threatpost.com/feds-alarm-emotet-attacks-state-local/159954/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15122">
<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="07.10.2020 16:40:13">
16:40
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🦿 3 ways criminals use artificial intelligence in cybersecurity attacks 🦿</strong><br><br><code>Bad actors use machine learning to break passwords more quickly and build malware that knows how to hide, experts warn.</code><br><br><a href="https://www.techrepublic.com/article/3-ways-criminals-use-artificial-intelligence-in-cybersecurity-attacks/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15123">
<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="07.10.2020 17:10:14">
17:10
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🦿 5 strategies for CISOs during a time of rapid business transformation 🦿</strong><br><br><code>A survey of business leaders by PwC finds the pandemic is causing rapid changes in the roles CISOs play, and offers five tips for ensuring that security remains stable as we enter a new normal.</code><br><br><a href="https://www.techrepublic.com/article/5-strategies-for-cisos-during-a-time-of-rapid-business-transformation/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15124">
<div class="body">
<div class="pull_right date details" title="07.10.2020 17:25:06">
17:25
</div>
<div class="text">
<strong>🕴 Cyber Intelligence Suffers From 'Snobby' Isolationism, Focus on Rare Threats 🕴</strong><br><br><code>Cyber-threat intelligence groups need to more often investigate their organization's specific threats and better integrate with other business groups, experts say.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/cyber-intelligence-suffers-from-snobby-isolationism-focus-on-rare-threats/d/d-id/1339108?_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="message15125">
<div class="body">
<div class="pull_right date details" title="07.10.2020 17:29:24">
17:29
</div>
<div class="text">
<strong>‼ CVE-2020-26880 ‼</strong><br><br><code>Sympa through 6.2.57b.2 allows a local privilege escalation from the sympa user account to full root access by modifying the sympa.conf configuration file (which is owned by sympa) and parsing it through the setuid sympa_newaliases-wrapper executable.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26880">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15126">
<div class="body">
<div class="pull_right date details" title="07.10.2020 17:29:25">
17:29
</div>
<div class="text">
<strong>‼ CVE-2020-15176 ‼</strong><br><br><code>In GLPI before version 9.5.2, when supplying a back tick in input that gets put into a SQL query,the application does not escape or sanitize allowing for SQL Injection to occur. Leveraging this vulnerability an attacker is able to exfiltrate sensitive information like passwords, reset tokens, personal details, and more. The issue is patched in version 9.5.2</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-15176">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15127">
<div class="body">
<div class="pull_right date details" title="07.10.2020 17:29:26">
17:29
</div>
<div class="text">
<strong>‼ CVE-2020-15217 ‼</strong><br><br><code>In GLPI before version 9.5.2, there is a leakage of user information through the public FAQ. The issue was introduced in version 9.5.0 and patched in 9.5.2. As a workaround, disable public access to the FAQ.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-15217">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15128">
<div class="body">
<div class="pull_right date details" title="07.10.2020 17:29:26">
17:29
</div>
<div class="text">
<strong>‼ CVE-2020-15175 ‼</strong><br><br><code>In GLPI before version 9.5.2, the `?pluginimage.send.php?` endpoint allows a user to specify an image from a plugin. The parameters can be maliciously crafted to instead delete the .htaccess file for the files directory. Any user becomes able to read all the files and folders contained in â€&oelig;/files/â€�. Some of the sensitive information that is compromised are the user sessions, logs, and more. An attacker would be able to get the Administrators session token and use that to authenticate. The issue is patched in version 9.5.2.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-15175">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message15129">
<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="07.10.2020 17:55:06">
17:55
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 3 Ways Companies are Working on Security by Design 🕴</strong><br><br><code>Execs from top financial organizations and other companies share insights on building a security culture.</code><br><br><a href="https://www.darkreading.com/application-security/3-ways-companies-are-working-on-security-by-design/d/d-id/1339111?_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="message15130">
<div class="body">
<div class="pull_right date details" title="07.10.2020 17:55:07">
17:55
</div>
<div class="text">
<strong>🕴 Rare Firmware Rootkit Discovered Targeting Diplomats, NGOs 🕴</strong><br><br><code>Second-ever sighting of a firmware exploit in the wild is a grim reminder of the dangers of these mostly invisible attacks.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/rare-firmware-rootkit-discovered-targeting-diplomats-ngos-/d/d-id/1339110?_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" id="message15131">
<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="07.10.2020 18:10:15">
18:10
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🦿 Cybersecurity Awareness Month: How to protect your kids from identity theft 🦿</strong><br><br><code>Freezing your child's credit is one way to stop cybercriminals from destroying their credit. But you have to be careful to keep the key to thaw it later.</code><br><br><a href="https://www.techrepublic.com/videos/cybersecurity-awareness-month-how-to-protect-your-kids-from-identity-theft/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message15132">
<div class="body">
<div class="pull_right date details" title="07.10.2020 18:25:07">
18:25
</div>
<div class="text">
<strong>🕴 Open Source Threat Intelligence Searches for Sustainable Communities 🕴</strong><br><br><code>As long as a community is strong, so will be the intelligence it shares on open source feeds. But if that community breaks down ...</code><br><br><a href="https://www.darkreading.com/edge/theedge/open-source-threat-intelligence-searches-for-sustainable-communities/b/d-id/1339109?_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" id="message15133">
<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="07.10.2020 18:55:09">
18:55
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 New 'HEH' Botnet Targets Exposed Telnet Services 🕴</strong><br><br><code>Latest threat is one in a growing list of malware developed in the Go programming language.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/new-heh-botnet-targets-exposed-telnet-services/d/d-id/1339112?_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" id="message15134">
<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="07.10.2020 19:25:09">
19:25
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 'Bahamut' Threat Group Targets Government & Industry in Middle East 🕴</strong><br><br><code>Researchers say the cyber espionage group was involved in several attacks against government officials and businesses in the Middle East and South Asia.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/bahamut-threat-group-targets-government-and-industry-in-middle-east/d/d-id/1339114?_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="message15135">
<div class="body">
<div class="pull_right date details" title="07.10.2020 19:29:27">
19:29
</div>
<div class="text">
<strong>‼ CVE-2020-25867 ‼</strong><br><br><code>SoPlanning before 1.47 doesn't correctly check the security key used to publicly share plannings. It allows a bypass to get access without authentication.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-25867">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>