-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages15.html
24966 lines (15601 loc) Β· 886 KB
/
messages15.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="messages14.html">
Previous messages
</a>
<div class="message service" id="message-598">
<div class="body details">
13 August 2020
</div>
</div>
<div class="message default clearfix" id="message14096">
<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="13.08.2020 02:55:28">
02:55
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2020-0513</strong><br><br><code>Out of bounds write for some Intel(R) Graphics Drivers before version 15.33.50.5129 may allow an authenticated user to potentially enable escalation of privilege via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-0513">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14097">
<div class="body">
<div class="pull_right date details" title="13.08.2020 02:55:29">
02:55
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2020-0512</strong><br><br><code>Uncaught exception in the system driver for some Intel(R) Graphics Drivers before version 15.33.50.5129 may allow an authenticated user to potentially enable denial of service via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-0512">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14098">
<div class="body">
<div class="pull_right date details" title="13.08.2020 02:55:30">
02:55
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2020-0510</strong><br><br><code>Out of bounds read in some Intel(R) Graphics Drivers before versions 15.45.31.5127 and 15.40.45.5126 may allow an authenticated user to potentially enable escalation of privilege via local access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-0510">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14099">
<div class="body">
<div class="pull_right date details" title="13.08.2020 02:55:31">
02:55
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2019-14630</strong><br><br><code>Reliance on untrusted inputs in a security decision in some Intel(R) Thunderbolt(TM) controllers may allow unauthenticated user to potentially enable information disclosure via physical access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-14630">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14100">
<div class="body">
<div class="pull_right date details" title="13.08.2020 02:55:32">
02:55
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2019-14620</strong><br><br><code>Insufficient control flow management for some Intel(R) Wireless Bluetooth(R) products may allow an unprivileged user to potentially enable denial of service via adjacent access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-14620">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14101">
<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="13.08.2020 07:09:23">
07:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Amazon Alexa βOne-Clickβ Attack Can Divulge Personal Data β</strong><br><br><code>Researchers disclosed flaws in Amazon Alexa that could allow attackers to access personal data and install skills on Echo devices.</code><br><br><a href="https://threatpost.com/amazon-alexa-one-click-attack-can-divulge-personal-data/158297/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14102">
<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="13.08.2020 10:09:21">
10:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β High-Severity TinyMCE Cross-Site Scripting Flaw Fixed β</strong><br><br><code>The cross-site scripting flaw could enable arbitrary code execution, information disclosure - and even account takeover.</code><br><br><a href="https://threatpost.com/high-severity-tinymce-cross-site-scripting-flaw-fixed/158306/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14103">
<div class="body">
<div class="pull_right date details" title="13.08.2020 10:09:22">
10:09
</div>
<div class="text">
<strong>β ReVoLTE Attack Allows Hackers to Listen in on Mobile Calls β</strong><br><br><code>Rare attack on cellular protocol exploits an encryption-implementation flaw at base stations to record voice calls.</code><br><br><a href="https://threatpost.com/revolte-attack-hackers-listen-mobile-calls/158325/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14104">
<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="13.08.2020 10:34:10">
10:34
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Emotet Return Brings New Tactics & Evasion Techniques π΄</strong><br><br><code>Security researchers tracking Emotet report its reemergence brings new tricks, including new evasion techniques to bypass security tools.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/emotet-return-brings-new-tactics-and-evasion-techniques/d/d-id/1338654?_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="message14105">
<div class="body">
<div class="pull_right date details" title="13.08.2020 10:34:11">
10:34
</div>
<div class="text">
<strong>π΄ Adaptive Shield Emerges From Stealth π΄</strong><br><br><code>Israeli startup joins growing number of vendors offering platform for detecting and mitigating common configuration errors in cloud environments.</code><br><br><a href="https://www.darkreading.com/cloud/adaptive-shield-emerges-from-stealth/d/d-id/1338653?_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="message14106">
<div class="body">
<div class="pull_right date details" title="13.08.2020 10:49:05">
10:49
</div>
<div class="text">
<strong>π Amazon Alexa flaws could have revealed home address and other personal data π</strong><br><br><code>The flaws could also have helped attackers obtain usernames, phone numbers, voice history, and installed skills, says Check Point Research.</code><br><br><a href="https://www.techrepublic.com/article/amazon-alexa-flaws-could-have-revealed-home-address-and-other-personal-data/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14107">
<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="13.08.2020 11:34:20">
11:34
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ With iOS's Privacy Nutrition Label, Apple Upstages Regulators π΄</strong><br><br><code>New iOS privacy features require developers to disclose what data they're collecting, how they're using it, and with whom they share it.</code><br><br><a href="https://www.darkreading.com/with-ioss-privacy-nutrition-label-apple-upstages-regulators/a/d-id/1338608?_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="message14108">
<div class="body">
<div class="pull_right date details" title="13.08.2020 11:34:21">
11:34
</div>
<div class="text">
<strong>π΄ Security Jobs With a Future -- And Ones on the Way Out π΄</strong><br><br><code>Some titles are hot, while others are not, amid rapidly shifting business priorities.</code><br><br><a href="https://www.darkreading.com/edge/theedge/security-jobs-with-a-future----and-ones-on-the-way-out/b/d-id/1338652?_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="message14109">
<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="13.08.2020 11:55:11">
11:55
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2019-4582</strong><br><br><code>IBM Maximo Asset Management 7.6.0 and 7.6.1 could allow a remote attacker to traverse directories on the system. An attacker could send a specially-crafted URL request containing "dot dot" sequences (/../) to view arbitrary files on the system. IBM X-Force ID: 167288.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-4582">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14110">
<div class="body">
<div class="pull_right date details" title="13.08.2020 11:55:12">
11:55
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2019-16374</strong><br><br><code>Pega Platform 8.2.1 allows LDAP injection because a username can contain a * character and can be of unlimited length. An attacker can specify four characters of a username, followed by the * character, to bypass access control.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-16374">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14111">
<div class="body">
<div class="pull_right date details" title="13.08.2020 12:09:08">
12:09
</div>
<div class="text">
<strong>β New Global Threat Landscape Report Reveals βUnprecedentedβ Cyberattacks β</strong><br><br><code>Fortinet's recently released Global Threat Landscape Report shows how the perimeter is extending to the home in the first half of 2020 - and what that means for cybercrime.</code><br><br><a href="https://threatpost.com/new-global-threat-landscape-report-reveals-unprecedented-cyberattacks/158329/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14112">
<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="13.08.2020 13:34:23">
13:34
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Black Hat USA 2020 Shines Spotlight on the Mental Challenges of Cybersecurity π΄</strong><br><br><code>Infosec practitioners face a variety of mental struggles in areas such as awareness training, problem solving, or general mental health. Several sessions at Black Hat USA 2020 highlighted these challenges and how to overcome them.</code><br><br><a href="https://www.darkreading.com/omdia/black-hat-usa-2020-shines-spotlight-on-the-mental-challenges-of-cybersecurity/a/d-id/1338658?_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="message14113">
<div class="body">
<div class="pull_right date details" title="13.08.2020 13:49:15">
13:49
</div>
<div class="text">
<strong>π How hospitals can better protect themselves against data breaches π</strong><br><br><code>Healthcare data breaches have fallen this year but could surge over the next few months as hospital records remain a top target, says CI Security.</code><br><br><a href="https://www.techrepublic.com/article/how-hospitals-can-better-protect-themselves-against-data-breaches/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14114">
<div class="body">
<div class="pull_right date details" title="13.08.2020 13:49:16">
13:49
</div>
<div class="text">
<strong>π How to hide files from any file manager on the Linux desktop π</strong><br><br><code>Want to hide files and folders from your Linux desktop file manager? Jack Wallen shows you one handy method.</code><br><br><a href="https://www.techrepublic.com/article/how-to-hide-files-from-any-file-manage-on-the-linux-desktop/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14115">
<div class="body">
<div class="pull_right date details" title="13.08.2020 13:49:16">
13:49
</div>
<div class="text">
<strong>π Report: Unskilled hackers can breach about 3 out of 4 companies π</strong><br><br><code>Positive Technologies found in a recent study that criminals with few skills can hack a company in less than 30 minutes.</code><br><br><a href="https://www.techrepublic.com/article/report-unskilled-hackers-can-breach-3-out-of-4-of-companies/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14116">
<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="13.08.2020 14:09:30">
14:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Zoom Faces More Legal Challenges Over End-to-End Encryption β</strong><br><br><code>The video-conferencing specialist has yet to roll out full encryption, but it says it's working on it.</code><br><br><a href="https://threatpost.com/zoom-legal-challenges-end-to-end-encryption/158341/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14117">
<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="13.08.2020 14:33:05">
14:33
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Tor and anonymous browsing β just how safe is it? β </strong><br><br><code>How to stay safe when you're using Tor, even if the network is littered with rogues.</code><br><br><a href="https://nakedsecurity.sophos.com/2020/08/13/tor-and-anonymous-browsing-just-how-safe-is-it/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14118">
<div class="body">
<div class="pull_right date details" title="13.08.2020 14:34:07">
14:34
</div>
<div class="text">
<strong>π΄ NSA & FBI Disclose New Russian Cyberespionage Malware π΄</strong><br><br><code>APT 28, aka Fancy Bear, is deploying the Drovorub malware designed for Linux systems as part of cyber-espionage operations.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/nsa-and-fbi-disclose-new-russian-cyberespionage-malware/d/d-id/1338662?_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="message14119">
<div class="body">
<div class="pull_right date details" title="13.08.2020 14:49:05">
14:49
</div>
<div class="text">
<strong>π Weak and infrequent cyber-crisis training is leaving companies vulnerable, new research says π</strong><br><br><code>Companies are too reliant on dated software, the most essential-to-crises staff aren't required attendance at cybersecurity training, and the pandemic exacerbated problems, according to a new report.</code><br><br><a href="https://www.techrepublic.com/article/weak-and-infrequent-cyber-crisis-training-is-leaving-companies-vulnerable-new-research-says/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14120">
<div class="body">
<div class="pull_right date details" title="13.08.2020 14:49:06">
14:49
</div>
<div class="text">
<strong>π US and UK workers still logging 2 extra hours every day, according to VPN data π</strong><br><br><code>People in Europe and Canada have gone back to the hours they were working before the coronavirus shutdown.</code><br><br><a href="https://www.techrepublic.com/article/us-and-uk-workers-still-logging-2-extra-hours-every-day-according-to-vpn-data/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message14121">
<div class="body">
<div class="pull_right date details" title="13.08.2020 14:53:28">
14:53
</div>
<div class="text">
<strong>π Wireshark Analyzer 3.2.6 π </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/158867/wireshark-3.2.6.tar.xz">π Go!</a><br><br>via "<em>Security Tool Files β Packet Storm</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14122">
<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="13.08.2020 15:34:22">
15:34
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Secure Development Takes a (Remote) Village π΄</strong><br><br><code>The shift to work from home isn't just about giving your Dev team the physical tools they need.</code><br><br><a href="https://www.darkreading.com/application-security/secure-development-takes-a-(remote)-village/a/d-id/1338620?_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="message14123">
<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="13.08.2020 15:55:11">
15:55
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2020-0261</strong><br><br><code>In C2 flame devices, there is a possible bypass of seccomp due to a missing configuration file. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-146059841</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-0261">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14124">
<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="13.08.2020 16:34:13">
16:34
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Boeing's DEF CON Debut a Sign of the Times π΄</strong><br><br><code>In the wake of a stalemate between the airplane manufacturer and a security researcher over vulns found in its 787 aircraft's network, Boeing says it's ready to "embrace" the hacker community.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/boeings-def-con-debut-a-sign-of-the-times/d/d-id/1338661?_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="message14125">
<div class="body">
<div class="pull_right date details" title="13.08.2020 16:34:13">
16:34
</div>
<div class="text">
<strong>π΄ The Race to Hack a Satellite at DEF CON π΄</strong><br><br><code>Eight teams competed to win cash, bragging rights, and the chance to control a satellite in space.</code><br><br><a href="https://www.darkreading.com/application-security/the-race-to-hack-a-satellite-at-def-con/d/d-id/1338657?_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="message14126">
<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="13.08.2020 16:49:23">
16:49
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Zero trust is critical, but very underused π</strong><br><br><code>Organizations must quickly adopt the zero trust mindset of "never trust, always verify" to mitigate the spread of breaches, limit access, and prevent lateral movement, according to an Illumio report.</code><br><br><a href="https://www.techrepublic.com/article/zero-trust-is-critical-but-very-underused/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14127">
<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="13.08.2020 17:34:02">
17:34
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ RedCurl APT Group Hacks Global Companies for Corporate Espionage π΄</strong><br><br><code>Researchers analyze a presumably Russian-speaking APT group that has been stealing corporate data since 2018.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/redcurl-apt-group-hacks-global-companies-for-corporate-espionage/d/d-id/1338664?_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="message14128">
<div class="body">
<div class="pull_right date details" title="13.08.2020 17:47:22">
17:47
</div>
<div class="text">
<strong>π New Phishing Campaign Targets SBA COVID-19 Loan Relief Accounts π</strong><br><br><code>Scams targeting small businesses are unfortunately commonplace these days. The latest attempts to phish business owners' SBA loan relief logins.</code><br><br><a href="https://digitalguardian.com/blog/new-phishing-campaign-targets-sba-covid-19-loan-relief-accounts">π Read</a><br><br>via "<em>Subscriber Blog RSS Feed</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message14129">
<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="13.08.2020 18:09:21">
18:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β CactusPete APT Hones Toolset, Resurfaces with New Espionage Targets β</strong><br><br><code>The APT is becoming more sophisticated over time.</code><br><br><a href="https://threatpost.com/cactuspete-apt-toolset-respionage-targets/158350/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14130">
<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="13.08.2020 18:34:22">
18:34
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Business Email Compromise Attacks Involving MFA Bypass Increase π΄</strong><br><br><code>Adversaries are using legacy email clients to access and take over accounts protected with strong authentication, Abnormal Security says.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/business-email-compromise-attacks-involving-mfa-bypass-increase/d/d-id/1338667?_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="message14131">
<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="13.08.2020 19:09:08">
19:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β NSA, FBI Warn of Linux Malware Used in Espionage Attacks β</strong><br><br><code>A never before seen malware has been used for espionage purposes via Linux systems, warn the NSA and FBI in a joint advisory.</code><br><br><a href="https://threatpost.com/nsa-fbi-warn-of-linux-malware-used-in-espionage-attacks/158351/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message14132">
<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="13.08.2020 19:34:12">
19:34
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Healthcare Industry Sees Respite From Attacks in First Half of 2020 π΄</strong><br><br><code>Breach disclosures are down, and reported ransomware attacks have also plummeted. Good news -- or a calm before the storm?</code><br><br><a href="https://www.darkreading.com/attacks-breaches/healthcare-industry-sees-respite-from-attacks-in-first-half-of-2020/d/d-id/1338668?_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="message14133">
<div class="body">
<div class="pull_right date details" title="13.08.2020 19:34:17">
19:34
</div>
<div class="text">
<strong>π΄ CISA Warns of Phishing Campaign with Loan-Relief Lure π΄</strong><br><br><code>Phishing emails and fake website promise help with the Small Business Administration's program that aids those affected by COVID-19.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/cisa-warns-of-phishing-campaign-with-loan-relief-lure/d/d-id/1338669?_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="message14134">
<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="13.08.2020 20:51:10">
20:51
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="pull_left forwarded userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="forwarded body">
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘ <span class="details"> 02.08.2020 14:36:22</span>
</div>
<div class="text">
<a href="https://telegra.ph/file/74930b3b953f8d837806f.mp4">ββ</a>========================<br><br><strong>π Look look! <br><br>These channels π¨ are amazing!<br><br></strong>========================
</div>
</div>
</div>
</div>
<div class="message default clearfix" id="message14135">
<div class="pull_left userpic_wrap">