-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages4.html
25598 lines (15997 loc) Β· 868 KB
/
messages4.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="messages3.html">
Previous messages
</a>
<div class="message service" id="message-164">
<div class="body details">
12 March 2019
</div>
</div>
<div class="message default clearfix" id="message3065">
<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="12.03.2019 15:35:23">
15:35
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ 5 Essentials for Securing and Managing Windows 10 π΄</strong><br><br><code>It's possible to intelligently deploy and utilize Windows 10's many security enhancements while avoiding common and costly migration pitfalls.</code><br><br><a href="https://www.darkreading.com/application-security/5-essentials-for-securing-and-managing-windows-10/a/d-id/1334078?_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="message3066">
<div class="body">
<div class="pull_right date details" title="12.03.2019 15:35:24">
15:35
</div>
<div class="text">
<strong>π΄ It Takes an Average of 3 to 6 Months to Fill a Cybersecurity Job π΄</strong><br><br><code>Meanwhile, organizations are looking at nonconventional ways to staff up and train their workforce as technical expertise gets even harder to find.</code><br><br><a href="https://www.darkreading.com/cloud/it-takes-an-average-of-3-to-6-months-to-fill-a-cybersecurity-job/d/d-id/1334135?_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="message3067">
<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="12.03.2019 16:31:37">
16:31
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Box Mistakes Leave Enterprise Data Exposed π΄</strong><br><br><code>User errors in enterprise Box accounts have left hundreds of thousands of sensitive documents exposed to thieves and peeping toms.</code><br><br><a href="https://www.darkreading.com/cloud/box-mistakes-leave-enterprise-data-exposed/d/d-id/1334137?_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="message3068">
<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="12.03.2019 16:50:37">
16:50
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β ThreatList: Phishing Attacks Doubled in 2018 β</strong><br><br><code>Scammers used both older, tested-and-true phishing tactics in 2018 - but also newer tricks, such as fresh distribution methods, according to a new report.</code><br><br><a href="https://threatpost.com/threatlist-phishing-attacks-doubled-in-2018/142732/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message3069">
<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="12.03.2019 18:01:14">
18:01
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Microsoft Patches Two Win32k Bugs Under Active Attack β</strong><br><br><code>Microsoft's March Patch Tuesday updates include 64 fixes, 17 of which are rated critical.</code><br><br><a href="https://threatpost.com/microsoft-patches-two-win32k-bugs-under-active-attack/142742/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message3070">
<div class="body">
<div class="pull_right date details" title="12.03.2019 18:05:39">
18:05
</div>
<div class="text">
<strong>π΄ How the Best DevSecOps Teams Make Risk Visible to Developers π΄</strong><br><br><code>DevOps-minded CISOs say enterprise security teams need to do a better job scoring and visualizing risk for developers and business executives.</code><br><br><a href="https://www.darkreading.com/application-security/how-the-best-devsecops-teams-make-risk-visible-to-developers/d/d-id/1334138?_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="message3071">
<div class="body">
<div class="pull_right date details" title="12.03.2019 18:15:39">
18:15
</div>
<div class="text">
<strong>β Federal Focus on Cyber Plays Out in Presidentβs Budget, IoT Legislation β</strong><br><br><code>Money earmarked for the Defense Department and DHS, and bipartisan bills to address the security of federal IoT devices, showcase growing federal cyber-efforts.</code><br><br><a href="https://threatpost.com/federal-cyber-budget-iot-legislation/142744/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message3072">
<div class="body">
<div class="pull_right date details" title="12.03.2019 18:20:07">
18:20
</div>
<div class="text">
<strong>π΄ Microsoft Patch Tuesday: 64 Vulnerabilities Patched, 2 Under Attack π΄</strong><br><br><code>Seventeen vulnerabilities patches today are rated critical, four are publicly known, and two have been exploited in the wild.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/microsoft-patch-tuesday-64-vulnerabilities-patched-2-under-attack/d/d-id/1334141?_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="message3073">
<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="12.03.2019 19:00:45">
19:00
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Citrix Breach Underscores Password Perils π΄</strong><br><br><code>Attackers used a short list of passwords to knock on every digital door to find vulnerable systems in the vendor's network.</code><br><br><a href="https://www.darkreading.com/application-security/citrix-breach-underscores-password-perils/d/d-id/1334139?_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="message3074">
<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="12.03.2019 19:25:08">
19:25
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Web Apps are Becoming Less Secure π΄</strong><br><br><code>Critical vulnerabilities in web applications tripled in 2018, according to a new study.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/web-apps-are-becoming-less-secure/d/d-id/1334143?_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="message3075">
<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="12.03.2019 21:35:26">
21:35
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ There May be A Ceiling on Vulnerability Remediation π΄</strong><br><br><code>Most organizations are doing all they can to keep up with the release of vulnerabilities, new research shows.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/there-may-be-a-ceiling-on-vulnerability-remediation/d/d-id/1334142?_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-165">
<div class="body details">
13 March 2019
</div>
</div>
<div class="message default clearfix" id="message3076">
<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.03.2019 07:55:22">
07:55
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β New bill would give parents an βEraser Buttonβ to delete kidsβ data β </strong><br><br><code>The COPPA overhaul would ban targeting ads at kids under 13 and ad targeting based on race, socioeconomics or geolocation on kids under 15.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/03/13/new-bill-would-give-parents-an-eraser-button-to-delete-kids-data/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message3077">
<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.03.2019 09:02:51">
09:02
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<b>&#9881;&#65039; Judging Facebook's Privacy Shift &#9881;&#65039;</b><br><br><code>Facebook is making a new and stronger commitment to privacy. Last month, the company hired three of its most vociferous critics and installed them in senior technical positions. And on Wednesday, Mark Zuckerberg wrote that the company will pivot to focus on private conversations over the public sharing that has long defined the platform, even while conceding that "frankly we don't currently have a strong reputation for building privacy protective services."</code><code>There is ample reason to question Zuckerberg's pronouncement: The company has made -- and broken -- many privacy promises over the years. And if you read his 3,000-word post carefully, Zuckerberg says nothing about changing Facebook's surveillance capitalism business model. All the post discusses is making private chats more central to the company, which seems to be a play for increased market dominance and to counter the Chinese company WeChat.</code><code>In security and privacy, the devil is always in the details -- and Zuckerberg's post provides none. But we'll take him at his word and try to fill in some of the details here. What follows is a list of changes we should expect if Facebook is serious about changing its business model and improving user privacy.</code><code>How Facebook treats people on its platform</code><code>Increased transparency over advertiser and app accesses to user data. Today, Facebook users can download and view much of the data the company has about them. This is important, but it doesn't go far enough. The company could be more transparent about what data it shares with advertisers and others and how it allows advertisers to select users they show ads to. Facebook could use its substantial skills in usability testing to help people understand the mechanisms advertisers use to show them ads or the reasoning behind what it chooses to show in user timelines. It could deliver on promises in this area.</code><code>Better -- and more usable -- privacy options. Facebook users have limited control over how their data is shared with other Facebook users and almost no control over how it is shared with Facebook's advertisers, which are the company's real customers. Moreover, the controls are buried deep behind complex and confusing menu options. To be fair, some of this is because privacy is complex, and it's hard to understand the results of different options. But much of this is deliberate; Facebook doesn't want its users to make their data private from other users.</code><code>The company could give people better control over how -- and whether -- their data is used, shared, and sold. For example, it could allow users to turn off individually targeted news and advertising. By this, we don't mean simply making those advertisements invisible; we mean turning off the data flows into those tailoring systems. Finally, since most users stick to the default options when it comes to configuring their apps, a changing Facebook could tilt those defaults toward more privacy, requiring less tailoring most of the time.</code><code>More user protection from stalking. "Facebook stalking" is often thought of as "stalking light," or "harmless." But stalkers are rarely harmless. Facebook should acknowledge this class of misuse and work with experts to build tools that protect all of its users, especially its most vulnerable ones. Such tools should guide normal people away from creepiness and give victims power and flexibility to enlist aid from sources ranging from advocates to police.</code><code>Fully ending real-name enforcement. Facebook's real-names policy, requiring people to use their actual legal names on the platform, hurts people such as activists, victims of intimate partner violence, police officers whose work makes them targets, and anyone with a public persona who wishes to have control over how they identify to the public. There are many ways Facebook can improveβ¦
</div>
</div>
</div>
<div class="message default clearfix" id="message3078">
<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.03.2019 09:33:28">
09:33
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Misconfigured Box accounts leak terabytes of companiesβ sensitive data β </strong><br><br><code>Easily guessable URLs led to what should have been big companies' very private data. Even Box itself was found to be exposing folders.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/03/13/misconfigured-box-accounts-leak-terabytes-of-companies-sensitive-data/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message3079">
<div class="body">
<div class="pull_right date details" title="13.03.2019 09:48:09">
09:48
</div>
<div class="text">
<strong>β βFINAL WARNINGβ email β have they really hacked your webcam? β </strong><br><br><code>In the last 24 hours, SophosLabs received 1,700 samples of just one new sextortion campaign. Good news? It's all a pack of lies. Don't reply. Don't engage.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/03/13/final-warning-email-have-they-really-hacked-your-webcam/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message3080">
<div class="body">
<div class="pull_right date details" title="13.03.2019 09:48:10">
09:48
</div>
<div class="text">
<strong>β Update now! WordPress abandoned cart plugin under attack β </strong><br><br><code>Hackers have been spotted targeting websites running unpatched versions of the WordPress plugin Abandoned Cart for WooCommerce.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/03/13/update-now-wordpress-abandoned-cart-plugin-under-attack/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message3081">
<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.03.2019 10:13:36">
10:13
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π How to secure IoT devices: 6 factors to consider π</strong><br><br><code>While Internet of Things devices can unlock great insights and value from the data collected, cybersecurity must be built in from the start, according to a report from the Indiana IoT Lab.</code><br><br><a href="https://www.techrepublic.com/article/how-to-secure-iot-devices-6-factors-to-consider/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message3082">
<div class="body">
<div class="pull_right date details" title="13.03.2019 10:23:25">
10:23
</div>
<div class="text">
<strong>β Chrome will soon block drive-by-download malvertising β </strong><br><br><code>A new Chrome feature hopes to choke off one of the most malicious forms of malware infection: drive-by advertising downloads.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/03/13/chrome-will-soon-block-drive-by-download-malvertising/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message3083">
<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.03.2019 11:04:20">
11:04
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π How to wipe your USB drive before throwing it away π</strong><br><br><code>Data was found on 68% of secondhand flash drives sold in the US, according to a Comparitech report. Here's how to secure your data for disposal.</code><br><br><a href="https://www.techrepublic.com/article/how-to-wipe-your-usb-drive-before-throwing-it-away/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message3084">
<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.03.2019 11:20:45">
11:20
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Threat Groups SandCat, FruityArmor Exploiting Microsoft Win32k Flaw β</strong><br><br><code>Newly patched CVE-2019-0797 is being actively exploited by two APTs, FruityArmor and SandCat.</code><br><br><a href="https://threatpost.com/sandcat-fruityarmor-exploiting-microsoft-win32k/142751/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message3085">
<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.03.2019 11:41:14">
11:41
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ The Case for Transparency in End-User License Agreements π΄</strong><br><br><code>Why it behooves technology companies to consider EULAs as an opportunity to accurately inform customers about privacy issues and other important information.</code><br><br><a href="https://www.darkreading.com/endpoint/the-case-for-transparency-in-end-user-license-agreements/a/d-id/1334106?_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="message3086">
<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.03.2019 12:30:56">
12:30
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Three Ways DNS is Weaponized and How to Mitigate the Risk β</strong><br><br><code>Why are hackers using the DNS infrastructure against us? The answer is more complex than you might think.</code><br><br><a href="https://threatpost.com/three-ways-dns-is-weaponized-and-how-to-mitigate-the-risk/142759/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message3087">
<div class="body">
<div class="pull_right date details" title="13.03.2019 12:38:30">
12:38
</div>
<div class="text">
<strong>π How to generate SSH keys on macOS Mojave π</strong><br><br><code>macOS is capable of working with SSH keys. Jack Wallen shows you how to generate the necessary keys and copy them to a server.</code><br><br><a href="https://www.techrepublic.com/article/how-to-generate-ssh-keys-on-macos-mojave/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message3088">
<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.03.2019 13:05:54">
13:05
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β MAGA βSafe Spaceβ App Developer Threatens Security Researcher β</strong><br><br><code>The mobile app, dubbed a "Yelp for Conservatives," was found with an open API leaking reams of user data.</code><br><br><a href="https://threatpost.com/maga-safe-space-app-data-leak/142771/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message3089">
<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.03.2019 15:19:47">
15:19
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2018-17937</strong><br><br><code>gpsd versions 2.90 to 3.17 and microjson versions 1.0 to 1.3, an open source project, allow a stack-based buffer overflow, which may allow remote attackers to execute arbitrary code on embedded platforms via traffic on Port 2947/TCP or crafted JSON inputs.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-17937">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message3090">
<div class="body">
<div class="pull_right date details" title="13.03.2019 15:19:48">
15:19
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2015-2254</strong><br><br><code>Huawei OceanStor UDS devices with software before V100R002C01SPC102 might allow remote attackers to capture and change patch loading information resulting in the deletion of directory files and compromise of system functions when loading a patch.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-2254">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message3091">
<div class="body">
<div class="pull_right date details" title="13.03.2019 15:30:49">
15:30
</div>
<div class="text">
<strong>β Intel Windows 10 Graphics Drivers Riddled With Flaws β</strong><br><br><code>Intel has patched several high-severity vulnerabilities in its graphics drivers for Windows 10, which could lead to code code execution.</code><br><br><a href="https://threatpost.com/intel-windows-10-graphics-drivers/142778/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message3092">
<div class="body">
<div class="pull_right date details" title="13.03.2019 15:31:46">
15:31
</div>
<div class="text">
<strong>π΄ 'SimBad': Android Adware Hits 210 Apps with 150M Downloads π΄</strong><br><br><code>Google has removed infected applications from the Google Play store after a form of adware potentially affected millions of users.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/simbad-android-adware-hits-210-apps-with-150m-downloads/d/d-id/1334145?_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="message3093">
<div class="body">
<div class="pull_right date details" title="13.03.2019 15:31:47">
15:31
</div>
<div class="text">
<strong>π΄ IoT Anomaly Detection 101: Data Science to Predict the Unexpected π΄</strong><br><br><code>Yes! You can predict the chance of a mechanical failure or security breach before it happens. Part one of a two-part series.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/iot-anomaly-detection-101-data-science-to-predict-the-unexpected-/a/d-id/1334090?_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="message3094">
<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.03.2019 16:01:44">
16:01
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Lawmakers See California Consumer Privacy Act As Basis for Federal Law π</strong><br><br><code>In a Senate Judiciary hearing on Tuesday, lawmakers discussed the impact of California Consumer Privacy Act and how the law should set the stage for a federal privacy bill.</code><br><br><a href="https://digitalguardian.com/blog/lawmakers-see-california-consumer-privacy-act-basis-federal-law">π Read</a><br><br>via "<em>Subscriber Blog RSS Feed</em> ".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message3095">
<div class="body">
<div class="pull_right date details" title="13.03.2019 16:02:09">
16:02
</div>
<div class="text">
<strong>π΄ Enterprise Cloud Infrastructure a Big Target for Cryptomining Attacks π΄</strong><br><br><code>Despite the declining values of cryptocurrencies, criminals continue to hammer away at container management platforms, cloud APIs, and control panels.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/enterprise-cloud-infrastructure-a-big-target-for-cryptomining-attacks/d/d-id/1334146?_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="message3096">
<div class="body">
<div class="pull_right date details" title="13.03.2019 16:16:47">
16:16
</div>
<div class="text">
<strong>π΄ GPS Spoof Hits Geneva Motor Show π΄</strong><br><br><code>Incident leaves GPS units showing a location in England and a date 17 years in the future.</code><br><br><a href="https://www.darkreading.com/iot/gps-spoof-hits-geneva-motor-show/d/d-id/1334147?_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="message3097">
<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.03.2019 16:50:27">
16:50
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Purveyor of Cracked Netflix, Hulu, Spotify Accounts Arrested β</strong><br><br><code>A Sydney man is accused of selling nearly 1 million compromised accounts, for a significant profit.</code><br><br><a href="https://threatpost.com/cracked-netflix-hulu-spotify-accounts-arrested/142791/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message3098">
<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.03.2019 18:11:16">
18:11
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Autism, Cybercrime, and Security's Skill Struggle π΄</strong><br><br><code>People on the autism spectrum often possess traits that could help them succeed in cybersecurity - providing they don't fall into cybercrime first.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/autism-cybercrime-and-securitys-skill-struggle/d/d-id/1334149?_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="message3099">
<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.03.2019 19:11:27">
19:11
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Three In Five Politicians' Websites Worldwide Don't Use HTTPS π΄</strong><br><br><code>Comparitech assessed the websites of more than 7,500 politicians in 37 countries and found 60.8% did not use valid SSL certificates.</code><br><br><a href="https://www.darkreading.com/three-in-five-politicians-websites-worldwide-dont-use-https/d/d-id/1334151?_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="message3100">
<div class="body">
<div class="pull_right date details" title="13.03.2019 19:16:41">
19:16
</div>
<div class="text">
<strong>π΄ Three In Five Politicians' Websites Worldwide Don't Use HTTPS π΄</strong><br><br><code>Comparitech assessed the websites of more than 7,500 politicians in 37 countries and found 60.8% did not use valid SSL certificates.</code><br><br><a href="https://www.darkreading.com/three-in-five-politicians-websites-dont-use-https/d/d-id/1334151?_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="message3101">
<div class="body">
<div class="pull_right date details" title="13.03.2019 19:24:14">
19:24
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2018-0389</strong><br><br><code>A vulnerability in the implementation of Session Initiation Protocol (SIP) processing in Cisco Small Business SPA514G IP Phones could allow an unauthenticated, remote attacker to cause an affected device to become unresponsive, resulting in a denial of service (DoS) condition. The vulnerability is due to improper processing of SIP request messages by an affected device. An attacker could exploit this vulnerability by sending crafted SIP messages to an affected device. A successful exploit could allow the attacker to cause the affected device to become unresponsive, resulting in a DoS condition that persists until the device is restarted manually. Cisco has not released software updates that address this vulnerability. This vulnerability affects Cisco Small Business SPA514G IP Phones that are running firmware release 7.6.2SR2 or earlier.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-0389">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message3102">
<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">