-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.xml
2415 lines (2415 loc) · 210 KB
/
rss.xml
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"?>
<rss version="2.0">
<channel>
<title>✨星星之火,可以燎原🔥</title>
<subtitle></subtitle>
<icon>https://chxpro.me/assets/favicon.ico</icon>
<link>https://chxpro.me</link>
<author>
<name>辰海星</name>
</author>
<description>NPC也有悲惨的剧情</description>
<language>zh-CN</language>
<pubDate>Sat, 25 Jan 2025 12:12:05 +0800</pubDate>
<lastBuildDate>Sat, 25 Jan 2025 12:12:05 +0800</lastBuildDate>
<category term="辰海星" />
<category term="星星" />
<item>
<guid isPermalink="true">https://chxpro.me/%E6%B8%97%E9%80%8F/%E7%BD%91%E7%BB%9C%E6%B8%97%E9%80%8F%E5%B7%A5%E5%85%B7%E5%90%88%E9%9B%86.html</guid>
<title>网络渗透工具合集</title>
<link>https://chxpro.me/%E6%B8%97%E9%80%8F/%E7%BD%91%E7%BB%9C%E6%B8%97%E9%80%8F%E5%B7%A5%E5%85%B7%E5%90%88%E9%9B%86.html</link>
<category term="渗透" scheme="https://chxpro.me/categories/%E6%B8%97%E9%80%8F/" />
<pubDate>Sat, 25 Jan 2025 12:12:05 +0800</pubDate>
<description><![CDATA[ <p>网络安全主要分为两大部分:攻击部分和防御部分,所以我从这两个方向分类整理了这些工具、网站</p>
<h1 id="一-攻击部分"><a class="anchor" href="#一-攻击部分">#</a> 一、攻击部分</h1>
<ul>
<li>信息采集
<ul>
<li>网络信息:IP 地址、域名信息,子域名,敏感目录,端口服务,DNS 服务器、旁站服务,操作系统及提供服务的软件版本,外部网络拓扑结构,网络服务供应商,源代码, Robots 文件探测,备案查询,微信小程序支付宝小程序,SSL/TLS 证书查询,Google Hacking</li>
<li>物理信息:公司注册信息、组织结构、电话号段、网络或安全管理员及联系方式、地理位置等,以便开展实施社工和物理攻击;业务逻辑</li>
</ul>
</li>
<li>获取真实 IP
<ul>
<li>NMAP,<a href="https://github.com/robertdavidgraham/masscan">Masscan</a></li>
<li>站长工具:<a href="https://ping.chinaz.com/">https://ping.chinaz.com/</a></li>
<li>微步在线查询:<a href="https://x.threatbook.com/">https://x.threatbook.com/</a></li>
<li>外网访问,对比分析</li>
</ul>
</li>
<li>域名信息
<ul>
<li>子域名:Layer 子域名挖掘机;<a href="https://github.com/shmilylty/OneForAll">OneForAll</a></li>
<li>网站路径扫描:御剑,WWWSCAN,<a href="https://github.com/deibit/cansina">cansina</a></li>
<li>WEB 应用漏洞扫描:AWVS、APPSCAN、<a href="https://github.com/sqlmapproject/sqlmap">SQLMap</a>、<a href="https://github.com/s0md3v/XSStrike">XSStrike-XSS 漏洞扫描</a>、<a href="https://www.kali.org/tools/dirb/">网页内容扫描器 - dirb (Kali 内置)</a>、XRay+Rad</li>
<li>Google Hacking:特殊语法搜索</li>
<li>Whois:<a href="https://who.is/">https://who.is/</a> | <a href="http://tool.chinaz.com/ipwhois">http://tool.chinaz.com/ipwhois</a> | nslookup</li>
<li>网站指纹信息:Wappalyzer 指纹识别工具;<a href="https://www.yunsee.cn/">https://www.yunsee.cn/</a></li>
<li>源代码:<a href="https://github.com/">GitHub</a> 源代码信息泄露</li>
<li><a href="https://www.zoomeye.org/">钟馗之眼</a>;<a href="https://fofa.info/">FOFA 网络空间测绘</a>;<a href="https://www.shodan.io/">Shodan</a></li>
</ul>
</li>
<li>企业真实信息(社工库)
<ul>
<li><a href="https://www.iculture.cc/sgk">https://www.iculture.cc/sgk</a></li>
<li><a href="https://sgk66.cc/search.html">https://sgk66.cc/search.html</a></li>
<li><a href="https://privacy.aiuys.com/">https://privacy.aiuys.com/</a></li>
<li>telegram</li>
</ul>
</li>
<li>参考链接:<a href="https://www.freebuf.com/articles/web/283684.html">https://www.freebuf.com/articles/web/283684.html</a></li>
<li>已知 CVE 漏洞攻击利用
<ul>
<li>漏洞披露平台:<a href="https://www.cnvd.org.cn/">中国国家漏洞库 - CNDV</a>,<a href="https://www.cve.org/">CVE</a>,<a href="https://www.metasploit.com/">metasploit</a></li>
<li>主机漏洞扫描:Nessus(收费)</li>
<li>抓包分析:wireshark,科来,<a href="https://www.ypojie.com/10191.html">Fiddler</a></li>
<li>SQL 注入:Sqlmap</li>
<li>代码审计:<a href="https://rips-scanner.sourceforge.net/">RIPS - 静态分析 PHP 代码 </a>、Fortify SCA (收费)</li>
<li>集成攻击平台:Kali,Burpsuite,Metasploit,Cobalt Strike(组队且收费)</li>
<li>反编译调试工具:IDA PRO,Onlydbg,<a href="https://x64dbg.com/">x64dbg</a> (其他参考<a href="https://www.52pojie.cn/forum-4-1.html">吾爱破解</a>)</li>
<li>Shell 连接工具:中国菜刀,蚁剑,Behinder (冰蝎),<a href="https://github.com/BeichenDream/Godzilla">Godzilla: 哥斯拉 </a>,<a href="https://learn.microsoft.com/en-us/sysinternals/downloads/pstools">PSTool</a></li>
<li>系统 hash 破解:<a href="https://www.kali.org/tools/hydra/">暴力破解工具 - Hydra (Kali 内置)</a>,<a href="https://www.kali.org/tools/medusa/">暴力破解器 - Medusa (Kali 内置)</a> ,pwdump,Shadow,LC5/JOHN,<a href="https://hashes.com/zh/decrypt/hash">在线破解 Hash</a></li>
<li>内网抓取 hash:WCE,Mimikatz (抓取登录过主机的用户),Procdump+mimikatz</li>
<li>网络已公开的各类成熟 exp:strusts2 工具集,JBOSS 反序列化工具,MS08-067 等</li>
</ul>
</li>
<li>旁站攻击
<ul>
<li>IP 反查:<a href="https://tools.ipip.net/ipdomain.php">ipip</a>;<a href="https://www.ip66.net/">ip66</a>,<a href="https://stool.chinaz.com/same">站长工具</a></li>
</ul>
</li>
<li>技术类攻击
<ul>
<li><a href="https://owasp.org/www-project-top-ten/">OWASP 漏洞</a></li>
<li>Web 攻击、代码审计、各种协议攻击、系统攻击、MSF</li>
<li>逻辑漏洞</li>
<li>持续跟踪</li>
<li>日常运营 + 特定项目</li>
</ul>
</li>
<li>花钱购买 0Day 或 NDay</li>
<li>非技术类攻击</li>
</ul>
<p>参考文章:<a href="https://pppfz.com/posts/16.html">渗透测试步骤和思路 ——PPPFZ’s BLOG</a></p>
<h1 id="二-防御部分"><a class="anchor" href="#二-防御部分">#</a> 二、防御部分</h1>
<ul>
<li>网络通信层防御
<ul>
<li>防火墙的配置:禁止非必要通信端口
<ul>
<li>windows</li>
<li>Linux</li>
</ul>
</li>
<li>通信流量的监控分析
<ul>
<li>Suricata+Elastic</li>
</ul>
</li>
<li>端口伪装
<ul>
<li><a href="https://pkgs.org/download/knock-server">Knock-server Download (RPM) (pkgs.org)</a></li>
</ul>
</li>
</ul>
</li>
<li>应用服务层防御
<ul>
<li>安全配置项
<ul>
<li>服务器:Nginx,Apache,Cloudflare Server,LiteSpeed,Microsoft IIS</li>
<li>Apache(阿帕奇)</li>
<li>Nginx</li>
<li>IIS(Internet Information Services)</li>
</ul>
</li>
<li>数据库
<ul>
<li>MySQL</li>
<li>SQL Server</li>
<li>Oracle</li>
<li>Access</li>
<li>DB2</li>
<li>PostgreSQL</li>
<li>redis</li>
</ul>
</li>
<li>WEB WAF
<ul>
<li><a href="https://github.com/SpiderLabs/ModSecurity">ModSecurity</a></li>
<li><a href="https://github.com/alexazhou/VeryNginx">VeryNginx(已停更)</a></li>
</ul>
</li>
<li>邮件安全网关</li>
<li>补丁、漏洞规则更新</li>
<li>源代码审计检查
<ul>
<li>第三方库的形式、开发框架内置的代码规范、程序员的安全开发标准、代码审计、代码静态扫描</li>
</ul>
</li>
</ul>
</li>
<li>操作系统层防御
<ul>
<li>敏感行为监控
<ul>
<li>wazuh</li>
</ul>
</li>
<li>入侵排查
<ul>
<li>linux(参考文章:应急响应 ——Linux 入侵排查)
<ul>
<li>首先监测用户账号安全,比如新增的账号、可疑账号,重点查看可以远程登录的账号以及高权限账号。</li>
<li>利用 linux 的 <code>history</code> 指令查看历史 linux 指令, <code>uptime</code> 指令查看登录多久、多少用户。</li>
<li>检查异常端口和进程, <code>netstat</code> 检查异常端口, <code>ps</code> 检查异常进程,可以观看资源占用的进程 id 来判断是否有挖矿木马等嫌疑。</li>
<li>检查 linux 的启动项和系统的定时任务 crontab, <code>crontab -l</code> 查看是否有异常的任务编写进来。</li>
<li>检查 linux 的日志信息 <code>/var/log/</code> 一些系统日志信息、安全日志等。</li>
<li>自动化查杀软件,在线查杀工具,查杀脚本来查杀。</li>
<li>Linux 主机排查:<a href="https://github.com/grayddq/GScan">grayddq/GScan</a></li>
<li><a href="https://blog.csdn.net/icanflyingg/article/details/123357607">rkhunter(Rootkit 猎手)安装使用</a></li>
<li><a href="https://www.clamav.net/">ClamAVNet</a>:<a href="https://zhuanlan.zhihu.com/p/266731354">Linux 病毒扫描工具 ClamAV(Clam AntiVirus)安装使用 - 知乎 (zhihu.com)</a></li>
</ul>
</li>
<li>windows
<ul>
<li><a href="https://zhuanlan.zhihu.com/p/608654371">应急响应篇:windows 入侵排查 - 知乎 (zhihu.com)</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>杀毒软件</li>
<li>安全配置项</li>
<li>系统补丁</li>
<li>综合防御
<ul>
<li>蜜罐:<a href="https://hfish.net/#/">反制溯源<em>欺骗防御</em>主动防御 - HFish 免费蜜罐平台</a></li>
<li>堡垒机:<a href="https://www.jumpserver.org/">JumpServer - 开源堡垒机 - 官网</a></li>
<li>硬件和软件:网闸、堡垒机、蜜罐、漏扫、态势感知、威胁情报、APT 检测、数据库审记…</li>
</ul>
</li>
</ul>
]]></description>
</item>
<item>
<guid isPermalink="true">https://chxpro.me/%E6%B8%97%E9%80%8F/%E6%B8%97%E9%80%8F%E6%B5%8B%E8%AF%95%E5%85%A8%E6%B5%81%E7%A8%8B%E6%80%BB%E7%BB%93.html</guid>
<title>渗透测试全流程总结</title>
<link>https://chxpro.me/%E6%B8%97%E9%80%8F/%E6%B8%97%E9%80%8F%E6%B5%8B%E8%AF%95%E5%85%A8%E6%B5%81%E7%A8%8B%E6%80%BB%E7%BB%93.html</link>
<category term="渗透" scheme="https://chxpro.me/categories/%E6%B8%97%E9%80%8F/" />
<pubDate>Fri, 24 Jan 2025 22:11:05 +0800</pubDate>
<description><![CDATA[ <h1 id="一-信息搜集"><a class="anchor" href="#一-信息搜集">#</a> 一、信息搜集</h1>
<h2 id="1-主机扫描"><a class="anchor" href="#1-主机扫描">#</a> 1、主机扫描</h2>
<p>(1)扫描某个网段内存在的主机</p>
<p>(2)扫描主机开放的端口和服务</p>
<p>(3)扫描主机的操作系统和版本号</p>
<p>(4)扫描主机可能存在的已知漏洞</p>
<h2 id="2-web扫描"><a class="anchor" href="#2-web扫描">#</a> 2、Web 扫描</h2>
<p>(1)查询域名和子域名信息</p>
<p>(2)查询 whois 信息</p>
<p>(3)扫描 Web 应用的 URL 路径</p>
<p>(4)扫描 Web 应用后台管理入口</p>
<p>(5)常规漏洞扫描</p>
<h2 id="3-功能分析"><a class="anchor" href="#3-功能分析">#</a> 3、功能分析</h2>
<p>(1)分析前台页面的登录注册功能</p>
<p>(2)根据用户注册提示确定可用账号</p>
<p>(3)尝试进行注册并登录,确认各项功能</p>
<p>(4)确定前台页面的 UL 跳转、用户评论、文件引用、文件上传、文件下载等强交互功能点</p>
<p>(5)确定后台是否存在文件上传、查询功能、命令功能、系统配置等</p>
<h2 id="4-抓包分折"><a class="anchor" href="#4-抓包分折">#</a> 4、抓包分折</h2>
<p>(1)对前端页面的源代码进行分析,确认是否存在敏感信息或接口</p>
<p>(2)对关键功能进行抓包分析,预判后台基本实现逻辑</p>
<p>(3)对系统功能交互过程的编码和加密进行分析,如是否使用 Base64 编码、时间戳、Hash 加密</p>
<p>(4)对通信过程的 Session 和 Cookie 进行分析,判断为什么此处要这么用</p>
<h2 id="5-使用的工具"><a class="anchor" href="#5-使用的工具">#</a> 5、使用的工具</h2>
<p>(1)主机扫描:NMap、Nessus</p>
<p>(2)Web 扫描:XRay+Rad、AVWS、AppScan、SQLMap、XSStrike、dirb、御剑等</p>
<p>(3)在线搜集:<a href="http://zoomeye.org">zoomeye.org</a>、<a href="http://fofa.so">fofa.so</a>、<a href="http://shodan.io">shodan.io</a>、微步、域名注册商如万网等</p>
<h1 id="二-漏洞利用"><a class="anchor" href="#二-漏洞利用">#</a> 二、漏洞利用</h1>
<h2 id="1-已知exp使用"><a class="anchor" href="#1-已知exp使用">#</a> 1、已知 exp 使用</h2>
<p>根据信息搜集结果,直接网上寻找对应开发框架或 CMS 的成熟漏洞利用工具,如 struts2 的全家桶。</p>
<h2 id="2-暴力破解"><a class="anchor" href="#2-暴力破解">#</a> 2、暴力破解</h2>
<p>适用于验证码可绕过,使用 top1000 等各类字典,也可以根据搜集到的密码规则匹配相应账号使用 hashcat 自行创建字典。burpsuite 的暴力破解模块也提供了多样化的字典生成功能。或使用专有工具如 Hydra、SNetCracker 等,或根据业务需要自己编写 Python 脚本。</p>
<h2 id="3-逻辑漏洞"><a class="anchor" href="#3-逻辑漏洞">#</a> 3、逻辑漏洞</h2>
<p>尤其是密码重置,很关键。根据经验来看,至少可从七个方面攻击密码找回功能:重置凭证接收端可算改、重置凭证泄漏、重置凭证未校验、重置凭证可暴破、用户混淆、应答中存在影响后续逻辑的状态参数、tokn 可预测。在逻辑漏洞的找寻中,重点观察跟你用户名有关的请求,尝试在各种请求中将你的用户名或身份认证替换成他人的。</p>
<h2 id="4-js信息泄露"><a class="anchor" href="#4-js信息泄露">#</a> 4、JS 信息泄露</h2>
<p>一般内部系统的网站 JS 可能会存有用户接口,我们可以通过接口发现用户信息。也可以分析 JS 的代码,构造出后台路径和参数逻辑。</p>
<h2 id="5-后台web漏洞"><a class="anchor" href="#5-后台web漏洞">#</a> 5、后台 WEB 漏洞</h2>
<p>除了在信息搜集中提到的上传功能(上传 webshell)、查询功能(sql 注入)、命令功能(命令注入)外,其他 web 安全漏洞都最好根据功能逐一尝试。</p>
<h2 id="6-代码审计"><a class="anchor" href="#6-代码审计">#</a> 6、代码审计</h2>
<p>如果拿到源码,可以根据审计结果构造 payload</p>
<h2 id="7-使用到的工具"><a class="anchor" href="#7-使用到的工具">#</a> 7、使用到的工具</h2>
<p>(1)渗透测试:Hydra,Medusa、MetaSploit Framework、反序列化工具、各类专项工具<br />
(2)代码审计:RIPS、Fortify SCA<br />
(3)Shell 管理:菜刀、冰蝎、蚁剑、哥斯拉、PSTool 等</p>
<h1 id="三-建立据点"><a class="anchor" href="#三-建立据点">#</a> 三、建立据点</h1>
<h2 id="1-反弹shell"><a class="anchor" href="#1-反弹shell">#</a> 1、反弹 shell</h2>
<p>漏洞利用成功时,通常会在目标机上获得一个 webshell, 但是 webshell 虽然能执行命令和管理文件,但毕竟不是真正的 shell, 而且也不稳定,因此就需要反弹 shell 到一个稳定的环境中。</p>
<h2 id="2-反弹shell时候可能遇到的问题"><a class="anchor" href="#2-反弹shell时候可能遇到的问题">#</a> 2、反弹 shell 时候可能遇到的问题</h2>
<p>反弹命令不存在、禁止出口流量、限定向外访问端口、流量审查</p>
<p>(1)反弹命令不存在:命令有很多,常用命令有 <code>nc/nc.openbsd/nc.traditional</code> 、 <code>bash/sh/dash</code> 、 <code>python/perl/PHP/ruby</code> 、 <code>exec</code> , 因此命令不存在的概率很小;在服务器上使用 <code>whereis nc bash php perl python ruby</code> 就能知道命令是否存在:</p>
<p>(2)禁止出口流量:某些目标在防火墙上限制了出口流量,禁止目标主动向外发起网络请求,可以通过带外(Out Of Band)的方式进行验证。大致逻辑是,在攻击者自己的 VPS 上监测某种协议的网络请求,在目标上用这种协议访问 VPS, 若在 VPS 上看到该协议的请求日志,则可推断出目标允许出口流量;</p>
<p>(3)限定向外访问端口:某些目标限定访问外部端口,常见黑名单和白名单两种方式。黑名单,比如,禁止目标机器向外访问 MSF 默认的 4444 端口;白名单,比如,只允许向外访问 web 常见的 80 端口。黑名单的情况好绕过,随便指定一个端口号就行,白名单的话就只能探测可允许端口,常见就是 80 和 443,需要想办法利用。</p>
<p>(4)流量审查:目标环境会对所有流量进行检查,检查的时候会发现流量中的恶意代码信息。这种情况可以结合上面的 443 端口,使用攻击者的 VPS 创建 ssl 证书公钥 / 私钥对,VPS 开启 openssl 监听,然后使用 openssl 对反弹 shell 的流量进行加密,这样就能防止流量审查反弹成功。</p>
<h2 id="3-确认环境并制作木马"><a class="anchor" href="#3-确认环境并制作木马">#</a> 3、确认环境并制作木马</h2>
<p>(1)确认具体的操作系统版本和已经安装的服务,可以运行的脚本环境,可以通过的端口等(具体根据权限而定)。</p>
<p>(2)根据当前环境,按照需要制作复杂木马,甚至想办法保持连接的稳定,不被防火墙和管理员发现和封锁等。</p>
<h2 id="4-使用的工具"><a class="anchor" href="#4-使用的工具">#</a> 4、使用的工具</h2>
<p>MetaSploit Framework、Cobalt Strike 等</p>
<h1 id="四-权限提升和内网渗透"><a class="anchor" href="#四-权限提升和内网渗透">#</a> 四、权限提升和内网渗透</h1>
<h2 id="1-权限提升"><a class="anchor" href="#1-权限提升">#</a> 1、权限提升</h2>
<p>Webshell 中的 90% 都是 www-data 权限,需要想尽办法提升至 root 权限,可以用的办法有利用内核栈溢出提权、搜寻配置文件中的明文密码、环境变量劫持高权限程序、不安全的服务、借助权能(POSIX capabilities)提权、sudo 误配、SUID 滥用等等。这些可以查阅网上相关资料和方法,下载对应的 exp 完成。</p>
<h2 id="2-权限维持"><a class="anchor" href="#2-权限维持">#</a> 2、权限维持</h2>
<p>在获取了超级管理员权限后,还得想办法要将权限维持住,</p>
<h2 id="3-内网穿透"><a class="anchor" href="#3-内网穿透">#</a> 3、内网穿透</h2>
<p>在后渗透阶段,攻击进入一台目标主机是远远不够的,还需要通过内网横向移动来完成对核心目标的访问和渗透,此时通过内网穿透保持一个可靠连接,随时可以通过穿透功能进入目标主机。这一过程同样需要注意如何规避防病毒软件或防火墙的发现。</p>
<h2 id="4-内网渗透"><a class="anchor" href="#4-内网渗透">#</a> 4、内网渗透</h2>
<p>当能够保持超级管理员的权限并进行维持后,此时便可以开展内网渗透工作,整体过程与外网渗透比较类似,但是面临的实际情况并不完全一样,需要借助各类工具和经验进行处理。作为渗透测试的工作而非红方攻击来说,内网渗透并非最必要的一步,但是可以一试,进一步确定目标主机的漏洞及影响范围。</p>
<h2 id="5-使用的工具-2"><a class="anchor" href="#5-使用的工具-2">#</a> 5、使用的工具</h2>
<p>(1)权限提升:MSF、漏扫、各类专项渗透工具等<br />
(2)内网渗透:Cobalt Strike、Ladon、PSToolss 等<br />
(3)内网穿透:Frp、冰蝎、Cobalt Strike、代理等</p>
]]></description>
</item>
<item>
<guid isPermalink="true">https://chxpro.me/%E7%BB%84%E7%BD%91/zerotier%E7%BB%84%E7%BD%91.html</guid>
<title>zerotier-Windows组网</title>
<link>https://chxpro.me/%E7%BB%84%E7%BD%91/zerotier%E7%BB%84%E7%BD%91.html</link>
<category term="组网" scheme="https://chxpro.me/categories/%E7%BB%84%E7%BD%91/" />
<pubDate>Mon, 20 Jan 2025 02:00:00 +0800</pubDate>
<description><![CDATA[ <h1 id="介绍"><a class="anchor" href="#介绍">#</a> 介绍</h1>
<div class="note info">
<p><span class="rainbow">官网网址:<a href="https://www.zerotier.com">https://www.zerotier.com</a></span></p>
</div>
<div class="note warning">
<p><span class="rainbow"><ins>免费版本支持 10 个设备进行组网</ins></span></p>
</div>
<div class="note success">
<p><span class="rainbow">去中心化中续服务器在国内,适合搭建内网</span></p>
</div>
<h1 id="组网步骤"><a class="anchor" href="#组网步骤">#</a> 组网步骤</h1>
<h2 id="服务端"><a class="anchor" href="#服务端">#</a> 服务端</h2>
<div class="note info">
<p><span class="rainbow">注册账号并登录</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774c90364fb1.png" alt="image-20250101124753160" /></p>
<div class="note info">
<p><span class="rainbow">创建网络</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774c93558e99.png" alt="image-20250101124851206" /></p>
<div class="note info">
<p><span class="rainbow">选定网络进行配置</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774c970a18ab.png" alt="image-20250101124950579" /></p>
<div class="note info">
<p><span class="rainbow">组网 <code>ID</code> 及 <code>IP</code> 分配</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774ca33d0a87.png" alt="image-20250101125305285" /></p>
<h2 id="客户端"><a class="anchor" href="#客户端">#</a> 客户端</h2>
<div class="note info">
<p><span class="rainbow">下载 <code>zerotier</code> 客户端:<a href="https://download.zerotier.com/dist/ZeroTier%20One.msi">https://download.zerotier.com/dist/ZeroTier One.msi</a></span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774cac76b288.png" alt="image-20250101125533191" /></p>
<div class="note info">
<p><span class="rainbow">直接下一步即可</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774cae9d4b92.png" alt="image-20250101125607851" /></p>
<div class="note info">
<p><span class="rainbow">连接 <code>zerotier</code> 组网</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774cb69554cf.png" alt="" /></p>
<div class="note info">
<p><span class="rainbow">输入组网 <code>ID</code> </span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774cc52e92c3.png" alt="image-20250101130209103" /></p>
<div class="note info">
<p><span class="rainbow">刷新网页,点击旧设备名单,查看组网设备,放行 <code>IP</code> </span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774cfedf0add.png" alt="image-20250101131731783" /></p>
<div class="note info">
<p><span class="rainbow">为新设备授权</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774cd0878ded.png" alt="image-20250101130510360" /></p>
<div class="note info">
<p><span class="rainbow">通过其他设备安装客户端,让其他设备加入组网</span></p>
</div>
<h2 id="重新连接"><a class="anchor" href="#重新连接">#</a> 重新连接</h2>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d03f9467d.png" alt="image-20250101131853475" /></p>
<h2 id="使用"><a class="anchor" href="#使用">#</a> 使用</h2>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d48b93ccf5.png" alt="image-20250120024719865" /></p>
<div class="note success">
<p><span class="rainbow">通过该 IP 就能够进行访问了</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d42a7335c4.png" alt="1737310881140_d" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d47c96e6ac.png" alt="image-20250120024320206" /></p>
<h1 id="进阶用法"><a class="anchor" href="#进阶用法">#</a> 进阶用法</h1>
<div class="note danger">
<p class="rainbow">虽然两台设备能够连接并访问了,但是当前设备的 IP 地址并没有发生改变,也无法访问互联网</p>
<p class="rainbow">目前只是搭建内网进行了连接,要使用其他设备上的 IP 地址,需要进一步配置</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d3bde543bd.png" alt="image-20250120015229044" /></p>
<h2 id="ccproxy"><a class="anchor" href="#ccproxy">#</a> CCproxy</h2>
<h3 id="介绍-2"><a class="anchor" href="#介绍-2">#</a> 介绍</h3>
<div class="note info">
<p><span class="rainbow">CCproxy:搭建<ins>代理服务器</ins>的好工具</span></p>
<p><span class="rainbow">下载网址:<a href="https://www.youngzsoft.net/ccproxy/proxy-server-download.htm">https://www.youngzsoft.net/ccproxy/proxy-server-download.htm</a></span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d3de8d4aa0.png" alt="image-20250120020111615" /></p>
<h3 id="下载并安装"><a class="anchor" href="#下载并安装">#</a> 下载并安装</h3>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d3e13d01bb.png" alt="image-20250120020154535" /></p>
<div class="note info">
<p><span class="rainbow">安装直接下一步即可</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d43317c771.png" alt="image-20250120022344338" /></p>
<h3 id="注册激活"><a class="anchor" href="#注册激活">#</a> 注册 / 激活</h3>
<div class="note info">
<p><span class="rainbow">点击注册 ——&gt; 离线激活</span></p>
</div>
<figure class="highlight raw"><figcaption data-lang=""></figcaption><table><tr><td data-num="1"></td><td><pre>序列号:JHEHIHCDDAHC</pre></td></tr><tr><td data-num="2"></td><td><pre>注册码:15f7f78febfaee55afeafefff7cb7fdfb3</pre></td></tr></table></figure><p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d4442443b8.png" alt="image-20250120022817005" /></p>
<h3 id="搭建代理服务器"><a class="anchor" href="#搭建代理服务器">#</a> 搭建代理服务器</h3>
<div class="note info">
<p class="rainbow">服务端:点击设置,参照以下配置</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d469ccfc9a.png" alt="image-20250120023819661" /></p>
<div class="note info">
<p class="rainbow">客户端:修改代理服务器</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d4a4e3c0f3.png" alt="image-20250120025404557" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d4b57da0d4.png" alt="image-20250120025830353" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d4ec9358e6.png" alt="image-20250120031311187" /></p>
<div class="note info">
<p class="rainbow">二级代理:代理中的代理</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d4d370d930.png" alt="image-20250120030629826" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d4cfff1a50.png" alt="image-20250120030534247" /></p>
]]></description>
</item>
<item>
<guid isPermalink="true">https://chxpro.me/%E7%BB%84%E7%BD%91/softether-vpn%E7%BB%84%E7%BD%91.html</guid>
<title>softether-vpn-Windows组网</title>
<link>https://chxpro.me/%E7%BB%84%E7%BD%91/softether-vpn%E7%BB%84%E7%BD%91.html</link>
<category term="组网" scheme="https://chxpro.me/categories/%E7%BB%84%E7%BD%91/" />
<pubDate>Sun, 19 Jan 2025 17:29:13 +0800</pubDate>
<description><![CDATA[ <h1 id="介绍"><a class="anchor" href="#介绍">#</a> 介绍</h1>
<div class="note info">
<p><span class="rainbow">此教程可用于搭建内网</span></p>
</div>
<div class="note warning">
<p><span class="rainbow"> <code>softether-vpn</code> 不适用于无线网卡的电脑,会出现无法获取到正确 IP 而 <code>无法上网</code> </span></p>
<p class="rainbow">无线网卡电脑请移步指:<a href="https://chxpro.me/%E7%BB%84%E7%BD%91/zerotier%E7%BB%84%E7%BD%91.html">https://chxpro.me/ 组网 /zerotier 组网.html</a></p>
</div>
<details class="info"><summary>方案一:通过FRP内网穿透(可选香港服务器,网速较快,推荐)</summary><div>
<h1 id="方案一1服务端需要映射网络的设备"><a class="anchor" href="#方案一1服务端需要映射网络的设备">#</a> 方案一(1):服务端(需要映射网络的设备)</h1>
<h2 id="下载"><a class="anchor" href="#下载">#</a> 下载</h2>
<div class="note info">
<p><span class="rainbow">下载地址:<a href="https://www.softether-download.com/cn.aspx?product=softether">https://www.softether-download.com/cn.aspx?product=softether</a></span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d5be94d9b.png" alt="image-20250101134220644" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d6fcafa22.png" alt="image-20250101134738618" /></p>
<h2 id="安装"><a class="anchor" href="#安装">#</a> 安装</h2>
<div class="note info">
<p><span class="rainbow">一直下一步即可</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d71dbd67d.png" alt="image-20250101134811774" /></p>
<h2 id="配置"><a class="anchor" href="#配置">#</a> 配置</h2>
<div class="note info">
<p><span class="rainbow">点击连接</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d7551b9a3.png" alt="image-20250101134907107" /></p>
<div class="note info">
<p><span class="rainbow">设置服务器管理密码(用来管理服务器的密码)</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d7a8e9d15.png" alt="image-20250101135030962" /></p>
<div class="note info">
<p><span class="rainbow">允许远程访问,下一步</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d830a7518.png" alt="image-20250101135246217" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d85c65ca7.png" alt="image-20250101135330480" /></p>
<div class="note info">
<p><span class="rainbow">可以直接点退出</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/19/678d0f8e78634.png" alt="image-20250119224324682" /></p>
<div class="note info">
<p><span class="rainbow">开启 <code>L2TP</code> 服务</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d93b15d83.png" alt="image-20250101135713210" /></p>
<div class="note warning">
<p><span class="rainbow">注意!!!禁用 <code>VPN Azure</code> </span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/19/678d0ff9a711a.png" alt="image-20250119224512294" /></p>
<div class="note info">
<p><span class="rainbow">创建连接用户 及 映射网卡</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774da194b8fa.png" alt="image-20250101140055284" /></p>
<div class="note info">
<p><span class="rainbow">设置用户 —— 用户名、密码</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774da736b2cf.png" alt="image-20250101140225402" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774dae99012e.png" alt="image-20250101140423627" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774db0c1a2c5.png" alt="image-20250101140458278" /></p>
<h1 id="方案一2寻找免费frp"><a class="anchor" href="#方案一2寻找免费frp">#</a> 方案一(2):寻找免费 Frp</h1>
<div class="note info">
<p class="rainbow"><a href="https://www.baidu.com">百度</a> or <a href="https://www.bing.com">Bing</a> or <a href="htps://www.google.com">Google</a> 搜索 <code>免费Frp</code> </p>
<p class="rainbow">教程中的免费 Frp:<a href="https://www.afrp.net/">https://www.afrp.net/</a></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/19/678d20375b358.png" alt="image-20250119235429801" /></p>
<h1 id="方案一3frpc-desktop"><a class="anchor" href="#方案一3frpc-desktop">#</a> 方案一(3):Frpc-desktop</h1>
<div class="note info">
<p class="rainbow">GitHub 下载:<a href="https://github.com/luckjiawei/frpc-desktop">https://github.com/luckjiawei/frpc-desktop</a> ,找到并点击 <code>Releases</code> ,下载最新版的 exe 程序</p>
<p class="rainbow">123 网盘:<a href="https://www.123684.com/s/PlHbVv-TCMb">https://www.123684.com/s/PlHbVv-TCMb</a></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d2f6d6e40e.png" alt="image-20250120005924089" /></p>
<h2 id="安装-2"><a class="anchor" href="#安装-2">#</a> 安装</h2>
<div class="note info">
<p><span class="rainbow">下一步即可</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/19/678d134b9222f.png" alt="image-20250119225922048" /></p>
<h2 id="下载内核"><a class="anchor" href="#下载内核">#</a> 下载内核</h2>
<div class="note info">
<p><span class="rainbow">下载 Frp 内核</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/19/678d13ca75409.png" alt="image-20250119230129083" /></p>
<div class="note info">
<p><span class="rainbow">下载最新版内核即可</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/19/678d143fccf26.png" alt="image-20250119230326517" /></p>
<h2 id="配置-2"><a class="anchor" href="#配置-2">#</a> 配置</h2>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/19/678d209d2e1d3.png" alt="image-20250119235612045" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/19/678d2076173a7.png" alt="image-20250119235532743" /></p>
<div class="note info">
<p class="rainbow">以网页上给出的配置为准</p>
<p class="rainbow">选择内核,填写 <code>服务器地址</code> , <code>服务器端口</code> , <code>验证方式=token</code> , <code>令牌=token</code> </p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/19/678d217949973.png" alt="image-20250119235951854" /></p>
<div class="note info">
<p><span class="rainbow">新建一个穿透服务</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d21e756cf0.png" alt="image-20250120000142222" /></p>
<div class="note info">
<p class="rainbow">代理类型: <code>tcp</code> </p>
<p class="rainbow">代理名称: <code>生成</code> </p>
<p class="rainbow">内网地址: <code>127.0.0.1 </code> </p>
<p class="rainbow">内网端口: <code>443</code> </p>
<p class="rainbow">外网端口:端口需要在 <code>Frp页面</code> 给出的 <code>端口允许范围</code> 之内(常用端口基本占用,比如 80,443)</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d3648b7760.png" alt="image-20250120012839527" /></p>
<h2 id="报错解决方案"><a class="anchor" href="#报错解决方案">#</a> 报错解决方案</h2>
<div class="note info">
<p><span class="rainbow">点击启动,查看日志</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d24511b31c.png" alt="image-20250120001159543" /></p>
<div class="note info">
<p><span class="rainbow">点击右上角的刷新,出现 <code>start proxy success</code> 代表成功穿透</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d3686d26c6.png" alt="image-20250120012941683" /></p>
<div class="note warning">
<p><span class="rainbow"> <code>start error:port ybavailable</code> 端口已占用</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d38ae9e5dc.png" alt="image-20250120013853209" /></p>
<div class="note warning">
<p class="rainbow"><code>connection host...</code> ,主机连接错误,请检查 <code>服务器地址</code> , <code>端口</code> , <code>token</code> </p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d38db7e61e.png" alt="image-20250120013938098" /></p>
<h1 id="方案一4客户端需要连接的设备"><a class="anchor" href="#方案一4客户端需要连接的设备">#</a> 方案一(4):客户端(需要连接的设备)</h1>
<h2 id="下载-2"><a class="anchor" href="#下载-2">#</a> 下载</h2>
<div class="note info">
<p><span class="rainbow">下载地址:<a href="https://www.softether-download.com/cn.aspx?product=softether">https://www.softether-download.com/cn.aspx?product=softether</a></span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774dd45870f2.png" alt="image-20250101141427402" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774dda0c47da.png" alt="image-20250101141559118" /></p>
<h2 id="安装客户端"><a class="anchor" href="#安装客户端">#</a> 安装客户端</h2>
<div class="note info">
<p><span class="rainbow">一直下一步即可</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774ddba09880.png" alt="image-20250101141623775" /></p>
<h2 id="连接"><a class="anchor" href="#连接">#</a> 连接</h2>
<div class="note info">
<p><span class="rainbow">安装虚拟网卡</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774de010df7c.png" alt="image-20250101141735226" /></p>
<div class="note info">
<p><span class="rainbow">连接配置</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d259f5a8c8.png" alt="image-20250120001734177" /></p>
<div class="note success">
<p><span class="rainbow">连接成功</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/20/678d26ef7a9d6.png" alt="image-20250120002310217" /></p>
</div></details>
<details class="info"><summary>方案二:softether-vpn内置穿透服务搭建(中续服务器在国外,网速较慢,不推荐)</summary><div>
<h1 id="方案二1服务端需要映射网络的设备"><a class="anchor" href="#方案二1服务端需要映射网络的设备">#</a> 方案二(1):服务端(需要映射网络的设备)</h1>
<h2 id="下载-3"><a class="anchor" href="#下载-3">#</a> 下载</h2>
<div class="note info">
<p><span class="rainbow">下载地址:<a href="https://www.softether-download.com/cn.aspx?product=softether">https://www.softether-download.com/cn.aspx?product=softether</a></span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d5be94d9b.png" alt="image-20250101134220644" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d6fcafa22.png" alt="image-20250101134738618" /></p>
<h2 id="安装-3"><a class="anchor" href="#安装-3">#</a> 安装</h2>
<div class="note info">
<p><span class="rainbow">一直下一步即可</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d71dbd67d.png" alt="image-20250101134811774" /></p>
<h2 id="配置-3"><a class="anchor" href="#配置-3">#</a> 配置</h2>
<div class="note info">
<p><span class="rainbow">点击连接</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d7551b9a3.png" alt="image-20250101134907107" /></p>
<div class="note info">
<p><span class="rainbow">设置服务器管理密码(用来管理服务器的密码)</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d7a8e9d15.png" alt="image-20250101135030962" /></p>
<div class="note info">
<p><span class="rainbow">允许远程访问,下一步</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d830a7518.png" alt="image-20250101135246217" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d85c65ca7.png" alt="image-20250101135330480" /></p>
<div class="note info">
<p><span class="rainbow">设置连接地址前缀,连接时要用(最好设置个人容易记忆的前缀)</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/19/678d0db7bdc0d.png" alt="image-20250119223534486" /></p>
<div class="note info">
<p><span class="rainbow">开启 <code>L2TP</code> 服务</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d93b15d83.png" alt="image-20250101135713210" /></p>
<div class="note info">
<p><span class="rainbow">开启 <code>Azure</code> </span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774d9c025420.png" alt="image-20250101135925985" /></p>
<div class="note info">
<p><span class="rainbow">创建连接用户 及 映射网卡</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774da194b8fa.png" alt="image-20250101140055284" /></p>
<div class="note info">
<p><span class="rainbow">设置用户 —— 用户名、密码</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774da736b2cf.png" alt="image-20250101140225402" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774dae99012e.png" alt="image-20250101140423627" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774db0c1a2c5.png" alt="image-20250101140458278" /></p>
<h1 id="方案二2客户端需要连接的设备"><a class="anchor" href="#方案二2客户端需要连接的设备">#</a> 方案二(2):客户端(需要连接的设备)</h1>
<h2 id="下载-4"><a class="anchor" href="#下载-4">#</a> 下载</h2>
<div class="note info">
<p><span class="rainbow">下载地址:<a href="https://www.softether-download.com/cn.aspx?product=softether">https://www.softether-download.com/cn.aspx?product=softether</a></span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774dd45870f2.png" alt="image-20250101141427402" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774dda0c47da.png" alt="image-20250101141559118" /></p>
<h2 id="安装客户端-2"><a class="anchor" href="#安装客户端-2">#</a> 安装客户端</h2>
<div class="note info">
<p><span class="rainbow">一直下一步即可</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774ddba09880.png" alt="image-20250101141623775" /></p>
<h2 id="连接-2"><a class="anchor" href="#连接-2">#</a> 连接</h2>
<div class="note info">
<p><span class="rainbow">安装虚拟网卡</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774de010df7c.png" alt="image-20250101141735226" /></p>
<div class="note info">
<p><span class="rainbow">连接配置</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774dec3f2c38.png" alt="image-20250101142049719" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774dc69bb271.png" alt="image-20250101141047654" /></p>
<div class="note success">
<p><span class="rainbow">连接成功</span></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/01/6774df5a8f2ec.png" alt="image-20250101142320538" /></p>
</div></details>
]]></description>
</item>
<item>
<guid isPermalink="true">https://chxpro.me/%E5%9F%9F%E5%90%8D/%E5%9F%9F%E5%90%8D%E4%BD%BF%E7%94%A8%E6%96%B9%E5%BC%8F.html</guid>
<title>域名使用方式</title>
<link>https://chxpro.me/%E5%9F%9F%E5%90%8D/%E5%9F%9F%E5%90%8D%E4%BD%BF%E7%94%A8%E6%96%B9%E5%BC%8F.html</link>
<category term="域名" scheme="https://chxpro.me/categories/%E5%9F%9F%E5%90%8D/" />
<pubDate>Sat, 18 Jan 2025 02:01:49 +0800</pubDate>
<description><![CDATA[ <div class="note success">
<p class="rainbow">免费、付费域名注册教程:<a href="https://chxpro.me/%E5%9F%9F%E5%90%8D/%E5%85%8D%E8%B4%B9%E3%80%81%E4%BD%8E%E4%BB%B7%E4%BB%98%E8%B4%B9%E5%9F%9F%E5%90%8D%E6%B1%87%E6%80%BB.html">https://chxpro.me/ 域名 / 免费、低价付费域名汇总.html</a></p>
<p class="rainbow">双向域名解析教程:<a href="https://chxpro.me/%E5%9F%9F%E5%90%8D/cloudns%E6%B3%9B%E5%9F%9F%E5%90%8D%E8%A7%A3%E6%9E%90.html">https://chxpro.me/ 域名 /cloudns 泛域名解析.html</a></p>
</div>
<h1 id="dns解析"><a class="anchor" href="#dns解析">#</a> DNS 解析</h1>
<div class="note info">
<p class="rainbow">域名解析常见变量值</p>
</div>
<table>
<thead>
<tr>
<th style="text-align:center">名称</th>
<th style="text-align:center">解释</th>
<th style="text-align:center">格式</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:center">A</td>
<td style="text-align:center">指向 IPv4</td>
<td style="text-align:center"><a href="http://example.com">example.com</a> --&gt; 192.0.2.1</td>
</tr>
<tr>
<td style="text-align:center">AAAA</td>
<td style="text-align:center">指向 IPv6</td>
<td style="text-align:center"><a href="http://example.com">example.com</a> --&gt; 2001:db8::1</td>
</tr>
<tr>
<td style="text-align:center">CNAME</td>
<td style="text-align:center">指向另一个域名</td>
<td style="text-align:center"><a href="http://alias.example.com">alias.example.com</a> --&gt; <a href="http://example.com">example.com</a></td>
</tr>
<tr>
<td style="text-align:center">MX</td>
<td style="text-align:center">指定邮件服务器</td>
<td style="text-align:center"><a href="http://example.com">example.com</a> --&gt; (0-10) <a href="http://mail.example.com">mail.example.com</a>.</td>
</tr>
<tr>
<td style="text-align:center">TXT</td>
<td style="text-align:center">存储文本信息(证书)</td>
<td style="text-align:center"><a href="http://example.com">example.com</a> --&gt; <a href="http://xxx.cloudflare.com">xxx.cloudflare.com</a></td>
</tr>
<tr>
<td style="text-align:center">NS</td>
<td style="text-align:center">域名的授权 DNS 服务器</td>
<td style="text-align:center"><a href="http://example.com">example.com</a> --&gt; <a href="http://ns1.example.com">ns1.example.com</a>.</td>
</tr>
</tbody>
</table>
<h1 id="托管"><a class="anchor" href="#托管">#</a> 托管</h1>
<div class="note info">
<p class="rainbow">域名可进行托管到服务商,例如 Cloudflare:<a href="https://www.cloudflare.com/zh-cn/">https://www.cloudflare.com/zh-cn/</a></p>
</div>
<div class="note info">
<p class="rainbow">添加域</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678aa269b5315.png" alt="image-20250118023312525" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678aa2c88cd88.png" alt="image-20250118023447443" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678aa305d07f7.png" alt="image-20250118023548678" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678aa368f3e6e.png" alt="image-20250118023727752" /></p>
<div class="note info">
<p class="rainbow">NS 解析到域名注册商,填写好后点击继续,等待 DNS 解析</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678aa42473102.png" alt="image-20250118024035126" /></p>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678aa406b3854.png" alt="image-20250118024005556" /></p>
<div class="note success">
<p class="rainbow">托管成功,点击 DNS 记录可进行 DNS 设置</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678aa4e24ead6.png" alt="image-20250118024345147" /></p>
]]></description>
</item>
<item>
<guid isPermalink="true">https://chxpro.me/%E5%9F%9F%E5%90%8D/%E5%85%8D%E8%B4%B9%E3%80%81%E4%BD%8E%E4%BB%B7%E4%BB%98%E8%B4%B9%E5%9F%9F%E5%90%8D%E6%B1%87%E6%80%BB.html</guid>
<title>免费、低价付费域名汇总</title>
<link>https://chxpro.me/%E5%9F%9F%E5%90%8D/%E5%85%8D%E8%B4%B9%E3%80%81%E4%BD%8E%E4%BB%B7%E4%BB%98%E8%B4%B9%E5%9F%9F%E5%90%8D%E6%B1%87%E6%80%BB.html</link>
<category term="域名" scheme="https://chxpro.me/categories/%E5%9F%9F%E5%90%8D/" />
<pubDate>Sat, 18 Jan 2025 00:31:16 +0800</pubDate>
<description><![CDATA[ <div class="note info">
<p class="rainbow">域名使用教程:<a href="https://chxpro.me/%E5%9F%9F%E5%90%8D/%E5%9F%9F%E5%90%8D%E4%BD%BF%E7%94%A8%E6%96%B9%E5%BC%8F.html">https://chxpro.me/ 域名 / 域名使用方式.html</a></p>
</div>
<div class="note info">
<p class="rainbow">注册域名可能会用到的工具</p>
</div>
<ul>
<li>美国身份生成器:<a href="https://www.meiguodizhi.com/">https://www.meiguodizhi.com/</a></li>
<li>美国身份生成器:<a href="https://www.fakepersongenerator.com/">https://www.fakepersongenerator.com/</a></li>
<li>真实地址生成器:<a href="https://realaddress.fuyiran.com/">https://realaddress.fuyiran.com/</a></li>
<li>美国地址生成器:<a href="https://shenfendaquan.com/">https://shenfendaquan.com/</a></li>
</ul>
<h1 id="免费域名"><a class="anchor" href="#免费域名">#</a> 免费域名</h1>
<div class="note info">
<p class="rainbow">免费二级域名注册 <code>us.kg</code> :<a href="https://dash.domain.digitalplat.org/auth/login">https://dash.domain.digitalplat.org/auth/login</a></p>
<p class="rainbow">每个账号可注册 3 个域名,可托管到 Cloudflare</p>
<p class="rainbow">需要 KYC 验证:1.GitHub 仓库点 Star 2.GitHub 申请 <code>议题</code> (域名用来干什么)</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678a923a7ade4.png" alt="image-20250118012409133" /></p>
<div class="note info">
<p class="rainbow">免费二级域名注册 <code>ggif.net</code> :<a href="https://customer.l53.net/">https://customer.l53.net/</a></p>
<p class="rainbow">每个账号可免费一年(有活动可以申请两年),可以托管到 cloudflare</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/24/6793548b94750.png" alt="image-20250124165115842" /></p>
<div class="note info">
<p class="rainbow">免费二级域名注册 <code>ddns-ip.net</code> <code>ip-ddns.com</code> :<a href="https://www.cloudns.net/">https://www.cloudns.net/</a></p>
<p class="rainbow">每个账号可注册一个永久免费域名,双向解析域名,可托管到 Cloudflare</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678a911278ee1.png" alt="image-20250118011913194" /></p>
<div class="note warning">
<p class="rainbow">出现此提醒说明你的代理节点 IP 不够干净,需要换一个代理节点</p>
<p class="rainbow">双向解析域名的使用方法:<a href="https://chxpro.me/%E5%9F%9F%E5%90%8D/cloudns%E6%B3%9B%E5%9F%9F%E5%90%8D%E8%A7%A3%E6%9E%90.html">https://chxpro.me/ 域名 /cloudns 泛域名解析.html</a></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678a8ce128f65.png" alt="image-20250118010119902" /></p>
<div class="note info">
<p class="rainbow">免费二级域名注册:<a href="https://www.hidoha.net/">https://www.hidoha.net/</a></p>
<p class="rainbow">理论永久免费(也许后续还会有优惠活动),不能托管到 Cloudflare</p>
</div>
<p>2025 年限时优惠券</p>
<ul>
<li>优惠劵: <code>Hello2025</code></li>
<li>优惠劵: <code>Great2025</code></li>
</ul>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678a915ace8a1.png" alt="image-20250118012025664" /></p>
<div class="note info">
<p class="rainbow">免费二级域名注册 <code>rr.nu</code> :<a href="https://www.sitelutions.com/signup">https://www.sitelutions.com/signup</a></p>
<p class="rainbow">永久免费,不能托管到 Cloudflare</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678a92970d6c3.png" alt="image-20250118012541804" /></p>
<div class="note info">
<p class="rainbow">其他免费域名(只是域名,不是网址,需要可自行搜索如何注册)</p>
</div>
<ol>
<li><a href="http://kwikto.com">kwikto.com</a></li>
</ol>
<h1 id="付费域名"><a class="anchor" href="#付费域名">#</a> 付费域名</h1>
<div class="note info">
<p class="rainbow">spaceship 国外域名购买:<a href="https://www.spaceship.com">https://www.spaceship.com</a></p>
<p class="rainbow">付费域名均可注册到 Cloudflare</p>
</div>
<div class="note info">
<p class="rainbow"><code>.com</code> 域名 <code>¥4.98</code> </p>
<p class="rainbow">使用优惠券 <code>COMPROS</code> ,第一年 <code>¥2.88</code> ,续费 <code>¥9.98</code> </p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678a976656a24.png" alt="image-20250118014612983" /></p>
<div class="note info">
<p class="rainbow"><code>.xyz</code> 6 位纯数字域名</p>
<p class="rainbow">第一年 <code>¥0.67</code> ,续费 <code>¥0.67</code> </p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678a96f72cd13.png" alt="image-20250118014422093" /></p>
]]></description>
</item>
<item>
<guid isPermalink="true">https://chxpro.me/%E7%A0%B4%E8%A7%A3/Google%E6%B3%A8%E5%86%8C%E7%BB%95%E8%BF%87%E6%89%8B%E6%9C%BA%E5%8F%B7.html</guid>
<title>Google注册绕过手机号</title>
<link>https://chxpro.me/%E7%A0%B4%E8%A7%A3/Google%E6%B3%A8%E5%86%8C%E7%BB%95%E8%BF%87%E6%89%8B%E6%9C%BA%E5%8F%B7.html</link>
<category term="破解" scheme="https://chxpro.me/categories/%E7%A0%B4%E8%A7%A3/" />
<pubDate>Fri, 17 Jan 2025 23:44:23 +0800</pubDate>
<description><![CDATA[ <div class="note warning">
<p class="rainbow">在通过网页注册 Google 账号的时候,注册两次以上就会提示<ins>此电话号码已用过太多次</ins></p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/17/678a7b787a05f.png" alt="image-20250117234703089" /></p>
<div class="note success">
<p class="rainbow">解决方法:通过手机 Google 服务进行注册,就不会提示了</p>
</div>
<div class="note info">
<p class="rainbow">系统管理与升级 ——&gt;Google——&gt; 注册账号</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/17/678a7d7547feb.png" alt="image-20250117235532037" /></p>
<div class="note info">
<p class="rainbow">注册后关联辅助邮箱和手机号</p>
</div>
<p><img loading="lazy" data-src="https://linux.do/uploads/default/optimized/3X/f/a/fadd031019da8ab9b0007a92991d456a872b4216_2_689x421.png" alt="image" /></p>
<div class="note warning">
<p class="rainbow">如果你的 Google 邮箱出现这个页面,代表被风控了,可以用<a href="https://sms-activate.org/"> SMS 接码</a>,接到验证码验证后就不会再需要验证了</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678a806bc10b7.png" alt="image-20250118000810580" /></p>
<div class="note danger">
<p class="rainbow">注意!注册的账号<ins>不要长时间不使用或不登录</ins>,否则 Google 会对账号进行停用</p>
</div>
<p><img loading="lazy" data-src="https://free-img.400040.xyz/4/2025/01/18/678a831f13b56.png" alt="image-20250118001941847" /></p>
]]></description>
</item>
<item>
<guid isPermalink="true">https://chxpro.me/%E4%BB%A3%E7%90%86/%E4%BB%A3%E7%90%86%E5%B7%A5%E5%85%B7%E6%B1%87%E6%80%BB.html</guid>
<title>代理工具汇总</title>
<link>https://chxpro.me/%E4%BB%A3%E7%90%86/%E4%BB%A3%E7%90%86%E5%B7%A5%E5%85%B7%E6%B1%87%E6%80%BB.html</link>
<category term="代理" scheme="https://chxpro.me/categories/%E4%BB%A3%E7%90%86/" />
<pubDate>Fri, 17 Jan 2025 19:42:19 +0800</pubDate>
<description><![CDATA[ <div class="note info">
<p class="rainbow">所有代理软件均在持续更新中</p>
</div>
<div class="note info">
<p><span class="rainbow">Clash 系列代理软件需要 <code>.yml</code> 配置文件</span></p>
<p><span class="rainbow">v2ray,其他系列代理软件只需导入支持的协议即可</span></p>
</div>
<blockquote>
<p>🌟:推荐</p>
</blockquote>
<blockquote>
<p>WebDav 同步:代理工具是否能通过 WebDav 对订阅进行设备同步<br />
💻:✅=PC 端同步,📱:✅= 移动端同步,💻📱:✅✅= 双端同步,❌= 不支持同步</p>
</blockquote>
<blockquote>
<p>DNS 防泄露:代理工具本身是否支持 DNS 防泄露(Clash 配置文件除外),DNS 泄露测试:<a href="https://dnsleaktest.org/dns-leak-test">https://dnsleaktest.org/dns-leak-test</a><br />
仅代理:China 占比不超过 5%,超过则为 <code>仅TUN</code> <br />
tun 模式:China 占比不超过 5%,超过则为 <code>仅代理</code> <br />
两项都不超过则为✅,两项都超过则为❌</p>
</blockquote>
<blockquote>
<p>自定义分流:代理工具对 特定网址 或 APP 是否支持自定义规则,走代理还是走直连(不包含 Clash 配置文件)</p>
</blockquote>
<h1 id="个人推荐"><a class="anchor" href="#个人推荐">#</a> 个人推荐</h1>
<table>
<thead>
<tr>
<th style="text-align:center">软件和下载地址</th>
<th style="text-align:center">支持系统</th>
<th style="text-align:center">备注</th>
<th style="text-align:center">WebDAV 同步</th>
<th style="text-align:center">DNS 防泄露</th>
<th style="text-align:center">自定义分流</th>
<th style="text-align:center">特点</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:center"><ins class="rainbow">🌟<a href="https://github.com/2dust/v2rayN">V2rayN</a></ins></td>
<td style="text-align:center"><code>Win/Mac/Linux</code></td>
<td style="text-align:center">PC 端强烈推荐</td>
<td style="text-align:center"><code>💻:✅</code></td>
<td style="text-align:center">✅</td>
<td style="text-align:center">✅</td>
<td style="text-align:center">支持测速、支持最新协议(Xhttp)</td>
</tr>
<tr>
<td style="text-align:center"><ins class="rainbow">🌟<a href="https://github.com/KaringX/karing">Karing</a></ins></td>
<td style="text-align:center"><code>Win/Mac/IOS/Android/TvOS</code></td>
<td style="text-align:center">功能完善,不太美观,安卓有 bug <a href="https://karing.app/">教程</a></td>
<td style="text-align:center">💻📱:✅✅</td>
<td style="text-align:center">✅</td>
<td style="text-align:center">✅</td>
<td style="text-align:center">内置 DNS 测速</td>
</tr>
<tr>
<td style="text-align:center"><ins class="rainbow">🌟<a href="https://github.com/mihomo-party-org/mihomo-party">mihomo-party</a></ins></td>
<td style="text-align:center"><code>Win/Mac/Linux</code></td>
<td style="text-align:center">界面定制个性化 <a href="https://mihomo.party/">教程</a></td>
<td style="text-align:center"><code>💻:✅</code></td>
<td style="text-align:center">仅代理</td>
<td style="text-align:center">✅</td>
<td style="text-align:center">支持自定义 DNS,全局扩展脚本</td>
</tr>
<tr>
<td style="text-align:center"><ins class="rainbow">🌟<a href="https://github.com/chen08209/FlClash">FlClash</a></ins></td>
<td style="text-align:center">全平台</td>
<td style="text-align:center">适合新手使用 ,有 bug</td>
<td style="text-align:center"><code>💻📱:✅✅</code></td>
<td style="text-align:center">仅代理</td>
<td style="text-align:center">✅</td>
<td style="text-align:center">支持自定义 DNS</td>
</tr>
</tbody>
</table>
<h1 id="其他推荐"><a class="anchor" href="#其他推荐">#</a> 其他推荐</h1>
<table>
<thead>
<tr>
<th style="text-align:center">软件和下载地址</th>
<th style="text-align:center">支持系统</th>
<th style="text-align:center">备注</th>
<th style="text-align:center">WebDAV 多端同步</th>
<th style="text-align:center">DNS 防泄露</th>
<th style="text-align:center">自定义分流</th>
<th style="text-align:center">特点</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:center"><a href="https://github.com/hiddify/hiddify-next/releases">Hiddify</a></td>
<td style="text-align:center">全平台</td>
<td style="text-align:center">使用简单 <a href="https://hiddify.com/">教程</a></td>
<td style="text-align:center"><code>💻📱:❌❌</code></td>
<td style="text-align:center">仅代理</td>
<td style="text-align:center">❌</td>
<td style="text-align:center">内置 WARP</td>
</tr>
<tr>
<td style="text-align:center"><a href="https://github.com/clash-verge-rev/clash-verge-rev/releases">Clash-verge-rev</a></td>
<td style="text-align:center"><code>Win/Mac/Linux</code></td>
<td style="text-align:center">Clash 家族用户排名第一 ,但有 bug <a href="https://www.clashverge.dev/">教程</a></td>
<td style="text-align:center"><code>💻:❌</code></td>
<td style="text-align:center">❌</td>
<td style="text-align:center">❌</td>
<td style="text-align:center">支持全局扩展脚本</td>
</tr>
<tr>
<td style="text-align:center"><a href="https://github.com/libnyanpasu/clash-nyanpasu">Clash-nyanpasu</a></td>
<td style="text-align:center"><code>Win/Mac/Linux</code></td>
<td style="text-align:center">界面简约清新,有 bug <a href="https://nyanpasu.elaina.moe/">教程</a></td>
<td style="text-align:center"><code>💻:❌</code></td>
<td style="text-align:center">❌</td>
<td style="text-align:center">❌</td>
<td style="text-align:center">能识别 ASN</td>
</tr>
<tr>
<td style="text-align:center"><a href="https://github.com/snakem982/Pandora-Box/">Pandora-Box</a></td>
<td style="text-align:center"><code>Win/Mac/Linux</code></td>
<td style="text-align:center">简约,但协议适配不完善</td>
<td style="text-align:center"><code>💻:❌</code></td>
<td style="text-align:center">❌</td>
<td style="text-align:center">❌</td>
<td style="text-align:center">适合代理抓取</td>
</tr>
<tr>
<td style="text-align:center"><a href="https://github.com/MatsuriDayo/nekoray">Nekoray</a></td>
<td style="text-align:center"><code>Win/Linux</code></td>
<td style="text-align:center">界面功能和 v2rayN 类似 <a href="https://matsuridayo.github.io/">教程</a></td>
<td style="text-align:center"><code>💻:❌</code></td>
<td style="text-align:center">❌</td>
<td style="text-align:center">❌</td>
<td style="text-align:center">界面排版老旧</td>
</tr>
<tr>
<td style="text-align:center"><a href="https://github.com/GUI-for-Cores/GUI.for.Clash">GUI.for.Clash</a></td>
<td style="text-align:center"><code>Win/Mac/Linux</code></td>
<td style="text-align:center"><a href="https://github.com/GUI-for-Cores">GUI-for-Cores</a> 作者维护,有 bug,测试时无法正常启动</td>
<td style="text-align:center"></td>
<td style="text-align:center"></td>
<td style="text-align:center"></td>
<td style="text-align:center"></td>
</tr>
<tr>
<td style="text-align:center"><a href="https://github.com/GUI-for-Cores/GUI.for.SingBox">GUI.for.Singbox</a></td>
<td style="text-align:center"><code>Win/Mac/Linux</code></td>
<td style="text-align:center"><a href="https://github.com/GUI-for-Cores">GUI-for-Cores</a> 作者维护,仅 GUI,内核需要外网下载</td>
<td style="text-align:center"><code>💻:❌</code></td>
<td style="text-align:center">✅</td>
<td style="text-align:center">✅</td>
<td style="text-align:center">有各种小插件</td>
</tr>
<tr>
<td style="text-align:center"><a href="https://github.com/2dust/v2rayNG">V2rayNG</a></td>
<td style="text-align:center"><code>Android</code></td>
<td style="text-align:center">不是 v2rayN 子项目,不能共用 WebDav</td>
<td style="text-align:center"><code>📱:❌</code></td>
<td style="text-align:center">✅</td>
<td style="text-align:center">✅</td>
<td style="text-align:center">好用</td>
</tr>
<tr>
<td style="text-align:center"><a href="https://github.com/MatsuriDayo/NekoBoxForAndroid">Nekobox</a></td>
<td style="text-align:center"><code>Android</code></td>
<td style="text-align:center">安卓版 nekoray,有 bug,测试只能通过协议导入 <a href="https://matsuridayo.github.io/">教程</a></td>
<td style="text-align:center"><code>📱:❌</code></td>
<td style="text-align:center">✅</td>
<td style="text-align:center">✅</td>
<td style="text-align:center">类似 v2rayNG 同款</td>
</tr>
<tr>
<td style="text-align:center"><a href="https://github.com/getsurfboard/surfboard">Surfboard</a></td>
<td style="text-align:center"><code>Android</code></td>
<td style="text-align:center">界面美观 <a href="https://manual.getsurfboard.com/">教程</a></td>
<td style="text-align:center"><code>❌</code></td>
<td style="text-align:center">❌</td>
<td style="text-align:center">✅</td>
<td style="text-align:center"></td>
</tr>
<tr>
<td style="text-align:center"><a href="https://sing-box.sagernet.org/">Sing-box</a></td>
<td style="text-align:center">全平台</td>
<td style="text-align:center">仅内核,不适合新手</td>
<td style="text-align:center"><code>💻📱:❌❌</code></td>
<td style="text-align:center"></td>
<td style="text-align:center"></td>
<td style="text-align:center"></td>
</tr>
<tr>
<td style="text-align:center"><a href="https://nssurge.com/">Surge</a></td>
<td style="text-align:center"><code>IOS/Mac/Apple TV</code></td>