-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages39.html
19494 lines (12182 loc) Β· 777 KB
/
messages39.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="messages38.html">
Previous messages
</a>
<div class="message service" id="message-1059">
<div class="body details">
25 February 2022
</div>
</div>
<div class="message default clearfix" id="message38098">
<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.02.2022 14:20:59">
14:20
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2022-24331 βΌ</strong><br><br><code>In JetBrains TeamCity before 2021.1.4, GitLab authentication impersonation was possible.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24331">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38099">
<div class="body">
<div class="pull_right date details" title="25.02.2022 14:21:01">
14:21
</div>
<div class="text">
<strong>βΌ CVE-2022-24346 βΌ</strong><br><br><code>In JetBrains IntelliJ IDEA before 2021.3.1, local code execution via RLO (Right-to-Left Override) characters was possible.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24346">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38100">
<div class="body">
<div class="pull_right date details" title="25.02.2022 14:21:02">
14:21
</div>
<div class="text">
<strong>βΌ CVE-2022-24337 βΌ</strong><br><br><code>In JetBrains TeamCity before 2021.2, health items of pull requests were shown to users who lacked appropriate permissions.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24337">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38101">
<div class="body">
<div class="pull_right date details" title="25.02.2022 14:21:05">
14:21
</div>
<div class="text">
<strong>βΌ CVE-2022-24328 βΌ</strong><br><br><code>In JetBrains Hub before 2021.1.13956, an unprivileged user could perform DoS.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24328">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38102">
<div class="body">
<div class="pull_right date details" title="25.02.2022 14:21:07">
14:21
</div>
<div class="text">
<strong>βΌ CVE-2022-24330 βΌ</strong><br><br><code>In JetBrains TeamCity before 2021.2.1, a redirection to an external site was possible.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24330">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38103">
<div class="body">
<div class="pull_right date details" title="25.02.2022 14:21:11">
14:21
</div>
<div class="text">
<strong>βΌ CVE-2022-24333 βΌ</strong><br><br><code>In JetBrains TeamCity before 2021.2, blind SSRF via an XML-RPC call was possible.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24333">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38104">
<div class="body">
<div class="pull_right date details" title="25.02.2022 14:21:13">
14:21
</div>
<div class="text">
<strong>βΌ CVE-2022-24343 βΌ</strong><br><br><code>In JetBrains YouTrack before 2021.4.31698, a custom logo could be set by a user who has read-only permissions.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24343">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38105">
<div class="body">
<div class="pull_right date details" title="25.02.2022 14:21:15">
14:21
</div>
<div class="text">
<strong>βΌ CVE-2022-24336 βΌ</strong><br><br><code>In JetBrains TeamCity before 2021.2.1, an unauthenticated attacker can cancel running builds via an XML-RPC request to the TeamCity server.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24336">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38106">
<div class="body">
<div class="pull_right date details" title="25.02.2022 14:21:17">
14:21
</div>
<div class="text">
<strong>βΌ CVE-2022-24344 βΌ</strong><br><br><code>JetBrains YouTrack before 2021.4.31698 was vulnerable to stored XSS on the Notification templates page.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24344">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38107">
<div class="body">
<div class="pull_right date details" title="25.02.2022 14:21:18">
14:21
</div>
<div class="text">
<strong>βΌ CVE-2022-24335 βΌ</strong><br><br><code>JetBrains TeamCity before 2021.2 was vulnerable to a Time-of-check/Time-of-use (TOCTOU) race-condition attack in agent registration via XML-RPC.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24335">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38108">
<div class="body">
<div class="pull_right date details" title="25.02.2022 14:21:20">
14:21
</div>
<div class="text">
<strong>βΌ CVE-2022-24342 βΌ</strong><br><br><code>In JetBrains TeamCity before 2021.2.1, URL injection leading to CSRF was possible.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24342">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message38109">
<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.02.2022 14:41:30">
14:41
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ Top 5 Interview Questions to Ask DevOps Candidates in 2022 π΄</strong><br><br><code>It's worthwhile to find candidates who have experience with models that embed security into their processes.</code><br><br><a href="https://www.darkreading.com/edge-articles/top-5-interview-questions-to-ask-devops-candidates-in-2022">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38110">
<div class="body">
<div class="pull_right date details" title="25.02.2022 14:50:36">
14:50
</div>
<div class="text">
<strong>β S3 Ep71: VMware escapes, PHP holes, WP plugin woes, and scary scams [Podcast + Transcript] β </strong><br><br><code>Latest episode - listen now!</code><br><br><a href="https://nakedsecurity.sophos.com/2022/02/24/s3-ep71-vmware-escapes-php-holes-wp-plugin-woes-and-scary-scams-podcast/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message38111">
<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.02.2022 15:20:33">
15:20
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Did we learn nothing from Y2K? Why are some coders still stuck on two digit numbers? β </strong><br><br><code>Calling all website coders: Y2K was then. V1H is now!</code><br><br><a href="https://nakedsecurity.sophos.com/2022/02/25/did-we-learn-nothing-from-y2k-why-are-some-coders-still-stuck-on-two-digit-numbers/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message38112">
<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.02.2022 16:14:28">
16:14
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β 6 Cyber-Defense Steps to Take Now to Protect Your Company β</strong><br><br><code>Ransomware is getting worse, but Daniel Spicer, chief security officer atΒ Ivanti, offers a checklist for choosing defense solutions to meet the challenge.</code><br><br><a href="https://threatpost.com/latest-insights-ransomware-threats/178391/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38113">
<div class="body">
<div class="pull_right date details" title="25.02.2022 16:14:30">
16:14
</div>
<div class="text">
<strong>π Friday Five 2/25 π</strong><br><br><code>Ransomware hits the industrial sector, behind the scenes of stalkerware network, and more - catch up on the infosec news of the week with the Friday Five!</code><br><br><a href="https://digitalguardian.com/blog/friday-five-2/25">π Read</a><br><br>via "".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38114">
<div class="body">
<div class="pull_right date details" title="25.02.2022 16:20:40">
16:20
</div>
<div class="text">
<strong>βΌ CVE-2021-38993 βΌ</strong><br><br><code>IBM AIX 7.1, 7.2, 7.3, and VIOS 3.1 could allow a non-privileged local user to exploit a vulnerability in the smbcd daemon to cause a denial of service. IBM X-Force ID: 212962.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-38993">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message38115">
<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.02.2022 16:39:21">
16:39
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βοΈ Russia Sanctions May Spark Escalating Cyber Conflict βοΈ</strong><br><br><code>President Biden joined European leaders this week in enacting economic sanctions against Russia in response its military invasion of Ukraine. The West has promised tougher sanctions are coming, but experts warn these will almost certainly trigger a Russian retaliation against America and its allies, which could escalate into cyber attacks on Western financial institutions and energy infrastructure.</code><br><br><a href="https://krebsonsecurity.com/2022/02/russia-sanctions-may-spark-escalating-cyber-conflict/">π Read</a><br><br>via "<em>Krebs on Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message38116">
<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.02.2022 17:00:48">
17:00
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Microsoft Exchange Bugs Exploited by βCubaβ Ransomware Gang β</strong><br><br><code>The ransomware gang known as Cuba is increasingly shifting to exploiting Exchange bugs β including crooks' favorites, ProxyShell and ProxyLogon β as initial infection vectors.</code><br><br><a href="https://threatpost.com/microsoft-exchange-exploited-cuba-ransomware/178665/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38117">
<div class="body">
<div class="pull_right date details" title="25.02.2022 17:11:39">
17:11
</div>
<div class="text">
<strong>π΄ Ukrainian Troops Targeted in Phishing Attacks by Suspected Belarusian APT π΄</strong><br><br><code>Ukraine's Computer Emergency Response Team calls out UNIC1151 nation-state hacking group out of Belarus as behind the attacks.</code><br><br><a href="https://www.darkreading.com/endpoint/ukrainian-troops-targeted-in-phishing-attacks-by-suspected-belarusian-apt">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message38118">
<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.02.2022 18:21:00">
18:21
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2022-25061 βΌ</strong><br><br><code>TP-LINK TL-WR840N(ES)_V6.20_180709 was discovered to contain a command injection vulnerability via the component oal_setIp6DefaultRoute.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-25061">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38119">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:01">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-22489 βΌ</strong><br><br><code>There is a DoS vulnerability in smartphones. Successful exploitation of this vulnerability may affect service availability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-22489">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38120">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:02">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2022-0615 βΌ</strong><br><br><code>Use-after-free in eset_rtp kernel module used in ESET products for Linux allows potential attacker to trigger denial-of-service condition on the system.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-0615">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38121">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:03">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2022-25264 βΌ</strong><br><br><code>In JetBrains TeamCity before 2021.2.3, environment variables of the "password" type could be logged in some cases.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-25264">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38122">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:06">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-22429 βΌ</strong><br><br><code>There is a memory address out of bounds in smartphones. Successful exploitation of this vulnerability may cause malicious code to be executed.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-22429">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38123">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:08">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2022-25019 βΌ</strong><br><br><code>** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: CVE-2021-38602. Reason: This candidate is a reservation duplicate of CVE-2021-38602. Notes: All CVE users should reference CVE-2021-38602 instead of this candidate. All references and descriptions in this candidate have been removed to prevent accidental usage.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-25019">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38124">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:09">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-42952 βΌ</strong><br><br><code>All pervious versions before October 25, 2021 of Zepl Notebooks are affeced by a sandbox escape vulnerability. Upon launching Remote Code Execution from the Notebook, users can then use that to subsequently escape the running context sandbox and proceed to access internal Zepl assets including cloud metadata services.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-42952">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38125">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:12">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-22426 βΌ</strong><br><br><code>There is a memory address out of bounds in smartphones. Successful exploitation of this vulnerability may cause malicious code to be executed.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-22426">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38126">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:14">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-22431 βΌ</strong><br><br><code>There is a vulnerability when configuring permission isolation in smartphones. Successful exploitation of this vulnerability may cause out-of-bounds access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-22431">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38127">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:15">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2022-25260 βΌ</strong><br><br><code>JetBrains Hub before 2021.1.14276 was vulnerable to blind Server-Side Request Forgery (SSRF).</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-25260">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38128">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:16">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-37027 βΌ</strong><br><br><code>There is a DoS vulnerability in smartphones. Successful exploitation of this vulnerability may affect service integrity.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-37027">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38129">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:18">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2022-23985 βΌ</strong><br><br><code>The affected product is vulnerable to an out-of-bounds write while processing project files, which allows an attacker to craft a project file that would allow arbitrary code execution.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23985">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38130">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:19">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-22430 βΌ</strong><br><br><code>There is a logic bypass vulnerability in smartphones. Successful exploitation of this vulnerability may cause code injection.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-22430">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38131">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:20">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-44132 βΌ</strong><br><br><code>A command injection vulnerability in the function formImportOMCIShell of C-DATA ONU4FERW V2.1.13_X139 allows attackers to execute arbitrary commands via a crafted file.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-44132">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38132">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:21">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2022-21209 βΌ</strong><br><br><code>The affected product is vulnerable to an out-of-bounds read while processing project files, which allows an attacker to craft a project file that would allow arbitrary code execution.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21209">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38133">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:23">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2022-25062 βΌ</strong><br><br><code>TP-LINK TL-WR840N(ES)_V6.20_180709 was discovered to contain an integer overflow via the function dm_checkString. This vulnerability allows attackers to cause a Denial of Service (DoS) via a crafted HTTP request.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-25062">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38134">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:24">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-22448 βΌ</strong><br><br><code>There is an improper verification vulnerability in smartphones. Successful exploitation of this vulnerability may cause unauthorized read and write of some files.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-22448">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38135">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:25">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-22437 βΌ</strong><br><br><code>There is a software integer overflow leading to a TOCTOU condition in smartphones. Successful exploitation of this vulnerability may cause random address access.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-22437">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38136">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:26">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-37103 βΌ</strong><br><br><code>There is an improper permission management vulnerability in the Wallet apps. Successful exploitation of this vulnerability may affect service confidentiality.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-37103">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38137">
<div class="body">
<div class="pull_right date details" title="25.02.2022 18:21:27">
18:21
</div>
<div class="text">
<strong>βΌ CVE-2021-22395 βΌ</strong><br><br><code>There is a code injection vulnerability in smartphones. Successful exploitation of this vulnerability may affect service confidentiality.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-22395">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message38138">
<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.02.2022 19:00:55">
19:00
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β TrickBot Takes a Break, Leaving Researchers Scratching Their Heads β</strong><br><br><code>The infamous trojan is likely making some major operational changes, researchers believe.</code><br><br><a href="https://threatpost.com/trickbot-break-researchers-scratching-heads/178678/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message38139">
<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.02.2022 20:20:49">
20:20
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2022-24710 βΌ</strong><br><br><code>Weblate is a copyleft software web-based continuous localization system. Versions prior to 4.11 do not properly neutralize user input used in user name and language fields. Due to this improper neutralization it is possible to perform cross-site scripting via these fields. The issues were fixed in the 4.11 release. Users unable to upgrade are advised to add their own neutralize logic.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24710">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message38140">
<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.02.2022 20:41:45">
20:41
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ 7 Steps to Take Right Now to Prepare for Cyberattacks by Russia π΄</strong><br><br><code>A lot of the recommended preparation involves measures organizations should have in place already.</code><br><br><a href="https://www.darkreading.com/threat-intelligence/7-steps-to-take-right-now-to-prepare-for-cyberattacks-by-russia">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message38141">
<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.02.2022 22:17:23">
22:17
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π’ IBM launches security hub to help APAC firms prepare for cyber attacks π’</strong><br><br><code>The tech giant also announced the opening of a second IBM Security Operation Center (SOC) in Bengaluru</code><br><br><a href="https://www.itpro.co.uk/security/cyber-security/363044/ibm-launches-security-hub-to-help-apac-firms-prepare-for-cyber">π Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38142">
<div class="body">
<div class="pull_right date details" title="25.02.2022 22:17:24">
22:17
</div>
<div class="text">
<strong>π’ Cloudflare acquires Area 1 Security for $162 million π’</strong><br><br><code>The deal comes five months after the web infrastructure and website security company announced its foray into the email security market</code><br><br><a href="https://www.itpro.co.uk/business-strategy/acquisition/363410/cloudflare-acquires-area-1-security-for-162-million">π Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38143">
<div class="body">
<div class="pull_right date details" title="25.02.2022 22:17:25">
22:17
</div>
<div class="text">
<strong>π’ Organisations urged to boost cyber defences in wake of Ukraine cyber attacks π’</strong><br><br><code>Australiaβs Cyber Security Centre warns that there has been a historical pattern of cyber attacks against Ukraine that have had international consequences</code><br><br><a href="https://www.itpro.co.uk/security/cyber-attacks/362949/organisations-urged-to-boost-cyber-defences-in-wake-ukraine-attacks">π Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38144">
<div class="body">
<div class="pull_right date details" title="25.02.2022 22:17:26">
22:17
</div>
<div class="text">
<strong>π’ Russian cyber attacks on Ukraine: What we know so far π’</strong><br><br><code>A score of additional attacks on the Ukrainian government and other critical services have been reported this week, as Russia officially declares war on the country</code><br><br><a href="https://www.itpro.co.uk/security/cyber-warfare/363385/russia-cyber-attacks-ukraine-what-we-know-so-far">π Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38145">
<div class="body">
<div class="pull_right date details" title="25.02.2022 22:17:27">
22:17
</div>
<div class="text">
<strong>π’ Darktrace acquires attack surface management startup Cybersprint π’</strong><br><br><code>The β¬47.5 million deal marks Darktraceβs first acquisition in its nine-year history</code><br><br><a href="https://www.itpro.co.uk/business-strategy/mergers-and-acquisitions/362974/darktrace-buys-cybersprint">π Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message38146">
<div class="body">
<div class="pull_right date details" title="25.02.2022 22:17:28">
22:17
</div>