-
Notifications
You must be signed in to change notification settings - Fork 0
/
messages6.html
25366 lines (15852 loc) Β· 867 KB
/
messages6.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="messages5.html">
Previous messages
</a>
<div class="message service" id="message-250">
<div class="body details">
21 June 2019
</div>
</div>
<div class="message default clearfix" id="message5065">
<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="21.06.2019 07:47:27">
07:47
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Millions of Dell PCs Vulnerable to Flaw in Third-Party Component β</strong><br><br><code>A component in SupportAssist software pre-installed on Dell PCs - and other OEM devices - opens systems up to DLL hijacking attacks.</code><br><br><a href="https://threatpost.com/millions-of-dell-pcs-vulnerable-to-flaw-in-third-party-component/145833/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5066">
<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="21.06.2019 08:14:08">
08:14
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π OEM diagnostic software used by Dell and other manufacturers has a serious security flaw π</strong><br><br><code>SupportAssist, which comes pre-installed on millions of Dell PCs, is based on a platform called PC-Doctor, and it can be abused to give attackers system-level access to hardware and software.</code><br><br><a href="https://www.techrepublic.com/article/oem-diagnostic-software-used-by-dell-and-other-manufacturers-has-a-serious-security-flaw/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5067">
<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="21.06.2019 08:37:31">
08:37
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Used Nest cams were letting previous owners spy on you β </strong><br><br><code>Google says it's fixed the issue, but we haven't heard details on how many, and which, products were affected.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/06/21/used-nest-cams-were-letting-previous-owners-spy-on-you/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message5068">
<div class="body">
<div class="pull_right date details" title="21.06.2019 08:51:49">
08:51
</div>
<div class="text">
<strong>π΄ Attackers Exploit MSP's Tools to Distribute Ransomware π΄</strong><br><br><code>Early information suggests threat actors gained access to the managed service provider's remote monitoring and management tools and used them to attack the firm's clients.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/customers-of-3-msps-hit-in-ransomware-attacks/d/d-id/1335025?_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="message5069">
<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="21.06.2019 09:12:38">
09:12
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Microsoft uses AI to push Windows 10 upgrade to users β </strong><br><br><code>From November, users running some versions of Windows 10 will be required to upgrade or find themselves unable to receive security updates.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/06/21/microsoft-uses-ai-to-push-windows-10-upgrade-to-users/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message5070">
<div class="body">
<div class="pull_right date details" title="21.06.2019 09:19:10">
09:19
</div>
<div class="text">
<strong>π KGB agents' wearables: Watches, cufflinks, shoes, and more π</strong><br><br><code>The KGB Espionage Museum's curator Agne Urbaityte describes how agents concealed spying devices in what they wore when working in the field.</code><br><br><a href="https://www.techrepublic.com/article/kgb-agents-wearables-watches-cufflinks-shoes-and-more/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5071">
<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="21.06.2019 10:06:44">
10:06
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Apply Military Strategy to Cybersecurity at Black Hat Trainings Virginia π΄</strong><br><br><code>This special October event in Alexandria, Virginia offers unique, practical courses in everything from data breach response to military strategy for cybersecurity.</code><br><br><a href="https://www.darkreading.com/black-hat/apply-military-strategy-to-cybersecurity-at-black-hat-trainings-virginia/d/d-id/1335020?_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="message5072">
<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="21.06.2019 11:27:19">
11:27
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Mozilla Fixes Second Actively-Exploited Firefox Flaw β</strong><br><br><code>Mozilla has patched a second actively-exploited vulnerability in Firefox this week.</code><br><br><a href="https://threatpost.com/mozilla-fixes-second-actively-exploited-firefox-flaw/145893/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5073">
<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="21.06.2019 12:06:51">
12:06
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Patrolling the New Cybersecurity Perimeter π΄</strong><br><br><code>Remote work and other developments demand a shift to managing people rather than devices.</code><br><br><a href="https://www.darkreading.com/perimeter/patrolling-the-new-cybersecurity-perimeter-/a/d-id/1334985?_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="message5074">
<div class="body">
<div class="pull_right date details" title="21.06.2019 12:19:30">
12:19
</div>
<div class="text">
<strong>π The KGB's eavesdropping and spying devices in everyday items π</strong><br><br><code>The KGB Espionage Museum's curator Agne Urbaityte explains why and how plates and ashtrays were used as eavesdropping and spying devices.</code><br><br><a href="https://www.techrepublic.com/article/the-kgbs-eavesdropping-and-spying-devices-in-everyday-items/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message5075">
<div class="body">
<div class="pull_right date details" title="21.06.2019 12:26:39">
12:26
</div>
<div class="text">
<strong>π΄ Startup Raises $13.7M to Stop Breaches with Behavioral Analytics π΄</strong><br><br><code>TrueFort plans to use the funding to expand sales, marketing, R&D, customer support, and go-to-market initiatives.</code><br><br><a href="https://www.darkreading.com/perimeter/startup-raises-%24137m-to-stop-breaches-with-behavioral-analytics/d/d-id/1335028?_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="message5076">
<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="21.06.2019 13:29:24">
13:29
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2016-7404</strong><br><br><code>OpenStack Magnum passes OpenStack credentials into the Heat templates creating its instances. While these should just be used for retrieving the instances' SSL certificates, they allow full API access, though and can be used to perform any API operation the user is authorized to perform.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-7404">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5077">
<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="21.06.2019 14:02:01">
14:02
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Pledges to Not Pay Ransomware Hit Reality π΄</strong><br><br><code>While risk analysts and security experts continue to urge companies to secure systems against ransomware, they are now also advising that firms be ready to pay.</code><br><br><a href="https://www.darkreading.com/pledges-to-not-pay-ransomware-hit-reality/d/d-id/1335029?_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="message5078">
<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="21.06.2019 14:18:27">
14:18
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Friday Five: 6/21 Edition π</strong><br><br><code>A $600,000 ransom is paid, a phishing attack yields more victims than expected, and a trio of university data breaches - catch up on the week's news with this roundup!</code><br><br><a href="https://digitalguardian.com/blog/friday-five-6/21-edition">π Read</a><br><br>via "<em>Subscriber Blog RSS Feed</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message5079">
<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="21.06.2019 15:01:43">
15:01
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Four CVEs Describe SACKs of Linux and FreeBSD Vulnerabilities π΄</strong><br><br><code>Four new CVEs present issues that have a potential DoS impact on almost every Linux user.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/four-cves-describe-sacks-of-linux-and-freebsd-vulnerabilities/d/d-id/1335030?_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="message5080">
<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="21.06.2019 15:29:39">
15:29
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2017-15694</strong><br><br><code>When an Apache Geode server versions 1.0.0 to 1.8.0 is operating in secure mode, a user with write permissions for specific data regions can modify internal cluster metadata. A malicious user could modify this data in a way that affects the operation of the cluster.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-15694">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5081">
<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="21.06.2019 15:51:17">
15:51
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Cyber-Risks Hiding Inside Mobile App Stores π΄</strong><br><br><code>As the number of blacklisted apps on Google Play continues to drop, attackers find new ways to compromise smartphones.</code><br><br><a href="https://www.darkreading.com/mobile/cyber-risks-hiding-inside-mobile-app-stores/d/d-id/1335031?_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="message5082">
<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="21.06.2019 16:42:11">
16:42
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Podcast: Dating App Privacy and NASA Cyberattack β</strong><br><br><code>The Threatpost team discusses the top news of the week - from a NASA cyberincident to dating app privacy issues.</code><br><br><a href="https://threatpost.com/podcast-dating-app-privacy-and-nasa-cyberattack/145902/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5083">
<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="21.06.2019 16:57:13">
16:57
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Microsoft Outlook for Android Open to XSS Attacks β</strong><br><br><code>A spoofing bug (CVE-2019-1105) can open the door to an email attack chain.</code><br><br><a href="https://threatpost.com/microsoft-outlook-android-xss/145924/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5084">
<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="21.06.2019 18:17:04">
18:17
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β MobOk Malware Hides in Photo Editors on Google Play, Siphons Cash β</strong><br><br><code>Pink Camera apps secretly signed users up for premium subscription services.</code><br><br><a href="https://threatpost.com/mobok-malware-google-photo-editor/145932/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5085">
<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="21.06.2019 19:49:12">
19:49
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π How to view your privacy settings for Microsoft Office 365 π</strong><br><br><code>You can and should review your privacy settings for Microsoft Office 365. Learn how in this step-by-step tutorial.</code><br><br><a href="https://www.techrepublic.com/article/how-to-view-your-privacy-settings-for-microsoft-office-365/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message service" id="message-251">
<div class="body details">
24 June 2019
</div>
</div>
<div class="message default clearfix" id="message5086">
<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="24.06.2019 05:53:45">
05:53
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Monday review β the hot 20 stories of the week β </strong><br><br><code>From Bella Thorne publishing her own nudes to the Yubikey recall - and everything in between. It's weekly roundup time.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/06/24/monday-review-the-hot-20-stories-of-the-week-45/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5087">
<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="24.06.2019 07:08:08">
07:08
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Facebook posts reveal your hidden illnesses, say researchers β </strong><br><br><code>The language we use could be indicators of disease and, with patient consent, could be monitored just like physical symptoms.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/06/24/facebook-posts-reveal-your-hidden-illnesses-say-researchers/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5088">
<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="24.06.2019 08:18:19">
08:18
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Desjardinsβ employee from hell spills 2.9m records β </strong><br><br><code>The leak, carried out by a since-fired rogue employee, affected 2.7 million people and 173,000 businesses - about 41% of its clientele.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/06/24/desjardins-employee-from-hell-spills-2-9m-records/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message5089">
<div class="body">
<div class="pull_right date details" title="24.06.2019 08:18:19">
08:18
</div>
<div class="text">
<strong>β Mobile apps riddled with high-risk vulnerabilities, warns report β </strong><br><br><code>Be careful before installing that mobile app on your iOS or Android device - many mobile applications are riddled with vulnerabilities.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/06/24/mobile-apps-riddled-with-high-risk-vulnerabilities-warns-report/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message5090">
<div class="body">
<div class="pull_right date details" title="24.06.2019 08:18:20">
08:18
</div>
<div class="text">
<strong>β Mozilla patched two Firefox zero-day flaws in one week β </strong><br><br><code>Two emergency zero days affecting a browser in one week counts as unusual - especially when they pop up as separate alerts two days apart.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/06/24/mozilla-patched-two-firefox-zero-day-flaws-in-one-week/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5091">
<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="24.06.2019 10:03:28">
10:03
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β The Modern-Day Heist: IP Theft Techniques That Enable Attackers β</strong><br><br><code>There's more than one way to get inside a company.</code><br><br><a href="https://threatpost.com/ip-theft-enables-attackers/145912/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5092">
<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="24.06.2019 10:57:32">
10:57
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Iran Targeting U.S. With Destructive Wipers, Warns DHS β</strong><br><br><code>The Department of Homeland Security is warning that U.S. agencies are being targeted by Iranian-backed cyberattacks with destructive wiper malware.</code><br><br><a href="https://threatpost.com/iran-targeting-u-s-with-destructive-wipers-warns-dhs/145950/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message5093">
<div class="body">
<div class="pull_right date details" title="24.06.2019 11:08:03">
11:08
</div>
<div class="text">
<strong>π΄ Never Trust, Always Verify: Demystifying Zero Trust to Secure Your Networks π΄</strong><br><br><code>The point of Zero Trust is not to make networks, clouds, or endpoints more trusted; it's to eliminate the concept of trust from digital systems altogether.</code><br><br><a href="https://www.darkreading.com/perimeter/never-trust-always-verify-demystifying-zero-trust-to-secure-your-networks/a/d-id/1334995?_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="message5094">
<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="24.06.2019 13:14:28">
13:14
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Why half of enterprises struggle to keep pace with cloud security π</strong><br><br><code>SaaS applications are supplanting traditional desktop software, and visibility into cloud workloads is a major problem, according to Symantec.</code><br><br><a href="https://www.techrepublic.com/article/why-half-of-enterprises-struggle-to-keep-pace-with-cloud-security/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5095">
<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="24.06.2019 15:07:22">
15:07
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Raspberry Pi Used in JPL Breach π΄</strong><br><br><code>NASA report shows exfiltration totaling more than 100 GB of information since 2009.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/raspberry-pi-used-in-jpl-breach/d/d-id/1335034?_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="message5096">
<div class="body">
<div class="pull_right date details" title="24.06.2019 15:12:05">
15:12
</div>
<div class="text">
<strong>π Preventing Tax Professional Data Theft Continues to Be a Challenge π</strong><br><br><code>A committee whose job is to oversee tax administration issues for the IRS says limitations at the agency are fostering cybersecurity risks.</code><br><br><a href="https://digitalguardian.com/blog/preventing-tax-professional-data-theft-continues-be-challenge-0">π Read</a><br><br>via "<em>Subscriber Blog RSS Feed</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message5097">
<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="24.06.2019 16:03:05">
16:03
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Facebook Faces Lawsuit Over Massive 2018 Data Breach β</strong><br><br><code>An attempt by Facebook to block a lawsuit, regarding a massive 2018 data breach, has been shot down.</code><br><br><a href="https://threatpost.com/facebook-faces-lawsuit-over-massive-2018-data-breach/145971/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message5098">
<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">