-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages37.html
19774 lines (12357 loc) Β· 786 KB
/
messages37.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="messages36.html">
Previous messages
</a>
<div class="message service" id="message-1026">
<div class="body details">
24 January 2022
</div>
</div>
<div class="message default clearfix" id="message36098">
<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="24.01.2022 07:03:48">
07:03
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Unusual βDonald Trumpβ Packer Malware Delivers RATs, Infostealers β</strong><br><br><code>The βDTPackerβ downloader used fake Liverpool Football Club sites as lures for several weeks, a report finds.</code><br><br><a href="https://threatpost.com/donald-trump-packer-malware-infostealers/177887/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message36099">
<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="24.01.2022 08:17:04">
08:17
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2021-25035 βΌ</strong><br><br><code>The Backup and Staging by WP Time Capsule WordPress plugin before 1.22.7 does not sanitise and escape the error parameter before outputting it back in an admin page, leading to a Reflected Cross-Site Scripting</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25035">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36100">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:04">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-25045 βΌ</strong><br><br><code>The Asgaros Forum WordPress plugin before 1.15.15 does not validate or escape the forum_id parameter before using it in a SQL statement when editing a forum, leading to an SQL injection issue</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25045">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36101">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:06">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-24858 βΌ</strong><br><br><code>The Cookie Notification Plugin for WordPress plugin before 1.0.9 does not sanitise or escape the id GET parameter before using it in a SQL statement, when retrieving the setting to edit in the admin dashboard, leading to an authenticated SQL Injection</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24858">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36102">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:08">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-25083 βΌ</strong><br><br><code>The Registrations for the Events Calendar WordPress plugin before 2.7.10 does not escape the qtype parameter before outputting it back in an attribute in the settings page, leading to a Reflected Cross-Site Scripting</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25083">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36103">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:09">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-25076 βΌ</strong><br><br><code>The WP User Frontend WordPress plugin before 3.5.26 does not validate and escape the status parameter before using it in a SQL statement in the Subscribers dashboard, leading to an SQL injection. Due to the lack of sanitisation and escaping, this could also lead to Reflected Cross-Site Scripting</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25076">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36104">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:10">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-24694 βΌ</strong><br><br><code>The Simple Download Monitor WordPress plugin before 3.9.11 could allow users with a role as low as Contributor to perform Stored Cross-Site Scripting attack via 1) "color" or "css_class" argument of sdm_download shortcode, 2) "class" or "placeholder" argument of sdm_search_form shortcode.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24694">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36105">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:12">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-24696 βΌ</strong><br><br><code>The Simple Download Monitor WordPress plugin before 3.9.9 does not enforce nonce checks, which could allow attackers to perform CSRF attacks to 1) make admins export logs to exploit a separate log disclosure vulnerability (fixed in 3.9.6), 2) delete logs (fixed in 3.9.9), 3) remove thumbnail image from downloads</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24696">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36106">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:13">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-25079 βΌ</strong><br><br><code>The Contact Form Entries WordPress plugin before 1.2.4 does not sanitise and escape various parameters, such as form_id, status, end_date, order, orderby and search before outputting them back in the admin page</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25079">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36107">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:14">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-25015 βΌ</strong><br><br><code>The myCred WordPress plugin before 2.4 does not sanitise and escape the search query before outputting it back in the history dashboard page, leading to a Reflected Cross-Site Scripting issue</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25015">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36108">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:16">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-25013 βΌ</strong><br><br><code>The Qubely WordPress plugin before 1.7.8 does not have authorisation and CSRF check on the qubely_delete_saved_block AJAX action, and does not ensure that the block to be deleted belong to the plugin, as a result, any authenticated users, such as subscriber can delete arbitrary posts</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25013">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36109">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:17">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-25080 βΌ</strong><br><br><code>The Contact Form Entries WordPress plugin before 1.1.7 does not validate, sanitise and escape the IP address retrieved via headers such as CLIENT-IP and X-FORWARDED-FOR, allowing unauthenticated attackers to perform Cross-Site Scripting attacks against logged in admins viewing the created entry</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25080">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36110">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:18">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-24968 βΌ</strong><br><br><code>The Ultimate FAQ WordPress plugin before 2.1.2 does not have capability and CSRF checks in the ewd_ufaq_welcome_add_faq and ewd_ufaq_welcome_add_faq_page AJAX actions, available to any authenticated users. As a result, any users, with a role as low as Subscriber could create FAQ and FAQ questions</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24968">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36111">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:19">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-24985 βΌ</strong><br><br><code>The Easy Forms for Mailchimp WordPress plugin before 6.8.6 does not sanitise and escape the field_name and field_type parameters before outputting them back in attributes, leading to Reflected Cross-Site Scripting issues</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24985">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36112">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:20">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-25074 βΌ</strong><br><br><code>The WebP Converter for Media WordPress plugin before 4.0.3 contains a file (passthru.php) which does not validate the src parameter before redirecting the user to it, leading to an Open Redirect issue</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25074">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36113">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:21">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-24974 βΌ</strong><br><br><code>The Product Feed PRO for WooCommerce WordPress plugin before 11.0.7 does not have authorisation and CSRF check in some of its AJAX actions, allowing any authenticated users to call then, which could lead to Stored Cross-Site Scripting issue (which will be triggered in the admin dashboard) due to the lack of escaping.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24974">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36114">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:22">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-24865 βΌ</strong><br><br><code>The Advanced Custom Fields: Extended WordPress plugin before 0.8.8.7 does not validate the order and orderby parameters before using them in a SQL statement, leading to a SQL Injection issue</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24865">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36115">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:25">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-25062 βΌ</strong><br><br><code>The Orders Tracking for WooCommerce WordPress plugin before 1.1.10 does not sanitise and escape the file_url before outputting it back in an admin page, leading to a Reflected Cross-Site Scripting</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25062">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36116">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:26">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-24965 βΌ</strong><br><br><code>The Five Star Restaurant Reservations WordPress plugin before 2.4.8 does not have capability and CSRF checks in the rtb_welcome_set_schedule AJAX action, allowing any authenticated users to call it. Due to the lack of sanitisation and escaping, users with a role as low as subscriber could perform Cross-Site Scripting attacks against logged in admins</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24965">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36117">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:28">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-24733 βΌ</strong><br><br><code>The WP Post Page Clone WordPress plugin before 1.2 allows users with a role as low as Contributor to clone and view other users' draft and password-protected posts which they cannot view normally.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-24733">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36118">
<div class="body">
<div class="pull_right date details" title="24.01.2022 08:17:28">
08:17
</div>
<div class="text">
<strong>βΌ CVE-2021-25031 βΌ</strong><br><br><code>The Image Hover Effects Ultimate (Image Gallery, Effects, Lightbox, Comparison or Magnifier) WordPress plugin before 9.7.1 does not escape the effects parameter before outputting it back in an attribute in an admin page, leading to a Reflected Cross-Site Scripting</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-25031">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message36119">
<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="24.01.2022 10:25:47">
10:25
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ποΈ Chain of vulnerabilities led to RCE on Cisco Prime servers ποΈ</strong><br><br><code>Full chain exploit ready for Prime time</code><br><br><a href="https://portswigger.net/daily-swig/chain-of-vulnerabilities-led-to-rce-on-cisco-prime-servers">π Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message36120">
<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="24.01.2022 11:25:52">
11:25
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Alleged carder gang mastermind and three acolytes under arrest in Russia β </strong><br><br><code>The motto of the gang was "In Fraud We Trust", and they went by a dizzying range of online nicknames.</code><br><br><a href="https://nakedsecurity.sophos.com/2022/01/24/alleged-carder-gang-mastermind-and-three-acolytes-under-arrest-in-russia/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message36121">
<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="24.01.2022 11:53:13">
11:53
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ποΈ OpenSubtitles data breach: Users asked to re-secure accounts after plaintext password snafu ποΈ</strong><br><br><code>Movie translation site asked victims to reset passwordsβ¦ then sent them in clear text</code><br><br><a href="https://portswigger.net/daily-swig/opensubtitles-data-breach-users-asked-to-re-secure-accounts-after-plaintext-password-snafu">π Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message36122">
<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="24.01.2022 12:11:33">
12:11
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Logwatch 7.6 π </strong><br><br><code>Logwatch analyzes and reports on unix system logs. It is a customizable and pluggable log monitoring system which will go through the logs for a given period of time and make a customizable report. It should work right out of the package on most systems.</code><br><br><a href="https://packetstormsecurity.com/files/165672/logwatch-7.6.tar.gz">π Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36123">
<div class="body">
<div class="pull_right date details" title="24.01.2022 12:17:15">
12:17
</div>
<div class="text">
<strong>βΌ CVE-2021-44981 βΌ</strong><br><br><code>In QuickBox Pro v2.5.8 and below, the config.php file has a variable which takes a GET parameter value and parses it into a shell_exec(''); function without properly sanitizing any shell arguments, therefore remote code execution is possible. Additionally, as the media server is running as root by default attackers can use the sudo command within this shell_exec(''); function, which allows for privilege escalation by means of RCE.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-44981">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36124">
<div class="body">
<div class="pull_right date details" title="24.01.2022 12:20:59">
12:20
</div>
<div class="text">
<strong>π΄ A Level-Set on Russia-Borne Cyber Threats π΄</strong><br><br><code>As hostilities mount between Russia and Ukraine, new and more dangerous cyberattacks are likely to develop. Pinpointing sources and motives will remain elusive, but enterprises should prepare for an escalation in cyberspace.</code><br><br><a href="https://www.darkreading.com/omdia/a-level-set-on-russia-borne-cyber-threats">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36125">
<div class="body">
<div class="pull_right date details" title="24.01.2022 12:21:00">
12:21
</div>
<div class="text">
<strong>π΄ Are You Prepared to Defend Against a USB Attack? π΄</strong><br><br><code>Recent "BadUSB" attacks serve as a reminder of the big damage that small devices can cause.</code><br><br><a href="https://www.darkreading.com/vulnerabilities-threats/are-you-prepared-to-defend-against-a-USB-attack-">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36126">
<div class="body">
<div class="pull_right date details" title="24.01.2022 12:23:41">
12:23
</div>
<div class="text">
<strong>βΌ CVE-2022-22296 βΌ</strong><br><br><code>Sourcecodester Hospital's Patient Records Management System 1.0 is vulnerable to Insecure Permissions via the id parameter in manage_user endpoint. Simply change the value and data of other users can be displayed.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-22296">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36127">
<div class="body">
<div class="pull_right date details" title="24.01.2022 12:23:43">
12:23
</div>
<div class="text">
<strong>π Lynis Auditing Tool 3.0.7 π </strong><br><br><code>Lynis is an auditing tool for Unix (specialists). It scans the system and available software to detect security issues. Beside security related information it will also scan for general system information, installed packages and configuration mistakes. This software aims in assisting automated auditing, software patch management, vulnerability and malware scanning of Unix based systems.</code><br><br><a href="https://packetstormsecurity.com/files/165674/lynis-3.0.7.tar.gz">π Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message36128">
<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="24.01.2022 12:53:14">
12:53
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>ποΈ RCE bug chain patched in CentOS Web Panel ποΈ</strong><br><br><code>Shell injected on servers via bypass of local file inclusion defenses</code><br><br><a href="https://portswigger.net/daily-swig/rce-bug-chain-patched-in-centos-web-panel">π Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message36129">
<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="24.01.2022 14:17:26">
14:17
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2021-41472 βΌ</strong><br><br><code>SQL injection vulnerability in Sourcecodester Simple Membership System v1 by oretnom23, allows attackers to execute arbitrary SQL commands via the username and password parameters.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41472">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36130">
<div class="body">
<div class="pull_right date details" title="24.01.2022 14:17:28">
14:17
</div>
<div class="text">
<strong>βΌ CVE-2022-23437 βΌ</strong><br><br><code>There's a vulnerability within the Apache Xerces Java (XercesJ) XML parser when handling specially crafted XML document payloads. This causes, the XercesJ XML parser to wait in an infinite loop, which may sometimes consume system resources for prolonged duration. This vulnerability is present within XercesJ version 2.12.1 and the previous versions.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23437">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36131">
<div class="body">
<div class="pull_right date details" title="24.01.2022 14:17:29">
14:17
</div>
<div class="text">
<strong>βΌ CVE-2021-4088 βΌ</strong><br><br><code>SQL injection vulnerability in Data Loss Protection (DLP) ePO extension 11.8.x prior to 11.8.100, 11.7.x prior to 11.7.101, and 11.6.401 allows a remote authenticated attacker to inject unfiltered SQL into the DLP part of the ePO database. This could lead to remote code execution on the ePO server with privilege escalation.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-4088">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36132">
<div class="body">
<div class="pull_right date details" title="24.01.2022 14:17:30">
14:17
</div>
<div class="text">
<strong>βΌ CVE-2021-40596 βΌ</strong><br><br><code>SQL injection vulnerability in Login.php in sourcecodester Online Learning System v2 by oretnom23, allows attackers to execute arbitrary SQL commands via the faculty_id parameter.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-40596">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36133">
<div class="body">
<div class="pull_right date details" title="24.01.2022 14:17:32">
14:17
</div>
<div class="text">
<strong>βΌ CVE-2021-40909 βΌ</strong><br><br><code>Cross site scripting (XSS) vulnerability in sourcecodester PHP CRUD without Refresh/Reload using Ajax and DataTables Tutorial v1 by oretnom23, allows remote attackers to execute arbitrary code via the first_name, last_name, and email parameters to /ajax_crud.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-40909">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36134">
<div class="body">
<div class="pull_right date details" title="24.01.2022 14:17:33">
14:17
</div>
<div class="text">
<strong>βΌ CVE-2021-41471 βΌ</strong><br><br><code>SQL injection vulnerability in Sourcecodester South Gate Inn Online Reservation System v1 by oretnom23, allows attackers to execute arbitrary SQL commands via the email and Password parameters.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41471">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36135">
<div class="body">
<div class="pull_right date details" title="24.01.2022 14:17:35">
14:17
</div>
<div class="text">
<strong>βΌ CVE-2021-40907 βΌ</strong><br><br><code>SQL injection vulnerability in Sourcecodester Storage Unit Rental Management System v1 by oretnom23, allows attackers to execute arbitrary SQL commands via the username parameter to /storage/classes/Login.php.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-40907">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36136">
<div class="body">
<div class="pull_right date details" title="24.01.2022 14:17:36">
14:17
</div>
<div class="text">
<strong>βΌ CVE-2021-40908 βΌ</strong><br><br><code>SQL injection vulnerability in Login.php in Sourcecodester Purchase Order Management System v1 by oretnom23, allows attackers to execute arbitrary SQL commands via the username parameter.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-40908">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36137">
<div class="body">
<div class="pull_right date details" title="24.01.2022 14:23:15">
14:23
</div>
<div class="text">
<strong>ποΈ F5 fixes high-risk NGINX Controller vulnerability in January patch rollout ποΈ</strong><br><br><code>Brace for impact</code><br><br><a href="https://portswigger.net/daily-swig/f5-fixes-high-risk-nginx-controller-vulnerability-in-january-patch-rollout">π Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message36138">
<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="24.01.2022 16:17:33">
16:17
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2021-35005 βΌ</strong><br><br><code>This vulnerability allows local attackers to disclose sensitive information on affected installations of TeamViewer. An attacker must first obtain the ability to execute low-privileged code on the target system in order to exploit this vulnerability. The specific flaw exists within the TeamViewer service. The issue results from the lack of proper validation of user-supplied data, which can result in a read past the end of an allocated array. An attacker can leverage this in conjunction with other vulnerabilities to execute arbitrary code in the context of SYSTEM. Was ZDI-CAN-13818.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-35005">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36139">
<div class="body">
<div class="pull_right date details" title="24.01.2022 16:17:34">
16:17
</div>
<div class="text">
<strong>βΌ CVE-2021-41660 βΌ</strong><br><br><code>SQL injection vulnerability in Sourcecodester Patient Appointment Scheduler System v1 by oretnom23, allows attackers to execute arbitrary SQL commands via the username and password fields to login.php.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41660">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36140">
<div class="body">
<div class="pull_right date details" title="24.01.2022 16:17:37">
16:17
</div>
<div class="text">
<strong>βΌ CVE-2021-41929 βΌ</strong><br><br><code>Cross Site Scripting (XSS) in Sourcecodester The Electric Billing Management System 1.0 by oretnom23, allows attackers to execute arbitrary code via the about page.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41929">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36141">
<div class="body">
<div class="pull_right date details" title="24.01.2022 16:17:38">
16:17
</div>
<div class="text">
<strong>βΌ CVE-2021-41658 βΌ</strong><br><br><code>Cross Site Scripting (XSS) in Sourcecodester Student Quarterly Grading System by oretnom23, allows attackers to execute arbitrary code via the fullname and username parameters to the users page.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41658">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36142">
<div class="body">
<div class="pull_right date details" title="24.01.2022 16:17:40">
16:17
</div>
<div class="text">
<strong>βΌ CVE-2021-41659 βΌ</strong><br><br><code>SQL injection vulnerability in Sourcecodester Banking System v1 by oretnom23, allows attackers to execute arbitrary SQL commands via the username or password field.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-41659">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message36143">
<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="24.01.2022 16:51:17">
16:51
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Ransomware Operators Are Feeling the Heat π΄</strong><br><br><code>Ransomware has maintained its dominance the past few years; however, increased law enforcement attention may result in changes to how it looks in the future.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/ransomware-operators-are-feeling-the-heat">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message36144">
<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="24.01.2022 17:22:54">
17:22
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π¦Ώ REvil gang member arrests strike fear among cybercriminals on the Dark Web π¦Ώ</strong><br><br><code>Dark Web forum posts uncovered by Trustwave show that the recent arrests in Russia have triggered major concerns among fellow criminals.</code><br><br><a href="https://www.techrepublic.com/article/revil-gang-member-arrests-strike-fear-among-cybercriminals-on-the-dark-web/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36145">
<div class="body">
<div class="pull_right date details" title="24.01.2022 17:33:45">
17:33
</div>
<div class="text">
<strong>π CISA Adds 17 Vulnerabilities to Exploited Bug Catalog π</strong><br><br><code>The Cybersecurity and Infrastructure Security Agency (CISA) added 17 vulnerabilities to its list of bugs actively being exploited in attacks. Federal agencies need to fix 10 of them by next week.</code><br><br><a href="https://digitalguardian.com/blog/cisa-adds-17-vulnerabilities-exploited-bug-catalog">π Read</a><br><br>via "".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message36146">
<div class="body">
<div class="pull_right date details" title="24.01.2022 17:33:46">
17:33
</div>