-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages34.html
19166 lines (11977 loc) · 777 KB
/
messages34.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="messages33.html">
Previous messages
</a>
<div class="message service" id="message-969">
<div class="body details">
30 November 2021
</div>
</div>
<div class="message default clearfix" id="message33098">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:43:51">
14:43
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>📢 Ikea launches "full-scale investigation" into email-based cyber attack 📢</strong><br><br><code>Early evidence seems to indicate a compromise of Microsoft Exchange servers in a reply chain attack campaign</code><br><br><a href="https://www.itpro.co.uk/security/cyber-attacks/361680/ikea-investigates-email-based-cyber-attack">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33099">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:43:52">
14:43
</div>
<div class="text">
<strong>📢 What is smishing? 📢</strong><br><br><code>A closer look at one of the most perilous forms of phishing</code><br><br><a href="https://www.itpro.co.uk/security/phishing/361625/what-is-smishing">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33100">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:43:53">
14:43
</div>
<div class="text">
<strong>📢 RATDispenser evades nine in ten anti-virus engines 📢</strong><br><br><code>Stealth malware deploys key loggers and information stealers</code><br><br><a href="https://www.itpro.co.uk/security/361638/ratdispenser-evades-nine-in-ten-anti-virus-engines">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33101">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:43:54">
14:43
</div>
<div class="text">
<strong>📢 Sky Broadband took almost 18 months to fix serious router flaw 📢</strong><br><br><code>Flaw could expose user’s home network to hackers</code><br><br><a href="https://www.itpro.co.uk/security/vulnerability/361609/six-million-sky-routers-had-serious-security-flaw">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33102">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:43:55">
14:43
</div>
<div class="text">
<strong>📢 GoDaddy data breach exposes over 1.2 million customer details 📢</strong><br><br><code>Attacker had access to admin passwords for over two months</code><br><br><a href="https://www.itpro.co.uk/security/data-breaches/361624/godaddy-data-breach-exposes-over-12-million-customer-details">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33103">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:43:56">
14:43
</div>
<div class="text">
<strong>📢 Why the NCSC and telecoms firms are at loggerheads over quantum key distribution 📢</strong><br><br><code>In the face of mixed messages between the public and private sector, should businesses be wary of jumping on the bandwagon?</code><br><br><a href="https://www.itpro.co.uk/security/encryption/361581/ncsc-telecoms-quantum-key-distribution">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33104">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:43:58">
14:43
</div>
<div class="text">
<strong>📢 SMBs urged to update software ahead of Black Friday 📢</strong><br><br><code>NCSC identified 4,151 online shops compromised using vulnerability within e-commerce platform Magento</code><br><br><a href="https://www.itpro.co.uk/marketing-comms/e-commerce/361661/smbs-urged-to-update-software-ahead-of-black-friday">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33105">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:43:59">
14:43
</div>
<div class="text">
<strong>📢 Pizza chain exposed 100,000 employees' Social Security numbers 📢</strong><br><br><code>Former and current staff at California Pizza Kitchen potentially burned by hackers</code><br><br><a href="https://www.itpro.co.uk/security/data-breaches/361613/pizza-chain-exposed-100000-employees-social-security-numbers">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33106">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:43:59">
14:43
</div>
<div class="text">
<strong>📢 Apple sues NSO Group over Pegasus attacks on its customers 📢</strong><br><br><code>The lawsuit claims 'flagrant' violations of US federal and state law from the Israeli firm behind the infamous spyware</code><br><br><a href="https://www.itpro.co.uk/security/spyware/361639/apple-sues-nso-group-over-pegasus-attacks-on-its-customers">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33107">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:44:03">
14:44
</div>
<div class="text">
<strong>📢 Thousands of printers at risk of denial of service attacks 📢</strong><br><br><code>Attackers can easily manipulate the 9100 port to hijack hardware and steal data, researchers claim</code><br><br><a href="https://www.itpro.co.uk/security/cyber-security/361651/thousands-of-printers-at-risk-of-denial-of-service-attacks">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33108">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:44:05">
14:44
</div>
<div class="text">
<strong>📢 Wind turbine maker Vestas hit by cyber attack 📢</strong><br><br><code>Danish firm says hackers managed to obtain company data and knock out parts of its IT network</code><br><br><a href="https://www.itpro.co.uk/security/cyber-attacks/361616/wind-turbine-vestas-hit-cyber-attack">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33109">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:44:06">
14:44
</div>
<div class="text">
<strong>📢 Hackers use Linux backdoor on compromised e-commerce sites with software skimmer 📢</strong><br><br><code>Cyber criminals in China control the malware</code><br><br><a href="https://www.itpro.co.uk/security/malware/361611/hackers-use-linux-backdoor-on-compromised-e-commerce-sites-with-software">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33110">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:44:08">
14:44
</div>
<div class="text">
<strong>📢 CronRat Magecart malware uses 31st February date to remain undetected 📢</strong><br><br><code>The malware allows for server-side payment skimming that bypasses browser security</code><br><br><a href="https://www.itpro.co.uk/security/malware/361673/cronrat-malware-31-february-evade-detection">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33111">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:44:10">
14:44
</div>
<div class="text">
<strong>📢 Iranian hackers ramp up attacks against IT services sector 📢</strong><br><br><code>Microsoft security researchers warn hacking is part of broader cyber espionage effort</code><br><br><a href="https://www.itpro.co.uk/security/hacking/361610/iranian-hackers-ramp-up-attacks-against-it-services-sector">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33112">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:44:12">
14:44
</div>
<div class="text">
<strong>📢 Fifth of UK security pros discriminated against in 2021 📢</strong><br><br><code>The NCSC’s and KPMG’s Diversity and inclusion in cyber security report studied the obstacles faced by cyber security professionals</code><br><br><a href="https://www.itpro.co.uk/business-strategy/careers-training/361629/fifth-of-uk-security-pros-discriminated-against-in-2021">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33113">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:44:13">
14:44
</div>
<div class="text">
<strong>📢 Meta delays product-wide end-to-end encryption rollout until 2023 📢</strong><br><br><code>The company wants to 'take its time' to implement the technology in a way that both protects privacy and prevents exposure to online harms</code><br><br><a href="https://www.itpro.co.uk/security/encryption/361615/meta-delays-product-wide-encryption-rollout-until-2023">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33114">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:44:14">
14:44
</div>
<div class="text">
<strong>📢 Microsoft patch fails to fix Installer zero-day affecting every version of Windows 📢</strong><br><br><code>The exploit allows hackers to elevate privileges and create admin accounts</code><br><br><a href="https://www.itpro.co.uk/security/vulnerability/361646/microsoft-patch-fails-fix-installer-zero-day-windows-exploit">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33115">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:44:15">
14:44
</div>
<div class="text">
<strong>📢 ID.me</strong> <strong>and Sterling Check partner on in-person identity verification 📢</strong><br><br><code>The joint solution improves equity and access to government benefits</code><br><br><a href="https://www.itpro.co.uk/security/identity-and-access-management-iam/361612/idme-and-sterling-check-partner-on-in-person">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33116">
<div class="body">
<div class="pull_right date details" title="30.11.2021 14:44:16">
14:44
</div>
<div class="text">
<strong>📢 Investors warned to be vigilant of fake SEC alerts 📢</strong><br><br><code>Hackers are targeting victims using phone calls and voice mails about cryptocurrency transactions</code><br><br><a href="https://www.itpro.co.uk/security/cyber-crime/361619/investors-warned-over-fake-securities-exchange-alerts">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message33117">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="30.11.2021 15:21:08">
15:21
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Government-Industry Cooperation May Be the Most Potent Ransomware Antidote 🕴</strong><br><br><code>The side that's better at collaborating with allies will have the upper hand, and until now, that distinction has gone to the cybercriminals.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/government-industry-cooperation-may-be-the-most-potent-ransomware-antidote">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33118">
<div class="body">
<div class="pull_right date details" title="30.11.2021 15:25:13">
15:25
</div>
<div class="text">
<strong>❌ Panasonic’s Data Breach Leaves Open Questions ❌</strong><br><br><code>Cyberattackers had unfettered access to the technology giant's file server for four months.</code><br><br><a href="https://threatpost.com/panasonic-data-breach-questions/176660/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33119">
<div class="body">
<div class="pull_right date details" title="30.11.2021 15:25:14">
15:25
</div>
<div class="text">
<strong>❌ Finland Faces Blizzard of FluBot-Spreading Text Messages ❌</strong><br><br><code>Millions of texts leading to the Flubot spyware/banking trojan are targeting everyone who uses Androids in the country, in an "exceptional" attack.</code><br><br><a href="https://threatpost.com/finland-flubot-text-messages/176649/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message33120">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="30.11.2021 16:35:36">
16:35
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2021-38967 ‼</strong><br><br><code>IBM MQ Appliance 9.2 CD and 9.2 LTS could allow a local privileged user to inject and execute malicious code. IBM X-Force ID: 212441.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-38967">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33121">
<div class="body">
<div class="pull_right date details" title="30.11.2021 16:35:37">
16:35
</div>
<div class="text">
<strong>‼ CVE-2021-39000 ‼</strong><br><br><code>IBM MQ Appliance 9.2 CD and 9.2 LTS could allow a local attacker to obtain sensitive information by inclusion of sensitive data within diagnostics. IBM X-Force ID: 213215.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-39000">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33122">
<div class="body">
<div class="pull_right date details" title="30.11.2021 16:35:39">
16:35
</div>
<div class="text">
<strong>‼ CVE-2021-38958 ‼</strong><br><br><code>IBM MQ Appliance 9.2 CD and 9.2 LTS is affected by a denial of service attack caused by a concurrency issue. IBM X-Force ID: 212042</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-38958">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33123">
<div class="body">
<div class="pull_right date details" title="30.11.2021 16:35:39">
16:35
</div>
<div class="text">
<strong>‼ CVE-2021-38999 ‼</strong><br><br><code>IBM MQ Appliance could allow a local attacker to obtain sensitive information by inclusion of sensitive data within trace.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-38999">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message33124">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="30.11.2021 17:55:51">
17:55
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ Lloyd’s Carves Out Cyber-Insurance Exclusions for State-Sponsored Attacks ❌</strong><br><br><code>The insurer won’t pay for 'acts of cyber-war' or nation-state retaliation attacks. </code><br><br><a href="https://threatpost.com/lloyds-cyber-insurance-exclusions/176669/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message33125">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:21:20">
18:21
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Attacker Sentenced in Multimillion-Dollar SIM Hijacking Scheme 🕴</strong><br><br><code>A sixth member of international hacking group The Community was sentenced to 10 months in prison and ordered to pay $121,549.37 in restitution.</code><br><br><a href="https://www.darkreading.com/endpoint/attacker-sentenced-in-multi-million-dollar-sim-hijacking-scheme">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33126">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:25:19">
18:25
</div>
<div class="text">
<strong>❌ How Decryption of Network Traffic Can Improve Security ❌</strong><br><br><code>Most industry analyst firms conclude that between 80-90 percent of network traffic is encrypted today. Jeff Costlow, CISO at ExtraHop, explains why this might not be a good thing.</code><br><br><a href="https://threatpost.com/decryption-improve-security/176613/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33127">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:35">
18:34
</div>
<div class="text">
<strong>‼ CVE-2020-7879 ‼</strong><br><br><code>This issue was discovered when the ipTIME C200 IP Camera was synchronized with the ipTIME NAS. It is necessary to extract value for ipTIME IP camera because the ipTIME NAS send ans setCookie('[COOKIE]') . The value is transferred to the --header option in wget binary, and there is no validation check. This vulnerability allows remote attackers to execute remote command.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-7879">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33128">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:35">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-42099 ‼</strong><br><br><code>Zoho ManageEngine M365 Manager Plus before 4421 is vulnerable to file-upload remote code execution.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42099">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33129">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:37">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-43296 ‼</strong><br><br><code>Zoho ManageEngine SupportCenter Plus before 11016 is vulnerable to an SSRF attack in ActionExecutor.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43296">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33130">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:38">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-31787 ‼</strong><br><br><code>The Bluetooth Classic implementation on Actions ATS2815 chipsets does not properly handle the reception of continuous unsolicited LMP responses, allowing attackers in radio range to trigger a denial of service and shutdown of a device by flooding the target device with LMP_features_res packets.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-31787">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33131">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:39">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-43294 ‼</strong><br><br><code>Zoho ManageEngine SupportCenter Plus before 11016 is vulnerable to Reflected XSS in the Products module.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43294">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33132">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:41">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-42564 ‼</strong><br><br><code>An open redirect through HTML injection in confidential messages in Cryptshare before 5.1.0 allows remote attackers (with permission to provide confidential messages via Cryptshare) to redirect targeted victims to any URL via the '<meta http-equiv="refresh"' substring in the editor parameter.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42564">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33133">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:42">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-44230 ‼</strong><br><br><code>PortSwigger Burp Suite Enterprise Edition before 2021.11 on Windows has weak file permissions for the embedded H2 database, which might lead to privilege escalation. This issue can be exploited by an adversary who has already compromised a valid Windows account on the server via separate means. In this scenario, the compromised account may have inherited read access to sensitive configuration, database, and log files.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-44230">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33134">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:43">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-40101 ‼</strong><br><br><code>An issue was discovered in Concrete CMS before 8.5.7. The Dashboard allows a user's password to be changed without a prompt for the current password.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-40101">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33135">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:44">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-43283 ‼</strong><br><br><code>An issue was discovered on Victure WR1200 devices through 1.0.3. A command injection vulnerability was found within the web interface of the device, allowing an attacker with valid credentials to inject arbitrary shell commands to be executed by the device with root privileges. This occurs in the ping and traceroute features. An attacker would thus be able to use this vulnerability to open a reverse shell on the device with root privileges.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43283">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33136">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:45">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-4026 ‼</strong><br><br><code>bookstack is vulnerable to Improper Access Control</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-4026">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33137">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:47">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-26612 ‼</strong><br><br><code>An improper input validation leading to arbitrary file creation was discovered in copy method of Nexacro platform. Remote attackers use copy method to execute arbitrary command after the file creation included malicious code.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-26612">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33138">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:48">
18:34
</div>
<div class="text">
<strong>‼ CVE-2020-7880 ‼</strong><br><br><code>The vulnerabilty was discovered in ActiveX module related to NeoRS remote support program. This issue allows an remote attacker to download and execute remote file. It is because of improper parameter validation of StartNeoRS function in ActiveX.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-7880">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33139">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:49">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-43320 ‼</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: CVE-2021-41244. Reason: This candidate is a reservation duplicate of CVE-2021-41244. Notes: All CVE users should reference CVE-2021-41244 instead of this candidate. All references and descriptions in this candidate have been removed to prevent accidental usage.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43320">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33140">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:51">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-43319 ‼</strong><br><br><code>Zoho ManageEngine Network Configuration Manager before 125488 is vulnerable to command injection due to improper validation in the Ping functionality.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43319">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33141">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:52">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-43284 ‼</strong><br><br><code>An issue was discovered on Victure WR1200 devices through 1.0.3. The root SSH password never gets updated from its default value of admin. This enables an attacker to gain control of the device through SSH (regardless of whether the admin password was changed on the web interface).</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43284">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33142">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:53">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-22095 ‼</strong><br><br><code>In Spring AMQP versions 2.2.0 - 2.2.19 and 2.3.0 - 2.3.11, the Spring AMQP Message object, in its toString() method, will create a new String object from the message body, regardless of its size. This can cause an OOM Error with a large message</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-22095">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33143">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:53">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-43282 ‼</strong><br><br><code>An issue was discovered on Victure WR1200 devices through 1.0.3. The default Wi-Fi WPA2 key is advertised to anyone within Wi-Fi range through the router's MAC address. The device default Wi-Fi password corresponds to the last 4 bytes of the MAC address of its 2.4 GHz network interface controller (NIC). An attacker within scanning range of the Wi-Fi network can thus scan for Wi-Fi networks to obtain the default key.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43282">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33144">
<div class="body">
<div class="pull_right date details" title="30.11.2021 18:34:54">
18:34
</div>
<div class="text">
<strong>‼ CVE-2021-43295 ‼</strong><br><br><code>Zoho ManageEngine SupportCenter Plus before 11016 is vulnerable to Reflected XSS in the Accounts module.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-43295">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message33145">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="30.11.2021 19:21:21">
19:21
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 What’s the Difference Between SASE and SD-WAN? 🕴</strong><br><br><code>While SD-WAN is a key part of a hybrid workplace and multicloud operation, it should be treated as a stepping stone to SASE, not an alternative.</code><br><br><a href="https://www.darkreading.com/edge-ask-the-experts/what-s-the-difference-between-sase-and-sdwan-">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message33146">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="30.11.2021 19:51:22">
19:51
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 HP Issues Firmware Updates for Printer Product Vulnerabilities 🕴</strong><br><br><code>More than 150 HP printer models have bugs that could enable attackers to steal data and gain an initial foothold on enterprise networks.</code><br><br><a href="https://www.darkreading.com/vulnerabilities-threats/hp-issues-firmware-updates-for-printer-product-vulnerabilities">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message33147">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="30.11.2021 20:21:24">
20:21
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Legal Cases and Privacy Rulings Aim to Curtail Facial Biometrics 🕴</strong><br><br><code>Decisions in the UK and Australia, and lawsuits in the United States, could force facial-recognition providers to remove data from their machine-learning models.</code><br><br><a href="https://www.darkreading.com/vulnerabilities-threats/legal-cases-and-privacy-policies-threaten-use-of-facial-biometrics">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33148">
<div class="body">
<div class="pull_right date details" title="30.11.2021 20:34:35">
20:34
</div>
<div class="text">
<strong>‼ CVE-2021-36330 ‼</strong><br><br><code>Dell EMC Streaming Data Platform versions before 1.3 contain an Insufficient Session Expiration Vulnerability. A remote unauthenticated attacker may potentially exploit this vulnerability to reuse old session artifacts to impersonate a legitimate user.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-36330">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message33149">
<div class="body">
<div class="pull_right date details" title="30.11.2021 20:34:36">
20:34
</div>