-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages8.html
24158 lines (15097 loc) Β· 808 KB
/
messages8.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="messages7.html">
Previous messages
</a>
<div class="message service" id="message-334">
<div class="body details">
27 September 2019
</div>
</div>
<div class="message default clearfix" id="message7072">
<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.09.2019 10:04:45">
10:04
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Hybrid cloud setup offers relief to some companies while others are still fearful π</strong><br><br><code>TechRepublic's Karen Roby discusses the findings of a recent FileCloud study concerning enterprise cloud and data issues.</code><br><br><a href="https://www.techrepublic.com/article/hybrid-cloud-setup-offers-relief-to-some-companies-while-others-are-still-fearful/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message7073">
<div class="body">
<div class="pull_right date details" title="27.09.2019 10:17:07">
10:17
</div>
<div class="text">
<strong>β Apple users, patch now! The βbug that got awayβ has been fixed β </strong><br><br><code>Apple has now patched the patch that Google said didn't patch the hole it was supposed to.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/09/27/apple-users-patch-now-the-bug-that-got-away-has-been-fixed/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message7074">
<div class="body">
<div class="pull_right date details" title="27.09.2019 10:22:14">
10:22
</div>
<div class="text">
<strong>β βFleecewareβ Play store apps quietly charging up to $250 β </strong><br><br><code>SophosLabs researchers discovered at least 15 apps with millions of downloads charging extraordinary prices right under the Google's nose.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/09/27/fleeceware-play-store-apps-quietly-charging-up-to-250/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7075">
<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.09.2019 11:13:09">
11:13
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Is Your Organization Suffering from Security Tool Sprawl? π΄</strong><br><br><code>Most companies have too many tools, causing increased costs and security issues.</code><br><br><a href="https://www.darkreading.com/cloud/is-your-organization-suffering-from-security-tool-sprawl/a/d-id/1335868?_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="message7076">
<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.09.2019 11:31:34">
11:31
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2014-10396 (epic)</strong><br><br><code>The epic theme through 2014-09-07 for WordPress allows arbitrary file downloads via the file parameter to includes/download.php.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-10396">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message7077">
<div class="body">
<div class="pull_right date details" title="27.09.2019 11:38:40">
11:38
</div>
<div class="text">
<strong>π΄ DoorDash Breach Affects 4.9M Merchants, Customers, Workers π΄</strong><br><br><code>The May 4 incident exposed data belonging to users on the platform on or before April 5, 2018.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/doordash-breach-affects-49m-merchants-customers-workers/d/d-id/1335938?_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="message7078">
<div class="body">
<div class="pull_right date details" title="27.09.2019 11:49:51">
11:49
</div>
<div class="text">
<strong>β Microsoft Blacklists Dozens of New File Extensions in Outlook β</strong><br><br><code>In total, Microsoft has now blocked 142 file extensions that it deems as at risk or that are typically sent as malicious attachments in emails.</code><br><br><a href="https://threatpost.com/microsoft-blacklists-dozens-of-new-file-extensions-in-outlook/148737/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message7079">
<div class="body">
<div class="pull_right date details" title="27.09.2019 11:49:52">
11:49
</div>
<div class="text">
<strong>β Arcane Stealer V Takes Aim at the Low End of the Dark Web β</strong><br><br><code>This data-harvesting tool is perfect for the deep well of low-skilled adversaries looking to make their cybercrime mark.</code><br><br><a href="https://threatpost.com/arcane-stealer-low-end-dark-web/148741/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7080">
<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.09.2019 12:29:02">
12:29
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Dunkinβ Donuts Gets Hit with Lawsuit Over 2015 Attack β</strong><br><br><code>Lawsuit alleges Dunkin' Donuts failed to act fast enough to notify and protect customers and is in violation of New York State data breach notification laws.</code><br><br><a href="https://threatpost.com/dunkin-donuts-lawsuit/148750/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7081">
<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.09.2019 14:12:20">
14:12
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Friday Five: 9/27 Edition π</strong><br><br><code>Vulnerable webcams, news on DHS' FISMA ratings, and a bug in vBulletin - catch up on the week's news with the Friday Five!</code><br><br><a href="https://digitalguardian.com/blog/friday-five-9/27-edition">π Read</a><br><br>via "<em>Subscriber Blog RSS Feed</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message7082">
<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.09.2019 14:28:31">
14:28
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Cybersecurity Certification in the Spotlight Again π΄</strong><br><br><code>Swiss technology non-profit group joins others, such as the Obama-era President's Commission, in recommending that certain classes of technology products be tested.</code><br><br><a href="https://www.darkreading.com/iot/cybersecurity-certification-in-the-spotlight-again-/d/d-id/1335940?_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="message7083">
<div class="body">
<div class="pull_right date details" title="27.09.2019 14:34:57">
14:34
</div>
<div class="text">
<strong>β Masad Spyware Uses Telegram Bots for Command-and-Control β</strong><br><br><code>The malware harvests data, steals cryptocurrency and drops additional malware, while masquerading as a Fortnite aimbot and more.</code><br><br><a href="https://threatpost.com/masad-spyware-telegram-bots/148759/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7084">
<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.09.2019 15:08:21">
15:08
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Apple Patches Multiple Vulnerabilities Across Platforms π΄</strong><br><br><code>Updates address two separate issues in Apple's desktop and mobile operating systems.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/apple-patches-multiple-vulnerabilities-across-platforms/d/d-id/1335941?_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="message7085">
<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.09.2019 15:59:31">
15:59
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β iOS Exploit βCheckm8β Could Allow Permanent iPhone Jailbreaks β</strong><br><br><code>A new BootROM exploit - which is unpatchable - potentially opens the door to jailbreaks, a researcher said.</code><br><br><a href="https://threatpost.com/ios-exploit-checkm8-could-allow-permanent-iphone-jailbreaks/148762/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7086">
<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.09.2019 16:23:12">
16:23
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Cloud Vulnerability Could Let One Server Compromise Thousands π΄</strong><br><br><code>A flaw in the OnApp cloud management platform could let an attacker compromise a private cloud with access to a single server.</code><br><br><a href="https://www.darkreading.com/cloud/cloud-vulnerability-could-let-one-server-compromise-thousands/d/d-id/1335943?_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="message7087">
<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.09.2019 17:34:09">
17:34
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π How to install and use the Cryptomator encryption tool π</strong><br><br><code>Looking for a user-friendly encryption tool? Look no further than the open source Cryptomator.</code><br><br><a href="https://www.techrepublic.com/videos/how-to-install-and-use-the-cryptomator-encryption-tool/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message7088">
<div class="body">
<div class="pull_right date details" title="27.09.2019 17:34:10">
17:34
</div>
<div class="text">
<strong>π How to install and use the Cryptomator encryption tool π</strong><br><br><code>Looking for a user-friendly encryption tool? Look no further than the open source Cryptomator.</code><br><br><a href="https://www.techrepublic.com/article/how-to-install-and-use-the-cryptomator-encryption-tool/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message7089">
<div class="body">
<div class="pull_right date details" title="27.09.2019 17:34:11">
17:34
</div>
<div class="text">
<strong>π Why smart home devices may be an open invitation to hackers π</strong><br><br><code>Recent breaches in Americans smart home systems have raised the level of concern with IoT devices.</code><br><br><a href="https://www.techrepublic.com/article/why-smart-home-devices-may-be-an-open-invitation-to-hackers/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message service" id="message-335">
<div class="body details">
28 September 2019
</div>
</div>
<div class="message default clearfix" id="message7090">
<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="28.09.2019 09:08:27">
09:08
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ The Etiquette of Respecting Privacy in the Age of IoT π΄</strong><br><br><code>Is it rude to ask someone to shut off their Alexa? Ask the family who's written the book on etiquette for nearly 100 years -- the descendants of Emily Post herself.</code><br><br><a href="https://www.darkreading.com/edge/theedge/the-etiquette-of-respecting-privacy-in-the-age-of-iot/b/d-id/1335939?_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="message7091">
<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="28.09.2019 10:58:07">
10:58
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Best Practices π΄</strong><br><br><br><br><a href="https://www.darkreading.com/best-practices/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 service" id="message-336">
<div class="body details">
30 September 2019
</div>
</div>
<div class="message default clearfix" id="message7092">
<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="30.09.2019 06:53:08">
06:53
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Monday review β the hot 24 stories of the week β </strong><br><br><code>From the fleeceware apps ripping off consumers to Microsoft's emergency IE patch - and everything in between. It's weekly roundup time.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/09/30/monday-review-the-hot-24-stories-of-the-week-29/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7093">
<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="30.09.2019 07:28:25">
07:28
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Is the era of social media Likes over? β </strong><br><br><code>Instagram's testing a program to hide the Likes that have created a toxic cyberbullying environment. Now, Facebook is as well.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/09/30/is-the-era-of-social-media-likes-over/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7094">
<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="30.09.2019 08:58:15">
08:58
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Outlook on the web bans a further 38 file types β </strong><br><br><code>Outlook on the web bans a further 38 file types</code><br><br><a href="https://nakedsecurity.sophos.com/2019/09/30/outlook-on-the-web-bans-a-further-38-file-types/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7095">
<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="30.09.2019 09:21:43">
09:21
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Most Fortune 500 companies still opaque about security measures π</strong><br><br><code>A Bitglass survey said 52% of the world's most profitable companies do not have any language on their websites about how they protect the data of customers.</code><br><br><a href="https://www.techrepublic.com/article/most-fortune-500-companies-still-opaque-about-security-measures/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7096">
<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="30.09.2019 10:13:12">
10:13
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Social media manipulation as a political tool is spreading β </strong><br><br><code>Researchers say 'cyber troops' in 70 countries are using it to automate suppression, mount smear campaigns, or spread disinformation.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/09/30/social-media-manipulation-as-a-political-tool-is-spreading/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message7097">
<div class="body">
<div class="pull_right date details" title="30.09.2019 10:13:18">
10:13
</div>
<div class="text">
<strong>π΄ 8 Microsegmentation Pitfalls to Avoid π΄</strong><br><br><code>Don't fall victim to these common mistakes on the path to developing better security boundaries and limiting the blast radius of security incidents.</code><br><br><a href="https://www.darkreading.com/8-microsegmentation-pitfalls-to-avoid/d/d-id/1335936?_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="message7098">
<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="30.09.2019 11:03:19">
11:03
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ 'Harvesting Attacks' & the Quantum Revolution π΄</strong><br><br><code>Stockpiles of stolen information sitting in foreign databases are ready to be exposed the minute there's a working quantum computer in five to ten years. The time to act is now.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/harvesting-attacks-and-the-quantum-revolution/a/d-id/1335870?_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="message7099">
<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="30.09.2019 11:19:08">
11:19
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Critical Exim Flaw Opens Servers to Remote Code Execution β</strong><br><br><code>A fix has been issued for a critical Exim flaw that could lead to servers crashing or remote code execution attacks being launched.</code><br><br><a href="https://threatpost.com/critical-exim-flaw-opens-servers-to-remote-code-execution/148773/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7100">
<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="30.09.2019 12:08:13">
12:08
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Checkm8 jailbreak and AltStore put cracks in Appleβs walled garden β </strong><br><br><code>People are taking different tacks to get around Apple's tightly controlled phone rules.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/09/30/checkm8-jailbreak-and-altstore-put-cracks-in-apples-walled-garden/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message7101">
<div class="body">
<div class="pull_right date details" title="30.09.2019 12:13:14">
12:13
</div>
<div class="text">
<strong>π΄ 218M Words with Friends Players Compromised in Data Breach π΄</strong><br><br><code>The same attacker was reportedly behind the Collection #1 and Collection #2 data dumps earlier this year.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/218m-words-with-friends-players-compromised-in-data-breach/d/d-id/1335948?_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="message7102">
<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="30.09.2019 12:54:28">
12:54
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Senate Passes Bill Aimed At Combating Ransomware Attacks β</strong><br><br><code>New legislation has been approved by the U.S. senate aimed at protecting local cities and schools from ransomware attacks.</code><br><br><a href="https://threatpost.com/senate-passes-bill-aimed-at-combating-ransomware-attacks/148779/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7103">
<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="30.09.2019 14:09:39">
14:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β New Bug Found in NSAβs Ghidra Tool β</strong><br><br><code>Flaw in National Security Agency's Ghidra reverse-engineering tools allows hackers to execute code in vulnerable systems.</code><br><br><a href="https://threatpost.com/bug-in-nsas-ghidra/148787/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message7104">
<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="30.09.2019 15:52:23">
15:52
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Battery Manufacturer Alleges Scientist Took Trade Secrets to China π</strong><br><br><code>In a new lawsuit, a U.S. based battery company is alleging one of its former employees brazenly took its trade secrets and infringed its patents.</code><br><br><a href="https://digitalguardian.com/blog/battery-manufacturer-alleges-scientist-took-trade-secrets-china">π Read</a><br><br>via "<em>Subscriber Blog RSS Feed</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message7105">
<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="30.09.2019 17:33:24">
17:33
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Baltimore Reportedly Had No Data Backup Process for Many Systems π΄</strong><br><br><code>City lost key data in a ransomware attack earlier this year that's already cost more than $18.2 million in recovery and related expenses.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/baltimore-reportedly-had-no-data-backup-process-for-many-systems/d/d-id/1335953?_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="message7106">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">