-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages31.html
19222 lines (12012 loc) · 809 KB
/
messages31.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="messages30.html">
Previous messages
</a>
<div class="message service" id="message-917">
<div class="body details">
6 October 2021
</div>
</div>
<div class="message default clearfix" id="message30098">
<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="06.10.2021 17:32:33">
17:32
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2021-25472 ‼</strong><br><br><code>An improper access control vulnerability in BluetoothSettingsProvider prior to SMR Oct-2021 Release 1 allows untrusted application to overwrite some Bluetooth information.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25472">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30099">
<div class="body">
<div class="pull_right date details" title="06.10.2021 17:32:34">
17:32
</div>
<div class="text">
<strong>‼ CVE-2021-41126 ‼</strong><br><br><code>October is a Content Management System (CMS) and web platform built on the the Laravel PHP Framework. In affected versions administrator accounts which had previously been deleted may still be able to sign in to the backend using October CMS v2.0. The issue has been patched in v2.1.12 of the october/october package. There are no workarounds for this issue and all users should update.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41126">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30100">
<div class="body">
<div class="pull_right date details" title="06.10.2021 17:32:35">
17:32
</div>
<div class="text">
<strong>‼ CVE-2021-29908 ‼</strong><br><br><code>The IBM TS7700 Management Interface is vulnerable to unauthenticated access. By accessing a specially-crafted URL, an attacker may gain administrative access to the Management Interface without authentication. IBM X-Force ID: 207747.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-29908">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30101">
<div class="body">
<div class="pull_right date details" title="06.10.2021 17:32:37">
17:32
</div>
<div class="text">
<strong>‼ CVE-2021-25478 ‼</strong><br><br><code>A possible stack-based buffer overflow vulnerability in Exynos CP Chipset prior to SMR Oct-2021 Release 1 allows arbitrary memory write and code execution.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25478">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30102">
<div class="body">
<div class="pull_right date details" title="06.10.2021 17:32:38">
17:32
</div>
<div class="text">
<strong>‼ CVE-2021-25481 ‼</strong><br><br><code>An improper error handling in Exynos CP booting driver prior to SMR Oct-2021 Release 1 allows local attackers to bypass a Secure Memory Protector of Exynos CP Memory.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25481">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30103">
<div class="body">
<div class="pull_right date details" title="06.10.2021 17:47:02">
17:47
</div>
<div class="text">
<strong>❌ VMware ESXi Servers Encrypted by Lightning-Fast Python Script ❌</strong><br><br><code>The little snippet of Python code strikes fast and nasty, taking less than three hours to complete a ransomware attack from initial breach to encryption.</code><br><br><a href="https://threatpost.com/vmware-esxi-encrypted-python-script-ransomware/175374/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30104">
<div class="body">
<div class="pull_right date details" title="06.10.2021 17:57:43">
17:57
</div>
<div class="text">
<strong>🕴 Aerospace, Telecommunications Companies Victims of Stealthy Iranian Cyber-Espionage Campaign 🕴</strong><br><br><code>Since at least 2018, "MalKamak" group has targeted firms in the Middle East, Russia, and other areas to steal sensitive data, security vendor says.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/aerospace-firms-telcos-victim-of-stealthy-iranian-cyber-espionage-campaign">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message30105">
<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="06.10.2021 18:27:43">
18:27
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 MacOS Security: What Security Teams Should Know 🕴</strong><br><br><code>As more macOS patches emerge and cybercriminals and nation-states take aim at the platform, experts discuss how macOS security has evolved and how businesses can protect employees.</code><br><br><a href="https://www.darkreading.com/edge-articles/mac-attacks-how-secure-are-the-macs-in-your-enterprise">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message30106">
<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="06.10.2021 18:47:05">
18:47
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ Canopy Parental Control App Wide Open to Unpatched XSS Bugs ❌</strong><br><br><code>The possible cyberattacks include disabling monitoring, location-tracking of children and malicious redirects of parent-console users.</code><br><br><a href="https://threatpost.com/canopy-parental-control-app-unpatched-xss-bugs/175384/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30107">
<div class="body">
<div class="pull_right date details" title="06.10.2021 18:57:46">
18:57
</div>
<div class="text">
<strong>🕴 Space ISAC and NY Metro InfraGard Members Alliance Announce Collaboration to Advance the Mission of Cybersecurity in Space 🕴</strong><br><br><code>The collaboration is designed to promote broad-based participation by members of both organizations through enhanced educational initiatives, user-and operator-training, and intelligence-sharing activities in the space domain.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/space-isac-and-ny-metro-infragard-members-alliance-announce-collaboration-to-advance-the-mission-of-cybersecurity-in-space">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30108">
<div class="body">
<div class="pull_right date details" title="06.10.2021 18:57:47">
18:57
</div>
<div class="text">
<strong>🕴 5-Year Breach May Have Exposed Billions of Text Messages 🕴</strong><br><br><code>The attack affected Syniverse, a major telecom company that annually routes billions of text messages for hundreds of mobile carriers.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/five-year-breach-may-have-exposed-billions-of-text-messages">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message30109">
<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="06.10.2021 19:32:20">
19:32
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2021-34735 ‼</strong><br><br><code>Multiple vulnerabilities in the Cisco ATA 190 Series Analog Telephone Adapter Software could allow an attacker to perform a command injection attack resulting in remote code execution or cause a denial of service (DoS) condition on an affected device. For more information about these vulnerabilities, see the Details section of this advisory.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34735">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30110">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:21">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34710 ‼</strong><br><br><code>Multiple vulnerabilities in the Cisco ATA 190 Series Analog Telephone Adapter Software could allow an attacker to perform a command injection attack resulting in remote code execution or cause a denial of service (DoS) condition on an affected device. For more information about these vulnerabilities, see the Details section of this advisory.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34710">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30111">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:22">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34742 ‼</strong><br><br><code>A vulnerability in the web-based management interface of Cisco Vision Dynamic Signage Director could allow an unauthenticated, remote attacker to conduct a cross-site scripting (XSS) attack against a user of the interface on an affected device. This vulnerability is due to insufficient validation of user-supplied input by the web-based management interface. An attacker could exploit this vulnerability 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 interface or access sensitive, browser-based information.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34742">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30112">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:24">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34775 ‼</strong><br><br><code>Multiple vulnerabilities exist in the Link Layer Discovery Protocol (LLDP) implementation for Cisco Small Business 220 Series Smart Switches. An unauthenticated, adjacent attacker could perform the following: Execute code on the affected device or cause it to reload unexpectedly Cause LLDP database corruption on the affected device For more information about these vulnerabilities, see the Details section of this advisory. Note: LLDP is a Layer 2 protocol. To exploit these vulnerabilities, an attacker must be in the same broadcast domain as the affected device (Layer 2 adjacent). Cisco has released firmware updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34775">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30113">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:24">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34777 ‼</strong><br><br><code>Multiple vulnerabilities exist in the Link Layer Discovery Protocol (LLDP) implementation for Cisco Small Business 220 Series Smart Switches. An unauthenticated, adjacent attacker could perform the following: Execute code on the affected device or cause it to reload unexpectedly Cause LLDP database corruption on the affected device For more information about these vulnerabilities, see the Details section of this advisory. Note: LLDP is a Layer 2 protocol. To exploit these vulnerabilities, an attacker must be in the same broadcast domain as the affected device (Layer 2 adjacent). Cisco has released firmware updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34777">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30114">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:25">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-41129 ‼</strong><br><br><code>Pterodactyl is an open-source game server management panel built with PHP 7, React, and Go. A malicious user can modify the contents of a `confirmation_token` input during the two-factor authentication process to reference a cache value not associated with the login attempt. In rare cases this can allow a malicious actor to authenticate as a random user in the Panel. The malicious user must target an account with two-factor authentication enabled, and then must provide a correct two-factor authentication token before being authenticated as that user. Due to a validation flaw in the logic handling user authentication during the two-factor authentication process a malicious user can trick the system into loading credentials for an arbitrary user by modifying the token sent to the server. This authentication flaw is present in the `LoginCheckpointController@__invoke` method which handles two-factor authentication for a user. This controller looks for a request input parameter called `confirmation_token` which is expected to be a 64 character random alpha-numeric string that references a value within the Panel's cache containing a `user_id` value. This value is then used to fetch the user that attempted to login, and lookup their two-factor authentication token. Due to the design of this system, any element in the cache that contains only digits could be referenced by a malicious user, and whatever value is stored at that position would be used as the `user_id`. There are a few different areas of the Panel that store values into the cache that are integers, and a user who determines what those cache keys are could pass one of those keys which would cause this code pathway to reference an arbitrary user. At its heart this is a high-risk login bypass vulnerability. However, there are a few additional conditions that must be met in order for this to be successfully executed, notably: 1.) The account referenced by the malicious cache key must have two-factor authentication enabled. An account without two-factor authentication would cause an exception to be triggered by the authentication logic, thusly exiting this authentication flow. 2.) Even if the malicious user is able to reference a valid cache key that references a valid user account with two-factor authentication, they must provide a valid two-factor authentication token. However, due to the design of this endpoint once a valid user account is found with two-factor authentication enabled there is no rate-limiting present, thusly allowing an attacker to brute force combinations until successful. This leads to a third condition that must be met: 3.) For the duration of this attack sequence the cache key being referenced must continue to exist with a valid `user_id` value. Depending on the specific key being used for this attack, this value may disappear quickly, or be changed by other random user interactions on the Panel, outside the control of the attacker. In order to mitigate this vulnerability the underlying authentication logic was changed to use an encrypted session store that the user is therefore unable to control the value of. This completely removed the use of a user-controlled value being used. In addition, the code was audited to ensure this type of vulnerability is not present elsewhere.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41129">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30115">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:27">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34757 ‼</strong><br><br><code>Multiple vulnerabilities in Cisco Business 220 Series Smart Switches firmware could allow an attacker with Administrator privileges to access sensitive login credentials or reconfigure the passwords on the user account. For more information about these vulnerabilities, see the Details section of this advisory.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34757">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30116">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:27">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34748 ‼</strong><br><br><code>A vulnerability in the web-based management interface of Cisco Intersight Virtual Appliance could allow an authenticated, remote attacker to perform a command injection attack on an affected device. This vulnerability is due to insufficient input validation. An attacker could exploit this vulnerability by using the web-based management interface to execute a command using crafted input. A successful exploit could allow the attacker to execute arbitrary commands using root-level privileges on an affected device.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34748">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30117">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:28">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34778 ‼</strong><br><br><code>Multiple vulnerabilities exist in the Link Layer Discovery Protocol (LLDP) implementation for Cisco Small Business 220 Series Smart Switches. An unauthenticated, adjacent attacker could perform the following: Execute code on the affected device or cause it to reload unexpectedly Cause LLDP database corruption on the affected device For more information about these vulnerabilities, see the Details section of this advisory. Note: LLDP is a Layer 2 protocol. To exploit these vulnerabilities, an attacker must be in the same broadcast domain as the affected device (Layer 2 adjacent). Cisco has released firmware updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34778">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30118">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:29">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34766 ‼</strong><br><br><code>A vulnerability in the web UI of Cisco Smart Software Manager On-Prem (SSM On-Prem) could allow an authenticated, remote attacker to elevate privileges and create, read, update, or delete records and settings in multiple functions. This vulnerability is due to insufficient authorization of the System User and System Operator role capabilities. An attacker could exploit this vulnerability by directly accessing a web resource. A successful exploit could allow the attacker to create, read, update, or delete records and settings in multiple functions without the necessary permissions on the web UI.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34766">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30119">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:33">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34782 ‼</strong><br><br><code>A vulnerability in the API endpoints for Cisco DNA Center could allow an authenticated, remote attacker to gain access to sensitive information that should be restricted. The attacker must have valid device credentials. This vulnerability is due to improper access controls on API endpoints. An attacker could exploit the vulnerability by sending a specific API request to an affected application. A successful exploit could allow the attacker to obtain sensitive information about other users who are configured with higher privileges on the application.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34782">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30120">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:34">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-42042 ‼</strong><br><br><code>An issue was discovered in SpecialEditGrowthConfig in the GrowthExperiments extension in MediaWiki through 1.36.2. The growthexperiments-edit-config-error-invalid-title MediaWiki message was not being properly sanitized and allowed for the injection and execution of HTML and JavaScript.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42042">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30121">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:35">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34779 ‼</strong><br><br><code>Multiple vulnerabilities exist in the Link Layer Discovery Protocol (LLDP) implementation for Cisco Small Business 220 Series Smart Switches. An unauthenticated, adjacent attacker could perform the following: Execute code on the affected device or cause it to reload unexpectedly Cause LLDP database corruption on the affected device For more information about these vulnerabilities, see the Details section of this advisory. Note: LLDP is a Layer 2 protocol. To exploit these vulnerabilities, an attacker must be in the same broadcast domain as the affected device (Layer 2 adjacent). Cisco has released firmware updates that address these vulnerabilities.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34779">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30122">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:36">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-1534 ‼</strong><br><br><code>A vulnerability in the antispam protection mechanisms of Cisco AsyncOS Software for Cisco Email Security Appliance (ESA) could allow an unauthenticated, remote attacker to bypass the URL reputation filters on an affected device. This vulnerability is due to improper processing of URLs. An attacker could exploit this vulnerability by crafting a URL in a particular way. A successful exploit could allow the attacker to bypass the URL reputation filters that are configured for an affected device, which could allow malicious URLs to pass through the device.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1534">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30123">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:37">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34706 ‼</strong><br><br><code>A vulnerability in the web-based management interface of Cisco Identity Services Engine (ISE) could allow an authenticated, remote attacker to access sensitive information or conduct a server-side request forgery (SSRF) attack through an affected device. This vulnerability is due to improper handling of XML External Entity (XXE) entries when parsing certain XML files. An attacker could exploit this vulnerability by uploading a crafted XML file that contains references to external entities. A successful exploit could allow the attacker to retrieve files from the local system, resulting in the disclosure of sensitive information, or cause the web application to perform arbitrary HTTP requests on behalf of the attacker.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34706">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30124">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:41">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34711 ‼</strong><br><br><code>A vulnerability in the debug shell of Cisco IP Phone software could allow an authenticated, local attacker to read any file on the device file system. This vulnerability is due to insufficient input validation. An attacker could exploit this vulnerability by providing crafted input to a debug shell command. A successful exploit could allow the attacker to read any file on the device file system.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34711">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30125">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:42">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-42043 ‼</strong><br><br><code>An issue was discovered in Special:MediaSearch in the MediaSearch extension in MediaWiki through 1.36.2. The suggestion text (a parameter to mediasearch-did-you-mean) was not being properly sanitized and allowed for the injection and execution of HTML and JavaScript via the intitle: search operator within the query.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42043">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30126">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:43">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-34758 ‼</strong><br><br><code>A vulnerability in the memory management of Cisco TelePresence Collaboration Endpoint (CE) Software and Cisco RoomOS Software could allow an authenticated, local attacker to corrupt a shared memory segment, resulting in a denial of service (DoS) condition. This vulnerability is due to insufficient access controls to a shared memory resource. An attacker could exploit this vulnerability by corrupting a shared memory segment on an affected device. A successful exploit could allow the attacker to cause the device to reload. The device will recover from the corruption upon reboot.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34758">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30127">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:44">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-1594 ‼</strong><br><br><code>A vulnerability in the REST API of Cisco Identity Services Engine (ISE) could allow an unauthenticated, remote attacker to perform a command injection attack and elevate privileges to root. This vulnerability is due to insufficient input validation for specific API endpoints. An attacker in a man-in-the-middle position could exploit this vulnerability by intercepting and modifying specific internode communications from one ISE persona to another ISE persona. A successful exploit could allow the attacker to run arbitrary commands with root privileges on the underlying operating system. To exploit this vulnerability, the attacker would need to decrypt HTTPS traffic between two ISE personas that are located on separate nodes.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1594">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30128">
<div class="body">
<div class="pull_right date details" title="06.10.2021 19:32:45">
19:32
</div>
<div class="text">
<strong>‼ CVE-2021-42040 ‼</strong><br><br><code>An issue was discovered in MediaWiki through 1.36.2. A parser function related to loop control allowed for an infinite loop (and php-fpm hang) within the Loops extension because egLoopsCountLimit is mishandled. This could lead to memory exhaustion.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42040">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message30129">
<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="06.10.2021 23:18:53">
23:18
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>📢 BT and Toshiba to launch quantum-secured network across London 📢</strong><br><br><code>The two companies say this is the first commercially available network of its kind</code><br><br><a href="https://www.itpro.co.uk/infrastructure/network-internet/361115/bt-toshiba-quantum-secured-network-london">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30130">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:18:54">
23:18
</div>
<div class="text">
<strong>📢 Amazon, Microsoft, Google back creation of Trusted Cloud Principles 📢</strong><br><br><code>The initiative calls on governments to recognise baseline security and privacy protections for customers</code><br><br><a href="https://www.itpro.co.uk/security/privacy/361083/amazon-microsoft-google-back-trusted-cloud-principles">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30131">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:18:55">
23:18
</div>
<div class="text">
<strong>📢 What is hacktivism? 📢</strong><br><br><code>From Anonymous to Omega, here’s everything you need to know about hackers with a conscience</code><br><br><a href="https://www.itpro.co.uk/hacking/30203/what-is-hacktivism">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30132">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:18:56">
23:18
</div>
<div class="text">
<strong>📢 Neiman Marcus data breach hits 4.6 million customers 📢</strong><br><br><code>The breach took place last year, but details have only now come to light</code><br><br><a href="https://www.itpro.co.uk/security/data-breaches/361107/46-million-neiman-marcus-customers-data-compromised-in-a-breach">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30133">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:18:56">
23:18
</div>
<div class="text">
<strong>📢 US plans 30-nation meeting to address growing cyber crime threat 📢</strong><br><br><code>Biden says the meeting will focus on the use of illicit cryptocurrency and securing supply chains</code><br><br><a href="https://www.itpro.co.uk/security/cyber-security/361098/us-30-country-meeting-cyber-crime-threat">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30134">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:00">
23:19
</div>
<div class="text">
<strong>📢 The best defence against ransomware 📢</strong><br><br><code>How ransomware is evolving and how to defend against it</code><br><br><a href="https://www.itpro.co.uk/security/ransomware/361095/the-best-defence-against-ransomware">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30135">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:02">
23:19
</div>
<div class="text">
<strong>📢 How to maintain your privacy on social media 📢</strong><br><br><code>Even the most privacy conscious individuals can be caught out by misconfigured accounts</code><br><br><a href="https://www.itpro.co.uk/data-protection/34415/how-to-maintain-your-privacy-on-social-media">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30136">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:04">
23:19
</div>
<div class="text">
<strong>📢 Malware pretending to be Amnesty International antivirus for Pegasus discovered 📢</strong><br><br><code>Victims fearing Pegasus spyware targeted in a new malware campaign</code><br><br><a href="https://www.itpro.co.uk/security/malware/361088/malware-pretending-to-be-amnesty-international-antivirus-for-pegasus">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30137">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:05">
23:19
</div>
<div class="text">
<strong>📢 Prevent fraud and phishing attacks with DMARC 📢</strong><br><br><code>How to use domain-based message authentication, reporting, and conformance for email security</code><br><br><a href="https://www.itpro.co.uk/security/cyber-security/359475/prevent-fraud-and-phishing-attacks-with-dmarc">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30138">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:06">
23:19
</div>
<div class="text">
<strong>📢 What is a 502 bad gateway and how do you fix it? 📢</strong><br><br><code>We explain what this networking error means for users and website owners</code><br><br><a href="https://www.itpro.co.uk/web-hosting/30258/what-is-a-502-bad-gateway-and-how-do-you-fix-it">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30139">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:07">
23:19
</div>
<div class="text">
<strong>📢 Coinbase notifies 6,000 customers of data breach 📢</strong><br><br><code>Hackers exploited a 2FA flaw to steal hundreds of thousands in cryptocurrency</code><br><br><a href="https://www.itpro.co.uk/technology/cryptocurrencies/361101/coinbase-data-breach-6000-customers">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30140">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:08">
23:19
</div>
<div class="text">
<strong>📢 2021 state of email security report: Ransomware on the rise 📢</strong><br><br><code>Securing the enterprise in the COVID world</code><br><br><a href="https://www.itpro.co.uk/security/ransomware/359471/2021-state-of-email-security-report-ransomware-on-the-rise">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30141">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:11">
23:19
</div>
<div class="text">
<strong>📢 How to reduce the risk of phishing and ransomware 📢</strong><br><br><code>Top security concerns and tips for mitigation</code><br><br><a href="https://www.itpro.co.uk/security/ransomware/360247/how-to-reduce-the-risk-of-phishing-and-ransomware">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30142">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:12">
23:19
</div>
<div class="text">
<strong>📢 How are cyber security and insurance companies evolving with the threat of ransomware? 📢</strong><br><br><code>In a sector that is being heavily scrutinised, many companies are having to implement changes to deal with new risks</code><br><br><a href="https://www.itpro.co.uk/security/cyber-security/361099/cyber-security-and-insurance-companies-evolving-with-the-threat-of-ransomware">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30143">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:14">
23:19
</div>
<div class="text">
<strong>📢 UK's National Cyber Force will be based in Samlesbury 📢</strong><br><br><code>The hub will bring “thousands" of highly skilled jobs and expertise to the North West of England</code><br><br><a href="https://www.itpro.co.uk/security/cyber-warfare/361102/samlesbury-unveiled-as-new-national-cyber-force-location">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30144">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:16">
23:19
</div>
<div class="text">
<strong>📢 How to manage AI risk 📢</strong><br><br><code>Recommendations from the Cyber Resilience Think Tank</code><br><br><a href="https://www.itpro.co.uk/technology/artificial-intelligence-ai/361093/how-to-manage-ai-risk">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30145">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:17">
23:19
</div>
<div class="text">
<strong>📢 The truth about cyber security training 📢</strong><br><br><code>Stop ticking boxes. Start delivering real change.</code><br><br><a href="https://www.itpro.co.uk/security/cyber-security/361094/the-truth-about-cyber-security-training">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30146">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:19:18">
23:19
</div>
<div class="text">
<strong>📢 The state of brand protection 2021 📢</strong><br><br><code>A new front opens up in the war for brand safety</code><br><br><a href="https://www.itpro.co.uk/security/cyber-security/360246/the-state-of-brand-protection-2021">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30147">
<div class="body">
<div class="pull_right date details" title="06.10.2021 23:32:28">
23:32
</div>
<div class="text">
<strong>🦿 Does your company have a cybersecurity strategy? Is it any good? 🦿</strong><br><br><code>Take this quick, multiple choice survey and tell us about your company's cybersecurity strategies for the upcoming year.</code><br><br><a href="https://www.techrepublic.com/article/whats-your-organizations-cybersecurity-strategy/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message service" id="message-918">
<div class="body details">
7 October 2021
</div>
</div>
<div class="message default clearfix" id="message30148">
<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="07.10.2021 07:27:45">
07:27
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🗓️ MyBB CAPTCHA bug breaks forum validation checks 🗓️</strong><br><br><code>Forum owners can apply a workaround until a full fix is released</code><br><br><a href="https://portswigger.net/daily-swig/mybb-captcha-bug-breaks-forum-validation-checks">📖 Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30149">
<div class="body">
<div class="pull_right date details" title="07.10.2021 07:33:22">
07:33
</div>
<div class="text">
<strong>‼ CVE-2021-41770 ‼</strong><br><br><code>Ping Identity PingFederate before 10.3.1 mishandles pre-parsing validation, leading to an XXE attack that can achieve XML file disclosure.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41770">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message30150">
<div class="body">
<div class="pull_right date details" title="07.10.2021 07:33:23">
07:33
</div>
<div class="text">
<strong>‼ CVE-2021-42054 ‼</strong><br><br><code>ACCEL-PPP 1.12.0 has an out-of-bounds read in triton_context_schedule if the client exits after authentication.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42054">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>