-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages32.html
19318 lines (12072 loc) · 792 KB
/
messages32.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="messages31.html">
Previous messages
</a>
<div class="message service" id="message-931">
<div class="body details">
22 October 2021
</div>
</div>
<div class="message default clearfix" id="message31098">
<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="22.10.2021 23:26:42">
23:26
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>📢 Organizations warned of ransomware risk from smaller operators 📢</strong><br><br><code>They may not have the financial muscle, but small-time cyber crooks can cause havoc for critical systems</code><br><br><a href="https://www.itpro.co.uk/security/ransomware/361296/organizations-warned-of-ransomware-risk-from-smaller-operators">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31099">
<div class="body">
<div class="pull_right date details" title="22.10.2021 23:26:43">
23:26
</div>
<div class="text">
<strong>📢 IT Pro News in Review: MacBook refresh, Facebook creating jobs and facial recognition in schools 📢</strong><br><br><code>Catch up on the biggest headlines of the week in just two minutes</code><br><br><a href="https://www.itpro.co.uk/hardware/361332/it-pro-news-in-review-macbook-refresh-facebook-eu-jobs-facial-recognition-schools">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31100">
<div class="body">
<div class="pull_right date details" title="22.10.2021 23:26:47">
23:26
</div>
<div class="text">
<strong>📢 The IT Pro Podcast: Should the US cyber army be more aggressive? 📢</strong><br><br><code>Is a more proactive strategy the answer to increasing attacks from Russia and China?</code><br><br><a href="https://www.itpro.co.uk/security/cyber-warfare/361329/the-it-pro-podcast-should-the-us-cyber-army-be-more-aggressive">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31101">
<div class="body">
<div class="pull_right date details" title="22.10.2021 23:26:48">
23:26
</div>
<div class="text">
<strong>📢 Iranian hacking group continues to target US citizens 📢</strong><br><br><code>APT35 used phishing attacks and uploaded spyware onto Google Play Store</code><br><br><a href="https://www.itpro.co.uk/security/hacking/361282/iranian-hacking-group-continues-to-target-us-citizens">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31102">
<div class="body">
<div class="pull_right date details" title="22.10.2021 23:26:49">
23:26
</div>
<div class="text">
<strong>📢 Oak9’s IaC security platform now available on AWS 📢</strong><br><br><code>The solution speeds up app deployment while providing comprehensive security</code><br><br><a href="https://www.itpro.co.uk/security/361341/oak9s-iac-security-platform-now-available-on-aws">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31103">
<div class="body">
<div class="pull_right date details" title="22.10.2021 23:26:50">
23:26
</div>
<div class="text">
<strong>📢 The best remote access solutions 📢</strong><br><br><code>We round up the top remote access software for mobile workers, including those with collaboration, screen-sharing and support tools</code><br><br><a href="https://www.itpro.co.uk/desktop-software/28122/the-best-remote-access-solutions">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31104">
<div class="body">
<div class="pull_right date details" title="22.10.2021 23:26:51">
23:26
</div>
<div class="text">
<strong>📢 Almost 70% of CISOs expect a ransomware attack 📢</strong><br><br><code>Many companies are willing to make ransomware payments in the face of the growing threat</code><br><br><a href="https://www.itpro.co.uk/security/ransomware/361298/nearly-seven-in-ten-cisos-expect-a-ransomware-attack">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message service" id="message-932">
<div class="body details">
25 October 2021
</div>
</div>
<div class="message default clearfix" id="message31105">
<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="25.10.2021 07:13:20">
07:13
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2021-40371 ‼</strong><br><br><code>Gridpro Request Management for Windows Azure Pack before 2.0.7912 allows Directory Traversal for remote code execution, as demonstrated by ..\\ in a scriptName JSON value to ServiceManagerTenant/GetVisibilityMap.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-40371">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31106">
<div class="body">
<div class="pull_right date details" title="25.10.2021 07:13:22">
07:13
</div>
<div class="text">
<strong>‼ CVE-2021-21703 ‼</strong><br><br><code>In PHP versions 7.3.x up to and including 7.3.31, 7.4.x below 7.4.25 and 8.0.x below 8.0.12, when running PHP FPM SAPI with main FPM daemon process running as root and child worker processes running as lower-privileged users, it is possible for the child processes to access memory shared with the main process and write to it, modifying it in a way that would cause the root process to conduct invalid memory reads and writes, which can be used to escalate privileges from local unprivileged user to the root user.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-21703">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message31107">
<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="25.10.2021 07:43:41">
07:43
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>⚠ Cybersecurity Awareness Month: Listen up – CYBERSECURITY FIRST! ⚠</strong><br><br><code>Fraser Howard of SophosLabs is truly a world expert in fighting malware. Read now, and learn from the best!</code><br><br><a href="https://nakedsecurity.sophos.com/2021/10/25/becybersmart-2021-week4/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31108">
<div class="body">
<div class="pull_right date details" title="25.10.2021 07:43:43">
07:43
</div>
<div class="text">
<strong>⚠ REvil ransomware gang allegedly forced offline by law enforcement counterattacks ⚠</strong><br><br><code>One down. Lots more to go. Here's what to do...</code><br><br><a href="https://nakedsecurity.sophos.com/2021/10/22/revil-ransomware-gang-allegedly-forced-offline-by-law-enforcement-counterattacks/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message31109">
<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="25.10.2021 09:13:28">
09:13
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2021-40527 ‼</strong><br><br><code>Exposure of senstive information to an unauthorised actor in the "com.onepeloton.erlich" mobile application up to and including version 1.7.22 allows a remote attacker to access developer files stored in an AWS S3 bucket, by reading credentials stored in plain text within the mobile application.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-40527">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31110">
<div class="body">
<div class="pull_right date details" title="25.10.2021 09:13:29">
09:13
</div>
<div class="text">
<strong>‼ CVE-2021-40526 ‼</strong><br><br><code>Incorrect calculation of buffer size vulnerability in Peleton TTR01 up to and including PTV55G allows a remote attacker to trigger a Denial of Service attack through the GymKit daemon process by exploiting a heap overflow in the network server handling the Apple GymKit communication. This can lead to an Apple MFI device not being able to authenticate with the Peleton Bike</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-40526">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message31111">
<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="25.10.2021 11:43:43">
11:43
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>⚠ Listen up 2 – CYBERSECURITY FIRST! How to protect yourself from supply chain attacks ⚠</strong><br><br><code>Everyone remembers this year's big-news supply chain attacks on Kaseya and SolarWinds. Sophos expert Chester Wisniewski explains how to control the risk.</code><br><br><a href="https://nakedsecurity.sophos.com/2021/10/25/becybersmart-2021-supply-chain-attacks/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31112">
<div class="body">
<div class="pull_right date details" title="25.10.2021 11:46:51">
11:46
</div>
<div class="text">
<strong>🗓️ Polygon pays out record $2 million bug bounty reward for critical vulnerability 🗓️</strong><br><br><code>Ethical hacker bags top prize for double spend flaw in smart contract</code><br><br><a href="https://portswigger.net/daily-swig/polygon-pays-out-record-2-million-bug-bounty-reward-for-critical-vulnerability">📖 Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message31113">
<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="25.10.2021 12:15:36">
12:15
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🗓️ Discourse fixes critical validation-related vulnerability in forum software 🗓️</strong><br><br><code>We need to talk about lack of validation</code><br><br><a href="https://portswigger.net/daily-swig/discourse-fixes-critical-validation-related-vulnerability-in-forum-software">📖 Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31114">
<div class="body">
<div class="pull_right date details" title="25.10.2021 12:30:18">
12:30
</div>
<div class="text">
<strong>❌ CISA Urges Sites to Patch Critical RCE in Discourse ❌</strong><br><br><code>The patch, urgently rushed out on Friday, is an emergency fix for the widely deployed platform, whose No. 1 most trafficked site is Amazon’s Seller Central.</code><br><br><a href="https://threatpost.com/cisa-critical-rce-discourse/175705/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31115">
<div class="body">
<div class="pull_right date details" title="25.10.2021 12:43:45">
12:43
</div>
<div class="text">
<strong>⚠ Listen up 3 – CYBERSECURITY FIRST! Cyberinsurance, help or hindrance? ⚠</strong><br><br><code>Dr Jason Nurse, Associate Professor in Cybersecurity at the University of Kent, takes on the controversial topic of cyberinsurance.</code><br><br><a href="https://nakedsecurity.sophos.com/2021/10/25/becybersmart-2021-cyberinsurance/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message31116">
<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="25.10.2021 13:13:40">
13:13
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2021-24774 ‼</strong><br><br><code>The Check & Log Email WordPress plugin before 1.0.3 does not validate and escape the "order" and "orderby" GET parameters before using them in a SQL statement when viewing logs, leading to SQL injections issues</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24774">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31117">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:41">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-24515 ‼</strong><br><br><code>The Video Gallery – Vimeo and YouTube Gallery WordPress plugin through 1.1.4 does not escape the Title and Description of the videos in a gallery before outputting them in attributes, leading to Stored Cross-Site Scripting issues</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24515">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31118">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:42">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-24608 ‼</strong><br><br><code>The Formidable Form Builder – Contact Form, Survey & Quiz Forms Plugin for WordPress plugin before 5.0.07 does not sanitise and escape its Form's Labels, allowing high privileged users to perform Cross-Site Scripting attacks even when the unfiltered_html capability is disallowed</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24608">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31119">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:44">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-24489 ‼</strong><br><br><code>The Request a Quote WordPress plugin before 2.3.5 does not sanitise, validate or escape some of its settings in the admin dashboard, leading to authenticated Stored Cross-Site Scripting issues even when the unfiltered_html capability is disallowed.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24489">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31120">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:44">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-24884 ‼</strong><br><br><code>The Formidable Form Builder WordPress plugin before 4.09.05 allows to inject certain HTML Tags like <audio>,<video>,<img>,<a> and<button>.This could allow an unauthenticated, remote attacker to exploit a HTML-injection byinjecting a malicous link. The HTML-injection may trick authenticated users to follow the link. If the Link gets clicked, Javascript code can be executed. The vulnerability is due to insufficient sanitization of the "data-frmverify" tag for links in the web-based entry inspection page of affected systems. A successful exploitation incomibantion with CSRF could allow the attacker to perform arbitrary actions on an affected system with the privileges of the user. These actions include stealing the users account by changing their password or allowing attackers to submit their own code through an authenticated user resulting in Remote Code Execution. If an authenticated user who is able to edit Wordpress PHP Code in any kind, clicks the malicious link, PHP code can be edited.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24884">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31121">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:45">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-0939 ‼</strong><br><br><code>In set_default_passthru_cfg of passthru.c, there is a possible out of bounds read due to a missing bounds check. This could lead to local information disclosure with System execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-186026549References: N/A</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0939">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31122">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:47">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-0410 ‼</strong><br><br><code>In flv extractor, there is a possible out of bounds read due to an incorrect bounds check. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05561360; Issue ID: ALPS05561360.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0410">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31123">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:49">
13:13
</div>
<div class="text">
<strong>‼ CVE-2020-7859 ‼</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was withdrawn by its CNA. Notes: none.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-7859">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31124">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:50">
13:13
</div>
<div class="text">
<strong>‼ CVE-2020-14264 ‼</strong><br><br><code>"HCL Traveler Companion is vulnerable to an iOS weak cryptographic process vulnerability via the included MobileIron AppConnect SDK"</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-14264">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31125">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:50">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-0414 ‼</strong><br><br><code>In flv extractor, there is a possible out of bounds read due to a heap buffer overflow. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05561384; Issue ID: ALPS05561384.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0414">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31126">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:51">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-0633 ‼</strong><br><br><code>In display driver, there is a possible out of bounds write due to an incorrect bounds check. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05585423; Issue ID: ALPS05585423.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0633">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31127">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:52">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-0409 ‼</strong><br><br><code>In flv extractor, there is a possible out of bounds read due to an incorrect bounds check. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05561359; Issue ID: ALPS05561359.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0409">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31128">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:53">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-0935 ‼</strong><br><br><code>In ip6_xmit of ip6_output.c, there is a possible out of bounds write due to a use after free. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-168607263References: Upstream kernel</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0935">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31129">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:54">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-24544 ‼</strong><br><br><code>The Responsive WordPress Slider WordPress plugin through 2.2.0 does not sanitise and escape some of the Slider options, allowing Cross-Site Scripting payloads to be set in them. Furthermore, as by default any authenticated user is allowed to create Sliders (https://wordpress.org/support/topic/slider-can-be-changed-from-any-user-even-subscriber/, such settings can be changed in the plugin's settings), this would allow user with a role as low as subscriber to perform Cross-Site Scripting attacks against logged in admins viewing the slider list and could lead to privilege escalation by creating a rogue admin account for example.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24544">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31130">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:55">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-24779 ‼</strong><br><br><code>The WP Debugging WordPress plugin before 2.11.0 has its update_settings() function hooked to admin_init and is missing any capability and CSRF checks, as a result, the settings can be updated by unauthenticated users.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24779">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31131">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:13:59">
13:13
</div>
<div class="text">
<strong>‼ CVE-2021-0634 ‼</strong><br><br><code>In display driver, there is a possible memory corruption due to uninitialized data. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05594994; Issue ID: ALPS05594994.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0634">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31132">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:14:00">
13:14
</div>
<div class="text">
<strong>‼ CVE-2021-0625 ‼</strong><br><br><code>In ccu, there is a possible memory corruption due to improper locking. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05594996; Issue ID: ALPS05594996.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0625">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31133">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:14:01">
13:14
</div>
<div class="text">
<strong>‼ CVE-2021-0613 ‼</strong><br><br><code>In asf extractor, there is a possible out of bounds read due to an incorrect bounds check. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05489178; Issue ID: ALPS05489178.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0613">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31134">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:14:02">
13:14
</div>
<div class="text">
<strong>‼ CVE-2021-41035 ‼</strong><br><br><code>In Eclipse Openj9 before version 0.29.0, the JVM does not throw IllegalAccessError for MethodHandles that invoke inaccessible interface methods.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41035">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31135">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:14:04">
13:14
</div>
<div class="text">
<strong>‼ CVE-2021-24514 ‼</strong><br><br><code>The Visual Form Builder WordPress plugin before 3.0.4 does not sanitise or escape its Form Name, allowing high privilege users such as admin to set Cross-Site Scripting payload in them, even when the unfiltered_html capability is disallowed</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24514">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31136">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:16:42">
13:16
</div>
<div class="text">
<strong>🗓️ Popular NPM package UA-Parser-JS poisoned with cryptomining, password-stealing malware 🗓️</strong><br><br><code>Developer moves quickly to address vulnerabilities after his account was compromised</code><br><br><a href="https://portswigger.net/daily-swig/popular-npm-package-ua-parser-js-poisoned-with-cryptomining-password-stealing-malware">📖 Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31137">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:23:22">
13:23
</div>
<div class="text">
<strong>‼ CVE-2021-24699 ‼</strong><br><br><code>The Easy Media Download WordPress plugin before 1.1.7 does not escape the text argument of its shortcode, which could allow users with a role as low as Contributor to perform Stored Cross-Site Scripting attacks.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24699">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31138">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:23:24">
13:23
</div>
<div class="text">
<strong>‼ CVE-2021-0663 ‼</strong><br><br><code>In audio DSP, there is a possible out of bounds write due to an incorrect bounds check. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05844458; Issue ID: ALPS05844458.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0663">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31139">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:23:25">
13:23
</div>
<div class="text">
<strong>‼ CVE-2021-24744 ‼</strong><br><br><code>The WordPress Contact Forms by Cimatti WordPress plugin before 1.4.12 does not sanitise and escape the Form Title before outputting it in some admin pages. which could allow high privilege users to perform Cross-Site Scripting attacks even when the unfiltered_html is disallowed.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24744">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31140">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:23:26">
13:23
</div>
<div class="text">
<strong>‼ CVE-2021-0662 ‼</strong><br><br><code>In audio DSP, there is a possible out of bounds write due to an incorrect bounds check. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05844434; Issue ID: ALPS05844434.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0662">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31141">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:23:28">
13:23
</div>
<div class="text">
<strong>‼ CVE-2021-0411 ‼</strong><br><br><code>In flv extractor, there is a possible out of bounds read due to an integer overflow. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05561362; Issue ID: ALPS05561362.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0411">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31142">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:23:29">
13:23
</div>
<div class="text">
<strong>‼ CVE-2021-0941 ‼</strong><br><br><code>In bpf_skb_change_head of filter.c, there is a possible out of bounds read due to a use after free. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-154177719References: Upstream kernel</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0941">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31143">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:23:31">
13:23
</div>
<div class="text">
<strong>‼ CVE-2021-24414 ‼</strong><br><br><code>The Video Player for YouTube WordPress plugin before 1.4 does not sanitise or validate the parameters from its shortcode, allowing users with a role as low as contributor to set Cross-Site Scripting payload in them which will be triggered in the page/s with the embed malicious shortcode</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24414">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31144">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:23:33">
13:23
</div>
<div class="text">
<strong>‼ CVE-2021-24885 ‼</strong><br><br><code>The YOP Poll WordPress plugin before 6.1.2 does not escape the perpage parameter before outputting it back in an attribute, leading to a Reflected Cross-Site Scripting</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24885">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31145">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:23:35">
13:23
</div>
<div class="text">
<strong>‼ CVE-2021-0615 ‼</strong><br><br><code>In flv extractor, there is a possible out of bounds read due to an integer overflow. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05561369; Issue ID: ALPS05561369.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0615">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31146">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:23:36">
13:23
</div>
<div class="text">
<strong>‼ CVE-2021-0630 ‼</strong><br><br><code>In wifi driver, there is a possible system crash due to a missing bounds check. This could lead to remote denial of service with no additional execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05551397; Issue ID: ALPS05551397.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-0630">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message31147">
<div class="body">
<div class="pull_right date details" title="25.10.2021 13:23:37">
13:23
</div>
<div class="text">
<strong>‼ CVE-2020-20908 ‼</strong><br><br><code>Akaunting v1.3.17 was discovered to contain a stored cross-site scripting (XSS) vulnerability which allows attackers to execute arbitrary web scripts or HTML via a crafted payload in the Company Name input field.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-20908">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message31148">
<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="25.10.2021 13:42:22">
13:42
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🦿 REvil ransomware group reportedly taken offline by multi-nation effort 🦿</strong><br><br><code>Law enforcement officials and cyber specialists hacked into REvil's network, gaining control of some of its servers, sources told Reuters.</code><br><br><a href="https://www.techrepublic.com/article/revil-ransomware-group-reportedly-taken-offline-by-multi-nation-effort/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>