-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages22.html
19558 lines (12222 loc) Β· 771 KB
/
messages22.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="messages21.html">
Previous messages
</a>
<div class="message service" id="message-714">
<div class="body details">
18 December 2020
</div>
</div>
<div class="message default clearfix" id="message21098">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="18.12.2020 18:44:19">
18:44
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2020-13515 βΌ</strong><br><br><code>A privilege escalation vulnerability exists in the WinRing0x64 Driver IRP 0x9c40a148 functionality of NZXT CAM 4.8.0. A specially crafted I/O request packet (IRP) can cause an adversary to obtain elevated privileges. An attacker can send a malicious IRP to trigger this vulnerability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-13515">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21099">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="18.12.2020 19:08:37">
19:08
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π¦Ώ COVID-19 has not slowed global zero trust implementations π¦Ώ</strong><br><br><code>Enterprise Management Associates and Pulse Secure report that 60% of organizations have accelerated their zero trust projects during the pandemic, while only 15% have slowed down.</code><br><br><a href="https://www.techrepublic.com/article/covid-19-has-not-slowed-global-zero-trust-implementations/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21100">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
?
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="18.12.2020 22:44:17">
22:44
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2020-7203 βΌ</strong><br><br><code>A potential security vulnerability has been identified in HPE iLO Amplifier Pack server version 1.70. The vulnerability could be exploited to allow remote code execution.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-7203">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21101">
<div class="body">
<div class="pull_right date details" title="18.12.2020 22:44:18">
22:44
</div>
<div class="text">
<strong>βΌ CVE-2020-14224 βΌ</strong><br><br><code>A vulnerability in the MIME message handling of the HCL Notes v9 client could potentially be exploited by an unauthenticated attacker resulting in a stack buffer overflow. This could allow a remote attacker to crash the Notes application or inject code into the system which would execute with the privileges of the currently logged-in user.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-14224">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21102">
<div class="body">
<div class="pull_right date details" title="18.12.2020 22:44:18">
22:44
</div>
<div class="text">
<strong>βΌ CVE-2020-14271 βΌ</strong><br><br><code>HCL iNotes v9, v10 and v11 is susceptible to a Stored Cross-Site Scripting (XSS) vulnerability due to improper handling of message content. An unauthenticated remote attacker could exploit this vulnerability using specially-crafted markup to execute script in a victim's web browser within the security context of the hosting Web site and/or steal the victim's cookie-based authentication credentials.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-14271">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21103">
<div class="body">
<div class="pull_right date details" title="18.12.2020 22:44:19">
22:44
</div>
<div class="text">
<strong>βΌ CVE-2020-7201 βΌ</strong><br><br><code>A potential security vulnerability has been identified in the HPE StoreEver MSL2024 Tape Library and HPE StoreEver 1/8 G2 Tape Autoloaders. The vulnerability could be remotely exploited to allow Cross-site Request Forgery (CSRF).</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-7201">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21104">
<div class="body">
<div class="pull_right date details" title="18.12.2020 22:44:20">
22:44
</div>
<div class="text">
<strong>βΌ CVE-2020-7200 βΌ</strong><br><br><code>A potential security vulnerability has been identified in HPE Systems Insight Manager (SIM) version 7.6. The vulnerability could be exploited to allow remote code execution.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-7200">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message service" id="message-715">
<div class="body details">
21 December 2020
</div>
</div>
<div class="message default clearfix" id="message21105">
<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="21.12.2020 03:51:35">
03:51
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2020-29447 βΌ</strong><br><br><code>Affected versions of Atlassian Crucible allow remote attackers to impact the application's availability via a Denial of Service (DoS) vulnerability in the file upload request feature of code reviews. The affected versions are before version 4.7.4, and from version 4.8.0 before 4.8.5.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-29447">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21106">
<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="21.12.2020 08:51:49">
08:51
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>βΌ CVE-2020-35590 βΌ</strong><br><br><code>LimitLoginAttempts.php in the limit-login-attempts-reloaded plugin before 2.17.4 for WordPress allows a bypass of (per IP address) rate limits because the X-Forwarded-For header can be forged. When the plugin is configured to accept an arbitrary header for the client source IP address, a malicious user is not limited to perform a brute force attack, because the client IP header accepts any arbitrary string. When randomizing the header input, the login count does not ever reach the maximum allowed retries.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-35590">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21107">
<div class="body">
<div class="pull_right date details" title="21.12.2020 08:51:50">
08:51
</div>
<div class="text">
<strong>βΌ CVE-2020-35589 βΌ</strong><br><br><code>The limit-login-attempts-reloaded plugin before 2.17.4 for WordPress allows wp-admin/options-general.php?page=limit-login-attempts&tab= XSS. A malicious user can cause an administrator user to supply dangerous content to the vulnerable page, which is then reflected back to the user and executed by the web browser. The most common mechanism for delivering malicious content is to include it as a parameter in a URL that is posted publicly or e-mailed directly to victims.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-35589">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21108">
<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="21.12.2020 09:11:02">
09:11
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Naked Security Live β Watch out for Messenger scams β </strong><br><br><code>Here's the latest Naked Security video talk - watch now! (And please share with your friends...)</code><br><br><a href="https://nakedsecurity.sophos.com/2020/12/21/naked-security-live-watch-out-for-messenger-scams/">π Read</a><br><br>via "<em>Naked Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21109">
<div class="body">
<div class="pull_right date details" title="21.12.2020 09:14:05">
09:14
</div>
<div class="text">
<strong>β Telemed Poll Uncovers Biggest Risks and Best Practices β</strong><br><br><code>What are the riskiest links in the virtual healthcare chain? Threatpost readers weigh in as part of an exclusive telemed poll.</code><br><br><a href="https://threatpost.com/telemed-poll-uncovers-risks-best-practices/162444/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21110">
<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="21.12.2020 12:31:52">
12:31
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ We Have a National Cybersecurity Emergency -- Here's How We Can Respond π΄</strong><br><br><code>Let's prioritize bipartisan strategic actions that can ensure our national security and strengthen the economy. Here are five ideas for how to do that.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/we-have-a-national-cybersecurity-emergency----heres-how-we-can-respond/a/d-id/1339766?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21111">
<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="21.12.2020 13:09:38">
13:09
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π¦Ώ 6 modern data stack trends to look for in 2021 π¦Ώ</strong><br><br><code>TechRepublic spoke with dozens of experts who said the influx of companies interested in doing more with their data is only increasing.</code><br><br><a href="https://www.techrepublic.com/article/6-modern-data-stack-trends-to-look-for-in-2021/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21112">
<div class="body">
<div class="pull_right date details" title="21.12.2020 13:22:25">
13:22
</div>
<div class="text">
<strong>π What's the Most Important Thing to Keep in Mind About MDR Costs? π</strong><br><br><code>In this group interview, we asked 21 experts and business leaders what the most important thing for companies to keep in mind about managed detection and response costs is.</code><br><br><a href="https://digitalguardian.com/blog/whats-most-important-thing-keep-mind-about-mdr-costs">π Read</a><br><br>via "<em>Digital Guardian</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21113">
<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="21.12.2020 13:42:41">
13:42
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Hacker Dumps Crypto Wallet Customer Data; Active Attacks Follow β</strong><br><br><code>Customer data from a June attack against cryptocurrency wallet firm Ledger is now public and actively being used in attacks.</code><br><br><a href="https://threatpost.com/ledger-dump-active-attacks-follow/162477/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21114">
<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="21.12.2020 14:12:43">
14:12
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Critical Bugs in Dell Wyse Thin Clients Allow Code Execution, Client Takeovers β</strong><br><br><code>The bugs rate 10 out of 10 on the vulnerability-severity scale, thanks to the ease of exploitation.</code><br><br><a href="https://threatpost.com/critical-bugs-dell-wyse-thin-clients/162452/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21115">
<div class="body">
<div class="pull_right date details" title="21.12.2020 14:12:44">
14:12
</div>
<div class="text">
<strong>β Simplifying Proactive Defense With Threat Playbooks β</strong><br><br><code>Fortinet's Derek Manky talks about how threat playbooks can equip defense teams with the tools they need to fight back against evolving attacker TTPs.</code><br><br><a href="https://threatpost.com/simplifying-proactive-defense-with-threat-playbooks/162468/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21116">
<div class="body">
<div class="pull_right date details" title="21.12.2020 14:12:45">
14:12
</div>
<div class="text">
<strong>β Dark Web Pricing Skyrockets for Microsoft RDP Servers, Payment-Card Data β</strong><br><br><code>Underground marketplace pricing on RDP server access, compromised payment card data and DDoS-For-Hire services are surging.</code><br><br><a href="https://threatpost.com/rdp-server-access-payment-card-data-in-high-cybercrime-demand/162476/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21117">
<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="21.12.2020 14:43:34">
14:43
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π Erlang Bytecode String Converter π </strong><br><br><code>estr2bc is a python script to convert arbitrary string input to Erlang bytecode.</code><br><br><a href="https://packetstormsecurity.com/files/160640/estr2bc.py.txt">π Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21118">
<div class="body">
<div class="pull_right date details" title="21.12.2020 14:52:03">
14:52
</div>
<div class="text">
<strong>βΌ CVE-2020-3999 βΌ</strong><br><br><code>VMware ESXi (7.0 prior to ESXi70U1c-17325551), VMware Workstation (16.x prior to 16.0 and 15.x prior to 15.5.7), VMware Fusion (12.x prior to 12.0 and 11.x prior to 11.5.7) and VMware Cloud Foundation contain a denial of service vulnerability due to improper input validation in GuestInfo. A malicious actor with normal user privilege access to a virtual machine can crash the virtual machine's vmx process leading to a denial of service condition.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-3999">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21119">
<div class="body">
<div class="pull_right date details" title="21.12.2020 14:52:04">
14:52
</div>
<div class="text">
<strong>βΌ CVE-2020-27846 βΌ</strong><br><br><code>A signature verification vulnerability exists in crewjam/saml. This flaw allows an attacker to bypass SAML Authentication. The highest threat from this vulnerability is to confidentiality, integrity, as well as system availability.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-27846">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21120">
<div class="body">
<div class="pull_right date details" title="21.12.2020 14:52:05">
14:52
</div>
<div class="text">
<strong>βΌ CVE-2019-16959 βΌ</strong><br><br><code>SolarWinds Web Help Desk 12.7.0 allows CSV Injection, also known as Formula Injection, via a file attached to a ticket.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-16959">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21121">
<div class="body">
<div class="pull_right date details" title="21.12.2020 14:52:06">
14:52
</div>
<div class="text">
<strong>βΌ CVE-2020-26049 βΌ</strong><br><br><code>Nifty-PM CPE 2.3 is affected by stored HTML injection. The impact is remote arbitrary code execution.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-26049">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21122">
<div class="body">
<div class="pull_right date details" title="21.12.2020 14:52:08">
14:52
</div>
<div class="text">
<strong>βΌ CVE-2020-35274 βΌ</strong><br><br><code>DotCMS Add Template with admin panel 20.11 is affected by cross-site Scripting (XSS) to gain remote privileges. An attacker could compromise the security of a website or web application through a stored XSS attack and stealing cookies using XSS.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-35274">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21123">
<div class="body">
<div class="pull_right date details" title="21.12.2020 14:52:08">
14:52
</div>
<div class="text">
<strong>βΌ CVE-2020-35276 βΌ</strong><br><br><code>EgavilanMedia ECM Address Book 1.0 is affected by SQL injection. An attacker can bypass the Admin Login panel through SQLi and get Admin access and add or remove any user.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-35276">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21124">
<div class="body">
<div class="pull_right date details" title="21.12.2020 14:52:10">
14:52
</div>
<div class="text">
<strong>βΌ CVE-2020-35275 βΌ</strong><br><br><code>Coastercms v5.8.18 is affected by cross-site Scripting (XSS). A user can steal a cookie and make the user redirect to any malicious website because it is trigged on the main home page of the product/application.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-35275">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21125">
<div class="body">
<div class="pull_right date details" title="21.12.2020 14:52:10">
14:52
</div>
<div class="text">
<strong>βΌ CVE-2020-35273 βΌ</strong><br><br><code>EgavilanMedia User Registration & Login System with Admin Panel 1.0 is affected by Cross Site Request Forgery (CSRF) to remotely gain privileges in the User Profile panel. An attacker can update any user's account.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-35273">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21126">
<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="21.12.2020 17:01:00">
17:01
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ 7 Infamous Moments in Adobe Flash's Security History π΄</strong><br><br><code>End-of-life is here: Adobe's support for Flash is gone as of Jan. 1. Here's what we won't miss about the multimedia software platform.</code><br><br><a href="https://www.darkreading.com/edge/theedge/7-infamous-moments-in-adobe-flashs-security-history/b/d-id/1339767?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21127">
<div class="body">
<div class="pull_right date details" title="21.12.2020 17:09:41">
17:09
</div>
<div class="text">
<strong>π¦Ώ The 5 tech skills should you master in 2021 π¦Ώ</strong><br><br><code>If you want to improve or expand your current skill set, there are a few options you can focus on. Tom Merritt lists five tech skills to master in the coming year.</code><br><br><a href="https://www.techrepublic.com/videos/the-5-tech-skills-should-you-master-in-2021/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21128">
<div class="body">
<div class="pull_right date details" title="21.12.2020 17:09:42">
17:09
</div>
<div class="text">
<strong>π¦Ώ Top 5 tech skills to master in 2021 π¦Ώ</strong><br><br><code>If you want to improve or expand your current skill set, there are a few options you can focus on. Tom Merritt lists five tech skills to master in the coming year.</code><br><br><a href="https://www.techrepublic.com/article/top-5-tech-skills-to-master-in-2021/#ftag=RSS56d97e7">π Read</a><br><br>via "<em>Tech Republic</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21129">
<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="21.12.2020 18:12:52">
18:12
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Defending Against State and State-Sponsored Threat Actors β</strong><br><br><code>State and state-sponsored threat actors are the apex predators of the cybersecurity world. Β </code><br><br><a href="https://threatpost.com/defending-against-state-threat-actors/162518/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21130">
<div class="body">
<div class="pull_right date details" title="21.12.2020 18:12:52">
18:12
</div>
<div class="text">
<strong>π GNU Privacy Guard 2.2.26 π </strong><br><br><code>GnuPG (the GNU Privacy Guard or GPG) is GNU's tool for secure communication and data storage. It can be used to encrypt data and to create digital signatures. It includes an advanced key management facility and is compliant with the proposed OpenPGP Internet standard as described in RFC2440. As such, it is meant to be compatible with PGP from NAI, Inc. Because it does not use any patented algorithms, it can be used without any restrictions.</code><br><br><a href="https://packetstormsecurity.com/files/160659/gnupg-2.2.26.tar.bz2">π Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21131">
<div class="body">
<div class="pull_right date details" title="21.12.2020 18:12:53">
18:12
</div>
<div class="text">
<strong>π jSQL Injection 0.82 π </strong><br><br><code>jSQL Injection is a lightweight application used to find database information from a distant server. jSQL Injection is also part of the official penetration testing distribution Kali Linux and is included in various other distributions like Pentest Box, Parrot Security OS, ArchStrike and BlackArch Linux. This is the pre-built jar release.</code><br><br><a href="https://packetstormsecurity.com/files/160657/jsql-injection-v0.82.jar">π Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21132">
<div class="body">
<div class="pull_right date details" title="21.12.2020 18:12:54">
18:12
</div>
<div class="text">
<strong>π jSQL Injection 0.82 Source Code Release π </strong><br><br><code>jSQL Injection is a lightweight application used to find database information from a distant server. jSQL Injection is also part of the official penetration testing distribution Kali Linux and is included in various other distributions like Pentest Box, Parrot Security OS, ArchStrike and BlackArch Linux. This is the source code release.</code><br><br><a href="https://packetstormsecurity.com/files/160656/jsql-injection-0.82.tar.gz">π Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21133">
<div class="body">
<div class="pull_right date details" title="21.12.2020 18:12:55">
18:12
</div>
<div class="text">
<strong>π Wireshark Analyzer 3.4.2 π </strong><br><br><code>Wireshark is a GTK+-based network protocol analyzer that lets you capture and interactively browse the contents of network frames. The goal of the project is to create a commercial-quality analyzer for Unix and Win32 and to give Wireshark features that are missing from closed-source sniffers. This is the source code release.</code><br><br><a href="https://packetstormsecurity.com/files/160658/wireshark-3.4.2.tar.xz">π Read</a><br><br>via "<em>Packet Storm Security</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21134">
<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="21.12.2020 18:32:02">
18:32
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>π΄ NSA, CISA Warn of Attacks on Federated Authentication π΄</strong><br><br><code>While incident responders focus on attacks using SolarWinds Orion, government cyber defenders highlight other methods likely being used as well.</code><br><br><a href="https://www.darkreading.com/vulnerabilities---threats/advanced-threats/nsa-cisa-warn-of-attacks-on-federated-authentication/d/d-id/1339776?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple">π Read</a><br><br>via "<em>Dark Reading</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21135">
<div class="body">
<div class="pull_right date details" title="21.12.2020 18:42:51">
18:42
</div>
<div class="text">
<strong>β Smart Doorbell Disaster: Many Brands Vulnerable to Attack β</strong><br><br><code>Investigation reveals device sector is problem plagued when it comes to security bugs.</code><br><br><a href="https://threatpost.com/smart-doorbell-vulnerable-to-attack/162527/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21136">
<div class="body">
<div class="pull_right date details" title="21.12.2020 18:52:13">
18:52
</div>
<div class="text">
<strong>βΌ CVE-2020-35604 βΌ</strong><br><br><code>An XXE attack can occur in Kronos WebTA 5.0.4 when SAML is used.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-35604">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21137">
<div class="body">
<div class="pull_right date details" title="21.12.2020 18:52:14">
18:52
</div>
<div class="text">
<strong>βΌ CVE-2020-21378 βΌ</strong><br><br><code>SQL injection vulnerability in SeaCMS 10.1 (2020.02.08) via the id parameter in an edit action to admin_members_group.php.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-21378">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21138">
<div class="body">
<div class="pull_right date details" title="21.12.2020 18:52:15">
18:52
</div>
<div class="text">
<strong>βΌ CVE-2020-35605 βΌ</strong><br><br><code>The Graphics Protocol feature in graphics.c in kitty before 0.19.3 allows remote attackers to execute arbitrary code because a filename containing special characters can be included in an error message.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-35605">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21139">
<div class="body">
<div class="pull_right date details" title="21.12.2020 18:52:16">
18:52
</div>
<div class="text">
<strong>βΌ CVE-2020-21377 βΌ</strong><br><br><code>SQL injection vulnerability in yunyecms V2.0.1 via the selcart parameter.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-21377">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix joined" id="message21140">
<div class="body">
<div class="pull_right date details" title="21.12.2020 18:52:17">
18:52
</div>
<div class="text">
<strong>βΌ CVE-2020-35606 βΌ</strong><br><br><code>Arbitrary command execution can occur in Webmin through 1.962. Any user authorized for the Package Updates module can execute arbitrary commands with root privileges via vectors involving %0A and %0C. NOTE: this issue exists because of an incomplete fix for CVE-2019-12840.</code><br><br><a href="https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-35606">π Read</a><br><br>via "<em>National Vulnerability Database</em>".
</div>
</div>
</div>
<div class="message default clearfix" id="message21141">
<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="21.12.2020 19:12:53">
19:12
</div>
<div class="from_name">
π‘ Cybersecurity & Privacy news π‘
</div>
<div class="text">
<strong>β Nosy Ex-Partners Armed with Instagram Passwords Pose a Serious Threat β</strong><br><br><code>A survey of single people found almost a third are still logging into their exβs social-media accounts, some for revenge.</code><br><br><a href="https://threatpost.com/nosy-exes-passwords-serious-threat/162533/">π Read</a><br><br>via "<em>Threat Post</em>".
</div>
</div>
</div>