-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages14.html
24638 lines (15396 loc) ยท 873 KB
/
messages14.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="messages13.html">
Previous messages
</a>
<div class="message service" id="message-558">
<div class="body details">
29 June 2020
</div>
</div>
<div class="message default clearfix" id="message13094">
<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="29.06.2020 07:55:07">
07:55
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-20413</strong><br><br><code>Affected versions of Atlassian Jira Server and Data Center allow remote attackers to impact the application's availability via a Denial of Service (DoS) vulnerability on the UserPickerBrowser.jspa page. The affected versions are before version 7.13.9, and from version 8.0.0 before 8.4.2.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-20413">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13095">
<div class="body">
<div class="pull_right date details" title="29.06.2020 07:55:08">
07:55
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-20412</strong><br><br><code>The Convert Sub-Task to Issue page in affected versions of Atlassian Jira Server and Data Center allow remote attackers to enumerate the following information via an Improper Authentication vulnerability: Workflow names; Project Key, if it is part of the workflow name; Issue Keys; Issue Types; Status Types. The affected versions are before version 7.13.9, and from version 8.0.0 before 8.4.2.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-20412">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13096">
<div class="body">
<div class="pull_right date details" title="29.06.2020 07:55:09">
07:55
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-20411</strong><br><br><code>Affected versions of Atlassian Jira Server and Data Center allow remote attackers to modify Wallboard settings via a Cross-site request forgery (CSRF) vulnerability. The affected versions are before version 7.13.9, and from version 8.0.0 before 8.4.2.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-20411">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13097">
<div class="body">
<div class="pull_right date details" title="29.06.2020 07:55:10">
07:55
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-20410</strong><br><br><code>Affected versions of Atlassian Jira Server and Data Center allow remote attackers to view sensitive information via an Information Disclosure vulnerability in the comment restriction feature. The affected versions are before version 7.6.17, from version 7.7.0 before 7.13.9, and from version 8.0.0 before 8.4.2.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-20410">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13098">
<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="29.06.2020 09:49:12">
09:49
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ Microsoft Edge browser: This new password monitor helps keep your data safe ๐</strong><br><br><code>The new Edge browser will soon warn you if one of your passwords shows up in a data breach -- a feature based on an Azure service that enterprises can already use to protect user passwords.</code><br><br><a href="https://www.techrepublic.com/article/microsoft-edge-browser-this-new-password-monitor-helps-keep-your-data-safe/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13099">
<div class="body">
<div class="pull_right date details" title="29.06.2020 09:49:13">
09:49
</div>
<div class="text">
<strong>๐ Non-profit launches new programs to increase diversity in cybersecurity industry ๐</strong><br><br><code>Cybersecurity group pivots from speaking engagements and scholarships to analyzing skill gaps and connecting candidates with employers.</code><br><br><a href="https://www.techrepublic.com/article/non-profit-launches-new-programs-to-increase-diversity-in-cybersecurity-industry/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13100">
<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="29.06.2020 11:33:03">
11:33
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โ Beware โsecure DNSโ scam targeting website owners and bloggers โ </strong><br><br><code>If you run a website or a blog, watch out for emails promising "DNSSEC upgrades" - these scammers are after your whole site.</code><br><br><a href="https://nakedsecurity.sophos.com/2020/06/29/beware-secure-dns-scam-targeting-website-owners-and-bloggers/">๐ Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13101">
<div class="body">
<div class="pull_right date details" title="29.06.2020 11:34:27">
11:34
</div>
<div class="text">
<strong>๐ด Tall Order for Small Businesses: 3 Tips to Find Tailored Security Solutions ๐ด</strong><br><br><code>SMBs are responsible for nearly 44% of US economic activity, but given the current climate, it can be difficult for them to find available and/or affordable resources.</code><br><br><a href="https://www.darkreading.com/operations/tall-order-for-small-businesses-3-tips-to-find-tailored-security-solutions/a/d-id/1338178?_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="message13102">
<div class="body">
<div class="pull_right date details" title="29.06.2020 11:49:03">
11:49
</div>
<div class="text">
<strong>๐ IBM Research releases differential privacy library that works with machine learning ๐</strong><br><br><code>The open-source repository is unique in that most tasks can be run with only a single line of code, according to the company.</code><br><br><a href="https://www.techrepublic.com/article/ibm-research-releases-differential-privacy-library-that-works-with-machine-learning/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13103">
<div class="body">
<div class="pull_right date details" title="29.06.2020 11:55:28">
11:55
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-3681</strong><br><br><code>A External Control of File Name or Path vulnerability in osc of SUSE Linux Enterprise Module for Development Tools 15, SUSE Linux Enterprise Software Development Kit 12-SP5, SUSE Linux Enterprise Software Development Kit 12-SP4; openSUSE Leap 15.1, openSUSE Factory allowed remote attackers that can change downloaded packages to overwrite arbitrary files. This issue affects: SUSE Linux Enterprise Module for Development Tools 15 osc versions prior to 0.169.1-3.20.1. SUSE Linux Enterprise Software Development Kit 12-SP5 osc versions prior to 0.162.1-15.9.1. SUSE Linux Enterprise Software Development Kit 12-SP4 osc versions prior to 0.162.1-15.9.1. openSUSE Leap 15.1 osc versions prior to 0.169.1-lp151.2.15.1. openSUSE Factory osc versions prior to 0.169.0 .</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-3681">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13104">
<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="29.06.2020 12:34:27">
12:34
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ด Good Cyber Hygiene in a Pandemic-Driven World Starts with Us ๐ด</strong><br><br><code>Three ways that security teams can improve processes and collaboration, all while creating the common ground needed to sustain them.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/good-cyber-hygiene-in-a-pandemic-driven-world-starts-with-us/a/d-id/1338165?_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="message13105">
<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="29.06.2020 12:53:12">
12:53
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ Sifter 7.5 ๐ </strong><br><br><code>Sifter is a osint, recon, and vulnerability scanner. It combines a plethora of tools within different module sets in order to quickly perform recon tasks, check network firewalling, enumerate remote and local hosts, and scan for the blue vulnerabilities within Microsoft systems and if unpatched, exploits them.</code><br><br><a href="https://packetstormsecurity.com/files/158241/sifter-7.5.tar.gz">๐ Go!</a><br><br>via "<em>Security Tool Files โ Packet Storm</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13106">
<div class="body">
<div class="pull_right date details" title="29.06.2020 12:53:13">
12:53
</div>
<div class="text">
<strong>๐ Haveged 1.9.13 ๐ </strong><br><br><code>haveged is a daemon that feeds the /dev/random pool on Linux using an adaptation of the HArdware Volatile Entropy Gathering and Expansion algorithm invented at IRISA. The algorithm is self-tuning on machines with cpuid support, and has been tested in both 32-bit and 64-bit environments. The tarball uses the GNU build mechanism, and includes self test targets and a spec file for those who want to build an RPM.</code><br><br><a href="https://packetstormsecurity.com/files/158242/haveged-1.9.13.tar.gz">๐ Go!</a><br><br>via "<em>Security Tool Files โ Packet Storm</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13107">
<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="29.06.2020 13:55:04">
13:55
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-19160</strong><br><br><code>Reportexpress ProPlus contains a vulnerability that could allow an arbitrary code execution by inserted VBscript into the configure file(rxp).</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-19160">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13108">
<div class="body">
<div class="pull_right date details" title="29.06.2020 13:55:04">
13:55
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-18256</strong><br><br><code>BIOTRONIK CardioMessenger II, The affected products use individual per-device credentials that are stored in a recoverable format. An attacker with physical access to the CardioMessenger can use these credentials for network authentication and decryption of local data in transit.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-18256">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13109">
<div class="body">
<div class="pull_right date details" title="29.06.2020 13:55:06">
13:55
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-18254</strong><br><br><code>BIOTRONIK CardioMessenger II, The affected products do not encrypt sensitive information while at rest. An attacker with physical access to the CardioMessenger can disclose medical measurement data and the serial number from the implanted cardiac device the CardioMessenger is paired with.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-18254">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13110">
<div class="body">
<div class="pull_right date details" title="29.06.2020 13:55:07">
13:55
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-18252</strong><br><br><code>BIOTRONIK CardioMessenger II, The affected products allow credential reuse for multiple authentication purposes. An attacker with adjacent access to the CardioMessenger can disclose its credentials used for connecting to the BIOTRONIK Remote Communication infrastructure.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-18252">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13111">
<div class="body">
<div class="pull_right date details" title="29.06.2020 13:55:08">
13:55
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-18248</strong><br><br><code>BIOTRONIK CardioMessenger II, The affected products transmit credentials in clear-text prior to switching to an encrypted communication channel. An attacker can disclose the productรขโฌโขs client credentials for connecting to the BIOTRONIK Remote Communication infrastructure.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-18248">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13112">
<div class="body">
<div class="pull_right date details" title="29.06.2020 13:55:09">
13:55
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-18246</strong><br><br><code>BIOTRONIK CardioMessenger II, The affected products do not properly enforce mutual authentication with the BIOTRONIK Remote Communication infrastructure.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-18246">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13113">
<div class="body">
<div class="pull_right date details" title="29.06.2020 14:09:11">
14:09
</div>
<div class="text">
<strong>โ Unpatched Wi-Fi Extender Opens Home Networks to Remote Control โ</strong><br><br><code>The Homeplug device, from Tenda, suffers from web server bugs as well as a DoS flaw.</code><br><br><a href="https://threatpost.com/unpatched-wi-fi-extender-remote-control/156990/">๐ Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13114">
<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="29.06.2020 15:09:28">
15:09
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โ AWS Facial Recognition Platform Misidentified Over 100 Politicians As Criminals โ</strong><br><br><code>Comparitechโs Paul Bischoff found that Amazonโs facial recognition platform misidentified an alarming number of people, and was racially biased.</code><br><br><a href="https://threatpost.com/aws-facial-recognition-platform-misidentified-over-100-politicians-as-criminals/156984/">๐ Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13115">
<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="29.06.2020 15:49:24">
15:49
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ ID theft: Fake Google alerts are now delivering malware ๐</strong><br><br><code>E-mails telling you that your data has been compromised are now sometimes fake. Be careful what you click on.</code><br><br><a href="https://www.techrepublic.com/videos/id-theft-fake-google-alerts-are-now-delivering-malware/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13116">
<div class="body">
<div class="pull_right date details" title="29.06.2020 15:49:25">
15:49
</div>
<div class="text">
<strong>๐ ID theft: Fake Google alerts are now delivering malware ๐</strong><br><br><code>E-mails telling you that your data has been compromised are now sometimes fake. Be careful what you click on.</code><br><br><a href="https://www.techrepublic.com/article/id-theft-fake-google-alerts-are-now-delivering-malware/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13117">
<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="29.06.2020 16:09:10">
16:09
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โ Tuesdayโs Magento 1 EOL Leaves Clock Ticking on 100K Online Stores โ</strong><br><br><code>Adobe and payment-card companies are making last-minute pleas for e-commerce sites to update to Magento 2, to avoid Magecart attacks and more.</code><br><br><a href="https://threatpost.com/tuesdays-magento-1-eol-100k-online-stores/157000/">๐ Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13118">
<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="29.06.2020 16:34:13">
16:34
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ด Files Stolen from 945 Websites Discovered on Dark Web ๐ด</strong><br><br><code>Researchers who found the archived SQL files estimate up to 14 million people could be affected.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/files-stolen-from-945-websites-discovered-on-dark-web/d/d-id/1338192?_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="message13119">
<div class="body">
<div class="pull_right date details" title="29.06.2020 16:49:05">
16:49
</div>
<div class="text">
<strong>๐ 2020 sees rise in invoice and payment fraud BEC attacks ๐</strong><br><br><code>Abnormal Security found a 75% increase in this type of campaign in the first three months of the year and a spike of 200% from April to May.</code><br><br><a href="https://www.techrepublic.com/article/2020-sees-rise-in-invoice-and-payment-fraud-bec-attacks/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13120">
<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="29.06.2020 17:47:27">
17:47
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ Email Error Leads to Exposed PHI of 11,500 Patients ๐</strong><br><br><code>A health plan recently disclosed a data breach of 11,500 patients that was triggered by an email mistake.</code><br><br><a href="https://digitalguardian.com/blog/email-error-leads-exposed-phi-11500-patients">๐ Read</a><br><br>via "<em>Subscriber Blog RSS Feed</em> ".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13121">
<div class="body">
<div class="pull_right date details" title="29.06.2020 17:49:25">
17:49
</div>
<div class="text">
<strong>๐ Why everyone should care about disinformation campaigns ๐</strong><br><br><code>Fortalice CEO and former White House CIO Theresa Payton explains why disinformation is such a potent threat.</code><br><br><a href="https://www.techrepublic.com/videos/why-everyone-should-care-about-disinformation-campaigns/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13122">
<div class="body">
<div class="pull_right date details" title="29.06.2020 17:49:26">
17:49
</div>
<div class="text">
<strong>๐ Why everyone should care about disinformation campaigns ๐</strong><br><br><code>Fortalice CEO and former White House CIO Theresa Payton explains why disinformation is such a potent threat.</code><br><br><a href="https://www.techrepublic.com/article/why-everyone-should-care-about-disinformation-campaigns/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13123">
<div class="body">
<div class="pull_right date details" title="29.06.2020 17:55:28">
17:55
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2018-6446</strong><br><br><code>A vulnerability in Brocade Network Advisor Version Before 14.3.1 could allow an unauthenticated, remote attacker to log in to the JBoss Administration interface of an affected system using an undocumented user credentials and install additional JEE applications.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-6446">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13124">
<div class="body">
<div class="pull_right date details" title="29.06.2020 18:09:21">
18:09
</div>
<div class="text">
<strong>โ REvil Ransomware Gang Adds Auction Feature for Stolen Data โ</strong><br><br><code>An anonymous bidding mechanism enhances the REvil group's double-extortion game.</code><br><br><a href="https://threatpost.com/revil-ransomware-gang-auction-stolen-data/157006/">๐ Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13125">
<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="29.06.2020 18:34:29">
18:34
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ด HackerOne Reveals Top 10 Bug-Bounty Programs ๐ด</strong><br><br><code>Rankings based on total bounties paid, top single bounty paid, time to respond, and more.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/hackerone-reveals-top-10-bug-bounty-programs/d/d-id/1338197?_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="message13126">
<div class="body">
<div class="pull_right date details" title="29.06.2020 18:34:30">
18:34
</div>
<div class="text">
<strong>๐ด Russian Cybercriminal Behind CardPlanet Sentenced to 9 Years ๐ด</strong><br><br><code>Aleksei Burkov will go to federal prison for operating two websites built to facilitate payment card fraud, hacking, and other crimes.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/russian-cybercriminal-behind-cardplanet-sentenced-to-9-years/d/d-id/1338198?_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="message13127">
<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="29.06.2020 19:34:26">
19:34
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ด University of California SF Pays Ransom After Medical Servers Hit ๐ด</strong><br><br><code>As one of at least three universities hit in June, the school paid $1.14 million to cybercriminals following an attack on "several IT systems" in the UCSF School of Medicine.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/university-of-california-sf-pays-ransom-after-medical-servers-hit/d/d-id/1338196?_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-559">
<div class="body details">
30 June 2020
</div>
</div>
<div class="message default clearfix" id="message13128">
<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.06.2020 02:55:18">
02:55
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-20416</strong><br><br><code>Affected versions of Atlassian Jira Server and Data Center allow remote attackers to inject arbitrary HTML or JavaScript via a cross site scripting (XSS) vulnerability in the project configuration feature. The affected versions are before version 8.3.0.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-20416">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13129">
<div class="body">
<div class="pull_right date details" title="30.06.2020 02:55:19">
02:55
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2019-20415</strong><br><br><code>Atlassian Jira Server and Data Center in affected versions allows remote attackers to modify logging and profiling settings via a cross-site request forgery (CSRF) vulnerability. The affected versions are before version 7.13.3, and from version 8.0.0 before 8.1.0.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-20415">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13130">
<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.06.2020 08:33:17">
08:33
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โ iOS 14 flags TikTok, 53 other apps spying on iPhone clipboards โ </strong><br><br><code>TikTok, for one, promised to knock this off months ago but was caught red-handed, still at it, by the new clipboard notification in iOS 14.</code><br><br><a href="https://nakedsecurity.sophos.com/2020/06/30/ios-14-flags-tiktok-53-other-apps-spying-on-iphone-clipboards/">๐ Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13131">
<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.06.2020 09:55:07">
09:55
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>ATENTIONโผ New - CVE-2017-18922</strong><br><br><code>It was discovered that websockets.c in LibVNCServer prior to 0.9.12 did not properly decode certain WebSocket frames. A malicious attacker could exploit this by sending specially crafted WebSocket frames to a server, causing a heap-based buffer overflow.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-18922">๐ Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message13132">
<div class="body">
<div class="pull_right date details" title="30.06.2020 10:09:04">
10:09
</div>
<div class="text">
<strong>โ How to Safeguard Data When the Majority of Your Workforce is Remote โ</strong><br><br><code>More employees working remotely most likely means an increased reliance on cloud services and applications.</code><br><br><a href="https://threatpost.com/forcepoint-how-to-safeguard-data-when-the-majority-of-your-workforce-is-remote/156834/">๐ Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13133">
<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.06.2020 10:49:28">
10:49
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>๐ Botnet Encyclopedia helps security teams analyze suspicious activity in data centers ๐</strong><br><br><code>New resource lists source IPs, connect-back servers, and attack flows for established campaigns and emerging threats.</code><br><br><a href="https://www.techrepublic.com/article/botnet-encyclopedia-helps-security-teams-analyze-suspicious-activity-in-data-centers/#ftag=RSS56d97e7">๐ Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message13134">
<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.06.2020 11:09:09">
11:09
</div>
<div class="from_name">
๐ก Cybersecurity & Privacy news ๐ก
</div>
<div class="text">
<strong>โ CISA: Nation-State Attackers Likely to Exploit Palo Alto Networks Bug โ</strong><br><br><code>An authentication-bypass vulnerability allows attackers to access network assets without credentials when SAML is enabled on certain firewalls and enterprise VPNs.</code><br><br><a href="https://threatpost.com/cisa-nation-state-attackers-palo-alto-networks-bug/157013/">๐ Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>