-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages3.html
26438 lines (16522 loc) · 933 KB
/
messages3.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="messages2.html">
Previous messages
</a>
<div class="message service" id="message-116">
<div class="body details">
16 January 2019
</div>
</div>
<div class="message default clearfix" id="message2060">
<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="16.01.2019 12:14:32">
12:14
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ Magecart Returns with Advertising Library Tactic ❌</strong><br><br><code>The threat group also has a new subsidiary, Magecart Group 12.</code><br><br><a href="https://threatpost.com/magecart-returns-with-advertising-library-tactic/140902/">📖 Read</a><br><br>via "<em>Threatpost | The first stop for security news</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2061">
<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="16.01.2019 12:41:42">
12:41
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🔐 Top 10 app vulnerabilities: Unpatched plugins and extensions dominate 🔐</strong><br><br><code>Despite the existence of patches, the proliferation of unpatched installations are enticing targets for malicious actors, according to a WhiteHat report.</code><br><br><a href="https://www.techrepublic.com/article/top-10-app-vulnerabilities-unpatched-plugins-and-extensions-dominate/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2062">
<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="16.01.2019 13:07:41">
13:07
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Triton/Trisis Attack Was More Widespread Than Publicly Known 🕴</strong><br><br><code>Signs of the attack first showed up two months before it was identified as a cyberattack, but they were mistaken for a pure equipment failure by Schneider Electric, security expert reveals at S4x19.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/triton-trisis-attack-was-more-widespread-than-publicly-known/d/d-id/1333661?_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="message2063">
<div class="body">
<div class="pull_right date details" title="16.01.2019 13:12:40">
13:12
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2016-9651 (chrome, enterprise_linux_desktop, enterprise_linux_server, enterprise_linux_workstation)</strong><br><br><code>A missing check for whether a property of a JS object is private in V8 in Google Chrome prior to 55.0.2883.75 allowed a remote attacker to execute arbitrary code inside a sandbox via a crafted HTML page.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-9651">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2064">
<div class="body">
<div class="pull_right date details" title="16.01.2019 13:19:22">
13:19
</div>
<div class="text">
<strong>❌ Fortnite Hacked Via Insecure Single Sign-On ❌</strong><br><br><code>Leaky Fortnite single sign-on mechanism could have allowed hackers to access game accounts.</code><br><br><a href="https://threatpost.com/fortnite-hacked-via-insecure-single-sign-on/140913/">📖 Read</a><br><br>via "<em>Threatpost | The first stop for security news</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2065">
<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="16.01.2019 13:49:21">
13:49
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Are You Listening to Your Kill Chain? 🕴</strong><br><br><code>With the right tools and trained staff, any organization should be able to deal with threats before information is compromised.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/are-you-listening-to-your-kill-chain/a/d-id/1333620?_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="message2066">
<div class="body">
<div class="pull_right date details" title="16.01.2019 13:49:52">
13:49
</div>
<div class="text">
<strong>❌ U.S. Issues Multiple Charges For 2016 SEC Hack ❌</strong><br><br><code>The two were able to hack into the SEC's computer systems due to phishing attacks that stole credentials and spread malware.</code><br><br><a href="https://threatpost.com/u-s-issues-multiple-charges-for-2016-sec-hack/140903/">📖 Read</a><br><br>via "<em>Threatpost | The first stop for security news</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2067">
<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="16.01.2019 14:11:20">
14:11
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🔐 To stay competitive, MSSPs need to grow and evolve 🔐</strong><br><br><code>Managed Security Service Providers can alleviate many of the headaches suffered by in-house security, but they need to remain nimble and focused to retain their edge.</code><br><br><a href="https://www.techrepublic.com/article/to-stay-competitive-mssps-need-to-grow-and-evolve/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2068">
<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="16.01.2019 14:37:34">
14:37
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Fortnite Players at Risk Via Epic Games Vulnerability 🕴</strong><br><br><code>Bugs in Epic Games' platform could let intruders take over players' accounts, view personal data, and/or buy in-game currency.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/fortnite-players-at-risk-via-epic-games-vulnerability/d/d-id/1333662?_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="message2069">
<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="16.01.2019 14:57:18">
14:57
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2015-9280</strong><br><br><code>MailEnable before 8.60 allows XXE via an XML document in the request.aspx Options parameter.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-9280">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2070">
<div class="body">
<div class="pull_right date details" title="16.01.2019 14:57:19">
14:57
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2015-9279</strong><br><br><code>MailEnable before 8.60 allows Stored XSS via malformed use of "<img/src" with no ">" character in the body of an e-mail message.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-9279">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2071">
<div class="body">
<div class="pull_right date details" title="16.01.2019 14:57:20">
14:57
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2015-9278</strong><br><br><code>MailEnable before 8.60 allows Privilege Escalation because admin accounts could be created as a consequence of %0A mishandling in AUTH.TAB after a password-change request.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-9278">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2072">
<div class="body">
<div class="pull_right date details" title="16.01.2019 14:57:21">
14:57
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2015-9277</strong><br><br><code>MailEnable before 8.60 allows Directory Traversal for reading the messages of other users, uploading files, and deleting files because "/../" and "/.. /" are mishandled.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-9277">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2073">
<div class="body">
<div class="pull_right date details" title="16.01.2019 14:57:22">
14:57
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2015-9276</strong><br><br><code>SmarterTools SmarterMail before 13.3.5535 was vulnerable to stored XSS by bypassing the anti-XSS mechanisms. It was possible to run JavaScript code when a victim user opens or replies to the attacker's email, which contained a malicious payload. Therefore, users' passwords could be reset by using an XSS attack, as the password reset page did not need the current password.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-9276">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2074">
<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="16.01.2019 16:18:00">
16:18
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2016-10403 (chrome)</strong><br><br><code>Insufficient data validation on image data in PDFium in Google Chrome prior to 51.0.2704.63 allowed a remote attacker to perform an out of bounds memory read via a crafted PDF file.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-10403">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2075">
<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="16.01.2019 16:37:14">
16:37
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 BEC Groups Ramp Up Payroll Diversion Attacks 🕴</strong><br><br><code>Criminals are increasingly trying to defraud businesses by diverting payrolls of CEOs, other senior executives, Agari says.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/bec-groups-ramp-up-payroll-diversion-attacks-/d/d-id/1333665?_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="message2076">
<div class="body">
<div class="pull_right date details" title="16.01.2019 16:37:16">
16:37
</div>
<div class="text">
<strong>🕴 How the US Chooses Which Zero-Day Vulnerabilities to Stockpile 🕴</strong><br><br><code>When it comes to acceptable circumstances for government disclosure of zero-days, the new Vulnerabilities Equity Process might be the accountability practice security advocates have been waiting for.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/how-the-us-chooses-which-zero-day-vulnerabilities-to-stockpile-/a/d-id/1333652?_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="message2077">
<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="16.01.2019 17:29:37">
17:29
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ Millions of Oklahoma Gov Files Exposed by Wide-Open Server ❌</strong><br><br><code>The storage server was left open for about a week and exposed everything from sensitive FBI investigations to data related to patients with AIDS.</code><br><br><a href="https://threatpost.com/oklahoma-gov-data-leak/140936/">📖 Read</a><br><br>via "<em>Threatpost | The first stop for security news</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2078">
<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="16.01.2019 17:47:50">
17:47
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Fortnite Players at Risk Via Epic Games Vulnerability 🕴</strong><br><br><code>Bugs in Epic Games' platform could let intruders take over players' accounts, view personal data, and/or buy in-game currency.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/fortnite-players-compromised-via-epic-games-vulnerability/d/d-id/1333662?_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="message2079">
<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="16.01.2019 18:22:09">
18:22
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2017-3137</strong><br><br><code>Mistaken assumptions about the ordering of records in the answer section of a response containing CNAME or DNAME resource records could lead to a situation in which named would exit with an assertion failure when processing a response in which records occurred in an unusual order. Affects BIND 9.9.9-P6, 9.9.10b1->9.9.10rc1, 9.10.4-P6, 9.10.5b1->9.10.5rc1, 9.11.0-P3, 9.11.1b1->9.11.1rc1, and 9.9.9-S8.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-3137">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2080">
<div class="body">
<div class="pull_right date details" title="16.01.2019 18:22:09">
18:22
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2017-3136</strong><br><br><code>A query with a specific set of characteristics could cause a server using DNS64 to encounter an assertion failure and terminate. An attacker could deliberately construct a query, enabling denial-of-service against a server if it was configured to use the DNS64 feature and other preconditions were met. Affects BIND 9.8.0 -> 9.8.8-P1, 9.9.0 -> 9.9.9-P6, 9.9.10b1->9.9.10rc1, 9.10.0 -> 9.10.4-P6, 9.10.5b1->9.10.5rc1, 9.11.0 -> 9.11.0-P3, 9.11.1b1->9.11.1rc1, 9.9.3-S1 -> 9.9.9-S8.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-3136">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2081">
<div class="body">
<div class="pull_right date details" title="16.01.2019 18:22:12">
18:22
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2017-3135</strong><br><br><code>Under some conditions when using both DNS64 and RPZ to rewrite query responses, query processing can resume in an inconsistent state leading to either an INSIST assertion failure or an attempt to read through a NULL pointer. Affects BIND 9.8.8, 9.9.3-S1 -> 9.9.9-S7, 9.9.3 -> 9.9.9-P5, 9.9.10b1, 9.10.0 -> 9.10.4-P5, 9.10.5b1, 9.11.0 -> 9.11.0-P2, 9.11.1b1.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-3135">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2082">
<div class="body">
<div class="pull_right date details" title="16.01.2019 18:22:13">
18:22
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2017-1002152 (bodhi)</strong><br><br><code>Bodhi 2.9.0 and lower is vulnerable to cross-site scripting resulting in code injection caused by incorrect validation of bug titles.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-1002152">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2083">
<div class="body">
<div class="pull_right date details" title="16.01.2019 18:22:16">
18:22
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2016-9778</strong><br><br><code>An error in handling certain queries can cause an assertion failure when a server is using the nxdomain-redirect feature to cover a zone for which it is also providing authoritative service. A vulnerable server could be intentionally stopped by an attacker if it was using a configuration that met the criteria for the vulnerability and if the attacker could cause it to accept a query that possessed the required attributes. Please note: This vulnerability affects the "nxdomain-redirect" feature, which is one of two methods of handling NXDOMAIN redirection, and is only available in certain versions of BIND. Redirection using zones of type "redirect" is not affected by this vulnerability. Affects BIND 9.9.8-S1 -> 9.9.8-S3, 9.9.9-S1 -> 9.9.9-S6, 9.11.0-9.11.0-P1.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-9778">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2084">
<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="16.01.2019 19:02:59">
19:02
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Oklahoma Data Leak Compromises Years of FBI Data 🕴</strong><br><br><code>The Oklahoma Securities Commission accidentally leaked 3 TB of information, including data on years of FBI investigations.</code><br><br><a href="https://www.darkreading.com/endpoint/oklahoma-data-leak-compromises-years-of-fbi-data/d/d-id/1333669?_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="message2085">
<div class="body">
<div class="pull_right date details" title="16.01.2019 19:09:45">
19:09
</div>
<div class="text">
<strong>❌ Threatpost Survey Says: 2FA is Just Fine, But Go Ahead and Kill SMS ❌</strong><br><br><code>Our reader poll showed overwhelming support for 2FA even in the wake of a bypass tool being released -- although lingering concerns remain.</code><br><br><a href="https://threatpost.com/survey-2fa-kill-sms/140933/">📖 Read</a><br><br>via "<em>Threatpost | The first stop for security news</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2086">
<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="16.01.2019 23:07:07">
23:07
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Malware Built to Hack Building Automation Systems 🕴</strong><br><br><code>Researchers dig into vulnerabilities in popular building automation systems, devices.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/malware-built-to-hack-building-automation-systems/d/d-id/1333671?_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-117">
<div class="body details">
17 January 2019
</div>
</div>
<div class="message default clearfix" id="message2087">
<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="17.01.2019 03:32:15">
03:32
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2015-9281</strong><br><br><code>Logon Manager in SAS Web Infrastructure Platform before 9.4M3 allows reflected XSS on the Timeout page.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-9281">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2088">
<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="17.01.2019 08:55:17">
08:55
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>⚠ Two charged with hacking company filings out of SEC’s EDGAR system ⚠</strong><br><br><code>They're charged with phishing and inflicting malware to get into the EDGAR filing system, stealing thousands of filings, and selling access.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/01/17/two-charged-with-hacking-company-filings-out-of-secs-edgar-system/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2089">
<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="17.01.2019 10:35:10">
10:35
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>⚠ Change your password! VoIP provider leaves huge database exposed online ⚠</strong><br><br><code>A researcher has discovered an exposed database containing gigabytes of call logs, SMS data, and internal system credentials belonging to US Voice-over-IP (VoIP) service provider VOIPo.com.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/01/17/change-your-password-voip-provider-leaves-huge-database-exposed-online/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2090">
<div class="body">
<div class="pull_right date details" title="17.01.2019 10:40:24">
10:40
</div>
<div class="text">
<strong>⚠ Microsoft font gives away forgery in bankruptcy case ⚠</strong><br><br><code>In a case that could be straight out of a legal TV drama, a computing font has cost a couple two houses in a Canadian bankruptcy case.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/01/17/telltale-font-scuppers-bankruptcy-trust-claim/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2091">
<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="17.01.2019 11:09:54">
11:09
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ Cryptomining Malware Uninstalls Cloud Security Products ❌</strong><br><br><code>New samples of cryptomining malware performs a never-before-seen function: uninstalling cloud security products.</code><br><br><a href="https://threatpost.com/cryptomining-malware-uninstalls-cloud-security-products/140959/">📖 Read</a><br><br>via "<em>Threatpost | The first stop for security news</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2092">
<div class="body">
<div class="pull_right date details" title="17.01.2019 11:20:08">
11:20
</div>
<div class="text">
<strong>⚠ Email crooks swindle woman out of $150K from home sale ⚠</strong><br><br><code>She sent her bank account details three times, she said. Unfortunately, they wound up in crooks' hands, and her money wound up in their pockets.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/01/17/email-crooks-swindle-woman-out-of-150k-from-home-sale/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2093">
<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="17.01.2019 12:42:11">
12:42
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Simulating Lateral Attacks Through Email 🕴</strong><br><br><code>A skilled attacker can get inside your company by abusing common email applications. Here are three strategies to block them.</code><br><br><a href="https://www.darkreading.com/endpoint/simulating-lateral-attacks-through-email/a/d-id/1333638?_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="message2094">
<div class="body">
<div class="pull_right date details" title="17.01.2019 12:44:09">
12:44
</div>
<div class="text">
<strong>❌ Cyber-Jackpot: 773M Credentials Dumped on the Dark Web ❌</strong><br><br><code>Thousands of individual breaches make up the database, one of the largest troves of stolen credentials ever seen.</code><br><br><a href="https://threatpost.com/773m-credentials-dark-web/140972/">📖 Read</a><br><br>via "<em>Threatpost | The first stop for security news</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2095">
<div class="body">
<div class="pull_right date details" title="17.01.2019 12:56:27">
12:56
</div>
<div class="text">
<strong>🔐 Malware can now evade cloud security tools, as cybercriminals target public cloud users 🔐</strong><br><br><code>Refined malware payloads from Chinese threat actor Rocke Group are sidestepping security tools to install cryptocurrency miners on cloud systems.</code><br><br><a href="https://www.techrepublic.com/article/malware-can-now-evade-cloud-security-tools-as-cybercriminals-target-public-cloud-users/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message2096">
<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="17.01.2019 13:12:38">
13:12
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2017-2411 (iphone_os)</strong><br><br><code>In iOS before 11.2, exchange rates were retrieved from HTTP rather than HTTPS. This was addressed by enabling HTTPS for exchange rates.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-2411">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2097">
<div class="body">
<div class="pull_right date details" title="17.01.2019 13:12:39">
13:12
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2017-13889 (mac_os_x)</strong><br><br><code>In macOS High Sierra before 10.13.3, Security Update 2018-001 Sierra, and Security Update 2018-001 El Capitan, a logic error existed in the validation of credentials. This was addressed with improved credential validation.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-13889">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message2098">
<div class="body">
<div class="pull_right date details" title="17.01.2019 13:12:40">
13:12
</div>
<div class="text">
<strong>ATENTION‼ New - CVE-2017-13888 (iphone_os)</strong><br><br><code>In iOS before 11.2, a type confusion issue was addressed with improved memory handling.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-13888">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>