-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages9.html
25398 lines (15872 loc) Β· 841 KB
/
messages9.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="messages8.html">
Previous messages
</a>
<div class="message service" id="message-371">
<div class="body details">
13 November 2019
</div>
</div>
<div class="message default clearfix" id="message8076">
<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.11.2019 10:52:20">
10:52
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Five reasons healthcare data security is at Ebola crisis levels π</strong><br><br><code>Lots of PHI, low security, and multiple entry points make hospitals the perfect target for hackers and ransomware attacks are up 45% in Q3.</code><br><br><a href="https://www.techrepublic.com/article/five-reasons-healthcare-data-security-is-at-ebola-crisis-levels/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message8077">
<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.11.2019 12:22:47">
12:22
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Unreasonable Security Best Practices vs. Good Risk Management π΄</strong><br><br><code>Perfection is impossible, and pretending otherwise just makes things worse. Instead, make risk-based decisions.</code><br><br><a href="https://www.darkreading.com/risk/unreasonable-security-best-practices-vs-good-risk-management/a/d-id/1336271?_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="message8078">
<div class="body">
<div class="pull_right date details" title="13.11.2019 12:27:13">
12:27
</div>
<div class="text">
<strong>π How cybercriminals trick you into giving your information over the phone π</strong><br><br><code>IBM's Chief People Hacker Stephanie "Snow" Carruthers describes how criminals use caller ID spoofing to get your private data.</code><br><br><a href="https://www.techrepublic.com/article/how-cybercriminals-trick-you-into-giving-your-information-over-the-phone/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8079">
<div class="body">
<div class="pull_right date details" title="13.11.2019 12:27:13">
12:27
</div>
<div class="text">
<strong>π How to manage Siri privacy settings in iOS 13.2 π</strong><br><br><code>In iOS 13.2, you can opt out of Siri voice review requests and delete recording history from your Apple devices.</code><br><br><a href="https://www.techrepublic.com/article/how-to-manage-siri-privacy-settings-in-ios-13-2/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8080">
<div class="body">
<div class="pull_right date details" title="13.11.2019 12:33:12">
12:33
</div>
<div class="text">
<strong>β IoT Security Woes Plague Healthcare Industry β</strong><br><br><code>Hospitals and IoT device manufacturers must take a dual approach in securing connected telehealth devices.</code><br><br><a href="https://threatpost.com/iot-security-healthcare-industry/150157/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message8081">
<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.11.2019 12:48:20">
12:48
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2009-5046 (debian_linux, jetty)</strong><br><br><code>JSP Dump and Session Dump Servlet XSS in jetty before 6.1.22.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-5046">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8082">
<div class="body">
<div class="pull_right date details" title="13.11.2019 12:48:21">
12:48
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2009-5045 (debian_linux, jetty)</strong><br><br><code>Dump Servlet information leak in jetty before 6.1.22.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-5045">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message8083">
<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.11.2019 13:17:21">
13:17
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Cardplanet Operator Extradited for Facilitating Credit Card Fraud π΄</strong><br><br><code>Russian national Aleksei Burkov is charged with wire fraud, access device fraud, and conspiracy to commit identity theft, among other crimes.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/cardplanet-operator-extradited-for-facilitating-credit-card-fraud/d/d-id/1336344?_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="message8084">
<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.11.2019 14:01:19">
14:01
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΅ NordVPN launches NordLocker, a powerful file encryption app π΅</strong><br><br><br><a href="https://vpnpro.com/blog/nordvpn-launches-nordlocker-a-powerful-file-encryption-app/">π Read</a><br><br>via "<em>VPNpro</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message8085">
<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.11.2019 14:19:10">
14:19
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β November 2019 Patch Tuesday fixes 13 critical flaws and one zero day β </strong><br><br><code>Novemberβs Patch Tuesday arrived to plug 73 CVE-level vulnerabilities across Microsoftβs software products, including 13 'criticals'.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/11/13/november-2019-patch-tuesday-fixes-13-critical-flaws-and-one-zero-day/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8086">
<div class="body">
<div class="pull_right date details" title="13.11.2019 14:28:29">
14:28
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2010-2473 (drupal)</strong><br><br><code>Drupal 6.x before 6.16 and 5.x before version 5.22 does not properly block users under certain circumstances. A user with an open session that was blocked could maintain their session on the Drupal site despite being blocked.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2473">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8087">
<div class="body">
<div class="pull_right date details" title="13.11.2019 14:28:30">
14:28
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2010-2472 (drupal)</strong><br><br><code>Locale module and dependent contributed modules in Drupal 6.x before 6.16 and 5.x before version 5.22 do not sanitize the display of language codes, native and English language names properly which could allow an attacker to perform a cross-site scripting (XSS) attack. This vulnerability is mitigated by the fact that an attacker must have a role with the 'administer languages' permission.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2472">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8088">
<div class="body">
<div class="pull_right date details" title="13.11.2019 14:28:30">
14:28
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2010-2471 (debian_linux, drupal)</strong><br><br><code>drupal6 version 6.16 has open redirection</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2471">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message8089">
<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.11.2019 14:58:15">
14:58
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Googleβs Plan to Crunch Health Data on Millions of Patients Draws Fire β</strong><br><br><code>"Project Nightingale" is fully HIPAA-compliant, according to Google -- but researchers said they see big red flags for consumer data privacy.</code><br><br><a href="https://threatpost.com/googles-plan-to-crunch-health-data-on-millions-of-patients-draws-fire/150172/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8090">
<div class="body">
<div class="pull_right date details" title="13.11.2019 15:12:18">
15:12
</div>
<div class="text">
<strong>π΄ Breaches Are Inevitable, So Embrace the Chaos π΄</strong><br><br><code>Avoid sinking security with principles of shipbuilding known since the 15th century.</code><br><br><a href="https://www.darkreading.com/cloud/breaches-are-inevitable-so-embrace-the-chaos/a/d-id/1336286?_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="message8091">
<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.11.2019 16:28:17">
16:28
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2010-2450 (debian_linux, service_provider)</strong><br><br><code>The keygen.sh script in Shibboleth SP 2.0 (located in /usr/local/etc/shibboleth by default) uses OpenSSL to create a DES private key which is placed in sp-key.pm. It relies on the root umask (default 22) instead of chmoding the resulting file itself, so the generated private key is world readable by default.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2450">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8092">
<div class="body">
<div class="pull_right date details" title="13.11.2019 16:28:18">
16:28
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2007-6745 (clamav, debian_linux)</strong><br><br><code>clamav 0.91.2 suffers from a floating point exception when using ScanOLE2.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2007-6745">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8093">
<div class="body">
<div class="pull_right date details" title="13.11.2019 16:32:15">
16:32
</div>
<div class="text">
<strong>π΄ 2019 Trending as Worst Year on Record for Data Breaches π΄</strong><br><br><code>New Risk Based Security report shows data breaches up 33.3% over last year so far.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/2019-trending-as-worst-year-on-record-for-data-breaches/d/d-id/1336348?_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="message8094">
<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.11.2019 16:53:45">
16:53
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Insider Stole Billion Dollar Battery Trade Secrets π</strong><br><br><code>Yet another Chinese national - this time an employee at an Oklahoma petroleum company - has pleaded guilty to trade secret theft.</code><br><br><a href="https://digitalguardian.com/blog/insider-stole-billion-dollar-battery-trade-secrets">π Read</a><br><br>via "<em>Subscriber Blog RSS Feed</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message8095">
<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.11.2019 17:42:13">
17:42
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ The Ripple Effect of Data Breaches: How Damage Spreads π΄</strong><br><br><code>The financial loss from so-called 'ripple events' is thirteen times greater than the cost of single-party security incidents.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/the-ripple-effect-of-data-breaches-how-damage-spreads/d/d-id/1336351?_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="message8096">
<div class="body">
<div class="pull_right date details" title="13.11.2019 17:52:36">
17:52
</div>
<div class="text">
<strong>π Tracking endpoints and ensuring device security a vexing problem for healthcare CIOs π</strong><br><br><code>The consequences of security incidents in hospitals can be life-or-death, but security practices lag behind other industries.</code><br><br><a href="https://www.techrepublic.com/article/tracking-endpoints-and-ensuring-device-security-a-vexing-problem-for-healthcare-cios/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8097">
<div class="body">
<div class="pull_right date details" title="13.11.2019 18:07:17">
18:07
</div>
<div class="text">
<strong>π΄ Cybersecurity: An Organizationwide Responsibility π΄</strong><br><br><code>C-suite execs must set an example of good practices while also supporting the IT department with enough budget to protect the organization from next-generation cyberattacks.</code><br><br><a href="https://www.darkreading.com/cloud/cybersecurity-an-organizationwide-responsibility/a/d-id/1336314?_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="message8098">
<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.11.2019 18:28:38">
18:28
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2008-3278 (frysk)</strong><br><br><code>frysk packages through 2008-08-05 as shipped in Red Hat Enterprise Linux 5 are built with an insecure RPATH set in the ELF header of multiple binaries in /usr/bin/f* (e.g. fcore, fcatch, fstack, fstep, ...) shipped in the package. A local attacker can exploit this vulnerability by running arbitrary code as another user.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-3278">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message8099">
<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.11.2019 19:12:57">
19:12
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Well, Hello, Dolly! π΄</strong><br><br><code>Eight hours is certainly a start.</code><br><br><a href="https://www.darkreading.com/edge/theedge/well-hello-dolly!/b/d-id/1336354?_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="message8100">
<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.11.2019 19:28:27">
19:28
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Consumer Data Privacy Rights: Emerging Tech Blurs Lines β</strong><br><br><code>Data privacy is a fundamental right for Americans - but new emerging technologies like drone, IoT and facial recognition are introducing gray areas.</code><br><br><a href="https://threatpost.com/consumer-data-privacy-rights-emerging-tech/150181/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8101">
<div class="body">
<div class="pull_right date details" title="13.11.2019 19:37:43">
19:37
</div>
<div class="text">
<strong>π΄ Emerging Threats π΄</strong><br><br><br><br><a href="https://www.darkreading.com/emerging-threats/d/d-id/1334297?_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="message8102">
<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.11.2019 21:32:08">
21:32
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Self-Cleaning Payment Card-Skimmer Infects E-Commerce Sites π΄</strong><br><br><code>'Pipka' JavaScript skimmer has infected at least 16 e-commerce websites so far, according to Visa's Payment Fraud Disruption Group.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/self-cleaning-payment-card-skimmer-infects-e-commerce-sites/d/d-id/1336358?_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-372">
<div class="body details">
14 November 2019
</div>
</div>
<div class="message default clearfix" id="message8103">
<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="14.11.2019 07:53:13">
07:53
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Alleged mastermind behind $20m stolen-card site extradited to US β </strong><br><br><code>Aleksei Burkov allegedly ran Cardplanet, advertised as the only shop with a guarantee: your stolen card will work, or you get a new one!</code><br><br><a href="https://nakedsecurity.sophos.com/2019/11/14/alleged-mastermind-behind-20m-stolen-card-site-extradited-to-us/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8104">
<div class="body">
<div class="pull_right date details" title="14.11.2019 08:03:27">
08:03
</div>
<div class="text">
<strong>β Warrantless searches of devices at US borders ruled unconstitutional β </strong><br><br><code>The border is NOT a constitution-free zone, according to the ruling: No more suspicionless fishing expeditions into travelers' devices.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/11/14/warrantless-searches-of-devices-at-us-borders-ruled-unconstitutional/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8105">
<div class="body">
<div class="pull_right date details" title="14.11.2019 08:03:28">
08:03
</div>
<div class="text">
<strong>β Innovative PureLocker Ransomware Emerges in Targeted Attacks β</strong><br><br><code>PureLocker is an example of the sustained and continuing efforts ransomware threat actors are putting into malware development.</code><br><br><a href="https://threatpost.com/purelocker-ransomware-targeted-attacks/150229/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8106">
<div class="body">
<div class="pull_right date details" title="14.11.2019 08:13:18">
08:13
</div>
<div class="text">
<strong>β Facebook fixes iPhone camera bug β </strong><br><br><code>Facebook was quick to reassure iPhone users this week that it wasnβt secretly spying on them via its app, after someone found the software keeping the phoneβs rear camera active in the background.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/11/14/facebook-fixes-iphone-camera-bug/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message8107">
<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="14.11.2019 10:38:32">
10:38
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β ENFUSE 2019: Security Regulations, Insider Threats, and IoT Privacy Risks β</strong><br><br><code>Threatpost sits down with incident response expert Kevin Golas to discuss the top takeaways of ENFUSE 2019 this week.</code><br><br><a href="https://threatpost.com/enfuse-2019-security-regulations-insider-threats-and-iot-privacy-risks/150231/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message8108">
<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="14.11.2019 11:03:42">
11:03
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Download: The Comprehensive Compliance Guide β</strong><br><br><code>The Comprehensive Compliance Guide can help security leaders save time and resources from creating their own compliance evaluation methods.</code><br><br><a href="https://threatpost.com/download-the-comprehensive-compliance-guide/150180/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8109">
<div class="body">
<div class="pull_right date details" title="14.11.2019 11:03:43">
11:03
</div>
<div class="text">
<strong>β Threat Actor Impersonates USPS to Deliver Backdoor Malware β</strong><br><br><code>The campaign is consistent with emerging tactics from bad actors to use increasingly sophisticated social engineering and spoofing to deliver malware.</code><br><br><a href="https://threatpost.com/threat-actor-impersonates-usps-malware/150242/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8110">
<div class="body">
<div class="pull_right date details" title="14.11.2019 11:07:34">
11:07
</div>
<div class="text">
<strong>π How retail companies can better protect themselves against cyberattacks π</strong><br><br><code>The sector has been hit by more data breaches than any other this year as criminal groups devise more advanced hacking methods, says threat intelligence company IntSights.</code><br><br><a href="https://www.techrepublic.com/article/how-retail-companies-can-better-protect-themselves-against-cyberattacks/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message8111">
<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="14.11.2019 11:23:24">
11:23
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β S2 Ep17: Fake AirBnBs, lying ISPs and a glance at the cyberfuture β Naked Security Podcast β </strong><br><br><code>Listen now!</code><br><br><a href="https://nakedsecurity.sophos.com/2019/11/14/s2-ep17-fake-airbnbs-lying-isps-and-a-glance-at-the-cyberfuture-naked-security-podcast/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8112">
<div class="body">
<div class="pull_right date details" title="14.11.2019 11:28:49">
11:28
</div>
<div class="text">
<strong>β APT33 Mounts Focused, Highly Targeted Botnet Attacks Against U.S. Victims β</strong><br><br><code>The APT is using small botnets to take espionage aim at military and academic organizations.</code><br><br><a href="https://threatpost.com/apt33-mounts-targeted-botnet-attacks-us/150248/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message8113">
<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="14.11.2019 12:01:34">
12:01
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΅ How to watch Disney+ outside of the US π΅</strong><br><br><br><a href="https://vpnpro.com/guides-and-tutorials/how-to-watch-disney-plus/">π Read</a><br><br>via "<em>VPNpro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8114">
<div class="body">
<div class="pull_right date details" title="14.11.2019 12:01:35">
12:01
</div>
<div class="text">
<strong>π΅ How to watch The Mandalorian π΅</strong><br><br><br><a href="https://vpnpro.com/guides-and-tutorials/how-to-watch-the-mandalorian/">π Read</a><br><br>via "<em>VPNpro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message8115">
<div class="body">
<div class="pull_right date details" title="14.11.2019 12:01:36">
12:01
</div>
<div class="text">
<strong>π΅ Best VPN for Disney+ in 2019 π΅</strong><br><br><br><a href="https://vpnpro.com/best-vpn/disney-plus/">π Read</a><br><br>via "<em>VPNpro</em>".
</div>
</div>
</div>