-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages23.html
19622 lines (12262 loc) Β· 863 KB
/
messages23.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="messages22.html">
Previous messages
</a>
<div class="message service" id="message-738">
<div class="body details">
13 January 2021
</div>
</div>
<div class="message default clearfix" id="message22098">
<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="13.01.2021 15:50:04">
15:50
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Huntress Acquires EDR Technology From Level Effect π΄</strong><br><br><code>Huntress seeks to improve its detection and response capabilities with a more comprehensive view of endpoint security.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/huntress-acquires-edr-technology-from-level-effect/d/d-id/1339893?_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="message22099">
<div class="body">
<div class="pull_right date details" title="13.01.2021 15:50:05">
15:50
</div>
<div class="text">
<strong>π΄ Virtual Pen-Testing Competition Tasks College Students With Running a Red Team Operation π΄</strong><br><br><code>Aimed at developing offensive cyber talent, last weekend's sixth annual Collegiate Penetration Testing Competition brought out some of the brightest from RIT and Stanford, among other universities.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/virtual-pen-testing-competition-tasks-college-students-with-running-a-red-team-operation/d/d-id/1339890?_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="message22100">
<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="13.01.2021 18:09:53">
18:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π¦Ώ CES 2021: All of the business tech news you need to know π¦Ώ</strong><br><br><code>Don't miss TechRepublic's CES 2021 coverage, which includes product announcements from Lenovo, Samsung, LG, and Dell about PCs, laptops, software, robots, monitors, and TVs.</code><br><br><a href="https://www.techrepublic.com/article/ces-2021-all-of-the-business-tech-news-you-need-to-know/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message22101">
<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="13.01.2021 19:11:40">
19:11
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ SolarWinds Attackers May Have Hit Mimecast, Driving New Concerns π΄</strong><br><br><code>Mimecast no longer uses the SolarWinds Orion network management software that served as an attack vector for thousands of organizations.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/solarwinds-attackers-may-have-hit-mimecast-driving-new-concerns/d/d-id/1339895?_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="message22102">
<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="13.01.2021 20:48:35">
20:48
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2021-1310 βΌ</strong><br><br><code>A vulnerability in the web-based management interface of Cisco Webex Meetings could allow an unauthenticated, remote attacker to redirect a user to an untrusted web page, bypassing the warning mechanism that should prompt the user before the redirection. This vulnerability is due to improper input validation of the URL parameters in an HTTP request. An attacker could exploit this vulnerability by persuading a user to click a crafted link. A successful exploit could allow the attacker to redirect a user to a malicious website, bypassing the Webex URL check that should result in a warning before the redirection to the web page. Attackers may use this type of vulnerability, known as an open redirect attack, as part of a phishing attack to convince users to unknowingly visit malicious sites.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1310">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22103">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:36">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1192 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1192">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22104">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:37">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1209 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1209">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22105">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:38">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1307 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1307">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22106">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:39">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1202 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1202">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22107">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:43">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1240 βΌ</strong><br><br><code>A vulnerability in the loading process of specific DLLs in Cisco Proximity Desktop for Windows could allow an authenticated, local attacker to load a malicious library. To exploit this vulnerability, the attacker must have valid credentials on the Windows system. This vulnerability is due to incorrect handling of directory paths at run time. An attacker could exploit this vulnerability by placing a malicious DLL file in a specific location on the targeted system. This file will execute when the vulnerable application launches. A successful exploit could allow the attacker to execute arbitrary code on the targeted system with the privileges of another user&rsquo;s account.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1240">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22108">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:44">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1146 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to inject arbitrary commands that are executed with root privileges. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to a targeted device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on an affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1146">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22109">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:45">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1150 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to inject arbitrary commands that are executed with root privileges. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to a targeted device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on an affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1150">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22110">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:45">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1144 βΌ</strong><br><br><code>A vulnerability in Cisco Connected Mobile Experiences (CMX) could allow a remote, authenticated attacker without administrative privileges to alter the password of any user on an affected system. The vulnerability is due to incorrect handling of authorization checks for changing a password. An authenticated attacker without administrative privileges could exploit this vulnerability by sending a modified HTTP request to an affected device. A successful exploit could allow the attacker to alter the passwords of any user on the system, including an administrative user, and then impersonate that user.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1144">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22111">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:46">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1236 βΌ</strong><br><br><code>Multiple Cisco products are affected by a vulnerability in the Snort application detection engine that could allow an unauthenticated, remote attacker to bypass the configured policies on an affected system. The vulnerability is due to a flaw in the detection algorithm. An attacker could exploit this vulnerability by sending crafted packets that would flow through an affected system. A successful exploit could allow the attacker to bypass the configured policies and deliver a malicious payload to the protected network.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1236">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22112">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:50">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1156 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to conduct cross-site scripting (XSS) attacks against a user of the interface. The vulnerabilities are due to insufficient input validation by the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary script code in the context of the affected interface or access sensitive, browser-based information. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1156">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22113">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:51">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2020-9140 βΌ</strong><br><br><code>There is a vulnerability with buffer access with incorrect length value in some Huawei Smartphone.Unauthorized users may trigger code execution when a buffer overflow occurs.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-9140">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22114">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:51">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1148 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to inject arbitrary commands that are executed with root privileges. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to a targeted device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on an affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1148">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22115">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:52">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1159 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1159">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22116">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:53">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2020-9143 βΌ</strong><br><br><code>There is a missing authentication vulnerability in some Huawei smartphone.Successful exploitation of this vulnerability may lead to low-sensitive information exposure.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-9143">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22117">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:57">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1201 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1201">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22118">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:58">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1200 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1200">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22119">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:59">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1207 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1207">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22120">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:48:59">
20:48
</div>
<div class="text">
<strong>βΌ CVE-2021-1206 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1206">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22121">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:49:00">
20:49
</div>
<div class="text">
<strong>βΌ CVE-2021-1181 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1181">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22122">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:39">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1204 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1204">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22123">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:40">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1163 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1163">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22124">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:40">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1239 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Firepower Management Center (FMC) could allow an authenticated, remote attacker to conduct a stored cross-site scripting (XSS) attack against a user of the interface of an affected system. The vulnerabilities exist because the web-based management interface does not properly validate user-supplied input. An attacker could exploit these vulnerabilities by persuading a user of the interface to click a crafted link. A successful exploit could allow the attacker to execute arbitrary script code in the context of the affected interface or access sensitive, browser-based information.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1239">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22125">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:41">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1193 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1193">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22126">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:42">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1145 βΌ</strong><br><br><code>A vulnerability in the Secure FTP (SFTP) of Cisco StarOS for Cisco ASR 5000 Series Routers could allow an authenticated, remote attacker to read arbitrary files on an affected device. To exploit this vulnerability, the attacker would need to have valid credentials on the affected device. The vulnerability is due to insecure handling of symbolic links. An attacker could exploit this vulnerability by sending a crafted SFTP command to an affected device. A successful exploit could allow the attacker to read arbitrary files on the affected device.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1145">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22127">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:46">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1189 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1189">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22128">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:47">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1149 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to inject arbitrary commands that are executed with root privileges. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to a targeted device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on an affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1149">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22129">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:48">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1188 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1188">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22130">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:48">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1242 βΌ</strong><br><br><code>A vulnerability in Cisco Webex Teams could allow an unauthenticated, remote attacker to manipulate file names within the messaging interface. The vulnerability exists because the affected software mishandles character rendering. An attacker could exploit this vulnerability by sharing a file within the application interface. A successful exploit could allow the attacker to modify how the shared file name displays within the interface, which could allow the attacker to conduct phishing or spoofing attacks.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1242">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22131">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:49">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1162 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1162">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22132">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:53">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1216 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1216">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22133">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:54">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1173 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1173">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22134">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:55">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2020-9203 βΌ</strong><br><br><code>There is a resource management errors vulnerability in Huawei P30. Local attackers construct broadcast message for some application, causing this application to send this broadcast message and impact the customer's use experience.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-9203">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22135">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:56">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2020-9139 βΌ</strong><br><br><code>There is a improper input validation vulnerability in some Huawei Smartphone.Successful exploit of this vulnerability can cause memory access errors and denial of service.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-9139">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22136">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:54:56">
20:54
</div>
<div class="text">
<strong>βΌ CVE-2021-1179 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1179">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22137">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:55:00">
20:55
</div>
<div class="text">
<strong>βΌ CVE-2021-1190 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1190">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22138">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:55:01">
20:55
</div>
<div class="text">
<strong>βΌ CVE-2021-1196 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1196">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22139">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:55:02">
20:55
</div>
<div class="text">
<strong>βΌ CVE-2021-1165 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1165">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22140">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:55:03">
20:55
</div>
<div class="text">
<strong>βΌ CVE-2021-1160 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1160">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22141">
<div class="body">
<div class="pull_right date details" title="13.01.2021 20:55:04">
20:55
</div>
<div class="text">
<strong>π¦Ώ CES 2021: All of the business tech news you need to know π¦Ώ</strong><br><br><code>Don't miss TechRepublic's CES 2021 coverage, which includes product announcements from Lenovo, Samsung, LG, and Dell about PCs, laptops, software, robots, monitors, and TVs.</code><br><br><a href="https://www.techrepublic.com/article/ces-2021-all-of-the-business-tech-news-you-need-to-know/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22142">
<div class="body">
<div class="pull_right date details" title="13.01.2021 21:00:42">
21:00
</div>
<div class="text">
<strong>βΌ CVE-2021-1215 βΌ</strong><br><br><code>Multiple vulnerabilities in the web-based management interface of Cisco Small Business RV110W, RV130, RV130W, and RV215W Routers could allow an authenticated, remote attacker to execute arbitrary code or cause an affected device to restart unexpectedly. The vulnerabilities are due to improper validation of user-supplied input in the web-based management interface. An attacker could exploit these vulnerabilities by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition. To exploit these vulnerabilities, an attacker would need to have valid administrator credentials on the affected device. Cisco has not released software updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1215">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22143">
<div class="body">
<div class="pull_right date details" title="13.01.2021 21:00:44">
21:00
</div>
<div class="text">
<strong>βΌ CVE-2021-1311 βΌ</strong><br><br><code>A vulnerability in the reclaim host role feature of Cisco Webex Meetings and Cisco Webex Meetings Server could allow an authenticated, remote attacker to take over the host role during a meeting. This vulnerability is due to a lack of protection against brute forcing of the host key. An attacker could exploit this vulnerability by sending crafted requests to a vulnerable Cisco Webex Meetings or Webex Meetings Server site. A successful exploit would require the attacker to have access to join a Webex meeting, including applicable meeting join links and passwords. A successful exploit could allow the attacker to acquire or take over the host role for a meeting.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1311">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message22144">
<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="13.01.2021 21:19:48">
21:19
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π¦Ώ CES 2021: All of the business tech news you need to know π¦Ώ</strong><br><br><code>Don't miss TechRepublic's CES 2021 coverage, which includes product announcements from Lenovo, Samsung, LG, and Dell about PCs, laptops, software, robots, monitors, and TVs.</code><br><br><a href="https://www.techrepublic.com/article/ces-2021-all-of-the-business-tech-news-you-need-to-know/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message service" id="message-739">
<div class="body details">
14 January 2021
</div>
</div>
<div class="message default clearfix" id="message22145">
<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="14.01.2021 03:49:02">
03:49
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2020-16119 βΌ</strong><br><br><code>Use-after-free vulnerability in the Linux kernel exploitable by a local attacker due to reuse of a DCCP socket with an attached dccps_hc_tx_ccid object as a listener after being released. Fixed in Ubuntu Linux kernel 5.4.0-51.56, 5.3.0-68.63, 4.15.0-121.123, 4.4.0-193.224, 3.13.0.182.191 and 3.2.0-149.196.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-16119">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message22146">
<div class="body">
<div class="pull_right date details" title="14.01.2021 03:49:03">
03:49
</div>
<div class="text">
<strong>βΌ CVE-2021-3138 βΌ</strong><br><br><code>In Discourse 2.7.0 through beta1, a rate-limit bypass leads to a bypass of the 2FA requirement for certain forms.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-3138">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message22147">
<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="14.01.2021 09:50:01">
09:50
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π¦Ώ Why cyberinsurance can save your business π¦Ώ</strong><br><br><code>The threat of loss of an entire company from a cyberattack is real. Technology and user education help, but not enough.</code><br><br><a href="https://www.techrepublic.com/article/why-cyberinsurance-can-save-your-business/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message22148">
<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="14.01.2021 10:41:43">
10:41
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Ring Adds End-to-End Encryption to Quell Security Uproar β</strong><br><br><code>The optional feature was released free to users in a technical preview this week, adding a new layer of security to service, which has been plagued by privacy concerns.</code><br><br><a href="https://threatpost.com/ring-adds-end-to-end-encryption-to-quell-security-uproar/163042/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>