-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages11.html
24902 lines (15558 loc) Β· 861 KB
/
messages11.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="messages10.html">
Previous messages
</a>
<div class="message service" id="message-457">
<div class="body details">
25 February 2020
</div>
</div>
<div class="message default clearfix" id="message10083">
<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="25.02.2020 19:09:10">
19:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ KnowBe4 At BlackHat π΄</strong><br><br><code>KnowBe4 at BlackHat</code><br><br><a href="https://www.darkreading.com/knowbe4-at-blackhat/d/d-id/1337135?_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="message10084">
<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="25.02.2020 19:28:07">
19:28
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π How to create a Linux user that cannot log in π</strong><br><br><code>For security reasons, you might need to create a Linux user without the ability to log in. Jack Wallen shows you how.</code><br><br><a href="https://www.techrepublic.com/article/how-to-create-a-linux-user-that-cannot-log-in/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10085">
<div class="body">
<div class="pull_right date details" title="25.02.2020 19:39:14">
19:39
</div>
<div class="text">
<strong>π΄ Report: Shadow IoT Emerging as New Enterprise Security Problem π΄</strong><br><br><code>Much of the traffic egressing enterprise networks are from poorly protected Internet-connected consumer devices, a Zscaler study finds.</code><br><br><a href="https://www.darkreading.com/iot/report-shadow-iot-emerging-as-new-enterprise-security-problem/d/d-id/1337144?_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="message10086">
<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="25.02.2020 20:02:11">
20:02
</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">
[CANAL] Merger <span class="details"> 21.02.2020 09:51:48</span>
</div>
<div class="text">
<a href="https://telegra.ph/file/f753a20db15ce4b7d49c6.jpg">ββ</a>π₯ AMAZING CHANNELS!! π₯
</div>
</div>
</div>
</div>
<div class="message service" id="message-458">
<div class="body details">
26 February 2020
</div>
</div>
<div class="message default clearfix" id="message10087">
<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="26.02.2020 08:36:10">
08:36
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Taking a GPS tracker off your car isnβt βtheft,β court rules β </strong><br><br><code>This line of thinking could get absurd, Indiana's supreme court declared. How do you "steal" something if you don't know who owns it?</code><br><br><a href="https://nakedsecurity.sophos.com/2020/02/26/taking-a-gps-tracker-off-your-car-isnt-theft-court-rules/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10088">
<div class="body">
<div class="pull_right date details" title="26.02.2020 08:36:11">
08:36
</div>
<div class="text">
<strong>β Switch to Signal for encrypted messaging, EC tells staff β </strong><br><br><code>Formerly preferred diplomatic app WhatsApp apparently isn't up to snuff.</code><br><br><a href="https://nakedsecurity.sophos.com/2020/02/26/switch-to-signal-for-encrypted-messaging-ec-tells-staff/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message10089">
<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="26.02.2020 10:10:16">
10:10
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Stalkerware Attacks Increased 50 Percent Last Year, Report β</strong><br><br><code>Research puts the emerging mobile threatβwhich monitors the whereabouts and device activity of devices users as well as collects personal dataβinto clearer focus.</code><br><br><a href="https://threatpost.com/stalkerware-attacks-increased-50-percent/153248/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message10090">
<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="26.02.2020 10:36:05">
10:36
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΅ How to change Netflix region π΅</strong><br><br><br><a href="https://vpnpro.com/guides-and-tutorials/how-to-change-netflix-region/">π Read</a><br><br>via "<em>VPNpro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10091">
<div class="body">
<div class="pull_right date details" title="26.02.2020 10:39:06">
10:39
</div>
<div class="text">
<strong>π΄ Cryptographers Panel Tackles Espionage, Elections & Blockchain π΄</strong><br><br><code>Encryption experts gave insights into the Crypto AG revelations, delved into complexities of the "right to be forgotten," and more at RSA Conference.</code><br><br><a href="https://www.darkreading.com/endpoint/cryptographers-panel-tackles-espionage-elections-and-blockchain/d/d-id/1337142?_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="message10092">
<div class="body">
<div class="pull_right date details" title="26.02.2020 10:39:07">
10:39
</div>
<div class="text">
<strong>π΄ Emotet Resurfaces to Drive 145% of Threats in Q4 2019 π΄</strong><br><br><code>Analysis of 92 billion rejected emails reveals a range of simple and complex attack techniques for the last quarter of 2019.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/emotet-resurfaces-to-drive-145--of-threats-in-q4-2019/d/d-id/1337147?_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="message10093">
<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="26.02.2020 11:11:19">
11:11
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Unpatched Security Flaws Open Connected Vacuum to Takeover β</strong><br><br><code>A connected, robotic vacuum cleaner has serious vulnerabilities that could allow remote hackers to view its video footage and launch denial of service attacks.</code><br><br><a href="https://threatpost.com/unpatched-security-flaws-open-connected-vacuum-to-takeover/153142/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10094">
<div class="body">
<div class="pull_right date details" title="26.02.2020 11:11:20">
11:11
</div>
<div class="text">
<strong>β Iranian APT Targets Govs With New Malware β</strong><br><br><code>A new campaign is targeting governments with the ForeLord malware, which steals credentials.</code><br><br><a href="https://threatpost.com/iranian-apt-targets-govs-with-new-malware/153162/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message10095">
<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="26.02.2020 12:09:25">
12:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ 5 Ways to Up Your Threat Management Game π΄</strong><br><br><code>Good security programs start with a mindset that it's not about the tools, it's what you do with them. Here's how to get out of a reactive fire-drill mode with vulnerability management.</code><br><br><a href="https://www.darkreading.com/5-ways-to-up-your-threat-management-game/a/d-id/1337087?_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="message10096">
<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="26.02.2020 12:39:11">
12:39
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Kr00k Wi-Fi Vulnerability Affected a Billion Devices π΄</strong><br><br><code>Routers and devices with Broadcom and Cypress Wi-Fi chipsets could be forced to sometimes use encryption keys consisting of all zeroes. Now patched, the issue affected a billion devices, including those from Amazon, Apple, Google, and Samsung.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/kr00k-wi-fi-vulnerability-affected-a-billion-devices/d/d-id/1337151?_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="message10097">
<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="26.02.2020 13:36:05">
13:36
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β LTE vulnerability allows impersonation of other mobile devices β </strong><br><br><code>Researchers have found a way to impersonate mobile devices on 4G and 5G mobile networks, and are calling on operators and standards bodies to fix the flaw that caused it.</code><br><br><a href="https://nakedsecurity.sophos.com/2020/02/26/lte-vulnerability-allows-impersonation-of-other-mobile-devices/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10098">
<div class="body">
<div class="pull_right date details" title="26.02.2020 13:36:06">
13:36
</div>
<div class="text">
<strong>β Appleβs iOS pasteboard leaks location data to spy apps β </strong><br><br><code>A developer has discovered that malicious apps could exploit the pasteboard to work out a userβs location.</code><br><br><a href="https://nakedsecurity.sophos.com/2020/02/26/apples-ios-pasteboard-leaks-location-data-to-spy-apps/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message10099">
<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="26.02.2020 14:39:22">
14:39
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Open Cybersecurity Alliance Releases New Language for Security Integration π΄</strong><br><br><code>OpenDXL Ontology is intended to allow security components to interoperate right out of the box.</code><br><br><a href="https://www.darkreading.com/open-cybersecurity-alliance-releases-new-language-for-security-integration/d/d-id/1337153?_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="message10100">
<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="26.02.2020 15:05:33">
15:05
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Hackers Cashing In On Healthcare Industry Security Weaknesses β</strong><br><br><code>Between ransomware attacks on healthcare devices, malware-laced βmedicalβ apps, and fraud services available on the dark net, attackers are pushing the boundaries on targeting healthcare.</code><br><br><a href="https://threatpost.com/hackers-cashing-in-on-healthcare-industry-security-weaknesses/153238/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message10101">
<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="26.02.2020 16:09:09">
16:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Next-Gen SOC Is On Its Way and Here's What It Should Contain π΄</strong><br><br><code>The next-gen-SOC starts with the next-gen SIEM, and Jason Mical of Devo Technology and Kevin Golas from OpenText talk about what capabilities are required, including threat hunting and greater automation, and how security professionals should exploit the tools.</code><br><br><a href="https://www.darkreading.com/next-gen-soc-is-on-its-way-and-heres-what-it-should-contain/d/d-id/1337157?_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="message10102">
<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="26.02.2020 16:39:08">
16:39
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Commonsense Security: Leveraging Dialogue & Collaboration for Better Decisions π΄</strong><br><br><code>Sometimes, good old-fashioned tools can help an enterprise create a cost-effective risk management strategy.</code><br><br><a href="https://www.darkreading.com/risk/commonsense-security-leveraging-dialogue-and-collaboration-for-better-decisions/a/d-id/1337089?_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="message10103">
<div class="body">
<div class="pull_right date details" title="26.02.2020 16:39:09">
16:39
</div>
<div class="text">
<strong>π΄ How to Prevent an AWS Cloud Bucket Data Leak π΄</strong><br><br><code>Misconfigured AWS buckets have led to huge data breaches. Following a handful of practices will help keep you from becoming the next news story.</code><br><br><a href="https://www.darkreading.com/application-security/database-security/how-to-prevent-an-aws-cloud-bucket-data-leak--/d/d-id/1337093?_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="message10104">
<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="26.02.2020 16:58:01">
16:58
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2019-17032</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was in a CNA pool that was not assigned to any issues during 2019. Notes: none.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-17032">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10105">
<div class="body">
<div class="pull_right date details" title="26.02.2020 16:58:02">
16:58
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2019-17031</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was in a CNA pool that was not assigned to any issues during 2019. Notes: none.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-17031">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10106">
<div class="body">
<div class="pull_right date details" title="26.02.2020 16:58:03">
16:58
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2019-17030</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was in a CNA pool that was not assigned to any issues during 2019. Notes: none.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-17030">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10107">
<div class="body">
<div class="pull_right date details" title="26.02.2020 16:58:04">
16:58
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2019-17029</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was in a CNA pool that was not assigned to any issues during 2019. Notes: none.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-17029">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10108">
<div class="body">
<div class="pull_right date details" title="26.02.2020 16:58:05">
16:58
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2019-17028</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was in a CNA pool that was not assigned to any issues during 2019. Notes: none.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-17028">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10109">
<div class="body">
<div class="pull_right date details" title="26.02.2020 16:58:09">
16:58
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2019-17027</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was in a CNA pool that was not assigned to any issues during 2019. Notes: none.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-17027">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message10110">
<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="26.02.2020 17:39:03">
17:39
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Elastic Security Makes Case For Blending 'Human Element,' Election Security π΄</strong><br><br><code>Nate Fick, general manager of Elastic and former CEO of Endgame, talks about the impact of AI and machine learning on security professionals, and how what technologies can be tapped to improve security in the runup to November's election.</code><br><br><a href="https://www.darkreading.com/elastic-security-makes-case-for-blending-human-element-election-security/d/d-id/1337160?_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="message10111">
<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="26.02.2020 18:28:08">
18:28
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π RSA: What it's like to attend the first tech conference after the coronavirus epidemic π</strong><br><br><code>San Francisco is the site of the RSA 2020 conference, which took place despite cancellations from IBM, Verizon and AT&T.</code><br><br><a href="https://www.techrepublic.com/article/rsa-what-its-like-to-attend-the-first-tech-conference-after-the-coronavirus-epidemic/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10112">
<div class="body">
<div class="pull_right date details" title="26.02.2020 18:39:11">
18:39
</div>
<div class="text">
<strong>π΄ Sophos Boosts Threat Hunting, Managed Detection and Response Capabilities π΄</strong><br><br><code>JJ Thompson, senior director of managed threat response for Sophos digs deep into how organizations can start to make sense of the seemingly unlimited data that's available from endpoints, cloud, and on-premises networks. And that's a critical capability as attacker behaviors start to change.</code><br><br><a href="https://www.darkreading.com/sophos-boosts-threat-hunting-managed-detection-and-response-capabilities/d/d-id/1337162?_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="message10113">
<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="26.02.2020 19:09:27">
19:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ US State Dept. Shares Insider Tips to Fight Insider Threats π΄</strong><br><br><code>The insider threat is a technology, security, and personnel issue, officials said in explaining an approach that addresses all three factors.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/us-state-dept-shares-insider-tips-to-fight-insider-threats/d/d-id/1337163?_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="message10114">
<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="26.02.2020 19:39:20">
19:39
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ How Should I Answer a Nontech Exec Who Asks, 'How Secure Are We?' π΄</strong><br><br><code>Consider this your opportunity to educate.</code><br><br><a href="https://www.darkreading.com/edge/theedge/how-should-i-answer-a-nontech-exec-who-asks-how-secure-are-we/b/d-id/1337167?_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="message10115">
<div class="body">
<div class="pull_right date details" title="26.02.2020 19:42:02">
19:42
</div>
<div class="text">
<strong>β RSAC 2020: Lack of Machine Learning Laws Open Doors To Attacks β</strong><br><br><code>When it comes to machine learning, research and cybercriminal activity is full speed ahead - but legal policy has not yet caught up.</code><br><br><a href="https://threatpost.com/rsac-2020-lack-of-machine-learning-laws-open-doors-to-attacks/153259/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message10116">
<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="26.02.2020 20:09:27">
20:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Tufin: How to Make Better Sense of the Cloud Security Equation π΄</strong><br><br><code>CEO Reuven Harrison examines how cloud services have changed how enterprises manage their apps and data, and also offers some tips for security pros tasked with managing either hybrid- or multi-cloud implementations. Harrison also takes on Kubernetes and container security in this News Desk interview.</code><br><br><a href="https://www.darkreading.com/tufin-how-to-make-better-sense-of-the-cloud-security-equation/d/d-id/1337165?_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="message10117">
<div class="body">
<div class="pull_right date details" title="26.02.2020 20:19:16">
20:19
</div>
<div class="text">
<strong>π Digital Guardian Wins Best Data Loss Prevention (DLP) Solution at SC Awards 2020! π</strong><br><br><code>We're thrilled to share that Digital Guardian won the Best Data Loss Prevention (DLP) Solution at the 2020 SC Trust Awards at RSA Conference!</code><br><br><a href="https://digitalguardian.com/blog/digital-guardian-wins-best-data-loss-prevention-dlp-solution-sc-awards-2020">π Read</a><br><br>via "<em>Subscriber Blog RSS Feed</em> ".
</div>
</div>
</div>
<div class="message service" id="message-459">
<div class="body details">
27 February 2020
</div>
</div>
<div class="message default clearfix" id="message10118">
<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="27.02.2020 01:34:21">
01:34
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β RSAC 2020: Smart Baby Monitor Vulnerable to Remote Hackers β</strong><br><br><code>A popular baby monitor has been found riddled with vulnerabilities that give attackers full access to personal information and sensitive video footage.</code><br><br><a href="https://threatpost.com/rsac-2020-another-smart-baby-monitor-vulnerable-to-remote-hackers/153272/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message10119">
<div class="body">