-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages17.html
20118 lines (12572 loc) Β· 806 KB
/
messages17.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="messages16.html">
Previous messages
</a>
<div class="message service" id="message-676">
<div class="body details">
10 November 2020
</div>
</div>
<div class="message default clearfix" id="message16098">
<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="10.11.2020 15:21:22">
15:21
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Naked Security Live β Shop safe online (you know why!) β </strong><br><br><code>Here's the latest Naked Security Live video - enjoy (and please share with your friends)!</code><br><br><a href="https://nakedsecurity.sophos.com/2020/11/09/naked-security-live-shop-safe-online-you-know-why/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16099">
<div class="body">
<div class="pull_right date details" title="10.11.2020 15:21:23">
15:21
</div>
<div class="text">
<strong>β Smishing attack tells you βmobile payment problemβ β donβt fall for it! β </strong><br><br><code>Don't be fooled by a website that looks OK - it's easy for crooks to make an exact copy. (This time, they got just one letter wrong.)</code><br><br><a href="https://nakedsecurity.sophos.com/2020/11/10/smishing-attack-tells-you-mobile-payment-problem-dont-fall-for-it/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message16100">
<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="10.11.2020 16:15:15">
16:15
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Overlooked Security Risks of the M&A Rebound π΄</strong><br><br><code>Successful technology integration, post-merger, is tricky in any market, and never more so than with today's remote work environments and distributed IT infrastructure.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/overlooked-security-risks-of-the-manda-rebound/a/d-id/1339290?_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="message16101">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:26:49">
16:26
</div>
<div class="text">
<strong>βΌ CVE-2020-26811 βΌ</strong><br><br><code>SAP Commerce Cloud (Accelerator Payment Mock), versions - 1808, 1811, 1905, 2005, allows an unauthenticated attacker to submit a crafted request over a network to a particular SAP Commerce module URL which will be processed without further interaction, the crafted request leads to Server Side Request Forgery attack which could lead to retrieval of limited pieces of information about the service with no impact on integrity or availability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26811">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16102">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:26:50">
16:26
</div>
<div class="text">
<strong>βΌ CVE-2020-26807 βΌ</strong><br><br><code>SAP ERP Client for E-Bilanz, version - 1.0, installation sets Incorrect default filesystem permissions are set in its installation folder which allows anyone to modify the files in the folder.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26807">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16103">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:26:51">
16:26
</div>
<div class="text">
<strong>βΌ CVE-2020-26824 βΌ</strong><br><br><code>SAP Solution Manager (JAVA stack), version - 7.20, allows an unauthenticated attacker to compromise the system because of missing authorization checks in the Upgrade Legacy Ports Service, this has an impact to the integrity and availability of the service.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26824">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16104">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:26:53">
16:26
</div>
<div class="text">
<strong>βΌ CVE-2020-26820 βΌ</strong><br><br><code>SAP NetWeaver AS JAVA, versions - 7.20, 7.30, 7.31, 7.40, 7.50, allows an attacker who is authenticated as an administrator to use the administrator console, to expose unauthenticated access to the file system and upload a malicious file. The attacker or another user can then use a separate mechanism to execute OS commands through the uploaded file leading to Privilege Escalation and completely compromise the confidentiality, integrity and availability of the server operating system and any application running on it.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26820">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16105">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:26:54">
16:26
</div>
<div class="text">
<strong>βΌ CVE-2020-26823 βΌ</strong><br><br><code>SAP Solution Manager (JAVA stack), version - 7.20, allows an unauthenticated attacker to compromise the system because of missing authorization checks in the Upgrade Diagnostics Agent Connection Service, this has an impact to the integrity and availability of the service.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26823">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16106">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:26:56">
16:26
</div>
<div class="text">
<strong>βΌ CVE-2020-28055 βΌ</strong><br><br><code>A vulnerability in the TCL Android Smart TV series V8-R851T02-LF1 V295 and below and V8-T658T01-LF1 V373 and below by TCL Technology Group Corporation allows a local unprivileged attacker, such as a malicious App, to read & write to the /data/vendor/tcl, /data/vendor/upgrade, and /var/TerminalManager directories within the TV file system. An attacker, such as a malicious APK or local unprivileged user could perform fake system upgrades by writing to the /data/vendor/upgrage folder.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-28055">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16107">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:26:57">
16:26
</div>
<div class="text">
<strong>βΌ CVE-2020-27146 βΌ</strong><br><br><code>The Core component of TIBCO Software Inc.'s TIBCO iProcess Workspace (Browser) contains a vulnerability that theoretically allows an unauthenticated attacker with network access to execute a Cross Site Request Forgery (CSRF) attack on the affected system. A successful attack using this vulnerability requires human interaction from an authenticated user other than the attacker. Affected releases are TIBCO Software Inc.'s TIBCO iProcess Workspace (Browser): versions 11.6.0 and below.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-27146">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16108">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:26:59">
16:26
</div>
<div class="text">
<strong>βΌ CVE-2020-26810 βΌ</strong><br><br><code>SAP Commerce Cloud (Accelerator Payment Mock), versions - 1808, 1811, 1905, 2005, allows an unauthenticated attacker to submit a crafted request over a network to a particular SAP Commerce module URL which will be processed without further interaction, the crafted request can render the SAP Commerce service itself unavailable leading to Denial of Service with no impact on confidentiality or integrity.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26810">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16109">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:27:00">
16:27
</div>
<div class="text">
<strong>βΌ CVE-2020-6316 βΌ</strong><br><br><code>SAP ERP and SAP S/4 HANA allows an authenticated user to see cost records to objects to which he has no authorization in PS reporting, leading to Missing Authorization check.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-6316">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16110">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:27:49">
16:27
</div>
<div class="text">
<strong>βΌ CVE-2020-26808 βΌ</strong><br><br><code>SAP AS ABAP(DMIS), versions - 2011_1_620, 2011_1_640, 2011_1_700, 2011_1_710, 2011_1_730, 2011_1_731, 2011_1_752, 2020 and SAP S4 HANA(DMIS), versions - 101, 102, 103, 104, 105, allows an authenticated attacker to inject arbitrary code into function module leading to code injection that can be executed in the application which affects the confidentiality, availability and integrity of the application.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26808">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16111">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:27:51">
16:27
</div>
<div class="text">
<strong>βΌ CVE-2020-26819 βΌ</strong><br><br><code>SAP NetWeaver AS ABAP (Web Dynpro), versions - 731, 740, 750, 751, 752, 753, 754, 755, 782, allows an authenticated user to access Web Dynpro components, that allows them to read and delete database logfiles because of Improper Access Control.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26819">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16112">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:27:53">
16:27
</div>
<div class="text">
<strong>βΌ CVE-2020-26815 βΌ</strong><br><br><code>SAP Fiori Launchpad (News tile Application), versions - 750,751,752,753,754,755, allows an unauthorized attacker to send a crafted request to a vulnerable web application. It is usually used to target internal systems behind firewalls that are normally inaccessible to an attacker from the external network to retrieve sensitive / confidential resources which are otherwise restricted for internal usage only, resulting in a Server-Side Request Forgery vulnerability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26815">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16113">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:27:54">
16:27
</div>
<div class="text">
<strong>βΌ CVE-2020-26814 βΌ</strong><br><br><code>SAP Process Integration (PGP Module - Business-to-Business Add On), version - 1.0, allows an attacker to read PGP Keys under certain conditions in the PGP Module of Business-to-Business Add-On, these keys can then be used to read messages processed by the module leading to Information Disclosure.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26814">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16114">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:27:55">
16:27
</div>
<div class="text">
<strong>βΌ CVE-2020-26817 βΌ</strong><br><br><code>SAP 3D Visual Enterprise Viewer, version - 9, allows an user to open manipulated HPGL file received from untrusted sources which results in crashing of the application and becoming temporarily unavailable until the user restarts the application, this is caused due to Improper Input Validation.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26817">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16115">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:27:57">
16:27
</div>
<div class="text">
<strong>βΌ CVE-2020-27403 βΌ</strong><br><br><code>A vulnerability in the TCL Android Smart TV series V8-R851T02-LF1 V295 and below and V8-T658T01-LF1 V373 and below by TCL Technology Group Corporation allows an attacker on the adjacent network to arbitrarily browse and download sensitive files over an insecure web server running on port 7989 that lists all files & directories. An unprivileged remote attacker on the adjacent network, can download most system files, leading to serious critical information disclosure.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-27403">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16116">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:27:58">
16:27
</div>
<div class="text">
<strong>βΌ CVE-2020-26809 βΌ</strong><br><br><code>SAP Commerce Cloud, versions- 1808,1811,1905,2005, allows an attacker to bypass existing authentication and permission checks via the '/medias' endpoint hence gaining access to Secure Media folders. This folder could contain sensitive files that results in disclosure of sensitive information and impact system configuration confidentiality.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26809">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16117">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:27:59">
16:27
</div>
<div class="text">
<strong>βΌ CVE-2020-25074 βΌ</strong><br><br><code>The cache action in action/cache.py in MoinMoin through 1.9.10 allows directory traversal through a crafted HTTP request. An attacker who can upload attachments to the wiki can use this to achieve remote code execution.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-25074">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16118">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:28:00">
16:28
</div>
<div class="text">
<strong>βΌ CVE-2020-26818 βΌ</strong><br><br><code>SAP NetWeaver AS ABAP (Web Dynpro), versions - 731, 740, 750, 751, 752, 753, 754, 755, 782, allows an authenticated user to access Web Dynpro components, which reveals sensitive system information that would otherwise be restricted to highly privileged users because of missing authorization, resulting in Information Disclosure.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26818">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16119">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:28:02">
16:28
</div>
<div class="text">
<strong>βΌ CVE-2020-26822 βΌ</strong><br><br><code>SAP Solution Manager (JAVA stack), version - 7.20, allows an unauthenticated attacker to compromise the system because of missing authorization checks in the Outside Discovery Configuration Service, this has an impact to the integrity and availability of the service.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26822">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16120">
<div class="body">
<div class="pull_right date details" title="10.11.2020 16:28:04">
16:28
</div>
<div class="text">
<strong>βΌ CVE-2020-26821 βΌ</strong><br><br><code>SAP Solution Manager (JAVA stack), version - 7.20, allows an unauthenticated attacker to compromise the system because of missing authorization checks in the SVG Converter Service, this has an impact to the integrity and availability of the service.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26821">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message16121">
<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="10.11.2020 17:45:12">
17:45
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Cloud Usage, Biometrics Surge As Remote Work Grows Permanent π΄</strong><br><br><code>A new report reveals organizations are increasing their adoption of biometric authentication and disallowing SMS as a login method.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/cloud-usage-biometrics-surge-as-remote-work-grows-permanent/d/d-id/1339413?_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="message16122">
<div class="body">
<div class="pull_right date details" title="10.11.2020 17:53:07">
17:53
</div>
<div class="text">
<strong>π New Government Contractor Cybersecurity Requirements Loom π</strong><br><br><code>A new cybersecurity rule will go into effect for DoD contractors at the end of the month to enhance the protection of unclassified information within the supply chain.</code><br><br><a href="https://digitalguardian.com/blog/new-government-contractor-cybersecurity-requirements-loom">π Read</a><br><br>via "<em>Digital Guardian</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16123">
<div class="body">
<div class="pull_right date details" title="10.11.2020 18:07:32">
18:07
</div>
<div class="text">
<strong>β Scalper-Bots Shake Down Desperate PS5, Xbox Series X Shoppers β</strong><br><br><code>Retail bots are helping scalpers scoop up PS5, Xbox Series X inventory and charge massive markups.</code><br><br><a href="https://threatpost.com/scalper-bots-shake-down-desperate-ps5-xbox-series-x-shoppers/161090/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16124">
<div class="body">
<div class="pull_right date details" title="10.11.2020 18:07:34">
18:07
</div>
<div class="text">
<strong>β Colossal Intel Update Anchored by Critical Privilege-Escalation Bugs β</strong><br><br><code>Intel released 40 security advisories in total, addressing critical- and high-severity flaws across its Active Management Technology, Wireless Bluetooth and NUC products.</code><br><br><a href="https://threatpost.com/intel-update-critical-privilege-escalation-bugs/161087/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message16125">
<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="10.11.2020 18:27:55">
18:27
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2020-28368 βΌ</strong><br><br><code>Xen through 4.14.x allows guest OS administrators to obtain sensitive information (such as AES keys from outside the guest) via a side-channel attack on a power/energy monitoring interface, aka a "Platypus" attack. NOTE: there is only one logically independent fix: to change the access control for each such interface in Xen.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-28368">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16126">
<div class="body">
<div class="pull_right date details" title="10.11.2020 18:27:56">
18:27
</div>
<div class="text">
<strong>βΌ CVE-2019-7357 βΌ</strong><br><br><code>Subrion CMS 4.2.1 has CSRF in panel/modules/plugins/. The attacker can remotely activate/deactivate the plugins.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-7357">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16127">
<div class="body">
<div class="pull_right date details" title="10.11.2020 18:27:57">
18:27
</div>
<div class="text">
<strong>βΌ CVE-2020-23968 βΌ</strong><br><br><code>Ilex International Sign&go Workstation Security Suite 7.1 allows elevation of privileges via a symlink attack on ProgramData\Ilex\S&G\Logs\000-sngWSService1.log.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-23968">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16128">
<div class="body">
<div class="pull_right date details" title="10.11.2020 18:27:58">
18:27
</div>
<div class="text">
<strong>βΌ CVE-2020-27165 βΌ</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: CVE-2020-28050. Reason: This candidate is a reservation duplicate of CVE-2020-28050. Notes: All CVE users should reference CVE-2020-28050 instead of this candidate. All references and descriptions in this candidate have been removed to prevent accidental usage.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-27165">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16129">
<div class="body">
<div class="pull_right date details" title="10.11.2020 18:37:32">
18:37
</div>
<div class="text">
<strong>β Microsoft Patch Tuesday Update Fixes 17 Critical Bugs β</strong><br><br><code>Remote code execution vulnerabilities dominate this monthβs security bulletin of warnings and patches.</code><br><br><a href="https://threatpost.com/microsoft-patch-tuesday-critical-bugs/161098/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message16130">
<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="10.11.2020 19:15:16">
19:15
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Microsoft Patches Windows Kernel Flaw Under Active Attack π΄</strong><br><br><code>This month's Patch Tuesday addressed a Windows zero-day in a release of 112 vulnerabilities, 17 of which are critical.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/microsoft-patches-windows-kernel-flaw-under-active-attack/d/d-id/1339415?_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="message16131">
<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="10.11.2020 20:15:16">
20:15
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Claroty Details Vulnerabilities in Schneider PLCs π΄</strong><br><br><code>The vulnerabilities in a common line of programmable logic controllers could allow attackers to gain control of industrial equipment.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/claroty-details-vulnerabilities-in-schneider-plcs/d/d-id/1339417?_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="message16132">
<div class="body">
<div class="pull_right date details" title="10.11.2020 20:27:22">
20:27
</div>
<div class="text">
<strong>βΌ CVE-2020-25268 βΌ</strong><br><br><code>Remote Code Execution can occur via the external news feed in ILIAS 6.4 because of incorrect parameter sanitization for Magpie RSS data.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-25268">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16133">
<div class="body">
<div class="pull_right date details" title="10.11.2020 20:27:23">
20:27
</div>
<div class="text">
<strong>βΌ CVE-2020-25267 βΌ</strong><br><br><code>An XSS issue exists in the question-pool file-upload preview feature in ILIAS 6.4.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-25267">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16134">
<div class="body">
<div class="pull_right date details" title="10.11.2020 20:27:24">
20:27
</div>
<div class="text">
<strong>βΌ CVE-2020-28408 βΌ</strong><br><br><code>The server in Dundas BI through 8.0.0.1001 allows XSS via an HTML label when creating or editing a dashboard.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-28408">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16135">
<div class="body">
<div class="pull_right date details" title="10.11.2020 20:27:25">
20:27
</div>
<div class="text">
<strong>βΌ CVE-2020-28409 βΌ</strong><br><br><code>The server in Dundas BI through 8.0.0.1001 allows XSS via addition of a Component (e.g., a button) when events such as click, hover, etc. occur.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-28409">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16136">
<div class="body">
<div class="pull_right date details" title="10.11.2020 20:27:27">
20:27
</div>
<div class="text">
<strong>βΌ CVE-2020-24367 βΌ</strong><br><br><code>Incorrect file permissions in BlueStacks 4 through 4.230 on Windows allow a local attacker to escalate privileges by modifying a file that is later executed by a higher-privileged user.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-24367">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16137">
<div class="body">
<div class="pull_right date details" title="10.11.2020 20:27:28">
20:27
</div>
<div class="text">
<strong>βΌ CVE-2020-24063 βΌ</strong><br><br><code>The Canto plugin 1.3.0 for WordPress allows includes/lib/download.php?subdomain= SSRF.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-24063">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message16138">
<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="10.11.2020 20:45:18">
20:45
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Malware Hidden in Encrypted Traffic Surges Amid Pandemic π΄</strong><br><br><code>Zscaler says attacks involving the use of SSL/TLS encryption jumped 260% in the first nine months of 2020 compared to the same period last year.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/malware-hidden-in-encrypted-traffic-surges-amid-pandemic/d/d-id/1339420?_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="message16139">
<div class="body">
<div class="pull_right date details" title="10.11.2020 20:45:19">
20:45
</div>
<div class="text">
<strong>π΄ Flaws in Privileged Management Apps Expose Machines to Attack π΄</strong><br><br><code>The Intel Support Assistant is the latest Windows utility to be found that could expose millions of computers to privilege-escalation attacks through file manipulation and symbolic links.</code><br><br><a href="https://www.darkreading.com/application-security/flaws-in-privileged-management-apps-expose-machines-to-attack/d/d-id/1339419?_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-677">
<div class="body details">
11 November 2020
</div>
</div>
<div class="message default clearfix" id="message16140">
<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="11.11.2020 03:28:25">
03:28
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2020-16126 βΌ</strong><br><br><code>An Ubuntu-specific modification to AccountsService in versions before 0.6.55-0ubuntu13.2, among other earlier versions, improperly dropped the ruid, allowing untrusted users to send signals to AccountService, thus stopping it from handling D-Bus messages in a timely fashion.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-16126">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16141">
<div class="body">
<div class="pull_right date details" title="11.11.2020 03:28:26">
03:28
</div>
<div class="text">
<strong>βΌ CVE-2020-16127 βΌ</strong><br><br><code>An Ubuntu-specific modification to AccountsService in versions before 0.6.55-0ubuntu13.2, among other earlier versions, would perform unbounded read operations on user-controlled ~/.pam_environment files, allowing an infinite loop if /dev/zero is symlinked to this location.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-16127">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message16142">
<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="11.11.2020 08:34:54">
08:34
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2020-17053 βΌ</strong><br><br><code>, aka 'Internet Explorer Memory Corruption Vulnerability'.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-17053">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16143">
<div class="body">
<div class="pull_right date details" title="11.11.2020 08:34:55">
08:34
</div>
<div class="text">
<strong>βΌ CVE-2020-17019 βΌ</strong><br><br><code>, aka 'Microsoft Excel Remote Code Execution Vulnerability'. This CVE ID is unique from CVE-2020-17064, CVE-2020-17065, CVE-2020-17066.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-17019">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16144">
<div class="body">
<div class="pull_right date details" title="11.11.2020 08:34:56">
08:34
</div>
<div class="text">
<strong>βΌ CVE-2020-17055 βΌ</strong><br><br><code>, aka 'Windows Remote Access Elevation of Privilege Vulnerability'. This CVE ID is unique from CVE-2020-17025, CVE-2020-17026, CVE-2020-17027, CVE-2020-17028, CVE-2020-17031, CVE-2020-17032, CVE-2020-17033, CVE-2020-17034, CVE-2020-17043, CVE-2020-17044.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-17055">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16145">
<div class="body">
<div class="pull_right date details" title="11.11.2020 08:34:57">
08:34
</div>
<div class="text">
<strong>βΌ CVE-2020-17071 βΌ</strong><br><br><code>, aka 'Windows Delivery Optimization Information Disclosure Vulnerability'.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-17071">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16146">
<div class="body">
<div class="pull_right date details" title="11.11.2020 08:34:58">
08:34
</div>
<div class="text">
<strong>βΌ CVE-2020-17070 βΌ</strong><br><br><code>, aka 'Windows Update Medic Service Elevation of Privilege Vulnerability'.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-17070">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message16147">
<div class="body">
<div class="pull_right date details" title="11.11.2020 08:35:02">
08:35
</div>
<div class="text">
<strong>βΌ CVE-2020-17106 βΌ</strong><br><br><code>, aka 'HEVC Video Extensions Remote Code Execution Vulnerability'. This CVE ID is unique from CVE-2020-17107, CVE-2020-17108, CVE-2020-17109, CVE-2020-17110.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-17106">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>