├── LICENSE ├── MapLocal ├── blank-array.json ├── blank-dict.json ├── blank.gif └── blank.txt ├── README.md ├── _config.yml ├── img ├── icon │ └── surge.png └── sub.png ├── module ├── GameMode.sgmodule ├── GithubPrivate.sgmodule ├── Hide-VPN-Icon.sgmodule ├── MITM All.sgmodule ├── Old-iPA-Downloader.sgmodule ├── Outbound Mode.sgmodule ├── README.md ├── WiFi-Assist.sgmodule ├── Wikiwand.sgmodule ├── block │ ├── AdvertisingPlus.sgmodule │ ├── TikTok.sgmodule │ └── Youtube.sgmodule ├── compatibility-mode.sgmodule ├── dns.sgmodule └── historical price.sgmodule ├── profile.conf └── rule ├── AI.list ├── apple.list ├── blocked.list ├── cn.list ├── netflix.list ├── nrc-app.list ├── telegram.list └── twitter.list /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /MapLocal/blank-array.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /MapLocal/blank-dict.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /MapLocal/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankmagic/surge/2741d51076d1a11e2a8d1bdc3e7a1fdca2504dfc/MapLocal/blank.gif -------------------------------------------------------------------------------- /MapLocal/blank.txt: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### ***For pure self-use*** 2 | 3 | Please read the [Documentation](https://www.notion.so/maicoo/Surge-bf22101efe66497582ea937ddc750246) before using this Configuration. 4 | 5 | [Telegram Channel](https://t.me/Surge_classroom) 6 | 7 | 8 | *Surge is a networking toolbox For iOS and macOS.* 9 | 10 |
11 | Surge official docs 12 | 13 | Surge documentation, along with technical details and guidelines. 14 | 15 | [Website](https://nssurge.com/) 16 | 17 | [Manual](http://manual.nssurge.com/) 18 | 19 | [Understanding Surge](https://manual.nssurge.com/book/understanding-surge/cn/) 20 | 21 | [FAQ](https://nssurge.com/support) 22 | 23 | [Community](https://community.nssurge.com/) 24 |
25 | 26 | *Special thanks* 27 | 28 |
29 | The author list 30 | 31 | * [DivineEngine](https://github.com/DivineEngine/Profiles/tree/master/Surge) 32 | * [Peng-YM](https://github.com/Peng-YM/Sub-Store/tree/master/config) 33 | * [Lãng Khách](https://github.com/langkhach270389/Surge-LK/tree/main) 34 | * [NobyDa](https://github.com/NobyDa/Script/tree/master) 35 | * [Choler](https://github.com/Choler/Surge) 36 | * [Yichahucha](https://github.com/yichahucha/surge/tree/master) 37 | * [Chavyleung](https://github.com/chavyleung/scripts) 38 |
39 | 40 | ### ***配置*** 41 | 42 | 你可以从该 URL 下载这个 [配置文件](https://blankmagic.github.io/surge/profile.conf) 43 | 44 | ### ***说明*** 45 | 46 | *关于 IPv6* 47 | 48 | 默认并不开启 IPv6,如需要可在「更多设置 >」里打开「IPv6 支持」,或在文本配置中修改 `ipv6 = false` 为 `ipv6 = true`。 49 | 50 | *关于 DNS* 51 | 52 | 如果所使用的网络没有 DNS 劫持问题,则配置为使用系统 DNS 并追加公共 DNS,如果所使用的网络存在 DNS 劫持问题,则配置为仅使用公共 DNS; 53 | > 如部分运营商存在劫持海外正常网站至反诈页面的(据目前反馈它们没有抢答公共 DNS,所以)可以在「DNS 设置」中选择「使用自定义 DNS 服务器」或文本配置中将 `dns-server =` 中的 `system` 移除。 54 | 55 | 不建议使用海外 DNS(包括 119.28.28.28),如 `1.1.1.1` 解析哔哩哔哩返回的是香港的 CDN,这时候再指定个规则直连没什么意义; 56 | 57 | 非必要不建议使用 DoH; 58 | > 必要指的是如中国移动这种抢答公共 DNS 的运营商 59 | 60 | 61 | License 62 | - 63 | Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. 64 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-architect -------------------------------------------------------------------------------- /img/icon/surge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankmagic/surge/2741d51076d1a11e2a8d1bdc3e7a1fdca2504dfc/img/icon/surge.png -------------------------------------------------------------------------------- /img/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankmagic/surge/2741d51076d1a11e2a8d1bdc3e7a1fdca2504dfc/img/sub.png -------------------------------------------------------------------------------- /module/GameMode.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=Game Console SNAT 2 | #!desc=让 Surge 为 PlayStation、Xbox 和 Nintendo Switch 正确处理 SNAT 对话。只有当 Surge Mac 作为这些设备的路由器(Surge Mac 开启「增强模式」,修改游戏机的网络配置:1.IP 地址及子网掩码保持不变。2.网关设置成 Mac 的 IP 地址.3.DNS 设置为「198.18.0.2」)时才会有用(https://nssurge.zendesk.com/hc/zh-cn/articles/900000208886-Surge-Mac-路由模式特殊设备兼容说明) 3 | #!system=mac 4 | 5 | [General] 6 | always-real-ip = %APPEND% *.srv.nintendo.net, *.stun.playstation.net, xbox.*.microsoft.com, *.xboxlive.com -------------------------------------------------------------------------------- /module/GithubPrivate.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=Github Private 2 | #!desc=Access GitHub private repositories 3 | 4 | [Script] 5 | Github Private = type=http-request,pattern=^https?:\/\/(raw|gist)\.githubusercontent.com,script-path=Scripts/github-private.js,requires-body=0 6 | 7 | [MITM] 8 | hostname = %APPEND% raw.githubusercontent.com, gist.githubusercontent.com -------------------------------------------------------------------------------- /module/Hide-VPN-Icon.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=Hide VPN Icon 2 | #!desc=隐藏状态栏中的 VPN 图标 3 | 4 | [General] 5 | hide-vpn-icon=true 6 | -------------------------------------------------------------------------------- /module/MITM All.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=MitM All 2 | #!desc=Perform MitM on all hostnames with port 443, except those to Apple and other common sites which can't be inspected. You still need configure CA certificate and enable the main switch of MitM. 3 | //对所有端口为 433 的主机名执行 MitM,除了 Apple 和其他不能被解密的站点,您仍然需要配置 CA 证书并启用 MitM 开关。 4 | 5 | [MITM] 6 | hostname = -*.apple.com, -*.icloud.com, -*.mzstatic.com, -*.crashlytics.com, -*.facebook.com, -*.instagram.com, * -------------------------------------------------------------------------------- /module/Old-iPA-Downloader.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=Old_IPA Downloader 2 | #!desc=Computers need to trust root Ca Surge (Decode base64 ca-p12 text in your Surge config -> Save .p12) and set proxy rule domain-keyword: -buy.itunes.apple.com(PAC proxy). (iOS. Open AppleStore search app. Share app into shortcut Old_iPA_Downloader, choose version app. PC: Open iTunes search and click Get). Done (Check \Music\iTunes\iTunes Media\Mobile Applications) 3 | 4 | //Link shortcut: https://www.icloud.com/shortcuts/bdbba3de9c8d42fe858bf210d20e5603 5 | 6 | [Script] 7 | Old_IPA = type=http-request,pattern=(https:\/\/(.+\-|)buy\.itunes\.apple\.com\/WebObjects\/MZBuy.woa\/wa\/buyProduct)|(https:\/\/api\.unlimapps\.com\/.+\/apple_apps\/.+\/versions?),script-path=https://raw.githubusercontent.com/langkhach270389/Surge-LK/main/scripts/langkhach/old_ipa.js,requires-body=1,max-size=0,debug=true 8 | 9 | [MITM] 10 | hostname = %APPEND% *-buy.itunes.apple.com, api.unlimapps.com -------------------------------------------------------------------------------- /module/Outbound Mode.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=Auto Outbound Mode 2 | #!desc=Automatically switch outbound mode when the network changes. 3 | 4 | [Script] 5 | # You can change the notification by yourself. 6 | Outbound Mode = type=event,event-name=network-changed,script-path=Scripts/network-changed.js -------------------------------------------------------------------------------- /module/README.md: -------------------------------------------------------------------------------- 1 | # 使用教程(Surge for iOS) 2 | * 开启 HTTP Rewrite, MitM, Scripting 开关 3 | * 配置 MitM 证书 4 | * 点击「MitM」下方的「配置根证书」 5 | * 如果你的机场提供了 Surge 托管服务,那么很大概率你将会看到一个已经生成好的证书,如果你没有看到,请点击按钮「生成新的 CA 证书」 6 | * 点击「安装证书」,遵循 Surge 提示操作(你会下载并安装一个配置文件,随后在 iOS 系统设置的关于界面最下方选择信任刚刚安装的证书) 7 | * 如果你刚刚的配置文件已经附带了生成好的证书,那么在你完成安装后回到 Surge 界面点击左上角的「取消」即可(你的证书已经配置好了),如果你是刚刚自己生成的证书,请点击右上角「完成」保存 8 | * 安装模块 9 | * 点击「模块卡片」下方的「模块」按钮,点击「安装新模块...」按钮,粘贴以你需要的模块「.sgmodule 文件的 GitHub raw 链接」,确认安装后确保刚刚安装的模块左侧有对勾代表模块已经启用,点击右上角「完成」确认即可。 -------------------------------------------------------------------------------- /module/WiFi-Assist.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=Wi-Fi Assist 2 | #!desc=Surge will try to set up a connection with cellular data when the Wi-Fi network is poor. 3 | #!system=ios 4 | 5 | [General] 6 | wifi-assist = true -------------------------------------------------------------------------------- /module/Wikiwand.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=Wikiwand 2 | #!desc=Wikipedia to Wikiwand 3 | 4 | [URL Rewrite] 5 | ^https://zh.(m.)?wikipedia.org/zh(-\w*)?(?=/) https://www.wikiwand.com/zh$2 302 6 | ^https://(\w*).(m.)?wikipedia.org/wiki https://www.wikiwand.com/$1 302 7 | 8 | [MITM] 9 | hostname = %INSERT% *.wikipedia.org,*.wikiwand.com -------------------------------------------------------------------------------- /module/block/AdvertisingPlus.sgmodule: -------------------------------------------------------------------------------- 1 | #!name= Block Advertising Plus 2 | #!desc=Block Advertising with scripts for Surge iOS 3 | #!system=ios 4 | 5 | [Rule] 6 | # 知乎 7 | RULE-SET,https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/zhihu/zhihu_remove_ads.list,REJECT-NO-DROP 8 | # bilibili 9 | DOMAIN-SUFFIX,cm.bilibili.com,REJECT 10 | URL-REGEX,^https?:\/\/api\.bilibili\.com\/x\/v2\/dm\/ad,REJECT 11 | # > 可能的一些推广(beta) 12 | URL-REGEX,^https?:\/\/api\.bilibili\.com\/pgc\/season\/app\/related\/recommend\?,REJECT 13 | # > biliBili漫画去广告 14 | URL-REGEX,^https?:\/\/manga\.bilibili\.com\/twirp\/comic\.v\d\.comic\/flash,REJECT 15 | 16 | [URL Rewrite] 17 | # 屏蔽知乎下发的配置,如皮肤等 18 | ^https?:\/\/api\.zhihu\.com\/ab\/api\/v1\/products\/zhihu\/platforms\/ios\/config - reject 19 | # 屏蔽知乎“我的”页面推荐开通会员的卡片 20 | ^https?:\/\/api\.zhihu\.com\/people\/self\/new_user_card - reject 21 | 22 | # 去除搜索中的大家都在搜 23 | ^https?:\/\/api\.vc\.bilibili\.com\/search_svr\/v\d\/Search\/recommend_words - reject 24 | # 去除动态中的话题 25 | ^https?:\/\/api\.vc\.bilibili\.com\/topic_svr\/v1\/topic_svr - reject 26 | # 去除动态中的最常访问 27 | ^https?:\/\/api\.vc\.bilibili\.com\/dynamic_svr\/v1\/dynamic_svr\/mix_uplist - reject 28 | # 可能的一些推广(beta) 29 | ^https?:\/\/api\.bilibili\.com\/pgc\/season\/app\/related\/recommend\? - reject 30 | # BiliBili漫画去广告 31 | ^https?:\/\/manga\.bilibili\.com\/twirp\/comic\.v\d\.Comic\/Flash - reject 32 | ^https?:\/\/manga\.bilibili\.com\/twirp\/comic\.v\d\.Comic\/ListFlash - reject 33 | 34 | [Map Local] 35 | # 知乎去除Tab页关注人头像 36 | ^https?:\/\/api\.zhihu\.com\/moments\/tab_v2 data="https://blankmagic.github.io/surge/MapLocal/blank-dict.json" 37 | # 知乎去除最常访问 38 | ^https?:\/\/api\.zhihu\.com\/moments\/recent data="https://blankmagic.github.io/surge/MapLocal/blank-dict.json" 39 | # 知乎其他广告拦截 40 | ^https?:\/\/api\.zhihu\.com\/(notifications\/v\d\/count|v\d\/package|me\/guides|drama\/living-info|ad|fringe|commercial|market\/popovers|.*featured-comment-ad) data="https://blankmagic.github.io/surge/MapLocal/blank-dict.json" 41 | # 屏蔽消息页面上拉的用户精选 42 | ^https?:\/\/api\.zhihu\.com/moments/hybrid\? data="https://blankmagic.github.io/surge/MapLocal/blank-dict.json" 43 | 44 | [Script] 45 | # 斗鱼 - rtbapi.douyucdn.cn 46 | DouYu Ads = type=http-response,pattern=^https?:\/\/rtbapi\.douyucdn\.cn,script-path=https://raw.githubusercontent.com/Liquor030/Sub_Ruleset/master/Script/douyu.js,requires-body=1,max-size=0 47 | # ------ 48 | 49 | # 微博 - api.weibo.cn,mapi.weibo.com,*.uve.weibo.com 50 | weibo_splash = type=http-response,pattern=^https?://(sdk|wb)app\.uve\.weibo\.com(/interface/sdk/sdkad.php|/wbapplua/wbpullad.lua),script-path=https://raw.githubusercontent.com/yichahucha/surge/master/wb_launch.js,requires-body=1,max-size=-1 51 | weibo_ads = type=http-response,pattern=^https?://m?api\.weibo\.c(n|om)/2/(statuses/(unread|extend|positives/get|(friends|video)(/|_)(mix)?timeline)|stories/(video_stream|home_list)|(groups|fangle)/timeline|profile/statuses|comments/build_comments|photo/recommend_list|service/picfeed|searchall|cardlist|page|!/(photos/pic_recommend_status|live/media_homelist)|video/tiny_stream_video_list|photo/info|remind/unread_count),script-path=https://raw.githubusercontent.com/yichahucha/surge/master/wb_ad.js,requires-body=1,max-size=-1 52 | # ------ 53 | 54 | # 知乎 55 | 知乎_处理用户信息 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.zhihu\.com\/people\/,script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 56 | 知乎_信息流去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.zhihu\.com\/(moments|topstory)(\/|\?)?(recommend|action=|feed_type=)(?!\/people),script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 57 | 知乎_获取黑名单 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.zhihu\.com\/settings\/blocked_users,script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 58 | 知乎_官方消息去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.zhihu\.com\/notifications\/v3\/(message|timeline\/entry\/system_message),script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 59 | 知乎_预置关键词去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.zhihu\.com\/search\/preset_words\?,script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 60 | 知乎_回答列表去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.zhihu\.com\/v4\/questions,script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 61 | 知乎_回答内容优化 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/www\.zhihu\.com\/appview\/v2\/answer\/.*(entry=(?!(preload-topstory|preload-search|preload-subscription)))?,script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 62 | 知乎_优化软件配置 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/appcloud2\.zhihu\.com\/v\d+\/config,script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 63 | 知乎_热搜去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.zhihu\.com\/search\/top_search\/tabs\/hot\/items,script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 64 | 知乎_热榜去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.zhihu\.com\/topstory\/hot-lists?(\?|\/),script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 65 | 知乎_评论去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.zhihu\.com\/(comment_v5\/)?(answers|comments?|articles|pins)\/\d+\/(root_|child_)?comments?,script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 66 | 知乎_解锁关键词屏蔽 = type=http-request,requires-body=1,max-size=0,pattern=^https?:\/\/api\.zhihu\.com\/feed-root\/block,script-path=https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js 67 | # ------ 68 | 69 | # Meituan - wmapi.meituan.com 70 | Meituan_splash = type=http-response,pattern=^https?:\/\/wmapi\.meituan\.com\/api\/v\d+\/loadInfo?,script-path=https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/startup/startup.js,requires-body=1 71 | # ------ 72 | 73 | # jd - api.m.jd.com 74 | jd_splash = type=http-response,pattern=^https?:\/\/api\.m\.jd\.com\/client\.action\?functionId=start,script-path=https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/startup/startup.js,requires-body=1 75 | # ------ 76 | 77 | # bilibili - app.bilibili.com 78 | BiliBili_推荐去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/app\.bilibili\.com\/x\/v2\/feed\/index,script-path=https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/bilibili/bilibili_plus.js 79 | BiliBili_追番去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.bilibili\.com\/pgc\/page\/bangumi,script-path=https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/bilibili/bilibili_plus.js 80 | BiliBili_直播去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.live\.bilibili\.com\/xlive\/app-room\/v1\/index\/getInfoByRoom,script-path=https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/bilibili/bilibili_plus.js 81 | BiliBili_动态去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/api\.vc\.bilibili\.com\/dynamic_svr\/v1\/dynamic_svr\/dynamic_(history|new)\?,script-path=https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/bilibili/bilibili_plus.js 82 | BiliBili_开屏去广告 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/app\.bilibili\.com\/x\/v2\/splash\/list,script-path=https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/bilibili/bilibili_plus.js 83 | BiliBili_标签页处理 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/app\.bilibili\.com\/x\/resource\/show\/tab,script-path=https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/bilibili/bilibili_plus.js 84 | BiliBili_我的页面处理 = type=http-response,requires-body=1,max-size=0,pattern=^https?:\/\/app\.bilibili\.com\/x\/v2\/account\/mine,script-path=https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/bilibili/bilibili_plus.js 85 | # ------ 86 | 87 | [MITM] 88 | hostname = %APPEND% rtbapi.douyucdn.cn,api.weibo.cn,mapi.weibo.com,*.uve.weibo.com,www.zhihu.com,api.zhihu.com,zhuanlan.zhihu.com,appcloud2.zhihu.com,wmapi.meituan.com,api.m.jd.com,app.bilibili.com,api.bilibili.com,api.live.bilibili.com,api.vc.bilibili.com 89 | -------------------------------------------------------------------------------- /module/block/TikTok.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=TikTok 2 | #!desc= 抖音日本 Unlock 3 | #!system=ios 4 | 5 | [URL Rewrite] 6 | (?<=_region=)CN(?=&) JP 307 7 | (?<=&mcc_mnc=)4 2 307 8 | ^(https?:\/\/(tnc|dm)[\w-]+\.\w+\.com\/.+)(\?)(.+) $1$4 302 9 | (?<=\d\/\?\w{7}_\w{4}=)1[6-9]..(?=.?.?&) 18.4 307 10 | 11 | [MITM] 12 | hostname = %APPEND% *.byteoversea.com,*.tiktokv.com,*.tik-tokapi.com -------------------------------------------------------------------------------- /module/block/Youtube.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=Block YouTube Advertising 2 | #!desc= For video advertising only 3 | #!system=ios 4 | 5 | [Rule] 6 | AND,((PROTOCOL,UDP),(DEST-PORT,443)),REJECT-NO-DROP 7 | 8 | [URL Rewrite] 9 | (^https?:\/\/[\w-]+\.googlevideo\.com\/(?!dclk_video_ads).+?)&ctier=L(&.+?),ctier,(.+) $1$2$3 header 10 | ^https?:\/\/[\w-]+\.googlevideo\.com\/(?!(dclk_video_ads|videoplayback\?)).+&oad - reject 11 | 12 | ^https?:\/\/youtubei\.googleapis\.com\/youtubei\/v\d\/player\/ad_break - reject 13 | ^https?:\/\/(www|s)\.youtube\.com\/api\/stats\/ads - reject 14 | ^https?:\/\/(www|s)\.youtube\.com\/(pagead|ptracking) - reject 15 | ^https?:\/\/s\.youtube\.com\/api\/stats\/qoe\?adcontext - reject 16 | 17 | [MITM] 18 | hostname = %APPEND% -redirector*.googlevideo.com,*.googlevideo.com,www.youtube.com,s.youtube.com,youtubei.googleapis.com 19 | -------------------------------------------------------------------------------- /module/compatibility-mode.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=TUN Only 2 | #!desc=启用 TUN Only 模式,强制 80 端口的域名请求使用 HTTP 引擎处理并打开解密 TCP 流量 3 | #!system=ios 4 | 5 | [General] 6 | compatibility-mode = 3 7 | force-http-engine-hosts = %APPEND% -, * 8 | 9 | [MITM] 10 | tcp-connection = true 11 | -------------------------------------------------------------------------------- /module/dns.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=DNS 2 | #!desc=Override system DNS settings and add local DNS mapping records. 3 | 4 | [Host] 5 | # Redirect Current Network 6 | router.com = router 7 | 8 | *.taobao.com = server:223.5.5.5 9 | *.jd.com = server:223.5.5.5 10 | *.aliyun.com = server:223.5.5.5 11 | *.alicdn.com = server:223.5.5.5 12 | *.qq.com = server:119.29.29.29 13 | *.weixin.com = server:119.29.29.29 14 | owner-api.vn.tesla.services = server:223.5.5.5 15 | in.appcenter.ms = script:Dnspod 16 | 17 | # Firebase Cloud Messaging 18 | mtalk.google.com = 108.177.125.188 19 | # Google Dl 20 | dl.google.com = server:119.29.29.29 21 | dl.l.google.com = server:119.29.29.29 -------------------------------------------------------------------------------- /module/historical price.sgmodule: -------------------------------------------------------------------------------- 1 | #!name=Historical Price 2 | #!desc=Display commodity historical price 3 | #!system=ios 4 | 5 | [Script] 6 | # Display jd historical price 7 | jd_price = type=http-response,pattern=^https?://api\.m\.jd\.com/client\.action\?functionId=(wareBusiness|serverConfig|basicConfig),script-path=https://raw.githubusercontent.com/yichahucha/surge/master/jd_price.js,requires-body=1 8 | 9 | # Display taobao historical price 10 | tb_price = type=http-request,pattern=^http://.+/amdc/mobileDispatch,script-path=https://raw.githubusercontent.com/yichahucha/surge/master/tb_price.js,requires-body=1,script-update-interval=0 11 | tb_price = type=http-response,pattern=^https?://trade-acs\.m\.taobao\.com/gw/mtop\.taobao\.detail\.getdetail,script-path=https://raw.githubusercontent.com/yichahucha/surge/master/tb_price.js,,requires-body=1,script-update-interval=0 12 | 13 | [MITM] 14 | hostname = %INSERT% trade-acs.m.taobao.com,api.m.jd.com -------------------------------------------------------------------------------- /profile.conf: -------------------------------------------------------------------------------- 1 | # 你可以从该 URL 下载这个配置文件: https://blankmagic.github.io/surge/profile.conf 2 | # 导入配置后替换策略组 [Proxy Group] 中订阅地址 3 | 4 | # 官方手册 - https://manual.nssurge.com/ 5 | # 理解原理 - https://manual.nssurge.com/book/understanding-surge/cn/ 6 | # 帮助中心 - https://nssurge.zendesk.com/ 7 | # 技术社区 - https://community.nssurge.com 8 | # 以"#" 和 "//" 开头的行为注释行 9 | 10 | [General] 11 | # --- GENERAL --- 12 | # Enhanced Wi-Fi Assist 13 | wifi-assist = true 14 | # Hybrid Network 15 | all-hybrid = false 16 | # Gaming Optimization 17 | //开启后将在系统负载非常高,数据包处理出现延迟时,优先处理 UDP 数据包。 18 | udp-priority = true 19 | 20 | # Latency Benchmark 21 | internet-test-url = http://bing.com 22 | proxy-test-url = http://cp.cloudflare.com/generate_204 23 | test-timeout = 5 24 | 25 | # GeoIP Database 26 | geoip-maxmind-url = https://raw.githubusercontent.com/Loyalsoldier/geoip/release/Country.mmdb 27 | 28 | # IPv6 Support 29 | //开启 IPv6 会让 Surge 同时请求域名的 A 与 AAAA 记录,这可能略微的增加延迟。若 DNS 服务器无法正确响应 AAAA 查询,则可能导致严重的卡顿,仅在需要时开启。 30 | ipv6 = false 31 | 32 | # --- Wi-Fi ACCESS --- 33 | //Surge 可以作为一个标准的 HTTP/SOCKS5 代理服务器向 wi-Fi 网络下的其他设备提供服务器 34 | allow-wifi-access = false 35 | # Surge iOS - 默认 HTTP 端口号:6152,SOCKS5 端口号:6153 36 | wifi-access-http-port = 6152 37 | wifi-access-socks5-port = 6153 38 | 39 | # Surge Mac - 默认 HTTP 端口号:6152,SOCKS5 端口号:6153 40 | http-listen = 0.0.0.0:6152 41 | socks5-listen = 0.0.0.0:6153 42 | 43 | # 允许热点共享 44 | allow-hotspot-access = true 45 | 46 | # --- REMOTE CONTROLLER --- 47 | # 允许 Surge 请求查看器或 Surge CLI 进行管理控制 48 | //默认仅允许外部控制器通过 USB 进行控制。如果想要允许由 Wi-Fi 控制可以将 127.0.0.1 改为 0.0.0.0 49 | external-controller-access = key@127.0.0.1:6160 50 | 51 | # HTTP API & Web Dashboard 52 | //This option allows using HTTP APIs to control 53 | http-api = key@127.0.0.1:6166 54 | //使用 HTTPS 替代 HTTP 协议,需要先配置 MitM 的 CA 证书,同时需要在客户端设备上手动安装并信任 CA 证书 55 | http-api-tls = false 56 | //开启该选项后可以通过浏览器控制 Surge,本机浏览器输入127.0.0.1:6166 57 | http-api-web-dashboard = true 58 | 59 | # --- COMPATIBILITY --- 60 | //该选项将使得发往这些域名或者 IP 段的请求由 Surge VIF 进行处理(而不是 Surge Proxy),该选项用于修正和某些应用的兼容性问题 61 | # 兼容模式 62 | # 0:禁用 63 | # 1:Proxy with Loopback Address 64 | # 2:Proxy Only 65 | # 3:VIF Only 66 | # 4:VIF Proxy:不使用 127.0.0.1 的回环地址作为代理,使用 VIF 的虚拟代理地址,将产生额外的性能开销 67 | # 5:不作为默认路由:不声明为默认路由,但声明若干个小路由以覆盖所有地址(与 Surge Mac 增强模式行为相同) 68 | # 这种配置下由于 VIF 不是主网络设备无法配置系统代理。部分应用在该模式下会认为 VPN 未开启以解决特殊兼容性问题,如 HomeKit Security Camera 69 | # ⚠️ 请仅在指引下使用,开启后部分功能可能无法使用 70 | compatibility-mode = 0 71 | # 跳过代理 72 | skip-proxy = 192.168.0.0/24, 10.0.0.0/8, 172.16.0.0/12, 127.0.0.1, localhost, *.local 73 | # 排除简单主机名 74 | exclude-simple-hostnames = true 75 | 76 | # --- DNS --- 77 | # The IP addresses of upstream DNS servers 78 | dns-server = 223.5.5.5, 114.114.114.114 79 | # 从 /etc/hosts 读取 DNS 记录 80 | read-etc-hosts = true 81 | # ENCRYPTED DNS 82 | //如果配置了加密 DNS,传统 DNS 将仅用作解析 DOH 域名和测试网络连通性 83 | # 支持的协议: 84 | # DNS over HTTPS: https://doh.pub/dns-query 85 | # DNS over HTTP/3: h3://example.com 86 | # DNS over QUIC: quic://example.com 87 | //encrypted-dns-server = https://223.5.5.5/ // 除非当地 ISP 有严重的 DNS 污染问题,否则没必要开启 DoH,传统 DNS 的性能最优,网络异常后恢复速度最快 88 | doh-skip-cert-verification=true // 临时关闭 DOH 的服务端证书验证(解决 Surge 无法与 nextdns.io 完成 TLS 握手问题) 89 | # 代理请求本地 DNS 映射 90 | //开启该选项后,如果访问的域名配置有本地 DNS 映射,surge 将使用本地 IP 地址进行请求,不在远端进行解析。仅对配置了 IP 地址的本地 DNS 映射生效 91 | use-local-host-item-for-proxy = true 92 | # 使加密 DNS 请求通过代理策略执行 93 | encrypted-dns-follow-outbound-mode = false 94 | 95 | # --- ROUTING --- 96 | # 包含所有网络请求 97 | include-all-networks = false 98 | # 包含本地网络请求 99 | include-local-networks = false 100 | 101 | # --- ADVANCED --- 102 | # Log Level 103 | loglevel = notify 104 | # 当遇到 REJECT 策略时返回错误页 105 | show-error-page-for-reject = true 106 | # Always Real IP Hosts 107 | # 当 Surge VIF 处理 DNS 问题时,此选项要求 Surge 返回一个真正的 IP 地址,而不是一个 Fake IP 108 | # DNS 数据包将被转发到上游 DNS 服务器 109 | # 例如由于游戏主机会使用 STUN 技术进行 NAT 穿透,需要进行一些额外的配置才能正常工作 110 | always-real-ip = link-ip.nextdns.io, *.msftconnecttest.com, *.msftncsi.com, *.srv.nintendo.net, *.stun.playstation.net, xbox.*.microsoft.com, *.xboxlive.com, *.logon.battlenet.com.cn, *.logon.battle.net, stun.l.google.com 111 | # Hijack DNS 112 | # 默认情况下,Surge 只对发送到 Surge DNS 地址(198.18.0.2)的 DNS 查询返回 Fack IP 地址。发送到标准 DNS 的查询将被转发 113 | # 如 Google 系智能硬件产品会无视 DHCP 配置强行使用 8.8.8.8 和 8.8.4.4,需要配置 Surge 强行劫持才可以正常工作 114 | hijack-dns = 8.8.8.8:53, 8.8.4.4:53 115 | # TCP Force HTTP Hosts 116 | # 使 Surge 将 TCP 连接视为 HTTP 请求。Surge HTTP 引擎将处理请求,并且所有高级功能都将可用,如截取、重写和脚本 117 | # 支持通配符 * 及 ?; 118 | # 使用前缀 - 排除主机名; 119 | # 默认情况下,只对 80 端口的请求进行处理(使用 example.com:443 指定端口或 example.com:0 表示所有端口); 120 | # 表示匹配所有主机名为 IP 地址的连接; 121 | # 表示匹配所有主机名为 IPv4 地址的连接; 122 | # 表示匹配所有主机名为 IPv6 地址的连接。 123 | force-http-engine-hosts = *.ott.cibntv.net, 123.59.31.1,119.18.193.135, 122.14.246.33, 175.102.178.52, 116.253.24.*, 175.6.26.*, 220.169.153.* 124 | # VIF Excluded Routes 125 | //tun-excluded-routes = 239.255.255.250/32 126 | # VIF Included Routes 127 | //tun-included-routes = 192.168.1.12/32 128 | # 当 Wi-Fi 不是首选网络时 SSID 组策略使用默认策略 129 | use-default-policy-if-wifi-not-primary = false 130 | 131 | # 控制当 UDP 流量被匹配到一个不支持 UDP 转发的策略时的行为 132 | # - DIRECT:回退到 DIRECT 策略(默认) 133 | # - REJECT:回退到 REJECT 策略 134 | udp-policy-not-supported-behaviour = REJECT 135 | 136 | [Proxy] 137 | # 直接连接 138 | DIRECT = direct 139 | 140 | # 该段定义可用的策略组 141 | # 一个策略组可以包括多个子策略 142 | # 子策略可以是一个代理策略,或者另一个策略组,或者是一个内置策略 (DIRECT 或 REJECT). 143 | # DIRECT 表示将该请求直接发往目标服务器 144 | # REJECT 表示拒绝该请求,当连接类型为 HTTP 时,会返回一个错误页面。(该行为可被 show-error-page-for-reject 参数控制) 145 | # REJECT-TINYGIF 表示拒绝该请求,当连接类型为 HTTP 时,返回一个 1px 的 GIF 图片响应。若为其他类型连接则直接断开。该策略主要用于 Web 广告屏蔽。 146 | # REJECT-DROP 表示拒绝该请求,与 REJECT 不同的是,该策略将静默抛弃请求。因为部分程序有着十分暴力的重试逻辑,连接失败后会立刻进行重试,导致请求风暴。如果发往某主机名的请求短时间内大量触发 REJECT/REJECT-TINYGIF 策略(当前版本的阈值为 30 秒内 10 次),为了避免产生大量资源浪费,Surge 将自动升级策略为 REJECT-DROP 策略。 147 | # REJECT-NO-DROP 表示不使用默认的自动丢包逻辑,这样 Surge 每次都会返回 ICMP Port Unreachable,应用会立刻回退而不是等超时。 148 | # CELLULAR 表示优先使用数据网络; 149 | # CELLULAR-ONLY 表示仅使用数据网络; 150 | # HYBRID 表示尝试并发使用 Wi-Fi 和数据网络建立连接,仅当混合网络开关未开启时有意义。 151 | # NO-HYBRID 表示当 Wi-Fi可用时永不尝试数据网络,仅当混合网络或 i-Fi 助力选项开启时有意义。 152 | # - 新增 IPv4 & IPv6 偏好参数,对于所有策略,可附带参数 ip-version=,可选参数有: 153 | # * dual:默认行为,在双栈网络上将并发使用 v4 和 v6 地址并选取最快速的结果。 154 | # * prefer-v4:若DNS解析获得了 A 与 AAAA 记录,优先使用 A 记录,否则使用 AAAA 记录。 155 | # * prefer-v6:若DNS解析获得了 A 与 AAAA 记录,优先使用 AAAA 记录,否则使用 A 记录。 156 | # * v4-only:仅使用 A 记录,若未获得A记录则失败。 157 | # * v6-only:仅使用 AAAA 记录,若未获得 AAAA 记录则失败。 158 | # 可配合 direct 类型策略使用,如:IPV6-ONLY = direct, ip-version=v6-only 159 | # DIRECT = direct, ip-version=prefer-v4 160 | # HYBRID = direct, hybrid=true, ip-version=dual 161 | 162 | # 有 5 种策略组类型: "select", "url-test", "fallback", "ssid" 和 "load-balance" 163 | # select: 具体哪个子策略将被使用,由用户界面上进行选择。 164 | # url-test: 具体哪个子策略将被使用,通过测试到具体 URL 的访问速度选择延迟最低的策略 165 | # 参数: 166 | # url: 测试时用到的目标 URL. 167 | # interval: 可选, 秒 (默认值: 600s) 168 | # 指定在多长时间后,上次的测试结果将被抛弃。 169 | # tolerance: 可选, 毫秒 (默认值: 100ms) 170 | # 只有当新的优选线路,比原优选线路的响应时间,大于该值的时候,才会触发线路变更。 171 | # timeout: 可选, 秒 (默认值: 5s) 172 | # 如果某策略在该时间后依然没有完成,放弃该策略。 173 | # fallback: 与 url-test 组基本一致,区别是只关心子策略是否可用而不关心具体延迟,然后 174 | # 从可用策略中选择靠前的策略。可以通过调小 timeout 参数将缓慢线路也标记为不可用。 175 | # 该类型没有 tolerance 参数。 176 | # ssid: 具体哪个子策略将被使用,根据 Wi-FI 的 SSID、BSSID、路由 IP 地址决定 177 | # 参数: 178 | # default: 必填 179 | # 默认策略。 180 | # cellular: 可选 181 | # 在数据网络下的策略。 若不填,那么默认策略将被使用。 182 | # load-balance: 随机从子策略中选取一个策略使用。当配置了 url 参数时,会 183 | # 按照 fallback 组的行为进行可用性检查,然后仅从可用的子策略中随机选取。 184 | # 参数: 185 | # 除 url、timeout、interval外,还有一个参数: 186 | # persistent:当 persistent=true 时,对于同一目标主机名,将尽量使用同一个策略。 187 | # 避免因出口 IP 不同而触发目标网站的风险控制。但当可用性改变时可能导致策略变化。 188 | [Proxy Group] 189 | Final = select, Proxy🪁, DIRECT 190 | Proxy🪁 = select, 🇺🇸 America, 🇭🇰 Load balance, 🇸🇬 Singapore, 🇨🇳 Fallback, policy-path=URL //policy-path=你的订阅地址 191 | CN = select, DIRECT 192 | # Home⛺️ = subnet, default = Proxy🪁, "SSID:value" = DIRECT, "TYPE:CELLULAR" = Proxy🪁 193 | Netflix = select, 🇺🇸 America, 🇭🇰 Load balance, 🇸🇬 Singapore, 🇨🇳 Fallback 194 | Twitter = select, 🇺🇸 America, Proxy🪁 195 | Telegram = select, 🇭🇰 Load balance, 🇸🇬 Singapore, hybrid=off // hybrid=off 即使在 All Hybrid 或 WiFi Assist 开启时,有 WiFi 就不使用数据网络 196 | Apple = select, DIRECT, Proxy🪁 197 | AdBlock = select, REJECT, DIRECT 198 | 🇺🇸 America = url-test, include-other-group="Proxy🪁", policy-regex-filter=美国, interval=600, tolerance=100, evaluate-before-use=true, hidden=true 199 | 🇭🇰 Load balance = load-balance, include-other-group="Proxy🪁", policy-regex-filter=(香港|HK), interval=-1, tolerance=100, persistent=true, hidden=true 200 | 🇸🇬 Singapore = load-balance, include-other-group="Proxy🪁", policy-regex-filter=(新加坡|狮城), interval=-1, tolerance=100, persistent=true, hidden=true 201 | 🇨🇳 Fallback = fallback, include-other-group="Proxy🪁", policy-regex-filter=台湾, timeout=3, interval=600, evaluate-before-use=true, hidden=true 202 | 203 | # 该段定义请求处理规则 204 | # 一个规则有三个基础部分: 205 | # 类型, 值, 策略 206 | # 比如: DOMAIN-SUFFIX,apple.com, DIRECT 207 | # IP-CIDR, 192.168.0.0/16,ProxyA 208 | # 有 3 种基于域名的规则: "DOMAIN", "DOMAIN-SUFFIX" 和 "DOMAIN-KEYWORD" 209 | # 参数: 210 | # force-remote-dns: 可选 (默认值: false) 211 | # 如果某请求被该规则匹配, 且策略不是DIRECT. 那么 DNS 查询将永远在远端代理服务 212 | # 器执行, 即使该请求由 Surge TUN 处理. 213 | # 更多信息请参见手册. 214 | # 有 2 种基于 IP 的规则: "IP-CIDR" and "GEOIP". 215 | # 如果是一个使用域名进行访问的请求,那么 Surge 将进行 DNS 查询以确认是否应该被 216 | # 该规则匹配. 若 DNS 查询失败,将放弃规则匹配过程并直接给出错误。 217 | # OPTIONS: 218 | # no-resolve: 可选 (默认值: false) 219 | # 如果是一个使用域名进行访问的请求,跳过该条规则,不触发 DNS 查询。 220 | [Rule] 221 | # --- CUSTOM RULES --- 222 | DOMAIN-SUFFIX,vercel.app,Proxy🪁 // Sub-Store 的 Web 页面 223 | IP-ASN,4134,DIRECT,no-resolve // China Telecom 224 | 225 | # 新增内置策略 NO-HYBRID,等价为 NO-HYBRID = direct, hybrid=off 226 | DOMAIN-SUFFIX,cmbchina.com,NO-HYBRID // 部分服务会校验请求的来源 IP,在开启 hybrid 时有可能因为请求IP变化导致无法正常登录和使用(如招商银行),可使用 NO-HYBRID 对特定请求单独关闭 All Hybrid 227 | # HTTP3/QUIC 协议基于 UDP,部分地区 ISP 或线路 UDP 容易受到干扰或限速,屏蔽掉以阻止 HTTP 3 流量的 UDP 流量,强制回退到 TCP。 228 | # REJECT-NO-DROP 表示不使用默认的自动丢包逻辑,这样 Surge 每次都会返回 ICMP Port Unreachable,应用会立刻回退而不是等超时。 229 | AND,((PROTOCOL,UDP),(DEST-PORT,443)),REJECT-NO-DROP 230 | 231 | # Download (For MacOS) 232 | PROCESS-NAME,aria2c,DIRECT 233 | PROCESS-NAME,fdm,DIRECT 234 | PROCESS-NAME,Folx,DIRECT 235 | PROCESS-NAME,NetTransport,DIRECT 236 | PROCESS-NAME,Thunder,DIRECT 237 | PROCESS-NAME,Transmission,DIRECT 238 | PROCESS-NAME,uTorrent,DIRECT 239 | PROCESS-NAME,WebTorrent,DIRECT 240 | PROCESS-NAME,WebTorrent Helper,DIRECT 241 | 242 | # External Resources Update 243 | AND,((DOMAIN,raw.githubusercontent.com), (DOMAIN-SUFFIX,github.io), (USER-AGENT,Surge/*)),Final,notification-text="♻️External Resources Update",notification-interval=3600 244 | # Blocking UDP Packets by Youtube and ins 245 | AND,((DOMAIN-SUFFIX,googlevideo.com), (DOMAIN-SUFFIX,gvt1.com), (DOMAIN-SUFFIX,cdninstagram.com), (PROTOCOL,UDP)),REJECT 246 | 247 | # --- RULE-SET --- 248 | # AdBlock 249 | RULE-SET,https://raw.githubusercontent.com/DivineEngine/Profiles/master/Surge/Ruleset/Guard/Advertising.list,AdBlock 250 | # Netflix 251 | RULE-SET,https://blankmagic.github.io/surge/rule/netflix.list,Netflix 252 | # Twitter 253 | RULE-SET,https://blankmagic.github.io/surge/rule/twitter.list,Twitter 254 | # Telegram 255 | RULE-SET,https://blankmagic.github.io/surge/rule/telegram.list,Telegram 256 | # Proxy 257 | RULE-SET,https://blankmagic.github.io/surge/rule/blocked.list,Proxy🪁 258 | # China 259 | RULE-SET,https://blankmagic.github.io/surge/rule/cn.list,DIRECT 260 | # Apple 261 | DOMAIN,apps.apple.com,Proxy🪁 262 | DOMAIN-SUFFIX,ls.apple.com,DIRECT // Apple Maps 263 | DOMAIN-SUFFIX,store.apple.com,DIRECT // Apple Store Online 264 | RULE-SET,https://blankmagic.github.io/surge/rule/apple.list,Apple 265 | 266 | IP-CIDR,0.0.0.0/32,REJECT,no-resolve 267 | 268 | # Local Area Network & GeoIP China 269 | # 以下规则将触发本地 DNS 解析 270 | OR,((RULE-SET,SYSTEM), (RULE-SET,LAN), (GEOIP,CN)),DIRECT 271 | 272 | FINAL,Final,dns-failed 273 | 274 | # 该段定义本地 DNS 记录 275 | # 该功能等同于 /etc/hosts,加上了泛解析和别名支持。 276 | [Host] 277 | # Firebase Cloud Messaging 278 | mtalk.google.com = 108.177.125.188 279 | 280 | # Google Dl 281 | dl.google.com = server:119.29.29.29 282 | dl.l.google.com = server:119.29.29.29 283 | update.googleapis.com = server:119.29.29.29 284 | 285 | # Router Admin Panel 286 | amplifi.lan = server:syslib // Ubiquiti Amplifi Router 287 | router.synology.com = server:syslib // Synology Router 288 | sila.razer.com = server:syslib // Razer Sila Router 289 | router.asus.com = server:syslib // Asus Router 290 | routerlogin.net = server:syslib // Netgear Router 291 | orbilogin.com = server:syslib // Netgear Obri Router 292 | www.LinksysSmartWiFi.com = server:syslib // Linksys Router 293 | LinksysSmartWiFi.com = server:syslib // Linksys Router 294 | myrouter.local = server:syslib // Linksys Router 295 | www.miwifi.com = server:syslib // Xiaomi Mi WiFi Router 296 | miwifi.com = server:syslib // Xiaomi Mi WiFi Router 297 | mediarouter.home = server:syslib // Huawei Router 298 | tplogin.cn = server:syslib // TP-Link Router 299 | tplinklogin.net = server:syslib // TP-Link Router 300 | melogin.cn = server:syslib // MERCURY Router 301 | falogin.cn = server:syslib // FAST Router 302 | # CUSTOM HOST 303 | 304 | # 该段定义针对 HTTP 请求的 URL 重定向规则 305 | # 有两种重定向方式: "header" 和 "302" 306 | # 307 | # Header 模式 308 | # Surge 会修改发出的 http header,必要时还会修改 Host 字段。客户端将 309 | # 感知不到这个重定向过程. 不支持重定向到一个 HTTPS 的地址。 310 | # 311 | # 302 模式 312 | # Surge 直接简单的返回一个 302 重定向回应。 313 | [URL Rewrite] 314 | # Redirect Google Search Service 315 | ^https?:\/\/(www.)?(g|google)\.cn https://www.google.com 302 316 | 317 | # Redirect Google Maps Service 318 | ^https?:\/\/(ditu|maps).google\.cn https://maps.google.com 302 319 | 320 | # Redirect HTTP to HTTPS 321 | ^https?:\/\/(www.)?taobao\.com\/ https://taobao.com/ 302 322 | ^https?:\/\/(www.)?jd\.com\/ https://www.jd.com/ 302 323 | ^https?:\/\/(www.)?mi\.com\/ https://www.mi.com/ 302 324 | ^https?:\/\/you\.163\.com\/ https://you.163.com/ 302 325 | ^https?:\/\/(www.)?suning\.com\/ https://suning.com/ 302 326 | ^https?:\/\/(www.)?yhd\.com\/ https://yhd.com/ 302 327 | 328 | # AbeamTV 329 | ^https?:\/\/api\.abema\.io\/v\d\/ip\/check - reject 330 | # CUSTOM URL 331 | 332 | [Header Rewrite] 333 | ^https?:\/\/.*\.zhihu\.com\/(question|topic) header-replace User-Agent "osee2unifiedRelease/4432 osee2unifiedReleaseVersion/7.8.0 Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mo bile/15E148" 334 | 335 | # 该段仅在 iOS 版本下生效。 336 | # 你可以为某些特定的 WiFi 网络设置设置参数 337 | # 参数: 338 | # suspend: "true" 或 "false" 339 | # 在该网络下 Surge 将暂停工作。 请注意,如果你在该网络下直接启动 Surge,那么 340 | # Surge 依然会工作。只有当从其他网络切换到该网络时,Surge 才会暂停。 341 | # 342 | # SSID Setting 段表达式(适用 SUBNET 规则) 343 | # 可使用 MCCMNC:100-200 匹配特定数据网络 344 | # 可使用 SSID:value 特定匹配 SSID,支持通配符 345 | # 可使用 BSSID:value 特定匹配 BSSID,支持通配符 346 | # 可使用 ROUTER:value 特定匹配路由地址 347 | # 可使用 TYPE:WIFI 匹配所有 WiFi 网络 348 | # 可使用 TYPE:CELLULAR 匹配所有数据网络 349 | # 可使用 TYPE:WIRED 匹配所有有线网络(iOS 上支持 USB 网络适配 350 | # 参数 cellular-fallback 可单独控制一些 Wi-Fi 下的 all-hybrid 和 wifi-assist 行为 351 | # cellular-fallback=default 使用 [General] 中的 all-hybrid 和 wifi-assist 配置 352 | # cellular-fallback=off 关闭 all-hybrid 和 wifi-assist 353 | # cellular-fallback=hybrid 开启 all-hybrid 354 | # cellular-fallback=wifi-assist 开启 wifi-assist 355 | # 如无前缀则按照旧版规则匹配 SSID、BSSID、路由地址 356 | # SSID Setting 段内容从上至下依次匹配,匹配到第一个结果后立刻终止 357 | # 358 | # 中国用户若使用 TFO 建议强制关闭数据网络上的 TFO,避免产生问题,然后在已测试过的网络上强制开启。只有这样配置后方可充分享受 TFO 的优势。 359 | [SSID Setting] 360 | # Temporarily Suspend 361 | "SSID Here" suspend=true 362 | # TCP Fast Open 363 | "My Home" tfo-behaviour=force-enabled 364 | TYPE:CELLULAR tfo-behaviour=force-disabled 365 | 366 | [MITM] 367 | # 跳过服务端证书验证 368 | skip-server-cert-verify = true 369 | # MITM over HTTP/2 370 | //MITM over HTTP/2:使用 HTTP/2 协议进行 MITM 解密,可在高并发下优化性能 371 | h2 = true 372 | # 主机名 373 | //Surge 仅会解密这里指定的主机名的请求,ios 系统和某些应用有严格的安全策略,仅信任某些特定的证书,对这些域名启动解密可能导致问题,如 *apple.com, *icloud.com. 374 | # 可使用通配符* 和? 375 | # 可使用前缀-将特定主机名排除 376 | # 默认仅解密发往 443 端口的请求 377 | # 可使用后缀:port 解密特定端口 378 | # 可使用后缀:0解密所有端口 379 | hostname = www.google.cn, api.abema.io, *.zhihu.com, -CUSTOMMitM 380 | 381 | [Panel] 382 | flushDNS = script-name=flushDNS,update-interval=-1 383 | 384 | [Script] 385 | # Flush DNS, show the DNS delay and server. 386 | flushDNS = type=generic,timeout=10,script-path=https://raw.githubusercontent.com/zZPiglet/Task/master/asset/flushDNS.js,argument=icon=wand.and.stars.inverse&color=#3d3d5b 387 | -------------------------------------------------------------------------------- /rule/AI.list: -------------------------------------------------------------------------------- 1 | # OpenAI 2 | # > ChatGPT 3 | DOMAIN-SUFFIX,chatgpt.com 4 | DOMAIN-SUFFIX,oaistatic.com 5 | DOMAIN-SUFFIX,oaiusercontent.com 6 | DOMAIN-SUFFIX,openai.com 7 | DOMAIN,api.statsig.com 8 | DOMAIN,api-iam.intercom.io 9 | DOMAIN,chatgpt.livekit.cloud 10 | DOMAIN,o33249.ingest.sentry.io 11 | DOMAIN,openaiapi-site.azureedge.net 12 | DOMAIN,sfo3.turn.livekit.cloud 13 | DOMAIN-KEYWORD,openaicom 14 | 15 | # Apple Intelligence 16 | DOMAIN-SUFFIX,smoot.apple.com 17 | DOMAIN,apple-relay.apple.com 18 | DOMAIN,apple-relay.cloudflare.com 19 | DOMAIN,apple-relay.fastly-edge.com 20 | DOMAIN,cp4.cloudflare.com 21 | DOMAIN,guzzoni.apple.com 22 | 23 | # Anthropic 24 | # > Claude 25 | DOMAIN-SUFFIX,claude.ai 26 | DOMAIN-SUFFIX,anthropic.com 27 | 28 | # Google 29 | # > Gemini 30 | DOMAIN,ai.google.dev 31 | DOMAIN,bard.google.com 32 | DOMAIN,gemini.google.com 33 | DOMAIN,generativelanguage.googleapis.com 34 | DOMAIN,proactivebackend-pa.googleapis.com 35 | # > AI Studio 36 | DOMAIN,aistudio.google.com 37 | DOMAIN,alkalimakersuite-pa.clients6.google.com 38 | 39 | # JetBrains AI 40 | DOMAIN-SUFFIX,grazie.ai 41 | 42 | # Microsoft 43 | # > Copilot 44 | DOMAIN,copilot.microsoft.com 45 | DOMAIN,sydney.bing.com 46 | DOMAIN,www.bing.com 47 | 48 | # Meta 49 | DOMAIN,imagine.meta.com 50 | 51 | # GitHub Copilot 52 | DOMAIN-SUFFIX,githubcopilot.com 53 | 54 | # Perplexity 55 | DOMAIN-SUFFIX,perplexity.ai 56 | DOMAIN-SUFFIX,pplx.ai 57 | 58 | # Cloudflare 59 | # > AI Gateway 60 | DOMAIN,gateway.ai.cloudflare.com 61 | -------------------------------------------------------------------------------- /rule/apple.list: -------------------------------------------------------------------------------- 1 | DOMAIN-SUFFIX,cdn-apple.com 2 | DOMAIN-SUFFIX,mzstatic.com // App Store & iTunes Images 3 | DOMAIN-SUFFIX,aaplimg.com 4 | DOMAIN-SUFFIX,apple.co 5 | DOMAIN-SUFFIX,apple.com 6 | DOMAIN-SUFFIX,icloud-content.com 7 | DOMAIN-SUFFIX,icloud.com 8 | DOMAIN-SUFFIX,itunes.com 9 | DOMAIN-SUFFIX,itunes.apple.com 10 | DOMAIN-SUFFIX,lookup-api.apple.com // Dictionary 11 | DOMAIN-SUFFIX,me.com 12 | PROCESS-NAME,storedownloadd // Mac App Store 13 | USER-AGENT,com.apple.appstored* // iOS App Store 14 | -------------------------------------------------------------------------------- /rule/blocked.list: -------------------------------------------------------------------------------- 1 | # Proxy 2 | DOMAIN-SUFFIX,9cache.com 3 | DOMAIN-SUFFIX,9gag.com 4 | DOMAIN-SUFFIX,abc.com 5 | DOMAIN-SUFFIX,about.me 6 | DOMAIN-SUFFIX,anchor.fm 7 | DOMAIN-SUFFIX,annas-archive.org 8 | DOMAIN-SUFFIX,apkmirror.com 9 | DOMAIN-SUFFIX,apkpure.com 10 | DOMAIN-SUFFIX,archive.md 11 | DOMAIN-SUFFIX,archive.org 12 | DOMAIN-SUFFIX,archiveofourown.org 13 | DOMAIN-SUFFIX,artstation.com 14 | DOMAIN-SUFFIX,ask.com 15 | DOMAIN-SUFFIX,avg.com 16 | DOMAIN-SUFFIX,axios.com 17 | DOMAIN-SUFFIX,bandcamp.com 18 | DOMAIN-SUFFIX,bandwagonhost.com 19 | DOMAIN-SUFFIX,bbc.com 20 | DOMAIN-SUFFIX,behance.net 21 | DOMAIN-SUFFIX,bit.ly 22 | DOMAIN-SUFFIX,bloglovin.com 23 | DOMAIN-SUFFIX,blubrry.com 24 | DOMAIN-SUFFIX,box.com 25 | DOMAIN-SUFFIX,brave.com 26 | DOMAIN-SUFFIX,bullguard.com 27 | DOMAIN-SUFFIX,castbox.fm 28 | DOMAIN-SUFFIX,change.org 29 | DOMAIN-SUFFIX,civitai.com 30 | DOMAIN-SUFFIX,cloudcone.com 31 | DOMAIN-SUFFIX,clyp.it 32 | DOMAIN-SUFFIX,cna.com.tw 33 | DOMAIN-SUFFIX,comparitech.com 34 | DOMAIN-SUFFIX,conoha.jp 35 | DOMAIN-SUFFIX,coursehero.com 36 | DOMAIN-SUFFIX,c-span.org 37 | DOMAIN-SUFFIX,dailymotion.com 38 | DOMAIN-SUFFIX,daum.net 39 | DOMAIN-SUFFIX,deadline.com 40 | DOMAIN-SUFFIX,depositphotos.com 41 | DOMAIN-SUFFIX,deviantart.com 42 | DOMAIN-SUFFIX,deviantart.net 43 | DOMAIN-SUFFIX,devv.ai 44 | DOMAIN-SUFFIX,disconnect.me 45 | DOMAIN-SUFFIX,disqus.com 46 | DOMAIN-SUFFIX,dlive.tv 47 | DOMAIN-SUFFIX,docker.com 48 | DOMAIN-SUFFIX,dowjones.com 49 | DOMAIN-SUFFIX,duckduckgo.com 50 | DOMAIN-SUFFIX,earthcam.com 51 | DOMAIN-SUFFIX,edx-cdn.org 52 | DOMAIN-SUFFIX,encyclopedia.com 53 | DOMAIN-SUFFIX,evozi.com 54 | DOMAIN-SUFFIX,f-droid.org 55 | DOMAIN-SUFFIX,feeder.co 56 | DOMAIN-SUFFIX,feedly.com 57 | DOMAIN-SUFFIX,flickr.com 58 | DOMAIN-SUFFIX,flipboard.com 59 | DOMAIN-SUFFIX,flitto.com 60 | DOMAIN-SUFFIX,foreignaffairs.com 61 | DOMAIN-SUFFIX,foreignpolicy.com 62 | DOMAIN-SUFFIX,generated.photos 63 | DOMAIN-SUFFIX,genius.com 64 | DOMAIN-SUFFIX,getsync.com 65 | DOMAIN-SUFFIX,gfw.report 66 | DOMAIN-SUFFIX,git.io 67 | DOMAIN-SUFFIX,githack.com 68 | DOMAIN-SUFFIX,godaddy.com 69 | DOMAIN-SUFFIX,goodreads.com 70 | DOMAIN-SUFFIX,graphql.org 71 | DOMAIN-SUFFIX,gumroad.com 72 | DOMAIN-SUFFIX,hackmd.io 73 | DOMAIN-SUFFIX,heroku.com 74 | DOMAIN-SUFFIX,hiccears.com 75 | DOMAIN-SUFFIX,hket.com 76 | DOMAIN-SUFFIX,huffpost.com 77 | DOMAIN-SUFFIX,huggingface.co 78 | DOMAIN-SUFFIX,i-cable.com 79 | DOMAIN-SUFFIX,imageglass.org 80 | DOMAIN-SUFFIX,imgur.com 81 | DOMAIN-SUFFIX,independent.co.uk 82 | DOMAIN-SUFFIX,inoreader.com 83 | DOMAIN-SUFFIX,is.gd 84 | DOMAIN-SUFFIX,issuu.com 85 | DOMAIN-SUFFIX,istockphoto.com 86 | DOMAIN-SUFFIX,joinmastodon.org 87 | DOMAIN-SUFFIX,justpaste.it 88 | DOMAIN-SUFFIX,jwplayer.com 89 | DOMAIN-SUFFIX,kakao.com 90 | DOMAIN-SUFFIX,kobo.com 91 | DOMAIN-SUFFIX,listennotes.com 92 | DOMAIN-SUFFIX,livestream.com 93 | DOMAIN-SUFFIX,mailchimp.com 94 | DOMAIN-SUFFIX,matrix.org 95 | DOMAIN-SUFFIX,medibang.com 96 | DOMAIN-SUFFIX,medium.com 97 | DOMAIN-SUFFIX,mega.co.nz 98 | DOMAIN-SUFFIX,mega.io 99 | DOMAIN-SUFFIX,mega.nz 100 | DOMAIN-SUFFIX,mixlr.com 101 | DOMAIN-SUFFIX,mod.io 102 | DOMAIN-SUFFIX,monica.im 103 | DOMAIN-SUFFIX,moon.fm 104 | DOMAIN-SUFFIX,mubi.com 105 | DOMAIN-SUFFIX,myspace.com 106 | DOMAIN-SUFFIX,myspacecdn.com 107 | DOMAIN-SUFFIX,nbcnews.com 108 | DOMAIN-SUFFIX,neowin.net 109 | DOMAIN-SUFFIX,netsarang.com 110 | DOMAIN-SUFFIX,newstatesman.com 111 | DOMAIN-SUFFIX,newsweek.com 112 | DOMAIN-SUFFIX,newyorker.com 113 | DOMAIN-SUFFIX,now.com 114 | DOMAIN-SUFFIX,ok.ru 115 | DOMAIN-SUFFIX,omny.fm 116 | DOMAIN-SUFFIX,openvpn.net 117 | DOMAIN-SUFFIX,owltail.com 118 | DOMAIN-SUFFIX,oxfordscholarship.com 119 | DOMAIN-SUFFIX,parsevideo.com 120 | DOMAIN-SUFFIX,paste.ee 121 | DOMAIN-SUFFIX,pastie.org 122 | DOMAIN-SUFFIX,patreon.com 123 | DOMAIN-SUFFIX,pcloud.com 124 | DOMAIN-SUFFIX,peing.net 125 | DOMAIN-SUFFIX,perplexity.ai 126 | DOMAIN-SUFFIX,player.fm 127 | DOMAIN-SUFFIX,podbean.com 128 | DOMAIN-SUFFIX,poe.com 129 | DOMAIN-SUFFIX,prism-break.org 130 | DOMAIN-SUFFIX,privoxy.org 131 | DOMAIN-SUFFIX,proton.me 132 | DOMAIN-SUFFIX,proxifier.com 133 | DOMAIN-SUFFIX,qbittorrent.org 134 | DOMAIN-SUFFIX,quora.com 135 | DOMAIN-SUFFIX,quoracdn.net 136 | DOMAIN-SUFFIX,qz.com 137 | DOMAIN-SUFFIX,radioline.co 138 | DOMAIN-SUFFIX,reabble.com 139 | DOMAIN-SUFFIX,redditlist.com 140 | DOMAIN-SUFFIX,resilio.com 141 | DOMAIN-SUFFIX,rsshub.app 142 | DOMAIN-SUFFIX,rthk.hk 143 | DOMAIN-SUFFIX,scmp.com 144 | DOMAIN-SUFFIX,scribd.com 145 | DOMAIN-SUFFIX,search.com 146 | DOMAIN-SUFFIX,shutterstock.com 147 | DOMAIN-SUFFIX,signal.org 148 | DOMAIN-SUFFIX,singlelogin.me 149 | DOMAIN-SUFFIX,sketchappsources.com 150 | DOMAIN-SUFFIX,slideshare.net 151 | DOMAIN-SUFFIX,sm.ms 152 | DOMAIN-SUFFIX,smartmailcloud.com 153 | DOMAIN-SUFFIX,smh.com.au 154 | DOMAIN-SUFFIX,speakerdeck.com 155 | DOMAIN-SUFFIX,spideroak.com 156 | DOMAIN-SUFFIX,spiegel.de 157 | DOMAIN-SUFFIX,startpage.com 158 | DOMAIN-SUFFIX,steemit.com 159 | DOMAIN-SUFFIX,straitstimes.com 160 | DOMAIN-SUFFIX,streamable.com 161 | DOMAIN-SUFFIX,substack.com 162 | DOMAIN-SUFFIX,swissinfo.ch 163 | DOMAIN-SUFFIX,tapatalk.com 164 | DOMAIN-SUFFIX,techspot.com 165 | DOMAIN-SUFFIX,textnow.me 166 | DOMAIN-SUFFIX,theage.com.au 167 | DOMAIN-SUFFIX,theatlantic.com 168 | DOMAIN-SUFFIX,theaustralian.com.au 169 | DOMAIN-SUFFIX,theconversation.com 170 | DOMAIN-SUFFIX,thediplomat.com 171 | DOMAIN-SUFFIX,theguardian.com 172 | DOMAIN-SUFFIX,theinitium.com 173 | DOMAIN-SUFFIX,themoviedb.org 174 | DOMAIN-SUFFIX,thetvdb.com 175 | DOMAIN-SUFFIX,time.com 176 | DOMAIN-SUFFIX,tineye.com 177 | DOMAIN-SUFFIX,tiny.cc 178 | DOMAIN-SUFFIX,torproject.org 179 | DOMAIN-SUFFIX,tradingview.com 180 | DOMAIN-SUFFIX,turbobit.net 181 | DOMAIN-SUFFIX,tutanota.com 182 | DOMAIN-SUFFIX,typeset.io 183 | DOMAIN-SUFFIX,urbandictionary.com 184 | DOMAIN-SUFFIX,ustream.tv 185 | DOMAIN-SUFFIX,v2ex.com 186 | DOMAIN-SUFFIX,venturebeat.com 187 | DOMAIN-SUFFIX,vercel.app 188 | DOMAIN-SUFFIX,viber.com 189 | DOMAIN-SUFFIX,vimeo.com 190 | DOMAIN-SUFFIX,vivaldi.com 191 | DOMAIN-SUFFIX,voxer.com 192 | DOMAIN-SUFFIX,vzw.com 193 | DOMAIN-SUFFIX,washingtonpost.com 194 | DOMAIN-SUFFIX,wattpad.com 195 | DOMAIN-SUFFIX,welt.de 196 | DOMAIN-SUFFIX,whoer.net 197 | DOMAIN-SUFFIX,wikimapia.org 198 | DOMAIN-SUFFIX,wikiwand.com 199 | DOMAIN-SUFFIX,wire.com 200 | DOMAIN-SUFFIX,wireguard.com 201 | DOMAIN-SUFFIX,wn.com 202 | DOMAIN-SUFFIX,worldcat.org 203 | DOMAIN-SUFFIX,writesonic.com 204 | DOMAIN-SUFFIX,wsj.com 205 | DOMAIN-SUFFIX,wsj.net 206 | DOMAIN-SUFFIX,x.co 207 | DOMAIN-SUFFIX,you.com 208 | DOMAIN-SUFFIX,you-get.org 209 | DOMAIN-SUFFIX,zaobao.com 210 | DOMAIN-SUFFIX,zello.com 211 | DOMAIN-SUFFIX,zeronet.io 212 | DOMAIN-SUFFIX,z-lib.org 213 | DOMAIN-SUFFIX,zophar.net 214 | DOMAIN-SUFFIX,zyxel.com 215 | 216 | DOMAIN,cdn.jsdelivr.net 217 | DOMAIN,cdn.statically.io 218 | DOMAIN,lab.skk.moe 219 | DOMAIN,ocsp.int-x3.letsencrypt.org 220 | DOMAIN,search.arc.net 221 | 222 | # > Akamai 223 | DOMAIN,a248.e.akamai.net 224 | DOMAIN,a771.dscq.akamai.net 225 | # > Amazon 226 | DOMAIN-SUFFIX,amazon.co.jp 227 | DOMAIN,d3c33hcgiwev3.cloudfront.net 228 | DOMAIN,payments-jp.amazon.com 229 | DOMAIN,s3-ap-northeast-1.amazonaws.com 230 | DOMAIN,s3-ap-southeast-2.amazonaws.com 231 | # > Alphabet 232 | # DOMAIN-SUFFIX,ampproject.org 233 | DOMAIN-SUFFIX,apigee.com 234 | DOMAIN-SUFFIX,appspot.com 235 | DOMAIN-SUFFIX,blogger.com 236 | DOMAIN-SUFFIX,gvt0.com 237 | DOMAIN-SUFFIX,gvt1.com 238 | DOMAIN-SUFFIX,gvt3.com 239 | DOMAIN-SUFFIX,tenor.com 240 | DOMAIN-SUFFIX,xn--ngstr-lra8j.com 241 | DOMAIN-KEYWORD,google 242 | DOMAIN-KEYWORD,.blogspot. 243 | # > Apple 244 | DOMAIN,testflight.apple.com 245 | # > Automattic 246 | DOMAIN-SUFFIX,gravatar.com 247 | DOMAIN-SUFFIX,tumblr.com 248 | DOMAIN-SUFFIX,videopress.com 249 | DOMAIN-SUFFIX,wordpress.com 250 | # > Bloomberg 251 | DOMAIN-SUFFIX,bloomberg.cn 252 | DOMAIN-SUFFIX,bloomberg.com 253 | DOMAIN-SUFFIX,bloomberg.de 254 | DOMAIN-SUFFIX,bloombergview.com 255 | # > Cloudflare 256 | DOMAIN-SUFFIX,pages.dev 257 | DOMAIN-SUFFIX,workers.dev 258 | # > Clubhouse 259 | DOMAIN-SUFFIX,clubhouseapi.com 260 | DOMAIN-SUFFIX,joinclubhouse.com 261 | DOMAIN,clubhouse.pubnubapi.com 262 | # ---(Crypto)--- 263 | DOMAIN-SUFFIX,bitcointalk.org 264 | DOMAIN-SUFFIX,bitfinex.com 265 | DOMAIN-SUFFIX,bitflyer.com 266 | DOMAIN-SUFFIX,bitget.com 267 | DOMAIN-SUFFIX,bithumb.com 268 | DOMAIN-SUFFIX,bitstamp.net 269 | DOMAIN-SUFFIX,coinbase.com 270 | DOMAIN-SUFFIX,coingecko.com 271 | DOMAIN-SUFFIX,coinmarketcap.com 272 | DOMAIN-SUFFIX,crypto.com 273 | DOMAIN-SUFFIX,dydx.exchange 274 | DOMAIN-SUFFIX,etherscan.io 275 | DOMAIN-SUFFIX,gate.io 276 | DOMAIN-SUFFIX,gemini.com 277 | DOMAIN-SUFFIX,kraken.com 278 | DOMAIN-SUFFIX,kucoin.com 279 | DOMAIN-SUFFIX,mexc.com 280 | DOMAIN-SUFFIX,probit.com 281 | DOMAIN-SUFFIX,uniswap.org 282 | DOMAIN-SUFFIX,upbit.com 283 | # > Binane 284 | DOMAIN-SUFFIX,binance.com 285 | DOMAIN-SUFFIX,binance.info 286 | DOMAIN-SUFFIX,bnbstatic.com 287 | DOMAIN-SUFFIX,bntrace.com 288 | DOMAIN-SUFFIX,yingwangtech.cloud 289 | # > Bybit 290 | DOMAIN-SUFFIX,byabcde.com 291 | DOMAIN-SUFFIX,bybdc6.com 292 | DOMAIN-SUFFIX,bybit.com 293 | DOMAIN-SUFFIX,bybitglobal.com 294 | DOMAIN-SUFFIX,ffbbbdc6d3c353211fe2ba39c9f744cd.com 295 | # > OKX 296 | DOMAIN-SUFFIX,okx.com 297 | DOMAIN-SUFFIX,okx.com.cdn.cloudflare.net 298 | # ------ 299 | # > Discord 300 | DOMAIN-SUFFIX,discord.com 301 | DOMAIN-SUFFIX,discordapp.com 302 | DOMAIN-SUFFIX,discord.gg 303 | DOMAIN-SUFFIX,discordapp.net 304 | # > Dropbox 305 | DOMAIN-SUFFIX,dropbox.com 306 | DOMAIN-SUFFIX,dropboxapi.com 307 | DOMAIN-SUFFIX,dropboxusercontent.com 308 | # > Fastly 309 | DOMAIN-SUFFIX,freetls.fastly.net 310 | DOMAIN,cloud-cdn-digitalocean-com.global.ssl.fastly.net 311 | # > Financial Times 312 | DOMAIN-SUFFIX,ft.com 313 | DOMAIN-SUFFIX,ftchinese.com 314 | DOMAIN-SUFFIX,ftimg.net 315 | DOMAIN,d1e00ek4ebabms.cloudfront.net 316 | DOMAIN,d19eijqb5qll1w.cloudfront.net 317 | # > YouTube 318 | DOMAIN-SUFFIX,googlevideo.com 319 | DOMAIN-SUFFIX,withyoutube.com 320 | DOMAIN-SUFFIX,youtu.be 321 | DOMAIN-SUFFIX,youtube.com 322 | DOMAIN-SUFFIX,youtubeeducation.com 323 | DOMAIN-SUFFIX,youtubegaming.com 324 | DOMAIN-SUFFIX,youtubekids.com 325 | DOMAIN-SUFFIX,youtube-nocookie.com 326 | DOMAIN-SUFFIX,yt.be 327 | DOMAIN-SUFFIX,ytimg.com 328 | DOMAIN,youtubei.googleapis.com 329 | DOMAIN,yt3.ggpht.com 330 | # > Line 331 | DOMAIN-SUFFIX,line.me 332 | DOMAIN-SUFFIX,line-apps.com 333 | DOMAIN-SUFFIX,line-scdn.net 334 | DOMAIN-SUFFIX,naver.jp 335 | IP-CIDR,103.2.30.0/23,no-resolve 336 | IP-CIDR,125.209.208.0/20,no-resolve 337 | IP-CIDR,147.92.128.0/17,no-resolve 338 | IP-CIDR,203.104.144.0/21,no-resolve 339 | # > Meta 340 | DOMAIN-SUFFIX,accountkit.com 341 | DOMAIN-SUFFIX,cdninstagram.com 342 | DOMAIN-SUFFIX,f8.com 343 | DOMAIN-SUFFIX,facebookmail.com 344 | DOMAIN-SUFFIX,fb.com 345 | DOMAIN-SUFFIX,fb.me 346 | DOMAIN-SUFFIX,fb.watch 347 | DOMAIN-SUFFIX,fbaddins.com 348 | DOMAIN-SUFFIX,fbcdn.net 349 | DOMAIN-SUFFIX,fbsbx.com 350 | DOMAIN-SUFFIX,fbworkmail.com 351 | DOMAIN-SUFFIX,instagram.com 352 | DOMAIN-SUFFIX,m.me 353 | DOMAIN-SUFFIX,messenger.com 354 | DOMAIN-SUFFIX,oculus.com 355 | DOMAIN-SUFFIX,oculuscdn.com 356 | DOMAIN-SUFFIX,readyatdawn.com 357 | DOMAIN-SUFFIX,rocksdb.org 358 | DOMAIN-SUFFIX,threads.net 359 | DOMAIN-SUFFIX,whatsapp.com 360 | DOMAIN-SUFFIX,whatsapp.net 361 | DOMAIN-KEYWORD,.facebook. 362 | # > Microsoft 363 | DOMAIN-SUFFIX,aka.ms 364 | DOMAIN-SUFFIX,github.blog 365 | DOMAIN-SUFFIX,github.com 366 | DOMAIN-SUFFIX,github.io 367 | DOMAIN-SUFFIX,githubassets.com 368 | DOMAIN-SUFFIX,githubusercontent.com 369 | DOMAIN-SUFFIX,onedrive.live.com 370 | DOMAIN-SUFFIX,streaming.mediaservices.windows.net 371 | DOMAIN,assets1.xboxlive.com 372 | DOMAIN,assets2.xboxlive.com 373 | DOMAIN,az416426.vo.msecnd.net 374 | DOMAIN,az668014.vo.msecnd.net 375 | DOMAIN,github.global.ssl.fastly.net 376 | # > OpenAI 377 | DOMAIN-SUFFIX,chatgpt.com 378 | DOMAIN-SUFFIX,openai.com 379 | # > Pinterest 380 | DOMAIN-SUFFIX,pinimg.com 381 | DOMAIN-KEYWORD,.pinterest. 382 | # > pixiv 383 | DOMAIN-SUFFIX,pixiv.net 384 | DOMAIN-SUFFIX,pixiv.org 385 | DOMAIN-SUFFIX,pximg.net 386 | # > Reddit 387 | DOMAIN-SUFFIX,redd.it 388 | DOMAIN-SUFFIX,reddit.com 389 | DOMAIN-SUFFIX,redditmedia.com 390 | DOMAIN-SUFFIX,redditstatic.com 391 | # > Reuters 392 | DOMAIN-SUFFIX,reuters.com 393 | DOMAIN-SUFFIX,reutersmedia.net 394 | # > Steam 395 | DOMAIN-SUFFIX,steamcommunity.com 396 | # DOMAIN,store.steampowered.com 397 | # ---(Telegram)--- 398 | DOMAIN-SUFFIX,cdn-telegram.org 399 | DOMAIN-SUFFIX,comments.app 400 | DOMAIN-SUFFIX,graph.org 401 | DOMAIN-SUFFIX,legra.ph 402 | DOMAIN-SUFFIX,quiz.directory 403 | DOMAIN-SUFFIX,t.me 404 | DOMAIN-SUFFIX,tdesktop.com 405 | DOMAIN-SUFFIX,telegra.ph 406 | DOMAIN-SUFFIX,telegram.dog 407 | DOMAIN-SUFFIX,telegram.me 408 | DOMAIN-SUFFIX,telegram.org 409 | DOMAIN-SUFFIX,telegram.space 410 | DOMAIN-SUFFIX,telegram-cdn.org 411 | DOMAIN-SUFFIX,telesco.pe 412 | DOMAIN-SUFFIX,tg.dev 413 | IP-CIDR,91.108.56.0/22,no-resolve 414 | IP-CIDR,91.108.4.0/22,no-resolve 415 | IP-CIDR,91.108.8.0/22,no-resolve 416 | IP-CIDR,91.108.16.0/22,no-resolve 417 | IP-CIDR,91.108.12.0/22,no-resolve 418 | IP-CIDR,149.154.160.0/20,no-resolve 419 | IP-CIDR,91.105.192.0/23,no-resolve 420 | IP-CIDR,91.108.20.0/22,no-resolve 421 | IP-CIDR,185.76.151.0/24,no-resolve 422 | IP-CIDR6,2001:b28:f23d::/48,no-resolve 423 | IP-CIDR6,2001:b28:f23f::/48,no-resolve 424 | IP-CIDR6,2001:67c:4e8::/48,no-resolve 425 | IP-CIDR6,2001:b28:f23c::/48,no-resolve 426 | IP-CIDR6,2a0a:f280::/32,no-resolve 427 | # ------ 428 | # > The Economist 429 | DOMAIN-SUFFIX,economist.com 430 | DOMAIN-SUFFIX,static-economist.com 431 | # > The New York Times 432 | DOMAIN-SUFFIX,newyorktimes.com 433 | DOMAIN-SUFFIX,nyt.com 434 | DOMAIN-SUFFIX,nytco.com 435 | DOMAIN-SUFFIX,nytimes.com 436 | DOMAIN-SUFFIX,nytimg.com 437 | DOMAIN-SUFFIX,nytlog.com 438 | DOMAIN-SUFFIX,nytstyle.com 439 | DOMAIN-SUFFIX,tmagazine.com 440 | DOMAIN,nytimes.map.fastly.net 441 | # > Twitter 442 | DOMAIN-SUFFIX,periscope.tv 443 | DOMAIN-SUFFIX,pscp.tv 444 | DOMAIN-SUFFIX,t.co 445 | DOMAIN-SUFFIX,tweetdeck.com 446 | DOMAIN-SUFFIX,twimg.co 447 | DOMAIN-SUFFIX,twimg.com 448 | DOMAIN-SUFFIX,twitpic.com 449 | DOMAIN-SUFFIX,twitter.com 450 | DOMAIN-SUFFIX,twitter.jp 451 | DOMAIN-SUFFIX,vine.co 452 | DOMAIN-SUFFIX,x.com 453 | # > Wikimedia Foundation 454 | DOMAIN-SUFFIX,mediawiki.org 455 | DOMAIN-SUFFIX,wikibooks.org 456 | DOMAIN-SUFFIX,wikidata.org 457 | DOMAIN-SUFFIX,wikileaks.org 458 | DOMAIN-SUFFIX,wikimedia.org 459 | DOMAIN-SUFFIX,wikimediafoundation.org 460 | DOMAIN-SUFFIX,wikinews.org 461 | DOMAIN-SUFFIX,wikipedia.org 462 | DOMAIN-SUFFIX,wikiquote.org 463 | DOMAIN-SUFFIX,wikisource.org 464 | DOMAIN-SUFFIX,wikiversity.org 465 | DOMAIN-SUFFIX,wikivoyage.org 466 | DOMAIN-SUFFIX,wiktionary.org 467 | # > Yahoo 468 | DOMAIN-SUFFIX,yahoo.com 469 | DOMAIN-SUFFIX,yimg.com 470 | DOMAIN,search.yahoo.co.jp 471 | # > Yandex 472 | DOMAIN-SUFFIX,yadi.sk 473 | DOMAIN-SUFFIX,yandex.ru 474 | DOMAIN,disk.yandex.com 475 | # > Z-Library 476 | DOMAIN-SUFFIX,articles.sk 477 | DOMAIN-SUFFIX,go-to-library.sk 478 | DOMAIN-SUFFIX,singlelogin.re 479 | DOMAIN-SUFFIX,singlelogin.rs 480 | DOMAIN-SUFFIX,z-lib.gs 481 | DOMAIN-SUFFIX,z-library.rs 482 | 483 | # (Region-Restricted Access Denied) 484 | DOMAIN-SUFFIX,engadget.com 485 | DOMAIN-SUFFIX,ifixit.com 486 | DOMAIN-SUFFIX,terabox.com 487 | DOMAIN-SUFFIX,wowhead.com 488 | DOMAIN-SUFFIX,xiaomi.eu 489 | DOMAIN-SUFFIX,zaobao.com.sg 490 | DOMAIN-SUFFIX,zoom.us 491 | DOMAIN,addons.mozilla.org 492 | DOMAIN,community.oneplus.com 493 | DOMAIN,wego.here.com 494 | # > Alphabet 495 | DOMAIN-SUFFIX,go.dev 496 | DOMAIN-SUFFIX,golang.org 497 | # ---(Apple)--- 498 | DOMAIN-SUFFIX,appsto.re // Apple URL Shortener 499 | DOMAIN-SUFFIX,smoot.apple.com // Spotlight 500 | DOMAIN,amp-api.podcasts.apple.com // Podcasts 501 | DOMAIN,beta.music.apple.com // Apple Music Web 502 | DOMAIN,books.itunes.apple.com // iBooks Store download 503 | DOMAIN,facetime.apple.com // FaceTime Links 504 | DOMAIN,lookup-api.apple.com // Look Up 505 | DOMAIN,radio.itunes.apple.com // Apple Music Radio 506 | DOMAIN,apple-relay.apple.com // Apple Intelligence 507 | DOMAIN,apple-relay.cloudflare.com 508 | DOMAIN,apple-relay.fastly-edge.com 509 | DOMAIN,cp4.cloudflare.com 510 | # > Mi 511 | DOMAIN,c.mi.com 512 | DOMAIN,new.c.mi.com 513 | # > Web Preview 514 | DOMAIN,apps.apple.com 515 | DOMAIN,books.apple.com 516 | DOMAIN,itunes.apple.com 517 | DOMAIN,tv.apple.com 518 | # > News 519 | DOMAIN,gateway.icloud.com 520 | DOMAIN-SUFFIX,apple.news 521 | DOMAIN,news-assets.apple.com 522 | DOMAIN,news-client.apple.com 523 | DOMAIN,news-client-search.apple.com 524 | DOMAIN,news-edge.apple.com 525 | DOMAIN,news-events.apple.com 526 | DOMAIN,apple.comscoreresearch.com 527 | # ------ 528 | # > Microsoft 529 | DOMAIN-SUFFIX,bing.com 530 | DOMAIN-SUFFIX,linkedin.com 531 | DOMAIN-SUFFIX,licdn.com 532 | DOMAIN-SUFFIX,msn.com 533 | DOMAIN-SUFFIX,skype.com 534 | -------------------------------------------------------------------------------- /rule/cn.list: -------------------------------------------------------------------------------- 1 | # China 2 | DOMAIN,csgo.wmsj.cn 3 | DOMAIN,dl.steam.clngaa.com 4 | DOMAIN,dl.steam.ksyna.com 5 | DOMAIN,dota2.wmsj.cn 6 | DOMAIN,st.dl.bscstorage.net 7 | DOMAIN,st.dl.eccdnx.com 8 | DOMAIN,st.dl.pinyuncloud.com 9 | DOMAIN,steampipe.steamcontent.tnkjmec.com 10 | DOMAIN,steampowered.com.8686c.com 11 | DOMAIN,steamstatic.com.8686c.com 12 | DOMAIN,wmsjsteam.com 13 | DOMAIN,xz.pphimalayanrt.com 14 | DOMAIN-SUFFIX,00cdn.com 15 | DOMAIN-SUFFIX,10010.com 16 | DOMAIN-SUFFIX,115.com 17 | DOMAIN-SUFFIX,12306.com 18 | DOMAIN-SUFFIX,126.com 19 | DOMAIN-SUFFIX,126.net 20 | DOMAIN-SUFFIX,127.net 21 | DOMAIN-SUFFIX,13th.tech 22 | DOMAIN-SUFFIX,163.com 23 | DOMAIN-SUFFIX,163yun.com 24 | DOMAIN-SUFFIX,1688.com 25 | DOMAIN-SUFFIX,17173.com 26 | DOMAIN-SUFFIX,178.com 27 | DOMAIN-SUFFIX,17k.com 28 | DOMAIN-SUFFIX,21cn.com 29 | DOMAIN-SUFFIX,360.com 30 | DOMAIN-SUFFIX,360buy.com 31 | DOMAIN-SUFFIX,360buyimg.com 32 | DOMAIN-SUFFIX,360doc.com 33 | DOMAIN-SUFFIX,360kuai.com 34 | DOMAIN-SUFFIX,360safe.com 35 | DOMAIN-SUFFIX,36kr.com 36 | DOMAIN-SUFFIX,3dmgame.com 37 | DOMAIN-SUFFIX,423down.com 38 | DOMAIN-SUFFIX,4399.com 39 | DOMAIN-SUFFIX,4399pk.com 40 | DOMAIN-SUFFIX,5054399.com 41 | DOMAIN-SUFFIX,51cto.com 42 | DOMAIN-SUFFIX,51job.com 43 | DOMAIN-SUFFIX,51jobcdn.com 44 | DOMAIN-SUFFIX,56.com 45 | DOMAIN-SUFFIX,58.com 46 | DOMAIN-SUFFIX,71.am 47 | DOMAIN-SUFFIX,71edge.com 48 | DOMAIN-SUFFIX,8686c.com 49 | DOMAIN-SUFFIX,88cdn.com 50 | DOMAIN-SUFFIX,abchina.com 51 | DOMAIN-SUFFIX,abercrombie.com 52 | DOMAIN-SUFFIX,acfun.tv 53 | DOMAIN-SUFFIX,acg.tv 54 | DOMAIN-SUFFIX,acgvideo.com 55 | DOMAIN-SUFFIX,air-matters.com 56 | DOMAIN-SUFFIX,air-matters.io 57 | DOMAIN-SUFFIX,aixifan.com 58 | DOMAIN-SUFFIX,algocasts.io 59 | DOMAIN-SUFFIX,aliapp.org 60 | DOMAIN-SUFFIX,alibaba.com 61 | DOMAIN-SUFFIX,alibabacloud.com 62 | DOMAIN-SUFFIX,alibabausercontent.com 63 | DOMAIN-SUFFIX,alicdn.com 64 | DOMAIN-SUFFIX,alicloudccp.com 65 | DOMAIN-SUFFIX,aliexpress.com 66 | DOMAIN-SUFFIX,aliimg.com 67 | DOMAIN-SUFFIX,alikunlun.com 68 | DOMAIN-SUFFIX,alipay.com 69 | DOMAIN-SUFFIX,alipayobjects.com 70 | DOMAIN-SUFFIX,alisoft.com 71 | DOMAIN-SUFFIX,aliyun.com 72 | DOMAIN-SUFFIX,aliyuncdn.com 73 | DOMAIN-SUFFIX,aliyuncs.com 74 | DOMAIN-SUFFIX,aliyundrive.com 75 | DOMAIN-SUFFIX,aliyundrive.net 76 | DOMAIN-SUFFIX,allawnfs.com 77 | DOMAIN-SUFFIX,allawno.com 78 | DOMAIN-SUFFIX,allawntech.com 79 | DOMAIN-SUFFIX,amap.com 80 | DOMAIN-SUFFIX,amemv.com 81 | DOMAIN-SUFFIX,appsimg.com 82 | DOMAIN-SUFFIX,appvipshop.com 83 | DOMAIN-SUFFIX,autonavi.com 84 | DOMAIN-SUFFIX,b23.tv 85 | DOMAIN-SUFFIX,babytree.com 86 | DOMAIN-SUFFIX,babytreeimg.com 87 | DOMAIN-SUFFIX,baicizhan.com 88 | DOMAIN-SUFFIX,baidu.com 89 | DOMAIN-SUFFIX,baidubcr.com 90 | DOMAIN-SUFFIX,baidupan.com 91 | DOMAIN-SUFFIX,baidupcs.com 92 | DOMAIN-SUFFIX,baidustatic.com 93 | DOMAIN-SUFFIX,baike.com 94 | DOMAIN-SUFFIX,baomitu.com 95 | DOMAIN-SUFFIX,bcebos.com 96 | DOMAIN-SUFFIX,bdimg.com 97 | DOMAIN-SUFFIX,bdstatic.com 98 | DOMAIN-SUFFIX,bdurl.net 99 | DOMAIN-SUFFIX,bdxiguaimg.com 100 | DOMAIN-SUFFIX,bdxiguastatic.com 101 | DOMAIN-SUFFIX,bigfun.cn 102 | DOMAIN-SUFFIX,bigfunapp.cn 103 | DOMAIN-SUFFIX,biliapi.com 104 | DOMAIN-SUFFIX,biliapi.net 105 | DOMAIN-SUFFIX,bilibili.co 106 | DOMAIN-SUFFIX,bilibili.com 107 | DOMAIN-SUFFIX,biligame.com 108 | DOMAIN-SUFFIX,biligame.net 109 | DOMAIN-SUFFIX,biliintl.co 110 | DOMAIN-SUFFIX,bilivideo.cn 111 | DOMAIN-SUFFIX,bilivideo.com 112 | DOMAIN-SUFFIX,biqudu.com 113 | DOMAIN-SUFFIX,biquge.com 114 | DOMAIN-SUFFIX,bitauto.com 115 | DOMAIN-SUFFIX,bokecc.com 116 | DOMAIN-SUFFIX,bootcss.com 117 | DOMAIN-SUFFIX,bosszhipin.com 118 | DOMAIN-SUFFIX,byted-static.com 119 | DOMAIN-SUFFIX,bytedance.com 120 | DOMAIN-SUFFIX,bytedance.net 121 | DOMAIN-SUFFIX,bytedns.net 122 | DOMAIN-SUFFIX,bytednsdoc.com 123 | DOMAIN-SUFFIX,bytefcdnrd.com 124 | DOMAIN-SUFFIX,bytegoofy.com 125 | DOMAIN-SUFFIX,byteimg.com 126 | DOMAIN-SUFFIX,bytescm.com 127 | DOMAIN-SUFFIX,bytetos.com 128 | DOMAIN-SUFFIX,bytexservice.com 129 | DOMAIN-SUFFIX,c-ctrip.com 130 | DOMAIN-SUFFIX,camera360.com 131 | DOMAIN-SUFFIX,cctv.com 132 | DOMAIN-SUFFIX,cctvpic.com 133 | DOMAIN-SUFFIX,cdnmama.com 134 | DOMAIN-SUFFIX,chaipip.com 135 | DOMAIN-SUFFIX,chaoxing.com 136 | DOMAIN-SUFFIX,che168.com 137 | DOMAIN-SUFFIX,chinacache.net 138 | DOMAIN-SUFFIX,chinaplay.store 139 | DOMAIN-SUFFIX,chinaso.com 140 | DOMAIN-SUFFIX,chinaz.com 141 | DOMAIN-SUFFIX,chinaz.net 142 | DOMAIN-SUFFIX,chuimg.com 143 | DOMAIN-SUFFIX,cibntv.net 144 | DOMAIN-SUFFIX,clouddn.com 145 | DOMAIN-SUFFIX,cloudxns.net 146 | DOMAIN-SUFFIX,cm.steampowered.com 147 | DOMAIN-SUFFIX,cn 148 | DOMAIN-SUFFIX,cn163.net 149 | DOMAIN-SUFFIX,cnblogs.com 150 | DOMAIN-SUFFIX,cnki.net 151 | DOMAIN-SUFFIX,cnmstl.net 152 | DOMAIN-SUFFIX,coloros.com 153 | DOMAIN-SUFFIX,coolapk.com 154 | DOMAIN-SUFFIX,coolapkmarket.com 155 | DOMAIN-SUFFIX,csdn.net 156 | DOMAIN-SUFFIX,ctrip.com 157 | DOMAIN-SUFFIX,dangdang.com 158 | DOMAIN-SUFFIX,dbankcdn.com 159 | DOMAIN-SUFFIX,dfcfw.com 160 | DOMAIN-SUFFIX,dhrest.com 161 | DOMAIN-SUFFIX,dianping.com 162 | DOMAIN-SUFFIX,didialift.com 163 | DOMAIN-SUFFIX,didiglobal.com 164 | DOMAIN-SUFFIX,dilidili.wang 165 | DOMAIN-SUFFIX,dingtalk.com 166 | DOMAIN-SUFFIX,dns.alidns.com 167 | DOMAIN-SUFFIX,doh.360.cn 168 | DOMAIN-SUFFIX,doh.pub 169 | DOMAIN-SUFFIX,douban.com 170 | DOMAIN-SUFFIX,doubanio.com 171 | DOMAIN-SUFFIX,douyin.com 172 | DOMAIN-SUFFIX,douyincdn.com 173 | DOMAIN-SUFFIX,douyinpic.com 174 | DOMAIN-SUFFIX,douyinstatic.com 175 | DOMAIN-SUFFIX,douyinvod.com 176 | DOMAIN-SUFFIX,douyu.com 177 | DOMAIN-SUFFIX,douyu.tv 178 | DOMAIN-SUFFIX,douyuscdn.com 179 | DOMAIN-SUFFIX,douyutv.com 180 | DOMAIN-SUFFIX,dpfile.com 181 | DOMAIN-SUFFIX,duokan.com 182 | DOMAIN-SUFFIX,duowan.com 183 | DOMAIN-SUFFIX,dxycdn.com 184 | DOMAIN-SUFFIX,dytt8.net 185 | DOMAIN-SUFFIX,easou.com 186 | DOMAIN-SUFFIX,eastday.com 187 | DOMAIN-SUFFIX,eastmoney.com 188 | DOMAIN-SUFFIX,ecitic.com 189 | DOMAIN-SUFFIX,edgesrv.com 190 | DOMAIN-SUFFIX,ele.me 191 | DOMAIN-SUFFIX,element-plus.org 192 | DOMAIN-SUFFIX,epicgames.com 193 | DOMAIN-SUFFIX,epicgames.dev 194 | DOMAIN-SUFFIX,ewqcxz.com 195 | DOMAIN-SUFFIX,fang.com 196 | DOMAIN-SUFFIX,fantasy.tv 197 | DOMAIN-SUFFIX,feelgood.cn 198 | DOMAIN-SUFFIX,feiliao.com 199 | DOMAIN-SUFFIX,feng.com 200 | DOMAIN-SUFFIX,fengkongcloud.com 201 | DOMAIN-SUFFIX,fir.im 202 | DOMAIN-SUFFIX,foxmail.com 203 | DOMAIN-SUFFIX,frdic.com 204 | DOMAIN-SUFFIX,fresh-ideas.cc 205 | DOMAIN-SUFFIX,ganji.com 206 | DOMAIN-SUFFIX,ganjistatic1.com 207 | DOMAIN-SUFFIX,geetest.com 208 | DOMAIN-SUFFIX,geilicdn.com 209 | DOMAIN-SUFFIX,ghpym.com 210 | DOMAIN-SUFFIX,gifshow.com 211 | DOMAIN-SUFFIX,go2map.com 212 | DOMAIN-SUFFIX,godic.net 213 | DOMAIN-SUFFIX,got001.com 214 | DOMAIN-SUFFIX,gtimg.com 215 | DOMAIN-SUFFIX,guazi.com 216 | DOMAIN-SUFFIX,gwdang.com 217 | DOMAIN-SUFFIX,gzlzfm.com 218 | DOMAIN-SUFFIX,haibian.com 219 | DOMAIN-SUFFIX,hao123.com 220 | DOMAIN-SUFFIX,hao123img.com 221 | DOMAIN-SUFFIX,haosou.com 222 | DOMAIN-SUFFIX,hc-cdn.com 223 | DOMAIN-SUFFIX,hdslb.com 224 | DOMAIN-SUFFIX,helpshift.com 225 | DOMAIN-SUFFIX,heytap.com 226 | DOMAIN-SUFFIX,heytapcs.com 227 | DOMAIN-SUFFIX,heytapdownload.com 228 | DOMAIN-SUFFIX,heytapimage.com 229 | DOMAIN-SUFFIX,heytapmobi.com 230 | DOMAIN-SUFFIX,hichina.com 231 | DOMAIN-SUFFIX,hicloud.com 232 | DOMAIN-SUFFIX,hihonor.com 233 | DOMAIN-SUFFIX,hitv.com 234 | DOMAIN-SUFFIX,hollisterco.com 235 | DOMAIN-SUFFIX,hongxiu.com 236 | DOMAIN-SUFFIX,hrtsea.com 237 | DOMAIN-SUFFIX,huajiao.com 238 | DOMAIN-SUFFIX,huawei.com 239 | DOMAIN-SUFFIX,huaweicloud.com 240 | DOMAIN-SUFFIX,huaweishop.net 241 | DOMAIN-SUFFIX,hunantv.com 242 | DOMAIN-SUFFIX,huoshan.com 243 | DOMAIN-SUFFIX,huoshanzhibo.com 244 | DOMAIN-SUFFIX,hupu.com 245 | DOMAIN-SUFFIX,huxiucdn.com 246 | DOMAIN-SUFFIX,huya.com 247 | DOMAIN-SUFFIX,hwccpc.com 248 | DOMAIN-SUFFIX,ibytedapm.com 249 | DOMAIN-SUFFIX,iciba.com 250 | DOMAIN-SUFFIX,idqqimg.com 251 | DOMAIN-SUFFIX,iesdouyin.com 252 | DOMAIN-SUFFIX,ifeng.com 253 | DOMAIN-SUFFIX,ifengimg.com 254 | DOMAIN-SUFFIX,iflyink.com 255 | DOMAIN-SUFFIX,iflyrec.com 256 | DOMAIN-SUFFIX,iflytek.com 257 | DOMAIN-SUFFIX,igamecj.com 258 | DOMAIN-SUFFIX,im9.com 259 | DOMAIN-SUFFIX,images-amazon.com 260 | DOMAIN-SUFFIX,img4399.com 261 | DOMAIN-SUFFIX,infzm.com 262 | DOMAIN-SUFFIX,ipip.net 263 | DOMAIN-SUFFIX,iqiyi.com 264 | DOMAIN-SUFFIX,iqiyipic.com 265 | DOMAIN-SUFFIX,it168.com 266 | DOMAIN-SUFFIX,ithome.com 267 | DOMAIN-SUFFIX,ixdzs.com 268 | DOMAIN-SUFFIX,ixigua.com 269 | DOMAIN-SUFFIX,jcloudcs.com 270 | DOMAIN-SUFFIX,jd.com 271 | DOMAIN-SUFFIX,jd.hk 272 | DOMAIN-SUFFIX,jdcloud.com 273 | DOMAIN-SUFFIX,jdpay.com 274 | DOMAIN-SUFFIX,jianguoyun.com 275 | DOMAIN-SUFFIX,jianshu.com 276 | DOMAIN-SUFFIX,jianshu.io 277 | DOMAIN-SUFFIX,jianshuapi.com 278 | DOMAIN-SUFFIX,jiasule.com 279 | DOMAIN-SUFFIX,jiathis.com 280 | DOMAIN-SUFFIX,jmstatic.com 281 | DOMAIN-SUFFIX,jomodns.com 282 | DOMAIN-SUFFIX,jumei.com 283 | DOMAIN-SUFFIX,kaikeba.com 284 | DOMAIN-SUFFIX,kanimg.com 285 | DOMAIN-SUFFIX,kankan.com 286 | DOMAIN-SUFFIX,kaola.com 287 | DOMAIN-SUFFIX,knewone.com 288 | DOMAIN-SUFFIX,koowo.com 289 | DOMAIN-SUFFIX,koyso.com 290 | DOMAIN-SUFFIX,ksosoft.com 291 | DOMAIN-SUFFIX,kspkg.com 292 | DOMAIN-SUFFIX,ksyun.com 293 | DOMAIN-SUFFIX,ksyungslb.com 294 | DOMAIN-SUFFIX,kuaidi100.com 295 | DOMAIN-SUFFIX,kuaishou.com 296 | DOMAIN-SUFFIX,kugou.com 297 | DOMAIN-SUFFIX,lancdns.com 298 | DOMAIN-SUFFIX,landiannews.com 299 | DOMAIN-SUFFIX,lanzou.com 300 | DOMAIN-SUFFIX,lanzoui.com 301 | DOMAIN-SUFFIX,lanzoux.com 302 | DOMAIN-SUFFIX,laomo.me 303 | DOMAIN-SUFFIX,le.com 304 | DOMAIN-SUFFIX,lecloud.com 305 | DOMAIN-SUFFIX,leju.com 306 | DOMAIN-SUFFIX,lemicp.com 307 | DOMAIN-SUFFIX,letitfly.me 308 | DOMAIN-SUFFIX,letv.com 309 | DOMAIN-SUFFIX,letvcloud.com 310 | DOMAIN-SUFFIX,letvimg.com 311 | DOMAIN-SUFFIX,letvlive.com 312 | DOMAIN-SUFFIX,letvstore.com 313 | DOMAIN-SUFFIX,livechina.com 314 | DOMAIN-SUFFIX,lizhi.fm 315 | DOMAIN-SUFFIX,lizhi.io 316 | DOMAIN-SUFFIX,lizhifm.com 317 | DOMAIN-SUFFIX,lofter.com 318 | DOMAIN-SUFFIX,luoo.net 319 | DOMAIN-SUFFIX,lvmama.com 320 | DOMAIN-SUFFIX,lxdns.com 321 | DOMAIN-SUFFIX,maoyan.com 322 | DOMAIN-SUFFIX,meilishuo.com 323 | DOMAIN-SUFFIX,meipai.com 324 | DOMAIN-SUFFIX,meitu.com 325 | DOMAIN-SUFFIX,meituan.com 326 | DOMAIN-SUFFIX,meituan.net 327 | DOMAIN-SUFFIX,meitudata.com 328 | DOMAIN-SUFFIX,meitustat.com 329 | DOMAIN-SUFFIX,meizu.com 330 | DOMAIN-SUFFIX,mgtv.com 331 | DOMAIN-SUFFIX,mi-img.com 332 | DOMAIN-SUFFIX,mi.com 333 | DOMAIN-SUFFIX,miaopai.com 334 | DOMAIN-SUFFIX,migucloud.com 335 | DOMAIN-SUFFIX,miguvideo.com 336 | DOMAIN-SUFFIX,miui.com 337 | DOMAIN-SUFFIX,mmstat.com 338 | DOMAIN-SUFFIX,mobike.com 339 | DOMAIN-SUFFIX,mogu.com 340 | DOMAIN-SUFFIX,mogucdn.com 341 | DOMAIN-SUFFIX,mogujie.com 342 | DOMAIN-SUFFIX,moji.com 343 | DOMAIN-SUFFIX,moke.com 344 | DOMAIN-SUFFIX,mpyit.com 345 | DOMAIN-SUFFIX,msftconnecttest.com 346 | DOMAIN-SUFFIX,msftncsi.com 347 | DOMAIN-SUFFIX,msstatic.com 348 | DOMAIN-SUFFIX,mubu.com 349 | DOMAIN-SUFFIX,mxhichina.com 350 | DOMAIN-SUFFIX,myapp.com 351 | DOMAIN-SUFFIX,myqcloud.com 352 | DOMAIN-SUFFIX,myunlu.com 353 | DOMAIN-SUFFIX,netease.com 354 | DOMAIN-SUFFIX,nruan.com 355 | DOMAIN-SUFFIX,nuomi.com 356 | DOMAIN-SUFFIX,onedns.net 357 | DOMAIN-SUFFIX,oneplus.com 358 | DOMAIN-SUFFIX,onlinedown.net 359 | DOMAIN-SUFFIX,oppo.com 360 | DOMAIN-SUFFIX,oppoer.me 361 | DOMAIN-SUFFIX,oppomobile.com 362 | DOMAIN-SUFFIX,oracle.com 363 | DOMAIN-SUFFIX,oschina.net 364 | DOMAIN-SUFFIX,ourdvs.com 365 | DOMAIN-SUFFIX,p2cdn.com 366 | DOMAIN-SUFFIX,p4pfile.com 367 | DOMAIN-SUFFIX,paipai.com 368 | DOMAIN-SUFFIX,paragon.com 369 | DOMAIN-SUFFIX,pdfwifi.com 370 | DOMAIN-SUFFIX,pinduoduo.com 371 | DOMAIN-SUFFIX,playstation.com 372 | DOMAIN-SUFFIX,playstation.net 373 | DOMAIN-SUFFIX,playstationnetwork.com 374 | DOMAIN-SUFFIX,polyv.net 375 | DOMAIN-SUFFIX,pplive.com 376 | DOMAIN-SUFFIX,ppsimg.com 377 | DOMAIN-SUFFIX,pptv.com 378 | DOMAIN-SUFFIX,pstatp.com 379 | DOMAIN-SUFFIX,qbox.me 380 | DOMAIN-SUFFIX,qcloud.com 381 | DOMAIN-SUFFIX,qcloudcdn.com 382 | DOMAIN-SUFFIX,qdaily.com 383 | DOMAIN-SUFFIX,qdmm.com 384 | DOMAIN-SUFFIX,qhimg.com 385 | DOMAIN-SUFFIX,qhres.com 386 | DOMAIN-SUFFIX,qhstatic.com 387 | DOMAIN-SUFFIX,qhupdate.com 388 | DOMAIN-SUFFIX,qianqian.com 389 | DOMAIN-SUFFIX,qidian.com 390 | DOMAIN-SUFFIX,qihucdn.com 391 | DOMAIN-SUFFIX,qin.io 392 | DOMAIN-SUFFIX,qiniu.com 393 | DOMAIN-SUFFIX,qiniucdn.com 394 | DOMAIN-SUFFIX,qiniudn.com 395 | DOMAIN-SUFFIX,qiushibaike.com 396 | DOMAIN-SUFFIX,qiyi.com 397 | DOMAIN-SUFFIX,qiyipic.com 398 | DOMAIN-SUFFIX,qq.com 399 | DOMAIN-SUFFIX,qqmail.com 400 | DOMAIN-SUFFIX,qqurl.com 401 | DOMAIN-SUFFIX,quanmin.tv 402 | DOMAIN-SUFFIX,qunar.com 403 | DOMAIN-SUFFIX,qunarzz.com 404 | DOMAIN-SUFFIX,qupu123.com 405 | DOMAIN-SUFFIX,qy.net 406 | DOMAIN-SUFFIX,realme.com 407 | DOMAIN-SUFFIX,repaik.com 408 | DOMAIN-SUFFIX,rrys.tv 409 | DOMAIN-SUFFIX,rrys2020.com 410 | DOMAIN-SUFFIX,ruguoapp.com 411 | DOMAIN-SUFFIX,runoob.com 412 | DOMAIN-SUFFIX,sandai.net 413 | DOMAIN-SUFFIX,sankuai.com 414 | DOMAIN-SUFFIX,segmentfault.com 415 | DOMAIN-SUFFIX,sf-express.com 416 | DOMAIN-SUFFIX,shumilou.net 417 | DOMAIN-SUFFIX,simplecd.me 418 | DOMAIN-SUFFIX,sina.cn 419 | DOMAIN-SUFFIX,sina.com 420 | DOMAIN-SUFFIX,sina.com.cn 421 | DOMAIN-SUFFIX,sinaapp.cn 422 | DOMAIN-SUFFIX,sinaapp.com 423 | DOMAIN-SUFFIX,sinaimg.cn 424 | DOMAIN-SUFFIX,sinaimg.com 425 | DOMAIN-SUFFIX,smtcdns.com 426 | DOMAIN-SUFFIX,smtcdns.net 427 | DOMAIN-SUFFIX,smzdm.com 428 | DOMAIN-SUFFIX,snapdrop.net 429 | DOMAIN-SUFFIX,snssdk.com 430 | DOMAIN-SUFFIX,snwx.com 431 | DOMAIN-SUFFIX,so.com 432 | DOMAIN-SUFFIX,sogo.com 433 | DOMAIN-SUFFIX,sogou.com 434 | DOMAIN-SUFFIX,sogoucdn.com 435 | DOMAIN-SUFFIX,sohu-inc.com 436 | DOMAIN-SUFFIX,sohu.com 437 | DOMAIN-SUFFIX,sohucs.com 438 | DOMAIN-SUFFIX,sohuno.com 439 | DOMAIN-SUFFIX,sohurdc.com 440 | DOMAIN-SUFFIX,soku.com 441 | DOMAIN-SUFFIX,sony.com 442 | DOMAIN-SUFFIX,sonyentertainmentnetwork.com 443 | DOMAIN-SUFFIX,soso.com 444 | DOMAIN-SUFFIX,soufunimg.com 445 | DOMAIN-SUFFIX,sspai.com 446 | DOMAIN-SUFFIX,startssl.com 447 | DOMAIN-SUFFIX,staticfile.org 448 | DOMAIN-SUFFIX,steamchina.com 449 | DOMAIN-SUFFIX,steamcontent.com 450 | DOMAIN-SUFFIX,steamusercontent.com 451 | DOMAIN-SUFFIX,suning.com 452 | DOMAIN-SUFFIX,synology.com 453 | DOMAIN-SUFFIX,taihe.com 454 | DOMAIN-SUFFIX,taobao.com 455 | DOMAIN-SUFFIX,taobaocdn.com 456 | DOMAIN-SUFFIX,tbcache.com 457 | DOMAIN-SUFFIX,tbcdn.com 458 | DOMAIN-SUFFIX,teamviewer.com 459 | DOMAIN-SUFFIX,tebex.io 460 | DOMAIN-SUFFIX,tencent-cloud.net 461 | DOMAIN-SUFFIX,tencent.com 462 | DOMAIN-SUFFIX,tencentmind.com 463 | DOMAIN-SUFFIX,tenpay.com 464 | DOMAIN-SUFFIX,th-sjy.com 465 | DOMAIN-SUFFIX,thundercdn.com 466 | DOMAIN-SUFFIX,tianqi.com 467 | DOMAIN-SUFFIX,tianqistatic.com 468 | DOMAIN-SUFFIX,tianyancha.com 469 | DOMAIN-SUFFIX,tianyaui.com 470 | DOMAIN-SUFFIX,tietuku.com 471 | DOMAIN-SUFFIX,tiexue.net 472 | DOMAIN-SUFFIX,tmall.com 473 | DOMAIN-SUFFIX,tmall.hk 474 | DOMAIN-SUFFIX,tmiaoo.com 475 | DOMAIN-SUFFIX,toutiao.com 476 | DOMAIN-SUFFIX,toutiao13.com 477 | DOMAIN-SUFFIX,toutiaoapi.com 478 | DOMAIN-SUFFIX,toutiaocdn.com 479 | DOMAIN-SUFFIX,toutiaocdn.net 480 | DOMAIN-SUFFIX,toutiaocloud.com 481 | DOMAIN-SUFFIX,toutiaohao.com 482 | DOMAIN-SUFFIX,toutiaohao.net 483 | DOMAIN-SUFFIX,toutiaoimg.com 484 | DOMAIN-SUFFIX,toutiaopage.com 485 | DOMAIN-SUFFIX,trip.com 486 | DOMAIN-SUFFIX,ttmeiju.com 487 | DOMAIN-SUFFIX,tudou.com 488 | DOMAIN-SUFFIX,tuniu.com 489 | DOMAIN-SUFFIX,tuniucdn.com 490 | DOMAIN-SUFFIX,ucweb.com 491 | DOMAIN-SUFFIX,udache.com 492 | DOMAIN-SUFFIX,umengcloud.com 493 | DOMAIN-SUFFIX,unrealengine.com 494 | DOMAIN-SUFFIX,upaiyun.com 495 | DOMAIN-SUFFIX,upyun.com 496 | DOMAIN-SUFFIX,uxengine.net 497 | DOMAIN-SUFFIX,v-56.com 498 | DOMAIN-SUFFIX,videocc.net 499 | DOMAIN-SUFFIX,vip.com 500 | DOMAIN-SUFFIX,vipstatic.com 501 | DOMAIN-SUFFIX,vivo.com 502 | DOMAIN-SUFFIX,vmall.com 503 | DOMAIN-SUFFIX,vmallres.com 504 | DOMAIN-SUFFIX,wandoujia.com 505 | DOMAIN-SUFFIX,weather.com 506 | DOMAIN-SUFFIX,wechat.com 507 | DOMAIN-SUFFIX,weibo.cn 508 | DOMAIN-SUFFIX,weibo.com 509 | DOMAIN-SUFFIX,weibocdn.cn 510 | DOMAIN-SUFFIX,weibocdn.com 511 | DOMAIN-SUFFIX,weico.cc 512 | DOMAIN-SUFFIX,weidian.com 513 | DOMAIN-SUFFIX,weiphone.com 514 | DOMAIN-SUFFIX,weiphone.net 515 | DOMAIN-SUFFIX,weixin.com 516 | DOMAIN-SUFFIX,weiyun.com 517 | DOMAIN-SUFFIX,womai.com 518 | DOMAIN-SUFFIX,wscdns.com 519 | DOMAIN-SUFFIX,wukong.com 520 | DOMAIN-SUFFIX,xdrig.com 521 | DOMAIN-SUFFIX,xhscdn.com 522 | DOMAIN-SUFFIX,xiachufang.com 523 | DOMAIN-SUFFIX,xiami.com 524 | DOMAIN-SUFFIX,xiami.net 525 | DOMAIN-SUFFIX,xiaohongshu.com 526 | DOMAIN-SUFFIX,xiaojukeji.com 527 | DOMAIN-SUFFIX,xiaoka.tv 528 | DOMAIN-SUFFIX,xiaomi.com 529 | DOMAIN-SUFFIX,xiaomi.net 530 | DOMAIN-SUFFIX,xiaomicp.com 531 | DOMAIN-SUFFIX,ximalaya.com 532 | DOMAIN-SUFFIX,xinhuanet.com 533 | DOMAIN-SUFFIX,xip.io 534 | DOMAIN-SUFFIX,xitek.com 535 | DOMAIN-SUFFIX,xiumi.us 536 | DOMAIN-SUFFIX,xmcdn.com 537 | DOMAIN-SUFFIX,xn--55qx5d 538 | DOMAIN-SUFFIX,xn--fiqs8s 539 | DOMAIN-SUFFIX,xn--io0a7i 540 | DOMAIN-SUFFIX,xslb.net 541 | DOMAIN-SUFFIX,xueqiu.com 542 | DOMAIN-SUFFIX,xunlei.com 543 | DOMAIN-SUFFIX,yach.me 544 | DOMAIN-SUFFIX,yangkeduo.com 545 | DOMAIN-SUFFIX,ydstatic.com 546 | DOMAIN-SUFFIX,yeepay.com 547 | DOMAIN-SUFFIX,yhd.com 548 | DOMAIN-SUFFIX,yihaodianimg.com 549 | DOMAIN-SUFFIX,yinxiang.com 550 | DOMAIN-SUFFIX,yinyuetai.com 551 | DOMAIN-SUFFIX,yixia.com 552 | DOMAIN-SUFFIX,ykimg.com 553 | DOMAIN-SUFFIX,youdao.com 554 | DOMAIN-SUFFIX,youku.com 555 | DOMAIN-SUFFIX,ys168.com 556 | DOMAIN-SUFFIX,yuewen.com 557 | DOMAIN-SUFFIX,yunjiasu-cdn.net 558 | DOMAIN-SUFFIX,yximgs.com 559 | DOMAIN-SUFFIX,yy.com 560 | DOMAIN-SUFFIX,yyets.com 561 | DOMAIN-SUFFIX,yystatic.com 562 | DOMAIN-SUFFIX,zealer.com 563 | DOMAIN-SUFFIX,zhangzishi.cc 564 | DOMAIN-SUFFIX,zhanqi.tv 565 | DOMAIN-SUFFIX,zhaopin.com 566 | DOMAIN-SUFFIX,zhenguanyu.biz 567 | DOMAIN-SUFFIX,zhenguanyu.com 568 | DOMAIN-SUFFIX,zhihu.com 569 | DOMAIN-SUFFIX,zhimg.com 570 | DOMAIN-SUFFIX,zhipin.com 571 | DOMAIN-SUFFIX,zhongsou.com 572 | DOMAIN-SUFFIX,zhuihd.com 573 | DOMAIN-SUFFIX,zijieapi.com 574 | DOMAIN-SUFFIX,zijieimg.com 575 | DOMAIN-SUFFIX,zimuzu.io 576 | DOMAIN-SUFFIX,zimuzu.tv 577 | DOMAIN-SUFFIX,zjbyte.com 578 | DOMAIN-SUFFIX,zjcdn.com 579 | DOMAIN-SUFFIX,zmz001.com 580 | DOMAIN-SUFFIX,zmz002.com 581 | DOMAIN-SUFFIX,zmz003.com 582 | DOMAIN-SUFFIX,zmz004.com 583 | DOMAIN-SUFFIX,zmz2019.com 584 | DOMAIN-SUFFIX,zmzapi.com 585 | DOMAIN-SUFFIX,zmzapi.net 586 | DOMAIN-SUFFIX,zmzfile.com 587 | DOMAIN-KEYWORD,360buy 588 | DOMAIN-KEYWORD,alicdn 589 | DOMAIN-KEYWORD,alimama 590 | DOMAIN-KEYWORD,alipay 591 | DOMAIN-KEYWORD,appzapp 592 | DOMAIN-KEYWORD,baidupcs 593 | DOMAIN-KEYWORD,bilibili 594 | DOMAIN-KEYWORD,ccgslb 595 | DOMAIN-KEYWORD,chinacache 596 | DOMAIN-KEYWORD,duobao 597 | DOMAIN-KEYWORD,jdpay 598 | DOMAIN-KEYWORD,moke 599 | DOMAIN-KEYWORD,qhimg 600 | DOMAIN-KEYWORD,vpimg 601 | DOMAIN-KEYWORD,xiami 602 | DOMAIN-KEYWORD,xiaomi 603 | IP-CIDR,1.12.12.12/32,no-resolve 604 | IP-CIDR,139.220.243.27/32,no-resolve 605 | IP-CIDR,172.16.102.56/32,no-resolve 606 | IP-CIDR,185.188.32.1/28,no-resolve 607 | IP-CIDR,221.226.128.146/32,no-resolve 608 | IP-CIDR6,2a0b:b580::/48,no-resolve 609 | IP-CIDR6,2a0b:b581::/48,no-resolve 610 | IP-CIDR6,2a0b:b582::/48,no-resolve 611 | IP-CIDR6,2a0b:b583::/48,no-resolve 612 | -------------------------------------------------------------------------------- /rule/netflix.list: -------------------------------------------------------------------------------- 1 | # Netflix 2 | USER-AGENT,Argo* 3 | DOMAIN-SUFFIX,netflix.com 4 | DOMAIN-SUFFIX,netflix.net 5 | DOMAIN-SUFFIX,nflxext.com 6 | DOMAIN-SUFFIX,nflximg.com 7 | DOMAIN-SUFFIX,nflximg.net 8 | DOMAIN-SUFFIX,nflxso.net 9 | DOMAIN-SUFFIX,nflxvideo.net 10 | DOMAIN-KEYWORD,netflixdnstest 11 | DOMAIN-KEYWORD,apiproxy-device-prod-nlb- 12 | DOMAIN-KEYWORD,dualstack.apiproxy- 13 | -------------------------------------------------------------------------------- /rule/nrc-app.list: -------------------------------------------------------------------------------- 1 | # NAME: Nike Run Club 2 | 3 | DOMAIN-SUFFIX,nike.com 4 | DOMAIN-SUFFIX,nike.com.hk 5 | DOMAIN-SUFFIX,nikecdn.com 6 | DOMAIN-SUFFIX,nikecloud.com 7 | DOMAIN-SUFFIX,nikeinc.com.cn 8 | DOMAIN-SUFFIX,nikestore.com.au 9 | DOMAIN-SUFFIX,niketracking.com 10 | DOMAIN-SUFFIX,omtrdc.net 11 | DOMAIN-SUFFIX,static-nike.com 12 | DOMAIN-SUFFIX,swoo.sh 13 | DOMAIN-SUFFIX,swoosh.com 14 | -------------------------------------------------------------------------------- /rule/telegram.list: -------------------------------------------------------------------------------- 1 | # ASN for Telegram 2 | PROCESS-NAME,org.telegram.messenger 3 | DOMAIN-SUFFIX,comments.app // @CommentsBot 4 | DOMAIN-SUFFIX,t.me 5 | DOMAIN-SUFFIX,tdesktop.com 6 | DOMAIN-SUFFIX,telegra.ph // Telegraph 7 | DOMAIN-SUFFIX,telegram.me 8 | DOMAIN-SUFFIX,telegram.org 9 | DOMAIN-SUFFIX,telegram-cdn.org 10 | DOMAIN-SUFFIX,telesco.pe // Telescope 11 | IP-CIDR,109.239.140.0/24,no-resolve // Telegram Messenger LLP 12 | IP-CIDR,5.28.195.163/32,no-resolve // IPFFM - Internet Provider Frankfurt GmbH 13 | IP-CIDR,5.28.195.205/32,no-resolve // IPFFM - Internet Provider Frankfurt GmbH 14 | IP-CIDR,91.108.0.0/16,no-resolve // eTelecom_Customers_NAT_Network 15 | IP-CIDR6,2a0a:f280::/32,no-resolve 16 | IP-ASN,44907,no-resolve // Telegram Messenger Inc 17 | IP-ASN,62014,no-resolve // Telegram Messenger Inc 18 | IP-ASN,62041,no-resolve // Telegram Messenger Inc 19 | IP-ASN,59930,no-resolve // Telegram Messenger Inc 20 | IP-ASN,211157,no-resolve // Telegram Messenger Inc 21 | -------------------------------------------------------------------------------- /rule/twitter.list: -------------------------------------------------------------------------------- 1 | # Twitter 2 | USER-AGENT,Twitter* 3 | DOMAIN-SUFFIX,periscope.tv 4 | DOMAIN-SUFFIX,pscp.tv 5 | DOMAIN-SUFFIX,t.co 6 | DOMAIN-SUFFIX,tweetdeck.com 7 | DOMAIN-SUFFIX,twimg.co 8 | DOMAIN-SUFFIX,twimg.com 9 | DOMAIN-SUFFIX,twitpic.com 10 | DOMAIN-SUFFIX,twitter.com 11 | DOMAIN-SUFFIX,twitter.jp 12 | DOMAIN-SUFFIX,vine.co 13 | --------------------------------------------------------------------------------