-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages26.html
22782 lines (14237 loc) · 858 KB
/
messages26.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="messages25.html">
Previous messages
</a>
<div class="message service" id="message-800">
<div class="body details">
18 March 2021
</div>
</div>
<div class="message default clearfix" id="message25098">
<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="18.03.2021 13:32:13">
13:32
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2021-24137 ‼</strong><br><br><code>Unvalidated input in the Blog2Social WordPress plugin, versions before 6.3.1, lead to SQL Injection in the Re-Share Posts feature, allowing authenticated users to inject arbitrary SQL commands.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24137">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25099">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:14">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24124 ‼</strong><br><br><code>Unvalidated input and lack of output encoding in the WP Shieldon WordPress plugin, version 1.6.3 and below, leads to Unauthenticated Reflected Cross-Site Scripting (XSS) when the CAPTCHA page is shown could lead to privileged escalation.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24124">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25100">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:15">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-21625 ‼</strong><br><br><code>Jenkins CloudBees AWS Credentials Plugin 1.28 and earlier does not perform a permission check in a helper method for HTTP endpoints, allowing attackers with Overall/Read permission to enumerate credentials IDs of AWS credentials stored in Jenkins in some circumstances.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-21625">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25101">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:19">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24129 ‼</strong><br><br><code>Unvalidated input and lack of output encoding in the Themify Portfolio Post WordPress plugin, versions before 1.1.6, lead to Stored Cross-Site Scripting (XSS) vulnerabilities allowing low-privileged users (Contributor+) to inject arbitrary JavaScript code or HTML in posts where the Themify Custom Panel is embedded, which could lead to privilege escalation.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24129">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25102">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:20">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24134 ‼</strong><br><br><code>Unvalidated input and lack of output encoding in the Constant Contact Forms WordPress plugin, versions before 1.8.8, lead to multiple Stored Cross-Site Scripting vulnerabilities, which allowed high-privileged user (Editor+) to inject arbitrary JavaScript code or HTML in posts where the malicious form is embed.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24134">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25103">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:21">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24136 ‼</strong><br><br><code>Unvalidated input and lack of output encoding in the Testimonials Widget WordPress plugin, versions before 4.0.0, lead to multiple Cross-Site Scripting vulnerabilities, allowing remote attackers to inject arbitrary JavaScript code or HTML via the below parameters: - Author - Job Title - Location - Company - Email - URL</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24136">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25104">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:21">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24139 ‼</strong><br><br><code>Unvalidated input in the Photo Gallery (10Web Photo Gallery) WordPress plugin, versions before 1.5.55, leads to SQL injection via the frontend/models/model.php bwg_search_x parameter.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24139">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25105">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:22">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24128 ‼</strong><br><br><code>Unvalidated input and lack of output encoding in the Team Members WordPress plugin, versions before 5.0.4, lead to Cross-site scripting vulnerabilities allowing medium-privileged authenticated attacker (contributor+) to inject arbitrary web script or HTML via the 'Description/biography' of a member.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24128">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25106">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:26">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24130 ‼</strong><br><br><code>Unvalidated input in the WP Google Map Plugin WordPress plugin, versions before 4.1.5, in the Manage Locations page within the plugin settings was vulnerable to SQL Injection through a high privileged user (admin+).</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24130">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25107">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:27">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24149 ‼</strong><br><br><code>Unvalidated input in the Modern Events Calendar Lite WordPress plugin, versions before 5.16.6, did not sanitise the mec[post_id] POST parameter in the mec_fes_form AJAX action when logged in as an author+, leading to an authenticated SQL Injection issue.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24149">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25108">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:28">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24127 ‼</strong><br><br><code>Unvalidated input and lack of output encoding in the ThirstyAffiliates Affiliate Link Manager WordPress plugin, versions before 3.9.3, was vulnerable to authenticated Stored Cross-Site Scripting (XSS), which could lead to privilege escalation.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24127">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25109">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:29">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-26237 ‼</strong><br><br><code>FastStone Image Viewer <= 7.5 is affected by a user mode write access violation at 0x00402d7d, triggered when a user opens or views a malformed CUR file that is mishandled by FSViewer.exe. Attackers could exploit this issue for a Denial of Service (DoS) or possibly to achieve code execution.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-26237">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25110">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:30">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24146 ‼</strong><br><br><code>Lack of authorisation checks in the Modern Events Calendar Lite WordPress plugin, versions before 5.16.5, did not properly restrict access to the export files, allowing unauthenticated users to exports all events data in CSV or XML format for example.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24146">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25111">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:34">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24125 ‼</strong><br><br><code>Unvalidated input in the Contact Form Submissions WordPress plugin, versions 1.6.4 and before, could lead to SQL injection in the wpcf7_contact_form GET parameter when submitting a filter request as a high privilege user (admin+)</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24125">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25112">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:35">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24143 ‼</strong><br><br><code>Unvalidated input in the AccessPress Social Icons plugin, versions before 1.8.1, did not sanitise its widget attribute, allowing accounts with post permission, such as author, to perform SQL injections.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24143">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25113">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:36">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-24132 ‼</strong><br><br><code>The Slider by 10Web WordPress plugin, versions before 1.2.36, in the bulk_action, export_full and save_slider_db functionalities of the plugin were vulnerable, allowing a high privileged user (Admin), or medium one such as Contributor+ (if "Role Options" is turn on for other users) to perform a SQL Injection attacks.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24132">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25114">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:37">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-26935 ‼</strong><br><br><code>In WoWonder < 3.1, remote attackers can gain access to the database by exploiting a requests.php?f=search-my-followers SQL Injection vulnerability via the event_id parameter.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-26935">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25115">
<div class="body">
<div class="pull_right date details" title="18.03.2021 13:32:38">
13:32
</div>
<div class="text">
<strong>‼ CVE-2021-26233 ‼</strong><br><br><code>FastStone Image Viewer <= 7.5 is affected by a user mode write access violation near NULL at 0x005bdfcb, triggered when a user opens or views a malformed CUR file that is mishandled by FSViewer.exe. Attackers could exploit this issue for a Denial of Service (DoS) or possibly to achieve code execution.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-26233">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message25116">
<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="18.03.2021 14:22:46">
14:22
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Beware the Package Typosquatting Supply Chain Attack 🕴</strong><br><br><code>Attackers are mimicking the names of existing packages on public registries in hopes that users or developers will accidentally download these malicious packages instead of legitimate ones.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/beware-the-package-typosquatting-supply-chain-attack/a/d-id/1340383?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message25117">
<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="18.03.2021 14:52:46">
14:52
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 FBI: Business Email Compromise Cost $1.8B in 2020 🕴</strong><br><br><code>The Internet Crime Complaint Center received a record 791,790 complaints last year, with reported losses exceeding $4.1 billion.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/fbi-business-email-compromise-cost-%2418b-in-2020/d/d-id/1340452?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25118">
<div class="body">
<div class="pull_right date details" title="18.03.2021 14:57:15">
14:57
</div>
<div class="text">
<strong>🦿 How cybercriminals are targeting US taxpayers as tax season approaches 🦿</strong><br><br><code>The latest scams use phishing emails to deliver remote access trojans to control a victim's computer and steal sensitive data, says Cybereason.</code><br><br><a href="https://www.techrepublic.com/article/how-cybercriminals-are-targeting-us-taxpayers-as-tax-season-approaches/#ftag=RSS56d97e7">📖 Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message25119">
<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="18.03.2021 15:32:14">
15:32
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2021-28796 ‼</strong><br><br><code>Increments Qiita::Markdown before 0.33.0 allows XSS in transformers.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-28796">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25120">
<div class="body">
<div class="pull_right date details" title="18.03.2021 15:32:15">
15:32
</div>
<div class="text">
<strong>‼ CVE-2021-26216 ‼</strong><br><br><code>SeedDMS 5.1.x is affected by cross-site request forgery (CSRF) in out.EditFolder.php.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-26216">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25121">
<div class="body">
<div class="pull_right date details" title="18.03.2021 15:32:16">
15:32
</div>
<div class="text">
<strong>‼ CVE-2020-27827 ‼</strong><br><br><code>A flaw was found in multiple versions of OpenvSwitch. Specially crafted LLDP packets can cause memory to be lost when allocating data to handle specific optional TLVs, potentially causing a denial of service. The highest threat from this vulnerability is to system availability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-27827">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25122">
<div class="body">
<div class="pull_right date details" title="18.03.2021 15:32:17">
15:32
</div>
<div class="text">
<strong>‼ CVE-2021-28145 ‼</strong><br><br><code>Concrete CMS (formerly concrete5) before 8.5.5 allows remote authenticated users to conduct XSS attacks via a crafted survey block. This requires at least Editor privileges.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-28145">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25123">
<div class="body">
<div class="pull_right date details" title="18.03.2021 15:32:18">
15:32
</div>
<div class="text">
<strong>‼ CVE-2020-26155 ‼</strong><br><br><code>Multiple files and folders in Utimaco SecurityServer 4.20.0.4 and 4.31.1.0. are installed with Read/Write permissions for authenticated users, which allows for binaries to be manipulated by non-administrator users. Additionally, entries are made to the PATH environment variable which, in conjunction with these weak permissions, could enable an attacker to perform a DLL hijacking attack.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26155">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25124">
<div class="body">
<div class="pull_right date details" title="18.03.2021 15:32:22">
15:32
</div>
<div class="text">
<strong>‼ CVE-2021-28790 ‼</strong><br><br><code>The unofficial SwiftLint extension before 1.4.5 for Visual Studio Code allows remote attackers to execute arbitrary code by constructing a malicious workspace with a crafted swiftlint.path configuration value that triggers execution upon opening the workspace.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-28790">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25125">
<div class="body">
<div class="pull_right date details" title="18.03.2021 15:32:23">
15:32
</div>
<div class="text">
<strong>‼ CVE-2021-28791 ‼</strong><br><br><code>The unofficial SwiftFormat extension before 1.3.7 for Visual Studio Code allows remote attackers to execute arbitrary code by constructing a malicious workspace with a crafted swiftformat.path configuration value that triggers execution upon opening the workspace.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-28791">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25126">
<div class="body">
<div class="pull_right date details" title="18.03.2021 15:32:24">
15:32
</div>
<div class="text">
<strong>‼ CVE-2021-21383 ‼</strong><br><br><code>Wiki.js an open-source wiki app built on Node.js. Wiki.js before version 2.5.191 is vulnerable to stored cross-site scripting through mustache expressions in code blocks. This vulnerability exists due to mustache expressions being parsed by Vue during content injection even though it is contained within a `<pre>` element. By creating a crafted wiki page, a malicious Wiki.js user may stage a stored cross-site scripting attack. This allows the attacker to execute malicious JavaScript when the page is viewed by other users. For an example see referenced GitHub Security Advisory. Commit 5ffa189383dd716f12b56b8cae2ba0d075996cf1 fixes this vulnerability by adding the v-pre directive to all `<pre>` tags during the render.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-21383">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25127">
<div class="body">
<div class="pull_right date details" title="18.03.2021 15:32:24">
15:32
</div>
<div class="text">
<strong>‼ CVE-2021-28789 ‼</strong><br><br><code>The unofficial apple/swift-format extension before 1.1.2 for Visual Studio Code allows remote attackers to execute arbitrary code by constructing a malicious workspace with a crafted apple-swift-format.path configuration value that triggers execution upon opening the workspace.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-28789">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25128">
<div class="body">
<div class="pull_right date details" title="18.03.2021 15:32:25">
15:32
</div>
<div class="text">
<strong>‼ CVE-2021-26215 ‼</strong><br><br><code>SeedDMS 5.1.x is affected by cross-site request forgery (CSRF) in out.EditDocument.php.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-26215">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25129">
<div class="body">
<div class="pull_right date details" title="18.03.2021 15:32:29">
15:32
</div>
<div class="text">
<strong>‼ CVE-2021-28794 ‼</strong><br><br><code>The unofficial ShellCheck extension before 0.13.4 for Visual Studio Code mishandles shellcheck.executablePath.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-28794">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25130">
<div class="body">
<div class="pull_right date details" title="18.03.2021 15:32:30">
15:32
</div>
<div class="text">
<strong>‼ CVE-2021-28792 ‼</strong><br><br><code>The unofficial Swift Development Environment extension before 2.12.1 for Visual Studio Code allows remote attackers to execute arbitrary code by constructing a malicious workspace with a crafted sourcekit-lsp.serverPath, swift.languageServerPath, swift.path.sourcekite, swift.path.sourcekiteDockerMode, swift.path.swift_driver_bin, or swift.path.shell configuration value that triggers execution upon opening the workspace.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-28792">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message25131">
<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="18.03.2021 15:52:48">
15:52
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 New CopperStealer Malware Hijacks Social Media Accounts 🕴</strong><br><br><code>Proofpoint researchers say it steals logins and spreads more malware.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/new-copperstealer-malware-hijacks-social-media-accounts/d/d-id/1340454?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message25132">
<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="18.03.2021 16:22:48">
16:22
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Women's History Month: Making Mentorship Meaningful 🕴</strong><br><br><code>This month is a perfect opportunity for us to take a step back and think about what role we want to play as women in the technology sector.</code><br><br><a href="https://www.darkreading.com/careers-and-people/womens-history-month-making-mentorship-meaningful-/a/d-id/1340419?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message25133">
<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="18.03.2021 17:05:33">
17:05
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>❌ Trojanized Xcode Project Slips MacOS Malware to Apple Developers ❌</strong><br><br><code>In a new campaign, threat actors are bundling macOS malware in trojanized Apple Xcode developer projects.</code><br><br><a href="https://threatpost.com/xcode-macos-malware-apple-developers/164897/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message25134">
<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="18.03.2021 17:32:20">
17:32
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2019-14903 ‼</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was withdrawn by its CNA. Further investigation showed that it was not a security issue. Notes: none.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-14903">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25135">
<div class="body">
<div class="pull_right date details" title="18.03.2021 17:32:21">
17:32
</div>
<div class="text">
<strong>‼ CVE-2020-35492 ‼</strong><br><br><code>A flaw was found in cairo's image-compositor.c in all versions prior to 1.17.4. This flaw allows an attacker who can provide a crafted input file to cairo's image-compositor (for example, by convincing a user to open a file in an application using cairo, or if an application uses cairo on untrusted input) to cause a stack buffer overflow -> out-of-bounds WRITE. The highest impact from this vulnerability is to confidentiality, integrity, as well as system availability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-35492">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25136">
<div class="body">
<div class="pull_right date details" title="18.03.2021 17:32:22">
17:32
</div>
<div class="text">
<strong>‼ CVE-2019-14850 ‼</strong><br><br><code>A denial of service vulnerability was discovered in nbdkit 1.12.7, 1.14.1 and 1.15.1. An attacker could connect to the nbdkit service and cause it to perform a large amount of work in initializing backend plugins, by simply opening a connection to the service. This vulnerability could cause resource consumption and degradation of service in nbdkit, depending on the plugins configured on the server-side.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-14850">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25137">
<div class="body">
<div class="pull_right date details" title="18.03.2021 17:32:23">
17:32
</div>
<div class="text">
<strong>‼ CVE-2021-27656 ‼</strong><br><br><code>A vulnerability in exacqVision Web Service 20.12.2.0 and prior could allow an unauthenticated attacker to view system-level information about the exacqVision Web Service and the operating system.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-27656">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25138">
<div class="body">
<div class="pull_right date details" title="18.03.2021 17:32:24">
17:32
</div>
<div class="text">
<strong>‼ CVE-2021-1287 ‼</strong><br><br><code>A vulnerability in the web-based management interface of Cisco RV132W ADSL2+ Wireless-N VPN Routers and Cisco RV134W VDSL2 Wireless-AC VPN Routers could allow an authenticated, remote attacker to execute arbitrary code on an affected device or cause the device to restart unexpectedly. The vulnerability exists because the web-based management interface does not properly validate user-supplied input. An attacker could exploit this vulnerability by sending crafted HTTP requests to an affected device. A successful exploit could allow the attacker to execute arbitrary code as the root user on the underlying operating system or cause the device to reload, resulting in a denial of service (DoS) condition on the affected device.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-1287">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25139">
<div class="body">
<div class="pull_right date details" title="18.03.2021 17:32:28">
17:32
</div>
<div class="text">
<strong>‼ CVE-2019-3867 ‼</strong><br><br><code>A vulnerability was found in the Quay web application. Sessions in the Quay web application never expire. An attacker, able to gain access to a session, could use it to control or delete a user's container repository. Red Hat Quay 2 and 3 are vulnerable to this issue.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-3867">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25140">
<div class="body">
<div class="pull_right date details" title="18.03.2021 17:32:28">
17:32
</div>
<div class="text">
<strong>‼ CVE-2019-14908 ‼</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was withdrawn by its CNA. Further investigation showed that it was not a security issue. Notes: none.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-14908">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25141">
<div class="body">
<div class="pull_right date details" title="18.03.2021 17:32:29">
17:32
</div>
<div class="text">
<strong>‼ CVE-2020-14516 ‼</strong><br><br><code>In Rockwell Automation FactoryTalk Services Platform Versions 6.10.00 and 6.11.00, there is an issue with the implementation of the SHA-256 hashing algorithm with FactoryTalk Services Platform that prevents the user password from being hashed properly.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-14516">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25142">
<div class="body">
<div class="pull_right date details" title="18.03.2021 17:32:30">
17:32
</div>
<div class="text">
<strong>‼ CVE-2021-22665 ‼</strong><br><br><code>Rockwell Automation DriveTools SP v5.13 and below and Drives AOP v4.12 and below both contain a vulnerability that a local attacker with limited privileges may be able to exploit resulting in privilege escalation and complete control of the system.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-22665">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25143">
<div class="body">
<div class="pull_right date details" title="18.03.2021 17:32:31">
17:32
</div>
<div class="text">
<strong>‼ CVE-2021-28160 ‼</strong><br><br><code>Stored XSS on Acexy (BoyaMicro) Wireless-N WiFi Repeater 28.08.06.1 version 1.0 devices can occur via a malformed SSID field during scanning for nearby access points, which also occurs when a device's user visits the Repeater Wizard web management section. This enables an attacker to steal LAN credentials without being connected to the device.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-28160">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25144">
<div class="body">
<div class="pull_right date details" title="18.03.2021 17:32:35">
17:32
</div>
<div class="text">
<strong>‼ CVE-2019-14848 ‼</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was withdrawn by its CNA. Further investigation showed that it was not a security issue. Notes: none.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-14848">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message25145">
<div class="body">
<div class="pull_right date details" title="18.03.2021 17:35:22">
17:35
</div>
<div class="text">
<strong>❌ Fiserv Forgets to Buy Domain It Used as System Default ❌</strong><br><br><code>Fintech security provider Fiserv acknowledges it used unregistered domain as default email.</code><br><br><a href="https://threatpost.com/fiserv-forgets-to-buy-domain-it-used-as-system-default/164903/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message25146">
<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="18.03.2021 18:52:51">
18:52
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Facebook Expands Security Key Support to iOS & Android 🕴</strong><br><br><code>Facebook's announcement arrives the same week Twitter enabled support for multiple security keys on user accounts.</code><br><br><a href="https://www.darkreading.com/endpoint/facebook-expands-security-key-support-to-ios-and-android/d/d-id/1340457?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message25147">
<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="18.03.2021 19:22:52">
19:22
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>