-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1213 lines (640 loc) · 44.7 KB
/
index.html
File metadata and controls
executable file
·1213 lines (640 loc) · 44.7 KB
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 lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="Hexo Theme Keep">
<meta name="description" content="Hexo Theme Keep">
<meta name="author" content="196082">
<title>
196082's blog
</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="shortcut icon" href="/images/rocket-lunch.svg">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.2.2/font/css/fontawesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.2.2/font/css/regular.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.2.2/font/css/solid.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.2.2/font/css/brands.min.css">
<script class="keep-theme-configurations">
const KEEP = window.KEEP || {}
KEEP.hexo_config = {"hostname":"196082.github.io","root":"/","language":"zh-CN","path":"search.json"}
KEEP.theme_config = {"base_info":{"primary_color":"#0066cc","title":"196082's blog","author":196082,"avatar":"/images/ling.JPG","logo":"/images/ling.JPG","favicon":"/images/rocket-lunch.svg"},"menu":{"home":"/ || fa-solid fa-home","archives":"/archives || fa-solid fa-box-archive","categories":"/categories || fa-solid fa-folder","tags":"/tags || fa-solid fa-tags"},"first_screen":{"enable":false,"background_img":"/images/bg.svg","background_img_dark":"/images/bg.svg","description":"Keep writing and Keep loving.","hitokoto":false},"social_contact":{"enable":false,"links":{"github":null,"weixin":null,"qq":null,"weibo":null,"zhihu":null,"twitter":null,"x":null,"facebook":null,"email":null}},"scroll":{"progress_bar":false,"percent":false,"hide_header":true},"home":{"announcement":"评论邮件通知的功能已开启,欢迎大家留言评论,有问题我会及时回复的哦~","category":true,"tag":true,"post_datetime":"updated"},"post":{"author_badge":{"enable":true,"level_badge":false,"custom_badge":"慢慢好起来"},"word_count":{"wordcount":true,"min2read":true},"datetime_format":"YYYY-MM-DD HH:mm:ss","copyright_info":false,"share":false},"code_block":{"tools":{"enable":true,"style":"default"},"highlight_theme":"default"},"toc":{"enable":true,"number":false,"expand_all":true,"init_open":true,"layout":"right"},"website_count":{"busuanzi_count":{"enable":true,"site_uv":true,"site_pv":true,"page_pv":true}},"local_search":{"enable":true,"preload":true},"comment":{"enable":true,"use":"valine","valine":{"appid":"OcvtJuJHDrSFIyDGdp3rLMtA-gzGzoHsz","appkey":"C672AAYGXMkHxztf8ntdLShs","server_urls":null,"placeholder":"😜若有问题请各位大师傅留言评论(留下邮箱有通知哦~)"},"gitalk":{"github_id":null,"github_admins":null,"repository":null,"client_id":null,"client_secret":null,"proxy":null},"twikoo":{"env_id":null,"region":null,"version":"1.6.36"},"waline":{"server_url":null,"reaction":false,"version":"3.2.1"},"giscus":{"repo":null,"repo_id":null,"category":"Announcements","category_id":null,"reactions_enabled":false},"artalk":{"server":null},"disqus":{"shortname":null}},"rss":{"enable":true},"lazyload":{"enable":true},"cdn":{"enable":true,"provider":"cdnjs"},"pjax":{"enable":false},"footer":{"since":2020,"word_count":true,"site_deploy":{"enable":true,"provider":"github","url":null},"record":{"enable":false,"list":[{"code":null,"link":null}]}},"inject":{"enable":false,"css":[null],"js":[null]},"root":"","source_data":{},"version":"4.2.2"}
KEEP.language_ago = {"second":"%s 秒前","minute":"%s 分钟前","hour":"%s 小时前","day":"%s 天前","week":"%s 周前","month":"%s 个月前","year":"%s 年前"}
KEEP.language_code_block = {"copy":"复制代码","copied":"已复制","fold":"折叠代码块","folded":"已折叠"}
KEEP.language_copy_copyright = {"copy":"复制版权信息","copied":"已复制","title":"原文标题","author":"原文作者","link":"原文链接"}
</script>
<meta name="generator" content="Hexo 5.4.2"><link rel="alternate" href="/atom.xml" title="196082's blog" type="application/atom+xml">
</head>
<body>
<div class="progress-bar-container">
</div>
<main class="page-container border-box">
<!-- home first screen -->
<!-- page content -->
<div class="page-main-content border-box is-home">
<div class="page-main-content-top">
<header class="header-wrapper">
<div class="border-box header-content">
<div class="left flex-start border-box">
<a class="logo-image border-box" href="/">
<img src="/images/ling.JPG">
</a>
<a class="site-name border-box" href="/">
196082's blog
</a>
</div>
<div class="right border-box">
<div class="pc border-box">
<ul class="menu-list border-box">
<li class="menu-item flex-start border-box active">
<a class="menu-text-color border-box" href="/">
<i class="menu-text-color menu-icon fa-solid fa-home"></i>
首页
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/archives">
<i class="menu-text-color menu-icon fa-solid fa-box-archive"></i>
归档
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/categories">
<i class="menu-text-color menu-icon fa-solid fa-folder"></i>
分类
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/tags">
<i class="menu-text-color menu-icon fa-solid fa-tags"></i>
标签
</a>
</li>
<li class="menu-item search search-popup-trigger">
<i class="menu-text-color fas search fa-search"></i>
</li>
</ul>
</div>
<div class="mobile border-box flex-start">
<div class="icon-item search search-popup-trigger"><i class="fas fa-search"></i></div>
<div class="icon-item menu-bar">
<div class="menu-bar-middle"></div>
</div>
</div>
</div>
</div>
<div class="header-drawer">
<ul class="drawer-menu-list border-box">
<li class="drawer-menu-item border-box not-sub-menu active">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/">
<span class="menu-icon-wrap border-box flex-center">
<i class="drawer-menu-text-color menu-icon fa-solid fa-home"></i>
</span>
首页
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/archives">
<span class="menu-icon-wrap border-box flex-center">
<i class="drawer-menu-text-color menu-icon fa-solid fa-box-archive"></i>
</span>
归档
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/categories">
<span class="menu-icon-wrap border-box flex-center">
<i class="drawer-menu-text-color menu-icon fa-solid fa-folder"></i>
</span>
分类
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/tags">
<span class="menu-icon-wrap border-box flex-center">
<i class="drawer-menu-text-color menu-icon fa-solid fa-tags"></i>
</span>
标签
</a>
</label>
</li>
</ul>
</div>
<div class="window-mask"></div>
</header>
</div>
<div class="page-main-content-middle border-box">
<div class="main-content border-box">
<div class="home-content-container fade-in-down-animation">
<div class="website-announcement border-box">
<i class="icon left fa-solid fa-bullhorn"></i>
<div class="announcement border-box text-ellipsis">
<p>评论邮件通知的功能已开启,欢迎大家留言评论,有问题我会及时回复的哦~</p>
</div>
<i class="icon right close fa-solid fa-close"></i>
</div>
<ul class="home-post-list border-box">
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2026/03/02/Racing-against-the-clock-hitting-a-tiny-kernel-race-window-2/">
Racing_against_the_clock--hitting_a_tiny_kernel_race_window
</a>
</h3>
<div class="home-post-content keep-markdown-body">
前言说好的月更,晚了两天,这个月连发两篇等于二月发了😋
CVE-2021-4083该漏洞的利用方式主要是向大家展示了在没有开启CONFIG_PREEMPT的内核上如何扩大条件竞争窗口的技术,这里使用的方式主要是以下三种:
使用缓存未命中来稍微扩大...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Mon Mar 02 2026 11:43:59 GMT+0800"
>2026-03-02 11:43:59</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux-Kernel/">Linux Kernel</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/race/">race</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2026/03/02/Racing-against-the-clock-hitting-a-tiny-kernel-race-window-2/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2026/01/07/Racing-against-the-clock-hitting-a-tiny-kernel-race-window_1/">
Racing_against_the_clock--hitting_a_tiny_kernel_race_window前序
</a>
</h3>
<div class="home-post-content keep-markdown-body">
简介该技术的核心在于展示了如何利用一个理论上几乎不可能利用的、时间窗口极短的条件竞争漏洞。该方法是一种利用硬件特性(系统管理中断,SMI)来人为“拉长”这个时间窗口的创新技术。
前景提要:CVE-2021-0920因为该技术是基于该漏洞发现了另外一个...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Wed Jan 07 2026 18:48:53 GMT+0800"
>2026-01-07 18:48:53</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux-Kernel/">Linux Kernel</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/race/">race</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2026/01/07/Racing-against-the-clock-hitting-a-tiny-kernel-race-window_1/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2025/12/19/CVE-2025-38678/">
CVE-2025-38678
</a>
</h3>
<div class="home-post-content keep-markdown-body">
前言沉寂许久,终于挖了个0day,这篇文章就是提交Google的文章,但是感觉这是一个比较简单的洞所以没必要重新写一个文章(懒狗实锤)。
后续呢会分析其他子系统了,不想局限于这个nftables(实在是谷歌给钱太少了!),广撒网了属于是。
希望三角洲...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Thu Dec 18 2025 19:32:35 GMT+0800"
>2025-12-18 19:32:35</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux-Kernel/">Linux Kernel</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/nftables/">nftables</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/UAF/">UAF</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2025/12/19/CVE-2025-38678/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2025/01/04/netfilter/">
netfilter
</a>
</h3>
<div class="home-post-content keep-markdown-body">
前言不知道继续看nftables是不是一个错误的决定,因为好像这个子系统最近的更新都只是用户态的工具更新了,并且在今年下半年没有见到有新的相关CVE。但是在之前对此子系统进行分析的时候分析的节奏是非常的片面的,对于其中很多模块的实现目的都不太清楚,在...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Sat Jan 18 2025 18:32:15 GMT+0800"
>2025-01-18 18:32:15</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux-Kernel/">Linux Kernel</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/netfilter/">netfilter</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2025/01/04/netfilter/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/09/07/nftables-CVEs2/">
nftables CVE复现系列【二】
</a>
</h3>
<div class="home-post-content keep-markdown-body">
前言学二进制的第一步就是斩断情丝!
CVE-2024-1085前置知识为什么如此之多的前置知识,主要是在nftables子系统浅分析的分析并不彻底所以在遇到一个新的问题的时候还是有必要回过头去细致分析的。
123456789101112131415...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Sat Sep 07 2024 14:27:52 GMT+0800"
>2024-09-07 14:27:52</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux-Kernel/">Linux Kernel</a></li>
<li class="category-item"> <i class="icon fas fa-angle-right"></i> <a href="/categories/Linux-Kernel/CVE%E5%A4%8D%E7%8E%B0/">CVE复现</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Race-condition/">Race condition</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/genmask/">genmask</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Integer-Overflow/">Integer Overflow</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/09/07/nftables-CVEs2/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/09/03/nftables-CVEs1/">
nftables CVE复现系列【一】
</a>
</h3>
<div class="home-post-content keep-markdown-body">
前言CVE复现还是要趁热复现,不要因为其他事耽误了TvT,毕竟挖洞是重中之重特别是对现在的我来说,一个洞都没有TvT。
不知道算是运气好还是运气不好,在复现CVE-2023-4004的时候发现了另外一个漏洞,在一通分析之后欣喜若狂发现确实可以用来提权...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Tue Sep 03 2024 18:44:39 GMT+0800"
>2024-09-03 18:44:39</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux-Kernel/">Linux Kernel</a></li>
<li class="category-item"> <i class="icon fas fa-angle-right"></i> <a href="/categories/Linux-Kernel/CVE%E5%A4%8D%E7%8E%B0/">CVE复现</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/nft-set-pipapo-type/">nft_set_pipapo_type</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/nft-rule-expr-deactivate/">nft_rule_expr_deactivate</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/09/03/nftables-CVEs1/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/08/27/CVE-2022-34918/">
CVE-2022-34918
</a>
</h3>
<div class="home-post-content keep-markdown-body">
前言这篇应该是关于nftables类型的最后一篇有写exp的文章,在后续的复现文章只会进行漏洞分析以及利用手法分析。
element简介在介绍之前不得不先提起一下set集合了。在nftables中,集合算是实现map以及verdict map的重要基...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Aug 30 2024 19:10:18 GMT+0800"
>2024-08-30 19:10:18</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux-Kernel/">Linux Kernel</a></li>
<li class="category-item"> <i class="icon fas fa-angle-right"></i> <a href="/categories/Linux-Kernel/CVE%E5%A4%8D%E7%8E%B0/">CVE复现</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/netfilter/">netfilter</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/nftables/">nftables</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/netlink/">netlink</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/user-key-payload/">user_key_payload</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/USMA/">USMA</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/08/27/CVE-2022-34918/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/08/17/nftables/">
nftables子系统浅分析
</a>
</h3>
<div class="home-post-content keep-markdown-body">
前言转眼间上一篇文章又是几个月前的事情了,主要原因是近期遇到了一个让我十分痴迷的游戏——PUBG!建议直接跟我学习我的无敌闪身喷!依稀记得在蓝楼三楼拐角连续喷死一队被对面骂我是开挂的!哈哈哈哈哈哈哈!!
最近的十杀1192伤害吃鸡也是久久难以平复。
...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Sat Aug 17 2024 01:55:08 GMT+0800"
>2024-08-17 01:55:08</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux-Kernel/">Linux Kernel</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/netfilter/">netfilter</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/nftables/">nftables</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/netlink/">netlink</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/08/17/nftables/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/06/03/Linux-Rootkit%E7%8E%B0%E4%BB%A3%E6%8A%80%E6%9C%AF%E5%88%86%E6%9E%90/">
Linux Rootkit现代技术分析
</a>
</h3>
<div class="home-post-content keep-markdown-body">
前言由于懒狗症发作加上每天沉迷游戏导致很久没有更新文章了,其实上一篇的Rootkit其实都是残缺版但是不想继续写了就直接加了个入门两个字就发出来了😴。这一篇文章主要是在上一篇文章的基础上进行一系列的拓展以及补充,目前看来也是最后一篇关于rootki...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Mon Jun 03 2024 19:40:38 GMT+0800"
>2024-06-03 19:40:38</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux-Kernel/">Linux Kernel</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/LKM/">LKM</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/06/03/Linux-Rootkit%E7%8E%B0%E4%BB%A3%E6%8A%80%E6%9C%AF%E5%88%86%E6%9E%90/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/02/16/Linux-Rootkit/">
Linux Rootkit入门
</a>
</h3>
<div class="home-post-content keep-markdown-body">
前言在毕业论文选题时选的是Linux Rootkit相关的内容,加上在前面的许多文章中挖了这个坑终于是现在可以进行填坑活动了😭!
最近发现确实是有师傅在看我的blog的,并且也会有留言,虽然我每次回复的挺慢的(很少看留言后台),但是留言的条数不多目...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Feb 16 2024 17:05:35 GMT+0800"
>2024-02-16 17:05:35</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux-Kernel/">Linux Kernel</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/LKM/">LKM</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/02/16/Linux-Rootkit/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
</ul>
<div class="paginator border-box flex-center">
<div class="border-box first-page paginator-btn not-allow">
<a class="border-box"><i class="fa-solid fa-angle-double-left"></i></a>
</div>
<div class="border-box paginator-btn">
<a class="border-box"
href="/"
><i class="fa-solid fa-chevron-left"></i></a>
</div>
<div class="page-number-box border-box flex-center">
<input class="page-number-input border-box base-style"
type="number"
value="1"
min="1"
max="9"
/><span class="delimiter base-style">/</span><span class="base-style">9</span>
</div>
<div class="border-box paginator-btn allowed">
<a class="border-box"
href="/page/2/"
><i class="fa-solid fa-chevron-right"></i></a>
</div>
<div class="border-box last-page paginator-btn allowed">
<a class="border-box"><i class="fa-solid fa-angle-double-right"></i></a>
</div>
</div>