-
Notifications
You must be signed in to change notification settings - Fork 0
/
messages5.html
25294 lines (15807 loc) Β· 877 KB
/
messages5.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="messages4.html">
Previous messages
</a>
<div class="message service" id="message-209">
<div class="body details">
2 May 2019
</div>
</div>
<div class="message default clearfix" id="message4065">
<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="02.05.2019 11:08:55">
11:08
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ World Password Day or Groundhog Day? π΄</strong><br><br><code>Despite decades trying to fortify our passwords with bolt-on solutions, attackers have always found ways to defeat them. Here are four reasons why.</code><br><br><a href="https://www.darkreading.com/endpoint/authentication/-world-password-day-or-groundhog-day/a/d-id/1334579?_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="message4066">
<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="02.05.2019 11:58:15">
11:58
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Why Are We Still Celebrating World Password Day? π΄</strong><br><br><code>Calls to eliminate the password abound on this World Password Day - and the technology to change is ready. So why can't we get off our password habit?</code><br><br><a href="https://www.darkreading.com/risk/why-are-we-still-celebrating-world-password-day/d/d-id/1334592?_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="message4067">
<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="02.05.2019 12:23:33">
12:23
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Facebook, Instagram Are Phishers' Favorite Social Platforms π΄</strong><br><br><code>Cloud companies continue to represent the most phishing URLs, but social media saw the most growth in Q1 2019.</code><br><br><a href="https://www.darkreading.com/endpoint/facebook-instagram-are-phishers-favorite-social-platforms/d/d-id/1334594?_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="message4068">
<div class="body">
<div class="pull_right date details" title="02.05.2019 12:24:58">
12:24
</div>
<div class="text">
<strong>β Cisco Warns of Critical Nexus 9000 Data Center Flaw β</strong><br><br><code>Part of a slew of patches from the networking vendor, the CVSS 9.8 bug allows remote takeover of a vulnerable device.</code><br><br><a href="https://threatpost.com/cisco-critical-nexus-9000-flaw/144290/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4069">
<div class="body">
<div class="pull_right date details" title="02.05.2019 12:31:30">
12:31
</div>
<div class="text">
<strong>π 6 ways to strengthen your password π</strong><br><br><code>Make an effort to secure your digital life with these helpful, easy-to-follow password tips.</code><br><br><a href="https://www.techrepublic.com/article/6-ways-to-strengthen-your-password/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message4070">
<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="02.05.2019 13:15:59">
13:15
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π NIST Sets New Standard for Data Encryption Testing π</strong><br><br><code>NIST has updated the Federal Information Processing Standard, or FIPS, to align with the international standard, ISO 19790 for the first time,</code><br><br><a href="https://digitalguardian.com/blog/nist-sets-new-standard-data-encryption-testing">π Read</a><br><br>via "<em>Subscriber Blog RSS Feed</em> ".
</div>
</div>
</div>
<div class="message default clearfix" id="message4071">
<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="02.05.2019 13:31:38">
13:31
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2018-14559 (ac10_firmware, ac7_firmware, ac9_firmware)</strong><br><br><code>An issue was discovered on Tenda AC7 devices with firmware through V15.03.06.44_CN(AC7), AC9 devices with firmware through V15.03.05.19(6318)_CN(AC9), and AC10 devices with firmware through V15.03.06.23_CN(AC10). A buffer overflow vulnerability exists in the router's web server (httpd). When processing the list parameters for a post request, the value is directly written with sprintf to a local variable placed on the stack, which overrides the return address of the function, causing a buffer overflow.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-14559">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4072">
<div class="body">
<div class="pull_right date details" title="02.05.2019 13:31:39">
13:31
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2018-14557 (ac10_firmware, ac7_firmware, ac9_firmware)</strong><br><br><code>An issue was discovered on Tenda AC7 devices with firmware through V15.03.06.44_CN(AC7), AC9 devices with firmware through V15.03.05.19(6318)_CN(AC9), and AC10 devices with firmware through V15.03.06.23_CN(AC10). A buffer overflow vulnerability exists in the router's web server (httpd). When processing the page parameters for a post request, the value is directly written with sprintf to a local variable placed on the stack, which overrides the return address of the function, a causing buffer overflow.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-14557">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4073">
<div class="body">
<div class="pull_right date details" title="02.05.2019 13:31:39">
13:31
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2018-12244 (endpoint_protection)</strong><br><br><code>SEP (Mac client) prior to and including 12.1 RU6 MP9 and prior to 14.2 RU1 may be susceptible to a CSV/DDE injection (also known as formula injection) vulnerability, which is a type of issue whereby an application or website allows untrusted input into CSV files.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-12244">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4074">
<div class="body">
<div class="pull_right date details" title="02.05.2019 13:43:14">
13:43
</div>
<div class="text">
<strong>π΄ Real-World Use, Risk of Open Source Code π΄</strong><br><br><code>Organizations are using more open source software than ever before, but managing that code remains a challenge.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/real-world-use-risk-of-open-source-code-/d/d-id/1334587?_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="message4075">
<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="02.05.2019 14:39:46">
14:39
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Dell Security Support Tool Harbors High-Severity Flaws β</strong><br><br><code>Dell has patched two high-severity vulnerabilities in its SupportAssist software meant to aid security issues for customers.</code><br><br><a href="https://threatpost.com/dell-flaws-security-support-tool/144295/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message4076">
<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="02.05.2019 15:14:20">
15:14
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Ladders, SkyMed Leak Employment, Medical Data for Millions β</strong><br><br><code>One of the misconfigured Elasticsearch databases showed evidence of a ransomware attack.</code><br><br><a href="https://threatpost.com/ladders-skymed-data-leak/144307/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4077">
<div class="body">
<div class="pull_right date details" title="02.05.2019 15:26:33">
15:26
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2017-18374</strong><br><br><code>The ZyXEL P660HN-T1A v1 TCLinux Fw $7.3.15.0 v001 / 3.40(ULM.0)b31 router distributed by TrueOnline has two user accounts with default passwords, including a hardcoded service account with the username true and password true. These accounts can be used to login to the web interface, exploit authenticated command injections and change router settings for malicious purposes.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-18374">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4078">
<div class="body">
<div class="pull_right date details" title="02.05.2019 15:26:34">
15:26
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2017-18373</strong><br><br><code>The Billion 5200W-T TCLinux Fw $7.3.8.0 v008 130603 router distributed by TrueOnline has three user accounts with default passwords, including two hardcoded service accounts: one with the username true and password true, and another with the username user3 and and a long password consisting of a repetition of the string 0123456789. These accounts can be used to login to the web interface, exploit authenticated command injections, and change router settings for malicious purposes.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-18373">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4079">
<div class="body">
<div class="pull_right date details" title="02.05.2019 15:26:35">
15:26
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2017-18372</strong><br><br><code>The Billion 5200W-T TCLinux Fw $7.3.8.0 v008 130603 router distributed by TrueOnline has a command injection vulnerability in the Time Setting function, which is only accessible by an authenticated user. The vulnerability is in the tools_time.asp page and can be exploited through the uiViewSNTPServer parameter. Authentication can be achieved by exploiting CVE-2017-18373.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-18372">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4080">
<div class="body">
<div class="pull_right date details" title="02.05.2019 15:26:36">
15:26
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2017-18371</strong><br><br><code>The ZyXEL P660HN-T1A v2 TCLinux Fw #7.3.37.6 router distributed by TrueOnline has three user accounts with default passwords, including two hardcoded service accounts: one with the username true and password true, and another with the username supervisor and password zyad1234. These accounts can be used to login to the web interface, exploit authenticated command injections, and change router settings for malicious purposes.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-18371">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4081">
<div class="body">
<div class="pull_right date details" title="02.05.2019 15:26:37">
15:26
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2017-18370</strong><br><br><code>The ZyXEL P660HN-T1A v2 TCLinux Fw #7.3.37.6 router distributed by TrueOnline has a command injection vulnerability in the Remote System Log forwarding function, which is only accessible by an authenticated user. The vulnerability is in the logSet.asp page and can be exploited through the ServerIP parameter. Authentication can be achieved by exploiting CVE-2017-18371.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-18370">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4082">
<div class="body">
<div class="pull_right date details" title="02.05.2019 15:26:38">
15:26
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2017-18369</strong><br><br><code>The Billion 5200W-T 1.02b.rc5.dt49 router distributed by TrueOnline has a command injection vulnerability in the Remote System Log forwarding function, which is accessible by an unauthenticated user. The vulnerability is in the adv_remotelog.asp page and can be exploited through the syslogServerAddr parameter.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-18369">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4083">
<div class="body">
<div class="pull_right date details" title="02.05.2019 15:26:39">
15:26
</div>
<div class="text">
<strong>ATENTIONβΌ New - CVE-2017-18368</strong><br><br><code>The ZyXEL P660HN-T1A v1 TCLinux Fw $7.3.15.0 v001 / 3.40(ULM.0)b31 router distributed by TrueOnline has a command injection vulnerability in the Remote System Log forwarding function, which is accessible by an unauthenticated user. The vulnerability is in the ViewLog.asp page and can be exploited through the remote_host parameter.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-18368">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4084">
<div class="body">
<div class="pull_right date details" title="02.05.2019 15:33:35">
15:33
</div>
<div class="text">
<strong>π΄ Security Depends on Careful Design π΄</strong><br><br><code>Deploying focused edge protection on-site extends security beyond the network level to shield millions of previously exposed devices, apps, and control systems.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/security-depends-on-careful-design-/a/d-id/1334543?_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="message4085">
<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="02.05.2019 16:19:20">
16:19
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β D-Link Cloud Camera Flaw Gives Hackers Access to Video Stream β</strong><br><br><code>Researchers warn customers to reconsider the use of the cameraβs remote access feature if the device is monitoring highly sensitive areas of their household or company.</code><br><br><a href="https://threatpost.com/d-link-cloud-camera-flaw/144304/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message4086">
<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="02.05.2019 17:09:25">
17:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Security Doesn't Trust IT - and IT Doesn't Trust Security π΄</strong><br><br><code>How a rocky relationship between IT operations and cybersecurity teams can compound security risks.</code><br><br><a href="https://www.darkreading.com/risk/security-doesnt-trust-it---and-it-doesnt-trust-security/d/d-id/1334599?_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="message4087">
<div class="body">
<div class="pull_right date details" title="02.05.2019 17:13:03">
17:13
</div>
<div class="text">
<strong>π΄ Misconfigured Ladders Database Exposed 13M User Records π΄</strong><br><br><code>Job-hunting site Ladders leaves job seeker data exposed on the Internet.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/misconfigured-ladders-database-exposed-13m-user-records/d/d-id/1334600?_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="message4088">
<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="02.05.2019 17:41:15">
17:41
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π How to use the Enpass Password Audit tools π</strong><br><br><code>If Enpass is your password manager of choice, there are three handy audit tools you should be using. Jack Wallen explains.</code><br><br><a href="https://www.techrepublic.com/videos/how-to-use-the-enpass-password-audit-tools/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4089">
<div class="body">
<div class="pull_right date details" title="02.05.2019 17:41:16">
17:41
</div>
<div class="text">
<strong>π How to use the Enpass password audit tools π</strong><br><br><code>Use Enpass audit tools to identify weak, identical, and old passwords.</code><br><br><a href="https://www.techrepublic.com/article/how-to-use-the-enpass-password-audit-tools/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message4090">
<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="02.05.2019 18:19:15">
18:19
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Critical Flaws Found in Eight Wireless Presentation Systems β</strong><br><br><code>Crestron, Barco wePresent, Extron ShareLink and more wireless presentation systems have an array of critical flaws.</code><br><br><a href="https://threatpost.com/bugs-wireless-presentation-systems/144318/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message4091">
<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="02.05.2019 20:00:04">
20:00
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ New Exploits For Old Configuration Issues Heighten Risk for SAP Customers π΄</strong><br><br><code>Exploits give attackers a way to create havoc in business-critical SAP ERP, CRM, SCM, and other environments, Onapsis says.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/new-exploits-for-old-configuration-issues-heighten-risk-for-sap-customers/d/d-id/1334602?_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-210">
<div class="body details">
3 May 2019
</div>
</div>
<div class="message default clearfix" id="message4092">
<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="03.05.2019 06:28:43">
06:28
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Google rolling out auto-delete for your location and activity history β </strong><br><br><code>Auto-delete will hopefully please those of us who haven't already turned off location history altogether (for very good reason).</code><br><br><a href="https://nakedsecurity.sophos.com/2019/05/03/google-rolling-out-auto-delete-for-your-location-and-activity-history/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message4093">
<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="03.05.2019 06:53:26">
06:53
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Cybersecurity experts battle for right to repair β </strong><br><br><code>A battle rages between manufacturers and users over who can repair a product, with tech companies using security concerns as a weapon.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/05/03/cybersecurity-gurus-battle-for-right-to-repair/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4094">
<div class="body">
<div class="pull_right date details" title="03.05.2019 06:53:28">
06:53
</div>
<div class="text">
<strong>β Cryptocoin theft, scam and fraud could total more than $1.2b in Q1 β </strong><br><br><code>Crooks have developed "ingenious" new ways to drain user accounts and wallets, CipherTrace says, prodding regulators into action.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/05/03/cryptocoin-theft-scam-and-fraud-could-total-more-than-1-2b-in-q1/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4095">
<div class="body">
<div class="pull_right date details" title="03.05.2019 07:03:35">
07:03
</div>
<div class="text">
<strong>β Criminals are hiding in Telegram β but backdoors are not the answer β </strong><br><br><code>When it comes to an easy life, the criminals behind the fearful Anubis banking malware have become big fans of Twitter and, increasingly, the secure messaging of Telegram.</code><br><br><a href="https://nakedsecurity.sophos.com/2019/05/03/criminals-are-hiding-in-telegram-but-backdoors-are-not-the-answer/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message4096">
<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="03.05.2019 11:07:02">
11:07
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Why consumers still don't trust IoT devices π</strong><br><br><code>Privacy and security concerns frequently drive consumer smart device buying decisions, according to an Internet Society and Consumers International report.</code><br><br><a href="https://www.techrepublic.com/article/why-consumers-still-dont-trust-iot-devices/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message4097">
<div class="body">
<div class="pull_right date details" title="03.05.2019 11:07:03">
11:07
</div>
<div class="text">
<strong>π Why older employees are less likely to get tricked by phishing attacks π</strong><br><br><code>While Gen Zers think they won't fall for phishing scams, most don't even know what "phishing" means, according to a Google report.</code><br><br><a href="https://www.techrepublic.com/article/why-older-employees-are-less-likely-to-get-tricked-by-phishing-attacks/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Security on TechRepublic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message4098">
<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="03.05.2019 11:38:17">
11:38
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ How Storytelling Can Help Keep Your Company Safe π΄</strong><br><br><code>Well-crafted narratives can help you win over users in the battle to develop a sustainable cybersecurity culture.</code><br><br><a href="https://www.darkreading.com/endpoint/how-storytelling-can-help-keep-your-company-safe/a/d-id/1334548?_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="message4099">
<div class="body">
<div class="pull_right date details" title="03.05.2019 11:44:13">
11:44
</div>
<div class="text">
<strong>β Multiple Sierra Wireless AirLink Routers Open to Remote Code Execution β</strong><br><br><code>Critical flaws in the software of Sierra Wireless' AirLink routers enable an array of malicious attacks.</code><br><br><a href="https://threatpost.com/sierra-wireless-airlink-remote-code-execution/144332/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message4100">
<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="03.05.2019 12:05:24">
12:05
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Retefe Banking Trojan Resurfaces, Says Goodbye to Tor β</strong><br><br><code>The malware has new tricks, like using the stunnel encrypted tunneling mechanism and abusing a legitimate shareware app.</code><br><br><a href="https://threatpost.com/retefe-banking-trojan-tor/144336/">π Read</a><br><br>via "<em>Threatpost</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message4101">
<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="03.05.2019 13:26:21">
13:26
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ The 2019 State of Cloud Security π΄</strong><br><br><code>Enterprise cloud security is making real progress, but emerging technologies call for security teams to keep up the pace.</code><br><br><a href="https://www.darkreading.com/cloud/the-2019-state-of-cloud-security/d/d-id/1334604?_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="message4102">
<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="03.05.2019 13:51:32">
13:51
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ New Executive Order Aims to Grow Federal Cybersecurity Staff π΄</strong><br><br><code>The EO outlines a 'rotational assignment program' intended to help security practitioners develop their skills.</code><br><br><a href="https://www.darkreading.com/risk/new-executive-order-aims-to-grow-federal-cybersecurity-staff/d/d-id/1334609?_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="message4103">
<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="03.05.2019 14:15:30">
14:15
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Friday Five: 5/3 Edition π</strong><br><br><code>When coding is criminal, why HIPAA mandates breaches be reported after 60 days, and evaluating GDPR are all covered in this week's Friday Five.</code><br><br><a href="https://digitalguardian.com/blog/friday-five-5/3-edition">π Read</a><br><br>via "<em>Subscriber Blog RSS Feed</em> ".
</div>
</div>
</div>