-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26410 lines (16504 loc) Β· 934 KB
/
index.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">
<div class="message service" id="message-1">
<div class="body details">
4 September 2018
</div>
</div>
<div class="message service" id="message1">
<div class="body details">
Channel «Cybersecurity» created
</div>
</div>
<div class="message service" id="message-2">
<div class="body details">
5 September 2018
</div>
</div>
<div class="message default clearfix" id="message25">
<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="05.09.2018 16:42:32">
16:42
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Silence Group Quietly Emerges as New Threat to Banks π΄<br><br></strong><code>Though only two members strong, hackers pose a credible threat to banks in Russia and multiple countries.<br><br></code><a href="https://www.darkreading.com/attacks-breaches/silence-group-quietly-emerges-as-new-threat-to-banks/d/d-id/1332742?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">π Read<br><br></a>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message26">
<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="05.09.2018 18:09:47">
18:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β OilRig Sends an OopsIE to Mideast Government Targets β<br><br></strong><code>The Iran-linked group is using a variant of the data-exfiltration OopsIE trojan to attack a Mideast government entity.<br><br></code><a href="https://threatpost.com/oilrig-sends-an-oopsie-to-mideast-government-targets/137220/">π Read<br><br></a>via "<em>The first stop for security news | Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message28">
<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="05.09.2018 18:45:16">
18:45
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ PowerPool Malware Uses Windows Zero-Day Posted on Twitter π΄<br><br></strong><code>Researchers detected the vulnerability in an attack campaign two days after it was posted on social media.<br><br></code><a href="https://www.darkreading.com/application-security/powerpool-malware-uses-windows-zero-day-posted-on-twitter/d/d-id/1332743?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">π Read<br><br></a>via "<em>Dark Reading</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message30">
<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="05.09.2018 19:16:20">
19:16
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2015-9266</strong><br><br><code>The web management interface of Ubiquiti airMAX, airFiber, airGateway and EdgeSwitch XP (formerly TOUGHSwitch) allows an unauthenticated attacker to upload and write arbitrary files using directory traversal techniques. An attacker can exploit this vulnerability to gain root privileges. This vulnerability is fixed in the following product versions (fixes released in July 2015, all prior versions are affected): airMAX AC 7.1.3; airMAX M (and airRouter) 5.6.2 XM/XW/TI, 5.5.11 XM/TI, and 5.5.10u2 XW; airGateway 1.1.5; airFiber AF24/AF24HD 2.2.1, AF5x 3.0.2.1, and AF5 2.2.1; airOS 4 XS2/XS5 4.0.4; and EdgeSwitch XP (formerly TOUGHSwitch) 1.3.2.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-9266">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message31">
<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="05.09.2018 21:15:02">
21:15
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ 7 Ways Blockchain is Being Used for Security π΄</strong><br><br><code>Blockchain is being used as a security tool. If you haven't thought about adopting it, you might want to reconsider your take.</code><br><br><a href="https://www.darkreading.com/application-security/7-ways-blockchain-is-being-used-for-security/d/d-id/1332735?_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-3">
<div class="body details">
6 September 2018
</div>
</div>
<div class="message default clearfix" id="message32">
<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="06.09.2018 07:29:41">
07:29
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Ungagged Google warns users about FBI accessing their accounts β </strong><br><br><code>Some of those who received the letters conjecture that it may be because they purchased the LuminosityLink RAT.</code><br><br><a href="https://nakedsecurity.sophos.com/2018/09/06/ungagged-google-warns-users-about-fbi-accessing-their-accounts/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message33">
<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="06.09.2018 08:14:14">
08:14
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Thousands of unsecured 3D printers discovered online β </strong><br><br><code>With access control disabled, other people could download previous print files, or even maliciously damage the printer.</code><br><br><a href="https://nakedsecurity.sophos.com/2018/09/06/thousands-of-unsecured-3d-printers-discovered-online/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message34">
<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="06.09.2018 08:38:13">
08:38
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β High-Severity Flaws in Cisco Secure Internet Gateway Service Patched β</strong><br><br><code>The two bugs were disclosed Wednesday in Cisco Umbrella, the tech giant's cloud-based security service.</code><br><br><a href="https://threatpost.com/high-severity-flaws-in-cisco-secure-internet-gateway-service-patched/137219/">π Read</a><br><br>via "<em>The first stop for security news | Threatpost</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message35">
<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="06.09.2018 10:29:16">
10:29
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Social Security numbers exposed on US government transparency site β </strong><br><br><code>The US government exposed dozens of people'sβ personal details, including social security numbers, due to an online mishap on a public transparency portal.</code><br><br><a href="https://nakedsecurity.sophos.com/2018/09/06/social-security-numbers-exposed-on-us-government-transparency-site/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36">
<div class="body">
<div class="pull_right date details" title="06.09.2018 10:29:17">
10:29
</div>
<div class="text">
<strong>β Mobile spyware maker mSpy leaks millions of records β AGAIN β </strong><br><br><code>The irony: Parents put it on kids' phones to protect them, but this breach exposed sensitive data including Whatsapp and Facebook messages.</code><br><br><a href="https://nakedsecurity.sophos.com/2018/09/06/mobile-spyware-maker-mspy-leaks-millions-of-records-again/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message37">
<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="06.09.2018 11:33:37">
11:33
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2017-1000600</strong><br><br><code>WordPress version <4.9 contains a CWE-20 Input Validation vulnerability in thumbnail processing that can result in remote code execution. This attack appears to be exploitable via thumbnail upload by an authenticated user and may require additional plugins in order to be exploited however this has not been confirmed at this time. This issue appears to have been partially, but not completely fixed in WordPress 4.9</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-1000600">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38">
<div class="body">
<div class="pull_right date details" title="06.09.2018 11:38:10">
11:38
</div>
<div class="text">
<strong>β Mozillaβs Release of Firefox 62 Packs Nine Fixes β</strong><br><br><code>The slew of fixes address a critical vulnerability that could enable memory corruption.</code><br><br><a href="https://threatpost.com/mozillas-release-of-firefox-62-packs-nine-fixes/137230/">π Read</a><br><br>via "<em>The first stop for security news | Threatpost</em> ".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39">
<div class="body">
<div class="pull_right date details" title="06.09.2018 11:45:22">
11:45
</div>
<div class="text">
<strong>π΄ Understanding & Solving the Information-Sharing Challenge π΄</strong><br><br><code>Why cybersecurity threat feeds from intel-sharing groups diminish in value and become just another source of noise. (And what to do about it.)</code><br><br><a href="https://www.darkreading.com/risk/understanding-and-solving-the-information-sharing-challenge-/a/d-id/1332717?_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="message40">
<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="06.09.2018 13:00:51">
13:00
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ US to Charge North Korea for Sony Breach, WannaCry π΄</strong><br><br><code>The DoJ plans to charge North Korean threat actors for their involvement in two major cyberattacks, US officials report.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/us-to-charge-north-korea-for-sony-breach-wannacry/d/d-id/1332748?_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="message41">
<div class="body">
<div class="pull_right date details" title="06.09.2018 13:08:29">
13:08
</div>
<div class="text">
<strong>β Active Spy Campaign Exploits Unpatched Windows Zero-Day β</strong><br><br><code>The PowerPool gang launched its attack just two days after the zero-day in the Windows Task Scheduler was disclosed.</code><br><br><a href="https://threatpost.com/active-spy-campaign-exploits-unpatched-windows-zero-day/137237/">π Read</a><br><br>via "<em>The first stop for security news | Threatpost</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message42">
<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="06.09.2018 14:15:44">
14:15
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ The SOC Gets a Makeover π΄</strong><br><br><code>Today's security operations center is all about reducing the number of alerts with emerging technologies - and enhancing old-school human collaboration. Here's how some real-world SOCs are evolving.</code><br><br><a href="https://www.darkreading.com/risk/the-soc-gets-a-makeover/d/d-id/1332744?_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="message43">
<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="06.09.2018 15:45:41">
15:45
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Why a Healthy Data Diet Is the Secret to Healthy Security π΄</strong><br><br><code>In the same way that food is fuel to our bodies, data is the fuel on which our security programs run. Here are 10 action items to put on your cybersecurity menu.</code><br><br><a href="https://www.darkreading.com/risk/why-a-healthy-data-diet-is-the-secret-to-healthy-security-/a/d-id/1332718?_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="message44">
<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="06.09.2018 17:12:32">
17:12
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Report: Data Breaches Hit Share Prices, Too π΄</strong><br><br><code>A data breach has a measurable impact on stock price, according to a report looking at incidents from the past six years</code><br><br><a href="https://www.darkreading.com/attacks-breaches/report-data-breaches-hit-share-prices-too/d/d-id/1332753?_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="message45">
<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="06.09.2018 17:33:34">
17:33
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2017-14026</strong><br><br><code>In Ice Qube Thermal Management Center versions prior to version 4.13, the web application does not properly authenticate users which may allow an attacker to gain access to sensitive information.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-14026">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message48">
<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="06.09.2018 18:45:08">
18:45
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Take (Industrial) Control: A Look at the 2018 ICS Threat Landscape π΄</strong><br><br><code>New research sheds light on the biggest threats to strike ICS systems in the first half of 2018, and what's in store for the rest of this year.</code><br><br><a href="https://www.darkreading.com/risk/take-(industrial)-control-a-look-at-the-2018-ics-threat-landscape/d/d-id/1332754?_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="message49">
<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="06.09.2018 20:08:34">
20:08
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β U.S. Ties Lazarus to North Korea and Major Hacking Conspiracy β</strong><br><br><code>The DoJ said a DPRK spy, Park Jin-hyok, was involved in βa conspiracy to conduct multiple destructive cyberattacks around the world."</code><br><br><a href="https://threatpost.com/u-s-ties-lazarus-to-north-korea-and-major-hacking-conspiracy/137264/">π Read</a><br><br>via "<em>The first stop for security news | Threatpost</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message50">
<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="06.09.2018 20:45:36">
20:45
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ The Best Way To Secure US Elections? Paper Ballots π΄</strong><br><br><code>Voting machines that do not provide a paper trail or cannot be independently audited should immediately be removed, concludes a new report from the National Academies of Sciences, Engineering, and Medicine.</code><br><br><a href="https://www.darkreading.com/risk/the-best-way-to-secure-us-elections-paper-ballots/d/d-id/1332757?_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-4">
<div class="body details">
7 September 2018
</div>
</div>
<div class="message default clearfix" id="message51">
<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="07.09.2018 08:08:12">
08:08
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β ThreatList: Attacks on Industrial Control Systems on the Rise β</strong><br><br><code>The main source of infection on industrial control systems was the internet, researchers at Kaspersky Lab found in a new report.</code><br><br><a href="https://threatpost.com/threatlist-attacks-on-industrial-control-systems-on-the-rise/137251/">π Read</a><br><br>via "<em>The first stop for security news | Threatpost</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message52">
<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="07.09.2018 08:44:09">
08:44
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Dark web sites could be exposed by routine slip-up β </strong><br><br><code>A simple misconfiguration could expose the IP addresses of dark web sites.</code><br><br><a href="https://nakedsecurity.sophos.com/2018/09/07/dark-web-sites-could-be-exposed-by-routine-slip-up/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message53">
<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="07.09.2018 08:59:46">
08:59
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Firefox finally casts Windows XP users adrift β </strong><br><br><code>Mozilla's browser is waving goodbye to millions of XP holdouts.</code><br><br><a href="https://nakedsecurity.sophos.com/2018/09/07/firefox-finally-casts-windows-xp-users-adrift/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message54">
<div class="body">
<div class="pull_right date details" title="07.09.2018 09:08:18">
09:08
</div>
<div class="text">
<strong>β Top MacOS App Exfiltrates Browser Histories Behind Usersβ Backs β</strong><br><br><code>A macOS App called Adware Doctor blocks ads, but shareβs user browser history with a China-based domain.</code><br><br><a href="https://threatpost.com/top-macos-app-exfiltrates-browser-histories-behind-users-backs/137247/">π Read</a><br><br>via "<em>The first stop for security news | Threatpost</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message55">
<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="07.09.2018 10:14:34">
10:14
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Teen hacker admits to SWATting schools, airline flight β </strong><br><br><code>The teenager made bomb threats to schools, and to a flight between the UK and San Francisco while it was in mid-air.</code><br><br><a href="https://nakedsecurity.sophos.com/2018/09/07/teen-hacker-admits-to-swatting-schools-airline-flight/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message56">
<div class="body">
<div class="pull_right date details" title="07.09.2018 10:23:19">
10:23
</div>
<div class="text">
<strong>β Threat Actors Eyeing IQY Files To Peddle Malspam β</strong><br><br><code>The Necurs Botnet, DarkHydrus and other threat actors are turning to the inconspicuous files.</code><br><br><a href="https://threatpost.com/threat-actors-eyeing-iqy-files-to-peddle-malspam/137279/">π Read</a><br><br>via "<em>The first stop for security news | Threatpost</em> ".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message57">
<div class="body">
<div class="pull_right date details" title="07.09.2018 10:29:18">
10:29
</div>
<div class="text">
<strong>β Former NASA contractor arrested on charges of sextorting seven women β </strong><br><br><code>Richard Gregory Bauer allegedly weaseled private information out of the women on Facebook by pretending to be working on a class project.</code><br><br><a href="https://nakedsecurity.sophos.com/2018/09/07/former-nasa-contractor-arrested-on-charges-of-sextorting-seven-women/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message58">
<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="07.09.2018 11:08:25">
11:08
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Threatpost News Wrap Podcast For Sept. 7 β</strong><br><br><code>The Threatpost team breaks down the biggest news from the week ended Sept. 7.</code><br><br><a href="https://threatpost.com/threatpost-news-wrap-podcast-for-sept-7/137273/">π Read</a><br><br>via "<em>The first stop for security news | Threatpost</em> ".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message59">
<div class="body">
<div class="pull_right date details" title="07.09.2018 11:18:27">
11:18
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2016-9040</strong><br><br><code>An exploitable denial of service exists in the the Joyent SmartOS OS 20161110T013148Z Hyprlofs file system. The vulnerability is present in the Ioctl system call with the command HYPRLOFSADDENTRIES when used with a 32 bit model. An attacker can cause a buffer to be allocated and never freed. When repeatedly exploit this will result in memory exhaustion, resulting in a full system denial of service.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-9040">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message60">
<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="07.09.2018 11:45:35">
11:45
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ The Role of Incident Response in ICS Security Compliance π΄</strong><br><br><code>The data-driven nature of IR can provide many of the reporting requirements governing industrial control system safety, finance, consumer privacy, and notifications.</code><br><br><a href="https://www.darkreading.com/risk/the-role-of-incident-response-in-ics-security-compliance/a/d-id/1332747?_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="message61">
<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="07.09.2018 12:15:47">
12:15
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ British Airways Issues Apology for Severe Data Breach π΄</strong><br><br><code>The airline "is deeply sorry" for its worst-ever cyberattack, which has affected 380,000 customers.</code><br><br><a href="https://www.darkreading.com/risk/british-airways-issues-apology-for-severe-data-breach/d/d-id/1332759?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">π Read</a><br><br>via "<em>Dark Reading:</em> ".
</div>