-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
2966 lines (2966 loc) · 182 KB
/
atom.xml
File metadata and controls
2966 lines (2966 loc) · 182 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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>https://www.sunsetaction.top</id>
<title>Sunset Blog</title>
<updated>2026-02-21T16:04:23.183Z</updated>
<generator>Feed for Node.js</generator>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<link rel="alternate" href="https://www.sunsetaction.top"/>
<link rel="self" href="https://www.sunsetaction.top/atom.xml"/>
<subtitle>Sunset的个人博客,记录生活学习。</subtitle>
<logo>https://www.sunsetaction.top/images/logo.png</logo>
<icon>https://www.sunsetaction.top/images/Logo.ico</icon>
<rights>All rights reserved 2026, Sunset</rights>
<entry>
<title type="html"><![CDATA[Sunshine + moonlight 息屏串流方案]]></title>
<id>https://www.sunsetaction.top/2026/02/21/Sunshine + moonlight 息屏串流方案</id>
<link href="https://www.sunsetaction.top/2026/02/21/Sunshine + moonlight 息屏串流方案"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/Sunshine%20+%20moonlight%20息屏串流方案/image.png" type="image/png"/>
<updated>2025-04-18T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Sunshine + moonlight 息屏串流方案 前置 最近想玩的 Gal 有点多,但是安卓上的模拟器并没有完全够用,想起来之前有使用过本地串流,所以想着是否能使用串流来玩 Gal。 这样为什么不直接串流玩呢?因为串流的时候和显示器是同步的,也就是你手机串流的时候显示器屏幕也是跟着动,那你在床...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="杂项"/>
<category label="远程串流"/>
<category label="Sunshine"/>
<category label="Moonlight"/>
</entry>
<entry>
<title type="html"><![CDATA[HackMyVM - Realsaga]]></title>
<id>https://www.sunsetaction.top/2025/12/16/HackMyVMRealsaga</id>
<link href="https://www.sunsetaction.top/2025/12/16/HackMyVMRealsaga"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackMyVMRealsaga/image.png" type="image/png"/>
<updated>2025-12-16T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Realsaga. https://hackmyvm.eu/machines/machine.php?vm=Realsaga Recon 端口扫描 枚举 HTTP 服务 操作系统/Web服务器: Ubuntu Linux 上的 Apache 2.4.29。 CMS (内容管理系统): WordPre...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="Linux"/>
<category label="CVE-2020-35234"/>
<category label="WordPress"/>
<category label="Docker"/>
</entry>
<entry>
<title type="html"><![CDATA[Machine - victorique]]></title>
<id>https://www.sunsetaction.top/2025/12/13/Machinevictorique</id>
<link href="https://www.sunsetaction.top/2025/12/13/Machinevictorique"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/Machinevictorique/image.png" type="image/png"/>
<updated>2025-12-13T00:00:00.000Z</updated>
<summary type="html"><![CDATA[victorique Recon PortScan 端口扫描 Fuzz 访问 HTTP 服务,提示要通过域名访问,添加域名到 hosts 文件 能发现存在登录框,但是没有任何账户密码,所以暂时不进行爆破 进行子域名爆破,得到子域名 gifts 访问后得到一组凭据 ookami:GoS1Ck 尝试在登...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="Linux"/>
<category label="Fuzz"/>
<category label="ASCII"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Koi Stealer]]></title>
<id>https://www.sunsetaction.top/2025/12/06/TheHackersLabsKoi Stealer</id>
<link href="https://www.sunsetaction.top/2025/12/06/TheHackersLabsKoi Stealer"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsKoi%20Stealer/image.png" type="image/png"/>
<updated>2025-12-06T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Koi Stealer https://labs.thehackerslabs.com/machine/153 nálisis forense de tráfico de red (PCAP) para la reconstrucción del flujo de ataque e infecció...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Pacp"/>
</entry>
<entry>
<title type="html"><![CDATA[HackMyVM - Skid]]></title>
<id>https://www.sunsetaction.top/2025/12/03/HackMyVMSkid</id>
<link href="https://www.sunsetaction.top/2025/12/03/HackMyVMSkid"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackMyVMSkid/image.png" type="image/png"/>
<updated>2025-12-03T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Skid. https://hackmyvm.eu/machines/machine.php?vm=Skid Recon 端口扫描 5000 端口是 HTTP,对其进行目录扫描,能找到一些有趣的目录 命令注入 看一下scan 的源码,可以看到需要 target 参数 测试命令注入,可以看到回显了 w...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackMyVM"/>
<category label="Linux"/>
<category label="CommandInjuction"/>
<category label="Nmap"/>
</entry>
<entry>
<title type="html"><![CDATA[群U靶机 - Yibasuo]]></title>
<id>https://www.sunsetaction.top/2025/11/24/群U靶机Yibasuo</id>
<link href="https://www.sunsetaction.top/2025/11/24/群U靶机Yibasuo"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/群U靶机Yibasuo/image.png" type="image/png"/>
<updated>2025-11-22T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Yibasuo Recon PortScan 端口扫描,能发现有 6200,21 端口,估计有 vsftp 笑脸漏洞 FTP 连接 FTP,提示 vsFTPd 2.3.4 ,刚好是笑脸漏洞的版本。还能拿到一个 creds.txt 。 这里尝试打笑脸漏洞,但是触发漏洞后端口依旧是 filtered ,...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="群U靶机"/>
<category label="Linux"/>
<category label="vsftpd"/>
<category label="CVE-2011-2523"/>
</entry>
<entry>
<title type="html"><![CDATA[群U靶机 - SudoHome]]></title>
<id>https://www.sunsetaction.top/2025/11/24/群U靶机SudoHome_sunset</id>
<link href="https://www.sunsetaction.top/2025/11/24/群U靶机SudoHome_sunset"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/群U靶机SudoHome_sunset/image.png" type="image/png"/>
<updated>2025-11-23T00:00:00.000Z</updated>
<summary type="html"><![CDATA[SudoHome Recon PortScan 22/tcp: SSH OpenSSH 8.4p1 (Debian)。这是一个比较新的版本,直接利用漏洞的可能性较低。通常是作为获取 Shell 后的持久化访问,或者在我们获得凭据后进行登录的入口。 25/tcp: SMTP Postfix smtpd...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="群U靶机"/>
<category label="Linux"/>
<category label="sudo"/>
</entry>
<entry>
<title type="html"><![CDATA[HackMyVM - Hunter]]></title>
<id>https://www.sunsetaction.top/2025/11/21/HackMyVMHunter</id>
<link href="https://www.sunsetaction.top/2025/11/21/HackMyVMHunter"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackMyVMHunter/image.png" type="image/png"/>
<updated>2025-11-21T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Hunter https://hackmyvm.eu/machines/machine.php?vm=Hunter Recon PortScan 枚举 8080 端口 目录扫描 beacon 返回代码 204:无内容。服务器成功处理,但未返回内容。在未更新网页的情况下,可确保浏览器继续显示当前文档 ...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackMyVM"/>
<category label="Linux"/>
<category label="rkhunter"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Machine - Voleur]]></title>
<id>https://www.sunsetaction.top/2025/11/12/HackTheBoxSeason8 - Voleur</id>
<link href="https://www.sunsetaction.top/2025/11/12/HackTheBoxSeason8 - Voleur"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxSeason8%20-%20Voleur/image.png" type="image/png"/>
<updated>2025-07-07T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Season8 Voleur https://app.hackthebox.com/machines/Voleur | Window | Medium Machine Information :As is common in real life Windows pentests, you will ...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackTheBox"/>
<category label="Windows"/>
<category label="BloodyAD"/>
<category label="NTDS"/>
<category label="TargetedKerberoasting"/>
<category label="DPAPI"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Machine - RustyKey]]></title>
<id>https://www.sunsetaction.top/2025/11/12/HackTheBoxSeason8 - RustyKey</id>
<link href="https://www.sunsetaction.top/2025/11/12/HackTheBoxSeason8 - RustyKey"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxSeason8%20-%20RustyKey/wyyay.jpg" type="image/jpg"/>
<updated>2025-06-30T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Season8 RustyKey https://app.hackthebox.com/machines/RustyKey | Windows | Hard Machine Information:As is common in real life Windows pentests, you wil...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackTheBox"/>
<category label="Windows"/>
<category label="RBCD"/>
<category label="COMhijack"/>
<category label="TimeRoast"/>
<category label="RunasCs"/>
</entry>
<entry>
<title type="html"><![CDATA[HackMyVM - Krustykrab]]></title>
<id>https://www.sunsetaction.top/2025/11/12/HackMyVMKrustykrab</id>
<link href="https://www.sunsetaction.top/2025/11/12/HackMyVMKrustykrab"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackMyVMKrustykrab/image.png" type="image/png"/>
<updated>2025-04-18T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Krustykrab. https://hackmyvm.eu/machines/machine.php?vm=Krustykrab Note:who lives in a pineapple under the sea? 前期踩点 Web 渗透 信息收集 访问 HTTP 服务,Apache 默认页...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="Linux靶机"/>
<category label="HackMyVM"/>
<category label="CTF"/>
<category label="越权"/>
<category label="路径劫持"/>
</entry>
<entry>
<title type="html"><![CDATA[HackMyVM - Soc1]]></title>
<id>https://www.sunsetaction.top/2025/11/04/HackMyVMSoc1</id>
<link href="https://www.sunsetaction.top/2025/11/04/HackMyVMSoc1"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackMyVMSoc1/image.png" type="image/png"/>
<updated>2025-11-04T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Soc1 https://hackmyvm.eu/machines/machine.php?vm=Soc1 Recon PortScan 开放了多个 Web 服务 (Apache, Splunk, Jenkins) 和一个数据库服务 (MongoDB) 枚举 web 首先还是看 WEB 服务,但是貌...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackMyVM"/>
<category label="Linux"/>
<category label="FUZZ"/>
<category label="Jenkins"/>
<category label="Splunk"/>
<category label="CVE-2023-46214"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - ZAPP]]></title>
<id>https://www.sunsetaction.top/2025/11/02/TheHackersLabsZAPP</id>
<link href="https://www.sunsetaction.top/2025/11/02/TheHackersLabsZAPP"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsZAPP/image.png" type="image/png"/>
<updated>2025-11-02T00:00:00.000Z</updated>
<summary type="html"><![CDATA[ZAPP https://labs.thehackerslabs.com/machine/143 Recon PortScan 枚举 上边貌似已经扫出来一点东西 得到两个文件 这段文字使用了 Leet Speak (l33t),也就是用数字和符号来替代字母。这是一种常见的CTF混淆技巧。同时,从单词...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="MISC"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Photographer]]></title>
<id>https://www.sunsetaction.top/2025/11/02/TheHackersLabsPhotographer</id>
<link href="https://www.sunsetaction.top/2025/11/02/TheHackersLabsPhotographer"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsPhotographer/image.png" type="image/png"/>
<updated>2025-11-02T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Photographer https://labs.thehackerslabs.com/machine/142 Recon PortScan 枚举 主页是静态网页,但得到一个用户名 Ethan 目录扫描 admin 中有登录框 这里扫描了端口,测试了很多漏洞 然后因为名字是摄影师还把图片隐写都过了...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="XXE"/>
<category label="FileUpload"/>
<category label="Disk"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Luna]]></title>
<id>https://www.sunsetaction.top/2025/10/28/TheHackersLabsLuna</id>
<link href="https://www.sunsetaction.top/2025/10/28/TheHackersLabsLuna"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsLuna/image.png" type="image/png"/>
<updated>2025-10-28T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Luna https://labs.thehackerslabs.com/machine/53 Recon PortScan 现在不知道为什么我的 nmap 总是会扫出来 25 和 110 端口 枚举 80 端口 5000 端口 SSTI 点击 Greet me 报错了,并且能知道调试已经开了 | ...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="SSTI"/>
<category label="Brute"/>
<category label="Docker"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - THLPWN]]></title>
<id>https://www.sunsetaction.top/2025/10/27/TheHackersLabsTHLPWN</id>
<link href="https://www.sunsetaction.top/2025/10/27/TheHackersLabsTHLPWN"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsTHLPWN/image.png" type="image/png"/>
<updated>2025-10-27T00:00:00.000Z</updated>
<summary type="html"><![CDATA[THLPWN https://labs.thehackerslabs.com/machine/141 Recon PortScan 枚举 看来还运行着邮件服务 我们根据 thl 的默认规则即可访问 一番摸索后在网站下载页面中能下载到一个 ELF 文件 通过 strings 可以拿到疑似用户的账户密码...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="PWN"/>
</entry>
<entry>
<title type="html"><![CDATA[念念碎]]></title>
<id>https://www.sunsetaction.top/2025/10/26/念念碎</id>
<link href="https://www.sunsetaction.top/2025/10/26/念念碎"/>
<link rel="enclosure" href="https://www.sunsetaction.top/images/logo.png" type="image/png"/>
<updated>2025-10-26T00:00:00.000Z</updated>
<summary type="html"><![CDATA[xxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="杂"/>
<category label="胡说八道"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Machine - Puppy]]></title>
<id>https://www.sunsetaction.top/2025/10/25/HackTheBoxSeason8 - Puppy</id>
<link href="https://www.sunsetaction.top/2025/10/25/HackTheBoxSeason8 - Puppy"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxSeason8%20-%20Puppy/image.png" type="image/png"/>
<updated>2025-05-19T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Season8 Puppy https://app.hackthebox.com/machines/661 | Medium Machine Information:As is common in real life pentests, you will start the Puppy box wi...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackTheBox"/>
<category label="Windows靶机"/>
<category label="域渗透"/>
<category label="DPAPI"/>
<category label="KeePass"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Machine - Artificial]]></title>
<id>https://www.sunsetaction.top/2025/10/25/HackTheBoxSeason8 - Artificial</id>
<link href="https://www.sunsetaction.top/2025/10/25/HackTheBoxSeason8 - Artificial"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxSeason8%20-%20Artificial/image.png" type="image/png"/>
<updated>2025-06-28T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Season8 Artificial https://app.hackthebox.com/machines/Artificial | Linux | Easy Recon 访问 HTTP ,采集指纹 主页中还有一段关于训练模型的代码: 可以创建账户,创建sunset用户 进入到后台有一个文件上传功...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackTheBox"/>
<category label="Linux"/>
<category label="tensorflow"/>
<category label="Backrest"/>
</entry>
<entry>
<title type="html"><![CDATA[HackMyVM - Sysadmin]]></title>
<id>https://www.sunsetaction.top/2025/10/25/HackMyVMSysadmin</id>
<link href="https://www.sunsetaction.top/2025/10/25/HackMyVMSysadmin"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackMyVMSysadmin/image.png" type="image/png"/>
<updated>2025-10-25T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Sysadmin. https://hackmyvm.eu/machines/machine.php?vm=Sysadmin Recon PortScan 枚举 80 端口,看样子是文件上传,并且是让我们上传 C 语言文件,并且会运行 端口扫描 F12 查看源码时发现 RCE 这里的猜测是,上传 c...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackMyVM"/>
<category label="Linux"/>
<category label="RCE"/>
<category label="Hijack"/>
<category label="Path_Hijack"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - AllSafe]]></title>
<id>https://www.sunsetaction.top/2025/10/21/TheHackersLabsAllSafe</id>
<link href="https://www.sunsetaction.top/2025/10/21/TheHackersLabsAllSafe"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsAllSafe/image.png" type="image/png"/>
<updated>2025-10-21T00:00:00.000Z</updated>
<summary type="html"><![CDATA[AllSafe https://labs.thehackerslabs.com/machine/139 Recon PortScan 枚举 80 端口,域名是 allsafe.thl 目录扫描,扫出来的东西太多就不放出来了,也没什么可以看的 主站中还有一个功能,可以提交网址,所以索性测试了 SSRF...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackerLabs"/>
<category label="Linux"/>
<category label="LFI"/>
<category label="FUZZ"/>
<category label="PasswordSafe"/>
<category label="Make"/>
<category label="Nodejs反序列化"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - LavaShop]]></title>
<id>https://www.sunsetaction.top/2025/10/20/TheHackersLabsLavaShop</id>
<link href="https://www.sunsetaction.top/2025/10/20/TheHackersLabsLavaShop"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsLavaShop/image.png" type="image/png"/>
<updated>2025-10-20T00:00:00.000Z</updated>
<summary type="html"><![CDATA[LavaShop https://labs.thehackerslabs.com/machine/140 Recon PortScan 枚举 80 端口 1337 端口 目录扫描 看着像是存在 LFI ,枚举一下 index.php 的 page 参数 没有枚举出来,再枚举一下其他页面是否存在参数 ...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackerLabs"/>
<category label="Linux"/>
<category label="LFI"/>
<category label="Fuzz"/>
<category label="Gdbserver"/>
</entry>
<entry>
<title type="html"><![CDATA[HackMyVM - Birdeye]]></title>
<id>https://www.sunsetaction.top/2025/10/17/HackMyVMBirdeye</id>
<link href="https://www.sunsetaction.top/2025/10/17/HackMyVMBirdeye"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackMyVMBirdeye/image.png" type="image/png"/>
<updated>2025-10-17T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Birdeye. https://hackmyvm.eu/machines/machine.php?vm=Birdeye Recon PortScan 枚举 80 端口的搜索时发的包很奇怪 看着存在 SSRF 改成 kali 的 IP 试试 存在 SSRF 并且原本后面的 URL 是:http://...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackMyVM"/>
<category label="Linux"/>
<category label="SSRF"/>
<category label="find"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Machine - TombWatcher]]></title>
<id>https://www.sunsetaction.top/2025/10/13/HackTheBoxSeason8 - TombWatcher</id>
<link href="https://www.sunsetaction.top/2025/10/13/HackTheBoxSeason8 - TombWatcher"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxSeason8%20-%20TombWatcher/image.png" type="image/png"/>
<updated>2025-06-08T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Season8 TombWatcher https://app.hackthebox.com/machines/TombWatcher | Windows | Medium Machine Information:As is common in real life Windows pentests,...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackTheBox"/>
<category label="Windows"/>
<category label="ADCS"/>
<category label="ESC15"/>
<category label="Kerberoasting"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Machine - Certificate]]></title>
<id>https://www.sunsetaction.top/2025/10/13/HackTheBoxSeason8 - Certificate</id>
<link href="https://www.sunsetaction.top/2025/10/13/HackTheBoxSeason8 - Certificate"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxSeason8%20-%20Certificate/image.png" type="image/png"/>
<updated>2025-06-02T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Season8 Certificate https://app.hackthebox.com/machines/Certificate | Windows | Hard 前期踩点 刚刚尝试了SMB无法使用匿名账户进行访问,因为还扫描到了80端口,所以从Web下手 Web 访问 HTTP 并采集指纹 ...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackTheBox"/>
<category label="Windows"/>
<category label="ADCS"/>
<category label="GoldenCertificate"/>
<category label="seManageVolumePrivilegem"/>
<category label="ZipSlip"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Tortuga]]></title>
<id>https://www.sunsetaction.top/2025/10/01/TheHackersLabsTortuga</id>
<link href="https://www.sunsetaction.top/2025/10/01/TheHackersLabsTortuga"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsTortuga/image.png" type="image/png"/>
<updated>2025-10-01T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Tortuga https://labs.thehackerslabs.com/machine/131 Recon PortScan 枚举 HTTP 页面中的两个链接 “grumete 检查船舱里的隐藏纸条“ 感觉是一个目录或者用户 目录扫描无结果 进行 ssh 爆破 得到密码 1234 进去后能读...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="Brute"/>
<category label="Cappbilities"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Elevator]]></title>
<id>https://www.sunsetaction.top/2025/09/29/TheHackersLabsElevator</id>
<link href="https://www.sunsetaction.top/2025/09/29/TheHackersLabsElevator"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsElevator/image.png" type="image/png"/>
<updated>2025-09-29T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Elevator https://labs.thehackerslabs.com/machine/126 作者给了一个账户 Recon PortScan 枚举 SMB 枚举,下载了一些文件,不过都是没什么用的 查看一下用户权限 上 bloodhound 横向移动 ADDSelf 允许 john.sm...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Windows"/>
<category label="AD"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Pa Que Aiga Lujo]]></title>
<id>https://www.sunsetaction.top/2025/09/28/TheHackersLabsPa Que Aiga Lujo</id>
<link href="https://www.sunsetaction.top/2025/09/28/TheHackersLabsPa Que Aiga Lujo"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsPa%20Que%20Aiga%20Lujo/image.png" type="image/png"/>
<updated>2025-09-28T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Pa Que Aiga Lujo https://labs.thehackerslabs.com/machine/125 Recon PortScan 枚举 HTTP 目录扫描 好一会没找到利用的点,但是可以注意到网页上有好几个用户名,收集起来尝试暴力破解 得到密码 dolphins 提权 cipo...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="mount"/>
<category label="Drupal"/>
<category label="Tunnel"/>
</entry>
<entry>
<title type="html"><![CDATA[HackMyVM - Silentdev]]></title>
<id>https://www.sunsetaction.top/2025/09/26/HackMyVMSilentdev</id>
<link href="https://www.sunsetaction.top/2025/09/26/HackMyVMSilentdev"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackMyVMSilentdev/image.png" type="image/png"/>
<updated>2025-09-26T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Silentdev. https://hackmyvm.eu/machines/machine.php?vm=Silentdev Recon PortScan FileUpload 直接就是一个文件上传功能 上传一个普通图片后,会给出路径 尝试上传 PHP 后缀文件,没想到直接上传成功了 写一句话木...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HMV"/>
<category label="Linux"/>
<category label="Hijack"/>
<category label="FileUpload"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Folclore]]></title>
<id>https://www.sunsetaction.top/2025/09/24/TheHackersLabsFolclore</id>
<link href="https://www.sunsetaction.top/2025/09/24/TheHackersLabsFolclore"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsFolclore/image.png" type="image/png"/>
<updated>2025-09-24T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Folclore https://labs.TheHackersLabs.com/machine/123 Recon PortScan 仅仅两个端口 SMB 枚举 SMB 匿名枚举 但是并不能下载任何东西 但可以注意到描述中有东西 ADMIN$ 远程管理员 C$ 默认资源 亡灵节 最终,我们都会化为...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Windows"/>
<category label="MISC"/>
</entry>
<entry>
<title type="html"><![CDATA[HackMyVM - Aria]]></title>
<id>https://www.sunsetaction.top/2025/09/23/HackMyVMAria</id>
<link href="https://www.sunsetaction.top/2025/09/23/HackMyVMAria"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackMyVMAria/image.png" type="image/png"/>
<updated>2025-09-23T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Aria. https://hackmyvm.eu/machines/machine.php?vm=Aria Recon 端口扫描 80 端口 给出了一点信息 通过 md5(time()·rand(1,1000)) 生成不可预测的文件名 并且文件内容不可包含 <?php 以及文件名仅仅可以是 gif...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HMV"/>
<category label="Aria2"/>
<category label="Zero-Width"/>
<category label="Space"/>
<category label="Steganography"/>
<category label="Brute"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Machine - Fluffy]]></title>
<id>https://www.sunsetaction.top/2025/09/20/HackTheBoxSeason8 - Fluffy</id>
<link href="https://www.sunsetaction.top/2025/09/20/HackTheBoxSeason8 - Fluffy"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxSeason8%20-%20Fluffy/image.png" type="image/png"/>
<updated>2025-05-25T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Season8 Fluffy https://app.hackthebox.com/machines/Fluffy | Windows · Easy Machine Information:As is common in real life Windows pentests, you will st...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackTheBox"/>
<category label="Windows"/>
<category label="ADCS"/>
<category label="ESC16"/>
<category label="Responder"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Machine - Planning]]></title>
<id>https://www.sunsetaction.top/2025/09/20/HackTheBoxMachine - Planning</id>
<link href="https://www.sunsetaction.top/2025/09/20/HackTheBoxMachine - Planning"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxMachine%20-%20Planning/image.png" type="image/png"/>
<updated>2025-05-11T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Machine Planning https://app.hackthebox.com/machines/Planning | Esay 前期踩点 收集到一个邮箱 info@planning.htb Web 渗透 信息收集 访问 HTTP 服务,采集指纹 可能有用的三个用户名 Bob Moss Ro...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackTheBox"/>
<category label="Linux靶机"/>
<category label="Grafana"/>
<category label="Crontab"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Machine - Eureka]]></title>
<id>https://www.sunsetaction.top/2025/09/20/HackTheBoxMachine - Eureka</id>
<link href="https://www.sunsetaction.top/2025/09/20/HackTheBoxMachine - Eureka"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxMachine%20-%20Eureka/image.png" type="image/png"/>
<updated>2025-04-28T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Machine Eureka https://app.hackthebox.com/machines/Eureka | Hard PS:尤里卡发动!所有奇观建造提速 30% ! 前期踩点 Web 渗透 信息收集 WhatWeb 页面上的一些操作要进行登陆后才能进行操作 抓个包分析一下框架 nginx...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="Linux靶机"/>
<category label="HackTheBox"/>
<category label="Spring"/>
<category label="Eureka"/>
<category label="命令注入"/>
</entry>
<entry>
<title type="html"><![CDATA[Cyberstrikelab - Lab4]]></title>
<id>https://www.sunsetaction.top/2025/08/14/CyberstrikelabLab4</id>
<link href="https://www.sunsetaction.top/2025/08/14/CyberstrikelabLab4"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/CyberstrikelabLab4/image.png" type="image/png"/>
<updated>2025-08-14T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Lab4 https://www.cyberstrikelab.com/#/scene/detail/23 Recon 对目标主机进行扫描 5820 是 Web服务 192.168.10.10 BlueCMS 搭建着的是 BlueCMS 在页脚中能找到是:Powered by BlueCMS v1....]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="Cyberstrikelab"/>
<category label="Windows"/>
<category label="blueCMS"/>
<category label="多层内网"/>
<category label="zerologon"/>
</entry>
<entry>
<title type="html"><![CDATA[Cyberstrikelab - Lab3]]></title>
<id>https://www.sunsetaction.top/2025/08/12/CyberstrikelabLab3</id>
<link href="https://www.sunsetaction.top/2025/08/12/CyberstrikelabLab3"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/CyberstrikelabLab3/image.png" type="image/png"/>
<updated>2025-08-12T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Lab3 https://www.cyberstrikelab.com/#/scene/detail/22 Recon 提示 192.168.10.0 网段 扫描出来 192.168.10.10 HTTP 端口在3590 192.168.10.10 taoCMS 访问 Web 站点 寻找公开漏洞 h...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="Cyberstrikelab"/>
<category label="Windows"/>
<category label="taoCMS"/>
<category label="多层内网"/>
<category label="zerologon"/>
</entry>
<entry>
<title type="html"><![CDATA[Cyberstrikelab - Lab2]]></title>
<id>https://www.sunsetaction.top/2025/08/12/CyberstrikelabLab2</id>
<link href="https://www.sunsetaction.top/2025/08/12/CyberstrikelabLab2"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/CyberstrikelabLab2/image.png" type="image/png"/>
<updated>2025-08-12T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Lab2 https://www.cyberstrikelab.com/#/scene/detail/21 192.168.10.10 Recon 端口扫描 808 是 web 服务 骑士 CMS 访问 808 端口 在页尾中能找到 Powered by 74cms v4.2.111 通过搜寻,存在...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="Cyberstrikelab"/>
<category label="Windows"/>
<category label="Tomcat"/>
<category label="Vshell"/>
<category label="多层内网"/>
<category label="MS17_010"/>
</entry>
<entry>
<title type="html"><![CDATA[Cyberstrikelab - Lab1]]></title>
<id>https://www.sunsetaction.top/2025/08/12/CyberstrikelabLab-1</id>
<link href="https://www.sunsetaction.top/2025/08/12/CyberstrikelabLab-1"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/CyberstrikelabLab-1/image.png" type="image/png"/>
<updated>2025-08-12T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Lab 1 https://www.cyberstrikelab.com/#/scene/detail/20 Youcms youcms 网上能找到 youcms 前台 getshell 的利用 https://blog.csdn.net/qq 48985780/article/details/12...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="Cyberstrikelab"/>
<category label="Windows"/>
<category label="Vshell"/>
<category label="多层内网"/>
<category label="MS17_010"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - ShadowGate]]></title>
<id>https://www.sunsetaction.top/2025/08/06/TheHackersLabsShadowGate</id>
<link href="https://www.sunsetaction.top/2025/08/06/TheHackersLabsShadowGate"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsShadowGate/image.png" type="image/png"/>
<updated>2025-08-06T00:00:00.000Z</updated>
<summary type="html"><![CDATA[ShadowGate https://labs.thehackerslabs.com/machine/97 Recon PortScan 枚举 8080 端口 提示错误的方法,但是你找到路径了 改为 POST 方法后提示 没有任何信息,看一下其他端口 奇怪的 56789 端口,nc 试一下 暗影之门...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="MFA"/>
<category label="ffuf"/>
<category label="Python"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Machine - Code]]></title>
<id>https://www.sunsetaction.top/2025/08/06/HackTheBoxSeason7-Code</id>
<link href="https://www.sunsetaction.top/2025/08/06/HackTheBoxSeason7-Code"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxSeason7-Code/image56.png" type="image/png"/>
<updated>2025-04-04T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Season7 Code https://app.hackthebox.com/machines/653 | esay 前期踩点 就扫描出一个22端口,不对劲继续扫 新端口是一个代码编辑器Python Code Editor WEB 渗透 可以执行python命令,首先尝试一下os 库 提示Use ...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackTheBox"/>
<category label="Linux靶机"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - OfusPingu]]></title>
<id>https://www.sunsetaction.top/2025/08/05/TheHackersLabsOfusPingu</id>
<link href="https://www.sunsetaction.top/2025/08/05/TheHackersLabsOfusPingu"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsOfusPingu/image.png" type="image/png"/>
<updated>2025-08-05T00:00:00.000Z</updated>
<summary type="html"><![CDATA[OfusPingu https://labs.thehackerslabs.com/machine/102 Recon PortScan 枚举 HTTP 80 端口 目录扫描 script.js 很明显就是被混淆过了 通过 AI 进行恢复 得到一些信息,例如秘钥:QWERTYCHOCOLATITOC...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="API"/>
<category label="rename"/>
<category label="hydra"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Doraemon]]></title>
<id>https://www.sunsetaction.top/2025/08/03/TheHackersLabsDoraemon</id>
<link href="https://www.sunsetaction.top/2025/08/03/TheHackersLabsDoraemon"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsDoraemon/image.png" type="image/png"/>
<updated>2025-08-03T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Doraemon https://labs.thehackerslabs.com/machine/30 Recon PortScan 枚举 SMB 匿名 有两个文件夹有读的权限,通过模块全部读出来 得到一个 txt 文件,内容: 致:埃斯特波纳铜锣烧1特别组 哆啦A梦:嘿,伙计们!今天我们去吃铜锣烧...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Windows"/>
<category label="DNSADmins"/>
<category label="SMB"/>
<category label="CVE-2021-40469"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - HellRoot]]></title>
<id>https://www.sunsetaction.top/2025/08/02/TheHackersLabsHellRoot</id>
<link href="https://www.sunsetaction.top/2025/08/02/TheHackersLabsHellRoot"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsHellRoot/image.png" type="image/png"/>
<updated>2025-08-02T00:00:00.000Z</updated>
<summary type="html"><![CDATA[HellRoot https://labs.thehackerslabs.com/machine/121 Recon PortScan 扫描出来有两个 SSH 服务,三个 Web 枚举 192.168.56.5 是 Apache 的默认页面 https://git.hellroot.thl/ 是 G...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="RCE"/>
<category label="Logview"/>
</entry>
<entry>
<title type="html"><![CDATA[群U靶机 - Cliv2]]></title>
<id>https://www.sunsetaction.top/2025/07/31/群U靶机 - Cliv2</id>
<link href="https://www.sunsetaction.top/2025/07/31/群U靶机 - Cliv2"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/群U靶机%20-%20Cliv2/image.png" type="image/png"/>
<updated>2025-07-31T00:00:00.000Z</updated>
<summary type="html"><![CDATA[群U靶机 Cliv2 Recon 端口扫描 子域名爆破 DNS 区域传输漏洞 看到 dev 就很兴奋 点进去后看到 AXFR 我一搜,能找到: DNS 区域传输 (AXFR) 使用 AXFR 协议的 DNS 区域传输是跨 DNS 服务器复制 DNS 记录的最简单机制。为避免在多个 DNS 服务器上编...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="群U"/>
<category label="Linux"/>
<category label="DNS"/>
<category label="hvmcli"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Merchan]]></title>
<id>https://www.sunsetaction.top/2025/07/31/TheHackersLabsMerchan</id>
<link href="https://www.sunsetaction.top/2025/07/31/TheHackersLabsMerchan"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsMerchan/image.png" type="image/png"/>
<updated>2025-07-31T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Merchan https://labs.thehackerslabs.com/machine/109 Recon PortScan Web 子域名 & 目录 爆破 访问 HTTP ,这个页面什么功能点都没有 尝试爆破一下子域名,只有 www 目录爆破,能扫描出来一个 secret.js 被混淆过了...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="APT"/>
<category label="LFI"/>
<category label="Crack"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - HEXTHINK SILENT SHADOW]]></title>
<id>https://www.sunsetaction.top/2025/07/31/TheHackersLabsHEXTHINK SILENT SHADOW</id>
<link href="https://www.sunsetaction.top/2025/07/31/TheHackersLabsHEXTHINK SILENT SHADOW"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsHEXTHINK%20SILENT%20SHADOW/image.png" type="image/png"/>
<updated>2025-07-31T00:00:00.000Z</updated>
<summary type="html"><![CDATA[HEXTHINK SILENT SHADOW https://labs.thehackerslabs.com/machine/110 Recon PortScan 枚举 访问 HTTP ,提示了很有意思的东西 得到数据库的用户 ctf user 连接数据库,意外的发现不用数据库 数据库里面好几个表(...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="Mysql"/>
<category label="Python"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Season7 - Cypher]]></title>
<id>https://www.sunsetaction.top/2025/07/29/HackTheBoxSeason7-Cypher</id>
<link href="https://www.sunsetaction.top/2025/07/29/HackTheBoxSeason7-Cypher"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxSeason7-Cypher/image27.png" type="image/png"/>
<updated>2025-04-04T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Season7 Cypher https://app.hackthebox.com/machines/Cypher | Linux · Medium 前期踩点 10.10.11.57 是靶机 发现域名 http://cypher.htb/ 添加到hosts文件 扫描UDP端口 扫描一下子域名 访问H...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="HackTheBox"/>
<category label="Linux靶机"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - CyberGuard]]></title>
<id>https://www.sunsetaction.top/2025/07/28/TheHackersLabsCyberGuard</id>
<link href="https://www.sunsetaction.top/2025/07/28/TheHackersLabsCyberGuard"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsCyberGuard/image.png" type="image/png"/>
<updated>2025-07-28T00:00:00.000Z</updated>
<summary type="html"><![CDATA[CyberGuard https://labs.thehackerslabs.com/machine/25 一共有四台机子:第一台是做路由器/防火墙。其余三台内网主机。 Recon PortScan 枚举 HTTP 服务 目录爆破,这里扫描久了会被 ban 掉 这个 query 和输出结果感觉有股熟...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Windows"/>
<category label="Linux"/>
<category label="MS17-010"/>
<category label="Sliver"/>
<category label="SQLInjection"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Pacharán]]></title>
<id>https://www.sunsetaction.top/2025/07/27/TheHackersLabsPacharán</id>
<link href="https://www.sunsetaction.top/2025/07/27/TheHackersLabsPacharán"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsPacharán/image.png" type="image/png"/>
<updated>2025-07-27T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Pacharán https://labs.thehackerslabs.com/machine/61 Recon PortScan 枚举 SMB 匿名测试 可以使用匿名账户 直接用nxc全部拉下来 得到一个 txt 文件 Orujo.txt 像是一个凭据,测试一下 成功拿到 orujo 的凭据 域...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Windows"/>
<category label="SeLoadDriverPrivilege"/>
<category label="Crack"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Back To The Future I]]></title>
<id>https://www.sunsetaction.top/2025/07/26/TheHackersLabsBack To The Future I</id>
<link href="https://www.sunsetaction.top/2025/07/26/TheHackersLabsBack To The Future I"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsBack%20To%20The%20Future%20I/image.png" type="image/png"/>
<updated>2025-07-26T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Back To The Future I https://labs.thehackerslabs.com/machine/119 Recon PortScan 枚举 FTP 匿名 HTTP 服务 查看源码能找到 目录爆破 about.php logs.php time machine.php ?EI...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="SQLInjection"/>
<category label="FileInclude"/>
<category label="CommandInjection"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - NodeCeption]]></title>
<id>https://www.sunsetaction.top/2025/07/25/TheHackersLabsNodeCeption</id>
<link href="https://www.sunsetaction.top/2025/07/25/TheHackersLabsNodeCeption"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsNodeCeption/image.png" type="image/png"/>
<updated>2025-07-25T00:00:00.000Z</updated>
<summary type="html"><![CDATA[NodeCeption https://labs.thehackerslabs.com/machine/118 Recon PortScan 枚举测试 8765 Apache默认页面 5678 n8n n8n 可以反弹 shell,但是要进入后台,并且需要邮箱和密码 密码爆破 我么寻找一下哪里能找到...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Linux"/>
<category label="n8n"/>
<category label="hydra"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Pildoritas]]></title>
<id>https://www.sunsetaction.top/2025/07/24/TheHackersLabsPildoritas</id>
<link href="https://www.sunsetaction.top/2025/07/24/TheHackersLabsPildoritas"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsPildoritas/image.png" type="image/png"/>
<updated>2025-07-24T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Pildoritas https://labs.thehackerslabs.com/machine/67 Recon PortScan 这次不打 AD 域 枚举测试 SMB 匿名枚举 Vulnserver 从nmap 中的扫描结果能知道搭建着 Vulnserver 项目链接:https://git...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Vulnserver"/>
</entry>
<entry>
<title type="html"><![CDATA[HackTheBox - Machine - Scepter]]></title>
<id>https://www.sunsetaction.top/2025/07/24/HackTheBoxMachine - Scepter</id>
<link href="https://www.sunsetaction.top/2025/07/24/HackTheBoxMachine - Scepter"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/HackTheBoxMachine%20-%20Scepter/image.png" type="image/png"/>
<updated>2025-04-26T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Machine Scepterl https://app.hackthebox.com/machines/Scepter | Hard PS:一直以为 Season 过了之后就不能白嫖靶机了…导致错过了两周的靶机…呜呜呜 前期踩点 Windows 靶机的端口,但不一定是域控主机(PS:后面才知道我扫...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="Windows靶机"/>
<category label="HackTheBox"/>
<category label="ADCS"/>
<category label="ESC"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Mentallity]]></title>
<id>https://www.sunsetaction.top/2025/07/23/TheHackersLabsMentallity</id>
<link href="https://www.sunsetaction.top/2025/07/23/TheHackersLabsMentallity"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsMentallity/image.png" type="image/png"/>
<updated>2025-07-23T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Mentallity https://labs.thehackerslabs.com/machine/120 Recon PortScan namp 端口扫描 貌似是双网卡 枚举测试 SMB 匿名账户测试 FTP 匿名测试 HTTP HTTP 80 HTTP 8080 发现一个登录页面 我们点击登录...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Windows"/>
<category label="AD"/>
<category label="ESC7"/>
<category label="FTP"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Curiosity2]]></title>
<id>https://www.sunsetaction.top/2025/07/19/TheHackersLabsCuriosity2</id>
<link href="https://www.sunsetaction.top/2025/07/19/TheHackersLabsCuriosity2"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsCuriosity2/image.png" type="image/png"/>
<updated>2025-07-19T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Curiosity2 https://labs.thehackerslabs.com/machine/103 Recon PortScan nmap 端口扫描 枚举测试 测试 SMB 匿名账户 再看一眼 wireshark ,依旧有 LLMNR包,并且从数据包可以看出来是在查询 SQLserver ...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Windows"/>
<category label="AD"/>
<category label="Responder"/>
<category label="MSSQL"/>
<category label="gMSA"/>
<category label="KeePass"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - Curiosity]]></title>
<id>https://www.sunsetaction.top/2025/07/19/TheHackersLabsCuriosity</id>
<link href="https://www.sunsetaction.top/2025/07/19/TheHackersLabsCuriosity"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsCuriosity/image.png" type="image/png"/>
<updated>2025-07-19T00:00:00.000Z</updated>
<summary type="html"><![CDATA[Curiosity https://labs.thehackerslabs.com/machine/23 Recon PortScan nmap 端口扫描 UDP 也扫描 枚举测试 因为没有 Web 端口,我们从 SMB 服务开始枚举 测试匿名账户 在这里尝试枚举了很久,没结果 responder ...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>
</author>
<category label="靶机"/>
<category label="TheHackersLabs"/>
<category label="Windows"/>
<category label="AD"/>
<category label="Responder"/>
<category label="MSSQL"/>
<category label="gMSA"/>
</entry>
<entry>
<title type="html"><![CDATA[TheHackersLabs - B.I.G]]></title>
<id>https://www.sunsetaction.top/2025/07/18/TheHackersLabsB I G</id>
<link href="https://www.sunsetaction.top/2025/07/18/TheHackersLabsB I G"/>
<link rel="enclosure" href="https://www.sunsetaction.top/post-images/TheHackersLabsB%20I%20G/image.png" type="image/png"/>
<updated>2025-07-18T00:00:00.000Z</updated>
<summary type="html"><![CDATA[B.I.G https://labs.thehackerslabs.com/machine/6 Recon Port scan 使用 nmap 对端口进行扫描 枚举测试 SMB 匿名账户测试 WEB 目录扫描 HTTP 服务 两段歌词的来源 I keep it music music, I eat ...]]></summary>
<author>
<name>Sunset</name>
<uri>https://www.sunsetaction.top/about</uri>